/*
Theme Name: irobase
Description: 就労継続支援B型 irobaseのテーマ
Author: あなたの名前
Version: 1.0
*/

@charset "UTF-8";
#loading {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #fff;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}
#loading .loading_content {
  text-align: center;
}
#loading .loading_content .loading_logo {
  max-width: 200px;
  height: auto;
  display: block;
  margin: 0 auto 20px;
}
#loading .loading_content .loading_text {
  font-size: 24px;
  color: #333;
  font-family: "Zen Maru Gothic", sans-serif;
  animation: blink 1.5s infinite;
}

@keyframes blink {
  0% {
    opacity: 0.2;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0.2;
  }
}
body {
  font-family: "Zen Maru Gothic", serif;
  letter-spacing: 0.05em;
  background-color: rgb(255, 249, 222);
}

header {
  display: flex;
  justify-content: space-between;
  z-index: 10;
}
header a img {
  width: 150px;
  margin-left: 100px;
}
@media (max-width: 440px) {
  header a img {
    width: 100px;
    margin-left: 10px;
    position: relative;
    z-index: 1001;
  }
}
header .m-hamburger_btn {
  display: none;
}
@media (max-width: 440px) {
  header .m-hamburger_btn {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: rgb(106, 122, 73);
    z-index: 1005;
  }
}
header .m-hamburger_btn .m-hamburger_bar {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #fff;
  margin: 6px auto;
  transition: all 0.3s;
}
header .m-hamburger_btn.is-active .m-hamburger_bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
header .m-hamburger_btn.is-active .m-hamburger_bar:nth-child(2) {
  opacity: 0;
}
header .m-hamburger_btn.is-active .m-hamburger_bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}
header .header_navs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 80px;
}
@media (max-width: 440px) {
  header .header_navs {
    position: fixed;
    top: -110%;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(106, 122, 73, 0.95);
    flex-direction: column;
    justify-content: center;
    margin-right: 0;
    z-index: 1001;
    transition: all 0.5s ease;
  }
  header .header_navs.is-active {
    top: 0;
    flex-direction: column;
  }
}
header .header_navs ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 50px;
  font-weight: bold;
  background: rgb(106, 122, 73);
  padding: 20px 40px;
  border-radius: 50px;
}
@media (max-width: 440px) {
  header .header_navs ul {
    display: flex;
    flex-direction: column;
    background: none;
    padding: 0;
    margin-right: 0;
  }
  header .header_navs ul li {
    border-right: none;
    margin-bottom: 20px;
    text-align: center;
  }
  header .header_navs ul li a {
    font-size: 24px;
  }
}
header .header_navs ul li {
  padding-inline: 10px;
  list-style: none;
  border-right: 2px solid #fff;
}
header .header_navs ul li:last-of-type {
  border-right: none;
}
header .header_navs ul li a {
  color: #fff;
  text-decoration: none;
  padding-block: 20px;
  padding-inline: 20px;
}
header .header_navs .btn {
  font-weight: bold;
  display: inline-block;
  text-decoration: none;
  background-color: rgb(255, 151, 116);
  padding: 20px;
  border-radius: 50px;
  color: #fff;
  transition: all 0.2s;
}
@media (max-width: 440px) {
  header .header_navs .btn {
    font-size: 20px;
    padding-inline: 40px;
  }
}
header .header_navs .btn:hover {
  color: rgb(255, 151, 116);
  background-color: #fff;
  outline: 2px solid rgb(255, 151, 116);
}

.mainvisual {
  position: relative;
  width: 100%;
  height: 100vh;
  z-index: -1;
}
@media (max-width: 440px) {
  .mainvisual {
    height: 80vh;
  }
}
.mainvisual h2 {
  position: absolute;
  top: 30%;
  left: 8%;
  font-size: 64px;
  font-weight: bold;
  color: #fff;
  z-index: 10;
  background-color: rgb(246, 188, 106);
  display: inline-block;
  line-height: 1.5;
  padding: 10px 20px;
  border-radius: 60px;
  box-shadow: 0 0 50px 40px rgb(246, 188, 106);
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
@media (max-width: 440px) {
  .mainvisual h2 {
    font-size: 24px;
  }
}
.fv-slider {
  position: absolute;
  top: -190px;
  left: 0;
  width: 100%;
  height: 100%;
  border-bottom-left-radius: 500px;
  border-bottom-right-radius: 500px;
  overflow: hidden;
}

.fv-slider .slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.fv-slider .slide.active {
  opacity: 1;
}

.about {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding-inline: 20px;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 440px) {
  .about {
    flex-direction: column;
  }
}
.about .about_title h2 {
  font-size: 64px;
  font-weight: bold;
  font-family: sans-serif;
  display: inline-block;
  color: rgb(106, 122, 73);
  position: relative;
}
@media (max-width: 440px) {
  .about .about_title h2 {
    font-size: 32px;
  }
}
.about .about_title h2::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 5px;
  bottom: 10px;
  background-color: rgb(255, 151, 116);
}
@media (max-width: 440px) {
  .about .about_title h2::before {
    width: 100px;
    bottom: 0;
  }
}
.about .about_title p {
  font-size: 24px;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 50px;
}
@media (max-width: 440px) {
  .about .about_title p {
    font-size: 12px;
    padding-right: 0;
  }
}
.about .about_title p.inner {
  font-size: 24px;
  margin-block: 50px;
}
@media (max-width: 440px) {
  .about .about_title p.inner {
    display: block;
    width: auto;
    font-size: 12px;
    margin-block: 15px;
  }
}
.about .about_title .btn {
  display: inline-block;
  font-size: 32px;
  font-weight: bold;
  background-color: rgb(106, 122, 73);
  padding: 15px 50px;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1.2s ease-out, transform 1.5s ease-out, background-color 0.3s;
}
.about .about_title .btn.is-animated {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 440px) {
  .about .about_title .btn {
    width: 70%;
    font-size: 16px;
    padding: 10px 50px;
  }
}
.about .about_title .btn span {
  display: inline-block;
  transition: transform 0.3s;
  margin-left: 10px;
}
.about .about_title .btn:hover {
  color: #fff;
  background-color: rgb(246, 188, 106);
  outline: 2px solid rgb(246, 188, 106);
}
.about .about_title .btn:hover span {
  transform: translateX(10px);
}
.about .about_icon {
  margin-left: 50px;
  position: relative;
}
@media (max-width: 440px) {
  .about .about_icon {
    margin-left: 0;
    margin-top: 50px;
  }
}
.about .about_icon img.item {
  display: block;
  max-width: 450px;
  height: 450px;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}
.about .about_icon img.item.is-animated {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 440px) {
  .about .about_icon img.item {
    width: 250px;
    height: 250px;
  }
}
.about .about_icon img.item_return {
  position: absolute;
  top: 80%;
  right: 0;
  display: block;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s ease-out 0.3s, transform 1.3s ease-out 0.3s;
}
.about .about_icon img.item_return.is-animated {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 440px) {
  .about .about_icon img.item_return {
    width: 150px;
    height: 150px;
    top: 60%;
    left: 55%;
  }
}

.problem {
  width: 100%;
  max-width: 1300px;
  margin: 200px auto 100px auto;
  padding-inline: 20px;
}
@media (max-width: 440px) {
  .problem {
    max-width: 450px;
  }
}
.problem .problem_title {
  text-align: center;
}
@media (max-width: 440px) {
  .problem .problem_title {
    text-align: left;
  }
}
.problem .problem_title h2 {
  font-size: 64px;
  font-weight: bold;
  font-family: sans-serif;
  color: rgb(106, 122, 73);
  position: relative;
}
@media (max-width: 440px) {
  .problem .problem_title h2 {
    font-size: 32px;
  }
}
.problem .problem_title h2::before {
  content: "";
  position: absolute;
  width: 270px;
  height: 5px;
  bottom: 10px;
  background-color: rgb(255, 151, 116);
}
@media (max-width: 440px) {
  .problem .problem_title h2::before {
    width: 140px;
    bottom: 0;
  }
}
.problem .problem_title p {
  font-size: 24px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (max-width: 440px) {
  .problem .problem_title p {
    font-size: 12px;
    margin: 0;
  }
}
.problem .problem_wrapper {
  display: flex;
  gap: 40px;
  margin-top: 150px;
}
@media (max-width: 440px) {
  .problem .problem_wrapper {
    flex-direction: column;
    margin-top: 80px;
  }
}
.problem .problem_inner {
  background-color: #fff;
  padding: 40px 20px;
  flex: 1;
  max-width: 380px;
  aspect-ratio: 1/1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 3px solid rgb(106, 122, 73);
  position: relative;
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.problem .problem_inner.is-show {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 440px) {
  .problem .problem_inner {
    max-width: 230px;
  }
  .problem .problem_inner:nth-child(2) {
    margin-left: 100px;
  }
  .problem .problem_inner:nth-child(3) {
    margin-top: 30px;
  }
}
.problem .problem_inner::before {
  content: "";
  position: absolute;
  top: -10%;
  left: 20%;
  width: 70px;
  height: 70px;
  background-color: #fff;
  border-radius: 50%;
  border: 3px solid rgb(106, 122, 73);
  z-index: 1;
}
@media (max-width: 440px) {
  .problem .problem_inner::before {
    width: 40px;
    height: 40px;
  }
}
.problem .problem_inner::after {
  content: "";
  position: absolute;
  top: -35px;
  left: 18%;
  width: 30px;
  height: 30px;
  background-color: #fff;
  border: 3px solid rgb(106, 122, 73);
  border-radius: 50%;
  z-index: 2;
}
@media (max-width: 440px) {
  .problem .problem_inner::after {
    width: 15px;
    height: 15px;
  }
}
.problem .problem_inner:nth-child(1)::before {
  top: -20%;
  left: 50%;
  transform: rotate(-20deg);
}
@media (max-width: 440px) {
  .problem .problem_inner:nth-child(1)::before {
    top: -20%;
    left: 20%;
  }
}
.problem .problem_inner:nth-child(1)::after {
  top: -30%;
  left: 70%;
}
@media (max-width: 440px) {
  .problem .problem_inner:nth-child(1)::after {
    left: 10%;
  }
}
.problem .problem_inner:nth-child(2)::before {
  top: -25%;
  left: 40%;
  transform: rotate(20deg);
}
@media (max-width: 440px) {
  .problem .problem_inner:nth-child(2)::before {
    top: -20%;
    left: 60%;
  }
}
.problem .problem_inner:nth-child(2)::after {
  top: -35%;
  left: 45%;
}
@media (max-width: 440px) {
  .problem .problem_inner:nth-child(2)::after {
    top: -30%;
    left: 50%;
  }
}
.problem .problem_inner:nth-child(3)::before {
  top: -20%;
  left: 30%;
  transform: rotate(-20deg);
}
@media (max-width: 440px) {
  .problem .problem_inner:nth-child(3)::before {
    top: -20%;
    left: 60%;
  }
}
.problem .problem_inner:nth-child(3)::after {
  top: -30%;
  left: 20%;
}
@media (max-width: 440px) {
  .problem .problem_inner:nth-child(3)::after {
    left: 80%;
  }
}
.problem .problem_inner p {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  z-index: 3;
  position: relative;
}
@media (max-width: 440px) {
  .problem .problem_inner p {
    font-size: 14px;
  }
}
.problem .problem_inner img {
  width: 160px;
  height: auto;
  z-index: 3;
}
@media (max-width: 440px) {
  .problem .problem_inner img {
    width: 100px;
	height: 120px;
  }
}

.service {
  width: 100%;
  padding: 50px 0 60px 0;
  margin-bottom: 250px;
  background-color: rgb(255, 242, 183);
  position: relative;
}
.service::after {
  content: "";
  position: absolute;
  bottom: -200px;
  display: inline-block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 200px 50vw 0 50vw;
  border-color: rgb(255, 242, 183) transparent transparent transparent;
}
.service .service_container {
  max-width: 1300px;
  margin: 0 auto;
  padding-inline: 20px;
}
.service .service_container .service_title {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 80px 40px auto;
  text-align: left;
  text-align: right;
}
@media (max-width: 440px) {
  .service .service_container .service_title {
    margin: 0 0 40px 0;
  }
}
.service .service_container .service_title h2 {
  font-size: 64px;
  font-weight: bold;
  font-family: sans-serif;
  color: rgb(106, 122, 73);
  position: relative;
  display: inline-block;
  line-height: 1.2;
}
@media (max-width: 440px) {
  .service .service_container .service_title h2 {
    font-size: 32px;
  }
}
.service .service_container .service_title h2::before {
  content: "";
  position: absolute;
  width: 240px;
  height: 5px;
  bottom: -5px;
  background-color: rgb(255, 151, 116);
}
@media (max-width: 440px) {
  .service .service_container .service_title h2::before {
    width: 120px;
    bottom: 0;
    text-align: left;
  }
}
.service .service_container .service_title p {
  font-size: 24px;
  margin-top: 5px;
  text-align: left;
}
@media (max-width: 440px) {
  .service .service_container .service_title p {
    font-size: 12px;
    margin-top: 0;
  }
}
.service .service_container .service_cards {
  display: flex;
  justify-content: space-around;
  gap: 20px;
  margin-bottom: 200px;
  font-size: 0;
}
@media (max-width: 440px) {
  .service .service_container .service_cards {
    flex-direction: column;
  }
}
.service .service_container .service_cards .service_list {
  padding-inline: 30px;
  padding-block: 40px;
  border: 3px solid rgb(106, 122, 73);
  border-radius: 50px;
  background-color: rgb(255, 249, 222);
  opacity: 0;
  transition: opacity 0.8s ease, margin-top 0.8s ease;
  min-height: 350px;
  width: 300px;
  font-size: 20px;
}
.service .service_container .service_cards .service_list.is-show {
  opacity: 1;
}
.service .service_container .service_cards .service_list:empty {
  display: none;
}
@media (max-width: 440px) {
  .service .service_container .service_cards .service_list {
    max-width: 250px;
    margin: 0 auto;
    text-align: center;
  }
}
.service .service_container .service_cards .service_list img {
  max-width: 200px;
  width: 100%;
  height: 180px;
  object-fit: contain;
  display: block;
  margin: 0 auto;
}
@media (max-width: 440px) {
  .service .service_container .service_cards .service_list img {
    width: 180px;
  }
}
.service .service_container .service_cards .service_list p {
  font-size: 20px;
  font-weight: bold;
  color: rgb(106, 122, 73);
  margin-bottom: 20px;
}
@media (max-width: 440px) {
  .service .service_container .service_cards .service_list p {
    display: inline-block;
    font-size: 16px;
    text-align: start;
  }
}
.service .service_container .service_cards .service_list:nth-child(2) {
  transform: translateY(80px);
}
.service .service_container .service_cards .service_list:nth-child(3) {
  transform: translateY(120px);
}
.service .service_container .service_cards .service_list .btn {
  display: inline-block;
  font-size: 24px;
  font-weight: bold;
  background-color: rgb(106, 122, 73);
  padding-inline: 20px;
  padding-block: 5px;
  border-radius: 50px;
  color: #fff;
  text-decoration: none;
  transition: all 0.3s;
}
@media (max-width: 440px) {
  .service .service_container .service_cards .service_list .btn {
    font-size: 16px;
  }
}
.service .service_container .service_cards .service_list .btn span {
  display: inline-block;
  transition: transform 0.3s;
  margin-left: 10px;
}
.service .service_container .service_cards .service_list .btn:hover {
  color: #fff;
  background-color: rgb(246, 188, 106);
  outline: 2px solid rgb(246, 188, 106);
}
.service .service_container .service_cards .service_list .btn:hover span {
  transform: translateX(10px);
}
.service .service_container .service_area {
  display: flex;
  justify-content: center;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 30px;
  border: 3px solid rgb(106, 122, 73);
  border-radius: 50px;
  background: rgb(255, 249, 222);
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1s ease, transform 1s ease;
}
.service .service_container .service_area.is-show {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 440px) {
  .service .service_container .service_area {
    flex-direction: column;
    max-width: 250px;
  }
}
.service .service_container .service_area .service_prompt {
  width: 45%;
  border-right: 2px solid #000;
}
@media (max-width: 440px) {
  .service .service_container .service_area .service_prompt {
    width: 100%;
    border-right: none;
    border-bottom: 2px solid #000;
  }
}
.service .service_container .service_area .service_prompt .service_prompt_text {
  display: flex;
  align-items: center;
  padding-bottom: 5px;
}
.service .service_container .service_area .service_prompt .service_prompt_text img {
  width: 50px;
}
@media (max-width: 440px) {
  .service .service_container .service_area .service_prompt .service_prompt_text img {
    width: 40px;
  }
}
.service .service_container .service_area .service_prompt .service_prompt_text span {
  font-size: 32px;
  font-weight: bold;
  align-items: center;
  padding-left: 10px;
}
@media (max-width: 440px) {
  .service .service_container .service_area .service_prompt .service_prompt_text span {
    font-size: 24px;
  }
}
.service .service_container .service_area .service_prompt p {
  font-size: 24px;
  font-weight: bold;
  padding-bottom: 5px;
}
@media (max-width: 440px) {
  .service .service_container .service_area .service_prompt p {
    font-size: 16px;
  }
}
.service .service_container .service_area .service_prompt p.text {
  font-size: 16px;
}
@media (max-width: 440px) {
  .service .service_container .service_area .service_prompt p.text {
    font-size: 8px;
    padding-bottom: 10px;
  }
}
.service .service_container .service_area .service_pick_up {
  width: 45%;
  padding-inline: 30px;
}
@media (max-width: 440px) {
  .service .service_container .service_area .service_pick_up {
    width: 100%;
    padding-inline: 0;
    margin-top: 10px;
  }
}
.service .service_container .service_area .service_pick_up .service_prompt_text {
  display: flex;
  align-items: center;
  font-size: 32px;
  padding-bottom: 10px;
}
.service .service_container .service_area .service_pick_up .service_prompt_text img {
  width: 50px;
}
@media (max-width: 440px) {
  .service .service_container .service_area .service_pick_up .service_prompt_text img {
    width: 40px;
  }
}
.service .service_container .service_area .service_pick_up .service_prompt_text span {
  font-size: 32px;
  font-weight: bold;
  align-items: center;
  padding-left: 10px;
}
@media (max-width: 440px) {
  .service .service_container .service_area .service_pick_up .service_prompt_text span {
    font-size: 16px;
  }
}
.service .service_container .service_area .service_pick_up .pick_up .start {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  background-color: rgb(246, 188, 106);
  padding-inline: 20px;
  border-radius: 50px;
}
@media (max-width: 440px) {
  .service .service_container .service_area .service_pick_up .pick_up .start {
    font-size: 16px;
    padding-inline: 10px;
  }
}
.service .service_container .service_area .service_pick_up .pick_up span {
  display: inline-block;
  font-size: 24px;
}
@media (max-width: 440px) {
  .service .service_container .service_area .service_pick_up .pick_up span {
    font-size: 16px;
  }
}
.service .service_container .service_area .service_pick_up .pick_up .end {
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  background-color: rgb(246, 188, 106);
  padding-inline: 10px;
  border-radius: 50px;
}
@media (max-width: 440px) {
  .service .service_container .service_area .service_pick_up .pick_up .end {
    font-size: 16px;
    padding-inline: 5px;
  }
}
.service .service_container .service_area .service_pick_up p {
  font-weight: bold;
  font-size: 24px;
  padding-block: 10px;
  margin-bottom: 10px;
}
@media (max-width: 440px) {
  .service .service_container .service_area .service_pick_up p {
    font-size: 16px;
    margin-bottom: 0;
  }
}

.news {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto 200px auto;
  padding-inline: 20px;
}
@media (max-width: 440px) {
  .news {
    margin: 0 auto 100px auto;
  }
}
@media (max-width: 440px) {
  .news .announce_title {
    margin-bottom: 20px;
  }
}
.news .announce_title h2 {
  font-size: 64px;
  font-weight: bold;
  font-family: sans-serif;
  display: inline-block;
  color: rgb(106, 122, 73);
  position: relative;
}
@media (max-width: 440px) {
  .news .announce_title h2 {
    font-size: 32px;
  }
}
.news .announce_title h2::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 5px;
  bottom: 10px;
  background-color: rgb(255, 151, 116);
}
@media (max-width: 440px) {
  .news .announce_title h2::before {
    width: 90px;
    bottom: 0;
  }
}
.news .announce_title p {
  font-size: 24px;
  width: -moz-fit-content;
  width: fit-content;
  padding-right: 50px;
}
@media (max-width: 440px) {
  .news .announce_title p {
    font-size: 12px;
  }
}
.news .announce_container {
  width: 750px;
  margin: 0 auto;
  padding-left: 30px;
  padding-block: 10px;
  border-radius: 10px;
  background-color: #fff;
  border: 1px solid rgb(106, 122, 73);
  /* --- アニメーション初期状態 --- */
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.news .announce_container.is-show {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 440px) {
  .news .announce_container {
    width: 330px;
    padding-left: 20px;
  }
}
.news .announce_container p {
  padding-bottom: 10px;
  font-size: 16px;
}
@media (max-width: 440px) {
  .news .announce_container p {
    font-size: 10px;
  }
}
.news .announce_container dl {
  display: flex;
  width: 300px;
}
.news .announce_container dl dt {
  width: 40%;
  line-height: 1.5;
}
@media (max-width: 440px) {
  .news .announce_container dl dt {
    width: 30%;
  }
}
.news .announce_container dl dt span {
  font-weight: bold;
  padding: 0 10px;
  color: #fff;
  background-color: rgb(165, 210, 190);
  border-radius: 20px;
  line-height: 1;
}
@media (max-width: 440px) {
  .news .announce_container dl dt span {
    font-size: 10px;
  }
}
.news .announce_container dl dd {
  width: 60%;
}
@media (max-width: 440px) {
  .news .announce_container dl dd {
    width: 70%;
    font-size: 10px;
    line-height: 2;
  }
}

.contact {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto 100px auto;
  padding-inline: 20px;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.contact.is-show {
  opacity: 1;
  transform: translateY(0);
}
.contact .contact_title {
  text-align: center;
  margin-bottom: 30px;
}
.contact .contact_title h2 {
  font-size: 64px;
  font-weight: bold;
  font-family: sans-serif;
  color: rgb(106, 122, 73);
  position: relative;
}
@media (max-width: 440px) {
  .contact .contact_title h2 {
    font-size: 32px;
  }
}
.contact .contact_title h2::before {
  content: "";
  position: absolute;
  width: 270px;
  height: 5px;
  bottom: 10px;
  background-color: rgb(255, 151, 116);
}
@media (max-width: 440px) {
  .contact .contact_title h2::before {
    width: 130px;
    bottom: 0;
  }
}
.contact .contact_title p {
  font-size: 24px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 30px auto;
}
@media (max-width: 440px) {
  .contact .contact_title p {
    font-size: 12px;
    width: auto;
    display: block;
    margin: 0 auto 10px auto;
  }
}
.contact .contact_title p.text {
  width: 750px;
  margin: 0 auto;
}
@media (max-width: 440px) {
  .contact .contact_title p.text {
    font-size: 10px;
    width: auto;
    display: block;
  }
}
.contact .contact_wrapper {
  display: flex;
  justify-content: center;
  align-items: stretch;
  width: 100%;
}
.contact .contact_wrapper .contact_tell,
.contact .contact_wrapper .contact_form {
  width: 100%;
  padding: 0;
}
.contact .contact_wrapper .contact_tell a,
.contact .contact_wrapper .contact_form a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding-block: 40px;
  text-decoration: none;
  color: #fff;
  transition: all 0.3s;
}
@media (max-width: 440px) {
  .contact .contact_wrapper .contact_tell a,
  .contact .contact_wrapper .contact_form a {
    padding-block: 15px;
  }
}
.contact .contact_wrapper .contact_tell a {
  font-size: 40px;
  font-weight: bold;
  border-radius: 20px 0 0 20px;
  background-color: rgb(165, 210, 190);
}
@media (max-width: 440px) {
  .contact .contact_wrapper .contact_tell a {
    font-size: 12px;
  }
}
.contact .contact_wrapper .contact_form a {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgb(255, 151, 116);
  border-radius: 0 20px 20px 0;
}
.contact .contact_wrapper .contact_form a .contact_image {
  position: relative;
  width: 50px;
  height: 50px;
  margin-right: 15px;
}
@media (max-width: 440px) {
  .contact .contact_wrapper .contact_form a .contact_image {
    width: 20px;
    height: 20px;
    margin-right: 5px;
  }
}
.contact .contact_wrapper .contact_form a .contact_image img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
  -o-object-fit: contain;
     object-fit: contain;
  transition: opacity 0.1s;
}
.contact .contact_wrapper .contact_form a .contact_image .img-hover {
  opacity: 0;
}
.contact .contact_wrapper .contact_form a:hover {
  background-color: #fff;
}
.contact .contact_wrapper .contact_form a:hover .contact_image .img-normal {
  opacity: 0;
}
.contact .contact_wrapper .contact_form a:hover .contact_image .img-hover {
  opacity: 1;
}
.contact .contact_wrapper .contact_form a:hover .contact_text {
  color: rgb(255, 151, 116);
}
.contact .contact_wrapper .contact_form a .contact_text {
  font-size: 40px;
  font-weight: bold;
  color: #fff;
}
@media (max-width: 440px) {
  .contact .contact_wrapper .contact_form a .contact_text {
    font-size: 12px;
  }
}

footer {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto 80px auto;
  padding-inline: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
footer img {
  width: 80px;
  display: block;
}
footer .header_navs {
  display: flex;
  justify-content: space-between;
}
footer .header_navs ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-weight: bold;
  background: rgb(106, 122, 73);
  padding: 10px;
  border-radius: 50px;
}
footer .header_navs ul li {
  padding-inline: 10px;
  list-style: none;
  border-right: 2px solid #fff;
}
@media (max-width: 440px) {
  footer .header_navs ul li {
    padding-inline: 5px;
  }
}
footer .header_navs ul li:last-of-type {
  border-right: none;
}
footer .header_navs ul li a {
  color: #fff;
  text-decoration: none;
  padding: 20px;
}
@media (max-width: 440px) {
  footer .header_navs ul li a {
    font-size: 12px;
    padding: 10px;
  }
}
footer .address p {
  font-weight: bold;
}
@media (max-width: 440px) {
  footer .address p {
    font-size: 12px;
  }
}

.fixd {
  position: fixed;
  right: 0;
  bottom: 50px;
  z-index: 9999;
  display: flex;
  align-items: center;
  background-color: #fff;
  border: 2px solid rgb(106, 122, 73);
  border-right: none;
  border-radius: 50px 0 0 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
  padding-right: 20px;
}
@media (max-width: 440px) {
  .fixd {
    display: none;
  }
}
.fixd .fixd_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
}
.fixd .fixd_btn img {
  width: 30px;
  height: auto;
  transition: transform 0.3s ease;
  margin-top: 5px;
}
.fixd p {
  font-size: 16px;
  font-weight: bold;
  color: rgb(106, 122, 73);
  white-space: nowrap;
  width: auto;
  opacity: 1;
  margin: 0;
}
.fixd:hover {
  background-color: rgb(106, 122, 73);
}
.fixd:hover .fixd_btn img {
  transform: translateY(-5px);
  filter: brightness(0) invert(1);
}
.fixd:hover p {
  color: #fff;
}

.copy {
  width: 100%;
  text-align: center;
  background-color: rgb(106, 122, 73);
  color: #fff;
  font-size: 16px;
}
@media (max-width: 440px) {
  .copy {
    font-size: 8px;
  }
}

body {
  font-family: "Zen Maru Gothic", serif;
  letter-spacing: 0.05em;
  background-color: rgb(255, 249, 222);
}

header {
  display: flex;
  justify-content: space-between;
  z-index: 10;
}
header img {
  width: 150px;
  margin-left: 100px;
}
header .header_navs {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 80px;
}
@media (max-width: 440px) {
  header .header_navs {
    justify-content: center;
    margin-right: 0;
  }
}
header .header_navs ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-right: 50px;
  font-weight: bold;
  padding: 20px 40px;
  border-radius: 50px;
}
@media (max-width: 440px) {
  header .header_navs ul {
    margin-right: 0;
  }
}
header .header_navs ul li {
  padding-inline: 10px;
  list-style: none;
  border-right: 2px solid #fff;
}
@media (max-width: 440px) {
  header .header_navs ul li {
    border: none;
  }
}
header .header_navs ul li:last-of-type {
  border-right: none;
}
header .header_navs ul li a {
  color: #fff;
  text-decoration: none;
  padding-block: 20px;
  padding-inline: 20px;
}
header .header_navs .btn {
  font-weight: bold;
  display: inline-block;
  text-decoration: none;
  background-color: rgb(255, 151, 116);
  padding: 20px;
  border-radius: 50px;
  color: #fff;
  transition: all 0.2s;
}
header .header_navs .btn:hover {
  color: rgb(255, 151, 116);
  background-color: #fff;
  outline: 2px solid rgb(255, 151, 116);
}

.about_container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto 100px auto;
  padding-inline: 20px;
}
.about_container .about_container_title {
  text-align: center;
  margin-bottom: 80px;
}
.about_container .about_container_title h2 {
  font-size: 64px;
  font-weight: bold;
  font-family: sans-serif;
  color: rgb(106, 122, 73);
  position: relative;
}
@media (max-width: 440px) {
  .about_container .about_container_title h2 {
    font-size: 32px;
    margin-top: 30px;
  }
}
.about_container .about_container_title h2::before {
  content: "";
  position: absolute;
  width: 230px;
  height: 5px;
  bottom: 10px;
  background-color: rgb(255, 151, 116);
}
@media (max-width: 440px) {
  .about_container .about_container_title h2::before {
    width: 110px;
    bottom: 0;
  }
}
.about_container .about_container_title p {
  font-size: 24px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (max-width: 440px) {
  .about_container .about_container_title p {
    font-size: 12px;
  }
}
.about_container .message {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.about_container .message .message_title {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.about_container .message .message_title.is-show {
  opacity: 1;
  transform: translateY(0);
}
.about_container .message .message_title h3 {
  font-size: 48px;
  font-weight: bold;
  font-family: sans-serif;
  color: rgb(106, 122, 73);
}
@media (max-width: 440px) {
  .about_container .message .message_title h3 {
    font-size: 24px;
  }
}
.about_container .message .message_title p {
  font-size: 32px;
  padding-bottom: 20px;
}
@media (max-width: 440px) {
  .about_container .message .message_title p {
    font-size: 16px;
  }
}
.about_container .message .text {
  width: 100%;
  max-width: 50%;
  display: block;
  margin: 50px 0 80px auto;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.about_container .message .text.is-show {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 440px) {
  .about_container .message .text {
    margin: 0;
    max-width: 100%;
  }
}
.about_container .message .text h4 {
  font-size: 48px;
  color: rgb(106, 122, 73);
}
@media (max-width: 440px) {
  .about_container .message .text h4 {
    font-size: 20px;
  }
}
.about_container .message .text p {
  font-size: 24px;
}
@media (max-width: 440px) {
  .about_container .message .text p {
    font-size: 12px;
  }
}
.about_container .message_thought {
  display: flex;
  justify-content: space-between;
  margin-block: 50px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.about_container .message_thought.is-show {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 440px) {
  .about_container .message_thought {
    flex-direction: column;
  }
}
.about_container .message_thought .thought_area {
  width: 45%;
}
@media (max-width: 440px) {
  .about_container .message_thought .thought_area {
    width: 100%;
  }
}
.about_container .message_thought .thought_area h4 {
  font-size: 48px;
  color: rgb(106, 122, 73);
}
@media (max-width: 440px) {
  .about_container .message_thought .thought_area h4 {
    font-size: 20px;
  }
}
.about_container .message_thought .thought_area p {
  font-size: 24px;
}
@media (max-width: 440px) {
  .about_container .message_thought .thought_area p {
    font-size: 12px;
    margin-bottom: 20px;
  }
}
.about_container .message_thought .image_area img {
  width: 500px;
  border-radius: 10px;
}
@media (max-width: 440px) {
  .about_container .message_thought .image_area img {
    width: 300px;
  }
}

body {
  font-family: "Zen Maru Gothic", serif;
  letter-spacing: 0.05em;
  background-color: rgb(255, 249, 222);
}

.company {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding-inline: 20px;
  display: flex;
}
@media (max-width: 440px) {
  .company {
    flex-direction: column;
  }
}
.company .title {
  width: 40%;
}
.company .title h3 {
  font-size: 48px;
  font-weight: bold;
  font-family: sans-serif;
  color: rgb(106, 122, 73);
}
@media (max-width: 440px) {
  .company .title h3 {
    font-size: 20px;
  }
}
.company .title p {
  font-size: 32px;
  padding-bottom: 20px;
}
@media (max-width: 440px) {
  .company .title p {
    font-size: 16px;
  }
}
.company .table {
  width: 60%;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 1s ease, transform 1s ease;
}
.company .table.is-show {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 440px) {
  .company .table {
    width: 100%;
  }
}
.company .table dl {
  margin-top: 50px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 440px) {
  .company .table dl {
    margin-top: 10px;
  }
}
.company .table dl dt {
  width: 30%;
  border-top: 1px solid #000;
  padding-block: 30px;
  font-size: 24px;
}
@media (max-width: 440px) {
  .company .table dl dt {
    width: 100%;
    padding-block: 5px;
    font-size: 12px;
  }
}
.company .table dl dt:last-of-type {
  border-bottom: 1px solid #000;
}
@media (max-width: 440px) {
  .company .table dl dt:last-of-type {
    border-bottom: none;
  }
}
.company .table dl dd {
  width: 70%;
  border-top: 1px solid #000;
  padding-block: 30px;
  font-size: 24px;
}
@media (max-width: 440px) {
  .company .table dl dd {
    width: 100%;
    padding-block: 5px;
    border-top: none;
    font-size: 12px;
  }
}
.company .table dl dd:last-of-type {
  border-bottom: 1px solid #000;
}

.map {
  width: 100%;
  line-height: 0;
  margin-bottom: 100px;
}
.map iframe {
  width: 100%;
  height: 500px;
  vertical-align: bottom;
}

body {
  font-family: "Zen Maru Gothic", serif;
  letter-spacing: 0.05em;
  background-color: rgb(255, 249, 222);
}

.service_container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding-inline: 20px;
}
.service_container .service_container_title {
  text-align: center;
  margin-bottom: 80px;
}
.service_container .service_container_title h2 {
  font-size: 64px;
  font-weight: bold;
  font-family: sans-serif;
  color: rgb(106, 122, 73);
  position: relative;
}
@media (max-width: 440px) {
  .service_container .service_container_title h2 {
    font-size: 32px;
    margin-top: 30px;
  }
}
.service_container .service_container_title h2::before {
  content: "";
  position: absolute;
  width: 270px;
  height: 5px;
  bottom: 10px;
  background-color: rgb(255, 151, 116);
}
@media (max-width: 440px) {
  .service_container .service_container_title h2::before {
    width: 140px;
    bottom: 0;
  }
}
.service_container .service_container_title p {
  font-size: 24px;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}
@media (max-width: 440px) {
  .service_container .service_container_title p {
    font-size: 12px;
  }
}
.service_container .service_list .service_item {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 250px;
  position: relative;
}
@media (max-width: 440px) {
  .service_container .service_list .service_item {
    margin-bottom: 150px;
  }
}
.service_container .service_list .service_item img {
  width: 550px;
  margin-left: 100px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}
.service_container .service_list .service_item img.is-animated {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 440px) {
  .service_container .service_list .service_item img {
    width: 330px;
    margin-left: 0;
  }
}
.service_container .service_list .service_item .service_caption {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s ease-out 0.2s, transform 1.2s ease-out 0.2s;
}
.service_container .service_list .service_item .service_caption.is-animated {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 440px) {
  .service_container .service_list .service_item .service_caption {
    top: 80%;
    left: 19%;
    width: 80%;
  }
}
.service_container .service_list .service_item .service_caption p.label {
  border-radius: 30px 30px 0 0;
  display: block;
}
.service_container .service_list .service_item .service_caption span {
  width: 100%;
  padding: 10px;
  display: inline-block;
  color: #fff;
  background-color: rgb(106, 122, 73);
  font-size: 32px;
  font-weight: bold;
  border-radius: 10px 10px 0 0;
}
@media (max-width: 440px) {
  .service_container .service_list .service_item .service_caption span {
    padding: 5px;
    font-size: 16px;
  }
}
.service_container .service_list .service_item .service_caption p {
  background-color: #fff;
  font-size: 24px;
  padding: 20px;
  border-radius: 0 0 10px 10px;
}
@media (max-width: 440px) {
  .service_container .service_list .service_item .service_caption p {
    font-size: 12px;
  }
}
.service_container .service_list .service_item_return {
  display: flex;
  justify-content: center;
  margin-bottom: 250px;
  position: relative;
  z-index: 1;
}
@media (max-width: 440px) {
  .service_container .service_list .service_item_return {
    margin-bottom: 150px;
  }
}
.service_container .service_list .service_item_return img {
  width: 550px;
  margin-left: 500px;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s ease-out, transform 1.2s ease-out;
}
.service_container .service_list .service_item_return img.is-animated {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 440px) {
  .service_container .service_list .service_item_return img {
    width: 330px;
    margin-left: 0;
  }
}
.service_container .service_list .service_item_return .service_caption_return {
  position: absolute;
  top: 50%;
  left: 10%;
  width: 40%;
  border-radius: 10px;
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 1.2s ease-out 0.2s, transform 1.2s ease-out 0.2s;
  z-index: 10;
}
.service_container .service_list .service_item_return .service_caption_return.is-animated {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 440px) {
  .service_container .service_list .service_item_return .service_caption_return {
    top: 80%;
    left: 0;
    width: 80%;
  }
}
.service_container .service_list .service_item_return .service_caption_return span {
  width: 100%;
  padding: 10px;
  display: inline-block;
  color: #fff;
  background-color: rgb(106, 122, 73);
  font-size: 32px;
  font-weight: bold;
  border-radius: 10px 10px 0 0;
}
@media (max-width: 440px) {
  .service_container .service_list .service_item_return .service_caption_return span {
    padding: 5px;
    font-size: 16px;
  }
}
.service_container .service_list .service_item_return .service_caption_return p {
  background-color: #fff;
  font-size: 24px;
  padding: 20px;
  border-radius: 0 0 10px 10px;
}
@media (max-width: 440px) {
  .service_container .service_list .service_item_return .service_caption_return p {
    font-size: 12px;
  }
}

.schedule {
  width: 100%;
  max-width: 1300px;
  margin: 200px auto 100px auto;
  padding-inline: 20px;
  text-align: center;
}
@media (max-width: 440px) {
  .schedule {
    margin: 200px auto 50px auto;
  }
}
.schedule h3 {
  font-size: 48px;
  font-weight: bold;
  font-family: sans-serif;
  color: rgb(106, 122, 73);
  position: relative;
}
@media (max-width: 440px) {
  .schedule h3 {
    font-size: 24px;
  }
}
.schedule h3::before {
  content: "";
  position: absolute;
  width: 220px;
  height: 5px;
  bottom: 5px;
  background-color: rgb(255, 151, 116);
}
@media (max-width: 440px) {
  .schedule h3::before {
    width: 110px;
    height: 3px;
    bottom: 0;
  }
}
.schedule p {
  font-size: 24px;
  padding-bottom: 50px;
}
@media (max-width: 440px) {
  .schedule p {
    font-size: 12px;
    padding-bottom: 20px;
  }
}
.schedule .schedule_list {
  display: flex;
  justify-content: space-around;
}
.schedule .schedule_list .schedule_item {
  width: 180px;
  height: 180px;
  background-color: #fff;
  border: 1px solid rgb(194, 194, 194);
  border-radius: 50%;
  position: relative;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
}
.schedule .schedule_list .schedule_item.is-animated {
  opacity: 1;
  transform: translateY(0);
}
@media (max-width: 440px) {
  .schedule .schedule_list .schedule_item {
    width: 50px;
    height: 50px;
  }
}
.schedule .schedule_list .schedule_item::after {
  content: "";
  position: absolute;
  top: 50%;
  left: -50px;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 0 15px 25px;
  border-color: transparent transparent transparent rgb(106, 122, 73);
}
@media (max-width: 440px) {
  .schedule .schedule_list .schedule_item::after {
    left: -28%;
    border-width: 5px 0 5px 10px;
  }
}
.schedule .schedule_list .schedule_item:first-child::after {
  display: none;
}
.schedule .schedule_list .schedule_item img {
  width: 80px;
  padding-top: 15px;
}
@media (max-width: 440px) {
  .schedule .schedule_list .schedule_item img {
    width: 20px;
    padding-top: 5px;
  }
}
.schedule .schedule_list .schedule_item p {
  font-weight: bold;
  font-size: 16px;
  padding-bottom: 0;
}
@media (max-width: 440px) {
  .schedule .schedule_list .schedule_item p {
    font-size: 4px;
  }
}

.contact_container {
  max-width: 1000px;
  margin: 100px auto;
  padding-inline: 20px;
}
.contact_container h2 {
  font-size: 64px;
  font-weight: bold;
  font-family: sans-serif;
  color: rgb(106, 122, 73);
  text-align: center;
  position: relative;
  display: inline-block;
  left: 50%;
  transform: translateX(-50%);
}
@media (max-width: 440px) {
  .contact_container h2 {
    font-size: 32px;
  }
}
.contact_container h2::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  bottom: 0;
  left: 0;
  background-color: rgb(255, 151, 116);
}
.contact_container .subtitle {
  text-align: center;
  font-size: 24px;
  margin-bottom: 100px;
}
@media (max-width: 440px) {
  .contact_container .subtitle {
    font-size: 12px;
    margin-bottom: 50px;
  }
}
.contact_container .contact_wrapper {
  display: flex;
  gap: 40px;
  align-items: flex-start;
}
@media (max-width: 440px) {
  .contact_container .contact_wrapper {
    flex-direction: column;
    gap: 20px;
  }
}
.contact_container .contact_nav ul {
  list-style: none;
  padding: 0;
}
@media (max-width: 440px) {
  .contact_container .contact_nav ul {
    display: flex;
    text-align: right;
  }
}
.contact_container .contact_nav ul li {
  writing-mode: vertical-rl;
  font-size: 28px;
  font-weight: bold;
  letter-spacing: 0.2em;
  color: #333;
  margin-bottom: 20px;
  position: relative;
  padding-right: 15px;
}
@media (max-width: 440px) {
  .contact_container .contact_nav ul li {
    font-size: 14px;
    writing-mode: horizontal-tb;
  }
}
.contact_container .contact_nav ul li.is-active {
  color: #000;
}
.contact_container .contact_body {
  flex: 1;
}
.contact_container .contact_body .contact_item {
  display: flex;
  background-color: rgb(106, 122, 73);
  border-radius: 50px;
  margin-bottom: 20px;
  overflow: hidden;
  border: 2px solid rgb(106, 122, 73);
}
@media (max-width: 440px) {
  .contact_container .contact_body .contact_item {
    flex-direction: column;
    border-radius: 20px;
    width: 330px;
  }
}
.contact_container .contact_body .contact_item.is-textarea {
  border-radius: 30px;
}
.contact_container .contact_body .contact_item.is-textarea .contact_item_title {
  align-items: flex-start;
  padding-top: 40px;
}
@media (max-width: 440px) {
  .contact_container .contact_body .contact_item.is-textarea .contact_item_title {
    padding: 10px 10px 10px 15px;
  }
}
.contact_container .contact_body .contact_item .contact_item_title {
  width: 30%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: #fff;
  padding: 15px;
}
@media (max-width: 440px) {
  .contact_container .contact_body .contact_item .contact_item_title {
    width: -moz-fit-content;
    width: fit-content;
    padding: 5px 5px 5px 15px;
  }
}
.contact_container .contact_body .contact_item .contact_item_title p {
  font-size: 18px;
  font-weight: bold;
  text-align: center;
  width: -moz-fit-content;
  width: fit-content;
}
@media (max-width: 440px) {
  .contact_container .contact_body .contact_item .contact_item_title p {
    font-size: 12px;
  }
}
.contact_container .contact_body .contact_item .contact_item_input {
  width: 70%;
  background-color: #fff;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  border-radius: 50px 0 0 50px;
}
@media (max-width: 440px) {
  .contact_container .contact_body .contact_item .contact_item_input {
    width: 100%;
    border-radius: 20px 20px 20px 20px;
  }
}
.contact_container .contact_body .contact_item .contact_item_input input,
.contact_container .contact_body .contact_item .contact_item_input textarea {
  flex: 1;
  border: none;
  outline: none;
  font-size: 16px;
  padding: 10px;
}
@media (max-width: 440px) {
  .contact_container .contact_body .contact_item .contact_item_input input,
  .contact_container .contact_body .contact_item .contact_item_input textarea {
    font-size: 12px;
  }
}
.contact_container .contact_body .contact_item .contact_item_input textarea {
  min-height: 200px;
}
.contact_container .contact_body .contact_item .contact_item_input .required {
  background-color: rgb(255, 151, 116);
  color: #fff;
  font-size: 12px;
  padding: 4px 12px;
  border-radius: 20px;
  white-space: nowrap;
}
@media (max-width: 440px) {
  .contact_container .contact_body .contact_item .contact_item_input .required {
    font-size: 6px;
    padding: 2px 6px;
  }
}
.contact_container .privacypolicy {
  margin-top: 40px;
}
@media (max-width: 440px) {
  .contact_container .privacypolicy {
    width: 330px;
  }
}
.contact_container .privacypolicy .privacypolicy_title {
  font-weight: bold;
  margin-bottom: 15px;
  width: auto;
}
.contact_container .privacypolicy .privacypolicy_text {
  font-size: 14px;
  margin-bottom: 20px;
}
@media (max-width: 440px) {
  .contact_container .privacypolicy .privacypolicy_text {
    font-size: 7px;
  }
}
.contact_container .privacypolicy .privacypolicy_text p {
  width: auto;
  margin: 0;
  font-size: 14px;
}
@media (max-width: 440px) {
  .contact_container .privacypolicy .privacypolicy_text p {
    font-size: 7px;
  }
}
.contact_container .privacypolicy .contact_form_label {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 30px;
  cursor: pointer;
}
.contact_container .privacypolicy .contact_form_label span {
  font-size: 16px;
}
@media (max-width: 440px) {
  .contact_container .privacypolicy .contact_form_label span {
    font-size: 8px;
  }
}
.contact_container .privacypolicy .contact_form_label .required {
  background-color: rgb(255, 151, 116);
  color: #fff;
  padding: 2px 10px;
  border-radius: 10px;
  font-size: 12px;
}
@media (max-width: 440px) {
  .contact_container .privacypolicy .contact_form_label .required {
    padding: 1px 5px;
    font-size: 6px;
  }
}
.contact_container .privacypolicy .contact_btn {
  display: block;
  width: 350px;
  margin: 0 auto 0 200px;
  background-color: rgb(255, 151, 116);
  color: #fff;
  border: none;
  padding: 20px;
  border-radius: 50px;
  font-size: 20px;
  font-weight: bold;
  cursor: pointer;
  transition: opacity 0.3s;
}
@media (max-width: 440px) {
  .contact_container .privacypolicy .contact_btn {
    margin: 0;
  }
}
.contact_container .privacypolicy .contact_btn:hover {
  opacity: 0.8;
}

.modal {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1000;
  justify-content: center;
  align-items: center;
}
.modal.is-show {
  display: flex;
}
.modal .modal_content {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
  width: 90%;
  max-width: 600px;
}
.modal .modal_list {
  margin-bottom: 30px;
}
.modal .modal_list dt {
  font-weight: bold;
  color: rgb(106, 122, 73);
  margin-top: 15px;
  font-size: 14px;
}
.modal .modal_list dd {
  margin-left: 0;
  padding-bottom: 5px;
  border-bottom: 1px solid #eee;
  font-size: 16px;
  min-height: 1.5em;
}
.modal .modal_btns {
  display: flex;
  gap: 20px;
  justify-content: center;
}
.modal .modal_btns .back_btn {
  width: 200px;
  padding: 15px;
  border-radius: 50px;
  border: 1px solid #ccc;
  background: #fff;
  cursor: pointer;
}
.modal .contact_nav ul li {
  transition: color 0.3s;
  opacity: 0.5;
}
.modal .contact_nav ul li.is-active {
  opacity: 1;
  color: rgb(106, 122, 73);
}
.modal .contact_nav ul li.is-active::before {
  color: rgb(255, 151, 116);
}

/* =============================
   タブレット対応 768px
   ============================= */
@media (max-width: 768px) {

  /* 1. ヘッダー：ハンバーガーメニューに切り替え */
  header .m-hamburger_btn {
    display: block;
    position: fixed;
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    background-color: rgb(106, 122, 73);
    z-index: 1005;
  }

  header a img {
    width: 100px;
    margin-left: 20px;
    position: relative;
    z-index: 1001;
  }

  header .header_navs {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100vh;
    background-color: rgba(106, 122, 73, 0.95);
    flex-direction: column;
    justify-content: center;
    margin-right: 0;
    z-index: 1001;
    transition: all 0.5s ease;
  }

  header .header_navs.is-active {
    top: 0;
  }

  header .header_navs ul {
    flex-direction: column;
    background: none;
    padding: 0;
    margin-right: 0;
  }

  header .header_navs ul li {
    border-right: none;
    margin-bottom: 20px;
    text-align: center;
  }

  header .header_navs ul li a {
    font-size: 24px;
  }

  header .header_navs .btn {
    font-size: 20px;
    padding-inline: 40px;
  }
	
	/* FV：キャッチコピー文字サイズ調整 */
  .mainvisual h2 {
  font-size: 36px;
  top: 20%;
  left: 5%;
  }

  /* 2. About画像：楕円歪み修正 */
  .about .about_icon img.item {
    width: 300px;
    height: 300px;
    object-fit: cover;
    border-radius: 50%;
  }

  .about .about_icon img.item_return {
    width: 150px;
    height: 150px;
	top: 70%;
    object-fit: cover;
    border-radius: 50%;
  }
  .about .about_title .btn {
   margin-top: 40px;
  }
  .about .about_title p {
   font-size: 16px;
  }

	/*.problem  */
  .problem {
		margin-top: 100px;
  }
  .problem .problem_wrapper {
   gap: 20px;
   justify-content: center;
  }
 .problem .problem_inner {
   width: 200px;
   height: 200px;
   max-width: 200px;
   aspect-ratio: 1 / 1;
   flex-shrink: 0;
   padding: 20px 10px;
  }

  .problem .problem_inner img {
    width: 80px;
    height: auto;
  }

  .problem .problem_inner  {
    font-size: 16px;
  }
  .about .about_title p.inner{
    font-size: 16px;
  }

/* Problem：吹き出し丸の位置調整 */
  .problem .problem_inner::before {
    width: 40px;
    height: 40px;
  }

  .problem .problem_inner::after {
   width: 15px;
   height: 15px;
  }

  /* 3. Serviceカード：1カラム縦並びに変更 */
  .service .service_container .service_cards {
    flex-direction: column;
    align-items: center;
	  margin-bottom: 100px;
  }

  .service .service_container .service_cards .service_list {
    margin: 0 auto 50px auto;
  }

  /* ズレ解消 */
  .service .service_container .service_cards .service_list:nth-child(2) {
    transform: translateY(0);
  }

  .service .service_container .service_cards .service_list:nth-child(3) {
    transform: translateY(0);
  }
  .service .service_container .service_area .service_pick_up .service_prompt_text span {
	font-size: 26px;
  }

  /* 4. 工賃・送迎：余白調整 */
  .service_container .service_area {
    max-width: 90%;
    padding: 24px;
  }

  .service_container .service_area .service_prompt {
    width: 100%;
    border-right: none;
    padding-bottom: 20px;
    margin-bottom: 20px;
  }

  .service_container .service_area .service_pick_up {
    width: 100%;
    padding-inline: 0;
  }

  /* 5. Contact：縦並びに変更 */
  .contact .contact_wrapper {
    flex-direction: column;
  }

  .contact .contact_wrapper .contact_tell a {
    border-radius: 20px;
    margin-bottom: 10px;
    font-size: 28px;
  }

  .contact .contact_wrapper .contact_form a {
    border-radius: 20px;
  }

  .contact .contact_wrapper .contact_tell,
  .contact .contact_wrapper .contact_form {
    width: 100%;
  }
}

/*# sourceMappingURL=style.css.map */