@charset "UTF-8";
:root {
  /* font */
  --accent-font: "Zen Maru Gothic", serif;

  /* color */
  --white-color: #fff;
  --black-color: #333333;
  --text-accent-color: #1f5180;
  --text-accent-color02: #002673;
  --text-accent-color03: #002e5d;
  --bg-color: #ebebeb;
  --bg-color02: #cddddf;
  --bg-color03: #aebbc5;
  --accent-color: #80a28e;
  --accent-color02: #6e80c3;
  --accent-color03: #e2c747;
  --accent-color04: #80b0c7;
  --accent-color05: #86c1ab;
  --default-shadow: 2px 2px 4px 0px rgba(170, 170, 170, 0.16);
  --main-gradation: linear-gradient(
      90deg,
      rgb(171, 205, 211),
      rgba(141, 206, 175, 0.3)
    )
    no-repeat center / cover;

  /* z-index */
  --z-index-back: -1;
  --z-index-default: 1;
  --z-index-deco: 100;
  --z-index-header: 200;
  --z-index-modal: 300;

  /* content */
  --content-width-xs: 800px;
  --content-width-sm: 920px;
  --content-width: 1040px;
  --content-width-lg: 1200px;
}
.l_main {
  background: var(--bg-color);
}

.top_mv {
  overflow: hidden;
  height: 100vh;
  max-height: 70vmin;
  background: url(../img/main.png) bottom/cover;
  position: relative;
}
@media screen and (max-width: 1079px) {
  .top_mv {
    max-height: 45vh;
  }
}
@media screen and (max-width: 767px) {
  .top_mv {
    height: 55vh;
    max-height: 60vh;
  }
}

.top_mv-syacho_img {
  max-height: 70vmin;
  position: absolute;
  bottom: 0;
}
@media screen and (max-width: 767px) {
  .top_mv-syacho_img {
    max-height: none;
    height: 50vh;
    -o-object-position: 70% bottom;
    object-position: 70% bottom;
  }
}

.top_mv-feature {
  position: absolute;
  bottom: 0;
  right: 0;
  -o-object-fit: cover;
  object-fit: cover;
}
@media screen and (max-width: 767px) {
  .top_mv-feature {
    scale: 1.1;
    translate: 0 -3%;
  }
}

.top_mv-copy {
  width: 60%;
  max-width: 520px;
  font-family: "Zen Maru Gothic", serif;
  position: absolute;
  bottom: 50%;
  left: 40%;
  translate: -40% -50%;
}
@media screen and (max-width: 1200px) {
  .top_mv-copy {
    bottom: 40%;
    left: 40%;
    translate: -50% -50%;
  }
}
@media screen and (max-width: 1079px) {
  .top_mv-copy {
    width: 40%;
  }
}
@media screen and (max-width: 767px) {
  .top_mv-copy {
    width: 70%;
    bottom: auto;
    top: 15%;
    font-size: 2.4rem;
  }
}

.top_mv-cta {
  width: 40%;
  position: absolute;
  bottom: 24px;
  right: 10%;
  z-index: var(--z-index-default);
}
@media screen and (max-width: 1079px) {
  .top_mv-cta {
    bottom: 8px;
  }
}
@media screen and (max-width: 767px) {
  .top_mv-cta {
    width: 100%;
    bottom: 0;
    right: 0;
    padding: 0 7%;
  }
}

.top_mv-cta_tag {
  display: inline-block;
  padding: 4px 16px;
  border: 1px solid var(--white-color);
  font-size: 1.6rem;
  font-family: "Zen Maru Gothic", serif;
  color: var(--white-color);
}
@media screen and (max-width: 1079px) {
  .top_mv-cta_tag {
    font-size: 12px;
    white-space: nowrap;
    padding: 0 8px;
  }
}
@media screen and (max-width: 767px) {
  .top_mv-cta_tag {
    font-size: 10px;
  }
}

.top_mv-cta_text-img {
  margin-top: 16px;
}
@media screen and (max-width: 1079px) {
  .top_mv-cta_text-img {
    margin-top: 8px;
  }
}
@media screen and (max-width: 767px) {
  .top_mv-cta_text-img {
    margin-top: 0;
    width: 70%;
    padding-bottom: 8px;
  }
}

.top_mv_btn-wrap {
  margin-top: 16px;
  position: absolute;
  bottom: 0;
  right: 0;
  translate: 0 20%;
}
@media screen and (max-width: 767px) {
  .top_mv_btn-wrap {
    translate: -30% -20%;
  }
}

@media screen and (max-width: 1079px) {
  .top_mv_btn-wrap .m_btn {
    padding: 0 16px;
    min-width: 160px;
    font-size: 12px;
  }
}
@media screen and (max-width: 767px) {
  .top_mv_btn-wrap .m_btn {
    min-width: auto;
    font-size: 10px;
    padding: 0 32px;
  }
}

.top_mv_btn-wrap .m_btn::before {
  width: 34px;
}

.top_chiba-tv {
  padding-top: 40px;
}

.top_chiba-tv_title {
  font-family: var(--accent-font);
  font-weight: 500;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 16px;
  color: var(--text-accent-color03);
}

.top_chiba-tv_title__accent {
  max-width: 480px;
  display: block;
  margin-inline: auto;
}

.top_banner {
  padding-top: 40px;
}

.top_banner_link {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
}

.top_about {
  position: relative;
}

.top_about:after {
  content: "";
  position: absolute;
  width: 40%;
  z-index: var(--z-index-deco);
}
@media screen and (max-width: 767px) {
  .top_about:after {
    width: 60%;
  }
}

.top_about:after {
  aspect-ratio: 787/519;
  background: url(../img/leaf01.png) no-repeat center/cover;
  bottom: 0;
  right: 0;
  translate: 0 50%;
}

.top_about .m_section-heading {
  position: relative;
  z-index: var(--z-index-default);
}

.top_about-intro {
  margin-top: 56px;
  display: flex;
}
@media screen and (max-width: 1079px) {
  .top_about-intro {
    margin-top: -56px;
    flex-direction: column;
    gap: 24px;
  }
}

.top_about-intro_img-wrap {
  width: 40%;
}
@media screen and (max-width: 1079px) {
  .top_about-intro_img-wrap {
    width: 60%;
  }
}
@media screen and (max-width: 767px) {
  .top_about-intro_img-wrap {
    width: 70%;
  }
}

.top_about-intro_text-wrap {
  width: 50%;
  margin-left: auto;
}
@media screen and (max-width: 1079px) {
  .top_about-intro_text-wrap {
    width: 90%;
    margin-inline: auto;
  }
}

.top_about-intro_heading {
  font-weight: bold;
  text-align: center;
  font-size: 2.4rem;
  line-height: 1.8;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_about-intro_heading {
    font-size: 1.8rem;
  }
}

.top_about-intro_heading::after,
.top_about-reason_item-heading::after {
  content: "";
  width: 40px;
  height: 6px;
  background: var(--accent-color);
  position: absolute;
  bottom: -32px;
  left: 50%;
  translate: -50% 0;
}

.top_about-intro_description {
  line-height: 2;
  margin-top: 64px;
}

.top_about-intro_mascot {
  position: relative;
}

.top_about-intro_mascot-img {
  max-width: 280px;
  position: absolute;
  bottom: 0;
  right: 0;
  translate: 10% 80%;
}
@media screen and (max-width: 767px) {
  .top_about-intro_mascot-img {
    bottom: auto;
    top: 100%;
    translate: 0;
  }
}

.top_about-reason {
  margin-top: 180px;
}
@media screen and (max-width: 767px) {
  .top_about-reason {
    margin-top: 320px;
  }
}

.top_about-reason_heading {
  width: 500px;
  margin-inline: auto;
}
@media screen and (max-width: 767px) {
  .top_about-reason_heading {
    width: 90%;
    max-width: 360px;
  }
}

.top_about-reason_list {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .top_about-reason_list {
    flex-direction: column;
    gap: 40px;
    width: 90%;
    margin-inline: auto;
  }
}

.top_about-reason_list-item {
  flex-shrink: 0;
  width: 28%;
}
@media screen and (max-width: 767px) {
  .top_about-reason_list-item {
    width: 100%;
  }
}

.top_about-reason_item-heading {
  text-align: center;
  font-weight: 500;
  font-size: 2.4rem;
  color: var(--text-accent-color02);
  position: relative;
}
@media screen and (max-width: 1079px) {
  .top_about-reason_item-heading {
    font-size: 1.8rem;
  }
}

.top_about-reason_item-heading::after {
  background: var(--accent-color02);
  position: absolute;
  bottom: -20px;
}

.top_about-reason_item-description {
  margin-top: 40px;
}

.top_service {
  overflow: hidden;
  position: relative;
  z-index: var(--z-index-default);
  clip-path: polygon(0 0, 100% 0, 100% 85%, 0% 100%);
}

/* .top_service:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-color02);
  transform: skewY(-7deg) translateY(-100px);
  z-index: var(--z-index-back);
} */

.top_service .l_contents {
  position: relative;
  z-index: var(--z-index-default);
}

.top_service-contents {
  margin-top: 32px;
  padding-bottom: 160px;
}

.top_example {
  padding-bottom: 160px;
  position: relative;
  z-index: var(--z-index-deco);
}

.top_example:before,
.top_example .l_container::after {
  content: "";
  position: absolute;
  width: 40%;
  z-index: var(--z-index-default);
  aspect-ratio: 787/519;
  background: url(../img/leaf02.png) no-repeat center/cover;
  top: 0;
  left: 0;
  translate: 0 -60%;
}
@media screen and (max-width: 1079px) {
  .top_example:before,
  .top_example .l_container::after {
    translate: 0 -90%;
  }
}
@media screen and (max-width: 767px) {
  .top_example:before,
  .top_example .l_container::after {
    width: 60%;
    top: -24px;
    translate: 0 -100%;
  }
}

/* .top_example:after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: var(--bg-color);
  transform: skewY(-7deg) translateY(-120px);
  z-index: var(--z-index-back);
} */

.top_example .l_container::after {
  background: url(../img/leaf03.png) no-repeat center/cover;
  aspect-ratio: 773/584;
  left: auto;
  top: auto;
  right: 0;
  bottom: 0;
  translate: 0;
}

.top_example-message {
  margin-top: 20px;
  text-align: center;
}

.top_example_list-title {
  margin-top: 48px;
  height: 72px;
}

.top_example .top_example_list-title:not(:first-of-type) {
  margin-top: 80px;
}

.top_example_list-title-img {
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.top_example_list {
  position: relative;
  z-index: var(--z-index-deco);
  margin-top: 40px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 64px 80px;
}
@media screen and (max-width: 767px) {
  .top_example_list {
    flex-direction: column;
  }
}

.top_example_item {
  width: calc((100% - 80px) / 2);
}
@media screen and (max-width: 767px) {
  .top_example_item {
    width: 100%;
  }
}

.top_example_item-head {
  font-size: 1.8rem;
  font-weight: 500;
  padding: 12px 48px 12px 24px;
  color: var(--text-accent-color);
  background: var(--bg-color03);
  position: relative;
}
@media screen and (max-width: 1079px) {
  .top_example_item-head {
    font-size: 1.6rem;
  }
}

/* .top_example_item-head::before,
.top_example_item-head::after {
  content: "";
  aspect-ratio: 1;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}

.top_example_item-head::before {
  width: 32px;
  background: var(--text-accent-color);
  right: 16px;
}

.top_example
  .top_example_list:nth-of-type(even)
  .top_example_item-head::before {
  background: var(--accent-color02);
}

.top_example_item-head::after {
  width: 8px;
  border: 1px solid var(--white-color);
  border-style: solid solid none none;
  rotate: 45deg;
  right: 30px;
} */

.top_example_img-wrap {
  display: block;
  width: 90%;
  margin: 8px auto;
}

.top_example_item-description {
  width: 80%;
  margin-inline: auto;
  margin-top: 16px;
}

.top_example_btn-wrap {
  margin-top: 64px;
  text-align: center;
}

.top_media-wrap {
  padding-top: 100px;
  background-color: #f5f5f7;
}

.top_media {
  color: var(--text-accent-color03);
  background: url(../img/bkg_1.png) top/cover;
  padding-bottom: 120px;
  position: relative;
  z-index: var(--z-index-deco);
}

.top_media p {
  font-family: "Zen Maru Gothic", serif;
}

.top_media .l_container {
  position: relative;
}

.top_media-heading {
  width: 40%;
  max-width: 200px;
  position: relative;
  left: 10%;
  bottom: 80%;
}
@media screen and (max-width: 767px) {
  .top_media-heading {
    bottom: 85%;
  }
}

.top_media-chiba-tv {
}

.top_media-chiba-tv_text {
  font-weight: 500;
  text-align: center;
  font-size: 2rem;
  margin-bottom: 40px;
}
@media screen and (max-width: 767px) {
  .top_media-chiba-tv_text {
    font-size: 1.8rem;
  }
}

.top_media-chiba-tv_text__accent {
  font-size: 2.8rem;
  display: block;
  position: relative;
  z-index: var(--z-index-default);
}
@media screen and (max-width: 767px) {
  .top_media-chiba-tv_text__accent {
    font-size: 2.4rem;
  }
}

.top_media-chiba-tv_text__accent::before {
  background: linear-gradient(
      90deg,
      rgb(171, 205, 211),
      rgba(141, 206, 175, 0.3)
    )
    no-repeat center/cover;
  content: "";
  width: 16em;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 50%;
  translate: -50% 0;
  z-index: var(--z-index-back);
}

.top_teikoku-data {
  display: flex;
  justify-content: center;
  align-items: end;
}
@media screen and (max-width: 767px) {
  .top_teikoku-data {
    flex-direction: column;
    align-items: center;
  }
}

.top_teikoku-data_text-group {
  width: 40%;
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .top_teikoku-data_text-group {
    margin-top: 80px;
    width: 100%;
  }
}

.top_teikoku-data_text {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  line-height: 2;
}
@media screen and (max-width: 767px) {
  .top_teikoku-data_text {
    font-size: 1.8rem;
  }
}

.top_teikoku-data_text__accent {
  display: inline-block;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.8rem;
  position: relative;
  z-index: var(--z-index-default);
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  .top_teikoku-data_text__accent {
    font-size: 2.4rem;
  }
}

.top_teikoku-data_text__accent::before {
  background: linear-gradient(
      90deg,
      rgb(171, 205, 211),
      rgba(141, 206, 175, 0.3)
    )
    no-repeat center/cover;
  content: "";
  width: calc(100vw - 50%);
  height: 50%;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: var(--z-index-back);
}
@media screen and (max-width: 767px) {
  .top_teikoku-data_text__accent::before {
    width: calc(100vw - 5%);
  }
}

.top_teikoku-data_img-wrap {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .top_teikoku-data_img-wrap {
    width: 90%;
  }
}

.top_teikoku-data_btn-wrap {
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  margin-top: 40px;
  margin-left: auto;
}
@media screen and (max-width: 767px) {
  .top_teikoku-data_btn-wrap {
    margin-top: 24px;
  }
}

.top_media-inner {
  margin-top: 80px;
  padding: 40px 0;
  position: relative;
}

.top_media-inner::before {
  content: "";
  position: absolute;
  width: 20%;
  aspect-ratio: 288/303;
  background: url(../img/leaf04.png) no-repeat center/cover;
  top: 0;
  left: 0;
  translate: -50% -50%;
  z-index: var(--z-index-default);
}

.top_media-publication {
  position: relative;
}

.top_media-publication_heading {
  max-width: 200px;
  width: 40%;
  position: absolute;
  top: 0;
  right: 32px;
  translate: 0 -100%;
}
@media screen and (max-width: 767px) {
  .top_media-publication_heading {
    top: -12px;
    right: 16px;
  }
}

.top_media-publication_contents {
  padding-top: 40px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top_media-publication_contents {
    flex-direction: column;
    gap: 24px;
    margin-top: 0;
  }
}

.top_media-publication_contents.reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .top_media-publication_contents.reverse {
    flex-direction: column;
  }
}

.top_media-publication_contents:not(:first-of-type) {
  margin-top: 64px;
}
@media screen and (max-width: 767px) {
  .top_media-publication_contents:not(:first-of-type) {
    margin-top: 40px;
  }
}

.top_media-publication_img-group {
  padding-left: 5%;
  width: 45%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  .top_media-publication_img-group {
    width: 80%;
    padding-left: 0;
    padding-right: 0;
  }
}

.top_media-publication_contents.reverse .top_media-publication_img-group {
  padding-right: 5%;
  padding-left: 0;
}

.top_media-publication_amazon-info {
  width: 80%;
}
@media screen and (max-width: 767px) {
  .top_media-publication_amazon-info {
    display: none;
  }
}

.top_media-publication_text-group {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
  width: 55%;
}
@media screen and (max-width: 767px) {
  .top_media-publication_text-group {
    display: contents;
  }
}

.top_media-publication_title-wrap {
  width: 85%;
}
@media screen and (max-width: 767px) {
  .top_media-publication_title-wrap,
  .top_media-publication_title {
    order: -1;
  }
}

.top_media-publication_title {
  width: 80%;
}

.top_media-publication_memo {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .top_media-publication_memo {
    font-size: 1.6rem;
  }
}

.top_media-publication_title {
  margin-top: 8px;
}

@media screen and (max-width: 767px) {
  .top_media-publication_description {
    order: -1;
  }
}

.top_media-publication_award {
  width: 80%;
}

.top_media-publication_btn-wrap {
  display: block;
}

.top_media-other {
  margin-top: 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 40px;
}

.top_media-other_heading-wrap {
  margin: 0 8%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 24px;
  padding: 12px 0;
  border: 1px var(--text-accent-color03);
  border-style: solid none;
  position: relative;
}

.top_media-other_heading-wrap::before {
  content: "";
  position: absolute;
  width: 20px;
  aspect-ratio: 1;
  background: var(--white-color);
  border-right: 1px solid var(--text-accent-color03);
  rotate: 45deg;
  top: 100%;
  left: 50%;
  translate: -50% 3%;
  transform-origin: top right;
}

.top_media-other_heading-icon {
  max-width: 40px;
}

.top_media-other_heading {
  font-size: 1.4rem;
  line-height: 1.4;
  font-weight: 500;
}

.top_media-other_heading__accent {
  display: block;
  color: #e28e1d;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .top_media-other_heading__accent {
    font-size: 1.8rem;
  }
}

.top_media-other_youtube-wrap {
  margin-inline: auto;
}

.top_media-other_youtube-wrap {
  width: 90%;
}

.top_media-other_youtube {
  aspect-ratio: 560/315;
}
@media screen and (max-width: 767px) {
  .top_media-other_youtube {
    max-height: 200px;
  }
}

.top_media-other_news-paper-wrap {
  padding: 0 10%;
  display: flex;
  justify-content: center;
  gap: 5%;
}
@media screen and (max-width: 767px) {
  .top_media-other_news-paper-wrap {
    padding: 0;
  }
}

.top_media-other_news-paper01 {
  width: 30%;
}
@media screen and (max-width: 767px) {
  .top_media-other_news-paper01 {
    width: 35%;
  }
}

.top_media-other_news-paper02 {
  width: 50%;
}
@media screen and (max-width: 767px) {
  .top_media-other_news-paper02 {
    width: 55%;
  }
}

.top_media-other_kenbiya-wrap {
  margin-left: 8%;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .top_media-other_kenbiya-wrap {
    flex-direction: column;
    gap: 1em;
  }
}

.top_media-other_kenbiya-img-wrap {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .top_media-other_kenbiya-img-wrap {
    width: 100%;
    padding-right: 8%;
  }
}

.top_media-other_kenbiya-text-wrap {
  width: 40%;
  text-align: center;
  font-weight: 500;
  font-size: 2rem;
}
@media screen and (max-width: 767px) {
  .top_media-other_kenbiya-text-wrap {
    order: -1;
    width: 100%;
    font-size: 1.8rem;
  }
}

.top_media-other_kenbiya-btn-wrap {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .top_media-other_kenbiya-btn-wrap {
    margin-top: 1em;
    margin-right: 40px;
    display: block;
    width: -moz-fit-content;
    width: -webkit-fit-content;
    width: fit-content;
    margin-left: auto;
  }
}

.top_column {
  position: relative;
}

.top_column::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 120%;
  background: url(../img/bkg_2.png) center/cover;
  z-index: var(--z-index-default);
  top: -20%;
}

.top_column .l_container {
  position: relative;
  z-index: var(--z-index-deco);
}

.top_column_heading-intro {
  display: block;
  text-align: center;
  font-family: "Zen Maru Gothic", serif;
  color: var(--text-accent-color);
}

.top_column .m_section-heading {
  position: relative;
}

.top_column .m_section-heading::before,
.top_column .m_section-heading:after {
  z-index: var(--z-index-default);
  width: 10%;
  position: absolute;
  content: "";
  translate: 0 -50%;
}

.top_column .m_section-heading::before {
  background: url(../img/leaf06.png) no-repeat center/cover;
  aspect-ratio: 143/140;
  left: 10%;
  top: 10%;
}
@media screen and (max-width: 1079px) {
  .top_column .m_section-heading::before {
    left: 0;
    top: 50%;
    translate: 0 -50%;
    width: 10%;
  }
}
@media screen and (max-width: 767px) {
  .top_column .m_section-heading::before {
    width: 20%;
  }
}

.top_column .m_section-heading:after {
  background: url(../img/leaf07.png) no-repeat center/cover;
  aspect-ratio: 143/134;
  right: 10%;
  bottom: 0;
}
@media screen and (max-width: 1079px) {
  .top_column .m_section-heading:after {
    width: 10%;
    right: 0;
    top: 50%;
    translate: 0 -50%;
    bottom: auto;
  }
}
@media screen and (max-width: 767px) {
  .top_column .m_section-heading:after {
    width: 20%;
  }
}

.top_column-posts_heading,
.top_column_posts-category {
  font-size: 20px;
  color: var(--text-accent-color03);
  font-weight: bold;
  margin-bottom: 24px;
}

.top_column-posts_heading::after,
.top_column_posts-category::after {
  content: "";
  display: block;
  background: var(--text-accent-color03);
  width: 36px;
  height: 5px;
  left: 0;
  margin-top: 8px;
}

.top_column_posts-category::after {
  background: var(--accent-color02);
}

.top_column-new-posts {
  margin-top: 64px;
}

.top_column_btn-wrap {
  text-align: center;
  margin-top: 40px;
}

.top_column_btn-wrap .m_btn-wrap {
  width: 100%;
  max-width: 280px;
}

.top_column_btn-wrap .m_btn {
  padding: 8px 0;
  width: 100%;
  min-width: auto;
  font-size: 14px;
  font-weight: bold;
}

.top_column_btn-wrap .m_btn::before,
.top_column_btn-wrap .m_btn::after {
  content: none;
}

.top_topics {
  position: relative;
  padding-bottom: 24px;
}

.top_topics::after {
  content: "";
  width: clamp(160px, 25.9259259259vw, 280px);
  aspect-ratio: 385/181;
  background: url(../img/t_6_1.png) center/cover;
  position: absolute;
  bottom: 0;
  right: 5%;
}
@media screen and (max-width: 767px) {
  .top_topics::after {
    right: 50%;
    translate: 50% 0;
  }
}

.top_topics-body {
  margin-top: 24px;
}

.top_contact {
  position: relative;
  padding-bottom: 64px;
}

.top_contact::after {
  content: "";
  width: 20%;
  aspect-ratio: 443/316;
  background: url(../img/t_7_2.png) no-repeat center/contain;
  position: absolute;
  bottom: 0;
  right: 10%;
}
@media screen and (max-width: 767px) {
  .top_contact::after {
    width: 45%;
  }
}

.top_contact .l_container {
  position: relative;
  z-index: var(--z-index-deco);
}

.top_contact_message-group {
  margin-top: 16px;
  text-align: center;
}

.top_contact_message {
  line-height: 2.4;
  font-weight: 500;
  font-size: 14px;
  font-family: "Zen Maru Gothic", serif;
  text-decoration: underline;
  text-underline-offset: -0.2em;
  text-decoration-thickness: 0.6em;
  -webkit-text-decoration-color: var(--bg-color02);
  text-decoration-color: var(--bg-color02);
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}
@media screen and (max-width: 767px) {
  .top_contact_message {
    line-height: 2;
  }
}

.top_contact-tel {
  margin-top: 40px;
  padding: 32px 10%;
  background: linear-gradient(
      90deg,
      rgb(171, 205, 211),
      rgba(141, 206, 175, 0.3)
    )
    no-repeat center/cover;
  position: relative;
}

.top_contact-tel::after {
  content: "";
  background: url(../img/leaf05.png) no-repeat right/contain;
  width: 40%;
  aspect-ratio: 782/645;
  position: absolute;
  top: 0;
  right: 0;
  translate: 0 -60%;
  z-index: var(--z-index-default);
}
@media screen and (max-width: 1079px) {
  .top_contact-tel::after {
    top: -10%;
    translate: 0 -100%;
  }
}
@media screen and (max-width: 767px) {
  .top_contact-tel::after {
    width: 50%;
    top: -80%;
  }
}

.top_contact-tel_inner {
  padding: 40px 0;
  border: 1px var(--text-accent-color02);
  border-style: solid none;
  display: flex;
  justify-content: center;
  gap: 64px;
}
@media screen and (max-width: 767px) {
  .top_contact-tel_inner {
    padding: 24px 0;
    flex-direction: column;
    gap: 24px;
  }
}

.top_contact-tel_text {
  color: var(--text-accent-color03);
  font-weight: bold;
  margin-top: 0.5rem;
}
@media screen and (max-width: 767px) {
  .top_contact-tel_text {
    font-size: 1.8rem;
  }
}

.top_contact-tel_text::after {
  content: "";
  display: block;
  background: var(--text-accent-color03);
  width: 30px;
  height: 4px;
  left: 0;
  margin-top: 8px;
}

.top_contact-tel_number {
  font-weight: bold;
  font-size: 4rem;
  height: -moz-fit-content;
  height: -webkit-fit-content;
  height: fit-content;
  line-height: 1;
  position: relative;
}
@media screen and (max-width: 767px) {
  .top_contact-tel_number {
    font-size: 2.4rem;
  }
}

.top_contact-tel_number::before {
  content: "";
  width: 3.5rem;
  aspect-ratio: 57/42;
  background: url(../img/tel.png) no-repeat center/cover;
  position: absolute;
  bottom: 0;
  left: -8px;
  translate: -100% -10%;
}
@media screen and (max-width: 767px) {
  .top_contact-tel_number::before {
    display: inline-block;
    position: static;
    left: 0;
    translate: 0;
    margin-right: 8px;
  }
}

.top_contact-tel_opening-hours {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0;
}
@media screen and (max-width: 767px) {
  .top_contact-tel_opening-hours {
    font-size: 13px;
    margin-left: calc(3.5rem + 8px);
  }
}

/************************************
** お問い合わせ
************************************/
input[type="text"],
input[type="password"],
input[type="date"],
input[type="datetime"],
input[type="email"],
input[type="number"],
input[type="search"],
input[type="tel"],
input[type="time"],
input[type="url"],
textarea,
select,
.search-edit {
  padding: 11px;
  border: 1px solid #ccc;
  border-radius: 8px;
  width: 100%;
  background: var(--white-color);
}

input {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
  appearance: checkbox;
}

input[type="checkbox"] {
  scale: 1.3;
}

.spam1 {
  margin-right: 4px;
}

.wpcf7 {
  max-width: var(--content-width-xs);
  width: 80%;
  margin-inline: auto;
}

.inquiry {
  padding: 30px;
}

.inquiry .item-box {
  margin-bottom: 2em;
}

.inquiry .item-box .header-item,
.inquiry .item-box .item {
  margin-bottom: 4px;
}

.header-item {
  display: flex;
  align-items: center;
  gap: 16px;
}

.header-item span {
  font-weight: bold;
}

.wpcf7-list-item {
  margin-bottom: 5px;
}

.button-tap label {
  background: #999;
  color: var(--white-color);
  padding: 5px 10px;
  border-radius: 5px;
}

span.haveto,
span.any {
  color: var(--white-color);
  font-size: 0.8em;
  padding: 1px 0;
  width: 48px;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
}

span.haveto {
  background: #ff9800;
}

span.any {
  background: #03a9f4;
}

span.attension {
  font-size: 0.8em;
}

.inquiry-table td {
  background-color: var(--white-color);
  border: 1px solid #e6e6e6;
  padding: 20px;
}

.inquiry-table td .caption {
  line-height: 1.2;
  font-size: 14px;
  margin-top: 10px;
}

.back_button-wrap,
.submit-btn-wrap {
  margin-top: 1em;
  margin-inline: auto;
  width: -moz-fit-content;
  width: -webkit-fit-content;
  width: fit-content;
  min-width: 240px;

  color: var(--text-accent-color);
  position: relative;
  z-index: var(--z-index-default);
}

.submit-btn-wrap::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background: var(--bg-color02);
  border-radius: 100vh;
  top: 0;
  left: 0;
  translate: 3px 3px;
  transition: 0.3s;
  z-index: var(--z-index-back);
}

@media (hover: hover) {
  .submit-btn-wrap:hover.submit-btn-wrap::before {
    translate: 0;
  }
}
.confirm_button,
.back_button,
input[type="submit"] {
  width: 280px;
  color: var(--text-accent-color);
  border: 1px solid var(--text-accent-color);
  border-radius: 100vh;
  padding: 12px 0;
  position: relative;
  z-index: var(--z-index-default);
  background: transparent;
}

@media screen and (max-width: 767px) {
  .wpcf7 {
    width: 100%;
  }
  .inquiry-table th,
  .inquiry-table td {
    padding: 10px;
  }

  input[type="submit"] {
    width: 100%;
  }
}
.confirm_area .wpcf7-spinner,
.wpcf7-spinner {
  display: none;
}

/*確認画面と完了画面を非表示*/
.confirm_area,
.thanks_area {
  display: none;
  padding-top: 64px;
  padding-bottom: 64px;
  max-width: var(--content-width-xs);
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .confirm_area,
  .thanks_area {
    width: 80%;
  }
}

/*デフォルトのサンクスメッセージを非表示*/
.wpcf7-response-output {
  display: none;
}

.confirm_button:disabled {
  cursor: not-allowed;
}

.confirm_area h2,
.thanks_area h2 {
  text-align: center;
  font-weight: bold;
  font-size: 20px;
  margin-bottom: 1em;
}

.confirm_area p,
.thanks_area p {
  text-align: center;
  margin-bottom: 3em;
}

.confirm_area span {
  display: block;
  font-weight: bold;
  margin-bottom: 2em;
}

.back_button-wrap {
}

.back_button {
  font-size: 20px;
  background: var(--bg-color);
}

.back_button:hover {
  cursor: pointer;
}

/* ==============================================
--------    youtube
============================================== */
.youtube_wrapper {
  margin-inline: auto;
  width: 100%;
  max-width: 640px;
  margin: 0 auto;
}

.youtube {
  position: relative;
  width: 100%;
  aspect-ratio: 560/315;
}

.player {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
}

.thumb {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  pointer-events: visible;
}

.is-hidden {
  visibility: hidden;
}
