@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "shinryu", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.header {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  width: 100%;
  height: 112px;
  background-color: white;
}
@media screen and (max-width: 768px) {
  .header {
    height: 82px;
  }
}

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

.header__logo {
  width: 160px;
  height: 55px;
}
@media screen and (max-width: 1024px) {
  .header__logo {
    width: 130px;
    height: 30px;
  }
}

.header__nav {
  height: inherit;
}

.header__lists {
  display: flex;
  align-items: center;
  height: inherit;
}

.header__item {
  height: inherit;
  margin-right: 55px;
  position: relative;
}
@media screen and (max-width: 1200px) {
  .header__item {
    margin-right: 30px;
  }
}
@media screen and (max-width: 1024px) {
  .header__item {
    margin-right: 12px;
  }
}

.header__item-tel,
.header__item-toiawase {
  height: inherit;
}

.header__link,
.header__link-toiawase,
.header__link-tel {
  font-size: 16px;
  font-weight: 500;
  height: inherit;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #4E8981;
  font-family: "shippori-mincho", sans-serif;
}
@media screen and (max-width: 1200px) {
  .header__link,
.header__link-toiawase,
.header__link-tel {
    font-size: 13px;
  }
}
@media screen and (max-width: 1024px) {
  .header__link,
.header__link-toiawase,
.header__link-tel {
    font-size: 12px;
  }
}

.header__link-toiawase {
  background-color: #0E3F39;
  color: white;
  padding: 0 30px;
}
@media screen and (max-width: 1024px) {
  .header__link-toiawase {
    padding: 0 15px;
  }
}

.header__link-tel {
  background-color: #126F62;
  color: white;
  text-align: center;
  font-family: "shippori-mincho", sans-serif;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
  font-size: 23px;
}
@media screen and (max-width: 1200px) {
  .header__link-tel {
    font-size: 18px;
  }
}
@media screen and (max-width: 1024px) {
  .header__link-tel {
    font-size: 16px;
    padding: 0 13px;
  }
}

.header__link-teltext {
  font-size: 12px;
}
@media screen and (max-width: 1200px) {
  .header__link-teltext {
    font-size: 9px;
  }
}
@media screen and (max-width: 1024px) {
  .header__link-teltext {
    font-size: 8px;
  }
}

.header__link-icon {
  margin-right: 20px;
  /* テキストとの間にスペースを追加 */
  font-size: 16px;
  /* アイコンのサイズを調整 */
  color: #4E8981;
  /* アイコンの色を設定 */
}
@media screen and (max-width: 1200px) {
  .header__link-icon {
    margin-right: 15px;
    font-size: 14px;
  }
}
@media screen and (max-width: 1024px) {
  .header__link-icon {
    margin-right: 12px;
    font-size: 12px;
  }
}

.hamburger {
  position: fixed;
  z-index: 9999;
  top: 30px;
  right: 15px;
  width: 25px;
  height: 16px;
  cursor: pointer;
}

.hamburger span {
  background-color: #4A4A4A;
  width: 25px;
  height: 2px;
  position: absolute;
  top: 30px;
  right: 15px;
  display: inline-block;
  transition: 0.3s transform, 0.3s background-color;
}

.hamburger span:first-child {
  top: 0;
}

.hamburger span:nth-child(2) {
  top: 8px;
}

.hamburger span:nth-child(3) {
  top: 16px;
}

.hamburger.is-active span:first-child {
  transform: rotate(-45deg);
  top: 10px;
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
  transform: rotate(45deg);
  top: 10px;
}

.drawer-menu {
  position: absolute;
  z-index: 5000;
  top: 0;
  left: 0;
  display: none;
  width: 100%;
  height: 100vh;
  background-color: #126F62;
}

.drawer-menu__inner {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: inherit;
  width: 100%;
}

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

.drawer-menu__item {
  display: inline-block;
  padding: 15px 72px;
}

.drawer-menu__item:not(:first-child) {
  margin-top: 25px;
}

.drawer-menu__link {
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.05em;
  display: inline-block;
  width: 200px;
  text-align: center;
  padding-bottom: 25px;
  color: white;
  border-bottom: 1px solid white;
}
.drawer-menu__link:hover {
  color: #4A4A4A;
}

.drawer-menu__link.drawer-menu__link--contact {
  padding: 14px 14px;
  transition: 0.3s background-color;
  background-color: white;
  border: none;
  color: #4A4A4A;
}
.drawer-menu__link.drawer-menu__link--contact:hover {
  background-color: #0bba7a;
  opacity: 1;
  color: white;
}

.mv {
  width: 100%;
}

.mv-image {
  width: 100vw;
  background-image: url(../images/top/top-mv.webp);
  background-position: center;
  background-size: cover;
  aspect-ratio: 1600/592;
  margin-top: 112px;
}
@media screen and (max-width: 768px) {
  .mv-image {
    height: 100vh;
  }
}

.mv-image-mask {
  background-color: rgba(5, 35, 28, 0.6);
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .mv-image-mask {
    background-color: rgba(5, 35, 28, 0.4);
  }
}

.mv__text {
  display: flex;
  justify-content: left;
  align-items: center;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .mv__text {
    justify-content: center;
  }
}

.mv-text {
  font-size: 48px;
  letter-spacing: 0.05em;
  font-weight: 300;
  color: white;
  line-height: 1.75;
  font-family: "shinryu", sans-serif;
  margin-left: 100px;
}
@media screen and (max-width: 1024px) {
  .mv-text {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .mv-text {
    margin-left: 0;
  }
}
@media screen and (max-width: 375px) {
  .mv-text {
    font-size: 26px;
  }
}

.tousyanituite {
  padding: 110px 0;
}
@media screen and (max-width: 375px) {
  .tousyanituite {
    padding: 60px 0;
  }
}

.tousya__title {
  padding-bottom: 84px;
}
@media screen and (max-width: 375px) {
  .tousya__title {
    padding-bottom: 40px;
  }
}

.tousya__container {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .tousya__container {
    flex-direction: column;
  }
}

.tousya__wrapper {
  background-image: url(../images/top/Frame\ 33.webp);
  width: 70%;
  padding: 110px;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .tousya__wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .tousya__wrapper {
    padding: 40px;
  }
}

.tousya-text {
  color: white;
  font-family: "shippori-mincho", sans-serif;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: 0.05em;
}

.tousya-texts :not(:first-child) {
  padding-top: 20px;
}

.tousya__btn {
  margin: 50px 0 0 365px;
}
@media screen and (max-width: 1024px) {
  .tousya__btn {
    margin: 20px 0 0 0;
  }
}

.tousya__image {
  position: absolute;
  left: 50%;
  width: 45%;
  height: auto;
}
@media screen and (max-width: 1200px) {
  .tousya__image {
    left: 58%;
    width: 42%;
  }
}
@media screen and (max-width: 1024px) {
  .tousya__image {
    width: 100%;
    position: static;
  }
}

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

.swiper-slide {
  max-width: 660px;
  width: 100%;
  height: auto;
  aspect-ratio: 660/440;
}

.swiper-slide img {
  width: 100%;
  height: 387px;
  -o-object-fit: cover;
     object-fit: cover;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

/* スライドの動き等速 */
.swiper-wrapper {
  transition-timing-function: linear !important;
}

.zigyounaiyou {
  background-image: url(../images/top/top-zigyounaiyou-bg.webp);
}

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

.zigyounaiyou__title {
  padding-top: 130px;
}
@media screen and (max-width: 768px) {
  .zigyounaiyou__title {
    padding-top: 60px;
  }
}

.zigyounaiyou-text {
  padding-top: 65px;
  color: #0E3F39;
  font-family: "shippori-mincho", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.73;
  font-size: 16px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .zigyounaiyou-text {
    padding-top: 35px;
  }
}

.zigyou__container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 50px;
  padding: 130px 100px 0 100px;
}
@media screen and (max-width: 1024px) {
  .zigyou__container {
    display: flex;
    flex-direction: column;
  }
}
@media screen and (max-width: 768px) {
  .zigyou__container {
    padding: 60px 10px 0 10px;
  }
}
@media screen and (max-width: 375px) {
  .zigyou__container {
    padding: 15px 0px 0 0px;
  }
}

.zigyou__wrapper {
  background-color: white;
  display: flex;
  /* Flexboxを使用 */
  flex-wrap: wrap;
  /* 要素が折り返すように設定 */
  justify-content: space-between;
  /* 要素間のスペースを均等に */
  align-items: stretch;
  /* 要素の高さを揃える */
  width: 100%;
  /* 幅を100%に設定 */
}
@media screen and (max-width: 1024px) {
  .zigyou__wrapper {
    flex-direction: column;
  }
}

.zigyou-point {
  background-color: #0E3F39;
  width: 35%;
  height: 66px;
}

.zigyou__text {
  padding-top: 15px;
}

.zigyou-point-text {
  color: white;
  letter-spacing: 0.05em;
  font-size: 18px;
  font-family: "shippori-mincho", sans-serif;
  height: 60px;
  display: flex;
  align-items: center;
  padding-left: 15px;
}

.zigyou-text {
  font-size: 14px;
  font-family: "shippori-mincho", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.3;
  color: #4A4A4A;
  padding: 5px 30px 5px 30px;
  flex: 1;
  /* 各アイテムを均等に配置 */
}
@media screen and (max-width: 768px) {
  .zigyou-text {
    padding: 5px 10px 5px 10px;
  }
}

.zigyou__image {
  padding-top: 15px;
  flex: 1;
}

.zigyou-img {
  width: 100%;
  height: 100%;
}

.zigyou-bottom {
  background-color: white;
  width: 85%;
  padding: 30px 0;
  margin: 50px 0 126px 0;
}
@media screen and (max-width: 1024px) {
  .zigyou-bottom {
    width: 79%;
  }
}
@media screen and (max-width: 768px) {
  .zigyou-bottom {
    width: 100%;
    margin: 30px 0 60px 0;
  }
}

.zigyou-bottom-title {
  font-size: 18px;
  color: #0E3F39;
  letter-spacing: 0.05em;
  font-family: "shippori-mincho", sans-serif;
  text-align: center;
  padding-bottom: 13px;
}

.zigyou-bottom-text {
  font-size: 14px;
  color: #0E3F39;
  letter-spacing: 0.05em;
  font-family: "shippori-mincho", sans-serif;
  text-align: center;
}

.syanaisetubi__inner {
  position: relative;
}

.setubi-img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (max-width: 768px) {
  .setubi-img {
    height: 60vh;
  }
}

.setubi__wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
@media screen and (max-width: 768px) {
  .setubi__wrapper {
    padding: 0 20px;
  }
}

.setubi-title {
  font-family: "shinryu", sans-serif;
  font-size: 52px;
  color: white;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .setubi-title {
    font-size: 40px;
  }
}

.setubi-text {
  font-size: 16px;
  color: white;
  font-family: "shippori-mincho", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.5;
  text-align: center;
  padding: 70px 0 40px 0;
}
@media screen and (max-width: 1024px) {
  .setubi-text {
    padding: 35px 0 20px 0;
  }
}
@media screen and (max-width: 1024px) {
  .setubi-text {
    font-size: 14px;
  }
}

.setubi-botan {
  text-align: center;
  padding-top: 30px;
}

.zissekiitiran {
  padding: 92px 0 74px 0;
}
@media screen and (max-width: 500px) {
  .zissekiitiran {
    padding: 45px 0 40px 0;
  }
}

@media screen and (max-width: 1024px) {
  .zissekiitiran__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}

.zisseki__text {
  padding: 80px 0 80px 0;
  font-size: 16px;
  font-family: "shippori-mincho", sans-serif;
  letter-spacing: 0.05em;
  line-height: 1.5;
  color: #0E3F39;
  text-align: center;
}
@media screen and (max-width: 500px) {
  .zisseki__text {
    padding: 30px 0 0 0;
  }
}

.zisseki__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  padding: 0 135px;
}
@media screen and (max-width: 1200px) {
  .zisseki__items {
    padding: 0 30px;
  }
}
@media screen and (max-width: 1024px) {
  .zisseki__items {
    width: 90%;
  }
}
@media screen and (max-width: 1024px) {
  .zisseki__items {
    padding: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    grid-column-gap: 20px;
    grid-row-gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .zisseki__items {
    display: flex;
    flex-direction: column;
    width: 100%;
  }
}

.zisseki-item {
  position: relative;
  max-width: 350px;
  width: 100%;
  height: auto;
}
@media screen and (max-width: 375px) {
  .zisseki-item {
    padding-bottom: 20px;
  }
}

.zisseki-item-link {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.zisseki__image {
  width: 100%;
  height: auto;
  aspect-ratio: 350/197;
}

.zisseki-img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.zisseki-pointo {
  width: 50%;
  height: 55px;
  display: flex;
  align-items: center;
  background-color: #0E3F39;
  position: absolute;
  top: 65%;
  left: 0;
}
@media screen and (max-width: 1200px) {
  .zisseki-pointo {
    height: 50px;
  }
}
@media screen and (max-width: 768px) {
  .zisseki-pointo {
    width: 27%;
    top: 0;
  }
}

.zisseki-point-text {
  font-size: 18px;
  letter-spacing: 0.05em;
  color: white;
  padding-left: 10px;
  font-family: "shinryu", sans-serif;
  font-family: "shippori-mincho", sans-serif;
}

.zisseki-text {
  width: 100%;
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #4A4A4A;
  font-family: "zen-kaku-gothic-new", sans-serif;
  padding-top: 40px;
}
@media screen and (max-width: 768px) {
  .zisseki-text {
    padding-top: 25px;
  }
}

.zisseki__botan {
  display: flex;
  justify-content: flex-end;
  margin-right: 140px;
  padding-top: 30px;
}
@media screen and (max-width: 1200px) {
  .zisseki__botan {
    margin-right: 40px;
  }
}
@media screen and (max-width: 1024px) {
  .zisseki__botan {
    padding-top: 30px;
    margin-right: 0;
  }
}

.zisseki-btn {
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 300;
  color: #0E3F39;
  font-family: "shippori-mincho", sans-serif;
  border-bottom: 1px solid #0E3F39;
  cursor: pointer;
  text-align: center;
  padding: 10px;
  display: inline-block;
  transition: all 0.3s ease;
}

.zisseki__botan2 {
  display: flex;
  justify-content: center;
  padding-top: 30px;
}
@media screen and (max-width: 1024px) {
  .zisseki__botan2 {
    padding-top: 50px;
  }
}
@media screen and (max-width: 768px) {
  .zisseki__botan2 {
    padding-top: 30px;
  }
}

.zisseki-btn2 {
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 300;
  color: #0E3F39;
  font-family: "shippori-mincho", sans-serif;
  border-bottom: 1px solid #0E3F39;
  cursor: pointer;
  text-align: center;
  padding: 10px;
  display: inline-block;
  transition: all 0.3s ease;
}

.toiawase {
  background-image: url(../images/top/top-toiawase.webp);
  background-size: cover;
  background-repeat: no-repeat;
  padding-bottom: 100px;
  background-position: center;
}
@media screen and (max-width: 768px) {
  .toiawase {
    padding-bottom: 50px;
  }
}

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

.toiawase__title {
  padding: 90px 0 53px 0;
  font-family: "shinryu", sans-serif;
  font-size: 52px;
  color: white;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .toiawase__title {
    font-size: 40px;
    padding: 45px 0 30px 0;
  }
}

.toiawase__text {
  font-family: "shippori-mincho", sans-serif;
  font-size: 16px;
  color: white;
  letter-spacing: 0.05em;
  line-height: 1.7;
  text-align: center;
  padding-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .toiawase__text {
    padding-bottom: 70px;
    padding-bottom: 50px;
  }
}

.toiawase__botan {
  display: flex;
  justify-content: center;
  height: 112px;
}
@media screen and (max-width: 1024px) {
  .toiawase__botan {
    height: 90px;
  }
}
@media screen and (max-width: 768px) {
  .toiawase__botan {
    height: 70px;
  }
}

.toiawase-btn {
  font-size: 14px;
  height: 100%;
  letter-spacing: 0.05em;
  font-weight: 300;
  color: white;
  font-family: "shippori-mincho", sans-serif;
  border: 1px solid white;
  cursor: pointer;
  padding: 20px;
  width: 46%;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .toiawase-btn {
    width: 81%;
  }
}

.toiawase-btb-text {
  padding-left: 66%;
}
@media screen and (max-width: 768px) {
  .toiawase-btb-text {
    padding-left: 60%;
  }
}
@media screen and (max-width: 375px) {
  .toiawase-btb-text {
    padding-left: 52%;
  }
}

.bottom {
  background-image: url(../images/top/Frame\ 33.webp);
  padding: 65px 0 50px 0;
}

.bottom__wrapper {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .bottom__wrapper {
    flex-direction: column;
  }
}

.bottom__zyuusyo,
.bottom__tel,
.bottom-tel {
  font-size: 22px;
  font-family: "shippori-mincho-b1", sans-serif;
  color: white;
  letter-spacing: 0.05em;
}

.bottom__zyuusyo {
  padding-top: 30px;
}

.bottom__tel {
  padding-top: 25px;
}

.bottom-zikan {
  font-size: 16px;
  padding-top: 10px;
}

.bottom-logo {
  width: 160px;
  height: 55px;
}

.bottom__right {
  display: flex;
}
@media screen and (max-width: 768px) {
  .bottom__right {
    padding-top: 30px;
    flex-direction: column;
    padding-right: 120px;
  }
}

.bottom-right1,
.bottom-right2 {
  padding-bottom: 30px;
}

.bottom-link {
  font-size: 16px;
  font-family: "shippori-mincho-b1", sans-serif;
  color: white;
  letter-spacing: 0.05em;
  font-weight: 500;
}

.gaiyou__mv {
  background-image: url(../images/about/kyoutuu-mv.webp);
  min-height: 332px;
  position: relative;
  background-size: cover;
  /* 画像を要素のサイズに合わせて拡大 */
  background-position: center 30%;
  /* 中央から30%下に配置（必要に応じて調整） */
  margin-top: 112px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .gaiyou__mv {
    height: 70vh;
    background-position: center 50%;
    /* 768px以下の時、左から30%の位置に配置 */
  }
}

.gaiyou-mv__inner {
  height: inherit;
}

.gaiyou-top-title {
  position: absolute;
  top: 33%;
  left: 15%;
  font-size: 36px;
  letter-spacing: 0.05em;
  color: white;
  font-weight: 300;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .gaiyou-top-title {
    top: 45%;
  }
}
@media screen and (max-width: 500px) {
  .gaiyou-top-title {
    font-size: 33px;
    left: 9%;
  }
}

.gaiyou-aisatu {
  padding-bottom: 137px;
}
@media screen and (max-width: 375px) {
  .gaiyou-aisatu {
    padding-bottom: 70px;
  }
}

.gaiyou-aisatu-title {
  padding: 108px 0 80px 0;
}
@media screen and (max-width: 375px) {
  .gaiyou-aisatu-title {
    padding: 70px 0 50px 0;
  }
}

.gaiyou-aisatu__wrapper {
  display: flex;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .gaiyou-aisatu__wrapper {
    justify-content: space-between;
  }
}
@media screen and (max-width: 768px) {
  .gaiyou-aisatu__wrapper {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}

.gaiyou-aisatu__main {
  width: 40%;
  padding-right: 20px;
  margin-right: 60px;
}
@media screen and (max-width: 1200px) {
  .gaiyou-aisatu__main {
    margin-right: 0;
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .gaiyou-aisatu__main {
    width: 100%;
    padding-right: 0;
  }
}

.gaiyou-aisatu__text {
  font-size: 16px;
  color: black;
  line-height: 1.8;
  font-family: "shippori-mincho", sans-serif;
  letter-spacing: 0.05em;
  padding-bottom: 30px;
}

.gaiyou-aisatu__name {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.gaiyou-aisatu__left {
  font-size: 24px;
  color: #0E3F39;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .gaiyou-aisatu__left {
    font-size: 20px;
  }
}

.gaiyou-aisatu__right {
  font-size: 36px;
  color: #0E3F39;
  padding-left: 23px;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .gaiyou-aisatu__right {
    font-size: 30px;
  }
}

.gaiyou-aisatu__image {
  width: 30%;
  z-index: 10;
}
@media screen and (max-width: 1024px) {
  .gaiyou-aisatu__image {
    width: 39%;
  }
}
@media screen and (max-width: 768px) {
  .gaiyou-aisatu__image {
    width: 100%;
    max-width: 500px;
    max-height: 500px;
    padding-top: 30px;
  }
}

.gaiyou-aisatu__green {
  width: 30%;
  position: absolute;
  top: 9%;
  left: 60%;
}
@media screen and (max-width: 1200px) {
  .gaiyou-aisatu__green {
    width: 30%;
    top: 7%;
    left: 63%;
  }
}
@media screen and (max-width: 1024px) {
  .gaiyou-aisatu__green {
    width: 39%;
    left: 55%;
  }
}
@media screen and (max-width: 768px) {
  .gaiyou-aisatu__green {
    width: 100%;
    max-width: 500px;
    max-height: 500px;
    padding-top: 30px;
  }
}

.gaiyou-aisatu__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gaiyou-aisatu__green__img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.gaiyou-kaisyagaiyou {
  background-image: url(../images/about/gaiyou-kaisyagaiyou-bg.webp);
}

.gaiyou-gaiyou-title {
  padding: 116px 0 66px 0;
}
@media screen and (max-width: 768px) {
  .gaiyou-gaiyou-title {
    padding: 60px 0 30px 0;
  }
}

.gaiyou-gaiyou__wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 110px;
}
@media screen and (max-width: 768px) {
  .gaiyou-gaiyou__wrapper {
    padding-bottom: 70px;
  }
}

.gaiyou-gaiyou-item {
  display: flex;
  width: 100%;
  max-width: 660px;
  padding: 30px 0;
}
@media screen and (max-width: 375px) {
  .gaiyou-gaiyou-item {
    flex-direction: column;
    padding: 15px 0;
  }
}

.gaiyou-gaiyou-left {
  width: 30%;
  font-size: 16px;
  color: #0E3F39;
  letter-spacing: 0.05em;
  font-family: "shippori-mincho", sans-serif;
  font-weight: 700;
}
@media screen and (max-width: 375px) {
  .gaiyou-gaiyou-left {
    padding-bottom: 8px;
  }
}

.gaiyou-gaiyou-right {
  width: 70%;
  font-size: 16px;
  color: #0E3F39;
  letter-spacing: 0.05em;
  font-family: "shippori-mincho", sans-serif;
  font-weight: 300;
}
@media screen and (max-width: 375px) {
  .gaiyou-gaiyou-right {
    width: 100%;
  }
}

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

.gaiyou-gaiyou-map iframe {
  width: 100%;
}

.gaiyou-enkaku {
  padding: 97px 0 103px 0;
}
@media screen and (max-width: 500px) {
  .gaiyou-enkaku {
    padding: 50px 0;
  }
}

.gaiyou-enkaku__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.gaiyou-enkaku-title {
  padding-bottom: 90px;
}
@media screen and (max-width: 500px) {
  .gaiyou-enkaku-title {
    padding-bottom: 30px;
  }
}

.gaiyou-enkaku__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 1125px;
}
@media screen and (max-width: 1024px) {
  .gaiyou-enkaku__wrapper {
    flex-direction: column;
  }
}

.gaiyou-enkaku__image {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .gaiyou-enkaku__image {
    width: 60%;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .gaiyou-enkaku__image {
    width: 70%;
  }
}
@media screen and (max-width: 500px) {
  .gaiyou-enkaku__image {
    width: 100%;
  }
}

.gaiyou-enkaku__main {
  width: 60%;
  padding-left: 80px;
}
@media screen and (max-width: 1024px) {
  .gaiyou-enkaku__main {
    width: 100%;
    padding-left: 0;
  }
}

.gaiyou-enkaku__text {
  font-size: 16px;
  font-family: "shippori-mincho", sans-serif;
  color: #0E3F39;
  letter-spacing: 0.05em;
  line-height: 1.7;
  padding-bottom: 30px;
}

.zigyounaiyou__mv {
  background-image: url(../images/about/kyoutuu-mv.webp);
  min-height: 332px;
  position: relative;
  background-size: cover;
  /* 画像を要素のサイズに合わせて拡大 */
  background-position: center 30%;
  /* 中央から30%下に配置（必要に応じて調整） */
  margin-top: 112px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .zigyounaiyou__mv {
    height: 70vh;
    background-position: center 50%;
    /* 768px以下の時、左から30%の位置に配置 */
  }
}

.zigyounaiyou-mv__inner {
  height: inherit;
}

.zigyounaiyou-top-title {
  position: absolute;
  top: 33%;
  left: 15%;
  font-size: 36px;
  letter-spacing: 0.05em;
  color: white;
  font-weight: 300;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .zigyounaiyou-top-title {
    top: 40%;
  }
}
@media screen and (max-width: 500px) {
  .zigyounaiyou-top-title {
    font-size: 30px;
    left: 9%;
  }
}

.zigyounaiyou-top-link-box {
  position: absolute;
  top: 54%;
  left: 15%;
  padding-bottom: 20px;
}
@media screen and (max-width: 500px) {
  .zigyounaiyou-top-link-box {
    left: 10%;
  }
}

.zigyounaiyou-top-link {
  color: white;
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: 300;
}

.zigyou-swiper-box {
  position: relative;
  max-width: 1300px;
  width: 100%;
  margin: 0 auto;
  overflow: hidden;
  padding: 0 90px;
}
@media screen and (max-width: 768px) {
  .zigyou-swiper-box {
    padding: 0 50px;
  }
}

.zigyou-swiper {
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.swiper-button-next:after,
.swiper-button-prev:after {
  text-rendering: initial;
}

/* 前への矢印 */
.swiper-button-prev {
  left: 16px;
}

/* 次への矢印 */
.swiper-button-next {
  right: 16px;
}

.zigyou-swiper-slide img {
  height: auto;
  width: 100%;
}

.swiper-button-next,
.swiper-button-prev {
  width: 40px;
  height: 40px;
  border: 1px solid #0E3F39;
  border-radius: 50%;
}
@media screen and (max-width: 768px) {
  .swiper-button-next,
.swiper-button-prev {
    width: 30px;
    height: 30px;
  }
}
.swiper-button-next::before,
.swiper-button-prev::before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: 1px solid #0E3F39;
  border-right: 1px solid #0E3F39;
  position: absolute;
  top: 50%;
  left: 50%;
}

.swiper-button-prev::before {
  transform: translate(-30%, -50%) rotate(-135deg);
}

.swiper-button-next::before {
  transform: translate(-70%, -50%) rotate(45deg);
}

.swiper-button-next:after,
.swiper-button-prev:after {
  content: none;
}

.zigyounaiyou-kakou {
  padding: 108px 0 76px 0;
}
@media screen and (max-width: 500px) {
  .zigyounaiyou-kakou {
    padding: 60px 0 40px 0;
  }
}

.zigyou-kakou-title {
  padding-bottom: 76px;
}
@media screen and (max-width: 500px) {
  .zigyou-kakou-title {
    padding-bottom: 40px;
  }
}

.zigyou-kakou__text {
  font-size: 16px;
  letter-spacing: 0.05em;
  line-height: 1.7;
  color: black;
  font-family: "shippori-mincho", sans-serif;
  text-align: center;
  padding-bottom: 30px;
}
@media screen and (max-width: 375px) {
  .zigyou-kakou__text {
    font-size: 14px;
    text-align: left;
  }
}

.zigyounaiyou-setubi {
  padding: 80px 0 146px 0;
  margin-top: 131px;
  background-image: url(../images/service/zigyou-bg.webp);
  background-size: cover;
}
@media screen and (max-width: 768px) {
  .zigyounaiyou-setubi {
    margin-top: 50px;
    padding: 40px 0 50px 0;
  }
}

.zigyounaiyou-setubi__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.zigyou-setubi-title {
  padding-bottom: 58px;
}
@media screen and (max-width: 768px) {
  .zigyou-setubi-title {
    padding-bottom: 20px;
  }
}

.zigyou-setubi-top__text {
  font-size: 16px;
  color: black;
  letter-spacing: 0.05em;
  line-height: 1.7;
  font-family: "shippori-mincho", sans-serif;
  max-width: 1080px;
}
@media screen and (max-width: 500px) {
  .zigyou-setubi-top__text {
    padding-top: 20px;
  }
}

.zigyou-setubi-box {
  background-color: white;
  max-width: 1080px;
  width: 100%;
  padding: 30px 0 30px 0;
  margin-top: 100px;
}
@media screen and (max-width: 1024px) {
  .zigyou-setubi-box {
    width: 79%;
  }
}
@media screen and (max-width: 768px) {
  .zigyou-setubi-box {
    width: 100%;
    padding: 20px 0 20px 0;
    margin-top: 50px;
  }
}
@media screen and (max-width: 375px) {
  .zigyou-setubi-box {
    margin: 0;
  }
}

.zigyou-setubi-box__title {
  font-size: 18px;
  color: #0E3F39;
  letter-spacing: 0.05em;
  font-family: "shippori-mincho", sans-serif;
  text-align: center;
  padding-bottom: 13px;
}

.zigyou-setubi-box__text {
  font-size: 14px;
  color: #0E3F39;
  letter-spacing: 0.05em;
  font-family: "shippori-mincho", sans-serif;
  text-align: center;
}

.zigyou-setubi-wrapper {
  padding-top: 83px;
  max-width: 1080px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .zigyou-setubi-wrapper {
    padding-top: 40px;
  }
}

.zigyou-setubi-items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 50px;
  grid-row-gap: 0px;
  padding-bottom: 83px;
}
@media screen and (max-width: 1024px) {
  .zigyou-setubi-items {
    grid-column-gap: 15px;
    padding-bottom: 50px;
  }
}
@media screen and (max-width: 768px) {
  .zigyou-setubi-items {
    display: flex;
    flex-direction: column;
    padding-bottom: 0;
  }
}

.zigyou-setubi-item {
  padding-bottom: 40px;
}

.zigyou-setubi-top-text {
  padding-top: 20px;
  color: black;
  letter-spacing: 0.05em;
  font-size: 20px;
  font-family: "shippori-mincho", sans-serif;
}

.zigyou-setubi-bottom-text {
  padding-top: 10px;
  color: black;
  letter-spacing: 0.05em;
  font-size: 16px;
  font-family: "shippori-mincho", sans-serif;
}

.contact__mv {
  background-image: url(../images/about/kyoutuu-mv.webp);
  min-height: 332px;
  position: relative;
  background-size: cover;
  /* 画像を要素のサイズに合わせて拡大 */
  background-position: center 30%;
  /* 中央から30%下に配置（必要に応じて調整） */
  margin-top: 112px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .contact__mv {
    height: 70vh;
    background-position: center 50%;
    /* 768px以下の時、左から30%の位置に配置 */
  }
}

.contact-mv__inner {
  height: inherit;
}

.contact-top-title {
  position: absolute;
  top: 33%;
  left: 15%;
  font-size: 36px;
  letter-spacing: 0.05em;
  color: white;
  font-weight: 300;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .contact-top-title {
    top: 42%;
  }
}
@media screen and (max-width: 500px) {
  .contact-top-title {
    font-size: 33px;
    left: 9%;
  }
}

.contact-top-link-box {
  position: absolute;
  top: 54%;
  left: 15%;
  padding-bottom: 20px;
}

.contact-top-link {
  color: white;
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: 300;
}

.contact-main__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.contact-tel__box {
  width: 425px;
  height: 154px;
  background-color: #126F62;
  padding: 23px 0;
  margin-top: 60px;
}
@media screen and (max-width: 768px) {
  .contact-tel__box {
    width: 350px;
    height: 130px;
  }
}

.contact-tel__box-text {
  font-size: 20px;
  color: white;
  letter-spacing: 0.05em;
  font-family: "shippori-mincho", sans-serif;
  text-align: center;
  padding-bottom: 5px;
}
@media screen and (max-width: 768px) {
  .contact-tel__box-text {
    font-size: 16px;
  }
}

.contact__link-tel {
  font-size: 36px;
  color: white;
  letter-spacing: 0.05em;
  font-family: "shippori-mincho", sans-serif;
  text-align: center;
  font-weight: 500;
  display: block;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .contact__link-tel {
    font-size: 30px;
  }
}

.contact__link-teltext {
  font-size: 16px;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .contact__link-teltext {
    font-size: 14px;
  }
}

.contact__form {
  width: 100%;
  margin: 0 auto;
  /* 中央揃え */
  padding: 20px;
  /* パディング */
  max-width: 783px;
  width: 100%;
  margin-top: 62px;
}
@media screen and (max-width: 768px) {
  .contact__form {
    padding: 0;
  }
}

.form-group {
  margin-bottom: 40px;
  /* 各グループの間隔 */
  display: flex;
  width: 100%;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .form-group {
    flex-direction: column;
  }
}

.form-label {
  margin-bottom: 5px;
  /* ラベルと入力の間隔 */
  width: 266px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: "shippori-mincho", sans-serif;
}
@media screen and (max-width: 768px) {
  .form-label {
    width: 100%;
    justify-content: start;
  }
}

.form-label2 {
  margin-bottom: 5px;
  /* ラベルと入力の間隔 */
  width: 266px;
  display: flex;
  margin-top: 10px;
  justify-content: space-between;
  font-family: "shippori-mincho", sans-serif;
}
@media screen and (max-width: 768px) {
  .form-label2 {
    width: 100%;
    justify-content: start;
  }
}

.required {
  color: white;
  font-size: 0.9em;
  margin-right: 36px;
  background-color: #0E3F39;
  width: 65px;
  height: 33px;
  justify-content: center;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .required {
    margin-right: 0;
    margin-left: 20px;
  }
}

input[type=text],
input[type=tel],
input[type=email],
textarea {
  width: 475px;
  /* 幅を100%に設定 */
  padding: 10px;
  /* パディング */
  border: 1px solid #0E3F39;
  /* 枠線 */
  border-radius: 2px;
  /* 角を丸く */
}
@media screen and (max-width: 768px) {
  input[type=text],
input[type=tel],
input[type=email],
textarea {
    width: 100%;
  }
}

.large-textarea {
  height: 300px;
  /* 大きなテキストエリアの高さ */
}

.contact-form__container {
  max-width: 783px;
  width: 100%;
  margin: 0 auto;
}

.contact-form__wrapper {
  padding: 30px 40px;
  height: 260px;
  overflow-y: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.contact-form__wrapper::-webkit-scrollbar {
  display: none;
}
@media screen and (max-width: 768px) {
  .contact-form__wrapper {
    padding: 15px 20px;
  }
}

.contact-form__bottom-text {
  font-size: 18px;
  color: #0E3F39;
  letter-spacing: 0.05em;
  font-family: "shippori-mincho", sans-serif;
  font-weight: 700;
  padding-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .contact-form__bottom-text {
    font-size: 16px;
  }
}

.contact-form__wrapper {
  border: 1px solid #0E3F39;
}

.contact-form__wrapper-text,
.contact-form__wrapper-main-text {
  font-size: 16px;
  color: #0E3F39;
  letter-spacing: 0.05em;
  font-family: "shippori-mincho", sans-serif;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .contact-form__wrapper-text,
.contact-form__wrapper-main-text {
    font-size: 14px;
  }
}

.contact-form__wrapper-main-text-link {
  font-size: 16px;
  color: #4A4A4A;
  letter-spacing: 0.05em;
  font-family: "shippori-mincho", sans-serif;
  font-weight: 300;
  text-decoration: underline;
  word-wrap: break-word;
}
@media screen and (max-width: 768px) {
  .contact-form__wrapper-main-text-link {
    font-size: 14px;
  }
}

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

.contact-form__wrapper-main-title {
  font-size: 17px;
  color: #0E3F39;
  letter-spacing: 0.05em;
  font-family: "shippori-mincho", sans-serif;
  font-weight: 700;
  padding-top: 30px;
  padding-bottom: 10px;
  margin-bottom: 5px;
}

.contact-checkbox {
  margin: 50px 0;
}

.checkbox-label {
  display: flex;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  font-size: 16px;
  font-weight: 300;
  letter-spacing: 0.05em;
  color: #0E3F39;
  font-family: "shippori-mincho", sans-serif;
}

.hidden-checkbox {
  display: none;
  /* デフォルトのチェックボックスを隠す */
}

.custom-checkbox {
  width: 30px;
  height: 30px;
  border: 2px solid #0E3F39;
  margin-right: 15px;
  position: relative;
  /* 相対位置を設定 */
}

.hidden-checkbox:checked + .custom-checkbox {
  background-color: #126F62;
  /* チェックボックスが選択されたときの背景色 */
  border-color: #4A4A4A;
  /* 枠線の色を変更 */
}

.hidden-checkbox:checked + .custom-checkbox::after {
  content: "";
  /* チェックマークを表示 */
  position: absolute;
  left: 8px;
  /* チェックマークの位置 */
  top: 3px;
  /* チェックマークの位置 */
  width: 10px;
  /* チェックマークの幅 */
  height: 15px;
  /* チェックマークの高さ */
  border: solid white;
  /* チェックマークの色 */
  border-width: 0 2px 2px 0;
  /* チェックマークの形状 */
  transform: rotate(45deg);
  /* チェックマークを回転 */
}

.contact-botan {
  text-align: center;
  padding-bottom: 50px;
}

.contact-btn {
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 300;
  color: #0E3F39;
  font-family: "shippori-mincho", sans-serif;
  border-bottom: 1px solid #0E3F39;
  cursor: pointer;
  text-align: center;
  padding: 10px;
  display: inline-block;
  transition: all 0.3s ease;
}

.wpcf7-spinner {
  display: none;
}

input[type=checkbox] {
  width: 33px;
  height: 33px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 1px solid #0E3F39;
  border-radius: 3px;
  outline: none;
  cursor: pointer;
  display: block;
}
input[type=checkbox]:checked {
  background-color: white;
  position: relative;
}
input[type=checkbox]:checked::after {
  content: "✔";
  font-size: rem(20);
  color: #0E3F39;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 375px) {
  input[type=checkbox] {
    width: 27px;
    height: 27px;
  }
}
@media screen and (max-width: 375px) {
  input[type=checkbox] {
    width: 20px;
    height: 20px;
  }
}

.wpcf7-list-item label {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.form-group p {
  display: flex;
}
@media screen and (max-width: 768px) {
  .form-group p {
    flex-direction: column;
  }
}

.zisseki__mv {
  background-image: url(../images/about/kyoutuu-mv.webp);
  min-height: 332px;
  position: relative;
  background-size: cover;
  /* 画像を要素のサイズに合わせて拡大 */
  background-position: center 30%;
  /* 中央から30%下に配置（必要に応じて調整） */
  margin-top: 112px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .zisseki__mv {
    height: 70vh;
    background-position: center 50%;
    /* 768px以下の時、左から30%の位置に配置 */
  }
}

.zisseki-mv__inner {
  height: inherit;
}

.zisseki-top-title {
  position: absolute;
  top: 33%;
  left: 15%;
  font-size: 36px;
  letter-spacing: 0.05em;
  color: white;
  font-weight: 300;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .zisseki-top-title {
    top: 42%;
  }
}
@media screen and (max-width: 500px) {
  .zisseki-top-title {
    font-size: 33px;
    left: 9%;
  }
}

.zisseki-top-link-box {
  position: absolute;
  top: 54%;
  left: 15%;
  padding-bottom: 20px;
}

.zisseki-top-link {
  color: white;
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: 300;
}

.zisseki-main-container {
  display: flex;
  gap: 50px;
  margin: 100px 100px 200px 100px;
}
@media screen and (max-width: 1200px) {
  .zisseki-main-container {
    margin: 100px 0 150px 0;
  }
}
@media screen and (max-width: 768px) {
  .zisseki-main-container {
    flex-direction: column;
  }
}
@media screen and (max-width: 500px) {
  .zisseki-main-container {
    margin: 50px 0;
  }
}

.zisseki-main__wrapper {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
}

.zisseki-main-items {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 40px;
  grid-row-gap: 0px;
  width: 100%;
}
@media screen and (max-width: 1024px) {
  .zisseki-main-items {
    grid-column-gap: 10px;
  }
}

.zisseki-main-item {
  padding-bottom: 75px;
}
@media screen and (max-width: 1024px) {
  .zisseki-main-item {
    padding-bottom: 30px;
  }
}

.zisseki-main-title {
  padding-top: 20px;
  font-size: 18px;
  font-family: "shippori-mincho", sans-serif;
  color: black;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 500px) {
  .zisseki-main-title {
    font-size: 14px;
    padding-top: 10px;
    font-weight: 300;
  }
}

.zisseki-main__page-btn {
  height: 50px;
  width: 200px;
  background-color: black;
}

.zisseki-category {
  width: 35%;
  padding-left: 20px;
}
@media screen and (max-width: 1024px) {
  .zisseki-category {
    padding-left: 0;
  }
}
@media screen and (max-width: 500px) {
  .zisseki-category {
    width: 100%;
  }
}

.category-title {
  font-size: 18px;
  font-family: "shippori-mincho", sans-serif;
  color: #0E3F39;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom: 2px solid #0E3F39;
  padding-bottom: 10px;
}

.category-blog-title {
  font-size: 18px;
  font-family: "shippori-mincho", sans-serif;
  color: #0E3F39;
  font-weight: 300;
  letter-spacing: 0.05em;
  margin-top: 10px;
  display: block;
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
}

.nav-links {
  display: flex;
  gap: 19px;
}

.page-numbers {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  color: #0E3F39;
  background-color: white;
  border: 1px solid #0E3F39;
  border-radius: 50%;
}

.page-numbers.current {
  color: white;
  background-color: #0E3F39;
}

.page-numbers.dots {
  border: none;
}

.zisseki-main-image {
  max-width: 316px;
  width: 100%;
  height: auto;
  aspect-ratio: 316/199;
}

.zisseki-img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.zisseki__mv {
  background-image: url(../images/about/kyoutuu-mv.webp);
  min-height: 332px;
  position: relative;
  background-size: cover;
  /* 画像を要素のサイズに合わせて拡大 */
  background-position: center 30%;
  /* 中央から30%下に配置（必要に応じて調整） */
  margin-top: 112px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .zisseki__mv {
    height: 70vh;
    background-position: center 50%;
    /* 768px以下の時、左から30%の位置に配置 */
  }
}

.zisseki-mv__inner {
  height: inherit;
}

.zisseki-top-title {
  position: absolute;
  top: 33%;
  left: 15%;
  font-size: 36px;
  letter-spacing: 0.05em;
  color: white;
  font-weight: 300;
  padding-bottom: 20px;
  word-wrap: break-word;
}
@media screen and (max-width: 768px) {
  .zisseki-top-title {
    top: 42%;
  }
}
@media screen and (max-width: 500px) {
  .zisseki-top-title {
    font-size: 33px;
    left: 9%;
  }
}

.zisseki-top-link-box {
  position: absolute;
  top: 54%;
  left: 15%;
  padding-bottom: 20px;
}

.zisseki-top-link {
  color: white;
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: 300;
}

.blog-main-container {
  display: flex;
  gap: 50px;
  margin: 100px 100px 50px 100px;
  justify-content: space-around;
}
@media screen and (max-width: 1200px) {
  .blog-main-container {
    margin: 100px 0 50px 0;
  }
}
@media screen and (max-width: 768px) {
  .blog-main-container {
    flex-direction: column;
  }
}
@media screen and (max-width: 500px) {
  .blog-main-container {
    margin: 50px 0;
  }
}

.blog-main__wrapper {
  max-width: 1200px;
  width: 100%;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  border: 1px solid #0E3F39;
  padding: 40px 40px 40px 40px;
  border-radius: 10px;
}
@media screen and (max-width: 500px) {
  .blog-main__wrapper {
    padding: 20px 20px 20px 20px;
  }
}

.blog-main-title {
  font-size: 24px;
  color: black;
  letter-spacing: 0.05em;
  font-family: "shippori-mincho", sans-serif;
  font-weight: 700;
  border-bottom: 2px solid #0E3F39;
  padding-bottom: 40px;
  margin-bottom: 40px;
  word-wrap: break-word;
}
@media screen and (max-width: 500px) {
  .blog-main-title {
    font-size: 20px;
    padding-bottom: 15px;
    margin-bottom: 15px;
  }
}

.blog-main__content h3 {
  background-color: #0E3F39;
  padding: 15px 0;
  width: 100%;
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: 500;
  font-family: "shippori-mincho", sans-serif;
  color: white;
  letter-spacing: 0.05em;
  width: 100%;
  padding-left: 15px;
  word-wrap: break-word;
}
@media screen and (max-width: 500px) {
  .blog-main__content h3 {
    font-size: 16px;
    padding-left: 10px;
    padding: 12px 0;
    margin-bottom: 15px;
  }
}

.blog-main__content p {
  font-size: 18px;
  color: black;
  letter-spacing: 0.05em;
  line-height: 1.75;
  font-family: "shippori-mincho", sans-serif;
  padding-bottom: 30px;
  word-wrap: break-word;
}
@media screen and (max-width: 500px) {
  .blog-main__content p {
    font-size: 15px;
    padding-bottom: 20px;
  }
}

.blog-main__content h4 {
  position: relative;
  /* 擬似要素の位置を相対的にする */
  padding-left: 30px;
  /* テキストと印の間にスペースを追加 */
  margin-bottom: 35px;
  width: 100%;
}
@media screen and (max-width: 500px) {
  .blog-main__content h4 {
    padding-left: 20px;
    margin-bottom: 20px;
  }
}

.blog-main__content h4,
.blog-main__content h5 {
  font-size: 20px;
  font-weight: 500;
  font-family: "shippori-mincho", sans-serif;
  color: #4A4A4A;
  letter-spacing: 0.05em;
  width: 100%;
  margin: 0;
  word-wrap: break-word;
}
@media screen and (max-width: 500px) {
  .blog-main__content h4,
.blog-main__content h5 {
    font-size: 16px;
  }
}

.blog-main__content h4 {
  margin-bottom: 35px;
}
@media screen and (max-width: 500px) {
  .blog-main__content h4 {
    margin-bottom: 20px;
  }
}

.blog-main__content h4::before {
  content: "";
  /* 擬似要素の内容を空にする */
  position: absolute;
  /* 絶対位置を設定 */
  left: 0;
  /* 左端に配置 */
  top: 50%;
  /* 垂直方向の中央に配置 */
  transform: translateY(-50%);
  /* 中央揃えに調整 */
  width: 10px;
  /* 幅を設定 */
  height: 47px;
  /* 高さを設定 */
  background-color: #0E3F39;
  /* 印の色を設定 */
}
@media screen and (max-width: 500px) {
  .blog-main__content h4::before {
    width: 8px;
    height: 38px;
  }
}

.blog-main-botan {
  padding-top: 50px;
  padding-bottom: 50px;
  text-align: center;
}

.blog-btn {
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 300;
  color: #0E3F39;
  font-family: "shippori-mincho", sans-serif;
  border-bottom: 1px solid #0E3F39;
  cursor: pointer;
  text-align: center;
  padding: 10px;
  display: inline-block;
  transition: all 0.3s ease;
}

.footer__text {
  font-family: "shippori-mincho-b1", sans-serif;
  color: white;
  font-size: 14px;
  font-weight: 500;
  line-height: 2.91;
  padding: 30px 0 30px 0;
  text-align: center;
  background-color: #0E3F39;
}
@media screen and (max-width: 768px) {
  .footer__text {
    padding: 20px 0 20px 0;
  }
}

.inner {
  width: 100%;
  max-width: 1400px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media screen and (max-width: 768px) {
  .inner {
    padding-left: 15px;
    padding-right: 15px;
  }
}

.section-title {
  font-family: "shinryu", sans-serif;
  font-size: 52px;
  color: #0E3F39;
  text-align: center;
  letter-spacing: 0.05em;
  font-weight: 300;
}
@media screen and (max-width: 768px) {
  .section-title {
    font-size: 30px;
  }
}

.btn {
  font-size: 14px;
  letter-spacing: 0.05em;
  font-weight: 300;
  color: white;
  font-family: "shippori-mincho", sans-serif;
  border-bottom: 1px solid white;
  cursor: pointer;
  text-align: center;
  padding: 10px;
  display: inline-block;
  transition: all 0.3s ease;
}

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

.md-show {
  display: none;
}
@media screen and (max-width: 768px) {
  .md-show {
    display: block;
  }
}

.md2-show {
  display: none;
}
@media screen and (max-width: 500px) {
  .md2-show {
    display: block;
  }
}

.sp-show {
  display: none;
}
@media screen and (max-width: 375px) {
  .sp-show {
    display: block;
  }
}

.breadcrumb {
  position: absolute;
  top: 54%;
  left: 15%;
  padding-bottom: 20px;
  color: white;
}
@media screen and (max-width: 500px) {
  .breadcrumb {
    left: 9%;
  }
}

.breadcrumb span {
  color: white;
  font-size: 20px;
  letter-spacing: 0.05em;
  font-weight: 300;
}