@charset "UTF-8";
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #4A3636;
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3, strong {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}

.kiwi-maru {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
}

.capriola-title {
  font-family: "Capriola", cursive;
  font-weight: 400;
}

.text_color_blue {
  color: #2693CE;
}

.text_color_orange {
  color: #E9A725;
}

@media screen and (min-width: 768px) {
  .hide-pc {
    display: none;
  }
}

.heading {
  position: relative;
  font-size: 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding-bottom: 30px;
}
@media screen and (min-width: 768px) {
  .heading {
    font-size: 40px;
    gap: 10px;
  }
}
.heading .heading__en {
  font-size: 12px;
  font-family: "Capriola", cursive;
  color: #E9A725;
  letter-spacing: 0.1em;
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .heading .heading__en {
    font-size: 16px;
    letter-spacing: 0.5em;
  }
}
.heading .heading__en-white {
  color: #fff;
}

.button-wrapper {
  display: flex;
  justify-content: center;
  padding: 40px 0;
}

.card__button-wrapper {
  padding: 20px 0;
}

.newtopics_button-wrapper {
  width: 200px;
}

.button {
  display: inline-block;
  width: 260px;
  padding: 11px;
  text-align: center;
  border: 1px solid #90c32c;
  color: #90c32c;
  font-size: 14px;
  letter-spacing: 0.02px;
  transition: color 0.3s, background-color 0.3s;
  border-radius: 9999px;
}
.button:hover {
  color: #fff;
  background: #90c32c;
}

.section__content {
  margin-top: 46px;
}

.main {
  display: grid;
  gap: 40px;
}
.main > :nth-child(2) {
  margin-top: -40px;
}

.header {
  height: 60px;
  background: #4A3636;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}
@media screen and (min-width: 768px) {
  .header {
    height: 70px;
  }
}

.header__inner {
  height: inherit;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.inner {
  padding-inline: 20px;
  box-sizing: border-box;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1024px;
    margin-inline: auto;
    padding-inline: 40px;
  }
}

.header__logo a img {
  width: 205px;
  display: block;
}

@media screen and (min-width: 768px) {
  .header__icon {
    display: none;
  }
}

.drawer-icon {
  width: 30px;
  height: 18px;
  position: relative;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1), .drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  top: 9px;
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(1) {
  transform: rotate(45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(3) {
  transform: rotate(-45deg);
}
.drawer-icon.is-checked .drawer-icon__bar:nth-child(2) {
  display: none;
}

.drawer-icon__bar {
  position: absolute;
  width: 30px;
  height: 2px;
  left: 0;
  background: #fff;
  transition: top 0.4s, transform 0.4s;
}
.drawer-icon__bar:nth-child(1) {
  top: 0;
}
.drawer-icon__bar:nth-child(2) {
  top: 8px;
}
.drawer-icon__bar:nth-child(3) {
  top: 16px;
}

.header__nav {
  z-index: 2001;
  background: #4A3636;
  width: 270px;
  height: calc(100% - 60px);
  position: fixed;
  right: 0;
  top: 60px;
  padding: 32px 15px;
  transform: translateX(100%);
  transition: transform 0.4s;
  max-height: 100vh;
}
.header__nav.is-checked {
  transform: translateX(0);
}
@media screen and (min-width: 768px) {
  .header__nav {
    background: transparent;
    width: auto;
    height: auto;
    position: static;
    padding: 0;
    transform: translateY(0);
  }
}

.header__lists {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 8px;
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .header__lists {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }
}

.header__link {
  display: inline-block;
  padding-block: 8px;
  color: #fff;
  font-size: 18px;
  position: relative;
}
.header__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background-color: #fff;
  border-radius: 9999px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.header__link:hover::after {
  transform: scaleX(1);
}
@media screen and (min-width: 768px) {
  .header__link {
    font-size: 16px;
  }
}

.fv__inner {
  position: relative;
}

.fv__text {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(9, 8, 8, 0.28);
  color: #fff;
  writing-mode: vertical-rl;
  padding: 20px 15px;
  font-size: 18px;
  max-width: 250px;
  box-sizing: border-box;
  line-height: 2.5;
  letter-spacing: 0.5em;
}
@media screen and (min-width: 768px) {
  .fv__text {
    padding: 20px 15px;
    font-size: 20px;
    line-height: 2;
    max-width: 400px;
    box-sizing: border-box;
    line-height: 2.5;
    letter-spacing: 0.5em;
  }
}
@media screen and (min-width: 900px) {
  .fv__text {
    font-size: 25px;
    max-width: 600px;
  }
}

/* スマホはPC画像非表示、2枚を縦に */
.fv__pc-image {
  display: none;
}

.fv__sp-images img {
  display: block;
  width: 100%;
}

/* PCサイズ */
@media screen and (min-width: 768px) {
  .fv__sp-images {
    display: none;
  }
  .fv__pc-image {
    display: block;
    width: 100%;
    height: auto;
  }
}
.concept__content {
  position: relative;
}

.concept__title {
  font-size: 24px;
  font-weight: 700;
  margin-bottom: 30px;
}

.concept__image {
  text-align: center;
  position: absolute;
  right: 0;
  top: -20%;
  width: 180px;
}
@media screen and (min-width: 768px) {
  .concept__image {
    width: 250px;
    top: -40%;
  }
}

.concept__title .text_color {
  color: #90c32c;
  font-weight: 600;
}

.newtopics_fv {
  margin-top: 60px;
}
.newtopics_fv img {
  display: block;
  margin: 0 auto;
}

.newtopics {
  background-color: #E9A725;
  padding-bottom: 80px;
}

.newtopics__inner {
  position: relative;
}

.newtopics__title {
  text-align: center;
  color: #fff;
  background: #E9A725;
  padding: 10px 0 20px;
  font-size: 24px;
  letter-spacing: 0.3em;
}
@media screen and (min-width: 768px) {
  .newtopics__title {
    font-size: 26px;
    letter-spacing: 0.5em;
  }
}

.newtopics__card-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

.newtopics__card {
  flex: 0 1 calc(50% - 10px);
  background: #fff;
  border-radius: 5px;
  padding: 10px;
  box-sizing: border-box;
  display: block;
}
.newtopics__card img {
  width: 100%;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 3px;
}
.newtopics__card .newtopics_card-title,
.newtopics__card time,
.newtopics__card .newtopics_card-text {
  width: 100%;
}
@media screen and (min-width: 900px) {
  .newtopics__card {
    flex: 0 1 calc(33.333% - 13.33px);
  }
}

.newtopics_card-title {
  color: #90c32c;
  font-size: 14px;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  text-align: center;
}

.newtopics__card time {
  display: block;
  font-size: 12px;
  text-align: center;
  margin: 1px 0;
}

.newtopics_card-text {
  text-align: left;
  font-size: 14px;
  line-height: 1.5;
}

.newtopics_button {
  background-color: #fff;
  color: #E9A725;
  border: 1px solid #fff;
  font-size: 14px;
  letter-spacing: 0.02px;
  transition: color 0.3s, background-color 0.3s;
  border-radius: 9999px;
}
.newtopics_button:hover {
  color: #fff;
  background: #90c32c;
  border-style: none;
}

.advantage_lead_1 {
  text-align: center;
  color: #90c32c;
  margin-top: 40px;
  font-size: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .advantage_lead_1 {
    font-size: 32px;
  }
}
.advantage_img-1 {
  width: 100%; /* 親要素いっぱいに広がる */
  max-width: 300px; /* 最大幅は300px */
  display: block;
  margin: 0 auto;
}

.advantage_img-2 {
  width: 100%; /* 親要素いっぱいに広がる */
  max-width: 300px; /* 最大幅は300px */
  display: block;
  margin: 0 auto;
}

.advantage_lead_1::after {
  content: url(../img/01.png);
  position: absolute;
  right: 0;
  bottom: 10px;
}

.advantage_lead_2 {
  text-align: center;
  color: #90c32c;
  margin-top: 40px;
  font-size: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .advantage_lead_2 {
    font-size: 32px;
  }
}
.advantage_lead_2::after {
  content: url(../img/02.png);
  position: absolute;
  right: 0;
  bottom: 10px;
}

.service {
  background-color: #FCFBF9;
  margin-bottom: -40px; /* main の gap と同じ値をマイナスで打ち消す */
}

.heading__service {
  background-color: #E9A725;
  color: #fff;
}

.service__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
  padding-bottom: 40px;
}

/* 最後のカードの下だけ消す */
.service__card:last-child {
  margin-bottom: 20px;
}

.service__card {
  display: flex;
  flex-direction: column; /* スマホは縦 */
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 335px;
  padding: 20px;
  background-color: #fff;
  border-radius: 16px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  margin-top: 30px;
  margin-bottom: 20px;
  gap: 15px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.service__card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}

.service__card a {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between; /* 左右に分ける */
  align-items: center; /* 縦中央 */
}

.service__card__hide {
  background-color: #FCFBF9;
  box-shadow: none;
}
.service__card__hide:hover {
  transform: none;
  box-shadow: none;
}

.service__card-left {
  text-align: left;
}

.service__card__en {
  color: #E9A725;
  font-size: 12px;
}

.service__card-title {
  font-size: 16px;
}

.service__card-title-small {
  font-size: 14px;
}

.service__card-text {
  font-size: 12px;
  text-decoration: underline;
}

.service__card-right img {
  width: 70px;
  height: auto;
}

/* md以上で横並び、左右に分ける */
@media screen and (min-width: 768px) {
  .service__card {
    flex-direction: row; /* 左右並び */
    width: calc(50% - 10px); /* 2列に並べる */
    text-align: left;
    align-items: center;
  }
  .service__card-left {
    flex: 1; /* 左側は残り幅を全部 */
  }
  .service__card-right {
    margin-left: 20px;
    flex-shrink: 0; /* アイコンのサイズを固定 */
  }
}
@media screen and (min-width: 1200px) {
  .service__card {
    width: calc(33.333% - 13.33px); /* 3列に並べる */
  }
}
.heading__faq {
  background-color: #90c32c;
  color: #fff;
}

.faq__lead {
  text-align: center;
  margin-top: 50px;
  color: #E9A725;
  font-size: 20px;
}
@media screen and (min-width: 768px) {
  .faq__lead {
    font-size: 30px;
  }
}

.faq__img img {
  display: block;
  margin: 0 auto;
}

.faq__img_1 {
  width: 100%; /* 親要素いっぱいに広がる */
  max-width: 300px; /* 最大幅は300px */
  display: block;
  margin: 0 auto;
}

iframe {
  display: block;
  margin: 0 auto; /* 横中央に寄せる */
  width: 100%; /* 画面幅に合わせる */
  max-width: 1120px; /* PCで最大幅 */
  height: 1500px; /* フォームの高さ */
}

.main iframe {
  padding-top: 70px; /* 上に余白を追加 */
  margin-bottom: 80px;
}

.iframe_wrap {
  background-color: #FFF9E6;
}

.heading__contact__only {
  padding-top: 60px;
}

.contact::after {
  content: "";
  display: block;
  clear: both;
}

.contact__wrap {
  background-color: #FFF9E6;
}

.heading__contact {
  background-color: #E9A725;
  color: #fff;
}

.contact__lead {
  text-align: center;
  padding-top: 50px;
}

.contact__lead::after {
  content: url(../img/contact_line.png);
}

.contact__text {
  text-align: center;
}

.contact_button {
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 15px;
}
.contact_button a {
  background-color: #E9A725;
  color: #fff;
  border-style: none;
}
.contact_button a img {
  width: 14px;
  height: auto;
  margin-right: 10px;
}

.contact_button_2 a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  line-height: 1;
  letter-spacing: 0.3em;
  font-weight: 700;
}
.contact_button_2 a img {
  width: 20px;
  transform: translateY(-2px);
}

/* 左右に揺れるアニメーション */
@-webkit-keyframes plane-move {
  0% {
    transform: translateX(-50%) translateX(-20px); /* 初期位置から左に20px */
  }
  50% {
    transform: translateX(-50%) translateX(20px); /* 右に20px */
  }
  100% {
    transform: translateX(-50%) translateX(-20px); /* 左に戻る */
  }
}
@keyframes plane-move {
  0% {
    transform: translateX(-50%) translateX(-20px); /* 初期位置から左に20px */
  }
  50% {
    transform: translateX(-50%) translateX(20px); /* 右に20px */
  }
  100% {
    transform: translateX(-50%) translateX(-20px); /* 左に戻る */
  }
}
.contact__image__wrap {
  width: 100%;
}
.footer {
  position: relative;
  width: 100%;
  background-color: #2693CE;
  padding: 0 20px;
  box-sizing: border-box; /* paddingを幅に含める */
}

.footer__inner {
  z-index: 800;
  color: #fff;
  text-align: center;
  background-color: #2693CE;
}

.footer_lead {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  margin-bottom: 30px;
  position: relative;
}

.footer_lead::after {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 80px;
  right: 10px;
  bottom: 30px;
  background: url("../img/footer_octopus.png") no-repeat center/contain;
}

.company_name {
  margin-bottom: 30px;
  font-size: 24px;
  position: relative;
}

.company_name::before {
  content: "";
  position: absolute;
  display: block;
  width: 80px;
  height: 80px;
  background: url("../img/footer_fish.png") no-repeat center/contain;
}

.address_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 10px;
}

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

.tel {
  font-family: "Capriola", cursive;
}

.fax {
  font-family: "Capriola", cursive;
  margin-bottom: 30px;
}

.footer_img img {
  width: 100px;
}

.footer__lists {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
  max-width: 1024px;
  margin-inline: auto;
  position: relative;
  flex-wrap: wrap;
}
.footer__lists::before {
  content: "";
  display: block;
  width: 80%;
  height: 4px;
  margin: 0 auto 10px;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='4' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 2 Q2 0 4 2 T8 2 T12 2 T16 2 T20 2 T24 2 T28 2 T32 2 T36 2 T40 2 T44 2 T48 2 T52 2 T56 2 T60 2 T64 2 T68 2 T72 2 T76 2 T80 2 T84 2 T88 2 T92 2 T96 2 T100 2' stroke='%23ADD8E6' stroke-width='2' fill='transparent'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: auto 100%;
  -webkit-animation: wave-move 4s linear infinite;
          animation: wave-move 4s linear infinite;
}

.footer__list {
  width: 100%;
  text-align: center;
  padding: 15px 0;
}
.footer__list:not(:last-child)::after {
  content: "";
  display: block;
  width: 80%;
  height: 4px;
  margin: 10px auto 0;
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='4' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M0 2 Q2 0 4 2 T8 2 T12 2 T16 2 T20 2 T24 2 T28 2 T32 2 T36 2 T40 2 T44 2 T48 2 T52 2 T56 2 T60 2 T64 2 T68 2 T72 2 T76 2 T80 2 T84 2 T88 2 T92 2 T96 2 T100 2' stroke='%23ADD8E6' stroke-width='2' fill='transparent'/%3E%3C/svg%3E");
  background-repeat: repeat-x;
  background-size: auto 100%;
  -webkit-animation: wave-move 4s linear infinite;
          animation: wave-move 4s linear infinite;
}

.footer__link {
  color: #fff;
  text-decoration: none;
  font-size: 16px;
  font-weight: 500;
  display: block;
  width: 100%;
}

@-webkit-keyframes wave-move {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 50px;
  }
}

@keyframes wave-move {
  0% {
    background-position-x: 0;
  }
  100% {
    background-position-x: 50px;
  }
}
.footer__copyright {
  color: #fff;
  text-align: center;
  width: 100%;
  font-size: 12px;
}

.fv__inner {
  position: relative;
}

.info__fv__img {
  width: 100%;
}

.info__fv__text {
  position: absolute;
  margin-top: 30px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(9, 8, 8, 0.28);
  color: #fff;
  text-align: center;
  padding: 20px 15px;
  font-size: 18px;
  max-width: 250px;
  box-sizing: border-box;
  line-height: 1.8;
  letter-spacing: 0.3em;
}
@media screen and (min-width: 768px) {
  .info__fv__text {
    padding: 20px 15px;
    font-size: 20px;
    line-height: 2;
    max-width: 400px;
    box-sizing: border-box;
    line-height: 2.5;
    letter-spacing: 0.5em;
  }
}
@media screen and (min-width: 900px) {
  .info__fv__text {
    font-size: 25px;
    max-width: 600px;
  }
}

.greeting__title {
  text-align: center;
  font-size: 20px;
  color: #2693CE;
  margin-top: 30px;
  position: relative;
}

.greeting_img {
  display: flex;
  margin-top: 30px;
  max-width: 350px;
  margin: 0 auto;
}

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

.greeting__wrap__text {
  margin-bottom: 30px;
}

.greeting__wrap__text-small {
  text-align: right;
  font-size: 14px;
  padding-bottom: 30px;
}

.management {
  background-color: #4A3636;
  width: 100%;
  color: #fff;
  text-align: center;
  padding-top: 20px;
  padding-bottom: 30px;
}

.management_title {
  color: #E9A725;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.profile__inner {
  padding: 20px;
}

.profile__title {
  text-align: center;
  font-size: 20px;
  color: #2693CE;
  margin-top: 30px;
  position: relative;
}

#company-profile {
  max-width: 800px;
  margin: 0 auto;
  padding: 2em;
  font-family: "Noto Sans JP", sans-serif;
  color: #333;
}
#company-profile dl dt {
  font-weight: bold;
  font-size: 1.1em;
  margin-top: 1.5em;
  margin-bottom: 0.3em;
  color: #222;
}
#company-profile dl dd {
  margin-left: 1.5em;
  margin-bottom: 0.8em;
  line-height: 1.6;
}
#company-profile dl dd ul {
  margin: 0.5em 0 0.5em 2em;
  padding: 0;
  list-style-type: disc;
}
#company-profile dl dd ul li {
  margin-bottom: 0.3em;
}
@media screen and (max-width: 600px) {
  #company-profile {
    padding: 1em;
  }
  #company-profile dl dt {
    font-size: 1em;
    margin-top: 1em;
  }
  #company-profile dl dd {
    margin-left: 1em;
  }
  #company-profile dl dd ul {
    margin-left: 1.5em;
  }
}

.housing__top {
  background-color: #FCFBF9;
  margin-bottom: -40px;
}

.housing__fv__img {
  width: 100%;
  display: block;
  margin: 0 auto;
}

.common__fv__text {
  position: absolute;
  margin-top: 30px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: rgba(0, 0, 0, 0.6);
  color: #fff;
  white-space: nowrap;
  text-align: center;
  padding: 20px 30px;
  font-size: 18px;
  max-width: 250px;
  box-sizing: border-box;
  line-height: 1.8;
  letter-spacing: 0.3em;
}
@media screen and (min-width: 768px) {
  .common__fv__text {
    font-size: 20px;
    line-height: 2;
    max-width: 400px;
    box-sizing: border-box;
    line-height: 2.5;
    letter-spacing: 0.5em;
  }
}
@media screen and (min-width: 900px) {
  .common__fv__text {
    font-size: 25px;
    max-width: 600px;
  }
}

.fv__subtitle {
  font-size: 12px;
  letter-spacing: 0em;
}

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

.common__text {
  margin-top: 30px;
  padding-bottom: 30px;
}

.housing__new__inner {
  background-color: #FFF9E6;
  margin-bottom: -40px;
  padding-bottom: 30px;
}
.housing__new__inner img {
  padding: 20px;
}

.common__title {
  text-align: center;
  font-size: 20px;
  color: #90c32c;
  padding-top: 30px;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .common__title {
    padding-top: 60px;
  }
}

.common__sub__lead {
  font-size: 20px;
  padding: 20px;
  text-align: center;
}

.common__sub__text {
  padding: 20px;
}

.common__sub_lead {
  text-align: center;
}

.common__works__inner {
  background-color: #FFF9E6;
  margin-bottom: 40px;
  padding-bottom: 30px;
}

.common__works {
  text-align: center;
  margin-top: 30px;
  padding-top: 30px;
  font-size: 30px;
  color: #E9A725;
}
@media screen and (min-width: 768px) {
  .common__works {
    padding-top: 60px;
  }
}

.works__list {
  display: block;
  margin: 0 auto;
}

.works__item {
  text-align: center;
  margin-bottom: 30px;
}
.works__item img {
  max-width: 100%;
  height: auto;
  display: inline-block;
  width: 650px;
}
.works__item figcaption {
  margin-top: 8px;
  font-size: 14px;
  color: #4A3636;
}

.facilities__fv__inner {
  position: relative;
  text-align: center;
}

.facilities__fv__inner img.facilities__fv__img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.facilities__shop__inner img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  width: 630px;
}

.facilities__factory__inner img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  width: 630px;
}

.facilities__farm__inner img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
  width: 630px;
}

.yess__message {
  margin-top: 30px;
  margin-bottom: 30px;
  background-color: rgba(144, 195, 44, 0.1);
  padding-top: 30px;
  padding-bottom: 30px;
}

.yess__message__top {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  text-align: center;
}

.yess__message__lead {
  max-width: 400px;
}

.yess__message__top img {
  max-width: 130px;
  height: auto;
}
@media screen and (min-width: 768px) {
  .yess__message__top img {
    max-width: 200px;
    margin: 30px;
  }
}

.yess__message__text {
  margin-top: 30px;
}

.local__vacant__inner {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.local__grave__inner {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.local__fv__inner {
  position: relative;
  text-align: center;
}

.local__fv__inner img.local__fv__img {
  display: block;
  margin: 0 auto;
  max-width: 100%;
  height: auto;
}

.local__vacant__inner img {
  display: block;
  margin: 0 auto;
}

/*--------------------------------------
  カード型_02
--------------------------------------*/
.l-wrapper_02 {
  margin: 1rem auto;
  width: 335px;
}

.card-radius_02 {
  overflow: hidden;
  border-radius: 8px;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.card_02 {
  background-color: #fff;
  box-shadow: 0 0 0px rgba(0, 0, 0, 0.16);
  color: #212121;
  text-decoration: none;
  padding-bottom: 30px;
}

.card__header_02 {
  display: flex;
  flex-wrap: wrap;
}

.card__title_02 {
  padding: 1rem 1.5rem 0;
  font-size: 1.6rem;
  order: 1;
  font-weight: bold;
  text-decoration: none;
  font-family: "Zen Maru Gothic", sans-serif;
  color: #F68E81;
  /*線の種類（実線） 太さ 色*/
  border-bottom: solid 3px #F68E81;
}

.card__thumbnail_02 {
  margin: 0;
  order: 0;
}

.card__image_02 {
  width: 50%;
  display: block;
  margin: 0 auto;
}

.card__body_02 {
  padding: 0 1.5rem;
}

.card__text_02 {
  font-size: 0.8rem;
  text-align: center;
  text-decoration: none;
}

.card__text2_02 {
  font-size: 0.8rem;
  margin-top: 0;
  margin-bottom: 1.5rem;
  font-size: "Noto Sans JP", sans-serif;
  text-align: right;
  color: #4A3636;
}

.local_card_list {
  display: block;
  width: 250px;
  color: #4A3636;
  font-family: "Noto Sans JP", sans-serif;
  margin: 0 auto;
  margin-bottom: 30px;
}

.local_card_list li::before {
  content: "✓";
  color: #4A3636;
  display: inline-block;
  width: 1em;
  margin-right: 0.5em;
}

.local_card_p {
  text-align: center;
}

.newtopics__page {
  padding: 0;
}

.newtopics_fv {
  padding-top: 60px;
  width: 500px;
  margin: 0 auto;
}

.newtopics__page__inner {
  padding-top: 40PX;
  background-color: #fde67c;
  width: 100%;
}

.newtopics__page__title {
  background-color: #fde67c;
  color: #E9A725;
}

.newtopics__page__card-wrap {
  background-color: #fde67c;
  max-width: 1024px;
}

.newtopics_page_button {
  background-color: #fde67c;
  max-width: 1024px;
  display: block;
  margin: 0 auto;
  text-align: center;
  margin-bottom: 30px;
}

.estate__title {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
}

.estate_en {
  color: #E9A725;
  font-weight: 600;
}

.estate_seach {
  text-align: center;
  font-size: 24px;
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
}

/*--------------------------------------
  タブカード
--------------------------------------*/
.tab-1 {
  display: flex;
  flex-wrap: wrap;
  max-width: 500px;
  margin: 0 auto; /* 画面中央に配置 */
  justify-content: center; /* 内部のタブも中央揃え */
}
@media screen and (min-width: 768px) {
  .tab-1 {
    max-width: 944px;
  }
}

.tab-1 > label {
  flex: 1 1;
  order: -1;
  min-width: 70px;
  padding: 0.7em 1em 0.5em;
  border-bottom: 1px solid #f0f0f0;
  background-color: #e9f0f6;
  color: #535353;
  font-size: 0.9em;
  text-align: center;
  cursor: pointer;
  font-family: "Noto Sans JP", sans-serif;
}

.tab-1 > label:hover {
  opacity: 0.8;
}

.tab-1 input {
  display: none;
}

.tab-1 > div {
  display: none;
  width: 100%;
  padding: 1.5em 1em;
  background-color: #fff;
}

/* 共通スタイル */
.tab-1 label:has(:checked) {
  background-color: #fff;
  border-style: solid;
  border-width: 4px 1px 1px;
  border-radius: 5px;
  color: #333333;
}

/* タブごとの色 */
.tab-1 .tab-land:has(:checked) {
  border-top-color: #90c32c; /* 緑 */
}

.tab-1 .tab-house:has(:checked) {
  border-top-color: #E9A725; /* オレンジ */
}

.tab-1 .tab-business:has(:checked) {
  border-top-color: #2693CE; /* 青　*/
}

.tab-1 .tab-rent:has(:checked) {
  border-top-color: #F68E81; /* ピンク */
}

/* コンテンツの表示 */
.tab-1 label:has(:checked) + div {
  display: block;
}

/* -------------------------------
  タブ切替とカード配置
--------------------------------*/
.tab-1 .tab-content {
  display: none;
  width: 100%;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  align-items: stretch; /* 高さ揃え */
  display: flex;
}

.tab-1 label:has(:checked) + .tab-content {
  display: flex;
}

/* -------------------------------
  カード
--------------------------------*/
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  margin: 2.5em 0 1em 0; /* 上下の余白を広げる（上側を大きめに） */
  padding: 1em;
  border: 1px solid #ccc;
  border-radius: 5px;
  background-color: #fff;
  flex: 1 1 100%; /* スマホ1枚 */
  max-width: 100%;
}

/* タブレット：横2枚 */
@media (min-width: 700px) and (max-width: 767px) {
  .card {
    flex: 1 1 calc((100% - 16px) / 2);
    max-width: calc((100% - 16px) / 2);
  }
}
/* PC：横3枚 */
@media (min-width: 768px) {
  .card {
    flex: 1 1 calc((100% - 32px) / 3);
    max-width: calc((100% - 32px) / 3);
  }
}
/* -------------------------------
  カード内部
--------------------------------*/
.card-tab {
  position: absolute;
  top: -30px;
  left: 0;
  width: 25%;
  text-align: center;
  padding: 0.3em 0;
  border-radius: 3px 3px 0 0;
  color: #fff;
  font-size: 0.8em;
  font-weight: 400;
  letter-spacing: 0.3em;
  font-family: "Noto Sans JP", sans-serif;
}

.card-image {
  width: 100%;
  border-radius: 5px;
  margin-bottom: 0.5em;
}

.card-title {
  text-align: center;
  font-size: 1.1em;
  margin-bottom: 0.5em;
  font-family: "Kiwi Maru", serif;
  font-weight: 500;
}

.card-list {
  list-style: none;
  padding: 0;
  margin: 0 0 0.5em 0;
  flex-grow: 1;
}
.card-list li::before {
  content: "✓";
  margin-right: 0.5em;
  color: #2589d0;
}

.card-info {
  font-size: 0.9em;
  line-height: 1.4;
  margin-top: auto;
}

/* タブごとの色 */
.card-tab.tab-land {
  background-color: #90c32c;
}

.card-tab.tab-house {
  background-color: #E9A725;
}

.card-tab.tab-business {
  background-color: #2693CE;
}

.card-tab.tab-rent {
  background-color: #F68E81;
}

.estate__content .tab-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}
.estate__content .tab-content .card {
  display: flex;
  flex-direction: column;
  background: #fff;
  border-radius: 16px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  text-decoration: none;
  color: #4A3636;
  width: 100%;
}
.estate__content .tab-content .card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 15px rgba(0, 0, 0, 0.2);
}
.estate__content .tab-content .card .card-image {
  width: 100%;
  height: auto;
  border-radius: 8px;
  margin-bottom: 10px;
}
.estate__content .tab-content .card .card-title {
  font-size: 16px;
  margin-bottom: 10px;
}
.estate__content .tab-content .card .card-list {
  margin-bottom: 10px;
}
.estate__content .tab-content .card .card-list li {
  font-size: 14px;
}
.estate__content .tab-content .card .card-info {
  font-size: 14px;
}
@media screen and (min-width: 768px) {
  .estate__content .tab-content .card {
    width: calc(50% - 10px);
  }
}
@media screen and (min-width: 900px) {
  .estate__content .tab-content .card {
    width: calc(33.333% - 13.33px);
  }
}

.tab-content {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: flex-start;
}

.card {
  flex: 1 1 calc(33.333% - 20px);
  box-sizing: border-box;
  margin-bottom: 20px;
}

@media (max-width: 1024px) {
  .card {
    flex: 1 1 calc(50% - 20px);
  }
}
@media (max-width: 768px) {
  .card {
    flex: 1 1 100%;
  }
}
.card-link {
  display: block; /* カード全体をクリック可能に */
  color: inherit; /* 文字色をカード色に */
  text-decoration: none; /* 下線を消す */
}

.card-link:hover {
  transform: translateY(-3px);
  transition: 0.3s;
}

.waiwai_icon {
  display: block;
  width: 100px;
  margin: 0 auto;
  margin-top: 30px;
}

.backnumber {
  text-align: center;
}

.newsletter {
  text-align: center;
}

.newsletter .year {
  margin-bottom: 1em;
}

.newsletter-item {
  margin: 1.5em 0;
}

.news-button {
  display: flex;
  border-radius: 10px;
  overflow: hidden;
  text-decoration: none;
  width: 335px; /* ボタン全体の幅を固定すると揃いやすい */
  height: 63px;
  margin: 0 auto; /* 中央寄せ */
}

.news-button .month {
  background-color: #90c32c; /* 緑色 */
  color: #fff;
  padding: 0.5em 0;
  width: 100px; /* 左側の幅を固定 */
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  flex-shrink: 0; /* 幅を縮めない */
}

.news-button .title {
  background-color: #fff;
  color: #4A3636;
  padding: 0.5em 1em;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1; /* 残り幅を自動で広げる */
}

.waiwai__wrap {
  background-color: #FCFBF9;
}

.back {
  font-size: 30px;
  margin-top: 30px;
  margin-bottom: 30px;
  text-align: center;
}

.year {
  font-size: 24px;
}

.news__letter {
  margin-top: 80px;
  margin-bottom: 80px;
}

.newsletter__2024 .month {
  background-color: #E9A725;
}

.newsletter__2023 .month {
  background-color: #2693CE;
}

.heading__faq__page {
  padding-top: 60px;
}

.qa-1 {
  max-width: 500px;
  margin-bottom: 7px;
  border: 1px solid #d6dde3;
  border-radius: 25px;
}

.qa-1 summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em 1em 3em;
  color: #333333;
  font-weight: 600;
  cursor: pointer;
}

.qa-1 summary::before,
.qa-1 p::before {
  position: absolute;
  left: 1em;
  font-weight: 600;
  font-size: 1.3em;
}

.qa-1 summary::before {
  color: #75bbff;
  content: "Q";
}

.qa-1 summary::after {
  transform: translateY(-25%) rotate(45deg);
  width: 7px;
  height: 7px;
  margin-left: 10px;
  border-bottom: 3px solid rgba(51, 51, 51, 0.7019607843);
  border-right: 3px solid rgba(51, 51, 51, 0.7019607843);
  content: "";
  transition: transform 0.5s;
}

.qa-1[open] summary::after {
  transform: rotate(225deg);
}

.qa-1 p {
  position: relative;
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 3em 1.5em;
  color: #333;
  transition: transform 0.5s, opacity 0.5s;
}

.qa-1[open] p {
  transform: none;
  opacity: 1;
}

.qa-1 p::before {
  color: #ff8d8d;
  line-height: 1.2;
  content: "A";
}

.faq__list__title {
  color: #90c32c;
  margin-top: 50px;
  margin-bottom: 30px;
  font-size: 24px;
  text-align: center;
}

.faq__page__img_1 {
  display: block;
  padding-top: 50px;
}

/* カード内ボタン専用 */
.card__button-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
}

.card__button-wrapper .card_button {
  width: 100%;
  max-width: 260px;
  box-sizing: border-box;
}