@charset "UTF-8";
@font-face {
  font-family: KozGoPr6N-Bold;
  src: url("../fonts/KozGoPr6N-Bold.woff2");
}
@font-face {
  font-family: KozGoPr6N-Medium;
  src: url("../fonts/KozGoPr6N-Medium.woff2");
}
@font-face {
  font-family: KozGoPr6N-Medium-2;
  src: url("../fonts/KozGoPr6N-Medium-2.woff2");
}
@font-face {
  font-family: KozGoPr6N-Regular;
  src: url("../fonts/KozGoPr6N-Regular.woff2");
}
@font-face {
  font-family: noto-black;
  src: url("../fonts/NotoSansCJKjp-Black.woff2");
}
@font-face {
  font-family: noto-bold;
  src: url("../fonts/NotoSansCJKjp-Bold.woff2");
}
@font-face {
  font-family: BGothicMB101Pro-Regular;
  src: url("../fonts/A-OTF Gothic MB101 Pro R.woff2");
}
.pc {
  display: flex !important;
}

.sp {
  display: none !important;
}

.tc {
  display: block !important;
}

.tb {
  display: none !important;
}

@media print, screen and (max-width: 641px) {
  .tc {
    display: none !important;
  }
  .tb {
    display: block !important;
  }
}
@media only screen and (max-width: 640px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: flex !important;
  }
}
@media print, screen and (min-width: 769px) {
  .pc-hide {
    display: none !important;
  }
}
@media only screen and (max-width: 640px) {
  .sp-hide {
    display: none !important;
  }
}
#wrapper {
  position: relative;
  width: 100%;
}

main {
  position: relative;
}

/*ローディング*/
#loading {
  width: 100vw;
  height: 100vh;
  transition: all 1s;
  background-color: #0bd;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}
.spinner {
  width: 100px;
  height: 100px;
  margin: 200px auto;
  background-color: #fff;
  border-radius: 100%;
  animation: sk-scaleout 1.0s infinite ease-in-out;
}
/* ローディングアニメーション */
@keyframes sk-scaleout {
  0% {
    transform: scale(0);
  } 100% {
    transform: scale(1.0);
    opacity: 0;
  }
}
.loaded {
  opacity: 0;
  visibility: hidden;
}
/*ここまで*/

/**/
.sk-chase {
  width: 40px;
  height: 40px;
  position: relative;
  animation: sk-chase 2.5s infinite linear both;
}

.sk-chase-dot {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0; 
  animation: sk-chase-dot 2.0s infinite ease-in-out both; 
}

.sk-chase-dot:before {
  content: '';
  display: block;
  width: 25%;
  height: 25%;
  background-color: #fff;
  border-radius: 100%;
  animation: sk-chase-dot-before 2.0s infinite ease-in-out both; 
}

.sk-chase-dot:nth-child(1) { animation-delay: -1.1s; }
.sk-chase-dot:nth-child(2) { animation-delay: -1.0s; }
.sk-chase-dot:nth-child(3) { animation-delay: -0.9s; }
.sk-chase-dot:nth-child(4) { animation-delay: -0.8s; }
.sk-chase-dot:nth-child(5) { animation-delay: -0.7s; }
.sk-chase-dot:nth-child(6) { animation-delay: -0.6s; }
.sk-chase-dot:nth-child(1):before { animation-delay: -1.1s; }
.sk-chase-dot:nth-child(2):before { animation-delay: -1.0s; }
.sk-chase-dot:nth-child(3):before { animation-delay: -0.9s; }
.sk-chase-dot:nth-child(4):before { animation-delay: -0.8s; }
.sk-chase-dot:nth-child(5):before { animation-delay: -0.7s; }
.sk-chase-dot:nth-child(6):before { animation-delay: -0.6s; }

@keyframes sk-chase {
  100% { transform: rotate(360deg); } 
}

@keyframes sk-chase-dot {
  80%, 100% { transform: rotate(360deg); } 
}

@keyframes sk-chase-dot-before {
  50% {
    transform: scale(0.4); 
  } 100%, 0% {
    transform: scale(1.0); 
  } 
}
/**/

/* input */
input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
select,
textarea {
  position: relative;
  background-color: transparent;
  box-sizing: border-box;
  padding: 0.9rem 1.6rem;
  width: 100%;
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 3rem;
  text-align: left;
  color: #000000;
  outline: none !important;
}
@media only screen and (max-width: 640px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=number],
  input[type=password],
  select,
  textarea {
    padding: 1.2rem 1.6rem;
    font-size: 2.4rem;
    line-height: 3.2rem;
  }
}

input[type=text],
input[type=email],
input[type=tel],
input[type=number],
input[type=password],
select {
  height: 4.8rem;
}
@media only screen and (max-width: 640px) {
  input[type=text],
  input[type=email],
  input[type=tel],
  input[type=number],
  input[type=password],
  select {
    height: 5.6rem;
  }
}

select {
  position: relative;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url(../img/select-down.svg);
  background-position: calc(100% - 1.2rem) 50%;
  background-size: 1rem 0.8rem;
  background-repeat: no-repeat;
  z-index: 0;
}
@media only screen and (max-width: 640px) {
  select {
    background-position: calc(100% - 1rem) 50%;
  }
}

picture,
figure,
.image_wrap {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

picture img,
figure img,
.image_wrap img {
  width: 100%;
}

@keyframes scroll {
  from {
    height: 0;
  }
  to {
    height: 15rem;
  }
}
@keyframes rotate {
  from {
    transform: translate(-50%, -50%) rotateZ(0);
  }
  to {
    transform: translate(-50%, -50%) rotateZ(360deg);
  }
}
@keyframes top-slider {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: -2010px 0;
  }
}
@keyframes bottom-slider {
  0% {
    background-position: 0 0;
  }
  100% {
    background-position: 2557px 0;
  }
}
input[type=text] {
  position: relative;
  background-color: #E7E8E8;
  box-sizing: border-box;
  padding: 0.9rem 1.6rem;
  width: 100%;
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 3rem;
  text-align: left;
  color: #000000;
  outline: none !important;
  height: 4.8rem;
  border: none;
}
input[type=text]:focus {
  border-color: #6B9DCF;
}

input[type=email] {
  position: relative;
  background-color: #E7E8E8;
  box-sizing: border-box;
  padding: 0.9rem 1.6rem;
  width: 100%;
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 3rem;
  text-align: left;
  color: #000000;
  outline: none !important;
  height: 4.8rem;
  border: none;
}
input[type=email]:focus {
  border-color: #6B9DCF;
}

input[type=tel] {
  position: relative;
  background-color: #E7E8E8;
  box-sizing: border-box;
  padding: 0.9rem 1.6rem;
  width: 100%;
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 3rem;
  text-align: left;
  color: #000000;
  outline: none !important;
  height: 4.8rem;
  border: none;
}
input[type=tel]:focus {
  border-color: #6B9DCF;
}

input[type=number] {
  position: relative;
  background-color: #E7E8E8;
  box-sizing: border-box;
  padding: 0.9rem 1.6rem;
  width: 100%;
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 3rem;
  text-align: left;
  color: #000000;
  outline: none !important;
  height: 4.8rem;
  border: none;
}
input[type=number]:focus {
  border-color: #6B9DCF;
}

input[type=password] {
  position: relative;
  background-color: #E7E8E8;
  box-sizing: border-box;
  padding: 0.9rem 1.6rem;
  width: 100%;
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 3rem;
  text-align: left;
  color: #000000;
  outline: none !important;
  height: 4.8rem;
  border: none;
}
input[type=password]:focus {
  border-color: #6B9DCF;
}

select {
  position: relative;
  background-color: #E7E8E8;
  box-sizing: border-box;
  padding: 0.9rem 1.6rem;
  width: 100%;
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 3rem;
  text-align: left;
  color: #000000;
  outline: none !important;
  height: 4.8rem;
  border: none;
}
select:focus {
  border-color: #6B9DCF;
}

textarea {
  position: relative;
  background-color: #E7E8E8;
  box-sizing: border-box;
  padding: 0.9rem 1.6rem;
  width: 100%;
  font-weight: normal;
  font-size: 1.8rem;
  line-height: 3rem;
  text-align: left;
  color: #000000;
  outline: none !important;
  border: none;
}
textarea:focus {
  border-color: #6B9DCF;
}

picture {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
picture img {
  width: 100%;
}

figure {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
figure img {
  width: 100%;
}

.image_wrap {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.image_wrap img {
  width: 100%;
}

.common-page {
  position: relative;
  padding: 8rem 0 12rem;
}
@media only screen and (max-width: 640px) {
  .common-page {
    padding: 6rem 0 18rem;
  }
}

.p-lead-section {
  position: relative;
  padding: 4.8rem 0 7rem;
}
@media only screen and (max-width: 640px) {
  .p-lead-section {
    padding: 4rem 0 6rem;
  }
}

.column-section {
  position: relative;
  padding: 6rem 0;
}
@media only screen and (max-width: 640px) {
  .column-section {
    padding: 5rem 0;
  }
}

.p-archive-section {
  position: relative;
  padding: 7rem 0;
}
@media only screen and (max-width: 640px) {
  .p-archive-section {
    padding: 6rem 0;
  }
}

.ms-text {
  position: relative;
  font-family: KozGoPr6N-Medium;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 3.2rem;
  text-align: left;
  color: black;
}
@media only screen and (max-width: 640px) {
  .ms-text {
    font-size: 2rem;
    line-height: 2;
  }
}

.m-text {
  position: relative;
  font-family: KozGoPr6N-Bold;
  font-weight: 500;
  font-size: 1.8rem;
  line-height: 3.2rem;
  text-align: left;
  color: black;
}
@media only screen and (max-width: 640px) {
  .m-text {
    font-size: 2rem;
    line-height: 4rem;
  }
}

.m-subttl {
  font-size: 3.6rem;
  font-family: KozGoPr6N-Bold;
  color: white;
  font-weight: bold;
  letter-spacing: 1.5rem;
  text-align: center;
  line-height: 1.8;
}

.mx-text {
  position: relative;
  font-family: KozGoPr6N-Bold;
  font-weight: 500;
  font-size: 2.1rem;
  line-height: 2;
  text-align: left;
}
@media only screen and (max-width: 640px) {
  .mx-text {
    font-size: 2.4rem;
  }
}

.lead-title {
  position: relative;
  font-family: MiGoMB1Std-DeBold;
  font-weight: bold;
  font-size: 6rem;
  line-height: 4rem;
  color: #ffffff;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 640px) {
  .lead-title {
    margin-bottom: 2rem;
  }
}

.text-list {
  position: relative;
  list-style-type: "・";
  padding-left: 1.8rem;
}

.underline_bg {
  display: inline;
  background: linear-gradient(transparent 68%, #FBB03B 0%);
}

.section-title {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 640px) {
  .section-title {
    display: block;
  }
}
.section-title .lead {
  position: relative;
  width: 38%;
  font-family: "AvenirNext-Bold";
  font-size: 4.6rem;
  font-weight: bold;
  line-height: 1.3;
  text-align: left;
  color: #fff;
}
@media only screen and (max-width: 640px) {
  .section-title .lead {
    width: 100%;
  }
}
.section-title .sub {
  position: relative;
  width: 62%;
  border-top: 1px solid #fff;
  font-family: KozGoPr6N-Bold;
  font-size: 2rem;
  line-height: 2.2;
  text-align: left;
  color: #fff;
}
@media only screen and (max-width: 640px) {
  .section-title .sub {
    width: 100%;
  }
}

.arrow-btn {
  width: 3.3rem;
  height: 3.3rem;
  border-radius: 50%;
  border: 1px solid black;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
.arrow-btn span {
  width: 4px;
  height: 4px;
  border-right: 1px solid black;
  border-bottom: 1px solid black;
  transform: rotate(45deg);
}

.color-line {
  margin: 1.3rem 0 1.8rem 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.color-line .line {
  width: 2.4rem;
  height: 0.24rem;
}
.color-line .line-blue {
  background-color: #3074B2;
}
.color-line .line-sky {
  background-color: #92BCD6;
}
.color-line .line-red {
  background-color: #E36C49;
}

.breadcrumbs {
  position: relative;
  padding: 1.5rem 0;
  background: #ECEDEE;
}
@media only screen and (max-width: 640px) {
  .breadcrumbs {
    display: none;
  }
}
.breadcrumbs ol {
  display: block;
  list-style: none;
  margin: 0;
  font-family: notoSansCJKjp-Regular;
  font-size: 1rem;
  font-weight: normal;
  color: #3E3A39;
}
@media only screen and (max-width: 640px) {
  .breadcrumbs ol {
    font-size: 1.2rem;
  }
}
.breadcrumbs ol a {
  color: #33B0E5;
}
.breadcrumbs ol li {
  position: relative;
  display: inline;
}
.breadcrumbs ol li + li::before {
  content: "＞";
  display: inline-block;
  font-family: notoSansCJKjp-Regular;
  font-size: 0.8rem;
  padding-left: 1.2rem;
  padding-right: 1.2rem;
}
@media only screen and (max-width: 640px) {
  .breadcrumbs ol li + li::before {
    padding-left: 1rem;
    padding-right: 1rem;
  }
}

.section-lead {
  position: relative;
}
.section-lead .title {
  position: relative;
  font-family: gothicMB101Pro-Medium;
  font-size: 1.8rem;
  line-height: 1.5;
  color: #000000;
  margin-bottom: 2.5rem;
}
@media only screen and (max-width: 640px) {
  .section-lead .title {
    font-size: 2.4rem;
  }
}
.section-lead .text {
  position: relative;
  font-family: gothicMB101Pro-Regular;
  font-size: 1.4rem;
  line-height: 2;
  color: #000000;
}
@media only screen and (max-width: 640px) {
  .section-lead .text {
    font-size: 1.8rem;
  }
}

/* btn */
.btn-wrap {
  position: relative;
}

.btn {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px 20px;
  max-width: 240px;
  width: 100%;
  height: 50px;
  background: #F2F2F2;
  border: 1px solid #858585;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  line-height: 24px;
  font-weight: 300;
  color: #1A1A1A;
  text-align: center;
  text-decoration: none;
  outline: none;
  transition: all 0.4s;
  cursor: pointer;
}
@media only screen and (max-width: 640px) {
  .btn {
    height: 45px;
    max-width: 200px;
  }
}
.btn span {
  position: relative;
  color: inherit;
  text-decoration: none;
  z-index: 3;
}
.btn:hover {
  background: #A10707;
  border-color: #A10707;
  color: #FFFFFF;
}

.viewmore_link_wrap {
  position: relative;
}
.viewmore_link_wrap .viewmore_link {
  position: relative;
  display: inline-block;
  font-family: "Ubuntu";
  font-weight: bold;
  font-style: italic;
  font-size: 16px;
  line-height: 26px;
  color: #FF7100;
  text-decoration: none;
}
.viewmore_link_wrap .viewmore_link::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: #FF7100;
}
.viewmore_link_wrap .viewmore_link::after {
  content: ">";
  display: inline-block;
  line-height: 1;
  margin-left: 6px;
  vertical-align: text-bottom;
}
.viewmore_link_wrap .viewmore_link:hover::before {
  width: 100%;
  animation: link-lineloop 0.6s ease-out;
  -webkit-animation: link-lineloop 0.6s ease-out;
}

.view-more {
  position: relative;
}

.link-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  outline: none;
  transition: all 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  cursor: pointer;
  width: 16rem;
  height: 5rem;
  border-radius: 3rem;
  background: white;
  overflow: hidden;
  border: 1px solid #fff;
  z-index: 90;
}
.link-btn span {
  position: relative;
  font-family: noto-bold;
  font-size: 1.4rem;
  color: orange;
  text-decoration: none;
  line-height: 1;
  z-index: 3;
}
.link-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: orange;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transform-origin: right top;
  transform: scale(0, 1);
  z-index: 1;
  border-radius: 3rem;
}
.link-btn:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}
.link-btn:hover span {
  color: white;
}

.form-btn {
  position: relative;
  display: inline-block;
  padding: 2rem 3rem;
  max-width: 100%;
  width: 30rem;
  background-color: #672E2B;
  border: 1px solid #672E2B;
  border-radius: 0.6rem;
  font-family: "Kozuka Gothic Pr6N", sans-serif;
  font-weight: 500;
  font-size: 2.3rem;
  line-height: 3.6rem;
  text-align: center;
  color: #FFFFFF;
  white-space: nowrap;
  text-align: center;
  text-decoration: none;
  outline: none;
  transition: all 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  cursor: pointer;
  overflow: hidden;
  margin: 0 2rem;
  z-index: 0;
}
@media only screen and (max-width: 640px) {
  .form-btn {
    width: 32rem;
    font-size: 2.4rem;
    line-height: 3.6rem;
  }
  .form-btn:not(:last-child) {
    margin-bottom: 3rem;
  }
}
.form-btn span {
  position: relative;
  color: inherit;
  text-decoration: none;
  z-index: 3;
}
.form-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  background: #FFFFFF;
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1);
  transform-origin: right top;
  transform: scale(0, 1);
  z-index: 1;
}
.form-btn:hover {
  color: #672E2B;
}
.form-btn:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
}

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  outline: 0;
  opacity: 0;
  transition: opacity 0.1s linear;
  padding: 1.5rem;
  overflow-x: hidden;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.5);
}
.modal .modal-dialog {
  position: relative;
  max-width: 70rem;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: transform 0.3s ease-out, -webkit-transform 0.3s ease-out;
  transform: translate(0, -15%);
  margin: auto;
}
.modal .modal-content {
  position: relative;
  display: block;
  width: 100%;
  background: #FFFFFF;
  border-radius: 0.6rem;
  border: 1px solid rgba(0, 0, 0, 0.2);
  pointer-events: auto;
}
.modal .close {
  position: absolute;
  top: -1rem;
  right: -1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.2rem 0.6rem;
  width: 3rem;
  height: 3rem;
  background-color: #FCEE21;
  border-radius: 50%;
  font-size: 1.6rem;
  line-height: 1;
  z-index: 3;
}
.modal .modal-body {
  position: relative;
  padding: 2rem;
}
.modal.show {
  opacity: 1;
}
.modal.show .modal-dialog {
  transform: translate(0, 0);
}

.modal-open {
  overflow: hidden;
}

.wp-pagination {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 8rem;
}
@media only screen and (max-width: 640px) {
  .wp-pagination {
    margin-top: 7rem;
  }
}
.wp-pagination .link-btn {
  border: 1px solid #33B0E5;
  background: #33B0E5;
}
@media only screen and (max-width: 640px) {
  .wp-pagination .link-btn {
    width: 20rem;
    height: 4rem;
    border-radius: 2rem;
    font-size: 1.8rem;
    padding: 1rem 10rem 0.8rem 4rem;
  }
  .wp-pagination .link-btn::after {
    width: 4.8rem;
    height: 2rem;
  }
}
.wp-pagination .wp-pagenavi {
  position: relative;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.wp-pagination .wp-pagenavi span,
.wp-pagination .wp-pagenavi a {
  position: relative;
  display: inline-block;
  font-family: "Noto Sans CJK JP", sans-serif;
  font-size: 1.8rem;
  line-height: 1;
  text-align: center;
  color: #E2E3E3;
  border: 1px solid #E2E3E3;
  border-radius: 50%;
  width: 4rem;
  height: 4rem;
  display: none;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
@media only screen and (max-width: 640px) {
  .wp-pagination .wp-pagenavi span,
  .wp-pagination .wp-pagenavi a {
    font-size: 2rem;
  }
}
.wp-pagination .wp-pagenavi .smaller:hover {
  position: relative;
  display: inline-block;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  padding: 0;
  line-height: 1;
  display: none;
  justify-content: center;
  align-items: center;
  background: transparent;
  border-color: #FFA4DF;
  color: #FFA4DF;
}
.wp-pagination .wp-pagenavi .larger:hover {
  position: relative;
  display: inline-block;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  padding: 0;
  line-height: 1;
  display: none;
  justify-content: center;
  align-items: center;
  background: transparent;
  border-color: #FFA4DF;
  color: #FFA4DF;
}
.wp-pagination .wp-pagenavi .current {
  position: relative;
  display: inline-block;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  padding: 0;
  line-height: 1;
  display: none;
  justify-content: center;
  align-items: center;
  background: transparent;
  border-color: #FFA4DF;
  color: #FFA4DF;
}
.wp-pagination .wp-pagenavi .smaller + .current {
  margin-left: 3rem;
}
.wp-pagination .wp-pagenavi .current + .larger {
  margin-left: 2.5rem;
}
.wp-pagination .wp-pagenavi .first,
.wp-pagination .wp-pagenavi .last {
  display: none;
}
.wp-pagination .wp-pagenavi .previouspostslink,
.wp-pagination .wp-pagenavi .nextpostslink {
  width: 16rem;
  height: 4.5rem;
  border-radius: 2.3rem;
  border: 1px solid black;
  background-color: white;
  color: #000000;
  display: block;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.wp-pagination .wp-pagenavi .previouspostslink {
  position: absolute;
  top: 50%;
  left: 34%;
  transform: translateY(-50%);
}
.wp-pagination .wp-pagenavi .nextpostslink {
  position: absolute;
  top: 50%;
  right: 34%;
  transform: translateY(-50%);
}
.wp-pagination .wp-pagenavi .pages {
  width: 15rem;
  height: 3.5rem;
  border-radius: 1.75rem;
  border: 1px solid #8B8C8C;
  display: none;
  color: #8B8C8C;
  order: 1;
  margin-left: 1.5rem;
}
.wp-pagination .link-btn {
  margin-left: 3.6rem;
}

#toc_container {
  position: relative;
  display: block;
  max-width: 100%;
  width: 100%;
  border: 1px solid #D9D9D9;
  border-radius: 1.5rem;
  font-size: 100%;
  line-height: 1.8;
  letter-spacing: 0.05em;
  padding: 2.4rem;
  margin-top: 3rem;
  margin-bottom: 3rem;
}
@media only screen and (max-width: 640px) {
  #toc_container {
    letter-spacing: 0;
    padding: 1.8rem;
    margin-top: 2.4rem;
    margin-bottom: 2.5rem;
    border-radius: 1.2rem;
  }
}
#toc_container .toc_title {
  position: relative;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0.1em;
  color: #000000;
  text-align: center;
  margin: 0;
  padding: 0;
}
@media only screen and (max-width: 640px) {
  #toc_container .toc_title {
    font-size: 1.6rem;
  }
}
#toc_container .toc_list {
  margin-top: 1rem !important;
}
#toc_container .toc_list .toc_number {
  margin-right: 0.4rem;
}

.accordion-item-list {
  position: relative;
}
.accordion-item-list .accordion-item {
  position: relative;
}
.accordion-item-list .accordion-item:not(:last-child) {
  margin-bottom: 1.6rem;
}
.accordion-item-list .accordion-item .accordion-question {
  position: relative;
  padding: 0;
  margin: 0;
  background: transparent;
  border: 1px solid #727171;
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  cursor: pointer;
}
.accordion-item-list .accordion-item .accordion-question::after {
  content: "";
  position: absolute;
  top: calc(50% - 0.2rem);
  right: 2.4rem;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  border-left: 1px solid #727171;
  border-bottom: 1px solid #727171;
  transition: transform ease-in-out 0.4s;
  transform: translateY(-50%) rotate(-45deg);
  z-index: 2;
}
@media only screen and (max-width: 640px) {
  .accordion-item-list .accordion-item .accordion-question::after {
    width: 1.4rem;
    height: 1.4rem;
  }
}
.accordion-item-list .accordion-item .accordion-question h3 {
  position: relative;
  display: block;
  width: 100%;
  font-family: gothicMB101Pro-Medium;
  font-size: 1.4rem;
  line-height: 1.3;
  text-align: left;
  color: #727171;
  padding: 2.4rem 6rem 2.4rem 10rem;
  z-index: 0;
}
@media only screen and (max-width: 640px) {
  .accordion-item-list .accordion-item .accordion-question h3 {
    padding: 2.4rem 6rem 2.4rem 6rem;
  }
}
.accordion-item-list .accordion-item .accordion-question h3::before {
  content: "Q.";
  position: absolute;
  display: inline-block;
  top: 50%;
  transform: translateY(-50%);
  left: 3rem;
  font-family: gothicMB101Pro-Medium;
  font-size: 3.6rem;
  line-height: 1.3;
  text-align: left;
  color: #727171;
}
@media only screen and (max-width: 640px) {
  .accordion-item-list .accordion-item .accordion-question h3::before {
    left: 2rem;
  }
}
.accordion-item-list .accordion-item .accordion-question.expanded::after {
  border-left: none;
  border-bottom: none;
  border-right: 1px solid #727171;
  border-top: 1px solid #727171;
  top: calc(50% + 0.6rem);
}
.accordion-item-list .accordion-item .accordion-answer {
  position: relative;
  display: none;
  padding: 3.6rem 2.4rem 3.6rem 0;
  background: transparent;
  border: 1px solid #D1BA8E;
  border-radius: 0.5rem;
  margin-top: 0.5rem;
}
@media only screen and (max-width: 640px) {
  .accordion-item-list .accordion-item .accordion-answer {
    padding: 2.4rem 2rem 2.4rem 0;
  }
}
.accordion-item-list .accordion-item .accordion-answer .content {
  position: relative;
  padding: 0 0 0 10rem;
  margin: 0;
}
@media only screen and (max-width: 640px) {
  .accordion-item-list .accordion-item .accordion-answer .content {
    padding-left: 6rem;
  }
}
.accordion-item-list .accordion-item .accordion-answer .content::before {
  content: "A";
  position: absolute;
  top: -1rem;
  left: 3rem;
  font-size: 3.6rem;
  line-height: 1.3;
  color: #33B0E5;
}
@media only screen and (max-width: 640px) {
  .accordion-item-list .accordion-item .accordion-answer .content::before {
    left: 2rem;
  }
}
.accordion-item-list .accordion-item .accordion-answer .content .m-text {
  position: relative;
  color: #33B0E5;
  font-family: gothicMB101Pro-Regular;
  font-size: 1.4rem;
  color: #3E3A39;
}

/* デバイス毎の改行操作 */
@media screen and (min-width: 1024px) {
  [data-tb],
  [data-sp] {
    display: none !important;
  }
  [data-pc] {
    display: inline-block !important;
  }
}
@media screen and (min-width: 750px) and (max-width: 1024px) {
  [data-pc],
  [data-sp] {
    display: none !important;
  }
  [data-tb] {
    display: inline-block !important;
  }
}
@media screen and (max-width: 750px) {
  [data-tb],
  [data-pc] {
    display: none !important;
  }
  [data-sp] {
    display: inline-block !important;
  }
}
.back-to-top {
  position: fixed;
  bottom: 9.6rem;
  right: 1.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 9.4rem;
  background: none;
  padding: 0;
  margin: 0;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  z-index: 996;
}
@media only screen and (max-width: 640px) {
  .back-to-top {
    width: 7.2rem;
    right: 1.6rem;
    bottom: 11.2rem;
  }
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  padding: 3rem 2rem 3rem 5rem;
  background: transparent;
  transition: background 0.3s ease-in-out;
  z-index: 999;
  transition: all 0.2s ease-in-out;
}
#header .header-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0;
  margin: 0;
  height: 100%;
  z-index: 0;
}
#header .header-wrapper .header-logo {
  width: 10rem;
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}
#header .header-wrapper .header-logo a img {
  width: 100%;
}
@media only screen and (max-width: 640px) {
  #header .header-wrapper .header-logo {
    width: 10rem;
  }
  #header .header-wrapper .header-logo a {
    width: 100%;
  }
}
#header .header-wrapper .header-nav {
  position: relative;
  display: flex;
  flex-direction: row;
}
@media only screen and (max-width: 640px) {
  #header .header-wrapper .header-nav {
    display: none;
  }
}
#header .header-wrapper .header-nav .header-recruit-require {
  width: 15rem;
  height: 3.5rem;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: AvenirNext-Bold;
  font-weight: bold;
  font-size: 1.4rem;
  color: #E36C49;
  border: 0.5px solid #E36C49;
  border-radius: 1.75rem;
}
#header .header-wrapper .header-nav .header-recruit-corpo {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: AvenirNext-Bold;
  font-weight: bold;
  font-size: 1.4rem;
  color: #000000;
  margin-left: 2.5rem;
}

#header.header-scrolled {
  background: rgba(0, 0, 0, 0.4);
  transition: all 0.2s ease-in-out;
}

body.mobile-nav-active #mobile-nav {
  top: 0;
}

.mobile-nav-toggle {
  position: absolute;
  right: 2.6rem;
  top: 50%;
  transform: translateY(-50%);
  width: 6rem;
  height: 6rem;
  background: #fff;
  border-radius: 50%;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1001;
  margin: 0;
  transition: all 0.4s ease-in-out;
}
@media only screen and (max-width: 640px) {
  .mobile-nav-toggle {
    display: flex;
  }
}
.mobile-nav-toggle .toggle-text-menu {
  color: white;
  font-size: 0.9rem;
}
.mobile-nav-toggle .toggle-text-close {
  color: white;
  font-size: 0.9rem;
  display: none;
}
.mobile-nav-toggle .mobile-nav-toggle-content {
  position: relative;
}
.mobile-nav-toggle .toggle-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: block;
  width: 2.7rem;
  height: 1.2rem;
  margin: 0;
}
.mobile-nav-toggle .toggle-icon span {
  display: inline-block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 0.3rem;
  background: orange;
  transition: all 0.4s ease-in-out;
  transform-origin: center center;
}
.mobile-nav-toggle .toggle-icon span:nth-child(1) {
  top: 0;
}
.mobile-nav-toggle .toggle-icon span:nth-child(2) {
  bottom: 0;
}
.mobile-nav-toggle.toggle-active .toggle-text-menu {
  display: none;
}
.mobile-nav-toggle.toggle-active .toggle-text-close {
  display: block;
}
.mobile-nav-toggle.toggle-active .toggle-icon span:nth-child(1) {
  transform: translateY(0.5rem) rotate(-45deg);
}
.mobile-nav-toggle.toggle-active .toggle-icon span:nth-child(2) {
  transform: translateY(-0.5rem) rotate(45deg);
  width: 2.7rem;
}

#mobile-nav {
  position: fixed;
  top: 0;
  bottom: 0;
  z-index: 998;
  top: -100%;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background: rgba(0, 0, 0, 0.8);
  transition: all 0.4s ease-in-out;
  padding: 16.7rem 0 8rem 0;
}
#mobile-nav .container {
  height: 100%;
  position: relative;
}
#mobile-nav .container .mobile-nav-menu {
  position: relative;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0 8rem;
}
@media only screen and (max-width: 640px) {
  #mobile-nav .container .mobile-nav-menu {
    gap: 5rem 0;
  }
}
@media only screen and (max-width: 640px) {
  #mobile-nav .container .mobile-nav-menu-item {
    width: 100%;
  }
}
#mobile-nav .container .mobile-nav-menu-item ul .menu-ttl {
  font-size: 2rem;
  font-family: AvenirNext-Bold;
  font-weight: bold;
  color: #fff;
  margin-top: 0;
}
@media only screen and (max-width: 640px) {
  #mobile-nav .container .mobile-nav-menu-item ul .menu-ttl {
    font-size: 3.8rem;
  }
}
#mobile-nav .container .mobile-nav-menu-item ul .menu-ttl-en {
  margin-bottom: 0.5rem;
}
#mobile-nav .container .mobile-nav-menu-item ul .menu-ttl-jp {
  font-family: KozGoPr6N-Bold;
  font-size: 1.2rem;
}
@media only screen and (max-width: 640px) {
  #mobile-nav .container .mobile-nav-menu-item ul .menu-ttl-jp {
    font-size: 1.8rem;
  }
}
#mobile-nav .container .mobile-nav-menu-item ul li {
  font-family: KozGoPr6N-Bold;
  font-size: 1.2rem;
  color: #fff;
  margin-top: 2rem;
}
#mobile-nav .container .mobile-bottom-menu {
  width: 100%;
  margin-top: 2rem;
  padding-bottom: 2rem;
  padding-right: 3rem;
  border-bottom: 0.75px solid black;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#mobile-nav .container .mobile-bottom-menu li a span {
  font-family: KozGoPr6N-Bold;
  font-size: 1.4rem;
  color: #ACADAD;
}
#mobile-nav .container .mobile-bottom-menu .footer-submenu-border {
  width: 1px;
  height: 1.5rem;
  background: #ACADAD;
  margin: 0 2rem;
  transform: rotate(30deg);
}
#mobile-nav .container .mobile-nav-sdg {
  padding: 2.5rem 0 3.7rem 0;
}
#mobile-nav .container .block_img_01 {
  position: absolute;
  right: 0;
  top: 0;
  width: 43rem;
  height: max-content;
}
#mobile-nav .container .block_img_01 img {
  width: 100%;
}
#mobile-nav .container .block_img_02 {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 43rem;
  height: max-content;
}
#mobile-nav .container .block_img_02 img {
  width: 100%;
}

.mobile-nav-overly {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 997;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  overflow: hidden;
  transition: all 0.2s ease-in-out;
}

/* Mobile Nav body classes */
@media only screen and (max-width: 640px) {
  body.mobile-nav-active {
    overflow: hidden;
  }
}

body.mobile-nav-active #mobile-nav {
  top: 0;
}

main#main {
  position: relative;
  overflow: hidden;
}


.mainvisual .movie {
  position: relative;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  overflow: hidden;
}
.mainvisual .movie::after {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #D2D2D2;
  background-image: radial-gradient(#D2D2D2 20%, transparent 20%), radial-gradient(#D2D2D2 20%, transparent 20%);
  background-size: 6px 6px;
  background-position: 0 0, 3px 3px;
}
.mainvisual .movie video {
  position: relative;
  width: 100%;
}
.mainvisual .entry {
  position: fixed;
  bottom: 45rem;
  right: 2rem;
  width: 10rem;
  height: 10rem;
  background: #A50E32;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: hiraMinProp-regular;
  font-size: 1rem;
  color: #FFFFFF;
  line-height: 1;
  text-align: center;
  overflow: hidden;
  z-index: 100;
}
.mainvisual .entry::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 8.5rem;
  height: 8.5rem;
  border: 1px solid #FFFFFF;
  border-left: 1px solid transparent;
  border-right: 1px solid transparent;
  animation: rotate 7s infinite linear;
}
.mainvisual .entry:hover::after {
  animation: none;
  transform: translate(-50%, -50%) scale(1.2);
}



#modal-video {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  z-index: 108;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.75);
  transition: 0.5s;
}
#modal-video.close {
  filter: opacity(0);
  visibility: hidden;
}
#modal-video.open {
  filter: opacity(1);
  visibility: visible;
}
#modal-video iframe {
  width: 64vw;
  height: 36vw;
}





.pageindex-cat {
  display: flex;
  justify-content: center;
  padding: 0 3rem;
  margin-bottom: 8rem;
  padding-top: 18rem;
}
.pageindex-cat .cat-link {
  width: 20rem;
  height: 5rem;
  border: 1px solid #FFFFFF;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: hiraMinProp-regular;
  font-size: 1.4rem;
  color: #FFFFFF;
  margin: 0 1rem;
}
.pageindex-cat .cat-link:hover {
  background: #A50E32;
  border-color: #A50E32;
  color: #FFFFFF;
}
.pageindex-cat .cat-link.active {
  background: #A50E32;
  border-color: #A50E32;
  color: #FFFFFF;
}



.top-contact {
  position: relative;
  padding: 9rem 0;
  background-color: #171C61;
  z-index: 1;
}
.top-contact .section-title {
  position: relative;
  margin-bottom: 4rem;
}
.top-contact .section-title .lead {
  color: #FFFFFF;
}
.top-contact .section-title .sub {
  color: #FFFFFF;
}
.top-contact .section-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-contact .section-content .mx-text {
  color: #FFFFFF;
  font-size: 1.3rem;
  line-height: 1.3;
  width: 40%;
}
.top-contact .section-content .touch {
  border: 1px solid #D0B98D;
  border-radius: 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1rem 2rem;
  color: #D0B98D;
  font-size: 1rem;
}


.p-form {
  padding: 8rem 0;
  padding: 11rem 15rem 9rem 15rem;
  background-color: white;
  border-radius: 4rem;
}
@media only screen and (max-width: 640px) {
  .p-form {
    padding: 8rem 3rem;
  }
}

.form-attention {
  font-family: "Kozuka Gothic Pr6N", sans-serif;
  font-size: 2.1rem;
  line-height: 3.2rem;
  font-weight: 500;
  text-align: center;
  margin-bottom: 4.8rem;
  color: #231815;
}
.form-attention span {
  color: #DE0012;
}

.p-contact {
  position: relative;
  padding: 12rem 0 16rem;
}
.p-contact .container {
  position: relative;
  z-index: 3;
}
.p-contact .contact-intro {
  font-family: KozGoPr6N-Medium;
  font-size: 1.8rem;
  line-height: 2;
  color: black;
  text-align: center;
  margin-bottom: 8rem;
}
.p-contact .complete-title {
  font-family: KozGoPr6N-Medium;
  font-size: 3.6rem;
  line-height: 1.3;
  color: black;
  text-align: center;
  margin-bottom: 4rem;
}
.p-contact .mx-text {
  color: black;
  text-align: center;
  margin-bottom: 6rem;
}
.p-contact .link-btn {
  position: relative;
  width: 38rem;
  height: 6rem;
  border-radius: 4rem;
  font-size: 2.1rem;
  margin: 0 auto 3rem auto;
}
.p-contact .link-btn::before {
  border-radius: 4.5rem;
}

.contact-attention {
  font-family: KozGoPr6N-Regular;
  font-size: 1.5rem;
  line-height: 1.3;
  color: #FFFFFF;
  margin-bottom: 1.5rem;
}
.contact-attention span {
  color: #DE0012;
  font-family: KozGoPr6N-Bold;
}

.required {
  font-family: KozGoPr6N-Regular;
  font-size: 1.8rem;
  color: #DE0012;
}

.p-contact-form {
  position: relative;
  display: block;
  font-family: hiraMinProp-regular;
  font-size: 1.5rem;
  line-height: 1.8rem;
  text-align: left;
  color: #171C61;
}
.p-contact-form .form-group {
  position: relative;
  list-style: none;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 0;
  margin-bottom: 5rem;
}
.p-contact-form .form-group > li {
  position: relative;
  width: 100%;
  padding: 2rem 0;
  border-top: 1px solid #FFFFFF;
}
.p-contact-form .form-group .mw_wp_form_confirm .form-group li:last-child {
  display: none;
}
.p-contact-form .form-input {
  position: relative;
  display: flex;
  justify-content: space-between;
}
.p-contact-form .form-input + .form-input {
  margin-top: 1rem;
}
.p-contact-form .form-input .label {
  position: relative;
  padding: 0.8rem 0;
  display: flex;
  font-size: 1.5rem;
  color: #3E3A39;
  font-family: KozGoPr6N-Medium;
  width: 20%;
}
.p-contact-form .form-input .label p {
  display: flex;
  align-items: center;
}
.p-contact-form .form-input .input {
  position: relative;
  width: 75%;
  font-family: KozGoPr6N-Regular;
  color: #FFFFFF;
}
.p-contact-form .form-input .input > * {
  vertical-align: middle;
}
.p-contact-form .form-input .input select {
  width: 100%;
  background-color: #E7E8E8;
  color: #3E3A39;
  border: none;
}
.p-contact-form .form-input .input option {
  background-color: #E7E8E8;
  border: none;
}
.p-contact-form .form-input .input input {
  color: #3E3A39;
  font-size: 1.4rem;
  width: 100%;
  background-color: #E7E8E8;
  border: none;
}
.p-contact-form .form-input .input textarea {
  width: 100%;
  font-size: 1.4rem;
  color: #3E3A39;
  border: none;
  background-color: #E7E8E8;
}
.p-contact-form .form-input .sm {
  width: 30rem;
  max-width: 100%;
}
.p-contact-form .form-input .md {
  width: 45rem;
  max-width: 100%;
}
.p-contact-form .form-input .xs {
  width: 73rem;
  max-width: 100%;
}
.p-contact-form .form-input .inline-group {
  position: relative;
  list-style: none;
  display: flex;
  align-items: center;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
  padding: 0;
}
.p-contact-form .form-input .inline-group > li {
  position: relative;
  flex: 0 0 auto;
  width: auto;
  padding: 0 0.5rem;
}
.p-contact-form .form-input .inline-group .num {
  position: relative;
  width: 8rem;
  max-width: 100%;
}
.p-contact-form .form-input .inline-group .line {
  position: relative;
  display: block;
  width: 1rem;
  height: 1px;
  background: #000000;
}
.p-contact-form .form-input .field {
  position: relative;
  display: block;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.4rem;
}
.p-contact-form .form-input .mwform-tel-field {
  position: relative;
  display: flex;
  align-items: center;
  margin-left: -0.5rem;
  margin-right: -0.5rem;
}
.p-contact-form .form-input .mwform-tel-field input {
  position: relative;
  width: 14rem;
  max-width: 100%;
  margin: 0 1rem;
}
.p-contact-form .form-input .mwform-zip-field {
  position: relative;
  display: flex;
  align-items: center;
}
.p-contact-form .form-input .mwform-zip-field input {
  position: relative;
  width: 14rem;
  max-width: 100%;
  margin: 0 1rem;
}
.p-contact-form .mwform-checkbox-field {
  position: relative;
  display: inline-block;
  margin: 0;
}
.p-contact-form .mwform-checkbox-field label {
  display: inline-block;
  cursor: pointer;
}
.p-contact-form .mwform-checkbox-field [type=radio] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.p-contact-form .mwform-checkbox-field [type=radio] + .mwform-checkbox-field-text {
  position: relative;
  display: inline-block;
  padding-left: 3rem;
}
.p-contact-form .mwform-checkbox-field [type=radio] + .mwform-checkbox-field-text::before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  border-radius: 5rem;
  top: 0.5rem;
  left: 0;
  width: 2rem;
  height: 2rem;
  border: 1px solid #171C61;
  border-radius: 0.45rem;
}
.p-contact-form .mwform-checkbox-field [type=radio] + .mwform-checkbox-field-text::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  border-radius: 5rem;
  top: 1rem;
  left: 0.5rem;
  width: 1rem;
  height: 1rem;
  background: #171C61;
  transition: all 0.2s;
}
.p-contact-form .mwform-checkbox-field [type=radio]:not(:checked) + .mwform-checkbox-field-text::after {
  opacity: 0;
  visibility: hidden;
}
.p-contact-form .mwform-checkbox-field [type=radio]:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
  visibility: visible;
}
.p-contact-form .mwform-checkbox-field [type=checkbox] {
  position: absolute;
  opacity: 0;
  visibility: hidden;
}
.p-contact-form .mwform-checkbox-field [type=checkbox] + .mwform-checkbox-field-text {
  position: relative;
  display: inline-block;
  padding-left: 3rem;
}
.p-contact-form .mwform-checkbox-field [type=checkbox] + .mwform-checkbox-field-text::before {
  content: "";
  position: absolute;
  box-sizing: border-box;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 2rem;
  height: 2rem;
  border: 1px solid #FFFFFF;
}
.p-contact-form .mwform-checkbox-field [type=checkbox] + .mwform-checkbox-field-text::after {
  content: "";
  position: absolute;
  box-sizing: border-box;
  top: 0.2rem;
  left: 0.6rem;
  width: 0.8rem;
  height: 1.2rem;
  border: solid #FFFFFF;
  border-width: 0 0.2rem 0.2rem 0;
  transform: rotate(45deg);
  transition: all 0.2s;
}
.p-contact-form .mwform-checkbox-field [type=checkbox]:not(:checked) + .mwform-checkbox-field-text::after {
  opacity: 0;
  visibility: hidden;
}
.p-contact-form .mwform-checkbox-field [type=checkbox]:checked + .mwform-checkbox-field-text::after {
  opacity: 1;
  visibility: visible;
}
.p-contact-form .form-term {
  position: relative;
  text-align: center;
  margin-bottom: 4rem;
}
.p-contact-form .form-submit {
  position: relative;
  line-height: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.p-contact-form .form-submit .link-btn {
  position: relative;
  width: 38rem;
  height: 9rem;
  border-radius: 4.5rem;
  font-size: 2.1rem;
  margin: 0 2rem 3rem;
}
.p-contact-form .form-submit .link-btn::before {
  border-radius: 4.5rem;
}
.p-contact-form .form-submit .back-btn {
  background-color: transparent;
  color: #C7AD87;
}

.mw_wp_form .contact-layout .contact-item {
  margin-bottom: 6rem;
}
.mw_wp_form .contact-layout .contact-item:last-child {
  margin-bottom: 4.6rem;
}
.mw_wp_form .contact-layout .contact-item-left {
  font-size: 1.8rem;
  font-family: KozGoPr6N-Medium;
  color: #fff;
  margin-bottom: 1rem;
}
.mw_wp_form .contact-layout .contact-item-left span {
  font-family: KozGoPr6N-Regular-90ms-RKSJ-H;
  color: #D60012;
  font-size: 1.3rem;
}
.mw_wp_form .contact-layout .contact-item-right .mwform-radio-field label span {
  font-size: 1.4rem;
  font-family: KozGoPr6N-Regular-90ms-RKSJ-H;
  color: black;
}
.mw_wp_form .contact-layout .contact-item-right select {
  font-family: KozGoPr6N-Regular-90ms-RKSJ-H;
  font-size: 1.4rem;
  color: #595757;
}
.mw_wp_form .contact-layout .contact-item-right select option {
  font-family: KozGoPr6N-Regular-90ms-RKSJ-H;
  font-size: 1.4rem;
  color: #595757;
}
.mw_wp_form .contact-layout .contact-item .birthday {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.mw_wp_form .contact-layout .contact-item .birthday span {
  font-size: 1.3rem;
  font-family: KozGoPr6N-Regular-90ms-RKSJ-H;
  color: black;
  margin: 0 2rem;
}
.mw_wp_form .contact-layout .contact-item .address-item {
  display: flex;
  align-items: center;
  margin-bottom: 1.2rem;
}
.mw_wp_form .contact-layout .contact-item .address-item input[type=text] {
  width: 21rem;
}
.mw_wp_form .contact-layout .contact-item .address-item .zip-btn {
  width: 9rem;
  height: 3rem;
  color: white;
  background-color: #E36C49;
  font-family: KozGoPr6N-Regular-90ms-RKSJ-H;
  font-size: 1rem;
  margin-left: 1.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mw_wp_form .contact-layout .check-item {
  width: 100%;
  height: 5rem;
  background-color: #E7E8E8;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #000;
}
.mw_wp_form .contact-layout .check-item .mwform-checkbox-field label span {
  font-size: 1.6rem;
  font-family: KozGoPr6N-Regular-90ms-RKSJ-H;
  color: #000;
}
.mw_wp_form .contact-layout .underline {
	text-decoration: underline;
}
.mw_wp_form .contact-layout .underline:hover {
	text-decoration: none;
}
.mw_wp_form .send {
  width: 24rem;
  margin: 0 auto;
}
.mw_wp_form .send button {
  width: 24rem;
  height: 6rem;
  border: 1px solid #000000;
  color: #fff;
  background-color: #000;
  font-family: KozGoPr6N-Bold;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 3.3rem;
  margin: 0 auto;
  transition: all 0.3s ease;
  margin-bottom: 2rem;
}
.mw_wp_form .send:hover button {
  color: #000;
  background-color: #fff;
  border: none;
}

.mw_wp_form_confirm .check-item {
  font-size: 1.6rem;
  font-family: KozGoPr6N-Regular-90ms-RKSJ-H;
  color: white;
}
.mw_wp_form_confirm .contact-item .birthday {
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.mw_wp_form_confirm .contact-item-right .zip-btn {
  display: none;
}

.mw_wp_form_send_error {
  text-align: center;
  margin-bottom: 5rem;
}

.top-faq {
  position: relative;
  padding-bottom: 8rem;
}
.top-faq .section-title {
  position: relative;
  margin-bottom: 16rem;
}
.top-faq .section-title .lead {
  color: black;
  writing-mode: horizontal-tb;
  text-orientation: unset;
  text-align: center;
}
.top-faq .section-title .sub {
  text-align: center;
}
.top-faq .section-title .faq-block {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.top-faq .faq-layout {
  position: relative;
}
.top-faq .faq-layout .container {
  flex-direction: column;
}
.top-faq .faq-layout .faq-item {
  margin-bottom: 3rem;
  width: 100%;
}
.top-faq .faq-layout .accordion {
  cursor: pointer;
  transition: all 0.2s ease-in-out;
  position: relative;
  background-color: white;
  color: white;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 3rem 3rem 3rem 7rem;
  border-radius: 4rem;
  border: 1px solid #6B9DCF;
}
.top-faq .faq-layout .accordion.open {
  background-color: white;
  color: #6B9DCF;
  border-radius: 4rem 4rem 0 0;
}
.top-faq .faq-layout .accordion.open .accordion-arrow {
  background-color: #6B9DCF;
}
.top-faq .faq-layout .accordion.open .accordion-arrow::before {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  transform: rotate(-135deg);
  display: inline-block;
  color: #6B9DCF;
}
.top-faq .faq-layout .accordion-text {
  font-family: KozGoPr6N-Medium;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
  width: 90%;
  color: black;
}
.top-faq .faq-layout .accordion-text span {
  font-size: 4.6rem;
  color: #6B9DCF;
  font-family: AvenirNext-Bold;
  display: flex;
  margin-right: 3rem;
}
.top-faq .faq-layout .accordion-arrow {
  font-size: 2.5rem;
  line-height: 2;
  transition: all 0.3s ease;
  margin-left: 1rem;
  width: 4.5rem;
  height: 4.5rem;
  border-radius: 50%;
  border: 1px solid rgba(107, 157, 207, 0.25);
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #6B9DCF;
  transition: all ease 0.3s;
}
.top-faq .faq-layout .accordion-arrow::before {
  content: "";
  width: 5px;
  height: 5px;
  border-right: 1px solid white;
  border-bottom: 1px solid white;
  transform: rotate(45deg);
  display: inline-block;
  color: #6B9DCF;
  transition: all ease 0.3s;
}
.top-faq .faq-layout .panel {
  width: 100%;
  overflow: hidden;
  transition: 0.2s ease-in-out;
  border-radius: 0 0 4rem 4rem;
  border: 1px solid #6B9DCF;
}
.top-faq .faq-layout .panel .wrap {
  width: 100%;
  display: flex;
  align-items: center;
  padding: 2.8rem 10rem;
  background-color: white;
}
@media only screen and (max-width: 640px) {
  .top-faq .faq-layout .panel .wrap {
    padding: 2.8rem 3rem;
  }
}
.top-faq .faq-layout .panel-text {
  font-family: KozGoPr6N-Medium;
  font-size: 1.8rem;
  text-align: left;
  color: black;
}

.p-privacy {
  position: relative;
  padding: 18rem 0 8rem;
}
.p-privacy .container {
  position: relative;
  z-index: 3;
}
.p-privacy .privacy-title {
  position: relative;
  margin-bottom: 3rem;
  color: #000;
  font-size: 2.4rem;
  text-align: left;
  font-family: KozGoPr6N-Bold;
}
.p-privacy .privacy_item {
  margin-bottom: 2rem;
}
.p-privacy .privacy_item_title {
  display: block;
  padding: 0;
  font-family: KozGoPr6N-Medium;
  font-size: 1.8rem;
  line-height: 2;
  text-align: left;
  color: black;
}
.p-privacy .privacy_item_content {
  position: relative;
  display: block;
  padding: 0 0.5rem;
  font-family: KozGoPr6N-Medium;
  font-size: 1.4rem;
  line-height: 2;
  text-align: left;
  color: black;
}

.p-sitemap {
  position: relative;
  padding: 18rem 0 8rem;
}
.p-sitemap .container {
  position: relative;
  z-index: 3;
}
.p-sitemap .section-title {
  margin-bottom: 3rem;
}
.p-sitemap .section-title .lead {
  font-family: KozGoPr6N-Bold;
  font-size: 3.6rem;
  color: black;
}
.p-sitemap .sitemap-menu {
  position: relative;
  list-style: none;
  display: block;
  padding: 0;
}
.p-sitemap .sitemap-menu > li {
  position: relative;
  margin-bottom: 1.2rem;
}
.p-sitemap .sitemap-menu .menu-link {
  position: relative;
  display: block;
  width: 100%;
  background: white;
  padding: 2rem 3rem;
  font-family: KozGoPr6N-Medium;
  font-size: 2.4rem;
  line-height: 4rem;
  color: black;
  text-decoration: none;
  text-align: left;
  transition: all 0.3s ease-in-out;
}

#footer {
  position: relative;
  background: #f0a727;
  padding: 2rem 0;
}
#footer .copyright {
  font-family: KozGoPr6N-Medium;
  font-size: 1.2rem;
  color: #fff;
  white-space: nowrap;
  text-align: center;
}
#footer .copyright .container {
  display: flex;
  justify-content: center;
}

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


/*2025/01/27*/
.fix_btn {
  position: fixed;
  top: 50%;
  right: 0;
  writing-mode: vertical-lr;
  padding: 1rem 1.6rem;
  border: 2px solid #fff;
  border-radius: 10px 0 0 10px;
  background-color: #f0a727;
  color: #fff;
  font-size: 1.6rem;
  font-family: KozGoPr6N-Medium-2;
  z-index: 999;
  transition: 0.4s;
}
.fix_btn:hover {
  opacity: 0.7;
}
@media only screen and (max-width: 640px) {
  .fix_btn {
    top: 30%;
    padding: 1.4rem;
    font-size: 2.4rem;
  }
}

.fix-bg {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100vh;
}
.fix-bg .swiper-container {
	width: 100%;
	height: 100%;
	position: relative;
}
.fix-bg .swiper-slide {
	display: flex;
	justify-content: center;
	align-items: center;
	overflow: hidden;
}
.fix-bg .swiper-slide-bg {
	width: 100%;
	height: 100vh;
	background: url(../img/top/maincontent.jpg) no-repeat;
	background-position: center;
	background-size: cover;
}
.fix-bg .bg02 {
	background: url(../img/top/bg_service.jpg) no-repeat;
	background-position: center;
	background-size: cover;
}
.fix-bg .bg03 {
	background: url(../img/top/bg_welfare.jpg) no-repeat;
	background-position: center;
	background-size: cover;
}
.fix-bg .bg04 {
	background: url(../img/top/bg_require.jpg) no-repeat;
	background-position: center;
	background-size: cover;
}
.swiper-slide-active .swiper-slide-bg,
.swiper-slide-duplicate-active .swiper-slide-bg,
.swiper-slide-prev .swiper-slide-bg {
  animation: zoomUp 7s linear 0s normal both;
}
@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.15);
  }
}

.mainvisual {
  position: relative;
  width: 100%;
  height: 100vh;
  /*background: url(../img/top/mainvisual.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;*/
}
.mainvisual .mainvisual-title {
  width: 100%;
  margin: auto;
  position: absolute;
  bottom: 20%;
  left: 10%;
  z-index: 5;
}
.mainvisual .mainvisual-title img {
  width: 100%;
  max-width: 65rem;
}
@media only screen and (max-width: 1024px) {
  .mainvisual .mainvisual-title {
    top: 50%;
    left: 50%;
    bottom: auto;
    transform: translate(-50%,-50%);
    text-align: center;
  }
  .mainvisual .mainvisual-title img {
    width: 80%;
    max-width: none;
  }
}
.mainvisual .scroll {
  position: absolute;
  bottom: 3rem;
  right: 2rem;
  z-index: 3;
}
.mainvisual .scroll p {
  font-family: hiraMinProp-regular;
  font-size: 1.4rem;
  line-height: 1;
  color: #fff;
  writing-mode: sideways-lr;
  font-weight: bold;
}
.mainvisual .mainvisual-parts {
  width: 44rem;
  position: absolute;
  top: 0;
  right: 0;
}
.mainvisual .mainvisual-parts img {
  width: 100%;
}

.main-content {
  position: relative;
  width: 100%;
  height: 100vh;
  padding: 15rem 0 8rem;
  /*background: url(../img/top/maincontent.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;*/
}
@media only screen and (max-width: 900px) {
  .main-content {
    height: 70vh;
  }
}
@media only screen and (max-width: 640px) {
  .main-content {
    height: 100vh;
  }
}
.main-content .container {
  position: relative;
  z-index: 3;
}
.main-content .mainvisual-parts {
  width: 34rem;
  position: absolute;
  top: -30%;
  left: 0;
  opacity: 0.6;
  z-index: 1;
}
.main-content .mainvisual-parts img {
  width: 100%;
}
.main-content h2 {
  margin-bottom: 8rem;
  padding: 1rem;
  background-color: orange;
  color: #fff;
  font-size: 5rem;
  font-family: KozGoPr6N-Bold;
}
@media only screen and (max-width: 640px) {
  .main-content h2 {
    font-size: 4rem;
  }
}
.main-content p {
  color: #fff;
  font-size: 2rem;
}

.top-business {
  position: sticky;
  padding: 12rem 0 10rem;
  width: 100%;
  height: 140rem;
  /*background: url('../img/top/bg_business.jpg');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  background-attachment: fixed;*/
}
@media only screen and (max-width: 640px) {
  .top-business {
    height: max-content;
  }
}
.top-business .t-b-content {
  width: 50.5%;
  display: block;
  margin-top: 5rem;
  float: right;
}
@media only screen and (max-width: 640px) {
  .top-business .t-b-content {
    width: 100%;
    margin-bottom: 5rem;
  }
}
.top-business .t-b-content h4 {
  width: 26rem;
  margin: 0;
  margin-bottom: 4rem;
  text-align: center;
  color: #fff;
  font-size: 5.4rem;
}
.top-business .t-b-content h4 span {
  display: block;
  color: #fff;
  font-size: 1.8rem;
  font-family: KozGoPr6N-Bold;
}
.top-business .t-b-content h4 span img {
  width: 26rem;
  display: block;
}
.top-business .t-b-content h5 {
  margin-bottom: 2.4rem;
  color: #fff;
  font-size: 3.2rem;
  font-family: KozGoPr6N-Medium;
}
.top-business .t-b-content p {
  color: #fff;
}
.top-business .t-b-second {
  float: left;
}
@media only screen and (max-width: 640px) {
  .top-business .t-b-second {
    float: none;
  }
}

.top-values {
  position: relative;
  padding: 12rem 0 10rem;
  width: 100%;
  /*height: 100vh;*/
  background: url('../img/top/bg_values.png');
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
.top-values .t-v-content {
  margin-top: 5rem;
}
.top-values .t-v-content li {
  margin-bottom: 3rem;
}
.top-values .t-v-content li h4 {
  position: relative;
  margin-bottom: 2rem;
  color: #fff;
  font-size: 3rem;
  font-family: KozGoPr6N-Medium;
}
.top-values .t-v-content li h4::after {
  content: '';
  width: 95%;
  position: absolute;
  top: 50%;
  right: 0;
  border: 1px solid #fff;
}
@media only screen and (max-width: 640px) {
  .top-values .t-v-content li h4::after {
    width: 90%;
  }
}
.top-values .t-v-content li .t-v-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 640px) {
  .top-values .t-v-content li .t-v-flex {
    display: block;
  }
}
.top-values .t-v-content li .t-v-flex h5 {
  width: 35%;
  color: #fff;
  font-size: 2.2rem;
  font-family: KozGoPr6N-Medium;
}
@media only screen and (max-width: 640px) {
  .top-values .t-v-content li .t-v-flex h5 {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.top-values .t-v-content li .t-v-flex p {
  width: 60%;
  font-size: 2.2rem;
  color: #fff;
}
@media only screen and (max-width: 640px) {
  .top-values .t-v-content li .t-v-flex p {
    width: 100%;
  }
}

.top-service {
  position: relative;
  padding: 12rem 0 10rem;
  width: 100%;
  /*height: 100vh;
  background: url('../img/top/bg_service.jpg');
  background-attachment: fixed;
  background-repeat: repeat;
  background-size: cover;
  background-position: center;*/
}
.top-service .t-s-parts {
  width: 33rem;
  position: absolute;
  top: 3%;
  right: 0;
  opacity: 0.6;
  z-index: 1;
}
.top-service .t-s-parts img {
  width: 100%;
}
.top-service .t-s-parts02 {
  width: 21rem;
  position: absolute;
  top: 20%;
  left: 0;
  opacity: 0.6;
  z-index: 1;
}
.top-service .t-s-parts02 img {
  width: 100%;
}
.top-service .container {
  position: relative;
  z-index: 3;
}
.top-service .t-s-textarea {
  position: relative;
  margin: 8rem 0 6rem;
}
.top-service .t-s-textarea h4 {
  margin-bottom: 3rem;
  color: #fff;
  font-size: 3.4rem;
}
.top-service .t-s-textarea p {
  width: 80%;
  margin-left: auto;
  line-height: 2.6;
  color: #fff;
}
@media only screen and (max-width: 640px) {
  .top-service .t-s-textarea p {
    width: 100%;
    margin: 0 auto;
  }
}
.top-service .t-s-flowarea {
  width: 100vw;
  margin-right: calc(50% - 50vw);
  margin-bottom: 5rem;
  background: #fef5d8;
}
@media only screen and (max-width: 640px) {
  .top-service .t-s-flowarea {
    width: 100%;
    margin: 0 auto 5rem;
  }
}
.top-service .t-s-flowarea .container {
  margin: 0;
  padding: 4rem 0 4rem 16rem;
}
@media only screen and (max-width: 640px) {
  .top-service .t-s-flowarea .container {
    padding: 4rem 2rem;
  }
}
.top-service .t-s-flowarea h4 {
  margin-bottom: 3rem;
  font-size: 3rem;
  font-family: KozGoPr6N-Medium;
}
.top-service .t-s-flowarea p {
  margin-bottom: 3rem;
}
.top-service .t-s-flowarea .t-s-timearea li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}
@media only screen and (max-width: 640px) {
  .top-service .t-s-flowarea .t-s-timearea li {
    display: block;
    margin-bottom: 4rem;
  }
}
.top-service .t-s-flowarea .t-s-timearea li .t-s-time {
  width: 30%;
  padding: 3rem;
  border-left: 3px solid orange;
  text-align: center;
  font-family: KozGoPr6N-Medium;
}
@media only screen and (max-width: 640px) {
  .top-service .t-s-flowarea .t-s-timearea li .t-s-time {
    width: max-content;
    margin-bottom: 2rem;
  }
}
.top-service .t-s-flowarea .t-s-timearea li p {
  width: 70%;
  margin: 0;
  padding: 3rem;
  background: #fff;
  border-radius: 10px;
  text-align: left;
}
@media only screen and (max-width: 640px) {
  .top-service .t-s-flowarea .t-s-timearea li p {
    width: 100%;
  }
}


.top-number {
  position: relative;
  padding: 12rem 0 10rem;
  background: #343cb9;
}
.top-number .t-n-content {
  margin: 5rem 0 3rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-number .t-n-content li {
  width: 31%;
}
.top-number .t-n-content li img {
  width: 100%;
}
.top-number .link-btn {
  width: 22rem;
  margin: 0 auto;
}

.top-welfare {
  background: none;
  /*background: #6bce9f;
  background: url('../img/top/bg_welfare.jpg');
  background-attachment: fixed;
  background-repeat: repeat;
  background-size: cover;
  background-position: center;*/
}
.top-welfare .link-btn {
  margin: 8rem auto 0;
}

.top-voice {
  position: relative;
  padding: 12rem 0 10rem;
  background: #f0a727;
}
.top-voice .tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 7rem;
}
.top-voice .tabs .tab_label {
  position: relative;
  width: 18rem;
  margin: 0 1.6rem 4rem;
  padding: 1.4rem 0;
  border: solid 2px #fff;
  border-radius: 16rem;
  text-align: center;
  color: #fff;
  font-size: 1.8rem;
  font-family: KozGoPr6N-Medium;
  z-index: 1;
  cursor: pointer;
}
.top-voice .tabs .tab_label:hover {
  opacity: 0.75;
}
.top-voice .tabs .tab_content {
  position: relative;
  flex: 100%;
  display: none;
  overflow: hidden;
  animation: fadeIn 0.6s ease;
}
input[name="voice_switch"] {
  display: none;
}
.top-voice .tabs input:checked + .tab_label {
  color: #f0a727;
  background-color: #fff;
}
#voice01:checked ~ #voice01_content,
#voice02:checked ~ #voice02_content,
#voice03:checked ~ #voice03_content {
  display: block;
}
.top-voice .tabs .tab_content .voice-img {
  margin-bottom: 7rem;
	border-radius: 28rem;
  z-index: 4;
}
@media only screen and (max-width: 640px) {
  .top-voice .tabs .tab_content .voice-img {
    margin-bottom: 5rem;
  }
}
.top-voice .tabs .tab_content .voice-txtarea {
  position: absolute;
  top: 22%;
  right: 0;
  width: 50%;
  padding: 3rem 12rem 3rem 6rem;
  background-color: #fff;
  border-radius: 20px 0 0 20px;
  color: #f0a727;
  font-size: 3rem;
  font-family: KozGoPr6N-Medium;
  z-index: 5;
}
@media only screen and (max-width: 640px) {
  .top-voice .tabs .tab_content .voice-txtarea {
    position: relative;
    width: 100%;
    top: -3%;
  }
}
.top-voice .tabs .tab_content .voice-txtarea::before {
  content: '';
  display: block;
  position: absolute;
  top: 2rem;
  left: 2.4rem;
  height: 60%;
  border-left: 2px solid #000;
}
.top-voice .tabs .tab_content .voice-list li {
  margin-bottom: 5rem;
}
.top-voice .tabs .tab_content .voice-list li h4 {
  margin-bottom: 2rem;
  padding: 1rem 2rem;
  border-radius: 10px;
  background: #fff;
  color: #f0a727;
  font-weight: bold;
  font-size: 2.4rem;
  font-family: KozGoPr6N-Medium;
}
.top-voice .tabs .tab_content .voice-list li p {
  color: #fff;
}

.top-career {
  position: relative;
  padding: 12rem 0 10rem;
  background: #f6adbc;
}
.top-career .tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 7rem;
}
.top-career .tabs .car_label {
  position: relative;
  width: 18rem;
  margin: 0 1.6rem 4rem;
  padding: 1rem 0;
  border: solid 2px #fff;
  border-radius: 16rem;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  font-family: KozGoPr6N-Medium;
  z-index: 1;
  cursor: pointer;
}
@media only screen and (max-width: 640px) {
  .top-career .tabs .car_label {
    width: 18rem;
    font-size: 1.5rem;
  }
}
.top-career .tabs .car_label:hover {
  opacity: 0.75;
}
.top-career .tabs .tab_content {
  position: relative;
  flex: 100%;
  display: none;
  overflow: hidden;
  animation: fadeIn 0.6s ease;
}
input[name="car_switch"] {
  display: none;
}
.top-career .tabs input:checked + .car_label {
  color: #f6adbc;
  background-color: #fff;
}
#car01:checked ~ #car01_content,
#car02:checked ~ #car02_content,
#car03:checked ~ #car03_content,
#car04:checked ~ #car04_content,
#car05:checked ~ #car05_content {
  display: block;
}
.top-career .t-v-content {
  margin-top: 5rem;
}
.top-career .t-v-content li {
  margin-bottom: 3rem;
}
.top-career .t-v-content li h4 {
  position: relative;
  margin-bottom: 2rem;
  color: #fff;
  font-size: 3rem;
  font-family: KozGoPr6N-Medium;
}
.top-career .t-v-content li h4::after {
  content: '';
  width: 90%;
  position: absolute;
  top: 50%;
  right: 0;
  border: 1px solid #fff;
}
@media only screen and (max-width: 640px) {
  .top-career .t-v-content li h4::after {
    width: 85%;
  }
}
.top-career .t-v-content li .t-v-flex {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}
@media only screen and (max-width: 640px) {
  .top-career .t-v-content li .t-v-flex {
    display: block;
  }
}
.top-career .t-v-content li .t-v-flex h5 {
  width: 35%;
  color: #fff;
  font-size: 2.2rem;
  font-family: KozGoPr6N-Medium;
}
@media only screen and (max-width: 640px) {
  .top-career .t-v-content li .t-v-flex h5 {
    width: 100%;
    margin-bottom: 2rem;
    font-size: 2.5rem;
  }
}
.top-career .t-v-content li .t-v-flex p {
  width: 60%;
  color: #fff;
}
@media only screen and (max-width: 640px) {
  .top-career .t-v-content li .t-v-flex p {
    width: 100%;
  }
}

.top-require {
  position: relative;
  padding: 12rem 0 10rem;
  width: 100%;
  /*background: url('../img/top/bg_require.jpg');
  background-attachment: fixed;
  background-repeat: repeat;
  background-size: cover;
  background-position: center;*/
}
.top-require .tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 7rem;
}
.top-require .tabs .tab_label {
  position: relative;
  width: 18rem;
  margin: 0 1.6rem 4rem;
  padding: 1rem 0;
  border: solid 2px #fff;
  border-radius: 16rem;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  font-family: KozGoPr6N-Medium;
  z-index: 1;
  cursor: pointer;
}
.top-require .tabs .tab_label:hover {
  opacity: 0.75;
}
.top-require .tabs .tab_content {
  position: relative;
  flex: 100%;
  display: none;
  overflow: hidden;
  animation: fadeIn 0.6s ease;
}
input[name="tab_switch"] {
  display: none;
}
.top-require .tabs input:checked + .tab_label {
  color: #fff;
  background-color: #f0a727;
}
#tab01:checked ~ #tab01_content,
#tab02:checked ~ #tab02_content,
#tab03:checked ~ #tab03_content {
  display: block;
}
.top-require .tabs .tab_content .tab_content_list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 1rem;
  padding: 1rem 0 1.6rem;
  border-bottom: 1px solid #fff;
}
.top-require .tabs .tab_content .tab_content_list li h5 {
  width: 30%;
  color: #fff;
  font-size: 1.6rem;
  font-family: KozGoPr6N-Medium;
}
.top-require .tabs .tab_content .tab_content_list li p {
  width: 70%;
  color: #fff;
  font-size: 1.5rem;
}

.top-entry {
  position: relative;
  padding: 12rem 0 10rem;
  background: #f0a727;
}
.top-entry .top-entry-content {
  margin-top: 6rem;
}

/*数字で見ると福利厚生*/
.pageindex {
  position: relative;
  z-index: 2;
  padding: 0;
  width: 100%;
  height: 60rem;
  z-index: 4;
  display: flex;
  background-image: url('../img/number/mainvisual.jpg');
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.pageindex .pageindex-title {
  position: absolute;
  top: 35%;
  left: 15%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  text-align: center;
  color: #FFFFFF;
}
.pageindex .pageindex-title .pageindex-title-content .lead {
  font-size: 4.6rem;
  font-family: AvenirNext-Bold;
  line-height: 1.3;
  position: relative;
  z-index: 2;
  color: #fff;
  font-weight: bold;
  text-align: center;
}
.pageindex .pageindex-title .pageindex-title-content .sub {
  font-family: KozGoPr6N-Medium;
  font-size: 1.8rem;
  margin-top: 0.5rem;
  color: #fff;
  position: relative;
  z-index: 99;
  text-align: left;
}
.pageindex .pageindex-submenu {
    width: 70rem;
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6rem;
}
@media only screen and (max-width: 640px) {
  .pageindex .pageindex-submenu {
    width: 45rem;
    flex-wrap: wrap;
    margin-bottom: 4rem;
  }
}
.pageindex .pageindex-submenu li {
  width: 20rem;
  border-bottom: 1px solid #fff;
}
@media only screen and (max-width: 640px) {
  .pageindex .pageindex-submenu li {
    margin-bottom: 2rem;
  }
}
.pageindex .pageindex-submenu li a {
  display: flex;
  justify-content: space-around;
  align-items: center;
  padding-bottom: 1rem;
  color: #fff;
  font-size: 1.8rem;
  font-family: KozGoPr6N-Medium;
}
.pageindex .pageindex-submenu li a span {
  display: block;
}
.pageindex .mainvisual-parts {
  width: 44rem;
  position: absolute;
  top: 0;
  right: 0;
  z-index: -1;
}
.pageindex .mainvisual-parts img {
  width: 100%;
}

.p-number {
  position: relative;
  padding: 8rem 0 10rem;
  width: 100%;
  background: rgba(0, 0, 0, 0.8);
}
.p-number .p-n-content {
  margin-bottom: 3rem;
}
.p-number .p-n-textarea {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 7rem;
}
@media only screen and (max-width: 640px) {
  .p-number .p-n-textarea {
    margin-bottom: 3rem;
  }
}
.p-number .p-n-textarea h4 {
  width: 25%;
  margin: 0;
  margin-bottom: 4rem;
  text-align: center;
  color: #fff;
  font-size: 5.4rem;
}
.p-number .p-n-textarea h4 span {
  display: block;
  color: #fff;
  font-size: 1.8rem;
  font-family: KozGoPr6N-Bold;
}
.p-number .p-n-textarea h4 span img {
  width: 100%;
  display: block;
}
.p-number .p-n-textarea p {
  width: 70%;
  color: #fff;
}
.p-number .p-n-list,
.top-number .t-n-content {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-wrap: wrap;
}
@media only screen and (max-width: 640px) {
  .top-number .t-n-content {
    display: block;
  }
}
.p-number .p-n-list li,
.top-number .t-n-content li {
  width: 31.5%;
  margin-right: 2rem;
  margin-bottom: 3rem;
}
.top-number .t-n-content li {
  width: 30.5%;
}
@media only screen and (max-width: 640px) {
  .p-number .p-n-list li {
    width: 48%;
    margin-right: 1rem;
    margin-bottom: 1rem;
  }
  .top-number .t-n-content li {
    width: 100%;
    margin-right: 0rem;
  }
}
.p-number .p-n-list li h5,
.top-number .t-n-content li h5 {
  padding: 2rem 0;
  border-radius: 3rem 3rem 0 0;
  background: #f0a727;
  color: #fff;
  text-align: center;
  letter-spacing: 5px;
  font-size: 2rem;
  font-weight: bold;
  font-family: KozGoPr6N-Medium;
}
@media only screen and (max-width: 640px) {
  .top-number .t-n-content li h5 {
    padding: 3rem 0;
  }
  .p-number .p-n-list li h5 {
    padding: 1.5rem 0;
    font-size: 1.6rem;
  }
}
.p-number .p-n-list li h5.two-colum {
  padding: 0.6rem 0;
}
.p-number .p-n-list li .counter-box,
.top-number .t-n-content li .counter-box {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 33rem;
  padding: 2rem;
  border-radius: 0 0 3rem 3rem;
  background: #fff;
}
@media only screen and (max-width: 640px) {
  .p-number .p-n-list li .counter-box,
  .top-number .t-n-content li .counter-box {
    height: 42rem;
  }
}
.p-number .p-n-list li .counter-box .counter,
.p-number .p-n-list li .counter-box .answer,
.top-number .t-n-content li .counter-box .counter {
  color: #f0a727;
  text-align: center;
  line-height: 1.2;
  font-size: 4.8rem;
  font-family: noto-bold;
}
.p-number .p-n-list li .counter-box .counter .number,
.top-number .t-n-content li .counter-box .counter .number {
  line-height: 1;
  font-size: 10rem;
}
@media only screen and (max-width: 640px) {
  .p-number .p-n-list li .counter-box .counter .number {
  font-size: 8rem;
}
}
.p-number .p-n-list li .counter-box .answer .number {
  line-height: 1;
  font-size: 8rem;
}
@media only screen and (max-width: 640px) {
  .p-number .p-n-list li .counter-box .answer .number {
    font-size: 6rem;
  }
}
.p-number .p-n-list li .counter-box p,
.top-number .t-n-content li .counter-box p {
  margin-top: 1rem;
  color: #f0a727;
  text-align: center;
  line-height: 1.4;
  letter-spacing: 3px;
  font-weight: bold;
  font-size: 1.4rem;
}
@media only screen and (max-width: 640px) {
  .p-number .p-n-list li .counter-box p,
  .top-number .t-n-content li .counter-box p {
    margin-top: 2rem;
    font-size: 2rem;
  }
}
.p-number .p-n-list li .counter-box figure,
.top-number .t-n-content li .counter-box figure {
  width: 12rem;
  margin: 1.4rem auto 0;
}
.p-number .p-n-list li .counter-box figure.car {
  width: 18rem;
  margin: 4rem auto 0;
}
.p-number .p-n-list li .counter-box figure.item07 {
  width: 9rem;
}
.p-number .p-n-list li .counter-box figure.item09 {
  width: 5rem;
}
@media only screen and (max-width: 640px) {
  .p-number .p-n-list li .counter-box figure {
    width: 12rem;
    margin: 2rem auto 0;
  }
  .top-number .t-n-content li .counter-box figure {
    width: 14rem;
    margin: 2.8rem auto 0;
  }
}
.p-number .p-n-list li .counter-box figure img,
.top-number .t-n-content li .counter-box figure img {
  width: 100%;
  height: auto;
}
.p-number .p-n-list li .counter-box .counter-flex,
.top-number .t-n-content li .counter-box .counter-flex {
  display: flex;
  justify-content: space-between;
}
.p-number .p-n-list li .counter-box .counter-flex .counter,
.top-number .t-n-content li .counter-box .counter-flex .counter {
  width: 48%;
  font-size: 2.6rem;
}
.p-number .p-n-list li .counter-box .counter-flex .counter h6,
.top-number .t-n-content li .counter-box .counter-flex .counter h6 {
  margin-bottom: 1.4rem;
  padding: 0.6rem 0;
  background: #f0a727;
  color: #fff;
  border-radius: 30px;
  text-align: center;
  font-size: 1.6rem;
}
@media only screen and (max-width: 640px) {
  .p-number .p-n-list li .counter-box .counter-flex .counter h6 {
    font-size: 1.2rem;
  }
}
.p-number .p-n-list li .counter-box .counter-flex .counter .number,
.top-number .t-n-content li .counter-box .counter-flex .counter .number {
  font-size: 6rem;
}
.p-number .p-n-list li img {
  width: 100%;
}
.p-number .p-n-list li.half {
  width: 48%;
}
@media only screen and (max-width: 640px) {
  .p-number .p-n-list li.half {
    width: 100%;
  }
}
.p-number .p-n-list li:nth-child(3),
.p-number .p-n-list li:nth-child(6) {
  margin-right: 0;
}
@media only screen and (max-width: 640px) {
  .p-number .p-n-list li:nth-child(3),
  .p-number .p-n-list li:nth-child(6) {
    margin-right: 1rem;
  }
}

.p-faq {
  position: relative;
  padding: 12rem 0 10rem;
  width: 100%;
  background: url('../img/top/bg_require.jpg');
  background-attachment: fixed;
  background-repeat: repeat;
  background-size: cover;
  background-position: center;
}
.p-faq .tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 7rem;
}
.p-faq .tabs .tab_label {
  position: relative;
  width: 18rem;
  margin: 0 1.6rem 4rem;
  padding: 1rem 0;
  border: solid 2px #fff;
  border-radius: 16rem;
  text-align: center;
  color: #fff;
  font-size: 1.6rem;
  font-family: KozGoPr6N-Medium;
  z-index: 1;
  cursor: pointer;
}
.p-faq .tabs .tab_label:hover {
  opacity: 0.75;
}
.p-faq .tabs .tab_content {
  position: relative;
  flex: 100%;
  display: none;
  overflow: hidden;
  animation: fadeIn 0.6s ease;
}
input[name="tab_switch"] {
  display: none;
}
.p-faq .tabs input:checked + .tab_label {
  color: #fff;
  background-color: #f0a727;
}
#tab04:checked ~ #tab04_content,
#tab05:checked ~ #tab05_content,
#tab06:checked ~ #tab06_content {
  display: block;
}

.p-faq .tabs .tab_content .accordion {
  width: 100%;
}
.p-faq .tabs .tab_content .accordion .accordion-hidden {
  display: none;
}
.p-faq .tabs .tab_content .accordion .accordion-open {
  display: flex;
  align-items: center;
  margin-bottom: 1.4rem;
  padding: 3rem;
  cursor: pointer;
  position: relative;
  min-height: 7.5rem;
  border-radius: 20px;
  background-color: #f0a727;
  color: #fff;
  font-family: KozGoPr6N-Medium;
}
/* ＋アイコン */
.p-faq .tabs .tab_content .accordion .accordion-open::before,
.p-faq .tabs .tab_content .accordion .accordion-open::after {
  content: '';
  width: 20px;
  height: 2px;
  background: #fff;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}
/* アイコンのー */
.p-faq .tabs .tab_content .accordion .accordion-hidden .accordion-open::after {
  transform: translateY(-50%) rotate(90deg);
  transition: .5s;
}
/* アコーディオンが開いたらーに */
.accordion-hidden:checked+.accordion-open:after {
  transform: translateY(-50%) rotate(0);
}

/* アコーディオン中身部分 */
.p-faq .tabs .tab_content .accordion .accordion-inner {
  display: block;
  height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  transition: 0.5s;
  /* 表示速度の設定 */
  cursor: pointer;
  color: #fff;
  z-index: 5;
  font-family: KozGoPr6N-Medium;
}

/* チェックボックスにチェックが入ったら中身部分を表示する */
.accordion-hidden:checked+.accordion-open+.accordion-inner {
  height: auto;
  opacity: 1;
  padding: 10px;
}

.accordion_qa .accordion-hidden:checked+.accordion-open+.accordion-inner {
  height: auto;
  opacity: 1;
  margin-top: -4rem;
  margin-bottom: 1.4rem;
  padding: 3rem;
  border-radius: 0 0 20px 20px;
  background-color: #f0a727;
}