@charset "UTF-8";

:root {
  --main-orange-color: #e88945;
  --Sub-orange-color-01: #e5a577;
  --Sub-orange-color-02: #ffd9bd;
  --main-brown-color: #71452a;
  --main-gray-color: #8c8e7f;
}

.main-contents h2.poppins{
  text-align: center;
  font-size: 2rem;
  line-height: 1;
  border: none;
  margin: 2rem 0;
}
.main-contents h2.poppins .title{
  color: #e88945;
  font-size: 40px;
}
.main-contents h2 {
    font-size: 1.6rem;
    color: #555;
    border-bottom: 2px solid #ccc;
    padding-bottom: 0.3em;
  }
  .main-contents h3 {
      font-size: 1.2rem;
    }
  .main-contents img{
    width: 100%;
    height: auto;
  }
  .section {
    margin-bottom: 2em;
    padding: 0 2rem;
  }
  @media (max-width: 768px) {
  .section {
    padding: 0 .6rem;
  }
  }
  
  .table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 1em;
  }
  .table th, .table td {
  border: 1px solid #efe9e0;
  padding: 10px 12px;
  }
  .table th {
    background-color: #f0f8ff;
    width: 35%;
    text-align: left;
    background: #ffd9bd;
    color: #71452a;
  }

  iframe {
    width: 100%;
    height: 300px;
    border: 0;
  }
  @media (min-width: 768px) {
    iframe {
      height: 450px;
    }
  }
  .center{
      text-align: center;
  }
  .center-mg{
    margin: auto;
  }
  .sub{
      font-size: .9rem;
      color: #585858;
  }
  .flex {
      display: -webkit-box;
      display: -webkit-flex;
      display: -ms-flexbox;
      display: flex;
      margin: auto;
      flex-wrap: wrap;
      /* margin: 0 1%; */
      width: 100%;
      gap: 2%;
      row-gap: 2rem;
  }
/*flexã®æ™‚å·¦å³ã®é †ç•ª*/
  .flex.x {
      flex-direction: row-reverse;
  }
/*flexãªã—*/
  .flex.non {
      display: block;
  }
  .flex .cnt{
      width: calc((100% - 2%) / 2);
  }
  .flex .cnt.left{
    width: calc(70% - 1%);
  }
  .flex .cnt.right{
      width: calc(30% - 1%);
  }
  .flex .spflex .cnt{
      width: 100%;
  }
  .cnt img{
      width: 100%;
      height: auto;
  }
  /*3ã‚«ãƒ©ãƒ */
  .flex.clm3 .cnt{
      padding: 1%;
      width: calc((100% - 4%) / 3);
  }
/*4ã‚«ãƒ©ãƒ */
  .flex.clm4 .cnt{
      /* padding: 1%; */
      width: calc((100% - 6%) / 4);
  }
  @media screen and (max-width: 768px) {
      .flex .cnt,
      .flex.clm3 .cnt,
      .flex .cnt.left,
      .flex .cnt.right{
          width: 100%;
      }
      /* spã®å ´åˆflex */
      .flex .spflex .cnt{
          width: calc((100% - 2%) / 2);
      }
      .flex.clm4 .cnt{
      width: calc((100% - 2%) / 2);
  }
  }
  span.b{
      font-weight: 600;
  }
  span.red{
      color: #d90000;
  }
  span.blue{
      color: #297fdf;
  }
  span.sen {
      background: linear-gradient(transparent 40%, #c7f2ff 0%);
      /*     border-bottom: solid 3px #297fdf; */
      text-decoration: none;
      border: none;
  }

  .box {
    margin: 20px auto;
    border: solid 1px #d90000;
    padding: 10px;
    /* max-width: 1000px; */
    background: #fff;
    width: 94%;
}
.box,.box-orange .ttl {
    font-size: 1.2em;
    font-weight:600;
}
.box,.box-orange p {
    font-size: 1em;
}

.box,.box-orange span.title {
    font-size: 1.4em;
    font-weight: 500;
    color: #d90000;
}

  span.big{
      font-size: 1.5rem;
      padding: 0 0.3rem;
  }
  
  .sp{
      display: none;
  }
  @media screen and (max-width: 768px) {
      .sp{
          display: block;
      }
      .pc{
          display: none;
      }
  }



 /* ä¼šç¤¾æ¦‚è¦  */
 table.kessan th {
    width: 6rem;
}
table.kessan td {
    width: calc(50% - 3rem);
    width: 38%;
}

    .flex.kessan .cnt{
        width: calc((100% - 14%) / 8);
        text-align: center;
        flex: 0 auto;
    }
    .flex.kessan .cnt img{
      width: fit-content;
      margin: auto;
    }
    
    .flex.kessan .cnt p{
      font-size: .8rem;
    }

    @media screen and (max-width: 768px) {
      .flex.kessan .cnt{
        width: calc((100% - 8%) / 5);
    }
  }

/* å¡©ç´ å‰¤Qï¼†A */

.faq-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7em 1em;
    margin: 2em 0;
  }
  
  .faq-list a {
    display: flex;
    align-items: center;
    padding: 0.5em 0.8em;
    border-radius: 6px;
    background: #fff;
    color: #333;
    text-decoration: none;
    font-size: 1em;
    border: 1px solid #eee;
    transition: background 0.2s;
  }
  .faq-list a:hover {
    background: #f0f8ff;
  }
  .faq-no {
    display: inline-block;
    min-width: 2em;
    font-weight: bold;
    color: #347fc4;
    font-size: 1.1em;
    margin-right: 0.6em;
    text-align: center;
  }
  
  /* ã‚¹ãƒžãƒ›å¹…ã§ã¯1åˆ— */
  @media (max-width: 700px) {
    .faq-list {
      grid-template-columns: 1fr;
    }
  }
  .qa-section {
}

.qa-item {
  margin-bottom: 48px;
  padding-bottom: 32px;
  border-bottom: 1px solid #efe9e0;
}

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

.qa-question {
  font-size: 1.2em;
  font-weight: bold;
  margin: 0 0 8px 0;
  color: #31759e;
}

.qa-reference, .qa-component {
  margin-bottom: 8px;
  font-size: 1em;
  color: #52708b;
}

.qa-answer {
  margin-top: 8px;
  padding: 18px 18px 10px 18px;
  background: #fff9f4;
  border-left: 4px solid #e5a577;
  /* border-radius: 8px; */
}
.qa-answer p{
  margin-bottom:1rem;
}
.qa-answer h4,
.section h4{
  font-weight:600;
  font-size:1.2rem;
  margin-bottom:1rem;
}
.qa-table-wrap {
  margin: 18px 0;
  overflow-x: auto;
}

.qa-table-wrap a,
.qa-content a,
.qa-answer a{
  border-bottom: 1px solid #1d4d8f;
  color:#1d4d8f;
}

.qa-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  font-size: 1em;
}

.qa-info {
  margin-top: 12px;
  font-size: 0.97em;
  color: #636363;
}

.qa-info p {
  margin: 3px 0;
  color: #52708b;
}

.qa-notes {
  margin: 12px 0 0 0;
  padding-left: 20px;
  font-size: 0.97em;
  color: #3c4d57;
}

.qa-notes li {
  list-style-type: disc;
  margin-bottom: 4px;
}

@media (max-width: 640px) {
  .qa-section {
    padding: 4px;
  }
  .qa-item {
    padding-bottom: 18px;
  }
  .qa-question {
    font-size: 1em;
  }
  .qa-table th,
  .qa-table td {
    padding: 6px 4px;
    font-size: 0.97em;
  }
}

.faq-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 30px;
  justify-content: center;
}

.faq-links a {
  padding: 10px 15px;
  background-color: #ffd9bd;
  color: #71452a;
  text-decoration: none;
  border-radius: 8px;
  font-weight: bold;
  font-size: 14px;
  transition: background 0.2s;
}

.faq-links a:hover {
  background-color: #e88945;
}

.faq-contact {
  text-align: center;
  margin-top: 30px;
}

.faq-contact p {
  font-weight: bold;
  color: #d2691e;
  margin-bottom: 10px;
}

.faq-button {
  display: inline-block;
  background-color: #e88945;
  color: #fff;
  padding: 12px 20px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: bold;
}

.faq-button:hover {
  background-color: #ffffff;
  border: 1px solid #e88945;
  color: #e88945;
}

/* 災害時FAQ*/
.saigai{
  border: #bd0000 1px solid;
  padding: 1rem;
  margin-bottom:2rem;
}
.saigai h4{
  font-size:1.2rem;
  font-weight:600;
  text-align: center;
  margin-top:1rem;
}
.section h3{
  font-size:1.2rem;
  font-weight:600;
  text-align: left;
  margin:2rem 0;
}

  /* ボタンエリア */
  .btn_area {
    text-align: center;
    margin-top: 30px;
  }

 .btn {
    display: inline-block;
    background: linear-gradient(135deg, #2c5aa0 0%, #1e3a5f 100%);
    color: #fff;
    text-decoration: none;
    padding: 15px 40px;
    border-radius: 30px;
    font-weight: bold;
    font-size: 16px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    width: 100%;
    max-width: 300px;
  }
  
  .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
  }
  
  .btn:hover::before {
    left: 100%;
  }
  
  .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(44, 90, 160, 0.3);
    color:#fff;
  }

.header-bar {
  height: 8px;
  background-color: #e88945;
}

.container {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.main-content {
  flex: 1;
  /* background: white; */
  /* padding: 16px; */
}

.sidebar {
  width: 100%;
  height: 80px;
  background-color: #e88945;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 16px;
}

.sidebar-text {
  color: white;
  text-align: center;
  font-weight: bold;
  /* font-size: 14px; */
}

.title-section {
  margin-bottom: 32px;
}

.title-section h1 {
  font-size: 24px;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 16px;
}

.step-section {
  margin-bottom: 48px;
  /* border-top: 1px solid #bfbfbf; */
}

.step-2, .step-3, .step-4 {
  /* background-color: #f9fafb; */
  padding: 20px;
  /* border-radius: 8px; */
  border-top: 1px solid #bfbfbf;
  margin-bottom: 0px;
}

.step-header {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}

.info-box {
  background-color: #f9fafb;
  padding: 24px;
  /* border-radius: 8px; */
  margin-bottom: 24px;
}

.info-box p {
  /* font-size: 14px; */
  color: #374151;
  margin-bottom: 16px;
}

.info-box .sub-text {
  font-size: 14px;
  color: #6b7280;
}

.info-box a,
.detail-item a,
.contact-box a {
  color: #2563eb;
  text-decoration: underline;
}

.two-column {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: 24px;
}

.column h3 {
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 12px;
}

.column p {
  font-size: 14px;
  color: #374151;
  margin-bottom: 8px;
}

.product-section {
  margin-bottom: 24px;
}

.product-header {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}

.red-badge {
  background-color: #ef4444;
  color: white;
  padding: 4px 12px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: bold;
  margin-right: 12px;
}

.bold-text {
  font-size: 18px;
  font-weight: bold;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-bottom: 16px;
}

.product-item {
  /* aspect-ratio: 1; */
  /* background-color: #e5e7eb; */
  /* border-radius: 4px; */
  /* display: flex; */
  /* align-items: center; */
  /* justify-content: center; */
  /* padding: 4px; */
}

.product-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 4px;
}

.step-details {
  margin-top: 16px;
}

.detail-item {
  margin-bottom: 16px;
}

.detail-item h4 {
  font-weight: bold;
  margin-bottom: 8px;
}

.detail-item p {
  font-size: 14px;
  color: #374151;
}

.detail-item ul {
  margin-left: 16px;
  list-style-type: disc;
}

.detail-item li {
  font-size: 14px;
  color: #374151;
  margin-bottom: 4px;
}

.arrow-section {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin: 32px 0;
}

.arrow-down {
  font-size: 60px;
  color: #9ca3af;
  margin: 8px 0;
}

.orange-button {
  background-color: var(--Sub-orange-color-02);
  color: var(--main-brown-color);
  border: none;
  padding: 12px 32px;
  font-size: 16px;
  font-weight: bold;
  /* border-radius: 4px; */
  cursor: pointer;
  transition: background-color 0.3s;
}

.step-2-options {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 24px;
  gap: 16px;
}

.option {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.red-text {
  color: #ef4444;
  font-weight: bold;
}

.center-arrow {
  display: flex;
  justify-content: center;
  margin: 24px 0;
}

.center-button {
  text-align: center;
  margin: 16px 0;
}

.final-message {
  background-color: var(--Sub-orange-color-02);
  color: var(--main-brown-color);
  padding: 12px 32px;
  /* border-radius: 4px; */
  font-weight: bold;
  font-size: 16px;
  display: inline-block;
}

.contact-box {
  border: 2px solid #d1d5db;
  margin: 0 auto;
  padding: 24px;
  margin: 0 auto;
  margin: 0 auto;
  border-radius: 8px;
  margin-bottom: 32px;
  margin-top: 0px;
  width: 70%;
  min-width: 500px;
  text-align: left;
  /* margin: 0 auto; */
}

.contact-box h3 {
  font-weight: bold;
  text-align: center;
  margin-bottom: 16px;
}

.contact-box p {
  font-size: 14px;
  /* text-align: center; */
  margin: 0 auto;
  color: #374151;
  margin-bottom: 8px;
  /* margin: 0 auto; */
}

.footer-section {
  /* text-align: center; */
}

.footer-section h3 {
  font-size: 20px;
  font-weight: bold;
  margin-bottom: 16px;
}

.footer-button-container {
  display: inline-block;
}

.footer-button {
  background-color: #dc2626;
  color: white;
  padding: 16px 24px;
  border-radius: 8px;
  margin-bottom: 8px;
}

.button-content {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
}

.free-label {
  background-color: white;
  color: #dc2626;
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 12px;
  font-weight: bold;
  margin-right: 12px;
}

.button-text {
  font-weight: bold;
  font-size: 18px;
}

.click-text {
  text-align: center;
  font-size: 16px;
}

.disclaimer {
  font-size: 12px;
  color: #6b7280;
  margin-top: 8px;
}

/* Tablet and Desktop Styles */
@media (min-width: 768px) {
  .main-content {
    padding: 32px;
  }

  .title-section h1 {
    font-size: 30px;
  }

  .step-header h2 {
    font-size: 24px;
  }
  /* .info-box p,
  .column p,
  .detail-item p {
    font-size: 16px;
  } */
  .product-grid {
    /* grid-template-columns: repeat(4, 1fr); */
  }

  .step-2-options {
    flex-direction: row;
    justify-content: center;
    gap: 32px;
  }
}

@media (min-width: 1024px) {
  .container {
    flex-direction: row;
  }

  .main-content {
    flex: 1;
  }

  .sidebar {
    width: 80px;
    height: auto;
    flex-direction: column;
  }

  .sidebar-text {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    /* font-size: 14px; */
  }

  .product-grid {
    /* grid-template-columns: repeat(8, 1fr); */
  }
}

.step-badge{
  width:60px;
  height:60px;
  border-radius:50%;
  background: #e88945;
  color:#fff;
  text-align:center;
  display:flex;
  flex-direction:column;
  justify-content:center;
  align-items:center;
  font-family: "Hiragino Kaku Gothic ProN","Yu Gothic",Meiryo,sans-serif;
  line-height:1.1;
  margin-bottom: 10px;
}
.step-badge strong{
  display:block;
  font-size:22px; /* 数字の大きさ */
  font-weight:800;
}
.step-badge span{
  font-size: 15px; /* 「Step」の大きさ */
  font-weight:600;
  color: #ffffff;
}


.oem-media {
  display: flex;
}

.oem-media__img {
  min-width: 300px;
}

@media (max-width: 768px) {
.oem-media {
  display: flex;
  flex-direction: column;
}
}

.bold-shisaku-p {
  font-weight: 700;
    font-size: 18px;
    margin-bottom: 0px;
}

.sidebar-text span {
  font-size: 25px;
  color: #ffffff;
}

  .btn-simple {
    display:inline-block;
    padding: 12px 20px;
    margin-top: 10px;
    border-radius: 50px;
    background: #e88945;   /* 通常色 */
    color: #fff !important;
    /* border:1px solid transparent; */
    text-decoration: none !important;
    font:inherit;
    line-height:1;
    cursor:pointer;
    transition:background-color .2s ease, box-shadow .2s ease, transform .05s ease;
  }
  
  .btn-simple:hover {
    background: #cb6b05;   /* ホバー時の色 */
  }

  .product-item a{ display:inline-block; }
  .product-item img{
    display:block;
    width:100%;
    height:auto;
    transition: opacity .2s ease;
  }
  .product-item a:hover img {
    opacity:.8;  /* ホバー時に少し透明に */
  }



@media (max-width: 768px) {
.oem-media__img {
  /* max-width: 80%; */
}

.info-box {
    width: 100%;
}

.contact-box {
    width: 100%;
    min-width: 95%;
}

.center-arrow {
    display: flex;
    justify-content: center;
    margin-top: 10px;
    margin-bottom: 20px;
}

.step-2, .step-3, .step-4 {
    /* background-color: #f9fafb; */
    padding: 10px;
    margin-bottom: 20px;
}

.product-section {
    margin-bottom: 0px;
}

.product-grid {
    grid-template-columns: none;
    margin-bottom: 0px;
}

.arrow-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0px 0;
}

.step-2-options {
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-top: 0px;
    gap: 16px;
    justify-content: center;
}
}

.free-steps{
    background: var(--Sub-orange-color-02);   /* オレンジ */
    color: var(--main-brown-color);           /* 読みやすさ優先 */
    text-align:center;
    font-size: 16px;
    display:block;
    width:100%;
    font-weight: bold;
    padding:.8em 1em;     /* 最小限の余白（不要なら削除可） */
  }

  .content-container {
  /* border-top: 1px solid #ccc; */
  /* border-bottom: 1px solid #ccc; */
  padding: 20px 0;
}

.content-item {
  display: flex;
  align-items: center;
  gap: 20px;
  /* max-width: 960px; */
  /* margin: 0 auto; */
  /* padding: 0 15px; */
}

.content-image {
  flex-shrink: 0;
  width: 25%;
  margin: 0 auto;
  text-align: -webkit-center;
}

.content-image img {
  display: block;
  max-width: 500px;
  height: auto;
}

.content-text {
  flex-grow: 1;
}

/* スマートフォン表示（768px以下） */
@media (max-width: 768px) {
  .content-item {
    flex-direction: column;
    gap: 10px;
  }

.content-image img {
  display: block;
  max-width: 300px;
  height: auto;
}
}

.pc-br {
  display: none;
}

.basic-image-container {
  /* PC用スタイル */
  max-width: 80%;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

.basic-image-container img {
  /* レスポンシブ対応 */
  width: 100%;
  height: auto;
  display: block;
}

/* スマートフォン用スタイル */
@media (max-width: 767px) {
  .basic-image-container {
    max-width: 100%;
  }
}      

.basic-text-container {
  /* PC用スタイル */
  max-width: 100%;
  margin: 0 auto;
  margin-bottom: 20px;
}

.basic-text-container img {
  /* レスポンシブ対応 */
  width: 100%;
  height: auto;
  display: block;
}

/* スマートフォン用スタイル */
@media (max-width: 767px) {
  .basic-text-container {
    max-width: 100%;
  }
}   

.basic-lot {
  display: flex;
  border: 1px solid var(--main-orange-color);
  border-radius: 5px;
  overflow: hidden;
  width: 280px;
  /* font-family: sans-serif; */
  color: #333;
}

.basic-lot-header {
  background-color: var(--main-orange-color);
  color: #fff;
  padding: 15px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30%;
  flex-shrink: 0;
}

.basic-lot-header p {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #fff;
}

.basic-lot-content {
  display: flex;
  /* flex-direction: column; */
  /* justify-content: center; */
  padding: 5px 5px;
  padding-left: 15px;
  /* flex-grow: 1; */
  width: 200px;
  height: 100px;
}

.basic-lot-item {
  /* display: flex; */
  /* align-items: center; */
  gap: 5px;
  line-height: 0;
}

.basic-lot-item:first-child {
  /* margin-bottom: 5px; */
}

.basic-lot-weight {
  font-size: 15px;
}

.basic-lot-count {
  font-size: 22px;
  font-weight: bold;
  color: #e88945;
}

.basic-lot-ok {
  font-size: 14px;
}

.basic-lot-count small {
  font-size: 12px;
  color: #888;
}


.basic-lot-wapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  margin-top: 3px;
  gap: 15px;
  margin-bottom: 45px;
}

.special-container {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-basis: 280px; /* 折り返す基準となる最小幅 */
  flex-shrink: 1; /* コンテナを均等に縮小 */
  /* flex-grow は削除しました */
}

.special-image {
  height: auto;
  margin-bottom: 0px;
  width: 100%;
}

.special-container-wrappers {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
  margin-top: 40px;
  margin-bottom: 70px;
}

.special-container-contents {
  width: 100%;
  display: flex;
  flex-direction: column;
  border-right: 2px solid #e59f6d;
  border-left: 2px solid #e59f6d;
  border-bottom: 2px solid #e59f6d;
  box-sizing: border-box;
  gap: 10px;
  padding: 0 10px;
  margin-bottom: 10px;
  font-size: 14px;
}

.OEM-btn1 {
    display: inline-block;
    background-color: var(--main-orange-color);
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    text-align: center;
}

.OEM-btn1:hover {
    background-color: #ffffff;
    border: 1px solid #e88945;
    color: #e88945;
}

.OEM-btn2 {
    display: inline-block;
    background-color: #979593;
    color: #fff;
    padding: 12px 20px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    margin-bottom: 10px;
    text-align: center;
}

.OEM-btn2:hover {
    background-color: #ffffff;
    border: 1px solid #9b928c;
    color: #9b928c;
}


.component-container {
  max-width: 280px;
  border: 1px solid var(--main-orange-color);
  font-family: sans-serif;
  line-height: 1.6;
  height: 280px;
}

.component-container {}

.component-header {
  background-color: var(--main-orange-color);
  color: #fff;
  font-weight: bold;
  font-size: 16px;
  padding: 10px 15px;
}

.component-content {
  padding: 15px;
  background-color: #fff;
}

.component-content p {
  margin: 0;
}

.component-content p:first-child {
  margin-bottom: 10px;
}

.component-container-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 0px;
}

.gradient-container-wrapper {
      display: flex;
  justify-content: center;
  /* align-items: center; */
  flex-wrap: wrap;
  gap: 15px;
}

.gradient-container {
 font-family: sans-serif;
 padding: 20px;
 flex-basis: 280px;
}

.gradient-box {
 margin-bottom: 20px;
}

.gradient-box p {
 margin: 0 0 5px 0;
 font-weight: bold;
}

.gradient-image {
 display: block; /* imgタグのデフォルトのインライン表示をブロックにする */
 width: 100%;    /* 親要素の幅いっぱいに表示 */
 height: auto;   /* 高さの比率を維持 */
}

.gradient-image:hover {
  opacity: 0.7;
}

.basic-image-container-250g:hover {
opacity: 0.7;
}

.templates-btn1:hover{
 opacity: 0.7;
}

.basic-img-container-hover:hover {
 opacity: 0.7;
}

.headline {
  font-size: 20px;
  text-align: center;
  margin-top: 20px;
}


.content-image:hover {
 opacity: 0.7;
}

.component-container-main-wrapper {
  margin-bottom: 80px;
}

.box-orange {
  border: solid 1px var(--main-orange-color);
      margin: 20px auto;
    padding: 10px;
    /* max-width: 1000px; */
    background: #fff;
    width: 94%;
}

.oem-download-button {
  max-width: 550px;
  margin: 30px auto; /* 中央寄せ */
  /* margin-bottom: 20px; */
}

.oem-download-button a img {
  display: block;
  width: 100%;
  height: auto;
}

/* スマホ用（767px以下） */
@media screen and (max-width: 767px) {
  .oem-download-button {
    max-width: 100%; /* スマホの画面幅に合わせて調整 */
  }

  .content-image
{
    width: 50%;
}

.gradient-container
{
    flex-basis: 300px;
}

.arrow-down {
    font-size: 50px;
    margin: 0px 0;
}

.main-contents h2 {
    font-size: 1.4rem;
}

.headline {
    font-size: 1.3rem;
}

}

@media (min-width: 768px) {
    .main-contents-wrapper {
        padding: 32px;
    }
}

.basic-lot-item p {font-size: 16px;line-height: 1.4;}

.table-margin-none {
    margin-top: 0px !important;
    margin-bottom: 30px;
}


.p-margin-none {
    margin-bottom: 0px !important;
}

.opacity-content:hover {
    opacity: 0.7;
}

.hover-move:hover {
  transform: translateY(-5px);
  transition: transform 0.3s ease-in-out;
}

.password-form-container {
      padding: 20px;
      text-align: center;
      max-width: 400px;
      margin: 0 auto;
      font-family: sans-serif;
    }

    .password-form-container p {
      color: red;
      font-size: 1.2em;
      margin-bottom: 15px;
    }

    .password-form-container input[type="password"] {
      width: 100%;
      padding: 12px;
      font-size: 1.1em;
      border: 1px solid #ccc;
      border-radius: 5px;
      box-sizing: border-box; /* Ensures padding doesn't affect the total width */
      margin-bottom: 15px;
    }

    .password-form-container input[type="submit"] {
      width: 100%;
      padding: 12px;
      font-size: 1.1em;
      color: #fff;
      background-color: var(--main-gray-color);
      border: none;
      border-radius: 5px;
      cursor: pointer;
      transition: background-color 0.3s ease;
      margin-bottom: 10px;
    }

    .password-form-container input[type="submit"]:hover {
      background-color: #ffffff;
      border: 1px solid var(--main-gray-color);
      color: #505050;
    }

    /* 親要素からtableが飛び出さないようにする処理 */
    /* まず、固定幅テーブルを潰して親幅に合わせる */
    table {
      width: 100% !important;   /* inline style を上書き */
      max-width: 100%;
      height: auto !important;  /* inline の height を上書き */
      border-collapse: collapse;
      table-layout: auto;       /* fixed だと2列が等分され続ける */
    }

    /* 空のセルは消す（列としてカウントさせない）*/
    td:empty, th:empty {
      display: none;
      padding: 0;
      border: 0;
      width: 0;
    }
    /* 画像が親要素から飛び出さないようにする処理*/
    img {
      max-width: 100%;
      width: 100%;         /* 必要なら */
      height: auto !important; /* インラインstyle対策 */
      display: block;
    }
    
    section.movie5s a{
      display: inline-block;
    }
    /*ギフト特集ページ作成 */
    .gift_wrap .gift_inner {
      padding: 40px 0;
    }
    .gift_wrap h1.ttl {
      margin-bottom: 5px;
    }
    .gift_wrap h2.ttl {
      font-size: 16px;
      margin-bottom: 5px;
    }
    .gift_wrap .h_ttl {
      font-size: 22px;
      font-weight: bold;
      text-align: center;
      margin-bottom: 20px;
    }
    .gift_wrap p {
      margin-bottom: 20px;
    }
    .gift_wrap .gift_item {
      padding: 20px;
    }
    .gift_wrap .gift_price {
      font-size: 16px;
      padding: 10px 0;
      font-weight: bold;
    }
    .gift_wrap .red {
      color: #cc0000;
    }
    .gift_wrap .btn_wrap {
      margin-bottom: 20px;
    }
    .gift_wrap .btn_wrap a {
      color: #fff;
      font-size: 16px;
      font-weight: bold;
      padding: 10px 40px;
      border-radius: 10px;
      display: inline-block;
      text-decoration: none;
      transition: all .5s;
      background-color: #ea8b49;
    }
    .gift_wrap .btn_wrap a:hover {
      opacity: .6;
    }
    
    /*--20240411 追加 シチュエーションごとにおすすめの入浴剤を紹介したコンテンツ--*/
    .gift_recommend{
      margin: 50px auto;
    }
    #category .gift_recommend .innerList{
      margin-top: 20px;
    }
    .gift_item h3.ttl{
      font-weight: 600;
    }
    .gift_item img {
      width: 350px;
      max-width: 100%;
  }
