@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;700&family=Zen+Kaku+Gothic+New:wght@400;700&display=swap");

/* Base Reset and Smooth Scroll */
html {
  scroll-behavior: smooth;
}

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

p {
  font-size: 16px;
  line-height: 1.8;
  color: #303030;
  margin: 0 0 20px;
}
p:last-child {
  margin-bottom: 0;
}

ul {
  list-style: none;
}
ol,ul, li {
    box-sizing: border-box;
}

/*--------------------------------------------------------------
	■B.リンク
--------------------------------------------------------------*/
a {
  color: #303030;
  outline: none;
  border-style: none;
  text-decoration: none;
  cursor: pointer;
}

/*--------------------------------------------------------------
	■C.共通定義
--------------------------------------------------------------*/

/* Common Section Styles */
.section-label {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  color: #0001fa;
  font-size: 20px;
  letter-spacing: 2px;
  text-align: center;
  margin: 0 0 19px 0;
}

.section-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #303030;
  font-size: 32px;
  letter-spacing: 4.05px;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

h3 {
  font-weight: 700;
  font-size: 22px;
  color: #002bad;
  letter-spacing: 1px;
  line-height: 1.5;
  text-align: center;
  margin: 0;
}

@media (max-width: 768px) {
  p {
    font-size: 14px;
  }

  .section-label {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .section-title {
    font-size: 26px;
    letter-spacing: 2px;
    line-height: 1.5;
  }

  h3 {
    font-size: 20px;
  }
}

/* Container Base */
.container {
  width: 92%;
  max-width: 1200px;
  margin: 0 auto;
}

/* CTA Button Base Styles */
.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 1.8px;
  text-decoration: none;
  white-space: nowrap;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
  border: none;
  padding: 10px 15px;
  border: 1px solid #0001fa;
}

/* Primary CTA Button (Blue background) */
.cta-btn--primary {
  background: #0001fa;
  color: white;
}

.cta-btn--primary:hover {
  background: white;
  color: #0001fa;
}

/* Secondary CTA Button (White background with blue border) */
.cta-btn--secondary {
  background: white;
  color: #0001fa;
}

.cta-btn--secondary:hover {
  background: #0001fa;
  color: white;
}

/* Button (border) */
.btn-border {
  display: flex;
  width: 200px;
  height: 48px;
  justify-content: center;
  align-items: center;
  background-color: #fff;
  color: #0001fa;
  font-size: 16px;
  font-weight: 700;
  border-radius: 24px;
  border: 2px solid #0001fa;
}
.btn-border:hover {
  color: #fff;
  opacity: 1;
  background-color: #0001fa;
}

/* Header Styles */
.header-morix {
  width: 100%;
  height: 75px;
  box-shadow: 0px 0px 15px 0px rgba(160, 156, 156, 0.25);
  background: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 92%;
  max-width: 1200px;
  height: 100%;
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
}

/* Logo Styles */
.header-logo {
  height: 30px;
  width: auto;
}

.header-logo img {
  height: 100%;
  width: auto;
}

/* Navigation Styles */
.header-nav {
  display: flex;
  gap: 29px;
  align-items: center;
}

.nav-item {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  color: #303030;
  font-size: 16px;
  letter-spacing: 1.8px;
  text-decoration: none;
  white-space: nowrap;
  transition: color 0.3s ease-in-out;
}

.nav-item:hover {
  color: #0001fa;
}

/* Header Button Container */
.header-buttons {
  display: flex;
  gap: 21px;
  align-items: center;
}

/* Media Query for Mobile */
@media (max-width: 768px) {
  .header-morix {
    height: auto;
  }

  .header-container {
    padding: 10px 5px;
    flex-wrap: wrap;
    height: auto;
    gap: 10px;
  }

  .header-logo {
    height: 20px;
  }
  .header-nav {
    order: 3;
    width: 100%;
    justify-content: center;
    gap: 10px;
  }

  .nav-item {
    font-size: 14px;
  }

  .header-buttons {
    display: none;
  }

  .cta-btn {
    width: 180px;
    font-size: 14px;
  }
}

/* Hero Section Styles */
.hero-section {
  position: relative;
  min-height: 600px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/common/mv-bg.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.hero-container {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 60px 20px;
}

.hero-content {
  flex: 1;
  max-width: 550px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-title-container {
  position: relative;
}

.hero-title-bg {
  position: relative;
  background-image: url("../images/common/7855465ba24560cd87b3e49bf7aa11f32eee969d.svg");
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
  padding: 20px 10px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-subtitle {
  font-weight: 700;
  font-size: 24px;
  color: white;
  text-align: center;
  text-shadow: rgba(0, 0, 0, 0.25) 0px 0px 8px;
  letter-spacing: 1px;
  line-height: 1.4;
  margin: 0;
}

.hero-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 30px;
  color: #002bad;
  text-align: center;
  letter-spacing: 1.5px;
  line-height: 1.4;
  margin: 0;
}

.hero-logo {
  display: flex;
  justify-content: center;
}

.workgear-logo {
  width: 400px;
  height: 93px;
}

.workgear-logo img {
  width: 100%;
  height: auto;
}

.hero-images {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.hero-images img {
  max-width: 100%;
  height: auto;
}

.hero-laptop-mobile {
  display: none;
}

/* PC/Mobile Display Control */
.pc {
  display: block;
}

.sp {
  display: none;
}

/* Hero Mobile Styles */
@media (max-width: 768px) {
  .hero-section {
    min-height: 500px;
  }

  .hero-container {
    flex-direction: column;
    gap: 40px;
    padding: 40px 15px;
  }

  .hero-content {
    max-width: 100%;
    text-align: center;
    gap: 20px;
  }

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

  .hero-title {
    font-size: 22px;
    text-align: left;
  }

  .workgear-logo {
    width: 300px;
    height: 70px;
  }

  .hero-images {
    width: 100%;
  }

  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

/* Product Section Styles */
.product-section {
  background: white;
  padding: 80px 0;
}

.product-header {
  margin-bottom: 0;
}

.product-header .section-title {
  font-size: 27px;
}

.product-content {
  display: flex;
  justify-content: center;
  margin-bottom: 80px;
}

.product-image {
  max-width: 688px;
  width: 100%;
  height: auto;
}

.product-description {
  max-width: 808px;
  margin: 0 auto;
}

.product-description p {
  font-size: 18px;
  letter-spacing: 1.8px;
  margin: 0 0 20px 0;
  color: black;
  text-align: center;
}

.product-description p:last-child {
  margin-bottom: 0;
}

/* Product Mobile Styles */
@media (max-width: 768px) {
  .product-section {
    padding: 60px 0;
  }

  .product-header {
    margin-bottom: 40px;
  }

  .product-header .section-title {
    font-size: 22px;
  }

  .product-content {
    margin-bottom: 60px;
  }

  .product-description {
    text-align: left;
  }
  .product-description p {
    font-size: 16px;
    margin-bottom: 15px;
  }
}

/* Feature Section Styles */
.feature-section {
  background: #f4f4f4;
  padding: 80px 0;
}

.feature-header {
  margin-bottom: 80px;
}

.feature-cards {
  display: flex;
  column-gap: 40px;
  row-gap: 60px;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 80px;
}

.feature-card {
  background: white;
  border-radius: 15px;
  padding: 0 26px 26px;
  width: 340px;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  box-sizing: border-box;
}

.feature-card-icon {
  position: relative;
  top: -52px;
  width: 104px;
  height: 104px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: -46px;
}

.feature-card-icon img {
  width: 44px;
  height: auto;
  object-fit: contain;
}

.feature-card-title {
  position: relative;
  margin-top: -40px;
	font-size: 20px;
	font-weight: 700;
	text-align: center;
  z-index: 2;
}

.feature-card-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
  width: 100%;
}

.feature-item {
  display: flex;
  align-items: center;
  gap: 11px;
}

.feature-check-icon {
  width: 27px;
  height: 27px;
  flex-shrink: 0;
}

.feature-item p {
  font-weight: 500;
  margin: 0;
}

.feature-cta {
  display: flex;
  justify-content: center;
}

.feature-cta .cta-btn {
  width: 300px;
  height: 72px;
  border-radius: 28px;
  font-size: 16px;
  letter-spacing: 1.9px;
  font-weight: 700;
  gap: 14px;
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.28);
  border: 3px solid white;
}

.feature-cta .cta-btn svg {
  width: 46px;
  height: 24px;
}

/* Feature Mobile Styles */
@media (max-width: 768px) {
  .feature-section {
    padding: 60px 0;
  }

  .feature-header {
    margin-bottom: 80px;
  }

  .feature-cards {
    flex-direction: column;
    align-items: center;
    gap: 80px;
    margin-bottom: 60px;
  }

  .feature-card {
    max-width: 100%;
    width: 300px;
  }

  .feature-cta .cta-btn {
    width: 280px;
    height: 60px;
    font-size: 14px;
  }

  .feature-cta .cta-btn svg {
    width: 36px;
    height: 18px;
  }
}

/* CTA Section Styles */
.cta-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.cta-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, #0101fa 0%, #405ee8 100%);
  background-image: url("../images/common/cta-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.cta-container {
  position: relative;
  z-index: 2;
}

.cta-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}

.cta-title {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 27px;
  color: white;
  text-align: center;
  letter-spacing: 4.05px;
  line-height: 1.5;
  margin: 0;
}

.cta-download-card {
  background: white;
  border-radius: 10px;
  box-shadow: 5px 7px 10px 0px rgba(0, 0, 0, 0.35);
  padding: 8px 27px;
  display: flex;
  align-items: center;
  gap: 42px;
  width: fit-content;
  max-width: 564px;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
}

.cta-download-card:hover {
  transform: translateY(-2px);
}

.download-icon {
  width: 61px;
  height: 88px;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.download-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.download-text {
  flex: 1;
}

.download-text p {
  font-weight: 700;
  font-size: 20px;
  color: #002bad;
  letter-spacing: 2px;
  line-height: 1.5;
  margin: 0;
}

.download-arrow {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
}

.download-arrow img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cta-btn--contact {
  background: #0001fa;
  color: white;
  border: 2px solid white;
  border-radius: 14px;
  width: 564px;
  height: 44px;
  font-size: 20px;
  letter-spacing: 2px;
  font-weight: 500;
}

.cta-btn--contact:hover {
  background: white;
  color: #0001fa;
}

/* CTA Mobile Styles */
@media (max-width: 768px) {
  .cta-section {
    padding: 60px 0;
  }

  .cta-content {
    gap: 30px;
  }

  .cta-title {
    font-size: 22px;
    letter-spacing: 2px;
    text-align: left;
  }

  .cta-download-card {
    max-width: 100%;
    padding: 8px 20px;
    gap: 20px;
  }

  .download-icon {
    width: 50px;
    height: 70px;
  }

  .download-text p {
    font-size: 16px;
    letter-spacing: 1px;
  }

  .download-arrow {
    width: 20px;
    height: 20px;
  }

  .cta-btn--contact {
    width: 100%;
    max-width: 100%;
    height: 40px;
    font-size: 16px;
  }
}

/* Recruit Section Styles */
.recruit-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.recruit-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/common/recruit-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.recruit-background::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.recruit-container {
  position: relative;
  z-index: 2;
}

.recruit-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.recruit-header {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}

.recruit-label {
  color: #fcfcfc;
  margin: 0;
}

.recruit-title {
  color: white;
}

.recruit-description {
  max-width: 939px;
}

.recruit-description p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  color: white;
  letter-spacing: 1.6px;
  line-height: 2;
  text-align: center;
  margin: 0;
}

.recruit-cta {
  margin-top: 20px;
}

/* Recruit Mobile Styles */
@media (max-width: 768px) {
  .recruit-section {
    padding: 60px 0;
  }

  .recruit-content {
    gap: 30px;
  }

  .recruit-header {
    gap: 15px;
  }

  .recruit-title {
    font-size: 24px;
    letter-spacing: 2px;
    line-height: 1.5;
  }

  .recruit-description p {
    letter-spacing: 1px;
    text-align: left;
  }
}

/* Company Section Styles */
.company-section {
  position: relative;
  padding: 80px 0;
  overflow: hidden;
}

.company-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/common/company-background.png");
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 1;
}

.company-container {
  position: relative;
  z-index: 2;
}

.company-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  text-align: center;
}

.company-header {
  display: flex;
  flex-direction: column;
  gap: 22px;
  align-items: center;
}

.company-label {
  color: #fcfcfc;
  margin: 0;
}

.company-title {
  color: white;
}

.company-description {
  max-width: 600px;
}

.company-description p {
  font-weight: 500;
  color: white;
  letter-spacing: 1.6px;
  line-height: 2;
  text-align: center;
  margin: 0;
}

.company-cta {
  margin-top: 20px;
}

/* Company Mobile Styles */
@media (max-width: 768px) {
  .company-section {
    padding: 60px 0;
  }

  .company-content {
    gap: 30px;
  }

  .company-header {
    gap: 15px;
  }

  .company-title {
    font-size: 24px;
    letter-spacing: 2px;
    line-height: 1.5;
  }

  .company-description p {
    letter-spacing: 1px;
    text-align: left;
  }
}

/* News Section Styles */
.news-section {
  background: white;
  padding: 80px 0;
}

.news-header {
  margin-bottom: 60px;
}

.news-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 60px;
}

.news-list {
  max-width: 923px;
  width: 100%;
}

.news-item {
	border-bottom: 1px solid #d0d0d0;
	list-style: none;
}
.news-item a {
  display: flex;
  align-items: center;
  gap: 40px;
  padding: 15px 36.5px;
  position: relative;
	text-decoration: none;
}

.news-item:last-child {
  border-bottom: none;
}

.news-date {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #0001fa;
  letter-spacing: 0.8px;
  min-width: 93px;
  flex-shrink: 0;
}

.news-text {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  color: #303030;
  letter-spacing: 0.8px;
  line-height: 1.5;
  flex: 1;
}

/* News Mobile Styles */
@media (max-width: 768px) {
  .news-section {
    padding: 60px 0;
  }

  .news-header {
    margin-bottom: 40px;
  }

  .news-content {
    gap: 40px;
  }

  .news-list {
    max-width: 100%;
  }

  .news-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 15px 20px;
  }
	.news-item a {
		padding: 0;
	}

  .news-date {
    font-size: 14px;
    min-width: auto;
  }

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

/* Contents Section Styles */
.contents-section {
  background: #f4f4f4;
  padding: 80px 0;
}

.contents-cards {
  display: flex;
  justify-content: center;
  gap: 53px;
  flex-wrap: wrap;
}

.content-card {
  position: relative;
  width: 468px;
  height: 215px;
  border-radius: 10px;
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.3s ease-in-out;
  text-decoration: none;
  display: block;
}

.content-card:hover {
  transform: translateY(-3px);
}

.content-card-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.content-card-text {
  position: absolute;
  bottom: 50%;
  left: 0;
  right: 0;
  transform: translateY(50%);
  padding: 20px 36px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  z-index: 2;
}

.content-card-text p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: white;
  letter-spacing: 2px;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* Contents Mobile Styles */
@media (max-width: 768px) {
  .contents-section {
    padding: 60px 0;
  }

  .contents-cards {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .content-card {
    width: 100%;
    max-width: 350px;
    height: 180px;
  }

  .content-card-text {
    padding: 15px 20px;
  }

  .content-card-text p {
    font-size: 18px;
    letter-spacing: 1.8px;
  }
}

/* Footer Styles */
.footer-morix {
  background: #303030;
  padding: 40px 0;
}

.footer-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-links p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: white;
  letter-spacing: 1.3px;
  margin: 0;
}

.footer-links a {
  color: white;
  text-decoration: none;
  transition: color 0.3s ease-in-out;
}

.footer-links a:hover {
  color: #0001fa;
}

.footer-copyright p {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 13px;
  color: white;
  letter-spacing: 1.3px;
  margin: 0;
}

/* Product Hero Section Styles */
.product-hero-section {
  padding: 80px 0 30px;
  position: relative;
}

.product-hero-bg {
  position: absolute;
  bottom: 230px;
  left: 0;
  width: 100%;
  height: 70px;
  background: linear-gradient(110deg, #002bad 1.95%, #001247 128.74%);
  z-index: 1;
}

.product-hero-container {
  display: flex;
  flex-direction: column;
  gap: 60px;
  position: relative;
  z-index: 2;
}

.product-hero-content {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
}

.product-hero-text {
  flex: 1;
  max-width: 566px;
  display: flex;
  flex-direction: column;
  gap: 25px;
}

.product-hero-subtitle {
  font-weight: 500;
  font-size: 20px;
  color: #002bad;
  letter-spacing: 2px;
  text-align: center;
  margin: 0;
  display: flex;
  align-items: flex-end;
}
.product-hero-subtitle img {
  width: auto;
  height: 50px;
  margin-right: 10px;
}

.product-hero-description {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-hero-description p {
  font-weight: 700;
  font-size: 19px;
}

.product-hero-logo {
  width: 546px;
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  margin-bottom: 50px;
}

.product-hero-logo img {
  width: 100%;
  max-width: 600px;
  height: auto;
  object-fit: contain;
  object-position: left;
}

.product-hero-image {
  flex: 1;
  max-width: 448px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-hero-image img {
  width: 100%;
  max-width: 500px;
  height: auto;
  object-fit: contain;
}

.product-partners {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-partners img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}

/* Product Hero Mobile Styles */
@media (max-width: 768px) {
  .product-hero-section {
    padding: 60px 0 20px;
  }

  .product-hero-container {
    gap: 30px;
  }

  .product-hero-content {
    flex-direction: column;
    gap: 30px;
  }

  .product-hero-text {
    max-width: 100%;
    align-items: center;
    gap: 20px;
  }

  .product-hero-subtitle {
    font-size: 18px;
    letter-spacing: 1.5px;
    flex-direction: column;
    align-items: center;
    gap: 10px;
  }

  .product-hero-description p {
    font-size: 16px;
    padding: 8px 12px;
  }

  .product-hero-logo {
    width: 100%;
    height: auto;
    justify-content: center;
    margin-bottom: 0;
  }

  .product-hero-image {
    max-width: 100%;
  }
}

/* Product Features Section Styles */
.product-feature-section {
  padding: 80px 0;
}

.product-feature-header {
  margin-bottom: 60px;
}

.product-features {
  display: flex;
  flex-direction: column;
  gap: 80px;
  margin-top: 70px;
}

.product-feature-item {
  display: flex;
  align-items: center;
  gap: 60px;
}

.product-feature-item.reverse {
  flex-direction: row-reverse;
}

.product-feature-image {
  flex: 1;
  max-width: 600px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.product-feature-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.product-feature-content {
  flex: 1;
  max-width: 500px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.product-feature-title {
  font-size: 24px;
  font-weight: 700;
  text-align: left;
}

/* Product Features Mobile Styles */
@media (max-width: 768px) {
  .product-feature-section {
    padding: 60px 0;
  }

  .product-feature-header {
    margin-bottom: 40px;
  }
	.product-feature-title {
	  font-size: 18px;
	}

  .product-features {
    gap: 60px;
    margin-top: 50px;
  }

  .product-feature-item {
    flex-direction: column-reverse;
    gap: 30px;
    text-align: center;
  }

  .product-feature-item.reverse {
    flex-direction: column-reverse;
  }

  .product-feature-image {
    max-width: 100%;
  }

  .product-feature-content {
    max-width: 100%;
    text-align: left;
  }
}

/* Function Section Styles */
.function-section {
  background: #f4f4f4;
  padding: 80px 0;
}

.function-header {
  margin-bottom: 60px;
  text-align: center;
}

.function-subtitle {
  font-size: 16px;
  color: #303030;
  letter-spacing: 1.6px;
  margin: 20px 0 0 0;
  text-align: center;
}

.function-content {
  display: flex;
  align-items: center;
  gap: 2%;
  margin-bottom: 60px;
}

.function-content img {
  width: 49%;
  height: auto;
}

.function-image img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* Function Mobile Styles */
@media (max-width: 768px) {
  .function-section {
    padding: 60px 0;
  }

  .function-header {
    margin-bottom: 40px;
  }

  .function-subtitle {
    font-size: 14px;
    letter-spacing: 1px;
  }

  .function-content {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 40px;
  }

  .function-content img {
    width: 100%;
    max-width: 500px;
  }
}

/* Price Section Styles */
.price-section {
  background: white;
  padding: 80px 0;
}

.price-header {
  margin-bottom: 60px;
}

.price-table {
  width: 100%;
  max-width: 900px;
  margin: 0 auto 40px;
  border-collapse: collapse;
  border: 1px solid #9b9b9b;
}

.price-table tbody {
  display: flex;
}

.price-table tbody tr {
  display: flex;
  flex-direction: column;
  width: 20%;
}

.price-table th,
.price-table td {
  padding: 20px 10px;
  text-align: center;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 2px;
  line-height: 1.5;
  vertical-align: middle;
  border-right: 1px solid #9b9b9b;
  display: flex;
  align-items: center;
  justify-content: center;
}
.price-table tbody tr:last-child th,
.price-table tbody tr:last-child td {
  border-right: none;
}

.price-table th {
  background: #7a839d;
  color: white;
  border-bottom: 1px solid #9b9b9b;
  height: 50px;
}

.price-table td {
  background: white;
  color: #303030;
  flex: 1;
}

.price-table-label {
  background: #7a839d !important;
  color: white !important;
}

.price-table-price {
  font-weight: 700;
}

.price-notes {
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}
.price-notes p {
  font-weight: 500;
  font-size: 14px;
  color: #323639;
  letter-spacing: 1.4px;
  line-height: 1.8;
  margin: 0 0 8px 0;
}

.price-notes p:last-child {
  margin-bottom: 0;
}

/* Price Mobile Styles */
@media (max-width: 768px) {
  .price-section {
    padding: 60px 0;
  }

  .price-header {
    margin-bottom: 40px;
  }

  .price-table {
    margin-bottom: 30px;
  }

  .price-table tbody {
    flex-direction: column;
  }

  .price-table tbody tr {
    width: 100%;
  }

  .price-table th,
  .price-table td {
    font-size: 16px;
    border-right: none;
    height: auto;
  }

  .price-table tbody tr:last-child {
    margin-bottom: 0;
  }

  .price-table tbody tr.price-table-header {
    display: none;
  }

  .price-notes {
    text-align: left;
  }

  .price-notes p {
    font-size: 12px;
    letter-spacing: 1px;
    margin-bottom: 6px;
  }
}

/* System Section Styles */
.system-section {
  padding: 80px 0;
}

.system-header {
  margin-bottom: 60px;
}

.system-section .price-table tbody {
  flex-direction: column;
}

.system-section .price-table tr {
  width: 100%;
  flex-direction: row;
}

.system-section .price-table th,
.system-section .price-table td {
  border-right: none;
}

.system-section .price-table tr.price-table-header th {
  width: 100%;
}

.system-section .price-table tr.price-table-content th {
  width: 20%;
}

.system-section .price-table tr.price-table-content td {
  width: 80%;
  border-bottom: 1px solid #9b9b9b;
}

.system-section .price-table tr.price-table-content:last-child td {
  border-bottom: none;
}

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

  .system-header {
    margin-bottom: 40px;
  }

  .system-section .price-table tbody tr.price-table-header {
    display: block;
  }

  .system-section .price-table tr.price-table-header th {
    width: auto;
  }
}

/* Flow Section Styles */
.flow-section {
  background: white;
  padding: 80px 0;
}

.flow-header {
  margin-bottom: 40px;
}

.flow-description {
  max-width: 967px;
  margin: 0 auto 60px;
  text-align: center;
}

.flow-steps {
  display: flex;
  justify-content: center;
  gap: 2%;
  max-width: 1024px;
  margin: 0 auto;
  flex-wrap: wrap;
}

.flow-step {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 32%;
  height: auto;
  flex: 1;
  border: 2px solid #0001FA;
}

.flow-step-number {
  position: absolute;
  top: -44px;
  width: 74px;
  height: 74px;
  z-index: 3;
  background: #fff;
}

.flow-step-number img {
  position: relative;
  top: 50%;
  left: 50%;
  width: calc(100% - 8px);
  height: calc(100% - 8px);
  transform: translate(-50%, -50%);
}

.flow-step-number span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 19px;
  color: white;
  letter-spacing: 1.9px;
}

.flow-step-title {
  font-size: 20px;
  font-weight: 700;
}

.flow-step-text {
  font-weight: 500;
  text-align: center;
}

.flow-step-card {
  position: relative;
  background: white;
  border-style: solid;
  border-color: #0001fa;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  padding: 50px 20px 20px;
  box-sizing: border-box;
}

/* Flow Mobile Styles */
@media (max-width: 768px) {
  .flow-section {
    padding: 60px 0;
  }

  .flow-header {
    margin-bottom: 30px;
  }

  .flow-description {
    margin-bottom: 40px;
    text-align: left;
  }

  .flow-description p {
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1.8;
  }

  .flow-steps {
    flex-direction: column;
    gap: 50px;
  }

  .flow-step {
    align-items: center;
    width: 100%;
  }

  .flow-step-number {
    top: -33px;
    margin-bottom: 20px;
    width: 60px;
    height: 60px;
  }

  .flow-step-number span {
    font-size: 16px;
  }

  .flow-step-card {
    width: 100%;
    max-width: 320px;
    height: auto;
    padding: 30px 20px;
  }
}

/* FAQ Section Styles */
.faq-section {
  background: #f4f4f4;
  padding: 80px 0;
}

.faq-header {
  margin-bottom: 60px;
}

.faq-list {
  max-width: 942px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.faq-item {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.faq-question,
.faq-answer {
	padding: 0 10px;
}
.faq-question {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}
.faq-question::after {
  content: "";
  flex: 1;
  width: 100%;
  height: 1px;
  background: #303030;
  position: absolute;
  bottom: -15px;
  left: 0;
}

.faq-q-marker,
.faq-a-marker {
  width: 30px;
  height: 31px;
  font-weight: 700;
  color: #002bad;
  background: white;
  border: 1px solid #002bad;
  border-radius: 23.5px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 19px;
}

.faq-q-marker span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #002bad;
  letter-spacing: 2px;
}

.faq-a-marker span {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 700;
  font-size: 20px;
  color: #002bad;
  letter-spacing: 2px;
}
.faq-question-text,
.faq-answer-text {
  font-weight: 700;
}
.faq-answer {
  display: flex;
  align-items: flex-start;
  gap: 15px;
}

.faq-answer-text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
  line-height: 1.8;
}

.faq-answer-text p {
  margin: 0;
}

/* FAQ Mobile Styles */
@media (max-width: 768px) {
  .faq-section {
    padding: 60px 0;
  }

  .faq-header {
    margin-bottom: 40px;
  }

  .faq-list {
    gap: 40px;
  }

  .faq-question {
    gap: 10px;
  }

  .faq-q-marker,
  .faq-a-marker {
    width: 25px;
    height: 26px;
  }

  .faq-q-marker span,
  .faq-a-marker span {
    font-size: 16px;
  }

  .faq-answer {
    gap: 10px;
  }
}

/* Footer Mobile Styles */
@media (max-width: 768px) {
  .footer-morix {
    padding: 30px 0;
  }

  .footer-content {
    gap: 15px;
  }

  .footer-links p,
  .footer-copyright p {
    font-size: 12px;
    letter-spacing: 1px;
    line-height: 1.5;
  }
}




/*--------------------------------------------------------------
	page
--------------------------------------------------------------*/


@media screen and (max-width: 768px) {
  .page {
    padding-top: 0px;
  }
}

.page h1 {
  font-weight: 700;
  font-size: 32px;
}



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



.page .content {
  padding: 40px 0 80px;
}

@media screen and (max-width: 768px) {
  .page .content {
    padding: 40px 0 60px;
  }
}

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

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

.page .content_inner img{
  max-width: 800px;
}

.page .content_inner.blank {
  margin-top: 0;
}

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

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

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

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

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

.page .content_inner a:hover {
  color: #0001fa;
}

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

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

.page .content_inner ul > ul {
  list-style: circle;
}

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

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

.page .content_inner blockquote {
  margin-top: 32px;
  margin-bottom: 32px;
  background-color: #f9f9f9;
  padding: 0 20px 1.6em;
  font-style: italic;
  padding-top: 1px;
}

.page .content_inner table {
  margin-top: 32px;
  margin-bottom: 32px;
 
}

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

.page .content_inner table th {
  background-color:#0001fa;
;
  font-weight: 700;
  padding: 4px 8px;
  
  color: #fff;
}

.page .content_inner table td {
  background-color: #efefef;
  padding: 4px 8px;
 
}

.page .content_inner .gmap {
  margin-top: 32px;
  margin-bottom: 32px;
}

.page .content_inner .youtube {
  margin-top: 32px;
  margin-bottom: 32px;
}




/* エラー */
.page .error {
  padding: 40px 0 80px;
}

@media screen and (max-width: 768px) {
  .page .error {
    padding: 40px 0 60px;
  }
}

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

.page .error_wrapper h1 {
  text-align: center;
  color: #0001fa;
  line-height: 1.2;
}

@media screen and (min-width: 481px) {
  .page .error_wrapper h1 {
    font-size: 48px;
  }
}

@media screen and (max-width: 480px) {
  .page .error_wrapper h1 {
    font-size: 32px;
  }
}

.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;
}



/* パンくず */
.breadcrumb {
  padding-top: 10px;
  font-size: 14px;
}

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

.breadcrumb_list {
  display: flex;
}

.breadcrumb_list li {
  display: flex;
  align-items: center;
}

.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;
}

.breadcrumb_list li:nth-child(1)::before {
  display: none;
}

/* アイキャッチ */
.page .eyecatch {
  position: relative;
  width: 100%;
  height: 213px;
  overflow: hidden;
}

@media screen and (max-width: 768px) {
  .page .eyecatch {
    height: 175px;
  }
}

.eyecatch img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  display: block;
}

.eyecatch h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
  color: #fff;
}

/* フォーム */
.form {
  border-top: 1px solid #d8d8d8;
}
.form * {
  box-sizing: border-box;
}
.form_row {
  display: flex;
  border: 1px solid #d8d8d8;
  border-top: none;
}
.form_row:last-of-type {
  margin-bottom: 60px;
}
.form .form_row p {
  margin: 0;
}
.form dt,
.form dd {
  padding: 15px;
}
.form dt {
  display: flex;
  align-items: center;
  width: 260px;
  font-weight: 700;
  background: #FBFBFB;
  border-right: 1px solid #d8d8d8;
}
.form dd {
  flex: 1;
}
.form dd span {
  display: block;
}
.form dd input,
.form dd textarea {
  width: 100%;
  padding: 5px 10px;
}
.form dd textarea {
  height: 180px;
}
.form_required {
  color: #e51a1a;
}
.form_button {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
}
.form_button input {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  padding: 10px 29px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.8px;
  color: white;
  background: #0001fa;
  white-space: nowrap;
  box-sizing: border-box;
  transition: all 0.3s ease-in-out;
  border: 1px solid #0001fa;
  border-radius: 100px;
  cursor: pointer;
}
.form_button input:hover {
  background: white;
  color: #0001fa;
}
.form_button .wpcf7-spinner {
  margin-top: 10px;
}
.wpcf7-not-valid-tip {
  color: #e51a1a;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output,
.wpcf7 form.sent .wpcf7-response-output {
  text-align: center;
  border: none;
}
@media screen and (max-width: 767px) {
  .form_row {
    flex-direction: column;
  }
  .form_row:last-of-type {
    margin-bottom: 40px;
  }
  .form dt,
  .form dd {
    width: 100%;
  }
  .form dt {
    border-right: none;
  }
  .form dd input,
  .form dd textarea {
    padding: 8px 10px;
  }
  .form_required {
    font-size: .6875rem;
  }
}

/*--------------------------------------------------------------
	archive
--------------------------------------------------------------*/
@media screen and (min-width: 811px) {
  .archive {
    padding-top: 140px;
  }
}
@media screen and (max-width: 810px) {
  .archive {
    padding-top: 64px;
  }
}
.archive h1 {
  font-weight: 700;
}
@media screen and (min-width: 641px) {
  .archive h1 {
    font-size: 32px;
  }
}
@media screen and (max-width: 640px) {
  .archive h1 {
    font-size: 24px;
  }
}

/* 投稿 */
@media screen and (min-width: 811px) {
  .archive .post {
    padding: 40px 0 80px;
  }
}
@media screen and (max-width: 810px) {
  .archive .post {
    padding: 40px 0 60px;
  }
}
.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: #232E98;
  font-weight: 700;
}
@media screen and (max-width: 640px) {
  .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 #232E98;
  padding: 0 10px;
  color: #232E98;
  background-color: #fff;
}
@media screen and (min-width: 641px) {
  .archive .post_category .link a {
    font-size: 14px;
    height: 28px;
    border-radius: 14px;
  }
}
@media screen and (max-width: 640px) {
  .archive .post_category .link a {
    font-size: 12px;
    height: 24px;
    border-radius: 12px;
  }
}
.archive .post_category .link a:hover {
  color: #fff;
  background-color: #232E98;
}
.archive .post_category .link span {
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #232E98;
  padding: 0 10px;
  color: #fff;
  background-color: #232E98;
}
@media screen and (min-width: 641px) {
  .archive .post_category .link span {
    font-size: 14px;
    height: 28px;
    border-radius: 14px;
  }
}
@media screen and (max-width: 640px) {
  .archive .post_category .link span {
    font-size: 12px;
    height: 24px;
    border-radius: 12px;
  }
}
.archive .post_list {
  margin-top: 30px;
  border-top: 1px solid #CCCCCC;
}
.archive .post_list li {
  border-bottom: 1px solid #CCCCCC;
}
.archive .post_list li a {
  padding: 20px 0;
}
@media screen and (min-width: 811px) {
  .archive .post_list li a {
    display: flex;
    align-items: center;
  }
}
@media screen and (max-width: 810px) {
  .archive .post_list li a {
    display: block;
  }
}
.archive .post_list li a:hover {
  background-color: #F8F8F8;
}
@media screen and (min-width: 641px) {
  .archive .post_thumb {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -20px 0;
  }
}
@media screen and (min-width: 811px) {
  .archive .post_thumb > li {
    width: 33.33%;
    padding: 40px 20px 0;
  }
}
@media screen and (max-width: 810px) {
  .archive .post_thumb > li {
    width: 50%;
    padding: 40px 20px 0;
  }
}
@media screen and (max-width: 640px) {
  .archive .post_thumb > li {
    width: 100%;
    margin-top: 40px;
  }
}
.archive .post_thumb > li a:hover .inner_img img {
  transform: scale(1.1);
}
.archive .post_thumb .inner {
  border: 1px solid #EEEEEE;
}
.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 #232E98;
  color: #232E98;
  background-color: #fff;
  border-radius: 12px;
}
.archive .post_meta {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 811px) {
  .archive .post_meta {
    flex-shrink: 0;
  }
}
.archive .post_meta_date {
  font-size: 14px;
  color: #666666;
  margin-right: 10px;
}
.archive .post_meta_cat {
  margin-right: 10px;
  display: flex;
  align-items: center;
  font-size: 12px;
  height: 24px;
  padding: 0 10px;
  border: 1px solid #232E98;
  color: #232E98;
  background-color: #fff;
  border-radius: 12px;
}
.archive .post_ttl {
  font-size: 16px;
}
@media screen and (max-width: 810px) {
  .archive .post_ttl {
    margin-top: 4px;
  }
}
.archive .post_pager {
  display: flex;
  align-items: center;
}
@media screen and (min-width: 811px) {
  .archive .post_pager {
    margin-top: 80px;
  }
}
@media screen and (max-width: 810px) {
  .archive .post_pager {
    margin-top: 40px;
    justify-content: center;
  }
}
.archive .post_pager .page-numbers {
  font-weight: 700;
  font-size: 20px;
  margin: 0 10px;
  color: #232E98;
}
.archive .post_pager .page-numbers:hover {
  opacity: 1;
  color: #111111;
}
.archive .post_pager .page-numbers.prev {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #232E98;
  width: 52px;
  height: 52px;
  border-radius: 26px;
}
.archive .post_pager .page-numbers.prev:hover {
  background-color: #111111;
}
.archive .post_pager .page-numbers.next {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #232E98;
  width: 52px;
  height: 52px;
  border-radius: 26px;
}
.archive .post_pager .page-numbers.next:hover {
  background-color: #111111;
}
.archive .post_pager .page-numbers.current {
  color: #232E98;
  opacity: 0.5;
}
.archive .post_pager .page-numbers.current:hover {
  color: #232E98;
}
/*--------------------------------------------------------------
	single
--------------------------------------------------------------*/
@media screen and (min-width: 811px) {
  .single {
    padding-top: 140px;
  }
}
@media screen and (max-width: 810px) {
  .single {
    padding-top: 64px;
  }
}
.single h1 {
  font-weight: 700;
}
@media screen and (min-width: 641px) {
  .single h1 {
    font-size: 32px;
  }
}
@media screen and (max-width: 640px) {
  .single h1 {
    font-size: 30px;
  }
}

/* 投稿 */
@media screen and (min-width: 811px) {
  .single .content {
    padding: 40px 0 80px;
  }
}
@media screen and (max-width: 810px) {
  .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: #666666;
  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 #0001fa;
  color: #0001fa;
  background-color: #fff;
  border-radius: 12px;
}
.single .content_meta_cat:hover {
  color: #fff;
  background-color: #0001fa;
}
.single .content_inner {
  margin-top: 40px;
}
.single .content_inner h2 {
  margin-top: 40px;
  margin-bottom: 32px;
  font-weight: 700;
  font-size: 28px;
  padding-left: 20px;
  position: relative;
}
.single .content_inner h2::before {
  content: " ";
  position: absolute;
  height: 28px;
  width: 8px;
  background-color: #0001fa;
  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: #0001fa;
}
.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: #F8F8F8;
  padding: 0 20px 1.6em;
  font-style: italic;
  padding-top: 1px;
}
.single .content_inner table {
  margin-top: 32px;
  margin-bottom: 32px;
  border: 1px solid #CCCCCC;
}
.single .content_inner table.max {
  width: 100%;
}
.single .content_inner table th {
  background-color: #EBF5FD;
  font-weight: 700;
  padding: 4px 8px;
  border: 1px solid #CCCCCC;
}
.single .content_inner table td {
  background-color: #fff;
  padding: 4px 8px;
  border: 1px solid #CCCCCC;
}
.single .content_inner .gmap {
  margin-top: 32px;
  margin-bottom: 32px;
}
.single .content_inner .youtube {
  margin-top: 32px;
  margin-bottom: 32px;
}
.single .content_tag {
  position: relative;
  margin-top: 40px;
}
.single .content_tag h2 {
  background-color: #F8F8F8;
  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: #F8F8F8;
  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: #fff;
  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: #0765ff;
}
.single .content_share_list li a.x {
  background-color: #111111;
}
@media screen and (min-width: 811px) {
  .single .content_return {
    margin-top: 80px;
  }
}
@media screen and (max-width: 810px) {
  .single .content_return {
    margin-top: 60px;
  }
}
.single .content_return p {
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 811px) {
  .single .product {
    padding: 40px 0 80px;
  }
}
@media screen and (max-width: 810px) {
  .single .product {
    padding: 40px 0 60px;
  }
}
.single .product_wrapper {
  margin-top: 40px;
}
@media screen and (min-width: 811px) {
  .single .product_wrapper {
    display: flex;
    flex-direction: row-reverse;
    justify-content: space-between;
  }
}
@media screen and (min-width: 811px) {
  .single .product_side {
    width: 320px;
    flex-shrink: 0;
    margin-right: 60px;
  }
}
@media screen and (max-width: 810px) {
  .single .product_side {
    margin-top: 60px;
  }
}
.single .product_side_list {
  border: 1px solid #EEEEEE;
  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: #0001fa;
  color: #fff;
  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_meta {
  margin-top: 10px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.single .product_meta_cat {
  margin-right: 10px;
  display: flex;
  align-items: center;
  font-size: 12px;
  height: 24px;
  padding: 0 10px;
  border: 1px solid #0001fa;
  color: #0001fa;
  background-color: #fff;
  border-radius: 12px;
}
.single .product_meta_cat:hover {
  color: #fff;
  background-color: #0001fa;
}
.single .product_thumb {
  margin-top: 40px;
  text-align: center;
}
.single .product_thumb img {
  width: 100%;
  height: auto;
  max-height: 320px;
  -o-object-fit: contain;
     object-fit: contain;
}
.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: #0001fa;
  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: #0001fa;
}
.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: #F8F8F8;
  padding: 0 20px 1.6em;
  font-style: italic;
  padding-top: 1px;
}
.single .product_inner table {
  margin-top: 32px;
  margin-bottom: 32px;
  border: 1px solid #CCCCCC;
}
.single .product_inner table.max {
  width: 100%;
}
.single .product_inner table th {
  background-color: #EBF5FD;
  font-weight: 700;
  padding: 4px 8px;
  border: 1px solid #CCCCCC;
}
.single .product_inner table td {
  background-color: #fff;
  padding: 4px 8px;
  border: 1px solid #CCCCCC;
}
.single .product_inner .gmap {
  margin-top: 32px;
  margin-bottom: 32px;
}
.single .product_inner .youtube {
  margin-top: 32px;
  margin-bottom: 32px;
}
@media screen and (min-width: 811px) {
  .single .product_return {
    margin-top: 80px;
  }
}
@media screen and (max-width: 810px) {
  .single .product_return {
    margin-top: 60px;
  }
}
.single .product_return p {
  display: flex;
  justify-content: center;
}