@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

h1, h2, h3 {
  margin: 0;
}

p {
  margin: 0;
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style-type: none;
}

button {
  border: none;
  background-color: transparent;
  padding: 0;
}

a {
  text-decoration: none;
  color: #000;
}

p {
  font-size: 13px;
  line-height: 1.8;
}
@media (min-width: 768px) {
  p {
    font-size: 15px;
    line-height: 1.7;
  }
}
@media (min-width: 1200px) {
  p {
    font-size: 16px;
    line-height: 1.6;
  }
}

.c-ttl_wrap {
  display: flex;
  gap: 15px;
  color: #fff;
  align-items: baseline;
}

.c-ttl {
  font-weight: bold;
  font-size: 50px;
}
.c-ttl_sub {
  font-size: 18px;
}

.c-text {
  color: #fff;
}
.c-text_wrap {
  margin: 40px 0;
}
.c-text + .c-text {
  margin-top: 15px;
}

.c-tbl {
  border-collapse: collapse;
  width: 100%;
  font-size: 16px;
  line-height: 1.6;
}
.c-tbl_wrap {
  position: relative;
  background-color: #fff;
  padding: 15px 30px;
  border-radius: 4px;
  overflow: hidden;
}
.c-tbl_tr {
  border-bottom: 1px solid #E7EDFA;
}
.c-tbl_th {
  text-align: left;
  width: 200px;
}
.c-tbl_td {
  padding: 15px 0;
}

@media (max-width: 1200px) {
  .c-tbl {
    font-size: 15px;
    line-height: 1.7;
  }
}
@media (max-width: 768px) {
  .c-ttl_wrap {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .c-ttl_wrap .c-ttl {
    font-size: 32px;
    text-align: center;
  }
  .c-ttl_wrap .c-ttl_sub {
    font-size: 12px;
  }
  .c-text_wrap {
    margin: 30px 0;
  }
  .c-tbl {
    font-size: 13px;
    line-height: 1.8;
  }
  .c-tbl_wrap {
    padding: 5px 15px;
  }
  .c-tbl_tr {
    display: flex;
    flex-direction: column;
    gap: 6px;
    padding: 12px 0;
  }
  .c-tbl_tr:last-child {
    border: none;
  }
  .c-tbl_th {
    line-height: 1.2;
    padding: 0;
  }
  .c-tbl_td {
    line-height: 1.2;
    padding: 0;
  }
}
.c-header {
  padding: 10px 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.c-header_logo_ph {
  width: 340px;
  height: auto;
  vertical-align: bottom;
}

.c-header_nav {
  display: flex;
  gap: 15px;
}
.c-header_nav_item {
  font-weight: bold;
}
.c-header_nav_item_link {
  display: block;
  padding: 10px 30px;
  border-radius: 4px;
  overflow: hidden;
  font-size: 16px;
  line-height: 1.6;
}
.c-header_nav_item_link_in {
  position: relative;
  padding-left: 30px;
}
.c-header_nav_item_link_in::before {
  position: absolute;
  display: block;
  content: "";
  background-image: url(../images/icon_mail.svg);
  width: 24px;
  height: 17px;
  background-size: 24px 17px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

/* ボタン共通 */
.c-header_nav_item .c-header_nav_item_link {
  position: relative;
  transition: all 0.3s ease;
  border-radius: 4px;
}

/* 採用情報 */
.c-header_nav_item.-recruit:hover {
  background-color: #e6eeff;
}
.c-header_nav_item.-recruit .c-header_nav_item_link {
  z-index: 1;
  color: transparent;
  background: linear-gradient(20deg, rgb(48, 130, 168) 0%, rgb(29, 65, 142) 100%);
  -webkit-background-clip: text;
          background-clip: text;
}
.c-header_nav_item.-recruit .c-header_nav_item_link::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 2px;
  background: linear-gradient(20deg, rgb(48, 130, 168) 0%, rgb(29, 65, 142) 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  transition: background 0.3s ease;
}
.c-header_nav_item.-recruit .c-header_nav_item_link:hover {
  box-shadow: 0 0 0 4px rgba(48, 130, 168, 0.3);
}

/* お問い合わせ */
.c-header_nav_item.-contact .c-header_nav_item_link {
  background: linear-gradient(20deg, rgb(48, 130, 168) 0%, rgb(29, 65, 142) 100%);
  color: #fff;
}
.c-header_nav_item.-contact .c-header_nav_item_link:hover {
  background: linear-gradient(20deg, rgb(29, 65, 142) 0%, rgb(48, 130, 168) 100%);
  box-shadow: 0 0 0 4px rgba(48, 130, 168, 0.3);
}

@media (max-width: 1200px) {
  .c-header_nav {
    gap: 12px;
  }
  .c-header_nav_item_link {
    font-size: 14px;
  }
}
@media (max-width: 768px) {
  .c-header {
    padding: 10px 15px;
  }
  .c-header_logo_ph {
    width: 142px;
  }
  .c-header_nav {
    gap: 8px;
  }
  .c-header_nav_item_link {
    font-size: 12px;
    line-height: 1.2;
    padding: 10px 16px;
    white-space: nowrap;
  }
  .c-header_nav_item_link_in {
    padding-left: 22px;
  }
  .c-header_nav_item_link_in::before {
    width: 18px;
    height: 13px;
    background-size: 18px 13px;
  }
}
@media (max-width: 430px) {
  .c-header_nav {
    gap: 4px;
  }
  .c-header_logo_ph {
    width: 126px;
  }
  .c-header_nav_item_link {
    font-size: 11px;
    line-height: 1;
    padding: 10px 8px;
  }
  .c-header_nav_item_link_in {
    padding-left: 0;
  }
  .c-header_nav_item_link_in::before {
    content: none;
  }
}
@media (max-width: 330px) {
  .c-header_nav_item_link {
    font-size: 10px;
  }
}
.p-hero {
  width: 100%;
}
.p-hero_ph {
  width: 100%;
  aspect-ratio: 5/2.5;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  vertical-align: bottom;
  max-height: 700px;
}
@media (max-width: 430px) {
  .p-hero_ph {
    aspect-ratio: 5/3.5;
  }
}

.p-index {
  position: relative;
  background-color: #EDEDED;
  padding: 100px 0;
  text-align: center;
}
.p-index_cont {
  position: relative;
  z-index: 10;
}
.p-index_text {
  max-width: 740px;
  margin: 0 auto;
}
.p-index_list {
  width: 1000px;
  display: flex;
  gap: 12px;
  margin: 70px auto 0;
}
.p-index_item_ph {
  width: 100%;
  height: 160px;
  -o-object-fit: cover;
     object-fit: cover;
  vertical-align: baseline;
  border-radius: 4px 4px 0 0;
}
.p-index_item_link {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: #fff;
  border-radius: 4px;
}
.p-index_item_text {
  margin-top: -1px;
  display: block;
  padding: 12px 20px;
  background: #3082A8;
  background: linear-gradient(20deg, rgb(48, 130, 168) 0%, rgb(29, 65, 142) 100%);
  font-size: 15px;
  line-height: 1;
  border-radius: 0 0 4px 4px;
}
.p-index_end {
  position: absolute;
  display: block;
  width: 100%;
  height: 200px;
  overflow: hidden;
  bottom: 0;
}
.p-index_end::after {
  content: "Index";
  display: block;
  position: absolute;
  bottom: -50px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 170px;
  font-weight: bold;
  color: transparent;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  z-index: 0;
}

.p-index_item_link:hover {
  box-shadow: 0 0 0 4px rgba(48, 130, 168, 0.3);
  transition: all 0.3s ease;
}
.p-index_item_link:hover .p-index_item_text {
  background: linear-gradient(20deg, rgb(29, 65, 142) 0%, rgb(48, 130, 168) 100%);
  transition: all 0.3s ease;
}

@media (max-width: 1200px) {
  .p-index_list {
    width: 100%;
    padding: 0 15px;
  }
  .p-index_item {
    flex: 1;
  }
  .p-index_item_ph {
    width: 100%;
    height: inherit;
    aspect-ratio: 5/2.5;
  }
  .p-index_item_text {
    font-size: 13px;
  }
}
@media (max-width: 768px) {
  .p-index {
    padding: 50px 0 60px;
  }
  .p-index_text {
    max-width: inherit;
    padding: 0 15px;
  }
  .p-index_list {
    margin-top: 50px;
  }
  .p-index_item_text {
    font-size: 12px;
    padding: 10px;
  }
  .p-index_end::after {
    font-size: 100px;
    bottom: -30px;
  }
}
@media (max-width: 700px) {
  .p-index_list {
    flex-wrap: wrap;
    width: 100%;
  }
  .p-index_item {
    flex: inherit;
    width: calc(50% - 6px);
  }
}
.p-company {
  position: relative;
  background: #3082A8;
  background: linear-gradient(20deg, rgb(48, 130, 168) 0%, rgb(29, 65, 142) 100%);
  padding: 70px 0;
}
.p-company::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 20px;
  right: 20px;
  opacity: 0.4;
}
.p-company_cont {
  width: 800px;
  margin: 0 auto;
}
.p-company_end {
  position: absolute;
  display: block;
  width: 100%;
  height: 200px;
  overflow: hidden;
  bottom: 0;
}
.p-company_end::after {
  content: "Company Profile";
  white-space: nowrap;
  display: block;
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 135px;
  font-weight: bold;
  color: transparent;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.4) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  z-index: 0;
}
.p-company::before {
  content: "";
  background-image: url(../images/company_bg.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  background-size: contain;
  width: 1145px;
  width: 70vw;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}

@media (max-width: 930px) {
  .p-company_cont {
    width: 100%;
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .p-company {
    padding: 50px 0;
  }
  .p-company_end::after {
    font-size: 13vw;
    line-height: 1;
    bottom: -2vw;
  }
  .p-company::after {
    top: 8px;
    right: 8px;
  }
}
@media (max-width: 430px) {
  .p-company::before {
    width: 80vw;
  }
}
.p-business {
  position: relative;
  background-color: #EDEDED;
  padding: 70px 0;
}
.p-business_cont {
  width: 800px;
  margin: 0 auto;
}
.p-business .c-ttl {
  color: transparent;
  background: linear-gradient(20deg, rgb(48, 130, 168) 0%, rgb(29, 65, 142) 100%);
  -webkit-background-clip: text;
          background-clip: text;
}
.p-business .c-ttl_sub {
  color: #1D418E;
}
.p-business .c-text {
  color: #333;
}
.p-business .c-tbl::before, .p-business .c-tbl::after {
  position: absolute;
  display: block;
  content: "";
  width: 25px;
  height: 25px;
  background-color: transparent;
}
.p-business .c-tbl::before {
  border-top: 3px solid #1D418E;
  border-right: 3px solid #1D418E;
  top: -1px;
  right: -1px;
}
.p-business .c-tbl::after {
  border-bottom: 3px solid #1D418E;
  border-left: 3px solid #1D418E;
  bottom: -1px;
  left: -1px;
  z-index: 100;
}
.p-business_end {
  position: absolute;
  display: block;
  width: 100%;
  height: 200px;
  overflow: hidden;
  bottom: 0;
}
.p-business_end::after {
  content: "Business";
  white-space: nowrap;
  display: block;
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 135px;
  font-weight: bold;
  color: transparent;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  z-index: 0;
}

@media (max-width: 930px) {
  .p-business_cont {
    width: 100%;
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .p-business {
    padding: 50px 0;
  }
  .p-business_end::after {
    font-size: 16vw;
    line-height: 1;
    bottom: -3vw;
  }
}
.p-facility {
  position: relative;
  background: #3082A8;
  background: linear-gradient(20deg, rgb(48, 130, 168) 0%, rgb(29, 65, 142) 100%);
  padding: 70px 0 100px;
}
.p-facility::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 20px;
  right: 20px;
  opacity: 0.4;
}
.p-facility::before {
  content: "";
  background-image: url(../images/facilities_bg.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  background-size: contain;
  width: 50vw;
  height: 100%;
  z-index: 3;
  pointer-events: none;
}
.p-facility_cont {
  width: 800px;
  margin: 0 auto;
}
.p-facility_end {
  position: absolute;
  display: block;
  width: 100%;
  height: 200px;
  overflow: hidden;
  bottom: 0;
}
.p-facility_end::after {
  content: "Facilities-introduction";
  white-space: nowrap;
  display: block;
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 135px;
  font-weight: bold;
  color: transparent;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.4) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  z-index: 0;
}

@media (max-width: 930px) {
  .p-facility_cont {
    width: 100%;
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .p-facility {
    padding: 50px 0;
  }
  .p-facility_end::after {
    font-size: 10vw;
    line-height: 1;
    bottom: -3vw;
  }
  .p-facility::after {
    top: 8px;
    right: 8px;
  }
}
@media (max-width: 430px) {
  .p-facility::before {
    width: 70vw;
  }
}
.p-facility-gallery {
  overflow: hidden;
  width: 100%;
}

.p-facility-gallery__track {
  display: flex;
  gap: 16px;
  white-space: nowrap;
}

.p-facility-gallery__item {
  flex: 0 0 auto;
  width: 360px;
}
@media (max-width: 1200px) {
  .p-facility-gallery__item {
    width: 300px;
  }
}
@media (max-width: 768px) {
  .p-facility-gallery__item {
    width: 250px;
  }
}

.p-facility-gallery__item img {
  width: 100%;
  display: block;
  border-radius: 4px;
}

.p-message {
  position: relative;
  background-color: #EDEDED;
  padding: 70px 0;
}
.p-message_cont {
  width: 800px;
  margin: 0 auto;
}
.p-message .c-ttl {
  color: transparent;
  background: linear-gradient(20deg, rgb(48, 130, 168) 0%, rgb(29, 65, 142) 100%);
  -webkit-background-clip: text;
          background-clip: text;
}
.p-message .c-ttl_sub {
  color: #1D418E;
}
.p-message .c-text {
  color: #333;
}
.p-message_wrap {
  position: relative;
  margin-top: 40px;
  background-color: #fff;
  padding: 30px;
  display: flex;
  gap: 20px;
  border-radius: 4px;
}
.p-message_wrap_ph_wrap {
  width: 245px;
  height: 322px;
}
.p-message_wrap_ph {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-message_wrap_text {
  flex: 1;
}
.p-message_wrap::before, .p-message_wrap::after {
  position: absolute;
  display: block;
  content: "";
  width: 25px;
  height: 25px;
  background-color: transparent;
}
.p-message_wrap::before {
  border-top: 3px solid #1D418E;
  border-right: 3px solid #1D418E;
  top: -1px;
  right: -1px;
}
.p-message_wrap::after {
  border-bottom: 3px solid #1D418E;
  border-left: 3px solid #1D418E;
  bottom: -1px;
  left: -1px;
  z-index: 100;
}
.p-message_end {
  position: absolute;
  display: block;
  width: 100%;
  height: 200px;
  overflow: hidden;
  bottom: 0;
}
.p-message_end::after {
  content: "Message";
  white-space: nowrap;
  display: block;
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 135px;
  font-weight: bold;
  color: transparent;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  z-index: 0;
}

@media (max-width: 930px) {
  .p-message_cont {
    width: 100%;
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .p-message {
    padding: 50px 0;
  }
  .p-message_wrap {
    margin-top: 30px;
  }
  .p-message_wrap_ph_wrap {
    width: 180px;
    height: 236px;
  }
  .p-message_end::after {
    font-size: 16vw;
    line-height: 1;
    bottom: -3vw;
  }
}
@media (max-width: 600px) {
  .p-message_wrap {
    flex-direction: column;
    padding: 15px;
    gap: 10px;
  }
  .p-message_wrap_ph_wrap {
    width: 100%;
    height: auto;
  }
}
.p-top_btmcont {
  width: 800px;
  margin: 70px auto;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (max-width: 930px) {
  .p-top_btmcont {
    width: 100%;
    padding: 0 15px;
  }
}

.p-top_recruit {
  position: relative;
}
.p-top_recruit_cont {
  position: relative;
  background: #3082A8;
  background: linear-gradient(20deg, rgb(48, 130, 168) 0%, rgb(29, 65, 142) 100%);
  padding: 50px 100px;
  border-radius: 4px;
  overflow: hidden;
}
.p-top_recruit_cont::before {
  content: "";
  background-image: url(../images/recruit_bg.png);
  background-repeat: no-repeat;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  background-size: contain;
  width: 560px;
  height: 280px;
  z-index: 3;
  pointer-events: none;
}
.p-top_recruit_cont::after {
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  top: 20px;
  right: 20px;
  opacity: 0.4;
}
.p-top_recruit_ttl_wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.p-top_recruit_ttl {
  color: #fff;
  font-size: 50px;
}
.p-top_recruit_btn {
  width: 260px;
  background-color: #fff;
  border-radius: 4px;
  z-index: 10;
  position: relative;
}
.p-top_recruit_btn_link {
  display: block;
  padding: 15px 40px;
  font-weight: bold;
  color: transparent;
  background: linear-gradient(20deg, rgb(48, 130, 168) 0%, rgb(29, 65, 142) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  border-radius: 4px;
}
.p-top_recruit_btn::after {
  position: absolute;
  display: block;
  content: "";
  background-image: url(../images/btn_arw02.svg);
  width: 17px;
  height: 17px;
  background-size: 17px 17px;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}
.p-top_recruit_text {
  margin-top: 30px;
  color: #fff;
}
.p-top_recruit_text_sub {
  color: #fff;
  margin-top: 15px;
}
.p-top_recruit::after {
  content: "Recruit";
  white-space: nowrap;
  display: block;
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 120px;
  font-weight: bold;
  color: transparent;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  z-index: 0;
}

.p-top_recruit_btn:hover {
  transition: all 0.3s ease;
  background-color: #e6eeff;
}

.p-top_recruit_btn_link:hover {
  transition: all 0.3s ease;
  box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
  .p-top_recruit_cont {
    padding: 30px;
  }
  .p-top_recruit_cont::after {
    top: 8px;
    right: 8px;
  }
  .p-top_recruit::after {
    font-size: 100px;
    bottom: -30px;
  }
}
@media (max-width: 600px) {
  .p-top_recruit_ttl_wrap {
    justify-content: center;
  }
  .p-top_recruit_ttl {
    font-size: 32px;
  }
  .p-top_recruit_text {
    margin-top: 10px;
  }
  .p-top_recruit_btn {
    position: absolute;
    width: calc(100% - 60px);
    bottom: 30px;
  }
  .p-top_recruit_text_sub {
    padding-bottom: 60px;
  }
}
@media (max-width: 400px) {
  .p-top_recruit_cont {
    padding: 15px;
  }
  .p-top_recruit_text_sub {
    padding-bottom: 70px;
  }
  .p-top_recruit_btn {
    width: calc(100% - 30px);
    bottom: 15px;
  }
}
.p-top_contact {
  position: relative;
}
.p-top_contact_cont {
  position: relative;
  background: #EDEDED;
  padding: 50px;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  color: #1D418E;
}
.p-top_contact_cont_in {
  flex: 1;
  text-align: center;
}
.p-top_contact_cont_in_ttl {
  font-size: 17px;
}
.p-top_contact_cont_in_tel {
  font-weight: bold;
  font-size: 34px;
}
.p-top_contact_cont_in_tel_link {
  display: block;
  color: #1D418E;
  padding: 8px 0 10px;
}
.p-top_contact_cont_in_note {
  display: block;
}
.p-top_contact_cont_in_btn {
  margin-top: 15px;
  width: 260px;
  position: relative;
  background: #3082A8;
  background: linear-gradient(20deg, rgb(48, 130, 168) 0%, rgb(29, 65, 142) 100%);
  border-radius: 4px;
  white-space: nowrap;
}
.p-top_contact_cont_in_btn_link {
  color: #fff;
  display: block;
  padding: 15px 40px;
  font-weight: bold;
  border-radius: 4px;
  position: relative;
}
.p-top_contact_cont_in_btn_link_in {
  position: relative;
  padding-left: 30px;
}
.p-top_contact_cont_in_btn_link_in::before {
  position: absolute;
  display: block;
  content: "";
  background-image: url(../images/icon_mail.svg);
  width: 24px;
  height: 17px;
  background-size: 24px 17px;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.p-top_contact_cont_in_btn_link:hover {
  background: linear-gradient(20deg, rgb(29, 65, 142) 0%, rgb(48, 130, 168) 100%);
  box-shadow: 0 0 0 4px rgba(48, 130, 168, 0.3);
  transition: all 0.3s ease;
}

@media (max-width: 768px) {
  .p-top_contact_cont {
    padding: 30px;
    justify-content: space-between;
    flex-direction: column;
  }
  .p-top_contact_cont_in + .p-top_contact_cont_in {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid #fff;
  }
  .p-top_contact_cont_in_ttl {
    font-size: 14px;
  }
  .p-top_contact_cont_in_note {
    font-size: 12px;
  }
  .p-top_contact_cont_in_tel {
    font-size: 28px;
  }
}
@media (max-width: 600px) {
  .p-top_contact_cont_in_btn {
    width: 100%;
  }
}
@media (max-width: 400px) {
  .p-top_contact_cont {
    padding: 15px;
  }
  .p-top_contact_cont_in + .p-top_contact_cont_in {
    margin-top: 15px;
    padding-top: 15px;
  }
}
.p-access {
  text-align: center;
}
.p-access_text {
  padding: 0 15px;
}
@media (max-width: 768px) {
  .p-access_text {
    text-align: left;
  }
}
.p-access_map {
  margin-top: 15px;
  width: 100%;
  height: 400px;
}
@media (max-width: 768px) {
  .p-access_map {
    aspect-ratio: 5/3;
    height: auto;
  }
}
.p-access iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.c-footer {
  padding: 20px;
  text-align: center;
  color: #fff;
  background: #3082A8;
  background: linear-gradient(20deg, rgb(48, 130, 168) 0%, rgb(29, 65, 142) 100%);
}

#toTopButton {
  position: fixed;
  right: 20px;
  bottom: 20px;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  border: none;
  background-color: rgba(255, 255, 255, 0.8);
  color: #1D418E;
  font-size: 12px;
  padding-top: 14px;
  cursor: pointer;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.3);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.2s ease;
  z-index: 999;
}
#toTopButton::before {
  position: absolute;
  display: block;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 6px solid transparent;
  border-left: 6px solid transparent;
  border-bottom: 8px solid #1D418E;
  border-top: 0;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
}
#toTopButton.show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
#toTopButton:hover {
  opacity: 0.8;
}

.p-recruit {
  position: relative;
  background-color: #EDEDED;
  padding: 70px 0;
}
.p-recruit_cont {
  width: 800px;
  margin: 0 auto;
}
.p-recruit .c-ttl {
  color: transparent;
  background: linear-gradient(20deg, rgb(48, 130, 168) 0%, rgb(29, 65, 142) 100%);
  -webkit-background-clip: text;
          background-clip: text;
}
.p-recruit .c-ttl_sub {
  color: #1D418E;
}
.p-recruit .c-text {
  color: #333;
}
.p-recruit .c-tbl_wrap {
  margin-top: 15px;
}
.p-recruit_cont_ttl {
  font-size: 22px;
  font-weight: bold;
  color: #1D418E;
  margin-top: 50px;
}
.p-recruit_blk {
  position: relative;
  z-index: 1;
  margin-top: 15px;
  background-color: #fff;
  padding: 15px 30px;
  border-radius: 4px;
  overflow: hidden;
  display: flex;
  gap: 15px;
}
.p-recruit_blk_in.-contact {
  flex: 1;
}
.p-recruit_blk_in_ph {
  width: 200px;
  height: 130px;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-recruit_blk_ttl {
  font-size: 16px;
  font-weight: bold;
}
.p-recruit_blk_btn {
  display: block;
  margin: 15px auto 0;
  width: 260px;
  position: relative;
  background: #3082A8;
  background: linear-gradient(20deg, rgb(48, 130, 168) 0%, rgb(29, 65, 142) 100%);
  border-radius: 4px;
  white-space: nowrap;
}
.p-recruit_blk_btn_link {
  color: #fff;
  display: block;
  padding: 15px 40px;
  font-weight: bold;
  border-radius: 4px;
}
.p-recruit_blk_btn::after {
  position: absolute;
  display: block;
  content: "";
  background-image: url(../images/btn_arw.svg);
  width: 10px;
  height: 16px;
  background-size: 10px 16px;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}
.p-recruit_end {
  position: absolute;
  display: block;
  width: 100%;
  height: 200px;
  overflow: hidden;
  bottom: 0;
}
.p-recruit_end::after {
  content: "Recruit";
  white-space: nowrap;
  display: block;
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 135px;
  font-weight: bold;
  color: transparent;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  z-index: 0;
}

.p-recruit_blk_btn_link:hover {
  background: linear-gradient(20deg, rgb(29, 65, 142) 0%, rgb(48, 130, 168) 100%);
  box-shadow: 0 0 0 4px rgba(48, 130, 168, 0.3);
}

.p-recruit_blk_ttl + .p-recruit_blk_text {
  margin-top: 8px;
}

@media (max-width: 930px) {
  .p-recruit_cont {
    width: 100%;
    padding: 0 15px;
  }
}
@media (max-width: 768px) {
  .p-recruit {
    padding: 50px 0;
  }
  .p-recruit_blk {
    padding: 15px;
  }
  .p-recruit_blk_in_ph {
    width: 110px;
    height: 70px;
  }
  .p-recruit_blk_ttl {
    font-size: 14px;
    line-height: 1.3;
  }
  .p-recruit_end::after {
    font-size: 16vw;
    line-height: 1;
    bottom: -3vw;
  }
  .p-recruit_cont_ttl {
    font-size: 16px;
    text-align: center;
    margin-top: 40px;
  }
  .p-recruit_blk_btn {
    width: 100%;
  }
}
.p-fields {
  position: relative;
  background-color: #EDEDED;
  padding: 70px 0;
}
.p-fields_cont {
  width: 800px;
  margin: 0 auto;
}
.p-fields .c-ttl {
  color: transparent;
  background: linear-gradient(20deg, rgb(48, 130, 168) 0%, rgb(29, 65, 142) 100%);
  -webkit-background-clip: text;
          background-clip: text;
}
.p-fields .c-ttl_sub {
  color: #1D418E;
}
.p-fields .c-text {
  color: #333;
}
.p-fields_wrap {
  position: relative;
  z-index: 100;
  background-color: #fff;
  border-radius: 4px;
  padding: 30px;
}
.p-fields_table {
  width: 100%;
}
.p-fields_ttl {
  font-size: 16px;
  line-height: 1.4;
}
.p-fields_tr {
  display: flex;
}
.p-fields_th {
  display: flex;
  justify-content: space-between;
  width: 200px;
  padding: 25px 0;
  border-bottom: solid 1px #d2d2d2;
}
.p-fields_td {
  flex: 1;
  padding: 25px 0;
  padding-left: 40px;
  border-bottom: solid 1px #d2d2d2;
}
.p-fields_label {
  color: #62666D;
  border: 1px solid #62666D;
  font-size: 12px;
  font-weight: bold;
  border-radius: 6px;
  width: 45px;
  height: 24px;
  text-align: center;
  line-height: 22px;
  display: inline-block;
}
.p-fields_label.-required {
  color: #F90100;
  border: 1px solid #F90100;
}
.p-fields_inputTxt {
  color: #000;
  font-size: 16px;
  font-weight: bold;
  height: 50px;
  background-color: #ededed;
  border: solid 3px #ededed;
  border-radius: 4px;
  padding: 10px;
  width: 100%;
}
.p-fields_inputTxt.u-name {
  width: 150px;
  margin-right: 20px;
}
.p-fields_inputTxt.u-name:last-child {
  margin-right: 0;
}
.p-fields_inputTxt.u-tel, .p-fields_inputTxt.u-fax, .p-fields_inputTxt.u-email {
  width: 250px;
}
.p-fields_inputTxt.u-message {
  height: 250px;
}
.p-fields_inputTxt::-moz-placeholder {
  color: #999;
}
.p-fields_inputTxt::placeholder {
  color: #999;
}
.p-fields_end {
  position: absolute;
  display: block;
  width: 100%;
  height: 200px;
  overflow: hidden;
  bottom: 0;
}
.p-fields_end::after {
  content: "Contact";
  white-space: nowrap;
  display: block;
  position: absolute;
  bottom: -45px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 135px;
  font-weight: bold;
  color: transparent;
  background: linear-gradient(0deg, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0.8) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  z-index: 0;
}

@media (max-width: 1300px) {
  .p-fields_inputTxt {
    width: 100%;
  }
}
@media (max-width: 1000px) {
  .p-fields_td {
    width: calc(100% - 200px);
  }
}
@media (max-width: 930px) {
  .p-fields_cont {
    width: 100%;
    padding: 0 15px;
  }
  .p-fields_wrap {
    padding: 15px;
  }
}
@media (max-width: 768px) {
  .p-fields {
    padding: 50px 0;
  }
  .p-fields_tr {
    flex-direction: column;
  }
  .p-fields_th {
    width: 100%;
    display: inline-block;
    text-align: left;
    border-bottom: none;
    padding: 15px 0 0;
  }
  .p-fields_ttl {
    font-size: 14px;
  }
  .p-fields_td {
    padding-left: 0;
    width: 100%;
    padding: 10px 0 15px;
  }
  .p-fields_label {
    font-size: 12px;
    width: 36px;
    height: 20px;
    line-height: 18px;
    margin-left: 4px;
  }
  .p-fields_inputTxt {
    font-size: 12px;
    height: 40px;
  }
  .p-fields_end::after {
    font-size: 16vw;
    line-height: 1;
    bottom: -3vw;
  }
}
@media (max-width: 500px) {
  .p-fields_inputTxt.u-name {
    margin-right: 10px;
    width: 120px;
    width: calc(50% - 10px);
  }
  .p-fields_inputTxt.u-tel, .p-fields_inputTxt.u-fax, .p-fields_inputTxt.u-email {
    width: 200px;
  }
}
.p-fields_submit {
  display: inline-block;
  position: relative;
}
.p-fields_submit_wrap {
  text-align: center;
  margin: 15px auto 0;
}
.p-fields_submit_btn {
  display: block;
  width: 260px;
  position: relative;
  background: #3082A8;
  background: linear-gradient(20deg, rgb(48, 130, 168) 0%, rgb(29, 65, 142) 100%);
  border-radius: 4px;
  white-space: nowrap;
  color: #fff;
  display: block;
  padding: 15px 40px;
  font-weight: bold;
  border-radius: 4px;
  border: none;
}
.p-fields_submit::after {
  position: absolute;
  display: block;
  content: "";
  background-image: url(../images/btn_arw.svg);
  width: 10px;
  height: 16px;
  background-size: 10px 16px;
  top: 50%;
  transform: translateY(-50%);
  right: 15px;
}

@media (max-width: 768px) {
  .p-fields_submit {
    display: block;
  }
  .p-fields_submit_btn {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */