@charset "UTF-8";

html {
  scroll-behavior: smooth;
  font-size: 62.5%;
  overflow-x: hidden;
  overflow-y: auto;
}

body {
  line-height: 1;
  text-size-adjust: 100%;
  width: 100%;
  text-decoration: none;
  padding: 0;
  position: relative;
  overflow-wrap: break-word;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN",
    "Hiragino Sans", "BIZ UDPGothic", Meiryo, sans-serif;
}

* {
  float: none;
  position: static;
}

img {
  vertical-align: top;
  max-width: 100%;
}

li {
  list-style: none;
}

@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}

/*ここまでデフォルト。destyle.cssとともに使う。line-heightは要検討*/

body {
  font-weight: 400;
  font-style: normal;
  color: #737373;
}

p {
  font-size: clamp(
    12px,
    calc(10.814814814814815px + 0.3703703703703704vw),
    16px
  );
  line-height: 1.6;
  font-family: "Zen Maru Gothic", serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.6;
  letter-spacing: 1.26px;
  z-index: 1;
}

h2 {
  font-family: "Zen Maru Gothic", serif;

  font-size: clamp(20px, calc(16.8px + 0.8vw), 28px);
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.2px;
}

h3 {
  font-family: "Zen Maru Gothic", serif;
  font-size: clamp(18px, calc(15.6px + 0.6vw), 24px);
  font-style: normal;
  font-weight: 700;
}

a {
  font-family: "Zen Maru Gothic", serif;
}

.site-header {
  display: flex;
  padding: 0 4% 0 3%;
  justify-content: space-between;
  align-items: flex-start;
  height: 106px;
  background: #fff8ed;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  /* フェード＆スライドのアニメーション */
  transition: opacity 1s ease, transform 0.8s ease;
  /* 初期状態 */
  opacity: 1;
}

/* 隠すときのスタイル */
.site-header.hidden {
  opacity: 0;
  transform: translateY(-100%);
  pointer-events: none; /* 不要なクリックを防止 */
}

.header_nav4sp {
  display: none;
}

/* デフォルトではハンバーガーを非表示 */
.header_toggle {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 28px;
  height: 23px;
  margin-top: 14px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 20;
}
.header_toggle span {
  display: block;
  height: 3px;
  background-color: #f39800;
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}

/* ボタンが開いているとき */
.header_toggle.open span:nth-child(1) {
  transform: translateY(10px) rotate(45deg);
}
.header_toggle.open span:nth-child(2) {
  opacity: 0;
}
.header_toggle.open span:nth-child(3) {
  transform: translateY(-10px) rotate(-45deg);
}

.header_logo {
  display: flex;
  align-items: self-start;
  height: 100%;
  max-width: 26%;
}

.header_logo img {
  object-fit: contain;
  height: 84px;
}

.header_nav {
  display: flex;
  gap: 1.6em;
}

.header_nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 1.8em;
}

.header_nav a {
  color: var(--main_text, #342104);
  text-align: center;
  font-size: clamp(14px, calc(12.181px + 0.3636vw), 18px);
  font-style: normal;
  font-weight: 500;
  line-height: 150%; /* 25.5px */
  white-space: nowrap;
}

.header_nav .btn {
  border-radius: 0px 0px 20px 20px;
  display: flex;
  flex-direction: column;
  text-align: center;
  color: white;
  width: 7.2em;
  padding: 4px 0 8px;
}

.header_nav .btn img {
  width: 2.6em;
  margin: 0 auto;
}

.header_nav .btn.btn1 {
  background: #f39800;
}

.header_nav .btn.btn2 {
  background: #b8c01c;
}

.mv {
  position: relative;
  background: #fff8ed;
  margin-top: 106px;
}

.mv h2 {
  position: absolute;
  top: 50%;
  left: 24%;
  transform: translate(-50%, -50%);
  font-size: 2.8rem;
  z-index: 3;
  color: var(--main_text, #342104);
  font-style: normal;
  font-weight: 700;
  line-height: 150%; /* 60px */
  letter-spacing: 3.2px;
}

.mv .daen {
  position: absolute;
  top: 20%;
  left: 8%;
  z-index: 2;
  width: 40%;
}

.icon {
  width: 10vw;
  object-fit: contain;
}

.mv .icon {
  position: absolute;
  top: 80%;
  left: 16%;
  transform: translate(-50%, -50%);
  z-index: 1;
}

.swiper-container {
  width: 84%;
  margin-left: 16%;
  margin-bottom: -40px;
  height: 540px; /* 高さは必要に応じて調整してください */
  position: relative;
  overflow: hidden;
  background: #fff8ed;
  border-top-left-radius: 30px;
  border-bottom-left-radius: 30px;
}
/* スライド内の画像のスタイル */
.swiper-slide {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f0f0f0;
}
.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.swiper-pagination {
  position: absolute;
  top: 50%; /* 上から50%の位置に配置 */
  right: 24px !important; /* 右側に配置（適宜調整してください） */
  transform: translateY(-50%); /* 自身の高さの50%分上にずらすことで中央に */
}

.swiper-pagination-bullet-active {
  background-color: #e59818;
}

.news-section {
  position: relative;
}

.custom-shape-divider-bottom-1744085456 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1744085456 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 78px;
}

.custom-shape-divider-bottom-1744085456 .shape-fill {
  fill: #fff8ed;
}

/** For tablet devices **/
@media (min-width: 768px) and (max-width: 1023px) {
  .custom-shape-divider-bottom-1744085456 svg {
    width: calc(115% + 1.3px);
    height: 81px;
  }
}

/** For mobile devices **/
@media (max-width: 768px) {
  .custom-shape-divider-bottom-1744085456 svg {
    width: calc(115% + 1.3px);
    height: 36px;
  }
}

.news {
  display: flex;
  padding: 120px 150px 120px 179px;
  justify-content: center;
  align-items: center;
  gap: 45px;
  align-self: stretch;

  background-color: #e1e3ae;
  opacity: 1;
  background: radial-gradient(
      circle,
      transparent 20%,
      #e1e3ae 20%,
      #e1e3ae 80%,
      transparent 80%,
      transparent
    ),
    radial-gradient(
        circle,
        transparent 20%,
        #e1e3ae 20%,
        #e1e3ae 80%,
        transparent 80%,
        transparent
      )
      22.5px 22.5px,
    linear-gradient(#f3f4c9 1.8px, transparent 1.8px) 0 -0.9px,
    linear-gradient(90deg, #f3f4c9 1.8px, #e1e3ae 1.8px) -0.9px 0;
  background-size: 45px 45px, 45px 45px, 22.5px 22.5px, 22.5px 22.5px;
}

.news-inner {
  border-radius: 30px;
  background-color: #fff;
  width: 800px;
  height: 190px;
  display: flex;
  border: 3px dashed #fbc36c;
  padding: 16px 30px;
  box-shadow: 0 0 0 14px #fff;
}

.news-inner h3 {
  color: #333;
  font-size: 20px;
  text-align: center;
}

.news-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2em;
  width: 30%;
  margin-right: 1.6em;
}

.btn2news {
  margin: 0 auto;
}

.btn2news a {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  letter-spacing: 0.64px;
  border-radius: 30px;
  background: #e59818;
  display: flex;
  padding: 10px 1em;
  white-space: nowrap;
  width: fit-content;
}

.news-list {
  color: var(--main_text, #342104);
  font-family: "Zen Maru Gothic";
  font-size: 14px;
  letter-spacing: 0.56px;
  margin-right: 24px;
  width: 100%;
}

.news-list tr {
  border-bottom: dashed 1px #f39800;
}

.news-list th,
.news-list td {
  vertical-align: middle;
}

.news-list th {
  padding-right: 16px;
  font-weight: 800;
}

.midashi-section {
  padding: 2% 8%;
  position: relative;
  background: #fff8ed;
}

.midashi-ue,
.midashi-shita {
  display: flex;
  justify-content: space-between;
  margin-bottom: 64px;
}

.midashi-shita {
  position: relative;
}

.bg-pluscircle1 {
  width: 15vw;
  position: absolute;
  right: -8vw;
  top: -12vw;
}

.bg-pluscircle2 {
  width: 16vw;
  height: 16vw;
  position: absolute;
  left: 8vw;
  bottom: -12vw;
  z-index: 2;
}

.bg-pluscircle3 {
  width: 14vw;
  height: 22vw;
  position: absolute;
  right: 0;
  top: 0;
}

.bg-pluscircle4 {
  width: 28vw;
  height: 28vw;
  position: absolute;
  left: -8vw;
  bottom: -12vw;
  z-index: 2;
}

.right-page {
  width: 64%;
  display: flex;
  padding: 0px 6%;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  flex-shrink: 0;
}

.right-page .icon {
  margin-left: -20px;
  margin-top: -64px;
  width: 8vw;
}

.right-page h2 {
  color: var(--main_text, #342104);
  white-space: nowrap;
  margin-bottom: 0.4em;
}

.right-page p {
  color: var(--main_text, #342104);
}

.span-ikiki {
  color: var(--midashi_orange, #e99207);
  font-size: clamp(20px, calc(16px + 1vw), 30px);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.44px;
  padding: 0 0.2em;
}

.img-top1,
.img-top2,
.img-top3,
.img-top4,
.img-top5,
.img-top6,
.img-top7,
.img-top11,
.img-2-1,
.img-2-2,
.img-3-1,
.img-3-2,
.img-3-3,
.img-3-4,
.img-3-5,
.img-4-1,
.img-4-2,
.img-4-3,
.img-4-4,
.img-4-5 {
  position: relative;
  height: fit-content;
}

.img-top1 img,
.img-top2 img,
.img-top3 img,
.img-top4 img,
.img-top5 img,
.img-top6 img,
.img-top7 img,
.img-top11 img,
.img-2-1 img,
.img-2-2 img,
.img-3-1 img,
.img-3-2 img,
.img-3-3 img,
.img-3-4 img,
.img-3-5 img,
.img-4-1 img,
.img-4-2 img,
.img-4-3 img,
.img-4-4 img,
.img-4-5 img {
  border-radius: 25px;
  width: 100%;
}

.img-top4,
.img-top5,
.img-top6,
.img-top7 {
  width: 100%;
  height: fit-content;
}

.img-innerline {
  position: absolute;
  top: 2%;
  left: 1%;
  width: 98%;
  height: 96%;
  border-radius: 25px;
  border: 2px solid #fff;
}

.img-top1 {
  width: 40%;
}

.img-top2 {
  width: 28%;
}

.img-top3 {
  width: 32%;
  margin-top: 24px;
  z-index: 3;
}

.custom-shape-divider-bottom-1744084409 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1744084409 svg {
  position: relative;
  display: block;
  width: calc(106% + 1.3px);
  height: 115px;
}

.custom-shape-divider-bottom-1744084409 .shape-fill {
  fill: #f39800;
}

/** For tablet devices **/
@media (min-width: 768px) and (max-width: 1023px) {
  .custom-shape-divider-bottom-1744084409 svg {
    width: calc(115% + 1.3px);
    height: 81px;
  }
}

/** For mobile devices **/
@media (max-width: 768px) {
  .custom-shape-divider-bottom-1744084409 svg {
    width: calc(115% + 1.3px);
    height: 36px;
  }
}

.service-section {
  background: #f39800;
  padding: 2% 8% 6%;
  position: relative;
  margin-bottom: -1px;
}

.service-section .icon {
  position: absolute;
  top: -10%;
  right: 8%;
  width: 8.8vw;
  z-index: 4;
}

.service_wrap {
  display: flex;
  justify-content: space-between;
  margin-top: 32px;
}

.service_card {
  width: 23%;
  text-align: center;
}

.service_card2,
.service_card4 {
  margin-top: 4em;
}

.service_card p {
  color: #ffe0ac;
  text-align: center;
  font-size: clamp(12px, calc(10.4px + 0.4vw), 16px);
  font-style: normal;
  font-weight: 700;
  margin: 0.3em 0;
}

.service_card h3 {
  color: #fff;
}

.btn2service {
  display: inline-flex; /* inline-block＋Flexbox に */
  align-items: center; /* 縦方向に中央揃え */
  justify-content: center; /* 横方向も中央 */
  line-height: normal; /* 固定 line-height を解除 */
  padding: 0.5em 1em; /* 高さ・余白を調整 */
  gap: 0.4em;
  /* 以下は元のまま */
  border-radius: 50px;
  background: #fff;
  color: var(--main_text, #342104);
  font-size: 16px;
  font-weight: 400;
  box-shadow: 0 0 0 6px #fff;
  border: 2px solid #b5be00;
  width: 80%;
  margin: 1.1em auto 0;
}

.service_card1 .btn2service,
.service_card3 .btn2service {
  border: 2px solid #f39800;
}

.photo-section {
  position: relative;
}

.photo-section div {
  display: flex;
  justify-content: space-between;
  gap: 1%;
  margin-bottom: -2px;
}

.custom-shape-divider-bottom-1744092017 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom-1744092017 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 78px;
}

.custom-shape-divider-bottom-1744092017 .shape-fill {
  fill: #fff8ed;
}

/** For tablet devices **/
@media (min-width: 768px) and (max-width: 1023px) {
  .custom-shape-divider-bottom-1744092017 svg {
    width: calc(115% + 1.3px);
    height: 81px;
  }
}

/** For mobile devices **/
@media (max-width: 768px) {
  .custom-shape-divider-bottom-1744092017 svg {
    width: calc(100% + 1.3px);
    height: 35px;
  }
}

.saiyou-section {
  padding: 1% 8% 9%;
  position: relative;
  background: #fff8ed;
}
.saiyou-section .icon {
  position: absolute;
  top: 10%;
  left: 8%;
  width: 9vw;
}

.saiyou-wrap {
  display: flex;
  justify-content: space-between;
  margin: 4em auto;
}

.saiyou-left {
  width: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 16px;
  color: var(--main_text, #342104);
}

.saiyou-left p {
  font-size: clamp(13px, calc(11.4px + 0.4vw), 17px);
  line-height: 1.5;
}

.saiyou-left a {
  border-radius: 60px;
  background: #e59818;
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.8px;
  padding: 0.8em 0 0.8em 0.4em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.4em;
  margin-top: 16px;
}

.saiyou-left a svg {
  margin-top: 0.2em;
}

.saiyou-left .small {
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.52px;
}

.img-top11 {
  width: 48%;
  height: 100%;
  position: relative;
}

.img-top11 a {
  width: fit-content;
  max-width: 100%;
  position: absolute;
  right: 18px;
  bottom: 16px;
  background: #fff;
  color: var(--main_text, #342104);
  text-align: center;
  font-size: clamp(12px, calc(9.6px + 0.6vw), 18px);
  font-style: normal;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.8px;
  border-radius: 50px;
  border: 2px solid #f39800;
  box-shadow: 0 0 0 6px #fff;
  display: flex;
  align-items: center;
  margin: 0.4em auto;
  justify-content: center;
  gap: 0.6em;
  padding: 0.6em 1.6em;
  white-space: nowrap;
}

.custom-shape-divider-bottom-1744094105 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1744094105 svg {
  position: relative;
  display: block;
  width: calc(100% + 1.3px);
  height: 72px;
  transform: rotateY(180deg);
}

.custom-shape-divider-bottom-1744094105 .shape-fill {
  fill: #f3f4c9;
}

/** For tablet devices **/
@media (min-width: 768px) and (max-width: 1023px) {
  .custom-shape-divider-bottom-1744094105 svg {
    width: calc(115% + 1.3px);
    height: 81px;
  }
}

/** For mobile devices **/
@media (max-width: 768px) {
  .custom-shape-divider-bottom-1744094105 svg {
    width: calc(100% + 1.3px);
    height: 35px;
  }
}

.toiawase-section {
  background-color: #f3f4c9;
  position: relative;
  padding: 3% 0 5%;
}

.toiawase-section .icon {
  position: absolute;
  top: 52%;
  right: 8%;
  width: 14vw;
}

.toiawase-caption {
  color: #2e3003;
  text-align: center;
  width: 39em;
  margin: 24px auto;
}

.toiawase-info {
  display: flex;
  width: 70em;
  margin: 20px auto;
  padding-top: 32px;
  justify-content: space-around;
  align-items: center;
}

.toiawase-info .tel {
  color: #2e3003;
  text-align: center;
  font-family: "Poppins", sans-serif;
  font-size: 24px;
  font-weight: 600;
  line-height: 22px; /* 54px */
  display: flex;
}

.toiawase-info .tel svg {
  margin-right: 0.3em;
}

.btn2toiawase {
  border-radius: 60px;
  background: #d8e124;
  color: #2e3003;
  text-align: center;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
  width: fit-content;
  padding: 0.4em 1.2em 0.5em;
  line-height: 1;
}

.btn2toiawase svg {
  margin-right: 0.2em;
}

footer {
  display: flex;
  justify-content: space-between;
  padding: 2% 8% 4%;
  background-color: #f3f4c9;
  position: relative;
  color: #2e3003;
}

footer p,
footer ul {
  font-size: 16px;
}

.footer-left {
  width: 40%;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.footer-left img {
  width: 12em;
  margin-left: -2em;
  margin-bottom: -1em;
}

footer ul {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 1.2em;
}

.sp-only-rijicho {
  display: none;
}

.rijicho-name {
  margin-left: auto;

  color: var(--main_text, #342104);
  font-weight: 700;
  margin-top: 0.4em;
  font-size: 20px;
  line-height: 36px;
  z-index: 4;
}

.rijicho-name span {
  font-size: 24px;
  line-height: 36px;
}

.aisatsu-midashi {
  color: var(--main_text, #342104);
  font-size: 19px;
  font-weight: 700;
  margin: 0 0 0.8em;
}

.aisatsu-text {
  color: var(--main_text, #342104);
  margin-bottom: 12px;
  z-index: 4;
}

.gaiyo-section {
  padding: 4% 10%;
  position: relative;
  background: #fff8ed;
}

.gaiyo-section .midashi-ue {
  max-width: 1400px;
  margin: 0 auto 96px;
  align-items: center;
}

.gaiyo-section .right-page {
  padding-right: 0;
}

.gaiyo-section .right-page2 {
  width: 40%;
}

.gaiyo-section .img-2-2 {
  height: fit-content;
  margin: 40px auto 0;
}

.midashi {
  text-align: center;
}
.midashi p {
  font-family: "Poppins", sans-serif;
  font-size: clamp(15px, calc(13.4px + 0.4vw), 19px);
  font-weight: 600;
  line-height: 0.8;
  margin-top: 0.2em;
  letter-spacing: 0.72px;
}

.service-section .midashi {
  color: #fff;
}

.saiyou-section .midashi h2,
.toiawase-section .midashi h2 {
  color: var(--main_text, #342104);
}

.saiyou-section .midashi p,
.toiawase-section .midashi p {
  color: #f39800;
}
.custom-shape-divider-bottom-1744334556 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
}

.custom-shape-divider-bottom-1744334556 svg {
  position: relative;
  display: block;
  width: calc(105% + 1.3px);
  height: 88px;
}

.custom-shape-divider-bottom-1744334556 .shape-fill {
  fill: #fff8ed;
}

/** For tablet devices **/
@media (min-width: 768px) and (max-width: 1023px) {
  .custom-shape-divider-bottom-1744334556 svg {
    width: calc(105% + 1.3px);
    height: 81px;
  }
}

/** For mobile devices **/
@media (max-width: 769px) {
  .custom-shape-divider-bottom-1744334556 svg {
    width: calc(105% + 1.3px);
    height: 32px;
  }
}

.mv-kasou {
  position: relative;
  background: #e59818;
  margin-top: 106px;
  margin-bottom: -1px;
}

.mv-kasou h1 {
  line-height: 400px;
  white-space: nowrap;
}

.kasou_mv_img {
  width: 64%;
  margin-left: 16%;
  margin-bottom: -40px;
  position: absolute;
  top: 0;
  right: 0;
  overflow: hidden;
  border-bottom-left-radius: 30px;
}

.kasou_h1 {
  width: 36%;
  text-align: center;
  color: #fff;
  /* kasou_h1 */
  font-family: "Zen Maru Gothic";
  font-size: clamp(24px, calc(17.6px + 1.6vw), 40px);
  font-style: normal;
  font-weight: 700;
  letter-spacing: 1.6px;
}

.bg-pluscircle2-1 {
  width: 24vw !important;
  position: absolute;
  left: -9vw;
  bottom: 0;
  z-index: 2;
}

.kasou_h2 {
  align-items: center; /* 縦方向中央揃え */
  justify-content: center; /* 横方向中央揃え（text-align は不要） */
  gap: 0.5em; /* 文字とアイコンの間隔 */
  font-size: clamp(20px, calc(15.2px + 1.2vw), 32px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 1.44px;
  color: var(--midashi_orange, #e99207) !important;
}

.kasou_h2 img {
  height: 1.3em; /* 文字サイズと同じ高さ */
  width: auto;
  margin-right: 0.1em;
  margin-top: -0.1em;
  flex-shrink: 0; /* 小さく潰れないように */
}

.img-2-1 {
  width: 35%;
  height: fit-content;
}

.img-2-2 {
  width: 32vw;
}

.midashi-ue table {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  font-family: "Zen Maru Gothic";
  font-size: 18px;
  color: #342104;
  width: 100%;
}

.midashi-ue table tr {
  border-bottom: 2px solid #ffc86d;
}

.midashi-ue table th {
  display: inline-flex;
  padding: 24px 30px 24px 0px;
  align-items: center;
  white-space: nowrap;
  line-height: 1.4;
}

.midashi-ue table td {
  padding: 24px 0px;
  align-items: flex-start;
}

.custom-shape-divider-bottom-1744338277 {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  transform: rotate(180deg);
}

.custom-shape-divider-bottom-1744338277 svg {
  position: relative;
  display: block;
  width: calc(105% + 1.3px);
  height: 72px;
}

.custom-shape-divider-bottom-1744338277 .shape-fill {
  fill: #f3f4c9;
}

/** For tablet devices **/
@media (min-width: 768px) and (max-width: 1023px) {
  .custom-shape-divider-bottom-1744338277 svg {
    width: calc(115% + 1.3px);
  }
}

/** For mobile devices **/
@media (max-width: 768px) {
  .custom-shape-divider-bottom-1744338277 svg {
    width: calc(115% + 1.3px);
    height: 36px;
  }
}

.history-section {
  background: #f3f4c9;
  padding: 4% 12%;
  position: relative;
}

.history-section .kasou_h2 {
  color: #353604 !important;
}

.history-section table {
  display: flex;
  padding: 3% 8%;
  flex-direction: column;
  align-items: flex-start;
  border-radius: 30px;
  background: #fffff2;
  color: #353604;
  font-family: "Zen Maru Gothic";
  font-size: 18px;
  margin: 1.6em auto;
  max-width: 1600px;
}

.history-section table th {
  display: inline-flex;
  padding: 24px 30px 24px 0px;
  align-items: center;
  white-space: nowrap;
  line-height: 1.4;
}

.history-section table td {
  padding: 24px 0px;
  align-items: flex-start;
}

.bg-pluscircle2-2 {
  width: 14vw;
  position: absolute;
  right: 0;
  top: 24%;
  z-index: 2;
}

.bg-pluscircle2-4 {
  width: 14vw;
  position: absolute;
  right: 0;
  bottom: 10%;
  z-index: 2;
}

.interview-section {
  padding: 2% 8%;
  position: relative;
  background: #fff8ed;
}

.interview-content {
  display: flex;
  margin: 4% 0;
  gap: 2%;
}

.interview-content .left {
  width: 49%;
}

.interview-content .right {
  width: 49%;
}

.interview-content table {
  z-index: 4;
  position: relative;
}

.interview-content table tr {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  letter-spacing: 1.12px;
}
.interview-content table th {
  color: var(--main_text, #342104);

  /* interview_q */
  font-family: "Zen Maru Gothic";
  font-size: 22px;
  font-weight: 700;
  border-radius: 15px;
  background: #fbe0b3;
  width: 100%;
  padding: 10px 15px;
}

.interview-content table td {
  color: var(--main_text, #342104);
}

.interview-content table .question {
  padding: 12px 16px;
  letter-spacing: normal;
}

.interview-content table .answer {
  border-radius: 15px;
  background-color: #fff;
  padding: 16px 16px;
  margin-bottom: 20px;
  letter-spacing: normal;
}

.bg-pluscircle3-1 {
  width: 20vw;
  position: absolute;
  right: 0;
  top: 8%;
  z-index: 2;
}

.bg-pluscircle3-2 {
  width: 20vw;
  position: absolute;
  left: -2%;
  bottom: 20%;
  z-index: 2;
}

.img-3-1,
.img-3-2,
.img-3-3,
.img-3-4 {
  width: 100%;
  z-index: 4;
  height: fit-content;
}

.img-3-1,
.img-3-3 {
  margin-left: auto;
}

.img-3-2,
.img-3-4 {
  margin-right: auto;
}

.img-3-5 {
  margin: 0 auto 1em;
  z-index: 4;
  max-width: 1040px;
}

.recruit-section {
  padding: 2% 8% 8%;
  position: relative;
  background: #fff8ed;
}

.recruit-section p {
  text-align: center;
  color: var(--main_text, #342104);
  margin: 3.2em auto 1em;
}

.btn2recruit {
  display: flex;
  gap: 8px;
  white-space: nowrap;
  padding: 16px 24px 16px 32px;
  justify-content: space-around;
  align-items: center;
  border-radius: 90px;
  background: var(--midashi_orange, #e99207);
  color: #fff;
  font-size: 23px;
  font-weight: 600;
  line-height: normal;
  margin: auto;
  width: fit-content;
}

.bg-pluscircle3-3 {
  width: 20vw;
  position: absolute;
  right: 0;
  bottom: 0%;
  z-index: 2;
}

.about-nav {
  background: #fff8ed;
  padding: 2em 0 4em;
}

.about-nav ul {
  display: flex;
  justify-content: center;
  color: var(--main_text, #342104);
  text-align: center;
  font-family: "Zen Maru Gothic";
  font-size: clamp(12px, calc(9.6px + 0.6vw), 18px);
  font-weight: 400;
}

.about-nav li {
  padding: 0 1em;
}

.about-nav li + li {
  border-left: 0.5px solid;
}

.about-section {
  background: #fff8ed;
  padding: 24px 0 32px;
  position: relative;
}

#shortstay {
  padding-bottom: 54px;
}

.about-section .caption {
  text-align: center;
  margin: 24px auto 32px;
  color: var(--main_text, #342104);
  width: 64%;
  max-width: 720px;
}

.kasou_h3 {
  color: var(--main_text, #342104);
  text-align: center;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 1.2px;
}

.about-section .caption p {
  margin-bottom: 0.6em;
}

.swiper-wrapper {
  transition-timing-function: linear;
}

.about-slider {
  width: 100%;
  margin: 12px 0 40px;
}
.about-slider img {
  width: 100%;
  border-radius: 20px;
}
.about-slider .swiper-slide {
  border-radius: 20px;
}

/* 矢印ボタンのスタイルを調整 */
.swiper-button-prev,
.swiper-button-next {
  color: #e0ea1f;
}

.swiper-button-prev {
  left: 22.2%;
}

.swiper-button-next {
  right: 22.2%;
}

.about-section h3 {
  color: var(--main_text, #342104);
  text-align: center;
}

.gaiyou {
  padding: 2.4% 8%;
  display: flex;
  justify-content: center;
}

.gaiyou-left {
  width: 50%;
}

.gaiyou-right {
  width: 50%;
}

.gaiyou table {
  color: var(--main_text, #342104);
  font-family: "Zen Maru Gothic";
  font-size: 16px;
  width: 90%;
}

.gaiyou table th {
  border-bottom: 2px solid #ffc86d;
  padding: 14px 24px 14px 8px;
  white-space: nowrap;
}

.gaiyou table td {
  border-bottom: 2px solid #ffc86d;
  padding: 14px;
}

.btn2map {
  text-align: right;
  margin: 1.2em auto 0.5em;
}

.btn2map a {
  color: var(--main_text, #342104);
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%; /* 30px */
  border-radius: 30px;
  border: 2px solid #ffc86d;
  background: #fdf1dd;
  padding: 3px 8px 5px;
  line-height: 28px;
}

#supportB .icon {
  position: absolute;
  top: 2%;
  right: 10%;
  z-index: 1;
  width: 7.2vw;
}

#daycare .icon {
  position: absolute;
  left: 12%;
  top: 0;
  z-index: 1;
  width: 7.2vw;
}

.event-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2% 8%;
  position: relative;
  align-items: stretch;
  flex-wrap: wrap;
  gap: 1%;
}

.event-card {
  border-radius: 30px;
  background: #fff;
  width: 32%;
  min-width: 240px;
  margin-bottom: 24px;
}

.event-card img {
  border-radius: 20px 20px 0 0;
  aspect-ratio: 230/139;
  margin-bottom: 8px;
  width: 100%;
}

.event-card h3,
.event-card p {
  padding: 0 16px 8px;
  text-align: center;
  color: #342104;
}

#event {
  background: #f3f4c9;
}

.kikanshi-section {
  background-color: #fff8ed;
  position: relative;
  padding-bottom: 8%;
}

.kikanshi-wrapper {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 20px;
  padding: 24px 0 54px;
}

.kikanshi-card {
  width: 100%;
  max-width: 320px;

  /* 高さは自動計算でアスペクト比470:210を維持 */
  aspect-ratio: 470 / 210;

  display: flex;
  padding: 6px 15px 6px 6px;
  justify-content: center;
  align-items: center;
  gap: 15px;
  border-radius: 22.501px;
  border: 3px solid var(--line, #ffc86d);
  background: #fff;
  transition: all 0.3s;
}

.kikanshi-img {
  width: 56%;
  aspect-ratio: 229 / 190;
  border-radius: 15px;
  background-size: cover;
  background-position: center;
}

.kikanshi-card .title {
  color: var(--main_text, #342104);
  text-align: center;
  font-size: 18px;
  font-weight: 700;
}

.kikanshi-card .number {
  color: var(--main_text, #342104);
  font-size: 14px;
  letter-spacing: 0.66px;
}

.kikanshi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.news-list-section {
  background-color: #fff8ed;
  position: relative;
}

.news-list-section ul {
  padding: 24px 6% 54px;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 400px));
  grid-gap: 1em;
}

.news-list-section li {
  width: 100%;
  max-width: 340px;
  padding: 14px 14px 16px;
  gap: 15px;
  border-radius: 22.501px;
  border: 3px solid var(--line, #ffc86d);
  background: #fff;
  text-align: center;
  margin: 8px auto;
}
.news-list-section img {
  width: 100%;
  aspect-ratio: 14 / 9;
  object-fit: contain;
  border-radius: 15px;
  background: rgba(153, 205, 50, 0.13);
}

.news-list-section .date {
  color: var(--main_text, #342104);
  font-family: "Poppins", sans-serif;
  font-size: clamp(14px, calc(13.2px + 0.2vw), 16px);
  font-weight: 700;
  letter-spacing: 0.72px;
  margin: 0.6em 0 0.2em;
}

.news-list-section .title {
  color: var(--main_text, #342104);
  font-weight: 700;
  font-size: clamp(16px, calc(14.4px + 0.4vw), 20px);
  letter-spacing: 0.84px;
}

.news-list-section .date::before,
.news-post-section .date::before {
  content: "●";
  color: #b8c01c;
  margin-right: 0.2em;
}

/* ページネーション全体 */
.pagination-list {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  gap: 8px;
  padding-bottom: 64px;
}

/* 共通リンクスタイル */
.pagination-list a {
  font-weight: 700;
  display: inline-block;
  padding: 6px 12px;
  text-decoration: none;
  color: #333;
  border: 2px solid #f39800;
  background-color: #fff;
  border-radius: 4px;
  transition: background-color 0.2s, color 0.2s;
}

/* ホバー時 */
.pagination-list a:hover:not(.current) {
  background-color: #fff;
}

/* 現在ページ */
.pagination-list a.current {
  background-color: #f39800;
  color: #fff;
  border-color: #f39800;
  cursor: default;
}

/* 「前へ」「次へ」ボタンを強調 */
.pagination-list a.prev,
.pagination-list a.next {
  font-weight: bold;
}

.news-post-section {
  padding: 2% 20% 4%;
  background-color: #fff8ed;
  position: relative;
}

.news-post-section .date {
  color: var(--main_text, #342104);
  font-family: "Poppins", sans-serif;
  font-size: clamp(13px, calc(10.2px + 0.7000000000000001vw), 20px);
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.8px;
}

.news-post-section .kasou_h2 {
  color: var(--main_text, #342104) !important;
  padding: 0.5em 0 1.2em;
  line-height: 1.4;
}

.news-post-section .honbun {
  color: var(--main_text, #342104);
  margin-bottom: 80px;
}

.news-post-section .honbun p {
  margin-bottom: 0.8em;
}

.news-post-section .honbun figure {
  width: 100%;
  max-width: 900px;
}

.news-post-section .honbun img {
  width: 88%;
  height: auto;
  object-fit: contain;
  margin: 0.4em auto;
}

.back2news {
  text-align: center;
  padding-bottom: 54px;
}

.back2news a {
  padding: 4px 32px;
  color: #fff;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.72px;
  color: #fff;
  font-family: "Zen Maru Gothic";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: normal;
  letter-spacing: 0.72px;
  border-radius: 30px;
  background: var(--midashi_orange, #e99207);
  border: 2px solid #fff;
  box-shadow: 0 0 0 6px #e99207;
}

.sp-only {
  display: none;
}

/*動きのある要素*/
/* 初期状態（画面外） */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px); /* 少し下に位置 */
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}

/* スクロール時に適用されるクラス */
.animate-visible {
  opacity: 1;
  transform: translateY(0); /* 元の位置に戻す */
}

/* 時差で表示させるための遅延 */
.service_card2 {
  transition-delay: 0.3s;
}
.service_card3 {
  transition-delay: 0.6s;
}
.service_card4 {
  transition-delay: 0.9s;
}

.midashi p {
  display: flex;
  justify-content: center;
  align-items: center;
}

.maru {
  font-size: 10px;
  margin-right: 0.6em;
  margin-top: 0.3em;
}

.footer-right {
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: flex-end;
}

/* ボタン全体の外枠指定 */
.snsbtniti {
  display: flex;
  justify-content: flex-end;
  gap: 24px;
  margin: 16px 0 0 auto; /* ボタンを中央へ */
  padding: 0 !important;
  list-style-type: none !important;
}

/* ボタン全体 */
.flowbtn {
  font-family: "Noto Sans Japaneses", sans-serif; /* フォント指定 */
  position: relative;
  display: inline-block;
  width: 61px; /* 背景横幅 */
  height: 61px; /* 背景高さ */
  border-radius: 50%; /* 丸くする */
  color: #fff; /* ボタン内カラー */
  transition: 0.5s;
  text-decoration: none;
  box-shadow: 0 1px 2px #999;
}

.flowbtn i {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

/* ボタンマウスホバー時少し浮き上がる */
.flowbtn:hover {
  -webkit-transform: translateY(5px);
  -ms-transform: translateY(5px);
  transform: translateY(5px);
  text-decoration: none;
  cursor: pointer;
}

/* インスタ・Amazonのアイコンを少し大きく */
.flowbtn i.fa-brands.fa-instagram {
  font-size: 44px !important;
}

/* Instagram紫グラデ背景 */
.my_instagram1 {
  background: linear-gradient(
    45deg,
    rgba(254, 212, 117, 1) 0%,
    rgba(229, 61, 93, 1) 50%,
    rgba(194, 49, 134, 1) 70%,
    rgba(156, 56, 187, 1) 100%
  );
}

/* Facebook背景 */
.my_facebook1 {
  background: white;
}

.my_facebook1 i.fa-brands.fa-facebook {
  font-size: 62px;
  color: #1877f2;
}

/* スマホサイズ（例：768px以下）で切り替え */
@media (max-width: 767px) {
  .sp-only {
    display: initial;
  }

  .pc-only {
    display: none;
  }

  .pc-only-rijicho {
    display: none;
  }

  .maru {
    font-size: 7px;
    margin-right: 0.6em;
    margin-top: 0.3em;
  }

  .site-header {
    height: 64px;
    padding: 0 3%;
  }

  .header_logo img {
    height: 50px;
    padding: 6px 0;
  }

  .header_nav {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background: #fff8ed;
    opacity: 0;
    transform: translateY(-10px);
    visibility: hidden;
    transition: opacity 0.4s ease, transform 0.4s ease, visibility 0.4s; /* visibility は遅延制御用 */
    z-index: 10;
  }
  /* “open”クラスで表示 */
  .header_nav.open {
    opacity: 0.95;
    transform: translateY(0);
    visibility: visible;
  }

  .header_toggle {
    display: flex;
  }
  .header_nav2 {
    display: none !important;
  }

  .header_nav ul {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 70%;
    margin: 0;
    padding: 15% 0;
    width: 100%;
  }

  .header_nav li + li {
    margin-top: 10px;
  }

  .header_nav a {
    font-size: 24px;
    font-weight: 700;
    display: inline-block;
    width: 90%;
    margin: 0 5%;
    white-space: nowrap;
  }

  .header_nav a::after {
    font-size: 24px;
    font-family: "Font Awesome 6 Free";
    content: "\f0da";
    font-weight: 900; /*←コレが必要！*/
    margin: auto 0;
    position: absolute;
    right: 20%;
  }

  /* ハンバーガーを表示 */
  .header_toggle {
    display: flex;
  }

  .header_nav4sp {
    display: flex;
    gap: 0.8em;
  }

  .header_nav4sp .btn {
    border-radius: 0px 0px 10px 10px;
    display: flex;
    flex-direction: column;
    text-align: center;
    color: white;
    width: 7.6em;
    padding: 4px 0 8px;
    font-size: 9px;
  }

  .header_nav4sp .btn img {
    width: 3.2em;
    margin: 0 auto 0.4em;
  }

  .header_nav4sp .btn.btn1 {
    background: #f39800;
  }

  .header_nav4sp .btn.btn2 {
    background: #b8c01c;
  }

  .sp-only-header {
    display: flex;
    justify-content: center;
    gap: 1em;
  }

  .swiper-container {
    width: 94%;
    margin-left: 6%;
    height: 280px;
    margin-bottom: -20px;
  }

  .mv {
    margin-top: 64px;
  }

  .mv h2 {
    left: 50%;
    top: 116%;
    font-size: 2.2rem;
    width: 100%;
    text-align: center;
    line-height: 1.3;
  }

  .mv .icon {
    top: 126%;
    left: 13%;
    width: 14vw;
  }

  .right-page .icon {
    position: absolute;
    margin: 0;
    top: -84%;
    right: 6%;
    width: 10vw;
  }

  .news {
    padding: 140px 24px 80px;
  }

  .news-inner {
    box-shadow: 0 0 0 8px white;
    display: block;
    height: auto;
    padding: 14px 22px 24px;
  }

  .news-inner h3 {
    text-align: center;
  }

  .news-left {
    width: 100%;
    gap: 0.8em;
  }

  .news-list {
    margin: 12px auto 0;
  }

  .news-list tr {
    display: flex;
    flex-direction: column;
  }

  .news-list th {
    margin: 0.6em 0;
  }

  .news-list td {
    margin-bottom: 0.6em;
  }

  .midashi-section {
    padding: 32px 4%;
  }

  .midashi-ue {
    display: block;
    margin-bottom: 20px;
  }

  .img-top1 {
    width: 72%;
  }

  .right-page {
    width: 100%;
    display: block;
  }

  .right-page h2 {
    text-align: center;
    margin: 0.8em 0;
  }

  .midashi-shita {
    justify-content: space-around;
    flex-wrap: wrap;
    margin-left: 2em;
  }

  .midashi-shita .icon {
    width: 16%;
  }
  .img-top2 {
    width: 48%;
  }
  .img-top3 {
    width: 74%;
    margin-right: 54px;
    margin-top: 32px;
  }

  .service-section {
    padding: 2% 6% 24%;
  }

  .service_wrap {
    flex-direction: column;
    align-items: center;
    gap: 32px;
  }

  .service_card {
    width: 88%;
  }

  .service_card2,
  .service_card4 {
    margin-top: 0;
  }

  .saiyou-section {
    padding: 2% 6% 16%;
  }

  .saiyou-wrap {
    flex-direction: column;
    align-items: center;
    margin: 1em auto;
  }

  .saiyou-left {
    width: 100%;
    display: block;
    text-align: center;
  }

  .saiyou-left a {
    width: 80%;
    margin: 1.4em 10% 0;
  }

  .toiawase-caption {
    width: 80%;
  }

  .toiawase-info {
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .bg-pluscircle1 {
    right: -4vw;
    width: 24vw;
    top: -88vw;
  }

  .bg-pluscircle2 {
    width: 40vw;
    height: 40vw;
    left: -16vw;
    bottom: -32vw;
  }

  .service-section .icon {
    top: -4%;
    width: 10vw;
  }

  .img-top11 {
    width: 100%;
    margin-top: 20%;
  }

  .img-top11 a {
    right: 50%;
    transform: translateX(50%);
    bottom: 108%;
    max-width: none;
  }

  .toiawase-caption {
    text-align: left;
  }

  .toiawase-section .icon {
    top: 100%;
    left: 8%;
    width: 22vw;
    z-index: 2;
  }

  .toiawase-info .tel {
    font-size: 24px;
  }

  .btn2toiawase {
    margin-top: 0.4em;
    font-size: 22px;
    padding: 0.4em 1.2em;
  }

  footer {
    padding: 14% 8% 8%;
  }

  footer ul {
    flex-direction: column;
    align-items: right;
    justify-content: center;
    gap: 0.8em;
    width: 40%;
  }
  .footer-left {
    width: 60%;
  }

  .footer-left div {
    display: flex;
    align-items: center;
  }

  .footer-left div p {
    font-weight: 600;
    white-space: nowrap;
    justify-content: left;
    margin-left: -0.8em;
  }

  .footer-right {
    width: 100%;
    display: flex;
    align-items: end;
    flex-direction: column;
  }

  .snsbtniti {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    gap: 24px;
    margin: 8px 16px 0 auto; /* ボタンを中央へ */
    padding: 0 !important;
    list-style-type: none !important;
  }

  /* ボタン全体 */
  .flowbtn {
    position: relative;
    display: inline-block;
    width: 44px; /* 背景横幅 */
    height: 44px; /* 背景高さ */
    border-radius: 50%; /* 丸くする */
    color: #fff; /* ボタン内カラー */
    transition: 0.5s;
    text-decoration: none;
    box-shadow: 0 1px 2px #999;
  }

  /* インスタ・Amazonのアイコンを少し大きく */
  .flowbtn i.fa-brands.fa-instagram {
    font-size: 32px !important;
  }

  .my_facebook1 i.fa-brands.fa-facebook {
    font-size: 45px;
  }

  .mv-kasou {
    margin-top: 64px;
  }

  .mv-kasou-inner {
    display: flex;
    flex-direction: column-reverse;
  }

  .kasou_mv_img {
    position: inherit;
    width: 96%;
    margin-left: 4%;
    margin-bottom: 16px;
  }

  .mv-kasou h1 {
    width: 100%;
    line-height: 1.5;
  }

  .sp-only-saiyou-midashi {
    background-color: #fff8ed;
  }

  .sp-only-saiyou-midashi ul {
    background-color: #fff8ed;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.2em;
    padding: 24px 0;
  }

  .sp-only-saiyou-midashi li a {
    display: flex;
    justify-content: space-around;
    align-items: center;
    width: 320px;
    max-width: 80%;
    margin: 0 auto;
    height: 105px;
    flex-shrink: 0;
    border-radius: 15px;
    border: 7px solid #fbe0b3;
    background: #fff9ef;
  }

  .sp-only-saiyou-midashi .p1 {
    color: #fff;
    font-size: 11px;
    font-weight: 700;
    line-height: 150%; /* 16.875px */
    border-radius: 20px;
    background: #79541a;
    padding: 0.2em 0.8em;
    width: fit-content;
    flex-shrink: 0;
    text-align: left;
    margin-bottom: 0.2em;
  }

  .sp-only-saiyou-midashi .p2 {
    color: var(--main_text, #342104);
    font-size: 15px;
    font-style: normal;
    font-weight: 700;
    line-height: 1.4;
  }

  .sp-only-saiyou-midashi img {
    width: 70px;
    height: 70px;
    border-radius: 9999px;
  }

  .interview-section {
    padding: 16px 8% 24px;
  }

  .interview-content {
    flex-direction: column-reverse;
    margin-top: 0;
  }

  .interview-content .left {
    width: 100%;
    margin-bottom: 0;
  }

  .interview-content .right {
    width: 100%;
    margin-bottom: 0;
  }

  .interview-content table th {
    font-size: 20px;
    margin-bottom: 16px;
  }

  .interview-content table .answer {
    margin-bottom: 16px;
  }

  .interview-content table .question {
    padding: 0 14px 16px;
  }

  .img-3-1,
  .img-3-3 {
    margin: 24px auto;
  }

  #interview2 {
    margin-top: 48px;
  }

  .recruit-section {
    padding: 0 8% 16%;
  }

  .recruit-section p {
    margin-top: 0;
  }

  .btn2recruit {
    width: 72%;
    margin: 0 auto;
    padding: 14px 24px;
    font-size: 16px;
  }

  .btn2recruit img {
    margin: 0 auto;
  }

  .about-nav {
    padding-bottom: 1em;
  }

  .about-nav ul {
    flex-wrap: wrap;
    max-width: 400px;
    margin: 0 auto;
  }

  .about-nav ul li {
    margin-bottom: 0.8em;
  }

  .about-nav li:nth-child(4) {
    border-left: none;
  }

  .about-section .caption {
    width: 100%;
  }

  .about-section .caption p {
    width: 80%;
    margin: 0 10%;
    text-align: left;
  }

  .about-slider .swiper-slide {
    background: #fff8ed;
  }

  .about-slider img {
    width: 80%;
    border-radius: 20px;
  }

  .swiper-button-next {
    right: 8px;
  }

  .swiper-button-prev {
    left: 8px;
  }

  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 2.4rem;
  }

  .gaiyou {
    flex-direction: column;
  }

  .gaiyou-left {
    width: 100%;
    max-width: 440px;
    margin: 0 auto 2.4em;
  }

  .gaiyou-left .kasou_h2 {
    text-align: center;
    margin-bottom: 1em;
  }

  .gaiyou-right {
    width: 100%;
  }

  .gaiyou table {
    width: 100%;
  }

  .gaiyou table th {
    padding-right: 14px;
  }

  .gaiyo-section {
    padding: 4% 8%;
  }

  .gaiyo-section .right-page {
    padding: 0 4%;
  }

  .gaiyo-section .midashi-ue {
    display: flex;
    flex-direction: column;
    margin-bottom: 48px;
  }

  .img-2-1 {
    width: 80%;
    max-width: 360px;
    margin: 0 auto;
    margin-bottom: 1em;
  }

  .midashi-ue table {
    font-size: 14px;
  }

  .midashi-ue table th {
    padding: 12px 4px 8px 4px;
    line-height: 1.4;
  }

  .midashi-ue table td {
    padding: 12px 4px 8px 4px;
  }

  .gaiyo-section .right-page2 {
    width: 100%;
  }
  .gaiyo-section .img-2-2 {
    width: 80%;
    margin: 20px auto;
  }

  .history-section {
    padding: 4% 8%;
  }

  .history-section table {
    margin: 24px 0;
    font-size: 14px;
  }

  .history-section table tr {
    display: flex;

    flex-direction: column;
  }

  .history-section table th {
    padding: 8px;
    justify-content: center;
  }

  .history-section table td {
    padding: 0 8px 16px;
  }

  .bg-pluscircle2-4 {
    bottom: -20px;
    width: 20vw;
  }

  .kikanshi-section p {
    width: 80%;
    margin: 0 10%;
  }
  .kikanshi-wrapper {
    padding: 16px 24px;
  }

  .news-post-section {
    padding: 2% 12% 4%;
  }

  .news-post-section .date {
    text-align: center;
  }

  .news-post-section .kasou_h2 {
    text-align: center;
  }

  .news-post-section .honbun img {
    width: 100%;
  }

  .character {
    width: 32px;
  }

  .bg-pluscircle4 {
    width: 40vw;
    height: 40vw;
    left: -8vw;
    bottom: -28vw;
  }

  /* 時差で表示させるための遅延 */
  .service_card2 {
    transition-delay: 0s;
  }
  .service_card3 {
    transition-delay: 0s;
  }
  .service_card4 {
    transition-delay: 0s;
  }

  .sp-only-saiyou-midashi li:first-child {
    transition-delay: 0.16s;
  }

  .sp-only-saiyou-midashi li:nth-child(2) {
    transition-delay: 0.48s;
  }

  .rijicho-name {
    line-height: 24px;
    text-align: right;
    margin-top: 2em;
    font-size: 12px;
  }

  .rijicho-name span {
    font-size: 16px;
    line-height: 24px;
  }

  .aisatsu-midashi {
    line-height: normal;
    text-align: center;
  }

  .sp-only-rijicho {
    display: flex;
  }
}

@media (max-width: 440px) {
  .mv-kasou {
    height: calc(138vw * 0.5625); /* 16:9 アスペクト比 */
    max-height: 300px;
  }
}

@media (min-width: 440px) and (max-width: 767px) {
  .mv-kasou {
    height: calc(120vw * 0.5625); /* 16:9 アスペクト比 */
  }
}

@media (min-width: 768px) and (max-width: 1080px) {
  .mv-kasou {
    height: calc(80vw * 0.5625); /* 16:9 アスペクト比 */
    max-height: 473px;
  }
}

@media (min-width: 1080px) and (max-width: 1440px) {
  .mv-kasou {
    height: calc(78vw * 0.5625); /* 16:9 アスペクト比 */
    max-height: 583px;
  }
}

@media (min-width: 1440px) {
  .mv-kasou {
    height: calc(72vw * 0.5625); /* 16:9 アスペクト比 */
  }
}
