@charset "UTF-8";
/*
Theme Name: 心促協会
*/
/* フォントのインポート */
/* @import url("https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700;800;900&display=swap"); */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700;800;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/* カスタムプロパティ定義 */
:root {
  /* フォントの太さ */
  --Light: 300;
  --Regular: 400;
  --Medium: 500;
  --SemiBold: 600;
  --Bold: 700;
  --ExtraBold: 800;
  --Black: 900;
  --theme-color: #26bf74;
  /* 画面サイズ関連 */
  --min-window: 1200px; /* ウィンドウサイズがこれより小さい場合は */
  --inner: 1000px; /* ニュース等の横幅 */
}

/* html全体に関わるもの */
html,
body {
  margin: 0;
  /* font-family: "Noto Serif JP", serif; */
  font-family: "Noto Sans JP", sans-serif;
  background-color: #fff;
  scroll-behavior: smooth;
  min-width: var(--min-window);
  /* 横幅1920pxのときに10pxになる */
  /* font-size: calc(100vw / 192); */
  font-size: 20px;
}
html:has(header .toggle:checked),
body:has(header .toggle:checked) {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  html,
  body {
    font-size: 16px;
  }
}

@media screen and (max-width: 768px) {
  html,
  body {
    width: auto;
    min-width: auto;
    /* 横幅768pxのときに10pxになる */
    /* font-size: calc(100vw / 76.8); */
  }
  .pc {
    display: none !important;
  }
}
@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
a {
  text-decoration: none;
  color: inherit;
  transition: 0.3s;
}
a:hover {
  opacity: 0.6;
}

img {
  vertical-align: top;
}

nav ul {
  list-style-type: none;
  margin: 0;
  padding-inline-start: 0;
}
nav ul li {
  cursor: pointer;
}

/* rechaptchaの非表示 */
/*
.grecaptcha-badge {
  visibility: hidden;
}
*/
/* splide */
.splide img {
  height: 100%;
}
@media screen and (max-width: 768px) {
  .splide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}
.splide .splide__pagination li {
  margin: 0 1px;
}
.splide .splide__pagination__page.is-active {
  background: #1ea821;
  transform: none;
  opacity: 1;
}

header {
  display: flex;
  color: #fff;
  background-color: var(--theme-color);
  height: 65px;
  padding: 0 16px;
  align-items: center;
  font-weight: var(--Bold);
  letter-spacing: 1px;
}
header .logo {
  position: relative;
  width: 200px;
  display: block;
  margin-right: auto;
  z-index: 100;
}
header .logo img {
  width: 100%;
}
header .item {
  display: flex;
  height: 19px;
  align-items: center;
  padding: 0 32px;
}
header .item.home {
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
header .item.home::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 8px;
  background-image: url("images/header-icon1.png");
  background-size: cover;
}
header .item.corporation {
  border-right: 1px solid #fff;
}
header .item.corporation::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 18px;
  margin-right: 8px;
  background-image: url("images/header-icon2.png");
  background-size: cover;
}
header .item.information {
  border-right: 1px solid #fff;
}
header .item.information::before {
  content: "";
  display: inline-block;
  width: 16.5px;
  height: 19px;
  margin-right: 8px;
  background-image: url("images/header-icon3.png");
  background-size: cover;
}
header .tel {
  display: block;
  padding: 0 16px 0 24px;
  text-align: center;
  line-height: 1;
}
header .tel .number {
  font-size: 24px;
}
header .tel .time {
  font-size: 12px;
}
header .tel::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 2px;
  background-image: url("images/header-icon4.png");
  background-size: cover;
}
header .contact {
  color: var(--theme-color);
  background-color: #fff;
  border-radius: 32px;
  padding: 8px 32px;
}
header .toggle {
  display: none;
}
header .toggle:checked + .menu-btn span:nth-child(1) {
  top: 19px;
  transform: rotate(135deg);
}
header .toggle:checked + .menu-btn span:nth-child(2) {
  top: 19px;
  transform: rotate(135deg);
}
header .toggle:checked + .menu-btn span:nth-child(3) {
  top: 19px;
  transform: rotate(-135deg);
}
header .toggle:checked + .menu-btn + .menu {
  z-index: 10;
  opacity: 1;
}
header .menu-btn {
  position: relative;
  width: 40px;
  height: 40px;
  z-index: 100;
}
header .menu-btn span {
  position: absolute;
  width: 30px;
  height: 3px;
  left: 0;
  right: 0;
  margin: 0 auto;
  background-color: #fff;
  transition: 0.3s;
}
header .menu-btn span:nth-child(1) {
  top: 9px;
}
header .menu-btn span:nth-child(2) {
  top: 19px;
}
header .menu-btn span:nth-child(3) {
  top: 29px;
}
header .menu {
  position: fixed;
  width: 90vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0;
  transition: 0.3s;
  color: #fff;
  background-color: var(--theme-color);
  padding: 65px 5vw;
}
header .menu .menu-item {
  display: flex;
  align-items: center;
  padding: 24px;
  border-bottom: 1px solid #c4eed9;
}
header .menu .menu-item.home::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 19px;
  margin-right: 8px;
  background-image: url("images/header-icon1.png");
  background-size: cover;
}
header .menu .menu-item.corporation::before {
  content: "";
  display: inline-block;
  width: 19px;
  height: 18px;
  margin-right: 8px;
  background-image: url("images/header-icon2.png");
  background-size: cover;
}
header .menu .menu-item.information::before {
  content: "";
  display: inline-block;
  width: 16.5px;
  height: 19px;
  margin-right: 8px;
  background-image: url("images/header-icon3.png");
  background-size: cover;
}
header .menu .menu-tel {
  display: block;
  padding: 0 16px 0 24px;
  text-align: center;
  line-height: 1;
  margin-top: 48px;
}
header .menu .menu-tel .number {
  font-size: 32px;
  margin-bottom: 8px;
}
header .menu .menu-tel .number::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 6px;
  background-image: url("images/header-icon4.png");
  background-size: cover;
}
header .menu .menu-tel .time {
  font-size: 14px;
}
header .menu .menu-contact {
  display: block;
  width: fit-content;
  color: var(--theme-color);
  background-color: #fff;
  border-radius: 32px;
  padding: 8px 32px;
  letter-spacing: 1px;
  margin: 32px auto;
}

#front-page-top {
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  #front-page-top {
    margin-bottom: 0;
  }
}

#front-page-message {
  background-color: #fafaec;
}
#front-page-message .flex {
  display: flex;
  padding: 32px 0 48px;
}
@media screen and (max-width: 768px) {
  #front-page-message .flex {
    flex-wrap: wrap;
    margin: 0 5%;
  }
}
#front-page-message .flex .image {
  width: 47%;
  margin-left: 3%;
}
@media screen and (max-width: 768px) {
  #front-page-message .flex .image {
    width: 100%;
    margin-left: 0;
  }
}
#front-page-message .flex .image img {
  width: 100%;
  box-shadow: 20px 20px 0 #ffebaf;
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  #front-page-message .flex .image img {
    box-shadow: 10px 10px 0 #ffebaf;
  }
}
#front-page-message .flex .message {
  width: 38%;
  font-weight: var(--Bold);
  margin: 0 6%;
}
@media screen and (max-width: 768px) {
  #front-page-message .flex .message {
    width: 100%;
    font-weight: var(--Bold);
    margin: 0;
  }
}
#front-page-message .flex .message .top {
  font-size: 2.5vw;
  color: var(--theme-color);
  margin: 1.5625vw 0 2.6041666667vw;
  line-height: 1.5;
}
@media screen and (max-width: 1200px) {
  #front-page-message .flex .message .top {
    font-size: 30px;
    margin: 18.75px 0 31.25px;
  }
}
@media screen and (max-width: 768px) {
  #front-page-message .flex .message .top {
    font-size: 24px;
    margin: 40px 0 24px;
  }
}
#front-page-message .flex .message .bottom {
  font-size: 1.3541666667vw;
  font-weight: var(--Medium);
  line-height: 1.7;
}
@media screen and (max-width: 1200px) {
  #front-page-message .flex .message .bottom {
    font-size: 16.25px;
  }
}
@media screen and (max-width: 768px) {
  #front-page-message .flex .message .bottom {
    font-size: 16px;
  }
}

#front-page-news {
  margin: 60px 12% 120px;
}
@media screen and (max-width: 768px) {
  #front-page-news {
    margin: 30px 10%;
  }
}
#front-page-news .title-wrap {
  color: var(--theme-color);
  text-align: center;
  margin-bottom: 80px;
  font-weight: var(--Bold);
}
@media screen and (max-width: 768px) {
  #front-page-news .title-wrap {
    margin-bottom: 40px;
  }
}
#front-page-news .title-wrap .title {
  font-size: 48px;
  padding-bottom: 12px;
}
@media screen and (max-width: 768px) {
  #front-page-news .title-wrap .title {
    font-size: 36px;
  }
}
#front-page-news .title-wrap .sub-title {
  width: 240px;
  border-top: 1px solid var(--theme-color);
  padding-top: 16px;
  font-size: 24px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #front-page-news .title-wrap .sub-title {
    font-size: 16px;
  }
}
#front-page-news .news-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 0 3%;
}
@media screen and (max-width: 768px) {
  #front-page-news .news-list {
    grid-template-columns: 1fr;
    gap: 32px;
    margin: 0 2%;
  }
}
#front-page-news .news-list article {
  position: relative;
  border: 2px solid #1ea821;
  border-radius: 16px;
  font-weight: var(--Bold);
}
#front-page-news .news-list article::after {
  content: "";
  position: absolute;
  width: 40px;
  height: 40px;
  bottom: -15px;
  right: -15px;
  background-image: url("./images/arrow.png");
  background-size: cover;
}
#front-page-news .news-list article .article-eye-catch img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/3;
  border-radius: 16px 16px 0 0;
}
#front-page-news .news-list article .article-information {
  padding: 24px 16px;
}
#front-page-news .news-list article .article-information .article-title {
  font-size: 18px;
  margin-bottom: 8px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  #front-page-news .news-list article .article-information .article-title {
    font-size: 16px;
  }
}
#front-page-news .news-list article .article-information .article-date {
  font-size: 14px;
  color: #1ea821;
}
#front-page-news .button {
  display: block;
  position: relative;
  width: 350px;
  color: #fff;
  background-color: var(--theme-color);
  margin: 60px auto 0;
  text-align: center;
  font-size: 18px;
  padding: 16px 0;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #front-page-news .button {
    width: 100%;
    margin: 32px auto 0;
  }
}
#front-page-news .button::after {
  position: absolute;
  content: "";
  width: 19px;
  height: 12px;
  right: 24px;
  top: 0;
  bottom: 0;
  background-image: url("./images/arrow2.png");
  background-size: cover;
  margin: auto;
}

#front-page-introduction {
  padding: 80px 10% 120px;
  background-color: #fff7e0;
}
@media screen and (max-width: 768px) {
  #front-page-introduction {
    padding: 40px 5% 60px;
  }
}
#front-page-introduction .title-wrap {
  color: var(--theme-color);
  text-align: center;
  margin-bottom: 80px;
  font-weight: var(--Bold);
}
@media screen and (max-width: 768px) {
  #front-page-introduction .title-wrap {
    margin-bottom: 40px;
  }
}
#front-page-introduction .title-wrap .title {
  font-size: 48px;
  padding-bottom: 12px;
}
@media screen and (max-width: 768px) {
  #front-page-introduction .title-wrap .title {
    font-size: 36px;
  }
}
#front-page-introduction .title-wrap .sub-title {
  width: 240px;
  border-top: 1px solid var(--theme-color);
  padding-top: 16px;
  font-size: 24px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #front-page-introduction .title-wrap .sub-title {
    font-size: 16px;
  }
}
#front-page-introduction .introduction {
  display: flex;
  background-color: #fff;
  box-shadow: 4px 4px 5px #ede6d0;
  margin-bottom: 96px;
}
@media screen and (max-width: 768px) {
  #front-page-introduction .introduction {
    flex-wrap: wrap;
    box-shadow: none;
    margin-bottom: 64px;
  }
}
#front-page-introduction .introduction .image {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #front-page-introduction .introduction .image {
    width: 100%;
  }
}
#front-page-introduction .introduction .image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 3/2;
}
#front-page-introduction .introduction .image.reverse {
  order: 2;
}
@media screen and (max-width: 768px) {
  #front-page-introduction .introduction .image.reverse {
    order: unset;
  }
}
#front-page-introduction .introduction .text {
  width: 50%;
}
@media screen and (max-width: 768px) {
  #front-page-introduction .introduction .text {
    width: 100%;
  }
}
#front-page-introduction .introduction .text .title {
  color: var(--theme-color);
  border-bottom: 3px solid var(--theme-color);
  text-align: center;
  padding: 40px 0 8px;
}
#front-page-introduction .introduction .text .title .name {
  display: inline-flex;
  font-size: 2.5vw;
  font-weight: var(--Bold);
  align-items: center;
}
@media screen and (max-width: 1200px) {
  #front-page-introduction .introduction .text .title .name {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  #front-page-introduction .introduction .text .title .name {
    font-size: 22px;
  }
}
#front-page-introduction .introduction .text .title .name::after {
  display: inline-block;
  content: "";
  width: 3.3333333333vw;
  height: 3.3333333333vw;
  background-size: cover;
  margin-left: 8px;
  margin-top: -4px;
}
@media screen and (max-width: 1200px) {
  #front-page-introduction .introduction .text .title .name::after {
    width: 40px;
    height: 40px;
  }
}
@media screen and (max-width: 768px) {
  #front-page-introduction .introduction .text .title .name::after {
    width: 32px;
    height: 32px;
  }
}
#front-page-introduction .introduction .text .title .name.first::after {
  background-image: url("images/introduction-icon1.png");
}
#front-page-introduction .introduction .text .title .name.second::after {
  background-image: url("images/introduction-icon2.png");
}
#front-page-introduction .introduction .text .title .name.third::after {
  background-image: url("images/introduction-icon3.png");
  width: 4.1666666667vw;
  height: 4.1666666667vw;
  margin-top: -8px;
}
@media screen and (max-width: 1200px) {
  #front-page-introduction .introduction .text .title .name.third::after {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 768px) {
  #front-page-introduction .introduction .text .title .name.third::after {
    width: 40px;
    height: 40px;
  }
}
#front-page-introduction .introduction .text .title .number {
  font-size: 1.6666666667vw;
}
@media screen and (max-width: 1200px) {
  #front-page-introduction .introduction .text .title .number {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  #front-page-introduction .introduction .text .title .number {
    font-size: 16px;
  }
}
#front-page-introduction .introduction .text .detail {
  margin: 1.25vw 12% 3.75vw;
  font-size: 1.25vw;
  line-height: 1.8;
}
@media screen and (max-width: 1200px) {
  #front-page-introduction .introduction .text .detail {
    font-size: 15px;
    margin: 15px 12% 45px;
  }
}
@media screen and (max-width: 768px) {
  #front-page-introduction .introduction .text .detail {
    font-size: 16px;
    margin: 12px 8%;
  }
}
#front-page-introduction .introduction .text .button {
  display: block;
  position: relative;
  width: 350px;
  color: #fff;
  background-color: var(--theme-color);
  margin: 0 auto;
  text-align: center;
  font-size: 18px;
  padding: 16px 0;
  align-items: center;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  #front-page-introduction .introduction .text .button {
    width: auto;
    margin: 24px 5%;
  }
}
#front-page-introduction .introduction .text .button::after {
  display: block;
  position: absolute;
  content: "";
  width: 8px;
  height: 8px;
  right: 0;
  top: 0;
  bottom: 0;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
  margin: auto 16px auto 0;
}

#front-page-banner .banner {
  width: fit-content;
  display: block;
  margin: 64px auto 32px;
}
@media screen and (max-width: 768px) {
  #front-page-banner .banner {
    width: 90%;
    margin: 32px auto;
  }
}
#front-page-banner .banner img {
  max-width: 550px;
}
@media screen and (max-width: 768px) {
  #front-page-banner .banner img {
    max-width: none;
    width: 100%;
  }
}

footer {
  text-align: center;
}
footer .green {
  background-color: #f4f6e3;
  padding: 48px 0;
}
footer .logo {
  width: 300px;
  margin: 0 auto 16px;
}
@media screen and (max-width: 768px) {
  footer .logo {
    width: 240px;
  }
}
footer .logo img {
  width: 100%;
}
footer .address {
  margin-bottom: 24px;
}
footer .button {
  display: block;
  position: relative;
  width: 400px;
  color: #fff;
  background-color: var(--theme-color);
  margin: 48px auto 0;
  text-align: center;
  font-size: 24px;
  font-weight: var(--Bold);
  padding: 12px 0;
  align-items: center;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  footer .button {
    width: 90%;
    font-size: 16px;
    margin: 32px auto 0;
  }
}
footer .button::after {
  position: absolute;
  content: "";
  width: 19px;
  height: 12px;
  right: 24px;
  top: 0;
  bottom: 0;
  background-image: url("./images/arrow2.png");
  background-size: cover;
  margin: auto;
}
footer .tel {
  display: none;
}
footer .copyright {
  font-size: 12px;
  margin: 16px 0;
}

#page-corporation {
  margin: 0 5%;
}
#page-corporation h2 {
  color: var(--theme-color);
  background-color: #fff7e0;
  margin: 72px 8% 48px;
  padding: 8px 0;
  text-align: center;
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  #page-corporation h2 {
    font-size: 28px;
    margin: 36px 0 24px;
  }
}
#page-corporation .top-image {
  display: block;
  margin: 0 4% 32px;
  width: 92%;
}
@media screen and (max-width: 768px) {
  #page-corporation .top-image {
    width: 100%;
    margin: 0 0 32px;
  }
}
#page-corporation dl {
  display: flex;
  margin: 0 8%;
  flex-wrap: wrap;
  align-items: baseline;
}
@media screen and (max-width: 768px) {
  #page-corporation dl {
    margin: 0;
  }
}
#page-corporation dl dt {
  width: 15%;
  background-color: #fdd38d;
  margin-bottom: 16px;
  font-weight: var(--Bold);
  text-align: center;
  padding: 8px 0;
}
@media screen and (max-width: 768px) {
  #page-corporation dl dt {
    width: 100%;
    padding: 4px 4px;
    margin-bottom: 4px;
    text-align: left;
  }
}
#page-corporation dl dd {
  width: 80%;
  margin: 0 0 16px 2.5%;
}
@media screen and (max-width: 768px) {
  #page-corporation dl dd {
    width: 100%;
    margin: 0 0 32px 4px;
  }
}
#page-corporation .information {
  width: fit-content;
  column-count: 2;
  margin: 0 auto 64px;
}
@media screen and (max-width: 768px) {
  #page-corporation .information {
    column-count: 1;
    margin: 0 16px 64px;
  }
}
#page-corporation .information .item {
  display: block;
  margin: 0 32px 16px;
}
#page-corporation .information .item::before {
  display: inline-block;
  content: "●";
  margin-right: 16px;
  color: #1ea821;
}
@media screen and (max-width: 768px) {
  #page-corporation .information .item {
    margin: 0 0 16px;
  }
}
#page-corporation .services {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 72px;
  margin: 108px 8%;
}
@media screen and (max-width: 768px) {
  #page-corporation .services {
    grid-template-columns: 1fr;
    margin: 64px 8% 96px;
    gap: 36px;
  }
}
#page-corporation .services .service .image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-bottom: 8px;
  border-radius: 32px;
}
#page-corporation .services .service .text {
  display: flex;
  align-items: center;
}
#page-corporation .services .service .text::after {
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--theme-color);
  border-right: 2px solid var(--theme-color);
  transform: rotate(45deg);
  margin-left: 5px;
  margin-top: 2px;
}

#page-b-service h2 {
  color: var(--theme-color);
  background-color: #fff7e0;
  margin: 72px 13% 48px;
  padding: 8px 0;
  text-align: center;
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  #page-b-service h2 {
    font-size: 28px;
    margin: 36px 5% 24px;
  }
}
#page-b-service .top-image {
  display: block;
  margin: 0 9% 96px;
  width: 84%;
}
@media screen and (max-width: 768px) {
  #page-b-service .top-image {
    width: 90%;
    margin: 0 5% 32px;
  }
}
#page-b-service .b-service {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 96px;
}
@media screen and (max-width: 768px) {
  #page-b-service .b-service {
    margin-bottom: 32px;
  }
}
#page-b-service .b-service.align {
  align-items: center;
}
#page-b-service .b-service .image {
  width: 37%;
  margin: 0 2% 0 11%;
}
@media screen and (max-width: 768px) {
  #page-b-service .b-service .image {
    width: 90%;
    margin: 0 auto;
  }
}
#page-b-service .b-service .image img {
  width: 100%;
  border-radius: 32px;
}
#page-b-service .b-service .text {
  width: 42%;
  margin: 0 6% 0 2%;
  line-height: 2.2;
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  #page-b-service .b-service .text {
    width: 90%;
    margin: 16px auto 0;
    font-size: 16px;
    line-height: 1.7;
  }
}
#page-b-service .b-service .text .top {
  display: flex;
  font-size: 40px;
  font-weight: var(--Bold);
  color: var(--theme-color);
  align-items: center;
}
@media screen and (max-width: 768px) {
  #page-b-service .b-service .text .top {
    font-size: 24px;
  }
}
#page-b-service .b-service .text .top::before {
  display: inline-block;
  content: "";
  width: 24px;
  height: 24px;
  background-color: var(--theme-color);
  border-radius: 4px;
  margin: 4px 8px 0 0;
}
#page-b-service .b-service .text .middle {
  font-size: 26px;
  margin-bottom: 16px;
  margin-top: -12px;
  font-weight: var(--Bold);
}
@media screen and (max-width: 768px) {
  #page-b-service .b-service .text .middle {
    margin-top: 0;
    font-size: 20px;
  }
}
#page-b-service .box {
  color: #fff;
  background-color: var(--theme-color);
  text-align: center;
  font-size: 40px;
  font-weight: var(--Bold);
  padding: 16px 0;
  margin-top: 160px;
}
@media screen and (max-width: 768px) {
  #page-b-service .box {
    margin-top: 32px;
    font-size: 26px;
    padding: 8px 0;
  }
}
#page-b-service .yellow {
  background-color: #fff7e0;
  padding: 64px 0;
}
#page-b-service .button {
  display: block;
  position: relative;
  width: 400px;
  color: #fff;
  background-color: var(--theme-color);
  margin: 96px auto 0;
  text-align: center;
  font-size: 24px;
  font-weight: var(--Bold);
  padding: 12px 0;
  align-items: center;
  border-radius: 8px;
}
@media screen and (max-width: 768px) {
  #page-b-service .button {
    width: 90%;
    font-size: 16px;
    margin: 32px auto 0;
  }
}
#page-b-service .button::after {
  position: absolute;
  content: "";
  width: 19px;
  height: 12px;
  right: 24px;
  top: 0;
  bottom: 0;
  background-image: url("./images/arrow2.png");
  background-size: cover;
  margin: auto;
}
#page-b-service .services {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 72px;
  margin: 108px 8%;
}
@media screen and (max-width: 768px) {
  #page-b-service .services {
    grid-template-columns: 1fr;
    margin: 64px 8% 96px;
    gap: 36px;
  }
}
#page-b-service .services .service .image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-bottom: 8px;
  border-radius: 32px;
}
#page-b-service .services .service .text {
  display: flex;
  align-items: center;
}
#page-b-service .services .service .text::after {
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--theme-color);
  border-right: 2px solid var(--theme-color);
  transform: rotate(45deg);
  margin-left: 5px;
  margin-top: 2px;
}

#page-transfer {
  margin-bottom: 96px;
}
@media screen and (max-width: 768px) {
  #page-transfer {
    margin-bottom: 64px;
  }
}
#page-transfer h2 {
  color: var(--theme-color);
  background-color: #fff7e0;
  margin: 72px 13% 48px;
  padding: 8px 0;
  text-align: center;
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  #page-transfer h2 {
    font-size: 28px;
    margin: 36px 5% 24px;
  }
}
#page-transfer .top-image {
  display: block;
  margin: 0 9% 32px;
  width: 84%;
}
@media screen and (max-width: 768px) {
  #page-transfer .top-image {
    width: 90%;
    margin: 0 5%;
  }
}
#page-transfer .transfer {
  display: flex;
  flex-wrap: wrap;
  margin-top: 96px;
}
@media screen and (max-width: 768px) {
  #page-transfer .transfer {
    margin-top: 32px;
  }
}
#page-transfer .transfer.align {
  align-items: center;
}
#page-transfer .transfer .image {
  width: 37%;
  margin: 0 2% 0 11%;
}
@media screen and (max-width: 768px) {
  #page-transfer .transfer .image {
    width: 90%;
    margin: 0 auto;
  }
}
#page-transfer .transfer .image img {
  width: 100%;
  border-radius: 32px;
}
#page-transfer .transfer .text {
  width: 42%;
  margin: 0 6% 0 2%;
  line-height: 2.2;
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  #page-transfer .transfer .text {
    width: 90%;
    margin: 16px auto 0;
    font-size: 16px;
    line-height: 1.7;
  }
}
#page-transfer .transfer .text .top {
  display: flex;
  font-size: 40px;
  font-weight: var(--Bold);
  color: var(--theme-color);
  align-items: center;
}
@media screen and (max-width: 768px) {
  #page-transfer .transfer .text .top {
    font-size: 24px;
  }
}
#page-transfer .transfer .text .top::before {
  display: inline-block;
  content: "";
  width: 24px;
  height: 24px;
  background-color: var(--theme-color);
  border-radius: 4px;
  margin: 4px 8px 0 0;
}
#page-transfer .services {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 72px;
  margin: 108px 8%;
}
@media screen and (max-width: 768px) {
  #page-transfer .services {
    grid-template-columns: 1fr;
    margin: 64px 8% 96px;
    gap: 36px;
  }
}
#page-transfer .services .service .image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-bottom: 8px;
  border-radius: 32px;
}
#page-transfer .services .service .text {
  display: flex;
  align-items: center;
}
#page-transfer .services .service .text::after {
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--theme-color);
  border-right: 2px solid var(--theme-color);
  transform: rotate(45deg);
  margin-left: 5px;
  margin-top: 2px;
}

#page-establish {
  margin-bottom: 96px;
}
@media screen and (max-width: 768px) {
  #page-establish {
    margin-bottom: 64px;
  }
}
#page-establish h2 {
  color: var(--theme-color);
  background-color: #fff7e0;
  margin: 72px 13% 48px;
  padding: 8px 0;
  text-align: center;
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  #page-establish h2 {
    font-size: 28px;
    margin: 36px 5% 24px;
  }
}
#page-establish .top-image {
  display: block;
  margin: 0 9% 32px;
  width: 84%;
}
@media screen and (max-width: 768px) {
  #page-establish .top-image {
    width: 90%;
    margin: 0 5%;
  }
}
#page-establish .establish {
  display: flex;
  flex-wrap: wrap;
  margin-top: 96px;
}
@media screen and (max-width: 768px) {
  #page-establish .establish {
    margin-top: 32px;
  }
}
#page-establish .establish.align {
  align-items: center;
}
#page-establish .establish .image {
  width: 37%;
  margin: 0 2% 0 11%;
}
@media screen and (max-width: 768px) {
  #page-establish .establish .image {
    width: 90%;
    margin: 0 auto;
  }
}
#page-establish .establish .image img {
  width: 100%;
  border-radius: 32px;
}
#page-establish .establish .text {
  width: 42%;
  margin: 0 6% 0 2%;
  line-height: 2.2;
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  #page-establish .establish .text {
    width: 90%;
    margin: 16px auto 0;
    font-size: 16px;
    line-height: 1.7;
  }
}
#page-establish .establish .text .top {
  display: flex;
  font-size: 40px;
  font-weight: var(--Bold);
  color: var(--theme-color);
  align-items: center;
}
@media screen and (max-width: 768px) {
  #page-establish .establish .text .top {
    font-size: 24px;
  }
}
#page-establish .establish .text .top::before {
  display: inline-block;
  content: "";
  width: 24px;
  height: 24px;
  background-color: var(--theme-color);
  border-radius: 4px;
  margin: 4px 8px 0 0;
}
#page-establish .services {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 72px;
  margin: 108px 8%;
}
@media screen and (max-width: 768px) {
  #page-establish .services {
    grid-template-columns: 1fr;
    margin: 64px 8% 96px;
    gap: 36px;
  }
}
#page-establish .services .service .image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  margin-bottom: 8px;
  border-radius: 32px;
}
#page-establish .services .service .text {
  display: flex;
  align-items: center;
}
#page-establish .services .service .text::after {
  display: block;
  content: "";
  width: 6px;
  height: 6px;
  border-top: 2px solid var(--theme-color);
  border-right: 2px solid var(--theme-color);
  transform: rotate(45deg);
  margin-left: 5px;
  margin-top: 2px;
}

#page-contact {
  margin-top: 64px;
}
@media screen and (max-width: 768px) {
  #page-contact {
    margin-top: 32px;
  }
}
#page-contact .title-wrap {
  color: var(--theme-color);
  text-align: center;
  margin-bottom: 40px;
  font-weight: var(--Bold);
}
@media screen and (max-width: 768px) {
  #page-contact .title-wrap {
    margin-bottom: 40px;
  }
}
#page-contact .title-wrap .title {
  font-size: 48px;
  padding-bottom: 12px;
}
@media screen and (max-width: 768px) {
  #page-contact .title-wrap .title {
    font-size: 36px;
  }
}
#page-contact .title-wrap .sub-title {
  width: 240px;
  border-top: 1px solid var(--theme-color);
  padding-top: 16px;
  font-size: 24px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  #page-contact .title-wrap .sub-title {
    font-size: 16px;
  }
}
#page-contact .top {
  font-size: 24px;
  text-align: center;
  margin: 0 5% 32px;
}
@media screen and (max-width: 768px) {
  #page-contact .top {
    text-align: left;
    font-size: 20px;
  }
}
#page-contact .explanation {
  width: fit-content;
  margin: 48px auto 64px;
}
@media screen and (max-width: 768px) {
  #page-contact .explanation {
    text-align: left;
    margin: 0 5% 32px;
  }
}
#page-contact input[type=text], #page-contact input[type=email], #page-contact input[type=tel], #page-contact textarea {
  width: 100%;
  border: 1px solid #d9d5d5;
  border-radius: 10px;
  padding: 1em;
  box-sizing: border-box;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  #page-contact input[type=text], #page-contact input[type=email], #page-contact input[type=tel], #page-contact textarea {
    padding: 0.5em;
  }
}
#page-contact textarea {
  height: 300px;
}
#page-contact .wpcf7-list-item:first-child {
  margin: 0;
}
#page-contact .sent-now {
  pointer-events: none;
  opacity: 0.3;
  cursor: auto;
}
#page-contact .wpcf7-spinner {
  display: block;
  margin: 24px auto;
}
@media screen and (max-width: 768px) {
  #page-contact .wpcf7-spinner {
    margin: 12px auto;
  }
}
#page-contact .wpcf7-response-output {
  text-align: center;
}
#page-contact #contact-inner {
  max-width: calc(var(--min-window) - 64px);
  background-color: #f8f7f7;
  margin: 0 auto 96px;
  padding: 32px;
}
@media screen and (max-width: 768px) {
  #page-contact #contact-inner {
    margin: 0;
    padding: 32px 8%;
  }
}
#page-contact #contact-inner .item {
  display: flex;
  width: calc(100% - 96px);
  border-top: 2px solid #edebeb;
  flex-wrap: wrap;
  padding: 48px 48px;
}
@media screen and (max-width: 768px) {
  #page-contact #contact-inner .item {
    width: 100%;
    padding: 24px 0;
  }
}
#page-contact #contact-inner .item.bottom {
  border-bottom: 2px solid #edebeb;
}
#page-contact #contact-inner .item .left {
  display: flex;
  width: 26%;
  align-items: center;
  justify-content: space-between;
  margin-right: 8%;
}
@media screen and (max-width: 768px) {
  #page-contact #contact-inner .item .left {
    width: fit-content;
    margin: 0 0 16px;
  }
}
#page-contact #contact-inner .item .left.base {
  align-items: baseline;
}
#page-contact #contact-inner .item .left.required::after {
  content: "必須";
  color: #fff;
  background-color: #d32d26;
  border-radius: 10px;
  padding: 4px 24px;
}
@media screen and (max-width: 768px) {
  #page-contact #contact-inner .item .left.required::after {
    content: "必須";
    color: #fff;
    background-color: #d32d26;
    border-radius: 10px;
    padding: 2px 12px;
    margin-left: 16px;
    font-size: 12px;
  }
}
#page-contact #contact-inner .item .right {
  width: 66%;
}
@media screen and (max-width: 768px) {
  #page-contact #contact-inner .item .right {
    width: 100%;
  }
}
#page-contact #contact-inner .submit {
  display: none;
}
#page-contact #contact-inner .button {
  display: block;
  position: relative;
  width: 400px;
  color: #fff;
  background-color: var(--theme-color);
  margin: 48px auto 0;
  text-align: center;
  font-size: 24px;
  font-weight: var(--Bold);
  padding: 12px 0;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #page-contact #contact-inner .button {
    width: 90%;
    font-size: 16px;
    margin: 32px auto 0;
  }
}
#page-contact #contact-inner .button::after {
  position: absolute;
  content: "";
  width: 19px;
  height: 12px;
  right: 24px;
  top: 0;
  bottom: 0;
  background-image: url("./images/arrow2.png");
  background-size: cover;
  margin: auto;
}

#single-news .inner {
  max-width: 1000px;
  margin: 48px auto;
}
#single-news .inner article {
  margin: 0 5%;
}
#single-news .inner article .article-eye-catch {
  margin-bottom: 48px;
}
#single-news .inner article .article-eye-catch img {
  max-width: 100%;
  height: auto;
}
#single-news .inner article .article-title {
  color: var(--theme-color);
  font-size: 32px;
  font-weight: var(--Bold);
}
@media screen and (max-width: 768px) {
  #single-news .inner article .article-title {
    font-size: 24px;
  }
}
#single-news .inner article .article-content {
  line-height: 2;
}
#single-news .inner .button {
  display: block;
  position: relative;
  width: 400px;
  color: #fff;
  background-color: var(--theme-color);
  margin: 48px auto 0;
  text-align: center;
  font-size: 24px;
  font-weight: var(--Bold);
  padding: 12px 0;
  border-radius: 8px;
  border: none;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  #single-news .inner .button {
    width: 90%;
    font-size: 16px;
    margin: 32px auto 0;
  }
}
#single-news .inner .button::after {
  position: absolute;
  content: "";
  width: 19px;
  height: 12px;
  right: 24px;
  top: 0;
  bottom: 0;
  background-image: url("./images/arrow2.png");
  background-size: cover;
  margin: auto;
}

#archive-news h2 {
  color: var(--theme-color);
  background-color: #fff7e0;
  margin: 72px 8% 48px;
  padding: 8px 0;
  text-align: center;
  font-size: 36px;
}
@media screen and (max-width: 768px) {
  #archive-news h2 {
    font-size: 28px;
    margin: 36px 5% 24px;
  }
}
#archive-news .inner {
  margin: 48px 8%;
}
#archive-news .inner .news-list article {
  border-bottom: 1px solid #aaa;
  padding: 16px 0;
}
#archive-news .inner .news-list article:first-child {
  border-top: 1px solid #aaa;
}
#archive-news .inner .news-list article a {
  display: flex;
  position: relative;
  align-items: center;
}
#archive-news .inner .news-list article a .article-eye-catch {
  margin-right: 24px;
}
@media screen and (max-width: 768px) {
  #archive-news .inner .news-list article a .article-eye-catch {
    margin-right: 16px;
  }
}
#archive-news .inner .news-list article a .article-eye-catch img {
  width: 80px;
  height: 80px;
  aspect-ratio: 1/1;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  #archive-news .inner .news-list article a .article-eye-catch img {
    width: 60px;
    height: 60px;
  }
}
#archive-news .inner .news-list article a .article-information .article-date {
  font-size: 14px;
  color: var(--theme-color);
}
#archive-news .inner .news-list article a .article-information .article-title {
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  #archive-news .inner .news-list article a .article-information .article-title {
    font-size: 16px;
  }
}
@media screen and (min-width: 769px) {
  #archive-news .inner .news-list article a::after {
    display: block;
    content: "";
    width: 20px;
    height: 20px;
    border-top: 1px solid #aaa;
    border-right: 1px solid #aaa;
    transform: rotate(45deg);
    margin-left: auto;
  }
}
#archive-news .inner .pagination {
  margin: 32px auto;
  text-align: center;
}
#archive-news .inner .pagination .page-numbers {
  display: inline-flex;
  width: 40px;
  height: 40px;
  color: #fff;
  background-color: var(--theme-color);
  font-size: 20px;
  font-weight: var(--Bold);
  justify-content: center;
  align-items: center;
  border-radius: 8px;
}
#archive-news .inner .pagination .page-numbers.current {
  color: var(--theme-color);
  background-color: #fff;
  border: 1px solid var(--theme-color);
}
