/* style.css */

body {
  margin: 0;
  font-family: 'Noto Sans JP', sans-serif;
}
.pc {
  display: block;
}
.sp {
  display: none;
}
@media (max-width: 600px) {
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
}



/* top */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease-out;
}

.fade-up.active {
  opacity: 1;
  transform: translateY(0);
}

.hero {
  position: relative;
  width: 100%;
  height: 95vh;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
}

.hero-text {
  position: relative;
  z-index: 2;
  font-size: 50px;
  font-weight: bold;
  color: #000;
  width: 100%;
  text-align: left;
  padding-left: 50px;
  user-select: none; 
}

.hero-text p {
  font-size: 18px;
}

.hero-text span {
  color: #e60033;
}

.hero-howk {
  z-index: 3;
  position: absolute;
  top: 20%;
  left: 70%;
}

.section {
  text-align: center;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 5px;
}

.section small {
  display: block;
  margin-bottom: 10px;
  font-size: 0.9rem;
}

.section .underline {
  width: 230px;
  height: 3px;
  background: #e60033;
  margin: 0 auto 20px;
}

.section p {
  font-size: 1.1rem;
  line-height: 1.7;
}

.mg-c {
  text-align: center;
  margin: 0 auto;
  width: 154px;
}


.works-grid {
  width: 90%;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  justify-content: center;
  margin: 40px auto;
}

.works-grid.center {
  grid-template-columns: 1fr;
  justify-items: center;
}

.work-box {
  display: flex;
  background: white;
  box-shadow: 0 0 10px rgba(0,0,0,0.1);
  padding: 15px;
  gap: 15px;
  max-width: 520px;
  height: 110px;
  text-decoration: none;
  color: inherit;
}

.work-box img {
  width: 150px;
  object-fit: cover;
}

.work-box .text {
  text-align: left;
  font-size: 0.9rem;
  color: #333;
  line-height: 1.5;
}
@media (max-width: 1024px) {
  .button-1 {
    width: 100%;
    font-size: 15px;
    padding: 15px;
  }

  .button-row {
    flex-direction: column;
    gap: 15px;
  }

  .works-grid {
    grid-template-columns: 1fr;
  }

  .work-box {
    flex-direction: row;
    height: auto;
    align-items: center;
  }

  .work-box img {
    width: 100px;
  }

  .work-box .text {
    font-size: 0.85rem;
    padding-left: 10px;
    text-align: left;
  }


  .mg-c {
    width: auto;
  }
}

@media (max-width: 1100px) {
  .main-content {
    margin-left: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
  }
  
  .page-wrapper {
    flex: 1;
  }
  
  .hero-text {
    font-size: 1.8rem;
  }

  .button-1 {
    width: 340px !important;
  }

  .button-2 {
    font-size: 13px;
    padding: 10px 16px;
  }

  .icon {
    width: 20px;
    height: 20px;
  }

  .section h2 {
    font-size: 1.6rem;
  }

  .section p {
    font-size: 0.95rem;
  }

  .hero {
    height: 50vh;
  }

  .section {
    padding: 0;
  }
}

/* service.css */

.service-page {
  font-family: 'Noto Sans JP', sans-serif;
}

.service-hero h1 {
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 20px;
}

.service-hero {
  text-align: center;
  margin-bottom: 20px;
}

.service-hero img {
  max-width: 100%;
  height: auto;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.service-hero .catch-copy {
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.6;
  font-weight: bold;
  width: 90%;
  margin: 40px auto;
}

.service-block {
  background: #fff;
  max-width: 1200px;
  margin: 50px auto;
  padding: 0 30px;
}

.service-block h2 {
  font-size: 1.3rem;
  margin-bottom: 15px;
}

.service-block .marker {
  border-left: 5px solid #e60033;
  padding-left: 10px;
  display: inline-block;
}

.service-block p {
  font-size: 1.1rem;
  line-height: 1.7;
  margin: 0;
}

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

.cta p {
  color: #e60033;
  font-weight: bold;
  margin-bottom: 10px;
}

.cta-button {
  display: inline-block;
  background-color: #e60033;
  color: #fff;
  padding: 12px 24px;
  text-decoration: none;
  font-weight: bold;
  border-radius: 5px;
  box-shadow: 0 3px 6px rgba(0,0,0,0.1);
}

.service-nav {
  margin-top: 40px;
  padding: 30px 20px;
  border-top: 2px solid #e60033;
  background: #fff;
}

.service-nav ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px;
  list-style: none;
  padding: 0;
}

.service-nav ul li a {
  display: inline-block;
  border: 1px solid #ccc;
  padding: 10px 16px;
  text-decoration: none;
  font-size: 0.9rem;
  background: #fff;
  transition: 0.3s;
  color: #000;
}

.service-nav ul li a:hover {
  background: #e60033;
  color: #fff;
  border-color: #e60033;
}

/*--------------------------------------
コンバージョンアップボタン 吹き出し赤色（中央寄せ）
--------------------------------------*/
.button2,
a.button2,
button.button2 {
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.5;
  position: relative;
  display: inline-block;
  padding: 1rem 4rem;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  vertical-align: middle;
  text-decoration: none;
  letter-spacing: 0.1em;
  color: #212529;
  border-radius: 0.5rem;
}
.button2-c-wrap {
  margin: 80px auto 100px;
  text-align: center;
}

a.button2-c {
  font-size: 1.15rem;
  position: relative;
  padding: 0.25rem 2rem 0.5rem 1.8rem;
  color: #fff;
  background: #e94919;
  box-shadow: 0 5px 0 #d44114;
  display: inline-block;
  width: 100%;
  max-width: 600px; /* PC時の最大幅 */
  box-sizing: border-box;
}

a.button2-c span {
  font-size: 0.8rem;
  position: absolute;
  top: -0.75rem;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 90%;
  max-width: 360px;
  padding: 0.25rem 0;
  color: #d44114;
  border: 2px solid #d44114;
  border-radius: 100vh;
  background: #fff;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.2);
}

a.button2-c span:before,
a.button2-c span:after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  content: "";
}

a.button2-c span:before {
  bottom: -10px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #d44114 transparent transparent transparent;
}

a.button2-c span:after {
  bottom: -7px;
  border-width: 10px 10px 0 10px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

@media (max-width: 1100px) {
  a.button2-c {
    width: 90%;
  }
}


a.button2-c i {
  margin-right: 0.75rem;
}

a.button2-c:hover {
  -webkit-transform: translate(0, 3px);
  transform: translate(0, 3px);

  color: #fff;
  background: #eb5b30;
  -webkit-box-shadow: 0 2px 0 #d44114;
  box-shadow: 0 2px 0 #d44114;
}

/* footer */
footer {
  border-top: 3px solid red;
  margin-top: auto; /* フッターを下部に固定 */
}

.copyright {
  background-color: #555555;
  color: #fff;
  padding: 10px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.copyright-text {
  position: relative;
  z-index: 1;
}

.copyright p {
  margin: 0;
  font-size: 14px;
}

.privacy {
  color: #fff;
  text-decoration: none;
  font-size: 14px;
  margin-top: 10px;
  display: block;
}

@media (max-width: 1100px) {
  .copyright {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: static;
  }
  .copyright-text {
    margin-top: 10px;
  }

  .privacy {
    margin-top: 10px;
  }
}




/* 企業理念 */

#company .text-block {
  padding: 0;
  max-width: 1200px;
}

.transition-page {
  font-family: sans-serif;
  overflow: hidden;
  background: linear-gradient(135deg, #fafafa 0%, #f0f0f0 100%);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.intro {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  position: relative;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  z-index: 10;
  padding: 30px 0 0px;
}

.intro.move-up {
  transform: translateY(-20px);
}

.center-wrap {
  position: relative;
  overflow: hidden;
}

.center-wrap h1 {
  text-align: center;
  margin: 30px auto;
  position: relative;
  font-size: 2rem;
  letter-spacing: 0.1em;
}

h1 .intro-text {
  font-size: 2rem;
  opacity: 0;
  position: relative;
  font-weight: 300;
  letter-spacing: 0.1em;
  transition: all 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.intro-text.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.center-line {
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%);
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, transparent, #e60033, transparent);
  transition: width 1.2s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s;
  border-radius: 2px;
}

.intro.active .center-line {
  width: 100%;
}

/* テキストセクション */
.content-block {
  flex: 1;
  display: flex;
  align-items: baseline;
  justify-content: space-around;
  width: 90%;
  margin: 30px auto;
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.5s ease 1s;
}

.content-block.fade-in {
  opacity: 1;
  transform: translateY(0);
}

.text-block {
  flex: 1;
  padding: 10px;
  font-size: 1.1rem;
  line-height: 1.7;
}

/* about-us専用のスタイル */
#aboutus.content-block {
  justify-content: center;
  max-width: 800px;
  margin: 50px auto;
  transition: all 1s cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.8s;
}

#aboutus .text-block {
  width: 100%;
  padding: 0px 40px;
  font-size: 1.1rem;
  line-height: 1.8;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  position: relative;
  overflow: hidden;
}

#aboutus .text-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background-size: 200% 100%;
  animation: gradientMove 3s ease-in-out infinite;
}

@keyframes gradientMove {
  0%, 100% { background-position: 0% 0%; }
  50% { background-position: 100% 0%; }
}

#aboutus .text-block h2 {
  color: #e60033;
  margin-bottom: 30px;
  font-size: 1.6rem;
  font-weight: 400;
  text-align: center;
  position: relative;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards 1.5s;
}

#aboutus .text-block p {
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 0.8s ease forwards;
  animation-delay: 1.8s;
  text-align: center;
  color: #555;
  margin-bottom: 20px;
}

@keyframes fadeInUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.image-block {
  flex: 1;
  text-align: center;
}

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

/* レスポンシブ */
@media (max-width: 1100px) {
  .content-block {
    flex-direction: column;
    text-align: center;
    width: 95%;
    margin: 20px auto;
  }

  .image-block img {
    width: 80%;
    margin-top: 20px;
  }
  
  .intro-text {
    font-size: 1.8rem;
  }
  
  #aboutus .text-block {
    padding: 30px 20px;
    margin: 20px auto;
    max-width: 100%;
    border-radius: 10px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.08);
    box-sizing: border-box;
    width: 100%;
  }
  
  #aboutus .text-block h2 {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
  
  #aboutus .text-block p {
    font-size: 1.1rem;
    text-align: center;
    line-height: 1.7;
    margin-bottom: 15px;
  }
  
  #aboutus .text-block strong {
    display: block;
    text-align: center;
    margin-top: 20px;
    font-size: 1.1rem;
  }
}

.contact-footer a {
  color: #fff;
  text-decoration: none;
}

/* 会社概要 */

.company-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 30px;
}

.company-table th,
.company-table td {
  border: 1px solid #ddd;
  padding: 10px 15px;
  vertical-align: top;
  text-align: left;
}

.company-table th {
  background-color: #f8f8f8;
  font-weight: bold;
  width: 200px;
  white-space: nowrap;
}

.company-table a {
  color: #0066cc;
  text-decoration: none;
}

.company-table a:hover {
  text-decoration: underline;
}
@media (max-width: 1100px) {
  .company-table, 
  .company-table tbody, 
  .company-table tr {
    display: block;
    width: 100%;
  }

  .company-table tr {
    border: 1px solid #ddd;
    padding: 0;
  }

  .company-table th,
  .company-table td {
    display: block;
    width: 100%;
    border: none;
    padding: 10px 15px;
    box-sizing: border-box;
  }

  .company-table th {
    background-color: #f8f8f8;
    border-bottom: 1px solid #ddd;
    font-weight: bold;
    width: 100%;
    white-space: normal;
  }
}




/* お問い合わせ */

.contact-form-wrapper label {
  display: block;
  margin-bottom: 20px;
  font-weight: bold;
  color: #333;
  width: 70%;
  margin: 0 auto;
  text-align: left;
  width: 70%;
}

.contact-form-wrapper input,
.contact-form-wrapper textarea {
  width: 100%;
  padding: 10px;
  font-size: 1.1rem;
  border: 1px solid #ccc;
  border-radius: 6px;
  margin-top: 5px;
  box-sizing: border-box;
}

.contact-form-wrapper .required {
  color: red;
  margin-left: 4px;
}

.submit-wrap {
  text-align: center;
  margin: 50px auto 0;
  width: 400px;
}

.submit-wrap input[type="submit"] {
  background-color: #e60033;
  color: #fff;
  font-weight: bold;
  font-size: 1.1rem;
  padding: 12px 30px;
  border: none;
  border-radius: 9999px;
  cursor: pointer;
  box-shadow: 0 4px 10px rgba(0,0,0,0.2);
  transition: background-color 0.3s ease;
}

.submit-wrap input[type="submit"]:hover {
  background-color: #cc002c;
}

@media (max-width: 1100px) {
  .submit-wrap {
    width: 100%;
  }
}

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





/* TOP */

.main-content {
  margin: 0 0 0 220px;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.page-wrapper {
  flex: 1; /* ページコンテンツエリアを自動的に拡張してフッターを下部に押し下げる */
  max-width: 1200px;
  margin: 0 auto;
  padding: 0px 50px;
}

.contents-wrapper {
  margin: 100px 0;
}

.works .contents-wrapper {
  margin-top: 150px;
}

.contents-title {
  border-left: 4px solid #E50133;
  padding-left: 30px;

}

.contents-title h1 {
  font-size: 100px;
  margin: 0;
}

.contents-title p {
  font-size: 16px;
  margin: 0;
}

.contents-subtitle h2 {
  font-size: 30px;
  margin: 60px 0;
}

.button-row {
  display: flex;
  justify-content: center;
  gap: 5px;
  margin: 20px 0;
  flex-wrap: wrap;
  align-content: center;
}

.button-1 {
  width: 190px;
  max-width: 100%;
  color: #000;
  text-transform: uppercase;
  text-decoration: none;
  border: 2px solid red;
  padding: 15px 10px;
  font-size: 17px;
  cursor: pointer;
  font-weight: bold;
  background: transparent;
  position: relative;
  transition: all 1s;
  overflow: hidden;
}

.button-1:hover {
  color: white;
}

.button-1::before {
  content: "";
  position: absolute;
  height: 100%;
  width: 0%;
  top: 0;
  left: -40px;
  transform: skewX(45deg);
  background-color: red;
  z-index: -1;
  transition: all 1s;
}

.button-1:hover::before {
  width: 160%;
}
.feature-button-row {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin: 20px 0;
  flex-wrap: wrap; /* 折り返しOK */
}

.feature-button {
  width: 370px;
  border: 2px solid red;
  padding: 20px 25px;
  font-size: 17px;
  font-weight: bold;
  color: #000;
  background: transparent;
  text-align: center;
  box-sizing: border-box;
}

@media (max-width: 1100px) {
  .button-row {
    flex-direction: column;
    align-items: center;
  }
}

@media (max-width: 1100px) {
  .feature-button-row {
    flex-direction: column;
    align-items: center;
    margin: 10px 0;
  }

  .feature-button {
    width: 100%;
    max-width: 400px;
  }
}



.work-contents-left {
  position: relative;
  margin: 100px 0;
}

.work-contents-text-left {
  padding: 30px;
  background-color: #FAFAFA;
  width: 75%;
  
}

.work-contents-text-left h1 {
  margin: 0;
}

.work-contents-text-left h1 {
  font-size: 80px;
  font-style: italic;
  color: #E60033;
}

.work-contents-text-left span {
  font-size: 28px;
  font-style: normal;
  padding-left: 20px;
}

.work-contents-text-left p {
  margin: 20px 0 30px;
  width: 65%;
  font-size: 1.1rem;
}

.work-contents-img-left img {
  width: 40%;
  height: auto;
  position: absolute;
  right: 0;
  top: -30px;
  box-shadow: -10px 12px 0px 0px lightgray;
}

.button-2 {
  position: relative;
  transition: all 0.3s ease-in-out;
  padding: 0.5rem 3rem;
  background-color: red;
  border-radius: 9999px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  color: #fff;
  border: 3px solid #F57079;
  outline: none;
  overflow: hidden;
  font-size: 15px;
  text-align: center;
  width: 250px;
}


.button-2 span {
  width: 100%;
  text-align: center;
  z-index: 1;
  padding: 0;
  font-size: 16px!important;
}

.icon {
  width: 24px;
  height: 24px;
  position: absolute;
  right: 1rem;
  transition: all 0.3s ease-in-out;
  z-index: 1;
}

.button-2:hover {
  transform: scale(1.05);
  border-color: #F57079;
}

.button-2:hover .icon {
  transform: translateX(4px);
}

.button-2:hover::before {
  animation: shine 1.5s ease-out infinite;
}

.button-2::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(
    120deg,
    rgba(255, 255, 255, 0) 30%,
    rgba(255, 255, 255, 0.8),
    rgba(255, 255, 255, 0) 70%
  );
  top: 0;
  left: -100px;
  opacity: 0.6;
}

.work-contents-right {
  position: relative;
  margin: 100px 0;
  display: flex;
  flex-direction: row-reverse;
}

.work-contents-text-right {
  padding: 30px 40px 30px 270px;
  background-color: #FAFAFA;
  width: 50%;
  
}

.work-contents-text-right h1 {
  margin: 0;
}

.work-contents-text-right h1 {
  font-size: 80px;
  font-style: italic;
  color: #E60033;
}

.work-contents-text-right span {
  font-size: 28px;
  font-style: normal;
  padding-left: 20px;
}

.work-contents-text-right .button-2 span {
  padding: 0;
}


.work-contents-text-right p {
  margin: 20px 0 30px;
  font-size: 1.1rem;
}

.work-contents-img-right img {
  width: 40%;
  height: auto;
  position: absolute;
  top: -30px;
  left: 0;
  right: auto;
  box-shadow: 10px 12px 0px 0px lightgray;
}

a {
  text-decoration: none;
}

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


@media (max-width: 1100px) {
  .main-content {
    margin-left: 0;
    min-height: 100vh;
  }
  
  .page-wrapper {
    flex: 1;
    width: 90%;
    padding: 0;
  }
  .work-contents-left {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    position: relative;
    margin: 50px 0;
  }
  .work-contents-right {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    margin: 50px 0;
  }

  .work-contents-text-left,
  .work-contents-text-right {
    width: 90%;
    padding: 30px 20px;
    background-color: #FAFAFA;
    text-align: center;
  }

  .work-contents-text-left p,
  .work-contents-text-right p {
    width: 100%;
  }

  .work-contents-img-left img,
  .work-contents-img-right img {
    position: static;
    width: 100%;
    max-width: 500px;
    box-shadow: none;
    margin-top: 20px;
  }

  .button-2 {
    width: 100%;
    max-width: 400px;
    margin: 0 auto;
  }

  .contents-title {
    padding-left: 20px;
  }

  .contents-title h1 {
    font-size: 55px;
  }
  .buttons {
    text-align: center;
  }
  .copyright {
    flex-direction: column;
  }
  .hero-img {
    width: 150%;  
  }
  .contents-subtitle h2 {
    font-size: 25px;
    margin: 40px 0;
  }
  .work-contents-text-left h1 {
    display: flex;
    flex-direction: column;
  }
  .work-contents-text-right h1 {
    display: flex;
    flex-direction: column;
  }
  .work-contents-text-left span {
    padding: 0;
  }
  .work-contents-text-right span {
    padding: 0;
  }
  .contents-wrapper {
    margin: 50px 0;
  }
  #aboutus .text-block {
    padding: 25px 15px;
    margin: 15px auto;
    background: rgba(255, 255, 255, 0.9);
    border-radius: 8px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
  }

  #aboutus .text-block p {
    text-align: center;
    font-size: 1rem;
    line-height: 1.6;
  }
  
  #aboutus .text-block h2 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    text-align: center;
  }
 
  .service-hero .catch-copy {
    text-align: left;
  }
  .button2-c-wrap {
    margin: 40px auto 50px;
  }
  .contents-title p {
    font-size: 14px;
  }
  .contact-form-wrapper {
    text-align: left;
  }
  #privacy p {
    text-align: left;
  }
  .contact-form-wrapper label {
    width: 100%;
  }
  #policy .text-block {
    text-align: left;
  }
  #policy .content-block {
    width: 100%;
  }

}

/* プライバシーポリシー専用スタイル */
#policy .page-wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

#policy .policy-content {
  background: #fff;
  padding: 40px;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  margin: 30px 0;
}

#policy .policy-intro {
  background: #f8f9fa;
  padding: 25px;
  border-radius: 6px;
  margin-bottom: 40px;
}

#policy .policy-intro p {
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #333;
}

#policy .policy-article {
  margin-bottom: 40px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e9ecef;
}

#policy .policy-article:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

#policy .policy-article h2 {
  color: #e60033;
  font-size: 1.4rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #e60033;
}

#policy .policy-article p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
  margin-bottom: 15px;
}

#policy .policy-article ol {
  padding-left: 0;
  counter-reset: item;
  list-style: none;
}

#policy .policy-article ol > li {
  display: block;
  margin-bottom: 15px;
  padding-left: 30px;
  position: relative;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #444;
}

#policy .policy-article ol > li:before {
  content: counter(item) ".";
  counter-increment: item;
  position: absolute;
  left: 0;
  top: 0;
  color: #e60033;
  font-weight: 600;
}

#policy .policy-article .sub-list {
  margin-top: 10px;
  padding-left: 20px;
  list-style: none;
}

#policy .policy-article .sub-list > li {
  padding-left: 25px;
  margin-bottom: 10px;
  font-size: 1rem;
}

#policy .policy-article .sub-list > li:before {
  content: "(" counter(subitem) ")";
  counter-increment: subitem;
  color: #666;
  font-weight: normal;
}

#policy .policy-article ol .sub-list {
  counter-reset: subitem;
}

#policy .policy-article ul {
  margin-top: 10px;
  padding-left: 20px;
  list-style: none;
}

#policy .policy-article ul li {
  margin-bottom: 8px;
  font-size: 1rem;
  line-height: 1.7;
  color: #444;
  position: relative;
  padding-left: 15px;
}

#policy .policy-article ul li:before {
  content: "•";
  color: #e60033;
  position: absolute;
  left: 0;
  top: 0;
}

#policy .contact-link {
  text-align: center;
  margin-top: 25px;
  padding: 20px;
  background: #f8f9fa;
  border-radius: 6px;
}

#policy .contact-link a {
  display: inline-block;
  background: #e60033;
  color: #fff;
  padding: 12px 30px;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: background-color 0.3s ease;
}

#policy .contact-link a:hover {
  background: #cc002c;
}

/* レスポンシブ対応 */
@media (max-width: 1100px) {
  #policy .page-wrapper {
    padding: 0 20px;
  }
  
  #policy .policy-content {
    padding: 25px 20px;
    margin: 20px 0;
  }
  
  #policy .policy-intro {
    padding: 20px;
  }
  
  #policy .policy-intro p {
    font-size: 1rem;
  }
  
  #policy .policy-article h2 {
    font-size: 1.2rem;
  }
  
  #policy .policy-article p,
  #policy .policy-article ol > li {
    font-size: 1rem;
  }
  
  #policy .policy-article ol > li {
    padding-left: 25px;
  }
  
  #policy .policy-article .sub-list > li {
    padding-left: 20px;
    font-size: 0.95rem;
  }
  
  #policy .contact-link {
    padding: 15px;
  }
  
  #policy .contact-link a {
    padding: 10px 25px;
    font-size: 0.95rem;
  }
  @media (max-width: 750px) {
    .hero-howk {
      top: 8%;
    }
  }
}
