@charset "UTF-8";
/* CSS Document */
/*----------------------
共通
----------------------*/
html {
  font-size: 62.5%;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
  color: #2B2B2B;
  width: 100%;
  scroll-behavior: smooth;
}
body {
  font-size: 2.0rem;
  line-height: 1.6;
}
*, *::before, *::after {
  box-sizing: border-box;
}
a {
  text-decoration: none;
}
.inner {
  width: 100%;
  max-width: 1200px;
  padding: 0 50px;
  margin: 0 auto;
}
section {
  padding: 160px 0;
}
.title-ja {
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 20px;
}
.title-en {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 3.2rem;
  font-weight: 600;
  color: #8DC19D;
  line-height: 1;
  margin-bottom: 80px;
}
.title-en::before {
  content: "";
  display: block;
  width: 25px;
  height: 4px;
  margin-left: 4px;
  background-color: #8DC19D;
}
.btn {
  width: 280px;
  height: 56px;
  background: #007A88;
  border: 3px solid #007A88;
  border-radius: 28px;
  margin: 0 auto;
}
.btn a {
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  border-radius: 28px;
}
.btn a i {
  position: absolute;
  top: 14px;
  right: 20px;
}
.btn a:hover {
  background: #fff;
  color: #007A88;
}
.pc_only {
  display: block;
}
.sp_only {
  display: none;
}
.grecaptcha-badge {
  visibility: hidden;
}
.recaptcha {
  text-align: center;
}
.recaptcha, .recaptcha a {
  font-size: 1.0rem;
  color: #666666;
}
@media(max-width: 1240px) {
  body {
    font-size: 1.8rem;
  }
  section {
    padding: 120px 0;
  }
  .inner {
    max-width: 1200px;
    padding: 0 40px;
  }
  .btn a {
    font-size: 2.0rem;
  }
  .title-ja {
    font-size: 4.4rem;
  }
  .title-en {
    font-size: 2.8rem;
    margin-bottom: 60px;
  }
}
@media(max-width: 768px) {
  body {
    font-size: 1.6rem;
  }
  .inner {
    max-width: 640px;
    padding: 0 20px;
  }
  .title-ja {
    font-size: 4.0rem;
  }
  .title-en {
    font-size: 2.4rem;
    margin-bottom: 40px;
  }
  .btn {
    width: 240px;
    height: 40px;
    border-radius: 28px;
  }
  .btn a {
    font-size: 2.0rem;
  }
  .btn a i {
    position: absolute;
    top: 8px;
    right: 12px;
  }
  .pc_only {
    display: none;
  }
  .sp_only {
    display: block;
  }
}
@media(max-width: 480px) {
  section {
    padding: 80px 0;
  }
  .title-ja {
    font-size: 3.6rem;
    margin-bottom: 16px;
  }
  .title-en {
    font-size: 2.0rem;
  }
}
/*----------------------
header
----------------------*/
.header {
  width: 100%;
  height: 100px;
  position: fixed;
  top: 0;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
  z-index: 2000;
}
.header_innger {
  width: 100%;
  height: 100%;
  padding: 20px 40px;
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
.header h1 {
  height: 60px;
}
.header h1 img {
  height: 100%;
  object-fit: cover;
}
.header_items {
  display: flex;
  align-items: center;
  gap: 40px;
  margin-right: 100px;
}
.header_tel {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-size: 3.2rem;
  line-height: 1.3;
  font-weight: 600;
  color: #F4A259;
}
.header_tel.sp_only {
  display: none;
}
.header_tel i {
  margin-right: 4px;
  font-size: 2.8rem;
}
.header_tel span {
  font-size: 1.8rem;
  color: #2b2b2b;
}
.header_btn.pc_only {
  display: block;
}
.header_btn.sp_only {
  display: none;
}
.header_btn a {
  width: 240px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #007A88;
  border: 3px solid #007A88;
  color: #fff;
  font-size: 2.4rem;
  font-weight: 600;
  text-decoration: none;
  border-radius: 8px;
}
.header_btn a:hover {
  background: #fff;
  color: #007A88;
}
.menu-toggle {
  width: 60px;
  height: 60px;
  background: #2B2B2B;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  position: absolute;
  top: 20px;
  right: 40px;
}
.menu-toggle div {
  width: 32px;
  height: 3px;
  background: #fff;
  transition: 0.3s;
}
.menu-toggle.active div:nth-child(1) {
  transform: translateY(13px) rotate(45deg);
}
.menu-toggle.active div:nth-child(2) {
  opacity: 0;
}
.menu-toggle.active div:nth-child(3) {
  transform: translateY(-13px) rotate(-45deg);
}
.header_menu {
  display: none;
  flex-direction: column;
  position: absolute;
  top: 100px;
  right: 0;
  background: rgba(0, 122, 136, 0.9);
  width: calc(100vw / 3);
  height: 100vh;
  padding: 80px 40px;
}
.header_menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.header_menu ul li {
  border-bottom: 1px solid #fff;
}
.header_menu ul li:first-of-type {
  border-top: 1px solid #fff;
}
.header_menu ul li a {
  display: flex;
  justify-content: space-between;
  padding: 20px 20px 20px 0;
  text-decoration: none;
  color: #fff;
  font-size: 2.4rem;
  line-height: 1;
}
.header_menu ul li a:hover {
  color: #8DC19D;
}
.header_menu.active {
  display: flex;
}
@media(max-width: 1240px) {
  .header {
    height: 80px;
  }
  .header_innger {
    padding: 10px 20px;
  }
  .header h1 {
    height: 48px;
  }
  .header_items {
    gap: 20px;
    margin-right: 80px;
  }
  .header_tel {
    font-size: 2.8rem;
  }
  .header_tel i {
    font-size: 2.4rem;
  }
  .header_tel span {
    font-size: 1.6rem;
  }
  .header_btn a {
    width: 160px;
    font-size: 2.0rem;
  }
  .header_menu ul li a {
    font-size: 2.0rem;
  }
  .menu-toggle {
    top: 10px;
    right: 20px;
  }
  .header_menu {
    top: 80px;
    width: 400px;
  }
}
@media(max-width: 768px) {
  .header {
    height: 60px;
  }
  .header_innger {
    padding: 10px;
  }
  .header h1 {
    height: 40px;
  }
  .header_items {
    margin-right: 50px;
    gap: 10px;
  }
  .header_tel.pc_only {
    display: none;
  }
  .header_tel.sp_only {
    display: block;
  }
  .header_tel {
    font-size: 2.4rem;
    line-height: 1.2;
  }
  .header_tel i {
    display: flex;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding-top: 10px;
    margin-right: 0;
    border-radius: 4px;
    background: #F4A259;
    color: #fff;
    font-size: 2.0rem;
  }
  .header_tel span {
    font-size: 1.4rem;
  }
  .header_btn.pc_only {
    display: none;
  }
  .header_btn.sp_only {
    display: block;
  }
  .header_btn a {
    width: 40px;
    height: 40px;
    border-radius: 4px;
  }
  .header_btn a i {
    display: flex;
    justify-content: center;
    width: 40px;
    height: 40px;
    padding-top: 10px;
    border-radius: 4px;
    background: #007A88;
    color: #fff;
    font-size: 2.0rem;
  }
  .header_menu ul li a {
    font-size: 1.8rem;
  }
  .menu-toggle {
    width: 40px;
    height: 40px;
    gap: 6px;
    top: 10px;
    right: 10px;
  }
  .menu-toggle div {
    width: 24px;
    height: 2px;
  }
  .menu-toggle.active div:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }
  .menu-toggle.active div:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
  .header_menu {
    top: 60px;
    width: 360px;
    padding: 40px 20px;
  }
}
@media(max-width: 480px) {
  .header_innger {
    padding: 10px 8px;
  }
  .header h1 {
    height: 32px;
    margin-top: -12px;
  }
  .header_items {
    margin-right: 48px;
    gap: 8px;
  }
  .header_menu {
    padding: 20px;
    width: 280px;
  }
}
/*----------------------
fv
----------------------*/
.fv {
  width: 100%;
  height: 44vw;
  margin-top: 100px;
  background-image: url("../image/fv.jpg");
  background-position: bottom;
  background-size: cover;
  position: relative;
}
.fv_message {
  position: absolute;
  left: 0;
  bottom: 5.5vw;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.fv_message_item {
  display: inline-flex;
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.8);
  padding: 12px 20px;
  font-size: 2.8vw;
  font-weight: 600;
  line-height: 1;
}
.fv_message_item span {
  color: #007A88;
}
@media(max-width: 1240px) {
  .fv {
    margin-top: 80px;
  }
}
@media(max-width: 768px) {
  .fv {
    margin-top: 60px;
    height: 69.6vw;
  }
  .fv_message {
    top: 40px;
    bottom: auto;
  }
  .fv_message_item {
    padding: 8px 10px;
    font-size: 4.2vw;
  }
}
@media(max-width: 480px) {
  .fv {
    height: 80vw;
  }
  .fv_message {
    top: 20px;
  }
  .fv_message_item {
    padding: 8px 10px;
    font-size: 6.1vw;
  }
}
/*----------------------
lead
----------------------*/
.lead {
  background: #F5F5F5;
  padding: 160px 0;
  background-image: url("../image/lead_bg.png");
  background-repeat: no-repeat;
  background-size: auto calc(100% - 160px);
  background-position: 20vw 80px;
}
.lead_flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.lead_text {
  width: 54.5%;
}
.lead_text p {
  text-align: justify;
}
.lead_text_copy {
  margin-bottom: 40px;
  font-size: 3.2rem;
  font-weight: 600;
  color: #007A88;
}
.lead_image {
  width: calc(45.5% - 80px);
}
.lead_image img {
  width: 100%;
  object-fit: cover;
  border-radius: 20px;
}
@media(prefers-color-scheme: dark) {
  .lead {
    background: #F5F5F5;
  }
}
@media(max-width: 1920px) {
  .lead {
    padding: 120px 0;
    background-position: 80px 80px;
  }
}
@media(max-width: 1240px) {
  .lead {
    padding: 80px 0;
    background-position: 20px 80px;
  }
  .lead_text_copy {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }
  .lead_image {
    width: calc(45.5% - 40px);
  }
  .lead_image img {
    max-height: 300px;
  }
}
@media(max-width: 768px) {
  .lead {
    padding: 80px 0;
    background-position: 20px 40px;
    background-size: 160px 160px;
  }
  .lead_flex {
    flex-direction: column;
  }
  .lead_text {
    width: 100%;
  }
  .lead_text_copy {
    font-size: 2.4rem;
  }
  .lead_image {
    width: 100%;
    margin-top: 40px;
    text-align: center;
  }
  .lead_image img {
    max-width: 360px;
    max-height: 240px;
  }
}
@media(max-width: 480px) {
  .lead_text_copy {
    font-size: 2.2rem;
  }
}
/*----------------------
service
----------------------*/
.service {
  background: #007A88;
}
.service .title-ja {
  color: #fff;
}
.service_items {
  display: flex;
  justify-content: space-between;
}
.service_items li {
  width: calc(calc(100% - 80px) / 3);
  background: #fff;
  border-radius: 20px;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service_items li img {
  width: 160px;
  height: 160px;
}
.service_items li dt {
  margin: 20px auto;
  font-size: 2.8rem;
  font-weight: 600;
  color: #007A88;
  text-align: center;
}
.service_items li dd {
  text-align: justify;
}
@media(max-width: 1240px) {
  .service_items li {
    width: calc(calc(100% - 40px) / 3);
    padding: 20px;
  }
  .service_items li dt {
    font-size: 2.4rem;
    white-space: nowrap;
    line-height: 1;
  }
  .service_items li img {
    width: 120px;
    height: 120px;
  }
}
@media(max-width: 768px) {
  .service_items {
    flex-direction: column;
    gap: 40px;
  }
  .service_items li {
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
  }
  .service_items li dt {
    font-size: 2.0rem;
  }
}
/*----------------------
areas
----------------------*/
.areas_item {
  padding: 40px;
  border-radius: 40px;
  background: #CDE0DA;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 40px;
}
.areas_image {
  width: 27.8vw;
  height: 27.8vw;
  overflow: hidden;
}
.areas_image img {
  width: 100%;
  object-fit: cover;
}
.areas_text {
  width: calc(100% - 27.8vw);
}
.areas_text p {
  font-size: 2.8rem;
  margin-bottom: 20px;
  text-align: justify;
}
@media(max-width: 1240px) {
  .areas_text p {
    font-size: 2.4rem;
  }
}
@media(max-width: 768px) {
  .areas_item {
    flex-direction: column;
  }
  .areas_image {
    width: 72vw;
    max-width: 360px;
    height: 72vw;
    max-height: 360px;
  }
  .areas_text {
    width: 100%;
  }
  .areas_text p {
    font-size: 2.0rem;
  }
}
@media(max-width: 480px) {
  .areas_item {
    padding: 20px;
    border-radius: 20px;
    gap: 20px;
  }
  .areas_image {
    width: 80vw;
    max-width: 360px;
    height: 80vw;
    max-height: 360px;
  }
  .areas_text p {
    margin-bottom: 10px;
  }
}
/*----------------------
flow
----------------------*/
.flow {
  background: #F5F5F5;
}
.flow_icon {
  width: 80px;
  height: 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #007A88;
  border-radius: 20px;
  z-index: 1;
}
.flow_icon span {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  color: #F5F5F5;
}
.flow_icon_num {
  font-size: 4.0rem;
  font-weight: 600;
  line-height: 1;
  color: #F5F5F5;
}
.flow_item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}
.flow_item::before {
  content: "";
  position: absolute;
  top: 60%;
  left: 40px;
  width: 10px;
  height: calc(100% - 40px);
  background-color: #CDE0DA;
  transform: translateX(-50%);
  z-index: 0;
}
.flow_item:last-child::before {
  display: none;
}
.flow_item dl {
  width: calc(100% - 100px);
  padding: 8px 0 40px;
}
.flow_item:last-child dl {
  padding-bottom: 0;
}
.flow_item dl dt {
  font-size: 2.8rem;
  line-height: 1;
  font-weight: 600;
  color: #007A88;
  margin-bottom: 10px;
  text-align: justify;
}
@media(max-width: 1240px) {
  .flow_icon {
    width: 72px;
    height: 72px;
    border-radius: 16px;
  }
  .flow_icon span {
    font-size: 1.6rem;
  }
  .flow_icon_num {
    font-size: 3.6rem;
  }
  .flow_item dl {
    width: calc(100% - 92px);
    height: 116px;
    padding: 4px 0 0;
  }
  .flow_item dl dt {
    font-size: 2.4rem;
  }
}
@media(max-width: 768px) {
  .flow_icon {
    width: 64px;
    height: 64px;
    border-radius: 12px;
  }
  .flow_icon span {
    font-size: 1.4rem;
  }
  .flow_icon_num {
    font-size: 3.2rem;
  }
  .flow_item::before {
    top: 50%;
    left: 33px;
    width: 8px;
  }
  .flow_item dl {
    width: calc(100% - 84px);
    height: 100px;
    padding: 0;
  }
  .flow_item dl dt {
    margin-bottom: 8px;
    font-size: 2.0rem;
  }
}
@media(max-width: 480px) {
  .flow_icon {
    width: 56px;
    height: 56px;
    border-radius: 8px;
  }
  .flow_icon_num {
    font-size: 2.8rem;
  }
  .flow_item::before {
    top: 40%;
    left: 28px;
    width: 8px;
  }
  .flow_item dl {
    width: calc(100% - 76px);
    height: auto;
    padding: 0 0 24px;
  }
}
/*----------------------
information
----------------------*/
.information {
  position: relative;
  margin: auto;
}
section.information {
  padding-bottom: 0;
}
.information_inner {
  width: 100%;
  padding-left: calc(50vw - 550px);
  margin-left: auto;
}
.information_slider {
  overflow: hidden;
  background: -webkit-linear-gradient(#ffffff 120px, #CDE0DA 120px);
  background: -o-linear-gradient(#ffffff 120px, #CDE0DA 120px);
  background: linear-gradient(#ffffff 120px, #CDE0DA 120px);
  padding-bottom: 80px;
}
.information_slider_inner {
  display: flex;
  gap: 40px;
  transition: transform 0.5s ease;
  padding-left: 80px;
}
.information_item {
  min-width: calc(calc(100% - 120px) / 3);
  background-color: #fff;
  border-radius: 20px;
}
.information_item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 20px 20px 0 0;
}
.information_text {
  padding: 20px 20px 40px;
}
.information_text_date {
  display: inline-block;
  color: #007A88;
  margin-right: 20px;
}
.information_text_category {
  padding: 0 10px;
  display: inline-block;
  background-color: #007A88;
  border-radius: 20px;
  font-size: 1.6rem;
  color: #fff;
}
.information_text p {
  margin-top: 20px;
  font-size: 2.4rem;
  color: #2B2B2B;
  text-align: justify;
}
.information_arrows {
  display: flex;
  gap: 40px;
  justify-content: center;
  margin: 40px auto;
}
.information_arrow {
  width: 56px;
  height: 56px;
  background: #007A88;
  border-radius: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.information_arrow i {
  color: #fff;
  font-size: 3.2rem;
}
@media(max-width: 1240px) {
  .information_text_category {
    font-size: 1.6rem;
  }
  .information_text p {
    font-size: 2.0rem;
  }
  .information_arrow i {
    font-size: 2.8rem;
  }
}
@media(max-width: 768px) {
  .information_item {
    min-width: calc(50% - 20px);
    background-color: #fff;
    border-radius: 20px;
  }
  .information_text_category {
    font-size: 1.4rem;
  }
  .information_text p {
    font-size: 1.8rem;
  }
  .information_arrow i {
    font-size: 2.4rem;
  }
}
@media(max-width: 480px) {
  .information_slider_inner {
    padding-left: 20px;
  }
  .information_item {
    min-width: calc(100% - 20px);
  }
}
/*----------------------
about
----------------------*/
.about h3 {
  font-size: 3.2rem;
  font-weight: 600;
  border-left: 8px solid #007A88;
  padding-left: 20px;
  margin-bottom: 40px;
}
.about_message {
  display: flex;
  justify-content: space-between;
  margin-bottom: 120px;
}
.about_message_text {
  width: calc(100% - 380px);
  text-align: justify;
}
.about_message_text_name {
  margin-top: 40px;
  font-size: 2.8rem;
}
.about_message_text_name span {
  font-size: 2.0rem;
  margin-right: 20px;
}
.about_message_img {
  width: 300px;
}
.about_message_img img {
  width: 100%;
  object-fit: cover;
}
.about_info {
  background: #F5F5F5;
  border-radius: 40px;
  padding: 20px 40px;
}
.about_info dl {
  display: flex;
  padding: 20px 40px;
  border-bottom: 1px solid #007A88;
}
.about_info dl:last-of-type {
  border-bottom: none;
}
.about_info dl dt {
  width: 260px;
  color: #007A88;
}
@media(max-width: 1240px) {
  .about h3 {
    font-size: 2.8rem;
  }
  .about_message_text {
    width: calc(100% - 280px);
  }
  .about_message_text_name {
    font-size: 2.4rem;
  }
  .about_message_text_name span {
    font-size: 1.8rem;
  }
  .about_message_img {
    width: 240px;
  }
  .about_info dl dt {
    width: 220px;
  }
}
@media(max-width: 768px) {
  .about h3 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    border-left: 5px solid #007A88;
    padding-left: 12px;
    line-height: 1.2;
  }
  .about_message {
    flex-direction: column;
    margin-bottom: 80px;
  }
  .about_message_text {
    width: 100%;
  }
  .about_message_img {
    width: 100%;
    text-align: center;
  }
  .about_message_img img {
    display: inline-block;
    width: 100%;
    max-width: 280px;
  }
  .about_message_text_name {
    font-size: 2.0rem;
    margin-top: 20px;
    margin-bottom: 40px;
  }
  .about_message_text_name span {
    font-size: 1.6rem;
  }
  .about_info {
    padding: 20px;
    border-radius: 20px;
  }
  .about_info dl {
    flex-direction: column;
    padding: 16px 0;
  }
  .about_info dl dt {
    width: 100%;
  }
}
/*----------------------
recruit
----------------------*/
section.recruit {
  padding-top: 0;
  padding-bottom: 0;
}
.recruit .title-ja {
  color: #fff;
}
.recruit .title-en {
  margin-bottom: 0;
}
.recruit_content {
  display: flex;
  flex-wrap: wrap;
}
.recruit_left {
  width: 50%;
  background: url("../image/recruit.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.recruit_left::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}
.recruit_left h2, .recruit_left div {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 194px;
  margin: 0 auto;
}
.recruit_left h2 {
  margin-bottom: 20px;
}
.recruit_right {
  width: 50%;
  padding: 240px 88px;
  background: #CDE0DA;
  text-align: center;
}
.recruit_right p {
  display: inline-block;
  text-align: justify;
  margin-bottom: 80px;
}
.recruit_btn {
  width: 320px;
}
.recruit_btn a i {
  top: 32%;
  transition: transform 0.3s ease-in-out;
}
.rotated {
  transform: rotate(180deg) translateY(4px);
}
.recruit_accordion {
  display: none;
  transition: max-height 0.3s ease-in-out;
  overflow: hidden;
  width: 100%;
  background: #E6F0EC;
  padding: 80px 0 160px;
}
.recruit_accordion.active {
  display: block;
}
.recruit_accordion_item {
  background: #fff;
  padding: 40px;
  border-radius: 20px;
}
.recruit_accordion_item h3 {
  font-size: 3.2rem;
  font-weight: 600;
  border-left: 8px solid #007A88;
  padding-left: 20px;
  margin-bottom: 40px;
}
.recruit_accordion_item dl {
  display: flex;
  padding: 20px;
  border-top: solid 1px #007A88;
}
.recruit_accordion_item dl:last-of-type {
  border-bottom: solid 1px #007A88;
  margin-bottom: 40px;
}
.recruit_accordion_item dl dt {
  width: 220px;
  color: #007A88;
}
.recruit_accordion_item dl dd {
  width: calc(100% - 220px);
}
@media(max-width: 1920px) {
  .recruit_right {
    padding: 11.1vw 88px;
  }
}
@media(max-width: 1240px) {
  .recruit_right {
    padding: 80px 40px;
  }
  .recruit_right p {
    margin-bottom: 40px;
  }
  .recruit_btn {
    width: 280px;
  }
  .recruit_accordion {
    padding: 80px 0 120px;
  }
  .recruit_accordion_item h3 {
    font-size: 2.8rem;
  }
}
@media(max-width: 768px) {
  .recruit_content {
    width: 100%;
    flex-direction: column;
    background: url("../image/recruit.jpg");
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    position: relative;
  }
  .recruit_content::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
  }
  .recruit_left {
    width: 100%;
    margin-top: 80px;
    background: none;
  }
  .recruit_left::before {
    background: rgba(0, 0, 0, 0);
  }
  .recruit_left h2, .recruit_left div {
    max-width: 640px;
    padding: 0 20px;
  }
  .recruit_right {
    background: none;
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 640px;
    padding: 40px 20px 80px;
    margin: 0 auto;
    text-align: left;
  }
  .recruit_right p {
    color: #fff;
    max-width: 310px;
  }
  .btn.recruit_btn {
    background: #fff;
    border: none;
    margin-left: 0;
  }
  .btn.recruit_btn a {
    color: #007A88;
  }
  .recruit_btn {
    width: 240px;
  }
  .recruit_accordion_item {
    padding: 40px 20px;
  }
  .recruit_accordion_item h3 {
    font-size: 2.4rem;
    margin-bottom: 20px;
    border-left: 5px solid #007A88;
    padding-left: 12px;
    line-height: 1.2;
  }
  .recruit_accordion_item dl {
    flex-direction: column;
    padding: 16px 0;
  }
  .recruit_accordion_item dl dt, .recruit_accordion_item dl dd {
    width: 100%;
  }
  .recruit_accordion_item dl dd ul li {
    margin-left: 1em;
    text-indent: -1em;
  }
}
/*----------------------
contact
----------------------*/
.contact {
  background: #007A88;
}
.contact .title-ja {
  color: #fff;
}
.contact_inner {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
.contact_inner h3 {
  padding-bottom: 20px;
  margin-bottom: 40px;
  border-bottom: 4px solid #007A88;
  color: #007A88;
  font-size: 3.2rem;
  font-weight: 600;
  text-align: center;
}
.contact_tel {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
  margin-bottom: 40px;
  text-align: center;
}
.contact_tel_num {
  font-size: 5.6rem;
  color: #F4A259;
  font-weight: 600;
  line-height: 1;
  text-align: center;
}
.contact_tel_num i {
  font-size: 4.8rem;
  padding-right: 10px;
}
.contact_tel_time {
  text-align: center;
  margin-top: 10px;
}
.contact_mail {
  background: #fff;
  border-radius: 20px;
  padding: 40px;
}
.form-item {
  display: flex;
  align-items: center;
  margin-bottom: 24px;
}
.form-item:has(textarea) {
  align-items: flex-start;
}
.form-item p {
  width: calc(100% - 240px);
}
.form-item p .cf7-label {
  width: 0;
}
.form-item p:first-child {
  width: 0;
}
.form-item p.form-item-label {
  width: 240px;
  display: block;
}
.form-item-label-required {
  padding: 2px 8px;
  margin-left: 10px;
  ;
  background: #FF5C35;
  border-radius: 4px;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1;
  color: #fff;
}
.wpcf7-text {
  width: 100%;
  background: #F5F5F5;
  border: 1px solid #2B2B2B;
  border-radius: 8px;
  padding: 10px;
  height: 40px;
  line-height: 40px;
  font-size: 2.0rem;
}
.wpcf7-text::placeholder {
  color: #A4A4A4;
  font-size: 2.0rem;
  opacity: 1;
}
.wpcf7-textarea {
  width: 100%;
  background: #F5F5F5;
  border: 1px solid #2B2B2B;
  border-radius: 8px;
  padding: 10px;
  font-size: 2.0rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic ProN", "Meiryo", sans-serif;
}
.wpcf7-form-control.wpcf7-radio {
  display: flex;
  gap: 40px;
}
.wpcf7-list-item {
  display: flex;
  align-items: center;
}
.wpcf7-form-control.wpcf7-radio .wpcf7-list-item {
  margin-left: 0;
}
.wpcf7-list-item input {
  width: 24px;
  height: 20px;
  accent-color: #2B2B2B;
}
.button-wrap {
  margin-top: 40px;
}
.wpcf7-submit {
  width: 240px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 3px solid #2B2B2B;
  background: #2B2B2B;
  color: #fff;
  font-size: 2.0rem;
  font-weight: 600;
}
.wpcf7-submit:hover {
  background: #fff;
  color: #2B2B2B;
}
@media(max-width: 1240px) {
  .contact_inner h3 {
    font-size: 2.8rem;
  }
  .contact_tel_num {
    font-size: 4.8rem;
  }
  .contact_tel_num i {
    font-size: 4.0rem;
  }
  .form-item p {
    width: calc(100% - 220px);
  }
  .form-item p.form-item-label {
    width: 220px;
    display: block;
  }
  .wpcf7-text {
    font-size: 1.8rem;
  }
  .wpcf7-text::placeholder {
    font-size: 1.8rem;
  }
  .wpcf7-form-control.wpcf7-radio {
    gap: 20px;
  }
  .wpcf7-list-item input {
    width: 20px;
    height: 16px;
  }
  .wpcf7-list-item-label {
    font-size: 1.6rem;
  }
  .wpcf7-submit {
    font-size: 1.8rem;
  }
}
@media(max-width: 768px) {
  .contact_inner h3 {
    font-size: 2.4rem;
  }
  .contact_tel {
    padding: 40px 20px;
  }
  .contact_tel_num {
    font-size: 4.4rem;
  }
  .contact_tel_num i {
    font-size: 3.6rem;
  }
  .contact_mail {
    padding: 40px 20px;
  }
  .form-item {
    flex-direction: column;
    align-items: flex-start;
  }
  .form-item-label {
    width: 100%;
    margin-bottom: 8px;
  }
  .form-item p {
    width: 100%;
  }
  .wpcf7-form-control-wrap {
    width: 100%;
  }
  .form-item-label-required {
    font-size: 1.4rem;
  }
  .wpcf7-text, .wpcf7-textarea {
    font-size: 1.6rem;
  }
  .wpcf7-text::placeholder {
    font-size: 1.6rem;
  }
  .wpcf7-submit {
    font-size: 1.6rem;
  }
}
@media(max-width: 480px) {
  .contact_inner h3 {
    padding-bottom: 10px;
    margin-bottom: 20px;
    border-bottom: 3px solid #007A88;
    font-size: 2.0rem;
  }
  .contact_tel {
    padding: 40px 16px;
  }
  .contact_tel_num {
    font-size: 3.2rem;
  }
  .contact_tel_num i {
    font-size: 2.8rem;
    padding-right: 5px;
  }
  .wpcf7-form-control.wpcf7-radio {
    flex-direction: column;
    gap: 10px;
  }
}
/*----------------------
contact（確認画面）
----------------------*/
#wpcf7cpcnf table {
  margin: 0 auto;
  width: 100%;
  border: 1px solid #007A88;
}
#wpcf7cpcnf table th {
  color: #fff;
  background: #007A88;
  border-bottom: 1px solid #fff;
}
#wpcf7cpcnf table th:last-child {
  border-bottom: 1px solid #007A88;
}
#wpcf7cpcnf table td {
  padding: 10px 20px;
  border-bottom: 1px solid #007A88;
}
#wpcf7cpcnf table td:last-child {
  border-top: 1px solid #007A88;
}
#wpcf7cpcnf table td p {
  word-break: break-all;
}
button.wpcf7cp-cfm-edit-btn {
  width: 240px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid #2B2B2B;
  background-color: #f5f5f5;
  font-size: 1.8rem;
}
.contact button.wpcf7cp-cfm-edit-btn {
  margin: 0 auto 20px;
}
@media(max-width: 768px) {
  #wpcf7cpcnf table tr {
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    width: 100%;
  }
  #wpcf7cpcnf table th {
    width: 100%;
    border-bottom: none;
  }
  #wpcf7cpcnf table td {
    width: 100%;
    padding: 10px;
    border-bottom: none;
  }
  #wpcf7cpcnf table td:last-child {
    border-bottom: none;
  }
}
/*----------------------
contact（サンクスページ）
----------------------*/
.contact-thanks {
  margin-top: 160px;
}
.contact-thanks h1 {
  color: #007A88;
  margin-bottom: 40px;
}
.btn.contact-thanks_btn {
  margin: 40px auto 160px;
}
@media(max-width: 768px) {
  .contact-thanks {
    margin-top: 120px;
  }
  .btn.contact-thanks_btn {
    margin: 40px auto 80px;
  }
}
/*----------------------
footer
----------------------*/
.footer {
  background: #F5F5F5;
  text-align: center;
}
.footer_nav {
  display: flex;
  justify-content: space-between;
}
.footer_nav li a {
  display: block;
  padding: 40px 0;
  color: #2B2B2B;
  font-size: 2.0rem;
}
.footer_nav li a:hover {
  color: #007A88;
}
.footer_sns {
  display: flex;
  gap: 40px;
  justify-content: center;
}
.footer_sns li a {
  display: block;
  width: 40px;
  height: 40px;
}
.footer_sns li a img {
  width: 100%;
  object-fit: cover;
}
.footer_logo {
  width: 100%;
  margin: 40px auto 20px;
  padding-top: 40px;
  border-top: 2px solid #D1DCE5;
}
.footer_logo img {
  width: 400px;
  object-fit: cover;
}
.copy {
  padding-bottom: 20px;
  font-size: 1.6rem;
}
@media(max-width: 1240px) {
  .footer_nav li a {
    font-size: 1.8rem;
  }
  .footer_logo img {
    width: 320px;
  }
}
@media(max-width: 768px) {
  .footer_nav {
    flex-direction: column;
    padding-top: 40px;
    padding-bottom: 20px;
  }
  .footer_nav li a {
    font-size: 1.6rem;
    padding: 0 0 20px;
  }
  .footer_logo {
    margin: 20px auto 10px;
  }
  .footer_logo img {
    width: 220px;
  }
  .copy {
    font-size: 1.4rem;
  }
}
/*----------------------
お知らせ一覧
----------------------*/
.information-page {
  margin-top: 160px;
}
.information-page_items {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-bottom: 160px;
}
.information-page .information_item {
  width: calc(calc(100% - 80px) / 3);
  border: 2px solid #D1DCE5;
}
.category-tab-list {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
}
.category-tab-list li a {
  color: #2b2b2b;
  border-bottom: 3px solid #ffffff;
  padding-bottom: 10px;
}
.category-tab-list li.is-active a {
  color: #007A88;
  border-bottom: 3px solid #007A88;
}
@media(max-width: 768px) {
  .information-page {
    margin-top: 120px;
  }
}
@media(max-width: 480px) {
  .category-tab-list {
    gap: 16px;
  }
  .information-page .information_item {
    width: 100%;
  }
}
/*----------------------
お知らせ下層ページ
----------------------*/
.information-article {
  margin: 160px auto;
}
.information-article_title {
  font-size: 4.0rem;
  padding-bottom: 20px;
  border-bottom: 2px solid #007A88;
}
.information-article_date {
  margin: 20px 0 10px;
}
.information-article_category {
  display: inline-block;
  padding: 0 10px;
  margin-bottom: 40px;
  background-color: #007A88;
  font-size: 1.6rem;
  color: #fff;
}
.information-article .information_btn {
  margin-top: 80px;
}
.information-article_content a {
  color: #333333;
  text-decoration: underline;
}
.information-article_content h2 {
  color: #333333;
  background: #CDE0DA;
  padding: 10px;
  margin: 80px 0 40px;
}
.information-article_content h3 {
  color: #007A88;
  margin: 40px 0 20px;
}
.information-article_content h4 {
  color: #007A88;
  margin: 20px 0 10px;
}
@media(max-width: 768px) {
  .information-article {
    margin: 120px auto;
  }
  .information-article_title {
    font-size: 2.8rem;
  }
}