html,
body,
a,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font: inherit;
	font-size: 100%;
	text-align: left;
	line-height: inherit;
	vertical-align: baseline;
	box-sizing:border-box;
}
body {
	background: white;
	line-height: 1;
	color: black;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
	display: block;
	box-sizing:border-box;
}
ul {
	list-style: none;
}
table {
	border-collapse: collapse;
	border-spacing: 0;
}
form label,
form button {
	cursor: pointer;
}
img {
	vertical-align: bottom;
	border: none;
	max-width:100%;
	height:auto;
}
video {
	border: none;
	max-width:100%;
	height:auto;
}
iframe{
	border: none;
}
blockquote,
q {
	quotes: none;
}
h1,
h2,
h3,
h4,
h5,
h6{
	margin:0;
	padding:0;
	font-weight:normal;
	font-size:100%;
}
input, 
button, 
textarea, 
select{
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
}
textarea{
	resize: none;
}
input:focus, 
button:focus, 
textarea:focus, 
select:focus {
	outline: none;
}


:root {
    --tablet: 768px;
    --mobile: 480px;
    --main-color: #FF6600;
    --white: #FFFFFF;
    --font-color: #333333;
    --base-font: "Noto Sans", "Noto Sans JP", sans-serif; /* 仮の値 */
}

/*--------------------------------------------------------------
	■A.文字
--------------------------------------------------------------*/
body {
    background-color: var(--white);
    margin: 0 auto;
    padding: 0;
    font-family: var(--base-font);
    font-size: 16px;
    font-weight: 400;
    color: var(--font-color);
    line-height: 1.6;
    letter-spacing: 0.04rem;
}

@media screen and (min-width: 769px) {
    body {
        background-image: url("../images/common/bg_blue.png");
        background-size: 742.5px 720px;
        background-position: right 80px top 120px;
        background-repeat: no-repeat;
        background-attachment: fixed;
    }
}

@media screen and (min-width: 1201px) { /* 仮のlarge-desktop */
    body {
        background-position: right 120px top 120px;
    }
}

body.stop {
    overflow: hidden;
}

strong {
    font-weight: 700;
}



/*--------------------------------------------------------------
	■B.リンク
--------------------------------------------------------------*/
a {
    color: var(--font-color);
    outline: none;
    border-style: none;
    text-decoration: none;
    transition: all 0.3s ease 0s;
    cursor: pointer;
}

@media screen and (min-width: 769px) {
    a:hover {
        color: var(--main-color);
    }
}

/*--------------------------------------------------------------
	■C.共通定義
--------------------------------------------------------------*/
.container {
    position: relative;
    max-width: 1360px;
    width: 100%;
    margin: 0 auto;
}

@media screen and (min-width: 769px) {
    .container {
        padding: 0 80px;
    }
}

@media screen and (max-width: 768px) and (min-width: 481px) {
    .container {
        padding: 0 40px;
    }
}

@media screen and (max-width: 480px) {
    .container {
        padding: 0 20px;
    }
}

@media screen and (min-width: 769px) {
    .pc_none {
        display: none !important;
    }
}

@media screen and (max-width: 768px) and (min-width: 481px) {
    .tb_none {
        display: none !important;
    }
}

@media screen and (max-width: 480px) {
    .sp_none {
        display: none !important;
    }
}

.gmap {
    height: 0;
    overflow: hidden;
    padding-bottom: 56.25%;
    position: relative;
}

.gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
}

.youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
}

.youtube iframe {
    position: absolute;
    top: 0;
    right: 0;
    width: 100% !important;
    height: 100% !important;
}

.ttl {
}

/* ボタン */
.btn {
    display: flex;
    width: 200px;
    height: 48px;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color);
    color: var(--white);
    font-size: 16px;
    font-weight: 700;
    border-radius: 24px;
    border: 2px solid var(--main-color);
}

.btn:hover {
    color: var(--main-color);
    opacity: 1;
    background-color: var(--white);
}

.btn-white {
    display: flex;
    width: 200px;
    height: 48px;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    color: var(--main-color);
    font-size: 16px;
    font-weight: 700;
    border-radius: 24px;
    border: 2px solid var(--white);
}

.btn-white:hover {
    color: var(--white);
    opacity: 1;
    background-color: transparent;
}

.btn-border {
    display: flex;
    width: 200px;
    height: 48px;
    justify-content: center;
    align-items: center;
    background-color: var(--white);
    color: var(--main-color);
    font-size: 16px;
    font-weight: 700;
    border-radius: 24px;
    border: 2px solid var(--main-color);
}

.btn-border:hover {
    color: var(--white);
    opacity: 1;
    background-color: var(--main-color);
}

.btn-link {
    display: flex;
    align-items: center;
    position: relative;
}

.btn-link span {
    font-weight: 400;
    font-size: 16px;
    color: var(--main-color);
}

.btn-link .icon {
    margin-right: 6px;
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/*--------------------------------------------------------------
	■D.formパーツ補正
--------------------------------------------------------------*/
input {
    font-family: var(--base-font);
}

input[type="radio"] {
    -webkit-appearance: radio;
    -moz-appearance: radio;
    appearance: radio;
    width: auto;
    height: auto;
}

input[type="checkbox"] {
    -webkit-appearance: checkbox;
    -moz-appearance: checkbox;
    appearance: checkbox;
    width: auto;
    height: auto;
}


body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans", "Noto Sans JP", sans-serif;
  color: #222;
}

/* 
Title style 
*/
h2 {
  text-align: center;
  font-family: "Noto Sans";
  font-size: 36px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  margin: 0;
  background: var(
    --HumanSenseAI,
    linear-gradient(
      135deg,
      #eb6112 10%,
      #d84375 45%,
      #6d4598 87.5%,
      #005099 100%
    )
  );
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h3 {
  color: #eb6112;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

p {
  font-size: 16px;
  line-height: 1.6;
  margin: 0;
}
@media (max-width: 768px) {
  h2 {
    font-size: 28px;
  }

  h3 {
    font-size: 20px;
  }

  p {
    font-size: 14px;
  }
}

/* 
Button Styles 
*/
.button-wrapper {
  display: flex;
  width: 350px;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
}

.button-content {
  display: flex;
  gap: 8px;
  align-items: center;
  justify-content: center;
  padding: 20px 0;
}

.button-content {
  display: flex;
  align-items: center;
  gap: 8px; 
}

.button-icon img {
  width: 30px; 
  height: auto;
  display: block;
  transition: 0.3s ease;
  
}


.button-text {
  font-weight: bold;
  line-height: normal;
  position: relative;
  font-size: 18px;
  white-space: nowrap;
}

/* Common Button Styles */
.download-button,
.contact-button {
  width: 100%;
  height: 100%;
  border: 1px solid #005099;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-button,
.contact-buttoncontact-button {
  width: 100%;
  height: 100%;
  border: 1px solid #005099;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.download-button:hover .download-icon svg {
  fill: #005099;
}


.download-button:hover .button-icon img {
  content: url("../images/common/download_w.png"); 
}



/* header dL Button Styles */
.header-content .button-wrapper .download-button_h,
.contact-button {
  width: 100%;
  height: 100%;
  border: 1px solid #005099;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #005099;
}

.header-content .button-wrapper .download-button_h
 {
  width: 100%;
  height: 100%;
  border: 1px solid #005099;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.header-content .button-wrapper .download-button_h:hover {
  background-color: #fff;

}

.header-content .button-wrapper .download-button_h:hover .button-text{
 color: #005099;

}


.header-content.button-wrapper.download-button_h:hover .button-icon img {
  content: url("../images/common/download_icon.png"); 

}


.header-content.button-wrapper.download-button_h {
  background-color: #005099;
}

.header-content.button-wrapper.download-button_h:hover {
  background-color: #ffffff;
}

.header-content.button-wrapper.download-button_h .button-text {
  color: #ffffff;
}


.header-content.button-wrapper.download-button_h:hover .button-text {
  color: #005099;
}

.download-button_h:hover .download-icon svg path {
  fill: #005099; 
}


/* header Contact Button */


.header-content .button-wrapper .contact-button_h,
.contact-button {
  width: 100%;
  height: 100%;
  border: 1px solid #eb6112;
  border-radius: 8px;
  transition: all 0.3s ease-in-out;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background-color: #eb6112;
}

.header-content.button-wrapper.contact-button_h:hover {
  background-color: #fff;
}

.contact-button_h .button-text {
  color: #fff;
}

.header-content .button-wrapper .contact-button_h:hover {
  background-color: #fff;

}

.header-content .button-wrapper .contact-button_h:hover .button-text{
 color: #eb6112;

}


.button-icon img {
  width: 30px; 
  height: auto;
  display: block;
  transition: 0.3s ease;
  
}


.contact-button_h:hover .button-icon img {
  content: url("../images/common/mail_w.png"); 
}

.contact-button_h:hover .mail-icon svg path {
  fill: #eb6112; 
}


/* header navi */
.header_navi {
  margin-right: auto; 
}

.header_navi ul {
  display: flex;
  gap: 24px; 
  list-style: none;
  margin: 0;
  padding: 0;
}


/* Learn More Button */
.learn-more-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 48px;
  background-color: transparent;
  border: 1.5px solid #005099;
  border-radius: 8px;
  color: #005099;
  font-size: 16px;
  font-weight: 600;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  white-space: nowrap;
  width: fit-content;
}

.learn-more-button:hover {
  background-color: #005099;
  color: #ffffff;
}

.learn-more-button .arrow-icon {
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.learn-more-button .arrow-icon svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
}
.learn-more-button .arrow-icon svg path {
  fill: #005099;
  transition: fill 0.3s ease-in-out;
}
.learn-more-button:hover .arrow-icon svg path {
  fill: #ffffff;
}

/* Download Button */
.download-button {
  background-color: #ffffff;
}

.download-button:hover {
  background-color: #005099;
}

.download-button .button-text {
  color: #005099;
}


.download-button:hover .button-text {
  color: #ffffff;
}

/* Contact Button */
.contact-button {
  background-color: #fff;
  border: 1px solid #eb6112;
}

.contact-button:hover {
  background-color: #eb6112;
}

.contact-button .button-text {
  color: #eb6112;
}

.contact-button:hover .button-text {
  color: #ffffff;
}

.button-icon img {
  width: 30px; 
  height: auto;
  display: block;
  transition: 0.3s ease;
  
}


.contact-button:hover .button-icon img {
  content: url("../images/common/mail_w.png"); 
}

/* Common Icon Styles */
.button-icon {
  position: relative;
  width: 30px;
  height: 30px;
}

.download-icon,
.mail-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
}

.download-icon {
  width: 21px;
  height: 21px;
}

.mail-icon {
  width: 25px;
  height: 20px;
}

.download-icon svg,
.mail-icon svg {
  width: 100%;
  height: 100%;
}

.download-icon svg {
  fill: #fff;
}




.mail-icon svg {
  fill: #ffffff;
}

.contact-button:hover .mail-icon svg {
  fill: #eb6112;
}

@media (max-width: 768px) {
  .button-wrapper {
    width: 300px;
  }
  .button-content {
    padding: 16px 0;
  }
  .title-text {
    font-size: 20px;
  }
  .button-text {
    font-size: 16px;
  }
  .learn-more-button {
    padding: 10px 40px;
    font-size: 14px;
  }
}

/* 
Hide PC and Mobile sections by default 
*/
.pc {
  display: block;
}
.mobile {
  display: none;
}
@media (max-width: 768px) {
  .pc {
    display: none;
  }
  .mobile {
    display: block;
  }
}

/* 
Header Section Styles 
*/
.header-container {
  background-color: #ffffff;
  width: 100%;
  padding: 15px 0;
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 50px;
}

.logo-section {
  display: flex;
  align-items: center;
  margin-right: 20px;
}

.logo {
  height: 47px;
  width: 220px;
  object-fit: contain;
  object-position: center;
}

.header-buttons {
  display: flex;
  gap: 13px;
  align-items: center;
}

/* Header Button Adjustments */
.header-buttons .button-wrapper {
  width: auto;
  border-radius: 8px;
  cursor: pointer;
}

.header-buttons .button-content {
  padding: 10px 24px;
  gap: 20px;
  width: 180px;
  
}

.header-buttons .button-text {
  font-size: 14px;
  font-weight: bold;
  line-height: normal;
  white-space: nowrap;
}

.header-buttons .button-icon {
  width: 22px;
  height: 22px;
}

.header-buttons .download-icon {
  width: 18px;
  height: 18px;
}

.header-buttons .mail-icon {
  width: 18px;
  height: 18px;
}

@media (max-width: 768px) {
  .header-content {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
  }

  .header-buttons {
    /* gap: 10px; */
    display: none;
  }

  .header-buttons .button-content {
    padding: 6px 20px;
  }

  .header-buttons .button-text {
    font-size: 14px;
  }
  .logo {
    height: 40px;
    width: auto;
  }
}


/* 共通 */
.header-container {
  width: 100%;
  background: #fff;
  position: relative;
}

.header-content {
  display: flex;
  align-items: center;
  padding: 0 16px;
}


.logo-section {
  display: flex;
  align-items: center;
}


.pc-nav {
  display: flex;
  margin-left: 32px;
  font-weight: 500;
}

.pc-nav ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  gap: 24px;
}

.pc-nav a {
  text-decoration: none;
  color: #333;
}

.pc-nav a:hover {
  
  color: #eb6112;
}


.pc-buttons {
  display: flex;
  gap: 16px;
  margin-left: auto;
}

.header-mobile-menu {
  display: none;  
}


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


@media (max-width: 768px) {

 
  .hamburger {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 24px;
    height: 18px;
    cursor: pointer;
    margin-left: auto;
    z-index: 2000;
  }

  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background: #333;
    border-radius: 2px;
  }

  /* SPメニュー全体 */
  .header-mobile-menu {
    display: none;          
    flex-direction: column;
    position: absolute;
    top: 60px;              
    right: 0;
    width: 100%;            
    background: #fff;
    padding: 0;            
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
    z-index: 1000;
  }

  
  .header-mobile-menu .header_navi {
    display: flex;
    flex-direction: column;
    margin: 0;
    padding: 0;
    list-style: none;
    width: 100%;
  }

  .header-mobile-menu .header_navi li {
    border-bottom: 1px solid #ddd;
    width: 100%;
  }

  .header-mobile-menu .header_navi a {
    display: block;
    width: 100%;           /* li幅いっぱいに広げる */
    padding: 12px 16px;    /* 左右余白 */
    color: #333;
    text-decoration: none;
    box-sizing: border-box;
  }

  /* ボタン縦並び */
  .header-mobile-menu .header-buttons {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    padding: 16px;
    box-sizing: border-box;
  }

  .header-mobile-menu .header-buttons .button-wrapper a {
    display: block;
    width: 100%;
    text-align: center;
    padding: 6px 0;
  }

  /* 開いたときに表示 */
  .header-mobile-menu.active {
    display: flex;
  }

  /* PC用の横並びナビとボタンは非表示 */
  .pc-nav,
  .pc-buttons {
    display: none;
  }
}



/* 
Hero Section Styles 
*/
.hero-container {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  background-image: url("../images/common/vector.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  position: relative;
  padding: 100px 0;
}

.hero-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  padding: 0 50px;
}

.hero-text-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
  width: 100%;
}

.hero-subtitle {
  color: #ffffff;
  font-size: 22px;
  font-weight: 400;
  line-height: 1.4;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  width: fit-content;
  position: relative;
}
.hero-subtitle::before {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #ffffff;
}

.hero-title {
  display: flex;
  flex-direction: column;
}

.hero-title-line {
  color: #ffffff;
  font-size: 80px;
  font-weight: bold;
  line-height: 0.9;
  letter-spacing: -0.01em;
  text-shadow: 0 4px 8px rgba(0, 0, 0, 0.4);
}
.hero-title-line span {
  font-size: 100px;
  font-style: italic;
}

.hero-buttons-container {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
}

@media (max-width: 768px) {
  .hero-content {
    gap: 40px;
    padding: 0 20px;
  }

  .hero-subtitle {
    font-size: 18px;
  }

  .hero-subtitle::before {
    bottom: -8px;
    height: 1.5px;
  }

  .hero-title-line {
    font-size: 56px;
  }

  .hero-title-line span {
    font-size: 70px;
  }
  .hero-buttons-container .button-wrapper {
    width: 280px;
  }
}

/* 
Challenges Section Styles
*/
.challenges-container {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
  padding: 80px 0 0;
  position: relative;
}

.challenges-container::after {
  content: "";
  position: absolute;
  bottom: calc(tan(60deg) * -100px / 2);
  left: 0;
  background: #f5f5f5;
  height: calc(tan(60deg) * 100px / 2);
  width: 100%;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  z-index: 1;
}

.challenges-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
  max-width: 1200px;
  width: 100%;
  padding: 0 50px;
}

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

.challenges-grid {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  width: 100%;
}

.challenge-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background-color: #ffffff;
  padding: 40px 30px;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  min-width: 280px;
  flex: 1;
  max-width: 320px;
  text-align: center;
}

.challenge-icon img{
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.challenge-icon svg {
  width: 100%;
  height: 100%;
}

.challenge-text {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.4;
  text-align: center;
}

.challenges-description {
  text-align: center;
  max-width: 800px;
}

@media (max-width: 768px) {
  .challenges-container {
    padding: 60px 0 20px;
  }
  .challenges-container::after {
    bottom: calc(tan(60deg) * -80px / 2);
    height: calc(tan(60deg) * 80px / 2);
  }

  .challenges-content {
    gap: 40px;
    padding: 0 20px;
  }

  .challenges-grid {
    gap: 20px;
    flex-direction: column;
  }

  .challenge-card {
    min-width: auto;
    max-width: none;
    padding: 30px 20px;
  }

  .challenge-icon {
    width: 50px;
    height: 50px;
  }

  .challenge-text {
    font-size: 16px;
  }
  .challenges-description {
    text-align: left;
  }
}

/* 
Human Sense AI Section Styles 
*/
.human-sense-container {
  display: flex;
  width: 100%;
  padding: 150px 0 80px;
  justify-content: center;
  align-items: center;
  background: #ffffff;
  background-image: url("../images/common/sense-ai.png");
  background-size: contain;
  background-position: top center;
  background-repeat: no-repeat;
  position: relative;
}

.human-sense-content {
  display: flex;
  width: 92%;
  max-width: 1200px;
  flex-direction: column;
  align-items: center;
  gap: 80px;
  flex-shrink: 0;
  padding: 0 50px;
}

.main-title-section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  align-items: center;
  text-align: center;
}

.subtitle-text {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.6;
  text-align: center;
}

.algorithm-section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
  max-width: 800px;
}

.algorithm-description {
  font-weight: 400;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  width: 100%;
  max-width: 800px;
}

.feature-card {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 32px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon {
  display: flex;
  width: 65px;
  height: auto;
  align-items: center;
  justify-content: center;

  flex-shrink: 0;
  aspect-ratio: 90/84.27;
}

.edge-detection {
  color: #eb6112;
}

.brightness-analysis {
  color: #d84375;
}

.shape-recognition {
  color: #6d4598;
}

.color-analysis {
  color: #005099;
}

.feature-text {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.feature-title {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.3;
}

.feature-description {
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

@media (max-width: 768px) {
  .human-sense-container {
    padding: 80px 0 60px;
    margin-top: 20px;
  }

  .human-sense-content {
    gap: 60px;
    padding: 0 20px;
  }

  .subtitle-text {
    font-size: 16px;
  }

  .algorithm-description {
    font-size: 14px;
  }

  .features-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .feature-card {
    flex-direction: column;
    text-align: center;
    padding: 24px;
  }

  .feature-icon {
    width: 56px;
    height: 56px;
  }

  .feature-title {
    font-size: 18px;
  }

  .feature-description {
    font-size: 13px;
  }
}

/* 
Human Sense AI Features Section Styles 
*/
.ai-features-container {
  display: flex;
  width: 100%;
  padding: 100px 0;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
}

.ai-features-content {
  display: flex;
  width: 92%;
  max-width: 1200px;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.features-title-section {
  text-align: center;
}

.features-main-grid {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
  max-width: 900px;
  align-items: center;
}

.feature-group {
  display: flex;
  flex-direction: row;
  gap: 4%;
}

.feature-group-text {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 48%;
  justify-content: center;
}

.feature-benefits {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 30px 40px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 450px;
}

.feature-benefits img {
  width: 100%;
  height: auto;
}



.feature-benefits2 {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  max-width: 450px;
}

.feature-benefits2 img {
  width: 100%;
  height: auto;
}

@media (max-width: 768px) {
  .ai-features-container {
    padding: 60px 0;
  }
  .ai-features-content {
    gap: 40px;
    padding: 0 20px;
  }
  .feature-group {
    flex-direction: column;
    align-items: center;
    gap: 20px;
  }

  .feature-group.reverse {
    flex-direction: column-reverse;
  }

  .feature-group-text {
    width: 100%;
  }
}



/* ニュース一覧全体 */
.post {
  padding: 100px 0;
  border-top: 1px solid #eee;
  
}

.container{
  max-width: 900px;   
  margin: 0 auto;      
  padding: 0 20px;     
  box-sizing: border-box;
}

/* 見出し */


/* 一覧リスト */
.post_list {
  list-style: none;
  margin: 0;
  padding: 0;
}

/* 各ニュース項目 */
.post_list li {
  border-bottom: 1px solid #eee;
  padding: 1em 0;
  transition: background 0.3s;
}

.post_list li:hover {
  background: #f9f9f9;
}

/* リンク全体をクリック範囲に */
.post_list li a {
  display: block;
  text-decoration: none;
  color: inherit;
}

/* 日付・カテゴリ */
.post_meta {
  font-size: 0.875rem;
  color: #666;
  margin: 0 0 0.3em;
}

.post_meta_date {
  margin-right: 0.8em;
}

.post_meta_cat {
  background:var(
    --HumanSenseAI,
    linear-gradient(
      135deg,
      #eb6112 10%,
      #d84375 45%,
      #6d4598 87.5%,
      #005099 100%
    )
  );
  color: #fff;
  padding: 0.2em 0.6em;
  border-radius: 12px;
  font-size: 0.75rem;
}

/* タイトル */
.post_ttl {
  font-size: 1rem;
  font-weight: bold;
  margin: 0;
  line-height: 1.4;
}

/* すべて表示ボタン */
.post_more {
  text-align: right;
  margin-top: 1em;
}

.post_more .btn-border {
  display: inline-block;
  padding: 0.6em 1em;
  border: 1px solid #005099;
  color: #005099;
  text-decoration: none;
  border-radius: 4px;
  transition: all 0.3s;
  text-align: center;
}

.post_more .btn-border:hover {
  background: #0073aa;
  color: #fff;
}





/* 
CTA Section Styles 
*/
.cta-container {
  display: flex;
  width: 100%;
  padding: 120px 0;
  justify-content: center;
  align-items: center;
  background: linear-gradient(
    135deg,
    #eb6112 10%,
    #d84375 45%,
    #6d4598 87.5%,
    #005099 100%
  );
}

.cta-content {
  display: flex;
  width: 92%;
  flex-direction: column;
  align-items: center;
  gap: 70px;
  flex-shrink: 0;
}

.title-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  justify-content: flex-start;
  position: relative;
}

.title-text {
  font-weight: 500;
  line-height: 1.5;
  font-style: normal;
  position: relative;
  color: #ffffff;
  font-size: 26px;
  text-align: center;
}

.title-line {
  margin: 0;
}

.buttons-container {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  position: relative;
  gap: 24px;
  flex-wrap: wrap;
  width: 100%;
}

@media (max-width: 768px) {
  .cta-container {
    padding: 80px 0;
  }
}

/*
Solution Section Styles
*/
.solution-container {
  display: flex;
  width: 100%;
  padding: 100px 0;
  justify-content: center;
  align-items: center;
}
.solution-content {
  display: flex;
  width: 92%;
  max-width: 1200px;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.solution-content h3 {
  color: #005099;
}



@media (max-width: 768px) {
  .solution-container {
    padding: 60px 0;
  }
  .solution-content {
    gap: 40px;
  }
  .solution-content .feature-group {
    flex-direction: column-reverse;
  }
  .solution-content .feature-group.reverse {
    flex-direction: column;
  }
  .feature-group-button {
    text-align: center;
  }
}

/*
Implementation Results Section Styles
*/
.implementation-container {
  display: flex;
  width: 100%;
  padding: 100px 0;
  justify-content: center;
  align-items: center;
  background: #f5f5f5;
}

.implementation-content {
  display: flex;
  width: 92%;
  max-width: 1200px;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.implementation-title-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.implementation-description {
  max-width: 800px;
  font-weight: 600;
}

.implementation-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  width: 100%;
  max-width: 900px;
}

.implementation-card {
  display: flex;
  flex-direction: column;
  background: #ffffff;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

/*
ホバーエフェクトを一旦コメントアウト
 .implementation-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
} */

.implementation-image {
  width: 100%;
  height: 180px;
  overflow: hidden;
}

.card-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.implementation-label {
  padding: 20px;
  text-align: center;
 background: linear-gradient(
    135deg,
    #005099 10%,
    #6d4598 45%,
    #d84375 87.5%,
    #eb6112 100%
  );
  color: #ffffff;
}

.implementation-label h3 {
  color: #ffffff;
  text-align: center;
}

@media (max-width: 768px) {
  .implementation-container {
    padding: 60px 0;
  }

  .implementation-content {
    gap: 40px;
    padding: 0 20px;
  }

  .implementation-description {
    font-size: 14px;
    text-align: left;
  }

  .implementation-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .implementation-image {
    height: 200px;
  }

  .implementation-label {
    font-size: 14px;
    padding: 16px;
  }
}

/*
Process Section Styles
*/
.process-container {
  display: flex;
  width: 100%;
  padding: 100px 0;
  justify-content: center;
  align-items: center;
  background: #ffffff;
}

.process-content {
  display: flex;
  width: 92%;
  max-width: 1200px;
  flex-direction: column;
  align-items: center;
  gap: 80px;
}

.process-title-section {
  display: flex;
  flex-direction: column;
  gap: 30px;
  align-items: center;
}

.process-description {
  max-width: 800px;
  font-weight: 600;
}

.process-steps {
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: 100%;
  max-width: 800px;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 30px;
  position: relative;
}

.process-step:not(:last-child)::after {
  content: "";
  position: absolute;
  left: 30px;
  top: 60px;
  bottom: -60px;
  width: 2px;
  background: #999;
}

.step-number {
  display: flex;
  width: 60px;
  height: 60px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    #eb6112 10%,
    #d84375 45%,
    #6d4598 87.5%,
    #005099 100%
  );
  color: #ffffff;
  font-size: 24px;
  font-weight: 700;
  flex-shrink: 0;
  z-index: 1;
  position: relative;
}

.step-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex: 1;
  padding-top: 8px;
}

.step-content h3 {
  color: #eb6112;
}

@media (max-width: 768px) {
  .process-container {
    padding: 60px 0;
  }

  .process-content {
    gap: 40px;
    padding: 0 20px;
  }

  /*   .process-description {
    font-size: 16px;
  }
 */
  .process-steps {
    gap: 50px;
  }

  .process-step {
    gap: 20px;
  }

  .process-step:not(:last-child)::after {
    left: 25px;
    top: 50px;
    bottom: -50px;
  }

  .step-number {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

/*
Footer Section Styles
*/
.footer-container {
  display: flex;
  width: 100%;
  padding: 30px 0;
  justify-content: center;
  align-items: center;
  background: #3c3c3c;
}

.footer-content {
  display: flex;
  width: 92%;
  max-width: 1200px;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo-image {
  height: 40px;
  width: auto;
  object-fit: contain;
  object-position: center;
}

.footer-nav {
  display: flex;
  gap: 40px;
  align-items: center;
}

.footer-link {
  color: #ffffff;
  font-size: 14px;
  font-weight: 400;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}

.footer-link svg path {
  fill: #ffffff;
  transition: fill 0.3s ease-in-out;
}

.footer-link:hover {
  color: #eb6112;
}

.footer-link:hover svg path {
  fill: #eb6112;
}

@media (max-width: 768px) {
  .footer-container {
    padding: 30px 0;
  }

  .footer-content {
    flex-direction: column;
    gap: 20px;
    padding: 0 20px;
  }

  .footer-nav {
    flex-direction: column;
    gap: 16px;
    text-align: center;
  }

  .footer-link {
    font-size: 13px;
  }
}



/* パンくず */
.breadcrumb {
    padding-top: 10px;
    font-size: 14px; /* デフォルトはPCサイズ */
}

@media screen and (max-width: 768px) {
    .breadcrumb {
        font-size: 12px;
    }
}

/* リスト内 */
.breadcrumb_list {
    display: flex;
}

/* li内 */
.breadcrumb_list li {
    display: flex;
    align-items: center;
    position: relative;
}

/* liの前に矢印アイコンを表示 */
.breadcrumb_list li::before {
    content: ' ';
    background-image: url("../images/common/angle-right-gray.svg");
    display: block;
    width: 5px;
    height: 8px;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 0 8px;
}

/* 最初のliだけ矢印を非表示 */
.breadcrumb_list li:nth-child(1)::before {
    display: none;
}



/*--------------------------------------------------------------
    Variables (仮の値)
--------------------------------------------------------------*/
:root {
    --tablet: 768px;
    --mobile: 480px;
    --main-color: #FF6600;
    --white: #FFFFFF;
    --font-sub-color: #666666;
    --background-color: #F5F5F5;
    --background-sub-color: #EFEFEF;
    --border-color: #CCCCCC;
    --border-light-color: #DDDDDD;
    --facebook: #1877F2;
    --font-color: #333333;
}

/*--------------------------------------------------------------
    single
--------------------------------------------------------------*/
.single {
    padding-top: 140px;
}
@media screen and (max-width: 768px) {
    .single {
        padding-top: 64px;
    }
}

.single h1 {
    font-weight: 700;
    font-size: 32px;
}
@media screen and (max-width: 480px) {
    .single h1 {
        font-size: 30px;
    }
}

/* 投稿 */
.single .content {
    padding: 40px 0 80px;
}
@media screen and (max-width: 768px) {
    .single .content {
        padding: 40px 0 60px;
    }
}

.single .content_wrapper {
    padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.single .content_meta {
    margin-top: 10px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.single .content_meta_date {
    font-size: 14px;
    color: var(--font-sub-color);
    margin-right: 10px;
}

.single .content_meta_cat {
    margin-right: 10px;
    display: flex;
    align-items: center;
    font-size: 12px;
    height: 24px;
    padding: 0 10px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    background-color: var(--white);
    border-radius: 12px;
}

.single .content_meta_cat:hover {
    color: var(--white);
    background-color: var(--main-color);
}

.single .content_inner {
    margin-top: 40px;
}

body .single .content_inner h2 {
    margin-top: 40px;
    margin-bottom: 32px;
    font-weight: 700;
    font-size: 28px;
    padding-left: 20px;
    position: relative;
    text-align:left;
}

.single .content_inner h2::before {
    content: ' ';
    position: absolute;
    height: 28px;
    width: 8px;
    background-color: var(--main-color);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border-radius: 40px;
}

.single .content_inner h3 {
    margin-top: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 20px;
}

.single .content_inner p {
    margin-top: 20px;
}

.single .content_inner a {
    text-decoration: underline;
}

.single .content_inner a:hover {
    color: var(--main-color);
}

.single .content_inner ul {
    margin-top: 32px;
    margin-bottom: 32px;
    padding-left: 1.2em;
    list-style: disc;
}

.single .content_inner ul li {
    margin-top: 8px;
}

.single .content_inner ul ul {
    list-style: circle;
}

.single .content_inner ol {
    margin-top: 32px;
    margin-bottom: 32px;
    padding-left: 1.2em;
    list-style: decimal;
}

.single .content_inner ol li {
    margin-top: 8px;
}

.single .content_inner blockquote {
    margin-top: 32px;
    margin-bottom: 32px;
    background-color: var(--background-color);
    padding: 1px 20px 1.6em;
    font-style: italic;
}

.single .content_inner table {
    margin-top: 32px;
    margin-bottom: 32px;
    border: 1px solid var(--border-color);
    border-collapse: collapse;
}

.single .content_inner table.max {
    width: 100%;
}

.single .content_inner table th {
    background-color: var(--background-sub-color);
    font-weight: 700;
    padding: 4px 8px;
    border: 1px solid var(--border-color);
}

.single .content_inner table td {
    background-color: var(--white);
    padding: 4px 8px;
    border: 1px solid var(--border-color);
}

.single .content_inner .gmap,
.single .content_inner .youtube {
    margin-top: 32px;
    margin-bottom: 32px;
}

/* タグ */
.single .content_tag {
    position: relative;
    margin-top: 40px;
}

.single .content_tag h2 {
    background-color: var(--background-color);
    text-align: center;
    font-weight: 700;
    font-size: 14px;
}

.single .content_tag_list {
    display: flex;
    flex-wrap: wrap;
    margin: 10px -5px 0;
}

.single .content_tag_list li {
    padding: 10px 5px 0;
}

/* シェア */
.single .content_share {
    margin-top: 40px;
}

.single .content_share h2 {
    background-color: var(--background-color);
    text-align: center;
    font-weight: 700;
    font-size: 14px;
}

.single .content_share_list {
    display: flex;
    flex-wrap: wrap;
    margin: 10px -5px 0;
}

.single .content_share_list li {
    padding: 10px 5px 0;
    width: 50%;
}

.single .content_share_list li a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 32px;
    width: 100%;
    color: var(--white);
    font-size: 12px;
    font-weight: 700;
}

.single .content_share_list li a img {
    margin-right: 4px;
}

.single .content_share_list li a.facebook {
    background-color: var(--facebook);
}

.single .content_share_list li a.x {
    background-color: var(--font-color);
}

/* 戻るリンク */
.single .content_return {
    margin-top: 80px;
}
@media screen and (max-width: 768px) {
    .single .content_return {
        margin-top: 60px;
    }
}

.single .content_return p {
    display: flex;
    justify-content: center;
}

/*--------------------------------------------------------------
    single product
--------------------------------------------------------------*/
.single .product {
    padding: 40px 0 80px;
}
@media screen and (max-width: 768px) {
    .single .product {
        padding: 40px 0 60px;
    }
}

.single .product_wrapper {
    margin-top: 40px;
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
}
@media screen and (max-width: 768px) {
    .single .product_wrapper {
        display: block;
    }
}

.single .product_side {
    width: 320px;
    flex-shrink: 0;
    margin-right: 60px;
}
@media screen and (max-width: 768px) {
    .single .product_side {
        margin-top: 60px;
        width: 100%;
    }
}

.single .product_side_list {
    border: 1px solid var(--border-light-color);
    padding: 0 0 20px;
}

.single .product_side_list .ttl {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    height: 24px;
    width: 100%;
    background-color: var(--main-color);
    color: var(--white);
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 20px;
}

.single .product_side_list .parent {
    font-weight: 700;
    font-size: 16px;
    padding: 0 20px;
    margin-top: 10px;
}

.single .product_side_list .parent > a {
    display: flex;
    align-items: center;
}

.single .product_side_list .parent > a::before {
    content: ' ';
    display: block;
    background-image: url("../images/common/arrow.svg");
    background-repeat: no-repeat;
    background-size: contain;
    width: 12px;
    height: 12px;
    margin-right: 6px;
}

.single .product_side_list .child li {
    margin-top: 4px;
    font-size: 14px;
    font-weight: 400;
    padding-left: 20px;
}

.single .product_thumb {
    margin-top: 40px;
    text-align: center;
}

.single .product_thumb img {
    width: 100%;
    height: auto;
    max-height: 320px;
    object-fit: contain;
}

/* 内部コンテンツはcontent_innerと同じ */
.single .product_inner {
    margin-top: 40px;
}

.single .product_inner h2 {
    margin-top: 40px;
    margin-bottom: 32px;
    font-weight: 700;
    font-size: 28px;
    padding-left: 20px;
    position: relative;
}

.single .product_inner h2::before {
    content: ' ';
    position: absolute;
    height: 28px;
    width: 8px;
    background-color: var(--main-color);
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border-radius: 40px;
}

.single .product_inner h3 {
    margin-top: 32px;
    margin-bottom: 20px;
    font-weight: 700;
    font-size: 20px;
}

.single .product_inner p {
    margin-top: 20px;
}

.single .product_inner a {
    text-decoration: underline;
}

.single .product_inner a:hover {
    color: var(--main-color);
}

.single .product_inner ul {
    margin-top: 32px;
    margin-bottom: 32px;
    padding-left: 1.2em;
    list-style: disc;
}

.single .product_inner ul li {
    margin-top: 8px;
}

.single .product_inner ul ul {
    list-style: circle;
}

.single .product_inner ol {
    margin-top: 32px;
    margin-bottom: 32px;
    padding-left: 1.2em;
    list-style: decimal;
}

.single .product_inner ol li {
    margin-top: 8px;
}

.single .product_inner blockquote {
    margin-top: 32px;
    margin-bottom: 32px;
    background-color: var(--background-color);
    padding: 1px 20px 1.6em;
    font-style: italic;
}

.single .product_inner table {
    margin-top: 32px;
    margin-bottom: 32px;
    border: 1px solid var(--border-color);
    border-collapse: collapse;
}

.single .product_inner table.max {
    width: 100%;
}

.single .product_inner table th {
    background-color: var(--background-sub-color);
    font-weight: 700;
    padding: 4px 8px;
    border: 1px solid var(--border-color);
}

.single .product_inner table td {
    background-color: var(--white);
    padding: 4px 8px;
    border: 1px solid var(--border-color);
}

.single .product_inner .gmap,
.single .product_inner .youtube {
    margin-top: 32px;
    margin-bottom: 32px;
}

.single .product_return {
    margin-top: 80px;
}

@media screen and (max-width: 768px) {
    .single .product_return {
        margin-top: 60px;
    }
}

.single .product_return p {
    display: flex;
    justify-content: center;
}

:root {
    --tablet: 768px;
    --mobile: 480px;
    --main-color: #FF6600;
    --white: #FFFFFF;
    --font-sub-color: #666666;
    --background-color: #F5F5F5;
    --border-color: #CCCCCC;
    --border-light-color: #DDDDDD;
}

/*--------------------------------------------------------------
	archive
--------------------------------------------------------------*/
/*--------------------------------------------------------------
.archive {
    padding-top: 64px;
}

@media screen and (min-width: 769px) {
    .archive {
        padding-top: 140px;
    }
}
    --------------------------------------------------------------*/

.archive h1 {
    font-weight: 700;
    font-size: 24px;
}

@media screen and (min-width: 481px) {
    .archive h1 {
        font-size: 32px;
    }
}

/* 投稿 */
.archive .post {
    padding: 40px 0 60px;
}

@media screen and (min-width: 769px) {
    .archive .post {
        padding: 40px 0 80px;
    }
}

.archive .post h1 {
    text-align: center;
}

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

.archive .post_category {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 40px;
}

.archive .post_category > li {
    margin-right: 10px;
    margin-bottom: 10px;
}

.archive .post_category .ttl {
    color: var(--main-color);
    font-weight: 700;
}

@media screen and (max-width: 480px) {
    .archive .post_category .ttl {
        width: 100%;
        margin-bottom: 4px;
    }
}

.archive .post_category .link a {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--main-color);
    padding: 0 10px;
    color: var(--main-color);
    background-color: var(--white);
    text-decoration: none;
}

@media screen and (min-width: 481px) {
    .archive .post_category .link a {
        font-size: 14px;
        height: 28px;
        border-radius: 14px;
    }
}

@media screen and (max-width: 480px) {
    .archive .post_category .link a {
        font-size: 12px;
        height: 24px;
        border-radius: 12px;
    }
}

.archive .post_category .link a:hover {
    color: var(--white);
    background-color: var(--main-color);
}

.archive .post_category .link span {
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid var(--main-color);
    padding: 0 10px;
    color: var(--white);
    background-color: var(--main-color);
}

@media screen and (min-width: 481px) {
    .archive .post_category .link span {
        font-size: 14px;
        height: 28px;
        border-radius: 14px;
    }
}

@media screen and (max-width: 480px) {
    .archive .post_category .link span {
        font-size: 12px;
        height: 24px;
        border-radius: 12px;
    }
}

/* リスト */
.archive .post_list {
    margin-top: 30px;
    border-top: 1px solid var(--border-color);
}

.archive .post_list li {
    border-bottom: 1px solid var(--border-color);
}

.archive .post_list li a {
    padding: 20px 0;
    display: block;
    text-decoration: none;
}

@media screen and (min-width: 769px) {
    .archive .post_list li a {
        display: flex;
        align-items: center;
    }
}

.archive .post_list li a:hover {
    background-color: var(--background-color);
}

/* サムネイル */
.archive .post_thumb > li {
    margin-top: 40px;
}

@media screen and (min-width: 769px) {
    .archive .post_thumb > li {
        width: 33.33%;
        padding: 40px 20px 0;
    }
}

@media screen and (max-width: 768px) {
    .archive .post_thumb > li {
        width: 50%;
        padding: 40px 20px 0;
    }
}

@media screen and (max-width: 480px) {
    .archive .post_thumb > li {
        width: 100%;
        margin-top: 40px;
    }
}

.archive .post_thumb .inner {
    border: 1px solid var(--border-light-color);
}

.archive .post_thumb .inner_img {
    overflow: hidden;
}

.archive .post_thumb .inner_img img {
    transition: all 0.3s ease 0s;
}

.archive .post_thumb .inner_txt {
    padding: 16px;
}

.archive .post_thumb .inner_ttl {
    font-weight: 700;
    font-size: 16px;
}

.archive .post_thumb .inner_info {
    margin-top: 0;
    font-size: 14px;
}

.archive .post_thumb .inner_meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 8px;
}

.archive .post_thumb .inner_meta_cat {
    margin-right: 10px;
    display: flex;
    align-items: center;
    font-size: 12px;
    height: 24px;
    padding: 0 10px;
    border: 1px solid var(--main-color);
    color: var(--main-color);
    background-color: var(--white);
    border-radius: 12px;
}

/* メタ情報 */
.archive .post_meta {
    display: flex;
    align-items: center;
}

@media screen and (min-width: 769px) {
    .archive .post_meta {
        flex-shrink: 0;
    }
}

.archive .post_meta_date {
    font-size: 14px;
    color: var(--font-sub-color);
    margin-right: 10px;
}

.archive .post_meta_cat {
    margin-right: 10px;
    display: flex;
    align-items: center;
    font-size: 12px;
    height: 24px;
    padding: 0 10px;
    
    
    background-color: var(--white);
    border-radius: 12px;
}

/* タイトル */
.archive .post_ttl {
    font-size: 16px;
}

@media screen and (max-width: 768px) {
    .archive .post_ttl {
        margin-top: 4px;
    }
}

/* ページャー */
.archive .post_pager {
    display: flex;
    align-items: center;
}

@media screen and (min-width: 769px) {
    .archive .post_pager {
        margin-top: 80px;
    }
}

@media screen and (max-width: 768px) {
    .archive .post_pager {
        margin-top: 40px;
        justify-content: center;
    }
}

.archive .post_pager .page-numbers {
    font-weight: 700;
    font-size: 20px;
    margin: 0 10px;
    color: var(--main-color);
}

.archive .post_pager .page-numbers:hover {
    opacity: 1;
    color: var(--font-color);
}

.archive .post_pager .page-numbers.prev,
.archive .post_pager .page-numbers.next {
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: var(--main-color);
    width: 52px;
    height: 52px;
    border-radius: 26px;
}

.archive .post_pager .page-numbers.prev:hover,
.archive .post_pager .page-numbers.next:hover {
    background-color: var(--font-color);
}

.archive .post_pager .page-numbers.current {
    color: var(--main-color);
    opacity: 0.5;
}

.archive .post_pager .page-numbers.current:hover {
    color: var(--main-color);
}

/* 製品一覧 */
.archive .product {
    padding: 40px 0 60px;
}

@media screen and (min-width: 769px) {
    .archive .product {
        padding: 40px 0 80px;
    }
}

.archive .product h1 {
    text-align: center;
}

.archive .product_wrapper {
    margin-top: 40px;
}

@media screen and (min-width: 769px) {
    .archive .product_wrapper {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
    }
}

.archive .product_side {
    margin-top: 60px;
}

@media screen and (min-width: 769px) {
    .archive .product_side {
        width: 320px;
        flex-shrink: 0;
        margin-right: 60px;
    }
}

.archive .product_side_list {
    border: 1px solid var(--border-light-color);
    padding: 0 0 20px;
}

.archive .product_side_list .ttl {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    height: 24px;
    width: 100%;
    background-color: var(--main-color);
    color: var(--white);
    font-weight: 700;
    font-size: 12px;
    margin-bottom: 20
}


.page .error_wrapper{
  padding: 0;
    max-width: 800px;
    margin: 0 auto;
}

.page .error_wrapper h1 {
    text-align: center;
    color: #eb6112;
    line-height:1.2;
    font-size: 2em;
    font-weight: 600;
}

.page .error_message{
  font-weight: 700;
    text-align: center;
    font-size: 16px;}

    .page .error_txt {
    margin-top: 20px;
    text-align: center;
    font-size: 14px;
}

.page .error_more {
    margin-top: 20px;
    display: flex
;
    justify-content: center;
}

.btn-border {
    display: flex;
    width: 200px;
    height: 48px;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    color: #eb6112;

    font-size: 16px;
    font-weight: 700;
    border-radius: 24px;
    border: 2px solid  #eb6112

}

.error-page {
    display: flex;
    flex-direction: column;
    min-height: 50vh;
}

/* errorセクションは上寄せ */
.error-page .error {
    flex: 0; /* 高さを必要最低限に */
    margin-top: 50px; /* 上の余白を調整 */
}

/* CTAやフッターを下に押し出す部分 */
.error-page .trial-cta {
    margin-top: auto; /* 下に配置 */
}