@charset "UTF-8";
.sp {
  display: none;
}
@media (max-width: 580px) {
  .sp {
    display: block;
  }
}

.sp3 {
  display: none;
}
@media (max-width: 375px) {
  .sp3 {
    display: block;
  }
}

body {
  font-size: 18px;
  font-family: YuGothic, "Yu Gothic", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  font-weight: 600;
  color: #333333;
  line-height: 1.75em;
  max-width: 1920px;
  overflow-x: hidden;
  margin: 0 auto;
  letter-spacing: 0.1em;
  overflow-wrap: break-word;
}
@media (max-width: 1024px) {
  body {
    font-size: 14px;
  }
}
@media (max-width: 580px) {
  body {
    font-size: 12px;
  }
}

header#header {
  background-color: #ece5de;
  padding: 0 4%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 0;
  width: 100%;
  z-index: 99999;
  max-width: 1920px;
}
@media (max-width: 768px) {
  header#header {
    padding: 5px 4%;
  }
}
header#header h1 {
  font-weight: 600;
  font-size: 20px;
}
header#header #nav {
  margin: 1em 0;
  width: 60%;
}
@media (max-width: 1440px) {
  header#header #nav {
    width: 80%;
  }
}
@media (max-width: 768px) {
  header#header #nav {
    width: 100%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, 0%);
    position: absolute;
    display: none;
    transition: all 0.5s;
  }
  header#header #nav.is-active {
    display: block;
    animation: appear 0.5s ease;
  }
}
header#header #nav ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  header#header #nav ul {
    flex-direction: column;
    height: 50vh;
    background-color: #ece5de;
    justify-content: inherit;
    gap: 10%;
    padding-top: 10%;
  }
}
header#header #nav ul li.join a {
  background-color: #ddc7b2;
  padding: 10px 25px;
  border-radius: 30px;
}
header#header #nav ul li.contact a {
  color: #fff;
  background-color: #be882f;
  padding: 10px 25px;
  border-radius: 30px;
}
header#header #nav_btn {
  display: none;
}
@media (max-width: 768px) {
  header#header #nav_btn {
    display: block;
    position: relative;
    padding: 15px;
    box-sizing: border-box;
  }
  header#header #nav_btn span {
    position: absolute;
    width: 30px;
    height: 2px;
    background-color: #be882f;
    inset: 50%;
    transform: translate(-50%, -50%);
  }
  header#header #nav_btn span:first-child {
    top: 20%;
    transition: all 0.5s;
  }
  header#header #nav_btn span:nth-child(2) {
    opacity: 1;
    transition: all 0.5s;
  }
  header#header #nav_btn span:last-child {
    top: 80%;
    transition: all 0.5s;
  }
  header#header #nav_btn.is-active span:first-child {
    transform: rotate(45deg);
    top: auto;
    transition: all 0.5s;
  }
  header#header #nav_btn.is-active span:nth-child(2) {
    opacity: 0;
    transition: all 0.5s;
  }
  header#header #nav_btn.is-active span:last-child {
    transform: rotate(-45deg);
    top: auto;
    transition: all 0.5s;
  }
}

main section {
  margin: 15% 0;
}
main section:first-child {
  margin-top: 0;
}
main section#top .top_wrap {
  display: flex;
}
main section#top .top_wrap_l {
  width: 35%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
main section#top .top_wrap_l .top_ttl {
  width: 90%;
  margin-left: auto;
}
@media (max-width: 1024px) {
  main section#top .top_wrap_l .top_ttl {
    margin-bottom: 10%;
  }
}
main section#top .top_wrap_l .top_ttl img {
  width: 50%;
}
main section#top .top_wrap_l .top_ttl span {
  font-size: 1.5em;
}
main section#top .top_wrap_l .top_ttl h2 {
  font-size: 2.5em;
  margin-top: 0.7em;
}
main section#top .top_wrap_l .top_txt {
  background-color: #ece5de;
  width: 90%;
  padding: 7% 2% 7% 7%;
  font-size: 0.9em;
  border-radius: 0 30px 30px 0;
}
@media (max-width: 1024px) {
  main section#top .top_wrap_l .top_txt {
    padding: 5% 0% 5% 5%;
    width: 100%;
  }
}
main section#top .top_wrap_r {
  width: 65%;
}
main section#top .top_wrap_r img {
  border-radius: 30px;
}
@media (max-width: 768px) {
  main section#top .top_wrap {
    flex-direction: column-reverse;
  }
  main section#top .top_wrap_l, main section#top .top_wrap_r {
    width: 100%;
  }
  main section#top .top_wrap_l {
    margin-top: 5%;
  }
  main section#top .top_wrap_l .top_ttl {
    width: 100%;
    margin-left: auto;
    margin-bottom: 5%;
    text-align: center;
  }
  main section#top .top_wrap_l .top_ttl img {
    width: 20%;
    margin: 0 auto;
  }
}
@media (max-width: 768px) and (max-width: 580px) {
  main section#top .top_wrap_l .top_ttl img {
    width: 35%;
  }
}
@media (max-width: 768px) {
  main section#top .top_wrap_l .top_txt {
    width: 80%;
    margin: 0 auto;
    border-radius: 15px;
    padding: 5%;
    text-align: center;
  }
}
@media (max-width: 768px) {
  main section#top .top_wrap_r img {
    width: 94%;
    margin: 0 auto;
    text-shadow: #333;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 8px 8px;
  }
}
main section#about {
  width: 94%;
  margin: 10% auto;
}
main section#about .about_wrap {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 768px) {
  main section#about .about_wrap {
    flex-direction: column-reverse;
    align-items: center;
  }
}
main section#about .about_wrap:first-child {
  margin-bottom: 15%;
}
@media (max-width: 768px) {
  main section#about .about_wrap:first-child {
    flex-direction: column;
    align-items: center;
  }
}
main section#about .about_wrap_l {
  width: 48%;
  position: relative;
}
main section#about .about_wrap_l.img {
  display: flex;
  align-items: center;
}
main section#about .about_wrap_l video {
  width: 100%;
}
@media (max-width: 768px) {
  main section#about .about_wrap_l {
    width: 86%;
    text-align: center;
  }
  main section#about .about_wrap_l.img {
    margin-bottom: 25%;
  }
}
main section#about .about_wrap_l.img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #deece0;
  border-radius: 30px;
  top: -10%;
  left: -10%;
  z-index: -1;
}
@media (max-width: 1024px) {
  main section#about .about_wrap_l.img::before {
    height: 50%;
  }
}
@media (max-width: 768px) {
  main section#about .about_wrap_l.img::before {
    height: 100%;
    width: 100%;
    top: auto;
    left: -5%;
    bottom: -15%;
    border-radius: 15px;
  }
}
main section#about .about_wrap_l img {
  border-radius: 30px;
}
main section#about .about_wrap_l h3 {
  position: relative;
  font-size: 2em;
  margin-bottom: 10%;
  text-align: left;
}
@media (max-width: 768px) {
  main section#about .about_wrap_l h3 {
    text-align: center;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 1em auto;
    font-size: 1.75em;
  }
}
main section#about .about_wrap_l h3:before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: #ece5de;
  border-radius: 50%;
  z-index: -1;
  top: 0;
  left: -10%;
  transform: translateY(-40%);
}
@media (max-width: 1024px) {
  main section#about .about_wrap_l h3:before {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 580px) {
  main section#about .about_wrap_l h3:before {
    width: 100px;
    height: 100px;
  }
}
main section#about .about_wrap_l p {
  margin-bottom: 1em;
}
main section#about .about_wrap_r {
  width: 48%;
  position: relative;
}
@media (max-width: 768px) {
  main section#about .about_wrap_r {
    width: 94%;
    text-align: center;
  }
  main section#about .about_wrap_r.img {
    margin-bottom: 25%;
  }
}
main section#about .about_wrap_r.img::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #deece0;
  border-radius: 30px;
  top: -10%;
  right: -6%;
  z-index: -1;
}
@media (max-width: 1024px) {
  main section#about .about_wrap_r.img::before {
    height: 50%;
  }
}
@media (max-width: 768px) {
  main section#about .about_wrap_r.img::before {
    height: 100%;
    width: 100%;
    top: auto;
    right: -5%;
    bottom: -15%;
    border-radius: 15px;
  }
}
main section#about .about_wrap_r img {
  border-radius: 30px;
}
@media (max-width: 768px) {
  main section#about .about_wrap_r img {
    border-radius: 15px;
  }
}
main section#about .about_wrap_r h3 {
  position: relative;
  font-size: 2em;
  margin-bottom: 10%;
  text-align: right;
}
@media (max-width: 768px) {
  main section#about .about_wrap_r h3 {
    text-align: center;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 1em auto;
  }
}
main section#about .about_wrap_r h3:before {
  content: "";
  position: absolute;
  width: 300px;
  height: 300px;
  background-color: #ece5de;
  border-radius: 50%;
  z-index: -1;
  top: 0;
  right: -6%;
  transform: translateY(-40%);
}
@media (max-width: 1024px) {
  main section#about .about_wrap_r h3:before {
    width: 150px;
    height: 150px;
  }
}
@media (max-width: 580px) {
  main section#about .about_wrap_r h3:before {
    width: 100px;
    height: 100px;
  }
}
main section#about .about_wrap_r p {
  margin-bottom: 1em;
}
main section#about .about_icons {
  width: 75%;
  margin-left: auto;
  display: flex;
  align-items: baseline;
  display: flex;
  justify-content: space-between;
  margin-top: 5%;
  position: relative;
}
@media (max-width: 768px) {
  main section#about .about_icons {
    margin-top: 1em;
  }
}
@media (max-width: 580px) {
  main section#about .about_icons {
    width: 100%;
  }
}
main section#about .about_icons:before {
  content: "";
  position: absolute;
  width: 120%;
  height: 70%;
  background-color: #ddc7b2;
  z-index: -1;
  bottom: 0;
  right: -3%;
  border-radius: 30px 0 0 30px;
}
main section#about .about_icons_cnt {
  width: 48%;
  padding-bottom: 5%;
}
main section#about .about_icons_cnt h4 {
  font-size: 1.25em;
}
main section#about .about_icons_cnt h4 span {
  font-size: 2.5em;
  margin-right: 20px;
  color: #be8830;
  font-weight: 400;
}
main section#about .about_icons_cnt p {
  margin-top: 5%;
}
main section#about a {
  padding: 10px 25px;
  border-radius: 15px;
  transition: ease 0.5s;
  border: 1px solid #be8830;
  color: #be8830;
}
main section#about a:hover {
  background-color: #be8830;
  color: #fff;
}
@media (max-width: 580px) {
  main section#about a {
    width: 90%;
    margin: 0 auto;
  }
}
main section#plus {
  padding: 10% 3%;
  background-color: #ece5de;
}
main section#plus .plus_cnt {
  margin: 0 auto 10% auto;
  text-align: center;
  background-color: #fff;
  padding: 10% 5%;
  border-radius: 30px;
  width: 80%;
}
@media (max-width: 768px) {
  main section#plus .plus_cnt {
    border-radius: 15px;
  }
}
@media (max-width: 580px) {
  main section#plus .plus_cnt {
    width: 100%;
  }
}
main section#plus .plus_cnt h3 {
  font-size: 3em;
  text-shadow: rgba(0, 0, 0, 0.16) 3px 6px 10px;
}
@media (max-width: 425px) {
  main section#plus .plus_cnt h3 {
    font-size: 2.5em;
  }
}
main section#plus .plus_cnt_detail {
  margin-top: 10%;
  position: relative;
}
main section#plus .plus_cnt_detail img {
  position: absolute;
  width: 25%;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (max-width: 768px) {
  main section#plus .plus_cnt_detail img {
    width: 35%;
    top: 0;
    left: -15%;
    transform: translateY(-100%);
  }
}
main section#plus .plus_cnt_detail_center {
  font-size: 1.2em;
  line-height: 2em;
}
main section#plus .flow_cnt {
  background-color: #fff;
  padding: 2% 5%;
  margin-bottom: 5%;
  display: flex;
  position: relative;
  border-radius: 30px;
  box-shadow: rgba(0, 0, 0, 0.16) 1px 3px 10px;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 768px) {
  main section#plus .flow_cnt {
    flex-direction: column;
    padding: 5% 7%;
    margin-bottom: 10%;
    border-radius: 15px;
  }
}
main section#plus .flow_cnt img {
  width: 40%;
  border-radius: 30px;
  margin: 2% 0;
}
@media (max-width: 768px) {
  main section#plus .flow_cnt img {
    width: 90%;
    border-radius: 15px;
  }
}
main section#plus .flow_cnt_txt {
  width: 50%;
  margin: 2% 0;
}
@media (max-width: 768px) {
  main section#plus .flow_cnt_txt {
    width: 90%;
  }
}
main section#plus .flow_cnt_txt span {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-size: 2em;
  font-weight: 500;
}
@media (max-width: 768px) {
  main section#plus .flow_cnt_txt span {
    top: -3%;
    left: 7%;
    transform: translateX(-10%);
    font-size: 2.25em;
  }
}
main section#plus .flow_cnt_txt span:before {
  content: "";
  position: absolute;
  top: 47%;
  left: 47%;
  transform: translate(-50%, -50%);
  width: 1.75em;
  height: 1.75em;
  background-color: #dabc8a;
  z-index: -1;
  border-radius: 50%;
}
main section#plus .flow_cnt_txt h4 {
  font-size: 1.5em;
  margin-bottom: 1em;
}
@media (max-width: 425px) {
  main section#plus .flow_cnt_txt h4 {
    font-size: 1.25em;
  }
}
main section#price {
  width: 94%;
  margin: 15% auto;
}
main section#price h2 {
  position: relative;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 10% auto;
  font-size: 2em;
}
@media (max-width: 425px) {
  main section#price h2 {
    font-size: 1.5em;
  }
}
main section#price h2::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #ece4de;
  z-index: -1;
  top: -100px;
  left: -100px;
}
@media (max-width: 1024px) {
  main section#price h2::before {
    width: 100px;
    height: 100px;
    top: -50px;
    left: -50px;
  }
}
main section#price .price_wrap {
  background-color: #f7f6f5;
  padding: 7%;
  border-radius: 100px;
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 86%;
  margin: 0 auto;
  align-items: center;
}
@media (max-width: 768px) {
  main section#price .price_wrap {
    grid-template-columns: 1fr;
    border-radius: 30px;
  }
}
@media (max-width: 580px) {
  main section#price .price_wrap {
    width: 100%;
    margin: 15% auto;
  }
}
@media (max-width: 768px) {
  main section#price .price_wrap_l {
    order: 1;
  }
}
main section#price .price_wrap_l > span {
  position: absolute;
  color: #647e70;
  left: 2%;
  top: 5%;
  transform: rotate(-30deg);
}
@media (max-width: 768px) {
  main section#price .price_wrap_l > span {
    left: 15%;
    top: 3%;
    transform: translateX(-15%) rotate(-30deg);
  }
}
@media (max-width: 580px) {
  main section#price .price_wrap_l > span {
    left: 5%;
    top: 0%;
  }
}
main section#price .price_wrap_l > span::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 30px;
  background-color: #647e70;
  left: -20px;
  top: -5px;
  transform: rotate(-45deg);
}
@media (max-width: 768px) {
  main section#price .price_wrap_l > span::before {
    height: 15px;
    left: -10px;
    top: 5px;
  }
}
main section#price .price_wrap_l > span::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 30px;
  background-color: #647e70;
  right: -20px;
  top: -5px;
  transform: rotate(45deg);
}
@media (max-width: 768px) {
  main section#price .price_wrap_l > span::after {
    height: 15px;
    right: -10px;
    top: 5px;
  }
}
main section#price .price_wrap_l h3 {
  font-size: 2em;
  margin-bottom: 2em;
}
@media (max-width: 768px) {
  main section#price .price_wrap_l h3 {
    margin-bottom: 1em;
    text-align: center;
  }
}
main section#price .price_wrap_l ul {
  margin-bottom: 1em;
}
main section#price .price_wrap_l ul li {
  margin-bottom: 1em;
}
main section#price .price_wrap img {
  border-radius: 30px;
}
@media (max-width: 768px) {
  main section#price .price_wrap img {
    border-radius: 15px;
    order: 2;
  }
}
main section#price .price_wrap .price_area {
  grid-column: 1/3;
  text-align: center;
  margin: 5% auto;
  background-color: #fff;
  border-radius: 30px;
  padding: 5% 0;
  width: 86%;
}
@media (max-width: 768px) {
  main section#price .price_wrap .price_area {
    grid-column: auto;
    order: 3;
    width: 100%;
  }
}
main section#price .price_wrap .price_area > span {
  position: relative;
  color: #647e70;
}
main section#price .price_wrap .price_area > span::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 30px;
  background-color: #647e70;
  left: -20px;
  top: -5px;
  transform: rotate(-45deg);
}
@media (max-width: 580px) {
  main section#price .price_wrap .price_area > span::before {
    height: 15px;
    top: 0px;
    left: -10px;
  }
}
main section#price .price_wrap .price_area > span::after {
  content: "";
  position: absolute;
  width: 2px;
  height: 30px;
  background-color: #647e70;
  right: -20px;
  top: -5px;
  transform: rotate(45deg);
}
@media (max-width: 580px) {
  main section#price .price_wrap .price_area > span::after {
    height: 15px;
    top: 0px;
    right: -10px;
  }
}
main section#price .price_wrap .price_area p {
  font-size: 1.25em;
  margin: 2% auto 5% auto;
  width: -moz-fit-content;
  width: fit-content;
  padding: 10px 10px 10px 40px;
  position: relative;
  left: 30px;
}
@media (max-width: 580px) {
  main section#price .price_wrap .price_area p {
    padding: 10px 10px 10px 20px;
  }
}
@media (max-width: 375px) {
  main section#price .price_wrap .price_area p {
    left: -10px;
  }
}
main section#price .price_wrap .price_area p span {
  font-size: 2em;
  padding: 0 1em;
  border-bottom: 1px dashed #333;
}
main section#price .price_wrap .price_area_btn {
  display: flex;
  justify-content: center;
}
@media (max-width: 580px) {
  main section#price .price_wrap .price_area_btn {
    flex-direction: column;
  }
}
main section#price .price_wrap .price_area_btn a {
  padding: 10px 25px;
  border-radius: 15px;
  transition: ease 0.5s;
}
@media (max-width: 580px) {
  main section#price .price_wrap .price_area_btn a {
    width: 90%;
    margin: 0 auto;
  }
}
main section#price .price_wrap .price_area_btn a:first-child {
  border: 1px solid #be8830;
  color: #be8830;
}
main section#price .price_wrap .price_area_btn a:first-child:hover {
  background-color: #be8830;
  color: #fff;
}
main section#price .price_wrap .price_area_btn a:last-child {
  background-color: #be8830;
  color: #fff;
  margin-left: 1.5em;
}
@media (max-width: 580px) {
  main section#price .price_wrap .price_area_btn a:last-child {
    margin-left: auto;
    margin-top: 0.5em;
  }
}
main section#price .price_wrap .price_area_btn a:last-child:hover {
  border: 1px solid #be8830;
  background-color: #fff;
  color: #be8830;
}
main section#faq {
  padding: 10% 3%;
  background-color: #ece5de;
}
main section#faq h2 {
  position: relative;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 10% auto;
  font-size: 2em;
}
main section#faq .faq_wrap {
  width: 90%;
  margin: 0 auto;
}
@media (max-width: 580px) {
  main section#faq .faq_wrap {
    width: 100%;
  }
}
main section#faq .faq_wrap .faq_ttl {
  background-color: #fff;
  border-radius: 30px;
  margin-bottom: 0.75em;
  position: relative;
  font-size: 1.25em;
  cursor: pointer;
  padding: 1em 2em;
  text-indent: -1em;
}
main section#faq .faq_wrap .faq_ttl:before {
  position: absolute;
  content: "";
  width: 2px;
  height: 15px;
  background-color: #333;
  right: 5%;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.5s;
}
main section#faq .faq_wrap .faq_ttl:after {
  position: absolute;
  content: "";
  width: 2px;
  height: 15px;
  background-color: #333;
  right: 5%;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
}
main section#faq .faq_wrap .faq_ttl span {
  margin-right: 3px;
}
main section#faq .faq_wrap .faq_ttl.is-active::before {
  transform: translateY(-50%) rotate(90deg);
  transition: all 0.5s;
}
main section#faq .faq_wrap .faq_cnt {
  background-color: #fff;
  border-radius: 30px;
  margin-bottom: 1em;
  height: 0;
  transition: all 0.5s;
}
main section#faq .faq_wrap .faq_cnt span {
  font-size: 1.25em;
  display: none;
}
main section#faq .faq_wrap .faq_cnt p {
  display: none;
}
main section#faq .faq_wrap .faq_cnt.is-active {
  padding: 4%;
  height: auto;
  transition: all 0.5s;
}
main section#faq .faq_wrap .faq_cnt.is-active span {
  font-size: 1.25em;
  display: block;
}
main section#faq .faq_wrap .faq_cnt.is-active p {
  display: block;
  width: 90%;
  margin: 0 auto;
}
main section#sns h2 {
  position: relative;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 10% auto;
  font-size: 2em;
}
main section#sns h2::before {
  content: "";
  position: absolute;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background-color: #ece4de;
  z-index: -1;
  top: -150px;
  left: -150px;
}
@media (max-width: 1024px) {
  main section#sns h2::before {
    width: 100px;
    height: 100px;
    top: -50px;
    left: -50px;
  }
}
main section#sns .sns_wrap {
  display: flex;
  width: 7%;
  position: fixed;
  justify-content: space-between;
  right: 0;
  bottom: 20%;
  z-index: 99999;
  flex-direction: column;
}
@media (max-width: 768px) {
  main section#sns .sns_wrap {
    bottom: 0;
    flex-direction: row;
    width: 100%;
    right: inherit;
  }
}
main section#sns .sns_wrap a {
  background-color: #be882f;
  display: block;
  width: 100%;
  text-align: center;
  color: #fff;
  padding: 10px;
  border-right: 1px solid #fff;
  border-radius: 15px 0 0 15px;
  display: flex;
  flex-direction: column;
}
main section#sns .sns_wrap a i {
  padding-top: 20px;
}
main section#sns .sns_wrap a span {
  font-weight: 400;
  letter-spacing: 0.03em;
  padding-top: 10px;
  font-size: 0.75em;
}
main section#sns .sns_wrap a:first-child {
  margin-bottom: 15px;
}
@media (max-width: 768px) {
  main section#sns .sns_wrap a {
    width: 50%;
    flex-direction: row;
    justify-content: center;
    gap: 15px;
    padding: 20px 0;
    border-radius: 0;
    align-items: center;
  }
  main section#sns .sns_wrap a:first-child {
    margin-bottom: 0;
  }
  main section#sns .sns_wrap a i {
    padding: 0;
  }
  main section#sns .sns_wrap a span {
    font-weight: 700;
    font-size: 1.1em;
    padding: 0;
  }
}
main section#media {
  padding: 5% 6%;
}
@media (max-width: 580px) {
  main section#media {
    padding: 0 9%;
  }
}
main section#media .side {
  position: relative;
  margin: 0 auto 10% auto;
  font-size: 2em;
}
main section#media .side::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 1px;
  background-color: #333;
  z-index: -1;
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
}
main section#media .splide .splide__arrow--prev {
  left: -5%;
  top: 40%;
}
@media (max-width: 580px) {
  main section#media .splide .splide__arrow--prev {
    left: -9%;
  }
}
main section#media .splide .splide__arrow--next {
  right: -5%;
  top: 40%;
}
@media (max-width: 580px) {
  main section#media .splide .splide__arrow--next {
    right: -9%;
  }
}
main section#media .splide img {
  border-radius: 30px;
  margin-bottom: 1.5em;
}
@media (max-width: 580px) {
  main section#media .splide img {
    border-radius: 10px;
  }
}
main section#media .splide span {
  font-weight: 400;
}
main section#media .splide h4 {
  font-size: 1.25em;
  margin: 5px 0;
}
main section#media .splide p {
  font-weight: 400;
}
main section#media .splide .splide__pagination {
  display: none;
}
main section#sponsor {
  padding: 0 6%;
}
main section#sponsor .side {
  position: relative;
  margin: 0 auto 10% auto;
  font-size: 2em;
}
main section#sponsor .side::before {
  content: "";
  position: absolute;
  width: 100px;
  height: 1px;
  background-color: #333;
  z-index: -1;
  top: 50%;
  left: -100px;
  transform: translateY(-50%);
}
main section#sponsor .sponsor_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
  justify-content: space-between;
}
main section#sponsor .sponsor_wrap .sponsor_cnt {
  width: 30%;
  margin-bottom: 5%;
}
@media (max-width: 580px) {
  main section#sponsor .sponsor_wrap .sponsor_cnt {
    width: 47.5%;
  }
}
main section#sponsor .sponsor_wrap .sponsor_cnt img {
  border-radius: 30px;
  margin-bottom: 1em;
}
main section#sponsor .sponsor_wrap .sponsor_cnt h4 {
  font-size: 1.2em;
}

/* footer#footer {
  padding: 10% 0;
  background-color: #ddc7b2;
  display: flex;
  justify-content: center;
  gap: 15%;
}
footer#footer .foot_menu ul li a,
footer#footer .foot_icon ul li a {
  padding: 5% 0;
  display: block;
}
footer#footer .foot_menu ul li a i,
footer#footer .foot_icon ul li a i {
  color: #fff;
  width: 20%;
} */

main section#map {
  text-align: center;
  margin-bottom: 0;
}
main section#map .map_wrap {
  position: relative;
  height: 100vh;
}
@media (max-width: 580px) {
  main section#map .map_wrap {
    height: 60vh;
  }
}
main section#map .map_wrap img {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  z-index: -1;
}
@media (max-width: 1024px) {
  main section#map .map_wrap img {
    width: 500px;
  }
}
@media (max-width: 600px) {
  main section#map .map_wrap img {
    width: 300px;
  }
}
@media (max-width: 425px) {
  main section#map .map_wrap img {
    width: 300px;
  }
}
main section#map .map_wrap .regions {
  position: relative;
  height: 100%;
  width: 900px;
  margin: 0 auto;
}
@media (max-width: 1024px) {
  main section#map .map_wrap .regions {
    width: 600px;
  }
}
@media (max-width: 600px) {
  main section#map .map_wrap .regions {
    width: 400px;
  }
}
@media (max-width: 425px) {
  main section#map .map_wrap .regions {
    width: 350px;
  }
}
main section#map .map_wrap .regions .region {
  background-color: #be882f;
  color: #fff;
  border-radius: 5px;
  padding: 5px 20px;
  cursor: pointer;
  border: none;
  position: absolute;
}
@media (max-width: 425px) {
  main section#map .map_wrap .regions .region {
    font-size: 1.2em;
  }
}
main section#map .map_wrap .regions .region#hokkaido {
  right: 0;
  top: 10%;
}
@media (max-width: 1024px) {
  main section#map .map_wrap .regions .region#hokkaido {
    top: 20%;
  }
}
@media (max-width: 600px) {
  main section#map .map_wrap .regions .region#hokkaido {
    right: -5%;
    top: 32.5%;
  }
}
@media (max-width: 425px) {
  main section#map .map_wrap .regions .region#hokkaido {
    top: 26%;
    right: 7.5%;
  }
}
main section#map .map_wrap .regions .region#tohoku {
  right: 5%;
  top: 45%;
}
@media (max-width: 1024px) {
  main section#map .map_wrap .regions .region#tohoku {
    right: 0;
  }
}
@media (max-width: 425px) {
  main section#map .map_wrap .regions .region#tohoku {
    top: 40%;
    right: 10%;
  }
}
main section#map .map_wrap .regions .region#kanto {
  right: 5%;
  bottom: 15%;
}
@media (max-width: 1024px) {
  main section#map .map_wrap .regions .region#kanto {
    right: 0;
    bottom: 30%;
  }
}
@media (max-width: 1024px) {
  main section#map .map_wrap .regions .region#kanto {
    right: 0;
    bottom: 35%;
  }
}
@media (max-width: 425px) {
  main section#map .map_wrap .regions .region#kanto {
    bottom: 40%;
    right: -1%;
  }
}
main section#map .map_wrap .regions .region#chubu {
  top: 65%;
  left: 65%;
}
@media (max-width: 1024px) {
  main section#map .map_wrap .regions .region#chubu {
    top: 60%;
  }
}
@media (max-width: 1024px) {
  main section#map .map_wrap .regions .region#chubu {
    top: 55%;
  }
}
@media (max-width: 425px) {
  main section#map .map_wrap .regions .region#chubu {
    top: 48%;
    left: 62%;
  }
}
main section#map .map_wrap .regions .region#kinki {
  bottom: 25%;
  left: 50%;
}
@media (max-width: 1024px) {
  main section#map .map_wrap .regions .region#kinki {
    bottom: 35%;
  }
}
@media (max-width: 1024px) {
  main section#map .map_wrap .regions .region#kinki {
    bottom: 35%;
  }
}
@media (max-width: 425px) {
  main section#map .map_wrap .regions .region#kinki {
    bottom: 38%;
  }
}
main section#map .map_wrap .regions .region#shikoku {
  bottom: 5%;
  left: 40%;
}
@media (max-width: 1024px) {
  main section#map .map_wrap .regions .region#shikoku {
    bottom: 15%;
    left: 35%;
  }
}
@media (max-width: 600px) {
  main section#map .map_wrap .regions .region#shikoku {
    bottom: 30%;
  }
}
@media (max-width: 425px) {
  main section#map .map_wrap .regions .region#shikoku {
    bottom: 32.5%;
    left: 32.5%;
  }
}
main section#map .map_wrap .regions .region#chugoku {
  bottom: 30%;
  left: 40%;
}
@media (max-width: 1024px) {
  main section#map .map_wrap .regions .region#chugoku {
    bottom: 40%;
    left: 35%;
  }
}
@media (max-width: 600px) {
  main section#map .map_wrap .regions .region#chugoku {
    bottom: 42.5%;
    left: 35%;
  }
}
@media (max-width: 425px) {
  main section#map .map_wrap .regions .region#chugoku {
    bottom: 47.5%;
    left: 32.5%;
  }
}
main section#map .map_wrap .regions .region#kyushu {
  bottom: 25%;
  left: 5%;
}
@media (max-width: 1024px) {
  main section#map .map_wrap .regions .region#kyushu {
    bottom: 35%;
  }
}
@media (max-width: 600px) {
  main section#map .map_wrap .regions .region#kyushu {
    bottom: 40%;
  }
}
main section#map .map_wrap .regions .region#other {
  top: 35%;
  left: 35%;
}
@media (max-width: 1024px) {
  main section#map .map_wrap .regions .region#other {
    top: 30%;
  }
}
main section#map .modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: appear 0.5s ease;
  z-index: 99999;
}
main section#map .modal-content {
  border-radius: 5px;
  width: 90%;
}
main section#map .modal-content ul {
  display: flex;
  gap: 5%;
  justify-content: start;
  flex-wrap: wrap;
}
main section#map .modal-content ul li {
  text-align: left;
  width: 30%;
  margin-bottom: 1em;
}
@media (max-width: 425px) {
  main section#map .modal-content ul li {
    width: 47.5%;
  }
}
main section#map .modal-content ul li a {
  display: block;
  position: relative;
  background-color: #be882f;
  padding: 10px 30px 10px 20px;
  border-radius: 30px;
  color: #fff;
  word-break: keep-all;
}
main section#map .modal-content ul li a::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  right: 10%;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
main section#map .hidden {
  display: none;
}
main section#works {
  background-color: #ece5de;
  padding: 5% 0;
  margin: 0;
  position: relative;
}
main section#works h2 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  font-size: 3rem;
}
main section#works > span {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto;
  position: relative;
  margin-top: 2%;
}
main section#works > span:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #333;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
}
main section#works > span:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #333;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
}
main section#works .works_wrap {
  width: 86%;
  margin: 5% auto;
  display: flex;
  gap: 5%;
  flex-wrap: wrap;
}
@media (max-width: 580px) {
  main section#works .works_wrap {
    width: 96%;
  }
}
main section#works .works_wrap_cnt {
  width: 30%;
  margin-bottom: 5%;
  background-color: #fff;
  border-radius: 30px;
}
@media (max-width: 768px) {
  main section#works .works_wrap_cnt {
    width: 47.5%;
  }
}
@media (max-width: 580px) {
  main section#works .works_wrap_cnt {
    border-radius: 15px;
  }
}
main section#works .works_wrap_cnt a {
  display: block;
  padding: 5%;
}
main section#works .works_wrap_cnt a img {
  border-radius: 30px;
}
@media (max-width: 580px) {
  main section#works .works_wrap_cnt a img {
    border-radius: 15px;
  }
}
main section#works .works_wrap_cnt a span {
  display: inline-block;
  background-color: #70b045;
  color: #fff;
  margin: 1em 0;
  padding: 2px 15px;
  border-radius: 30px;
  font-size: 0.8em;
}
main section#works .works_wrap_cnt a h3 {
  font-size: 1.2em;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
}
main section#works .works_wrap_cnt a p {
  margin: 1em 0;
}
main section#intro {
  width: 86%;
  margin: 15% auto 0 auto;
}
main section#intro .intro_wrap {
  display: grid;
  grid-template-columns: repeat(8, 1fr);
}
@media (max-width: 580px) {
  main section#intro .intro_wrap {
    display: block;
  }
}
main section#intro .intro_wrap_l {
  grid-column: 1/5;
  grid-row: 1/5;
  z-index: 10;
}
main section#intro .intro_wrap_l img {
  border-radius: 45px;
}
@media (max-width: 580px) {
  main section#intro .intro_wrap_l img {
    border-radius: 30px;
  }
}
main section#intro .intro_wrap_r {
  grid-column: 4/9;
  grid-row: 2/6;
  z-index: 1;
  background-color: #deece0;
  border-radius: 45px;
  padding: 15% 5% 15% 15%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 580px) {
  main section#intro .intro_wrap_r {
    margin-top: 5%;
    padding: 15% 5%;
    border-radius: 30px;
  }
}
main section#intro .intro_wrap_r > a {
  position: absolute;
  display: block;
  right: 0;
  top: 0;
  background-color: #be882f;
  color: #fff;
  padding: 25px;
  border-bottom-left-radius: 45px;
}
@media (max-width: 580px) {
  main section#intro .intro_wrap_r > a {
    padding: 15px;
    border-bottom-left-radius: 30px;
  }
}
main section#intro .intro_wrap_r h2 {
  text-align: center;
}
@media (max-width: 580px) {
  main section#intro .intro_wrap_r h2 {
    font-size: 2em;
  }
}
main section#intro .intro_wrap_r ul {
  display: flex;
  margin: 1em;
  gap: 5%;
  justify-content: center;
}
main section#intro .intro_wrap_r ul i {
  color: #333;
}
main section#intro .intro_wrap_r p {
  line-height: 2em;
  width: 80%;
  margin: 10% auto 0 auto;
}
@media (max-width: 580px) {
  main section#intro .intro_wrap_r p {
    width: 96%;
  }
}
main section#condition {
  width: 80%;
  margin: 15% auto;
}
main section#condition h2 {
  text-align: center;
  border-bottom: 1px dashed #333;
  padding-bottom: 10px;
  width: 50%;
  margin: 0 auto;
}
@media (max-width: 580px) {
  main section#condition h2 {
    width: 90%;
  }
}
main section#condition .condition_detail {
  margin: 5% 0;
}
main section#condition .condition_detail dl {
  display: flex;
  width: 60%;
  margin: 0 auto;
  margin-bottom: 0.5em;
}
@media (max-width: 768px) {
  main section#condition .condition_detail dl {
    width: 90%;
  }
}
main section#condition .condition_detail dl dt {
  width: 30%;
}
main section#condition .condition_detail dl dd {
  width: 70%;
}
main section#description {
  width: 86%;
  margin: 5% auto 5% auto;
  background-color: #f7f6f5;
  padding: 5%;
  border-radius: 45px;
}
@media (max-width: 580px) {
  main section#description {
    border-radius: 15px;
  }
}
main section#description h2 {
  font-size: 1em;
  background-color: #be882f;
  color: #fff;
  border-radius: 30px;
  padding: 5px 15px 5px 15px;
  width: -moz-fit-content;
  width: fit-content;
}
main section#description p {
  width: 86%;
  margin: 5% auto;
}
@media (max-width: 580px) {
  main section#description p {
    width: 96%;
  }
}

section#search_area h2 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 2em auto;
}
section#search_area .search_btn {
  text-align: center;
  width: 80%;
  margin: 0 auto 5% auto;
}
@media (max-width: 580px) {
  section#search_area .search_btn {
    width: 96%;
  }
}
section#search_area .search_btn .regions {
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
  justify-content: space-between;
}
@media (max-width: 580px) {
  section#search_area .search_btn .regions {
    justify-content: flex-start;
  }
}
section#search_area .search_btn .regions button {
  width: 20%;
  margin-bottom: 2%;
  background-color: #be882f;
  color: #fff;
  border-radius: 30px;
  border: none;
}
@media (max-width: 580px) {
  section#search_area .search_btn .regions button {
    width: 30%;
  }
}
section#search_area #search {
  width: 60%;
  margin: 0 auto;
  display: flex;
  border: 2px solid #b68a41;
  border-radius: 15px;
  padding: 5px;
  position: relative;
}
section#search_area #search:before {
  font-family: "Font Awesome 6 Free";
  content: "\f002";
  font-weight: 900;
  position: absolute;
  color: #b68a41;
  top: 50%;
  right: 1.5em;
  transform: translate(50%, -50%);
  font-weight: 900;
  z-index: 2;
}
section#search_area #search:after {
  content: "";
  position: absolute;
  background-color: #ebe5df;
  top: 50%;
  right: 1.5em;
  transform: translate(50%, -50%);
  border-radius: 50%;
  width: 2em;
  height: 2em;
  z-index: 1;
}
@media (max-width: 580px) {
  section#search_area #search {
    width: 80%;
  }
}
section#search_area #search input[type=text] {
  width: calc(100% - 1em);
  border: none;
}
section#search_area #search input[type=submit] {
  width: 2em;
  border: none;
  background-color: transparent;
  margin-right: 10px;
  z-index: 99999;
}
section#search_area > span {
  width: -moz-fit-content;
  width: fit-content;
  display: block;
  margin: 0 auto;
  position: relative;
  margin-top: 2%;
}
section#search_area > span:before {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #333;
  right: -30px;
  top: 50%;
  transform: translateY(-50%);
}
section#search_area > span:after {
  content: "";
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: #333;
  left: -30px;
  top: 50%;
  transform: translateY(-50%);
}
section#search_area .modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  animation: appear 0.5s ease;
}
section#search_area .modal-content {
  border-radius: 5px;
  width: 90%;
}
section#search_area .modal-content ul {
  display: flex;
  gap: 5%;
  justify-content: start;
  flex-wrap: wrap;
}
section#search_area .modal-content ul li {
  text-align: left;
  width: 30%;
  margin-bottom: 1em;
}
@media (max-width: 425px) {
  section#search_area .modal-content ul li {
    width: 47.5%;
  }
}
section#search_area .modal-content ul li a {
  display: block;
  position: relative;
  background-color: #be882f;
  padding: 10px 30px 10px 20px;
  border-radius: 30px;
  color: #fff;
  word-break: keep-all;
}
section#search_area .modal-content ul li a::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 10px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  right: 10%;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
section#search_area .hidden {
  display: none;
}

section#search_result .search_wrap {
  width: 86%;
  margin: 5% auto;
  display: flex;
  gap: 5%;
  flex-wrap: wrap;
}
@media (max-width: 580px) {
  section#search_result .search_wrap {
    width: 96%;
  }
}
section#search_result .search_wrap_cnt {
  width: 30%;
  margin-bottom: 5%;
  background-color: #ece5de;
  border-radius: 30px;
}
@media (max-width: 768px) {
  section#search_result .search_wrap_cnt {
    width: 47.5%;
  }
}
@media (max-width: 580px) {
  section#search_result .search_wrap_cnt {
    border-radius: 15px;
  }
}
section#search_result .search_wrap_cnt a {
  display: block;
  padding: 5%;
}
section#search_result .search_wrap_cnt a img {
  border-radius: 30px;
}
@media (max-width: 580px) {
  section#search_result .search_wrap_cnt a img {
    border-radius: 15px;
  }
}
section#search_result .search_wrap_cnt a span {
  display: inline-block;
  background-color: #697d71;
  color: #fff;
  margin: 1em 0;
  padding: 2px 15px;
  border-radius: 30px;
  font-size: 0.8em;
}
section#search_result .search_wrap_cnt a h3 {
  font-size: 1.2em;
  border-bottom: 1px solid #333;
  padding-bottom: 5px;
}
section#search_result .search_wrap_cnt a p {
  margin: 1em 0;
}
section#search_result .not_found {
  width: 100%;
}
section#search_result .not_found p {
  text-align: center;
}

section#noitem {
  width: 90%;
  margin: 0 auto;
}
section#noitem h2 {
  margin-bottom: 15%;
}

section#page {
  width: 100%;
}
section#page h2 {
  margin-bottom: 5%;
  font-size: 2em;
  line-height: 2em;
}
section#page p {
  margin-bottom: 1em;
}

@media (max-width: 580px) {
  .page-id-90 .scrolldown1 {
    display: none;
  }
}

.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  right: 5%;
  top: -20%;
  /*全体の高さ*/
  height: 70px;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -22px;
  top: -15px;
  /*テキストの形状*/
  color: #a87011;
  font-size: 1rem;
  letter-spacing: 0.05em;
}
@media (max-width: 425px) {
  .scrolldown1 span {
    left: -45px;
  }
}

/* 線の描写 */
.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 2px;
  height: 50px;
  background: #a87011;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}
@media (max-width: 425px) {
  .scrolldown1::after {
    left: -20px;
  }
}

@keyframes appear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 50px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 70px;
    opacity: 0;
  }
}
/************************************
** お問い合わせフォームの入力
************************************/
#cf-tbl {
  width: 800px;
  margin: 0 auto;
}

#cf-tbl table {
  width: 100%;
  border-collapse: collapse;
  border: solid #ccc;
  border-width: 1px;
  color: #444;
}

#cf-tbl table tr th,
#cf-tbl table tr td {
  padding: 0.5em;
  text-align: left;
  vertical-align: top;
  border: solid #ccc;
  border-width: 1px;
  vertical-align: middle;
}
#cf-tbl table tr th p,
#cf-tbl table tr td p {
  margin-bottom: 0;
}

#cf-tbl table tr th {
  width: 35%;
  background: #eee;
}
#cf-tbl table tr th p.lead {
  font-weight: 400;
  font-size: 0.8em;
}

@media screen and (max-width: 768px) {
  #cf-tbl {
    width: 100%;
  }
  #cf-tbl table,
  #cf-tbl table tbody,
  #cf-tbl table tr,
  #cf-tbl table tr th,
  #cf-tbl table tr td {
    display: block;
  }
  #cf-tbl table {
    width: 100%;
    border-width: 0 0 1px 0;
  }
  #cf-tbl table tr th,
  #cf-tbl table tr td {
    width: 100%;
    padding: 3% 5%;
  }
  #cf-tbl table tr td {
    border-width: 0px 1px 0px 1px;
  }
}
/*「必須」文字デザイン*/
.required {
  font-size: 0.8em;
  padding: 5px;
  background: #a87011;
  color: #fff;
  border-radius: 3px;
  margin-right: 5px;
}

/*「任意」文字デザイン*/
.optional {
  font-size: 0.8em;
  padding: 5px;
  background: #000080;
  color: #fff;
  border-radius: 3px;
  margin-right: 5px;
}

/* 入力項目を見やすく */
input.wpcf7-form-control.wpcf7-text,
textarea.wpcf7-form-control.wpcf7-textarea {
  width: 100%;
  padding: 8px 15px;
  margin-right: 10px;
  margin-top: 10px;
  border: 1px solid #d0d5d8;
  border-radius: 3px;
  background-color: #eff1f5;
}

textarea.wpcf7-form-control.wpcf7-textarea {
  height: 200px;
}

/* 「送信する」ボタン */
input.wpcf7-submit {
  display: block;
  padding: 15px;
  width: 400px;
  background: #a87011;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 15px;
  margin: 15px auto 0;
  border: none;
  transition: all 0.5s;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  input.wpcf7-submit {
    width: 250px;
  }
}
input.wpcf7-submit:hover {
  box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
  opacity: 0.7;
}

/* エラーメッセージを見やすく */
span.wpcf7-not-valid-tip,
.wpcf7-response-output.wpcf7-validation-errors {
  color: red;
  font-weight: 600;
}

/* タブのスタイル */
.tabs {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 1px solid #ccc;
  margin-bottom: 20px;
  justify-content: center;
}

.tablink {
  cursor: pointer;
  padding: 10px;
  background-color: transparent;
  font-weight: bold;
  color: #555;
  width: 33.3333333333%;
  font-size: 1em;
  text-align: center;
}
@media (max-width: 768px) {
  .tablink {
    text-align: left;
  }
}

.tablink.active {
  color: #000;
  border-bottom: 2px solid #000;
}

/* タブコンテンツのスタイル */
.tabcontent {
  display: none;
  padding: 20px;
}

.cta {
  padding: 10px 25px;
  border-radius: 15px;
  transition: ease 0.5s;
  border: 1px solid #be8830;
  color: #be8830;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 1em auto;
}
.cta:hover {
  background-color: #be8830;
  color: #fff;
}
@media (max-width: 580px) {
  .cta {
    width: 90%;
    margin: 0 auto;
    text-align: center;
  }
}

.cta_lead {
  text-align: center;
  margin-bottom: 1em;
}
.cta_lead a {
  color: #b68a41;
  border-bottom: 1px solid #b68a41;
}

.single-user_bank .cta_lead {
  margin-bottom: 5%;
}/*# sourceMappingURL=style.css.map */


/* 20240923 */
section#page>h2{
  display: none;
}
.top-text{
  line-height: 2.5rem;
  font-size: 2.5rem;
}
.top #content{
  padding-top:0 ;
}
.wp-block-media-text__content{
  margin-right: 5rem;
}

.border-bottom span{
  border-bottom: solid 5px #70b045;
  display: inline-block;
  padding-bottom: 1rem;
}

.works_title{
  font-size: 3rem;
  line-height: 5rem;
  border-bottom: solid 5px #70b045;
  display: inline-block;
}
.works_content{
  margin-top: 5rem;
  display: flex;
  align-items: center;

}
.works_date{
  font-size: 2rem;
  line-height: 2rem;
  margin-bottom: 1rem;
}
.works_content h2{
  font-size: 3rem;
  line-height: 3rem;
  margin-bottom: 2rem;
}
.works_content p{
  font-size: 1.2rem;
  line-height: 1.2rem;
  margin-bottom: 1rem;
}
.works_keyword{
  background:#555;
  color: #fff;
  display: inline-block;
  padding: .5rem;
  margin-bottom:2rem;
  margin: .3rem;
}
.works_content div{
  margin-right: 5rem;
  width: 70%;
}
.keyword-section{
  display: flex;
  flex-wrap: wrap;
  width: inherit !important;
  margin-right: 0 !important;
}
.keyword-section p{
  font-size: 1rem;
}
.works_content img {
 width: 30%;
 height: 80%;
 object-fit: cover;
}
.works_content iframe{
  width: 30%;
  height: 30vh;
}
.related_url{
  display: flex;
  flex-direction: column;
}
.related_url a{
  margin-bottom: 1rem;
}
@font-face {
	font-family: 'animaru';
	src: url(./fonts/font_1_ant-maru.ttf);
}

body {
	font-family: animaru;
}

.p-postList__title{
  margin-bottom: 1rem !important;
  font-size:1.5rem !important;
}

.center-number{
  margin-top: -5rem;
}
.center-number span{
  font-size: 5rem !important;
}
.top-img img{
  width: 300px;
  margin: 3rem auto;
}
.wp-block-columns{
  margin-bottom: 5rem;
}
#body_wrap{
  min-height: 100vh; /* ←コンテンツの高さの最小値＝ブラウザの高さに指定 */
  position: relative;/* ←相対位置 */
  padding-bottom: 80px; /* ←フッターの高さを指定 */
  box-sizing: border-box;
  /* ↑ヘッダーやフッターを含むすべての要素の高さ＝min-height:100vhになるように指定 */
}
#footer{
  position: absolute;/* ←絶対位置 */
  bottom: 0;  
  width: 100%;
}
@media screen and (max-width:765px){
  section#page p{
    font-size: 1rem;
    line-height: 1.5rem;
  }
  .top-img img{
    width: 80px;
    margin: 0rem auto;
  }
  .u-mb-50{
    margin-bottom: 2rem !important;
  }
  .u-mb-40{
    margin-bottom: 1.5rem !important;
  }
  .u-mb-30{
    margin-bottom: 1.2rem !important;
  }
  .u-mb-20{
    margin-bottom: 1.2rem !important;
  }
  .wp-block-media-text__content{
    margin-right: 0;
  }
  .has-media-on-the-right{
    display: flex;
    flex-direction: column;
  }
  .border-bottom span{
    border-bottom: solid 3px #70b045;
    display: inline-block;
    padding-bottom: .5rem;
  }
  .arrow-down img{
    height: 40px;
    width: 100%;
  }
  .concept-number p{
    font-size: .8rem !important;
  }
  .concept-column p{
    font-size: .8rem !important;
  }
  .center-top{
    font-size: 1.2rem !important;
    margin-bottom: 5rem !important;
  }
  .center-column .has-background{
    margin-bottom: 4rem !important;
  }
  .center-column p{
    font-size: 1.2rem !important;
    line-height: 1.5rem !important;
  }
  .top-text{
    font-size: .8rem !important
  }
  .img-left{
    display: flex;
    flex-direction: column-reverse;
  }
  .adviser-column h2{
    font-size: 1.5rem !important;
  }
  .access-column iframe{
    width: 100%;
    height: 30vh;
  }
  .works_content{
    display: flex;
    flex-direction: column;
    margin-top: 3rem;
  }
  .works_content div{
    width: 100%;
    margin-right: 0;
  }
  .works_content img{
    width: 60%;
  }
  .works_content iframe{
    width: 100%;
    height: 30vh;
  }
  .works_content h2{
    font-size: 2rem;
  }
  main section#works h2{
    font-size: 1.5rem;
  }
  .center-number{
    margin-top: -2rem;
  }

}