@charset "UTF-8";
/* 文字コードの指定 */
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "M PLUS 1p", sans-serif;
  font-size: 1.6rem;
  font-weight: 800;
  background-color: #f8f5ed;
  color: #333;
}

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

img {
  max-width: 100%;
  vertical-align: bottom;
}

ul {
  list-style: none;
}

h1 {
  margin: 0;
  line-height: 1;
}

h2,
h3,
h4,
p {
  transform: rotate(0.05deg);
}

.wrapper {
  width: 1024px;
  margin: 0 auto;
  padding: 0 2%;
}
@media screen and (max-width: 768px) {
  .wrapper {
    width: min(88.8888888889vw, 400px) !important;
    margin: 0 auto;
    padding: 0 2%;
  }
}

.wrapper_pc {
  width: 1024px;
  margin: 0 auto;
  padding: 0 2%;
}

@media screen and (max-width: 520px) {
  .wrapper_pc {
    width: 320px;
    margin: 0 auto;
    padding: 0;
  }
}
@media screen and (max-width: 520px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.pcbr {
  display: block;
}

.pcspan {
  display: inline-block;
}

.spbr {
  display: none;
}

@media screen and (max-width: 768px) {
  .pcbr {
    display: none;
  }
  .spbr {
    display: block;
  }
  .pcspan {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  body {
    width: 100vw;
    overflow-x: hidden;
  }
}
main {
  width: 100%;
  overflow-x: hidden;
}

.fa-phone {
  color: #FF8F8F;
  margin-right: 4px;
}

.fa-fax {
  margin-right: 4px;
}

.fa-envelope {
  margin-right: 4px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  height: 80px;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header {
    height: 60px;
  }
}
.header .header_fixed {
  position: absolute;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 2.6041666667vw;
}
@media screen and (max-width: 768px) {
  .header .header_fixed {
    padding: 0 14px;
  }
}
.header .header_logo {
  display: flex;
  align-items: center;
}
.header .header_logo a {
  width: 70px;
  min-width: 44px;
}
@media screen and (max-width: 768px) {
  .header .header_logo a {
    width: 44px;
  }
}
.header .header_logo span {
  font-size: 24px;
  letter-spacing: 0.05em;
  line-height: 1.2;
  margin-left: 32px;
}
@media screen and (max-width: 768px) {
  .header .header_logo span {
    font-size: 15px;
    margin-left: 12px;
  }
}

.header_menu-btn {
  position: fixed;
  right: 2.6041666667vw;
  width: 50px;
  top: 40px;
  z-index: 999;
  height: 25px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .header_menu-btn {
    width: 35px;
    top: 29px;
    height: 20px;
  }
}
.header_menu-btn div {
  position: relative;
  height: 5px;
  width: 50px;
  left: 0;
  background-color: #333333;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header_menu-btn div {
    height: 5px;
    width: 35px;
  }
}
.header_menu-btn div::after {
  content: "";
  position: absolute;
  top: -18px;
  height: 5px;
  left: 0;
  width: 50px;
  background-color: #333333;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header_menu-btn div::after {
    top: -14px;
    height: 5px;
    width: 35px;
  }
}
.header_menu-btn div::before {
  content: "";
  position: absolute;
  bottom: -18px;
  height: 5px;
  left: 0;
  width: 50px;
  background-color: #333333;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .header_menu-btn div::before {
    bottom: -14px;
    height: 5px;
    width: 35px;
  }
}
.header_menu-btn.open div {
  position: relative;
  height: 5px;
  width: 0px;
  left: 25px;
  background-color: #333333;
}
@media screen and (max-width: 768px) {
  .header_menu-btn.open div {
    height: 5px;
    width: 0px;
    left: 17.5px;
  }
}
.header_menu-btn.open div::after {
  content: "";
  top: 0px;
  height: 5px;
  width: 50px;
  left: -25px;
  transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  .header_menu-btn.open div::after {
    top: 0px;
    left: -17.5px;
    height: 5px;
    width: 35px;
  }
}
.header_menu-btn.open div::before {
  content: "";
  bottom: 0px;
  height: 5px;
  width: 50px;
  left: -25px;
  transform: rotate(-45deg);
}
@media screen and (max-width: 768px) {
  .header_menu-btn.open div::before {
    bottom: 0px;
    left: -17.5px;
    height: 5px;
    width: 35px;
  }
}

.header_container {
  position: fixed;
  top: 0;
  right: 2.6041666667vw;
  flex: 1;
  gap: 16px;
  height: 80px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .header_container {
    position: absolute;
    right: auto;
    width: 100%;
    height: 68px;
    margin: 0 auto;
    margin-top: 5px;
    justify-content: flex-end;
    align-items: flex-start;
    padding-left: 14px;
    padding-right: 8px;
    gap: 0;
    z-index: 99;
  }
}
.header_container .header_mhlw {
  height: 80%;
}
.header_container .header_mhlw--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .header_container .header_mhlw--sp {
    display: block;
  }
  .header_container .header_mhlw--pc {
    display: none;
  }
}
.header_container .header_mhlw img {
  height: 100%;
  width: auto;
}
@media screen and (max-width: 1300px) {
  .header_container .header_mhlw--pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .header_container .header_mhlw {
    width: min(38.8888888889vw, 175px);
    height: auto;
    margin-top: min(5.5555555556vw, 25px);
    display: none;
  }
  .header_container .header_mhlw img {
    width: 100%;
  }
}
.header_container .header_p3--sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .header_container .header_p3--sp {
    display: block;
  }
  .header_container .header_p3--pc {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .header_container .header_p3--pc {
    display: none;
  }
}
@media screen and (max-width: 900px) {
  .header_container .header_p3--sp {
    display: block;
    width: min(50vw, 225px);
    margin-top: min(2.7777777778vw, 12.5px);
  }
  .header_container .header_p3--sp img {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .header_container .header_p3--sp {
    margin-top: 0;
    width: min(41.3888888889vw, 186.25px);
  }
}
.header_container .header_p3 .header_p3--pc {
  width: 581px;
}
.header_container .header_p3 .header_trans_color {
  transition: all 0.3s ease;
}

.subpage .header_container .header_p3 {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .subpage .header_container .header_p3--sp {
    margin-top: min(21.6666666667vw, 97.5px);
    margin-left: auto;
    margin-right: auto;
    width: min(74.4444444444vw, 335px);
  }
}

.work {
  text-align: center;
  position: relative;
  padding-top: 210px;
  margin-bottom: 570px;
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .work {
    margin-bottom: 890px;
  }
}
@media screen and (max-width: 768px) {
  .work {
    padding-top: min(41.6666666667vw, 187.5px);
    margin-bottom: min(180.5555555556vw, 812.5px);
  }
}
@media screen and (max-width: 768px) {
  .work .fukidashi {
    width: min(83.3333333333vw, 375px);
    height: min(41.6666666667vw, 187.5px);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    padding-bottom: min(6.9444444444vw, 31.25px);
    margin: 0 auto;
  }
  .work .fukidashi img {
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .work .fukidashi .works-pop-ttl {
    position: relative;
    top: auto;
    left: auto;
    font-size: min(6.1111111111vw, 27.5px);
  }
  .work .fukidashi .works-pop-ttl .lower {
    font-size: min(7.7777777778vw, 35px);
  }
  .work .fukidashi .works-pop-ttl span {
    font-size: min(6.1111111111vw, 27.5px);
  }
}

.work_deco {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
  position: relative;
}
@media screen and (max-width: 768px) {
  .work_deco {
    width: 100%;
  }
}
.work_deco img {
  width: 356px;
  position: absolute;
  top: -160px;
  left: 40px;
}
@media screen and (max-width: 768px) {
  .work_deco img {
    width: min(50.8333333333vw, 228.75px);
    top: max(-23.6111111111vw, -106.25px);
    left: min(2.7777777778vw, 12.5px);
  }
}
.work_deco p {
  position: absolute;
  top: -110px;
  left: 97px;
  font-size: 2.9rem;
  font-weight: bold;
  transform: rotate(-15deg);
}
@media screen and (max-width: 768px) {
  .work_deco p {
    top: max(-17.7777777778vw, -80px);
    left: min(11.1111111111vw, 50px);
    font-size: min(3.8888888889vw, 17.5px);
  }
}

.work_wrapper {
  position: relative;
  width: 100vw;
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 28px;
}
@media screen and (max-width: 768px) {
  .work_wrapper {
    margin-top: max(-13.8888888889vw, -62.5px);
  }
}

.work_container {
  display: flex;
  justify-content: space-between;
  padding-top: 215px;
  position: absolute;
  top: -100px;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
  z-index: 10;
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .work_container {
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
    padding-right: 50px;
    padding-left: 50px;
  }
}
@media screen and (max-width: 768px) {
  .work_container {
    gap: 0;
    justify-content: space-between;
    flex-wrap: nowrap;
    padding-right: min(0vw, 0px);
    padding-left: min(0vw, 0px);
    padding-top: min(8.3333333333vw, 37.5px);
    top: 0;
    flex-direction: column;
    overflow-x: hidden;
    align-items: center;
  }
  .work_container .fadeUp04 {
    margin-right: min(44.4444444444vw, 200px);
  }
  .work_container .fadeUp05 {
    margin-top: max(-22.7777777778vw, -102.5px);
    margin-left: min(44.4444444444vw, 200px);
  }
  .work_container .fadeUp06 {
    margin-top: max(-22.7777777778vw, -102.5px);
    margin-right: min(44.4444444444vw, 200px);
  }
}
.work_container .work_box {
  width: 300px;
  height: 300px;
  padding: 10px;
  border: 3px solid #333333;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 5px 5px 10px -5px #333333, 3px 3px 5px #777;
}
@media screen and (max-width: 768px) {
  .work_container .work_box {
    width: min(62.2222222222vw, 280px);
    height: min(62.2222222222vw, 280px);
    padding: min(2.7777777778vw, 12.5px);
    border: min(1.3888888889vw, 6.25px) solid #333333;
    border-radius: 50%;
    box-shadow: min(1.3888888889vw, 6.25px) min(1.3888888889vw, 6.25px) min(2.7777777778vw, 12.5px) max(-1.3888888889vw, -6.25px) #333333, min(0.8333333333vw, 3.75px) min(0.8333333333vw, 3.75px) min(1.3888888889vw, 6.25px) #777;
  }
}
.work_container .work_box img {
  width: 90px;
  height: 90px;
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .work_container .work_box img {
    width: min(12.5vw, 56.25px);
    height: min(12.5vw, 56.25px);
    margin-bottom: min(1.1111111111vw, 5px);
  }
}
.work_container .work_box h3 {
  font-size: 2.4rem;
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .work_container .work_box h3 {
    font-size: min(4.4444444444vw, 20px);
    margin-bottom: min(1.1111111111vw, 5px);
  }
}
.work_container .work_box hr {
  border-bottom: 8px solid #000000;
  width: 56px;
  margin: 0 auto 10px auto;
}
@media screen and (max-width: 768px) {
  .work_container .work_box hr {
    border-bottom: min(1.1111111111vw, 5px) solid #000000;
    width: min(9.1666666667vw, 41.25px);
    margin: 0 auto min(2.7777777778vw, 12.5px) auto;
  }
}
.work_container .work_box p {
  font-size: 1.2rem;
  transform: rotate(0.05deg);
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .work_container .work_box p {
    font-size: min(2.7777777778vw, 12.5px);
    letter-spacing: -0.1em;
    font-weight: normal;
  }
}

.work_container-back {
  z-index: -1;
  position: absolute;
  top: 0;
  left: 0;
  overflow: hidden;
  width: 100vw;
  height: 480px;
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .work_container-back {
    height: 820px;
  }
}
.work_container-back img {
  height: 100%;
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.work_container-back .sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .work_container-back {
    height: min(155.5555555556vw, 700px);
    width: 100%;
  }
  .work_container-back .sp {
    display: block;
  }
  .work_container-back .pc {
    display: none;
  }
}

.middle_text {
  margin-top: 450px;
  margin-bottom: 100px;
  text-align: center;
}
.middle_text p {
  font-size: 1.8rem;
  transform: rotate(0.05deg);
}

@media screen and (max-width: 520px) {
  .middle_text {
    display: none;
  }
}
.contact_list {
  width: 100%;
  height: auto;
  padding-top: 61px;
  padding-bottom: 61px;
  background-color: #fff;
}
@media screen and (max-width: 768px) {
  .contact_list {
    margin-top: min(16.6666666667vw, 75px);
    padding-top: min(16.6666666667vw, 75px);
    padding-bottom: min(16.9444444444vw, 76.25px);
  }
}

.contact_list-container {
  display: flex;
  justify-content: space-between;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .contact_list-container {
    padding: 0 50px;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px;
  }
}
@media screen and (max-width: 768px) {
  .contact_list-container {
    padding: 0 14px;
    flex-direction: column;
    align-items: center;
    gap: min(8.3333333333vw, 37.5px);
  }
}

.contact_list-outer-01 {
  width: 100%;
  max-width: 294px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .contact_list-outer-01 {
    max-width: none;
    width: min(77.7777777778vw, 350px);
  }
}
.contact_list-outer-01 img {
  width: 76px;
  height: 76px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .contact_list-outer-01 img {
    width: min(21.1111111111vw, 95px);
    height: min(21.1111111111vw, 95px);
    margin-bottom: min(5.5555555556vw, 25px);
  }
}
.contact_list-outer-01 h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .contact_list-outer-01 h3 {
    font-size: min(4.4444444444vw, 20px);
    margin-bottom: min(5.5555555556vw, 25px);
  }
}
.contact_list-outer-01 .contact_list-tel {
  color: #FF8F8F;
  white-space: nowrap;
}
.contact_list-outer-01 .contact_list-tel .rub {
  display: flex;
  justify-content: space-around;
  font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
  .contact_list-outer-01 .contact_list-tel .rub {
    font-size: min(3.8888888889vw, 17.5px);
  }
}
.contact_list-outer-01 .contact_list-tel .rub p {
  color: #FF8F8F;
}
.contact_list-outer-01 .contact_list-tel .num {
  font-family: "Montserrat";
  font-size: 3.7rem;
  font-weight: 800;
  margin-bottom: 20px;
  color: #FF8F8F;
}
@media screen and (max-width: 768px) {
  .contact_list-outer-01 .contact_list-tel .num {
    font-size: min(10vw, 45px);
    letter-spacing: 0.08em;
    margin-bottom: min(5.5555555556vw, 25px);
  }
}
.contact_list-outer-01 .contact_list-tel a:hover {
  opacity: 0.7;
}
.contact_list-outer-01 .contact_list-inner {
  width: 240px;
  height: 120px;
  margin: 0 auto 20px;
  padding: 11px 18px;
  background-color: #FF8F8F;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .contact_list-outer-01 .contact_list-inner {
    width: min(77.7777777778vw, 350px);
    height: min(41.6666666667vw, 187.5px);
    padding: min(3.3333333333vw, 15px) min(5vw, 22.5px);
    border-radius: min(2.7777777778vw, 12.5px);
  }
}
.contact_list-outer-01 .contact_list-inner .contact_list-img {
  color: #fff;
  justify-content: center;
  display: flex;
  align-items: flex-start;
}
.contact_list-outer-01 .contact_list-inner .contact_list-img img {
  width: auto;
  height: 19px;
  margin-right: 5px;
}
@media screen and (max-width: 768px) {
  .contact_list-outer-01 .contact_list-inner .contact_list-img img {
    height: min(5.5555555556vw, 25px);
    margin-right: min(1.1111111111vw, 5px);
  }
}
.contact_list-outer-01 .contact_list-inner .contact_list-img p {
  font-size: 14px;
  font-weight: 800;
  margin-bottom: 4px;
}
.contact_list-outer-01 .contact_list-inner .contact_list-img p i {
  margin-right: 3px;
}
@media screen and (max-width: 768px) {
  .contact_list-outer-01 .contact_list-inner .contact_list-img p {
    font-size: min(3.8888888889vw, 17.5px);
    line-height: min(5.5555555556vw, 25px);
    margin-bottom: min(5.5555555556vw, 25px);
  }
  .contact_list-outer-01 .contact_list-inner .contact_list-img p i {
    margin-right: min(1.6666666667vw, 7.5px);
  }
}
.contact_list-outer-01 .contact_list-inner .contact_list-table {
  width: 166px;
  height: 47px;
  background-color: #fff;
  margin: 0 auto;
  padding: 6px 16px;
  text-align: left;
  color: #FF8F8F;
}
@media screen and (max-width: 768px) {
  .contact_list-outer-01 .contact_list-inner .contact_list-table {
    width: min(69.4444444444vw, 312.5px);
    height: min(16.6666666667vw, 75px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
}
.contact_list-outer-01 .contact_list-inner .contact_list-table dl {
  width: 100%;
  display: flex;
  font-size: 1.2rem;
  font-weight: 800;
}
@media screen and (max-width: 768px) {
  .contact_list-outer-01 .contact_list-inner .contact_list-table dl {
    font-size: min(3.8888888889vw, 17.5px);
  }
}
.contact_list-outer-01 .contact_list-inner .contact_list-table dl dt {
  width: 40%;
}

.contact_list-outer-02 {
  width: 100%;
  max-width: 294px;
  height: auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .contact_list-outer-02 {
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.contact_list-outer-02 .contact_list-icon {
  width: 76px;
  height: 76px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .contact_list-outer-02 .contact_list-icon {
    width: min(21.1111111111vw, 95px);
    height: min(21.1111111111vw, 95px);
    margin-bottom: min(5.5555555556vw, 25px);
  }
}
.contact_list-outer-02 h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .contact_list-outer-02 h3 {
    font-size: min(4.4444444444vw, 20px);
    margin-bottom: min(5.5555555556vw, 25px);
  }
}
.contact_list-outer-02 .contact_list-txt {
  font-size: 1.4rem;
  margin-bottom: 30px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .contact_list-outer-02 .contact_list-txt {
    font-size: min(3.8888888889vw, 17.5px);
  }
}
.contact_list-outer-02 .btn-contact-y {
  display: block;
  padding: 16px;
  text-align: left;
  width: 300px;
  height: 140px;
}
@media screen and (max-width: 768px) {
  .contact_list-outer-02 .btn-contact-y {
    padding: min(4.4444444444vw, 20px);
    width: min(83.3333333333vw, 375px);
    height: min(38.8888888889vw, 175px);
  }
}
.contact_list-outer-02 .btn-contact-y__txt01 {
  font-size: 22px;
  line-height: 30px;
  margin-bottom: 4px;
}
@media screen and (max-width: 768px) {
  .contact_list-outer-02 .btn-contact-y__txt01 {
    font-size: min(6.1111111111vw, 27.5px);
    line-height: min(8.3333333333vw, 37.5px);
    margin-bottom: min(1.1111111111vw, 5px);
  }
}
.contact_list-outer-02 .btn-contact-y__txt02 {
  font-size: 12px;
  line-height: 21px;
  width: 214px;
  height: 32px;
  padding: 0 16px;
}
@media screen and (max-width: 768px) {
  .contact_list-outer-02 .btn-contact-y__txt02 {
    font-size: min(3.3333333333vw, 15px);
    line-height: min(5.8333333333vw, 26.25px);
    width: min(59.4444444444vw, 267.5px);
    height: min(8.8888888889vw, 40px);
    padding: 0 min(4.4444444444vw, 20px);
  }
}
.contact_list-outer-02 .btn-contact-y__txt02 svg {
  width: 16.5px;
}
@media screen and (max-width: 768px) {
  .contact_list-outer-02 .btn-contact-y__txt02 svg {
    width: min(4.5833333333vw, 20.625px);
  }
}
.contact_list-outer-02 .btn-contact-y img {
  width: 92px;
  height: 105px;
  top: 16px;
  right: 16px;
}
@media screen and (max-width: 768px) {
  .contact_list-outer-02 .btn-contact-y img {
    width: min(25.5555555556vw, 115px);
    height: min(29.1666666667vw, 131.25px);
    top: min(4.4444444444vw, 20px);
    right: min(4.4444444444vw, 20px);
  }
}

.contact_list-btn-02 {
  display: block;
  width: 240px;
  height: 90px;
  border: 2px solid #333333;
  border-radius: 8px;
  background-image: url(../image/back/sk_grain_backimage.png);
  background-size: 240px 90px;
  background-repeat: no-repeat;
  background-position: center center;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto;
  box-shadow: 10px 10px 5px -5px #d3d3d3;
}
.contact_list-btn-02 .contact_list-btn-02-box .list-btn-title {
  font-size: 2.4rem;
  color: #FF8F8F;
  margin-bottom: 6px;
}
.contact_list-btn-02 .contact_list-btn-02-box .list-btn-title-right {
  font-size: 1.6rem;
  color: #FF8F8F;
  margin-bottom: 6px;
}
.contact_list-btn-02 .contact_list-btn-02-box p {
  font-size: 1.2rem;
}
.contact_list-btn-02 img {
  width: auto;
  height: 67px;
}

.contact_list-outer-03 {
  width: 100%;
  max-width: 294px;
  height: auto;
  text-align: center;
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .contact_list-outer-03 {
    max-width: none;
  }
}
@media screen and (max-width: 768px) {
  .contact_list-outer-03 {
    width: 100%;
    max-width: none;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.contact_list-outer-03 .contact_list-icon {
  width: 287px;
  height: 153px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .contact_list-outer-03 .contact_list-icon {
    width: min(79.7222222222vw, 358.75px);
    height: min(42.5vw, 191.25px);
  }
}
.contact_list-outer-03 h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .contact_list-outer-03 h3 {
    font-size: min(4.4444444444vw, 20px);
    margin-bottom: min(5.5555555556vw, 25px);
  }
}
.contact_list-outer-03 .contact_list-txt {
  font-size: 1.4rem;
  margin-bottom: 30px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .contact_list-outer-03 .contact_list-txt {
    font-size: min(3.8888888889vw, 17.5px);
    margin-bottom: min(8.3333333333vw, 37.5px);
  }
}
.contact_list-outer-03 a {
  margin: 0 auto;
  display: inline-block;
  width: 240px;
  height: 50px;
  line-height: 50px;
  padding: 0 16px;
  font-size: 18px;
  color: #fff;
  background-color: #FF8F8F;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.contact_list-outer-03 a svg {
  width: 16.5px;
}
@media screen and (max-width: 768px) {
  .contact_list-outer-03 a {
    width: min(66.6666666667vw, 300px);
    height: min(13.8888888889vw, 62.5px);
    line-height: min(13.8888888889vw, 62.5px);
    padding: 0 min(4.4444444444vw, 20px);
    font-size: min(5vw, 22.5px);
    border-radius: min(27.5vw, 123.75px);
  }
  .contact_list-outer-03 a svg {
    width: min(4.5833333333vw, 20.625px);
  }
}

.contact_list-line {
  width: 1px;
  height: 217px;
  background-color: #dddddd;
  margin-top: 56px;
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .contact_list-line.last {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  .contact_list-line {
    width: 80%;
    height: min(0.2777777778vw, 1.25px);
    margin: 0;
  }
  .contact_list-line.last {
    display: block;
  }
}

#pagetop {
  display: block;
  width: 54px;
  height: 27px;
  background-color: #FF8F8F;
  text-align: center;
  border-top-left-radius: 27px;
  border-top-right-radius: 27px;
  margin: 78px auto 0 auto;
}
#pagetop img {
  padding-bottom: 4px;
}

@media screen and (max-width: 520px) {
  #pagetop {
    margin: 50px auto 0 auto;
  }
}
.footer {
  width: 100%;
  height: auto;
  background-color: #FCE8E9;
  position: relative;
  overflow: hidden;
}

.footer_container {
  width: 100%;
  padding: 100px 5.2083333333vw 100px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .footer_container {
    padding: 80px min(7.7777777778vw, 35px) 80px;
  }
}
.footer_container .footer_back {
  position: absolute;
  top: 0;
  left: 0;
  background-image: url(/wp-content/themes/jobs2/image/dot.png);
  background-size: 40px 40px;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 1000%;
  height: 1000%;
  z-index: 0;
}
.footer_container__inner {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer_container__inner {
    flex-direction: column-reverse;
  }
}
.footer_container .footer_address {
  display: flex;
  justify-content: flex-start;
  margin-right: 14px;
}
@media screen and (max-width: 768px) {
  .footer_container .footer_address {
    flex-direction: column-reverse;
  }
}
.footer_container .footer_address .footer_logo {
  width: 153px;
  margin-right: 40px;
}
@media screen and (max-width: 768px) {
  .footer_container .footer_address .footer_logo.spbr {
    width: 100%;
    margin-right: 0;
    margin-bottom: 40px;
    display: flex;
    gap: 12px;
  }
}
.footer_container .footer_address .footer_logo img {
  width: 153px;
  height: 139px;
}
@media screen and (max-width: 768px) {
  .footer_container .footer_address .footer_logo img {
    width: min(16.6666666667vw, 75px);
    height: min(14.7222222222vw, 66.25px);
  }
}
.footer_container .footer_address .footer_logo p {
  display: none;
}
@media screen and (max-width: 768px) {
  .footer_container .footer_address .footer_logo p {
    display: block;
    font-size: 20px;
    line-height: 34px;
    font-weight: 700;
  }
}
.footer_container .footer_address .address {
  width: 100%;
}
.footer_container .footer_address .address_container {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  width: 100%;
  height: 320px;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .footer_container .footer_address .address_container {
    flex-wrap: nowrap;
    height: auto;
    margin-bottom: 20px;
  }
}
.footer_container .footer_address .address_item {
  width: 100%;
  max-width: 33.3333333333%;
  height: 160px;
  margin-right: 25px;
  transform: rotate(0.05deg);
}
@media screen and (max-width: 768px) {
  .footer_container .footer_address .address_item {
    width: 100%;
    max-width: none;
    height: auto;
    margin-bottom: min(13.8888888889vw, 62.5px);
    margin-right: 0;
  }
}
.footer_container .footer_address .footer_mhlw_container {
  display: flex;
  align-items: center;
  gap: 40px;
  max-width: 100%;
  flex-wrap: wrap;
}
.footer_container .footer_address .footer_mhlw_01 {
  width: 331px;
  height: 124px;
}
@media screen and (max-width: 768px) {
  .footer_container .footer_address .footer_mhlw_01 {
    width: 100%;
    height: auto;
  }
}
.footer_container .footer_address .footer_mhlw_02 {
  width: 400px;
  height: 100px;
}
.footer_container .footer_address h4 {
  font-size: 1.4rem;
  padding-bottom: 10px;
  border-bottom: 1px solid #707070;
  margin-bottom: 12px;
}
@media screen and (max-width: 768px) {
  .footer_container .footer_address h4 {
    font-size: min(3.8888888889vw, 17.5px);
    padding-bottom: min(2.2222222222vw, 10px);
    border-bottom: min(0.2777777778vw, 1.25px) solid #707070;
    margin-bottom: min(3.3333333333vw, 15px);
  }
}
.footer_container .footer_address p {
  font-size: 1.3rem;
  margin-bottom: 10px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .footer_container .footer_address p {
    font-size: min(3.8888888889vw, 17.5px);
    margin-bottom: min(2.7777777778vw, 12.5px);
  }
}
.footer_container .footer_address img {
  width: 24px;
  height: 24px;
  margin-right: 7px;
}
@media screen and (max-width: 768px) {
  .footer_container .footer_address img {
    width: min(5.5555555556vw, 25px);
    height: min(5.5555555556vw, 25px);
    margin-right: min(2.2222222222vw, 10px);
  }
}
.footer_container .footer_address .tel {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: "Montserrat";
  color: #FF8F8F;
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .footer_container .footer_address .tel {
    font-size: min(5vw, 22.5px);
    line-height: min(5.5555555556vw, 25px);
  }
}
.footer_container .footer_address .fax {
  font-size: 1.8rem;
  font-weight: 800;
  font-family: "Montserrat";
  vertical-align: middle;
}
@media screen and (max-width: 768px) {
  .footer_container .footer_address .fax {
    font-size: min(5vw, 22.5px);
    line-height: min(5.5555555556vw, 25px);
  }
}

.footer_policy {
  position: relative;
  z-index: 0;
  background-color: #FF8F8F;
  height: 160px;
  width: 100%;
  padding: 100px 100px 0;
}
@media screen and (max-width: 768px) {
  .footer_policy {
    height: min(83.3333333333vw, 375px);
    padding: min(41.6666666667vw, 187.5px) min(7.7777777778vw, 35px) 0;
  }
}
.footer_policy__inner {
  width: 100%;
  max-width: 1700px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  font-size: 1.4rem;
  line-height: 28px;
  font-weight: normal;
  transform: rotate(0.05deg);
}
@media screen and (max-width: 768px) {
  .footer_policy__inner {
    font-size: min(3.3333333333vw, 15px);
    flex-direction: column;
    align-items: center;
  }
}
.footer_policy .footer_inner {
  display: flex;
  gap: 16px;
  color: #fff;
  align-items: center;
  height: 28px;
}
@media screen and (max-width: 768px) {
  .footer_policy .footer_inner {
    height: auto;
    gap: min(4.4444444444vw, 20px);
    margin-bottom: min(8.3333333333vw, 37.5px);
  }
}
.footer_policy .footer_inner .co a {
  color: #fff;
}
.footer_policy .footer_inner .po a {
  color: #fff;
}
.footer_policy .footer_inner .se a {
  color: #fff;
}
.footer_policy .footer_inner span {
  border-right: 1px solid #fff;
  height: 28px;
}
.footer_policy p {
  color: #333333;
}

.kousei {
  margin-top: -525px;
}
@media screen and (max-width: 768px) {
  .kousei {
    margin-top: max(-83.3333333333vw, -375px);
  }
}
.kousei_img {
  width: 805px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .kousei_img {
    width: min(75vw, 337.5px);
    align-items: center;
  }
}
.kousei_img-01 {
  width: 340px;
}
@media screen and (max-width: 768px) {
  .kousei_img-01 {
    width: min(38.8888888889vw, 175px);
  }
}
.kousei_img-02 {
  width: 340px;
  height: auto;
}
@media screen and (max-width: 768px) {
  .kousei_img-02 {
    width: min(33.3333333333vw, 150px);
  }
}
.kousei__ttl {
  margin-top: 32px;
  text-align: center;
  font-size: 42px;
}
@media screen and (max-width: 768px) {
  .kousei__ttl {
    font-size: 18px;
  }
}
.kousei__ttl span {
  font-size: 50px;
  color: #FF8F8F;
}
@media screen and (max-width: 768px) {
  .kousei__ttl span {
    font-size: 22px;
  }
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  border-bottom: 4px solid #627795;
  -moz-column-break-before: 8px;
       break-before: 8px;
}

.btn_01 {
  width: 190px;
  height: 80px;
  border: 2px solid #333333;
  border-radius: 8px;
  background-color: #FF8F8F;
  margin-left: 20px;
  border-bottom: 4px solid #333333;
}
.btn_01 .btn-01-box {
  margin-right: 8px;
  color: #fff;
}
.btn_01 .btn-01-box .btn_01-title {
  font-size: 1.6rem;
}
.btn_01 .btn-01-box p {
  font-size: 1rem;
}
.btn_01 img {
  width: auto;
  height: 53px;
}

.pyon01:hover {
  animation: pyon01 0.5s ease-in-out;
}

@keyframes pyon01 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -10px);
  }
}
.btn_02 {
  width: 190px;
  height: 80px;
  border: 2px solid #333333;
  border-radius: 8px;
  background-image: url(../image/back/sk_grain_backimage.png);
  background-size: 190px 80px;
  background-repeat: no-repeat;
  background-position: center center;
  margin-left: 20px;
  border-bottom: 4px solid #333333;
}
.btn_02 .btn-02-box {
  margin-right: 8px;
}
.btn_02 .btn-02-box .btn_02-title {
  font-size: 2rem;
  color: #FF8F8F;
}
.btn_02 .btn-02-box p {
  font-size: 1rem;
  font-family: "M PLUS 1p";
}
.btn_02 img {
  width: auto;
  height: 53px;
}

.btn_01:active,
.btn_02:active {
  transform: translateY(2px);
  border-bottom: 2px;
}

.btn-contact-y {
  position: relative;
  padding: 32px;
  width: 580px;
  background-color: #F8EE73;
  border: 5px solid #333333;
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.3s ease;
}
.btn-contact-y:hover {
  background-color: #FFD6D6;
}
@media screen and (max-width: 768px) {
  .btn-contact-y {
    padding: min(4.4444444444vw, 20px);
    width: 100%;
    border: min(1.3888888889vw, 6.25px) solid #333333;
    border-radius: min(2.7777777778vw, 12.5px);
  }
}
.btn-contact-y__txt01 {
  position: relative;
  font-size: 44px;
  line-height: 60px;
  letter-spacing: -0.05em;
  margin-bottom: 24px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .btn-contact-y__txt01 {
    font-size: min(6.1111111111vw, 27.5px);
    line-height: min(8.3333333333vw, 37.5px);
    margin-bottom: min(3.8888888889vw, 17.5px);
  }
}
.btn-contact-y__txt02 {
  position: relative;
  display: inline-block;
  width: 410px;
  height: 60px;
  line-height: 60px;
  padding: 0 32px;
  font-size: 27px;
  color: #fff;
  background-color: #FF8F8F;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .btn-contact-y__txt02 {
    width: min(59.4444444444vw, 267.5px);
    height: min(8.8888888889vw, 40px);
    line-height: min(16.6666666667vw, 75px);
    padding: 0 min(4.4444444444vw, 20px);
    font-size: min(3.8888888889vw, 17.5px);
    border-radius: min(27.5vw, 123.75px);
  }
  .btn-contact-y__txt02 svg {
    width: min(4.5833333333vw, 20.625px);
  }
}
.btn-contact-y img {
  position: absolute;
  right: 32px;
  top: 32px;
  width: 177px;
  height: 203px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: 0 0;
     object-position: 0 0;
}
@media screen and (max-width: 768px) {
  .btn-contact-y img {
    right: min(4.4444444444vw, 20px);
    top: min(4.4444444444vw, 20px);
    width: min(25.5555555556vw, 115px);
    height: min(29.1666666667vw, 131.25px);
  }
}

.fixed_btn {
  display: block;
  position: fixed;
  z-index: 99;
  transform: translateX(0vw) translateY(-100%);
  top: 100%;
  cursor: pointer;
  pointer-events: none;
  max-width: 450px;
  width: 23.4375vw;
}
@media screen and (min-width: 1920px) {
  .fixed_btn {
    transform: translateX(0px) translateY(-100%);
  }
}
@media screen and (max-width: 768px) {
  .fixed_btn {
    pointer-events: all;
    left: auto;
    right: 0;
    width: auto;
  }
}
.fixed_btn:hover #circle {
  fill: #F8EE73;
}
.fixed_btn:hover #button-svg {
  fill: #333;
}
.fixed_btn:hover #txt-svg {
  fill: #ec564a;
}
.fixed_btn text {
  font-family: "M PLUS 1p", sans-serif;
}
.fixed_btn #circle {
  fill: #fff;
  pointer-events: all;
  transition: all 0.3s ease;
}
.fixed_btn #button-svg {
  fill: #FF8F8F;
  transition: all 0.3s ease;
}
.fixed_btn #txt-svg {
  fill: #FF8F8F;
  transition: all 0.3s ease;
}

.hover_B9E0DD_bg {
  cursor: pointer;
  transition: all ease;
  transition: all 0.3s ease;
}
.hover_B9E0DD_bg:hover {
  background-color: #FFD6D6;
}

.hover_B9E0DD_color {
  cursor: pointer;
  transition: all 0.3s ease;
}
.hover_B9E0DD_color:hover {
  color: #FFD6D6;
}

.hover_opacity_color {
  cursor: pointer;
  transition: all 0.3s ease;
  opacity: 1;
}
.hover_opacity_color:hover {
  opacity: 0.5;
}

.fixed_below {
  display: none;
}

@media screen and (max-width: 520px) {
  .fixed_below {
    display: block;
    display: flex;
    position: fixed;
    bottom: 10px;
    z-index: 100;
    width: 300px;
    left: calc(50% - 150px);
  }
  .fixed_below .fixed_below-left {
    display: flex;
    align-items: center;
    width: 150px;
    height: 54px;
    background-color: #FF8F8F;
    transform: rotate(0.05deg);
    border-top: 2px solid #000000;
    border-left: 2px solid #000000;
    border-bottom: 2px solid #000000;
    border-radius: 10px 0 0 10px;
    padding-left: 6px;
  }
  .fixed_below .fixed_below-left img {
    width: auto;
    height: 42px;
  }
  .fixed_below .fixed_below-left .below_txt .belowtitle {
    font-size: 1.3rem;
    color: #fff;
  }
  .fixed_below .fixed_below-left .below_txt p {
    font-size: 1rem;
    transform: scale(0.8);
  }
  .fixed_below .fixed_below-right {
    display: flex;
    align-items: center;
    width: 150px;
    height: 54px;
    background-image: url(../image/back/sk_grain_backimage.png);
    background-size: 150px 54px;
    background-repeat: no-repeat;
    background-position: center center;
    transform: rotate(0.05deg);
    border-top: 2px solid #000000;
    border-right: 2px solid #000000;
    border-bottom: 2px solid #000000;
    border-radius: 0 10px 10px 0;
    padding-right: 6px;
  }
  .fixed_below .fixed_below-right img {
    width: auto;
    height: 42px;
  }
  .fixed_below .fixed_below-right .below_txt .belowtitle {
    font-size: 1.3rem;
    color: #FF8F8F;
  }
  .fixed_below .fixed_below-right .below_txt p {
    font-size: 10px;
    transform: scale(0.8);
    letter-spacing: -1px;
  }
}
.animate {
  opacity: 0;
  transform: translateY(80px);
  transition: opacity 0.5s, transform 0.5s;
}

.animate.appear {
  opacity: 1;
  transform: none;
}

@media screen and (max-width: 520px) {
  .animate {
    animation: none;
    transform: none;
    transition: unset;
  }
}
.fadeUp01 {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeUp02 {
  animation-name: fadeUpAnime;
  animation-duration: 1.2s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeUp03 {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-delay: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUp04 {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeUp05 {
  animation-name: fadeUpAnime;
  animation-duration: 1.2s;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeUp06 {
  animation-name: fadeUpAnime;
  animation-duration: 2s;
  animation-delay: 1.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(150px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fukidashi {
  display: inline-block;
  width: 700px;
  height: 195px;
  text-align: center;
  position: relative;
  z-index: 10;
}
.fukidashi img {
  width: 100%;
}
.fukidashi p {
  font-size: 4.2rem;
  font-weight: 800;
  position: absolute;
  left: 17%;
  top: 72%;
  padding: 0;
}
.fukidashi p .lower {
  font-size: 4.2rem;
  color: #FF8F8F;
}
.fukidashi p span {
  font-size: 3.4rem;
}

.fukidashi_box {
  text-align: center;
  padding-top: 130px;
}

@media screen and (max-width: 520px) {
  .fukidashi_box {
    text-align: center;
    padding-top: 0;
  }
}
.worries_fukidashi {
  margin-bottom: 100px;
}
.worries_fukidashi p {
  left: 25%;
}

.career_fukidashi {
  margin-bottom: 100px;
}
.career_fukidashi p {
  left: 17%;
}

.confidence_fukidashi {
  margin-bottom: 100px;
}
.confidence_fukidashi p {
  left: 20%;
}

.fukidashi {
  padding-top: 130px;
  margin-top: -130px;
}

.worries_fukidashi-sp,
.fukidashi-sp,
.fukidashi-sp-under {
  display: none;
}

.fukidashi {
  opacity: 0;
  transform: translateY(60px);
  transition: opacity 0.5s, transform 0.5s;
}

.fukidashi.appear {
  opacity: 1;
  transform: none;
}

@media screen and (max-width: 520px) {
  .fukidashi {
    opacity: 0;
    transform: none;
    transition: unset;
  }
  .fukidashi.appear {
    opacity: 1;
    transform: none;
  }
}
@media screen and (max-width: 520px) {
  .fukidashi {
    width: 265px;
    height: 60px;
    text-align: center;
    position: relative;
    z-index: 10;
  }
  .fukidashi img {
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
  }
  .fukidashi p {
    font-size: 1.7rem;
    font-weight: 800;
    position: absolute;
    left: 17%;
    top: 3%;
    padding: 0;
  }
  .fukidashi p .lower {
    font-size: 1.7rem;
    color: #FF8F8F;
  }
  .fukidashi p span {
    font-size: 1.3rem;
  }
  .worries_fukidashi,
  .career_fukidashi,
  .confidence_fukidashi {
    display: none;
  }
  .worries_fukidashi-sp,
  .fukidashi-sp {
    display: block;
    position: relative;
  }
  .worries_fukidashi-sp img,
  .fukidashi-sp img {
    width: 95%;
  }
  .worries_fukidashi-sp p,
  .fukidashi-sp p {
    font-size: 2.4rem;
    font-weight: 800;
    width: 300px;
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
  }
  .worries_fukidashi-sp p .lower,
  .fukidashi-sp p .lower {
    font-size: 2.4rem;
    color: #FF8F8F;
  }
  .fukidashi-sp-under {
    display: block;
    margin-top: 60px;
    position: relative;
  }
  .fukidashi-sp-under img {
    width: 95%;
  }
  .fukidashi-sp-under p {
    font-size: 2.4rem;
    font-weight: 800;
    width: 300px;
    position: absolute;
    top: 38%;
    left: 50%;
    transform: translate(-50%, -50%);
    padding: 0;
  }
  .fukidashi-sp-under p .lower {
    font-size: 2.4rem;
    color: #FF8F8F;
  }
}
.fukidasi-css {
  position: relative;
  display: block;
  padding: 20px 0;
  width: 100%;
  max-width: 700px;
  border: solid 5px #555;
  font-size: 16px;
  text-align: center;
  color: #333333;
  background: #FFF;
  border-radius: 20px;
  box-sizing: border-box;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .fukidasi-css {
    padding: min(5.5555555556vw, 25px) 0;
    font-size: min(4.4444444444vw, 20px);
    border: solid min(1.3888888889vw, 6.25px) #555;
  }
}
.fukidasi-css::before {
  content: "";
  position: absolute;
  bottom: -46px;
  left: 50%;
  margin-left: -21px;
  border: 21px solid transparent;
  border-top: 36px solid #fff;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .fukidasi-css::before {
    bottom: max(-12.7777777778vw, -57.5px);
    margin-left: max(-5.8333333333vw, -26.25px);
    border: min(5.8333333333vw, 26.25px) solid transparent;
    border-top: min(10vw, 45px) solid #fff;
  }
}
.fukidasi-css::after {
  content: "";
  position: absolute;
  bottom: -60px;
  left: 50%;
  margin-left: -25px;
  border: 25px solid transparent;
  border-top: 40px solid #555;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .fukidasi-css::after {
    bottom: max(-16.6666666667vw, -75px);
    margin-left: max(-6.9444444444vw, -31.25px);
    border: min(6.9444444444vw, 31.25px) solid transparent;
    border-top: min(11.1111111111vw, 50px) solid #555;
  }
}
.fukidasi-css i {
  position: absolute;
  width: 50px;
  height: 10px;
  left: 50%;
  bottom: 0;
  margin-left: -25px;
  background-color: #fff;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .fukidasi-css i {
    width: min(13.8888888889vw, 62.5px);
    height: min(2.7777777778vw, 12.5px);
    margin-left: max(-6.9444444444vw, -31.25px);
  }
}

.assist {
  width: 920px;
  height: auto;
  background-color: #fff;
  border-radius: 15px;
  margin-bottom: 150px;
  padding: 80px 2%;
}

.assist-title {
  text-align: center;
  margin-bottom: 50px;
}
.assist-title h3 {
  font-size: 3.2rem;
  margin-bottom: 40px;
}
.assist-title .assist_p {
  width: 630px;
  margin: 0 auto 10px auto;
  font-size: 1.8rem;
  font-weight: normal;
  transform: rotate(0.05deg);
}
.assist-title .assist-notes {
  font-weight: normal;
  color: #FF8F8F;
}

.form {
  margin: 0 auto 50px auto;
  /* デフォルトのボタン */
  /* チェック前のボタン */
  /* チェック後のボタン */
}
.form tr {
  text-align: left;
  vertical-align: baseline;
}
.form th {
  width: 190px;
  height: 45px;
  font-size: 2rem;
}
.form .col {
  color: #FF8F8F;
}
.form .automatic {
  font-size: 1.6rem;
  color: #FF8F8F;
  font-weight: 400;
  margin-left: 5px;
}
.form td {
  width: 630px;
}
.form .format {
  width: 630px;
  font-size: 2rem;
  padding: 10px 20px;
  border-radius: 10px;
  margin: 15px 0;
}
.form .format:focus {
  outline: 2px solid #FF8F8F;
}
.form .radio_box {
  text-align: left;
  vertical-align: middle;
}
.form .radio_box .format_radio {
  accent-color: #FF8F8F;
  width: 45px;
  height: 45px;
  margin: 15px 10px 15px 0;
  vertical-align: middle;
}
.form .radio_box label {
  margin-right: 50px;
  font-size: 2rem;
}
.form .wpcf7-list-item.first {
  margin: 0;
}
.form .wpcf7-list-item-label {
  cursor: pointer;
  display: flex;
}
.form input[type=radio] {
  opacity: 0; /* デフォルトのボタンを非表示 */
  position: absolute;
}
.form .wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #333333;
  border-radius: 100%; /* ラジオボタンっぽく丸くする */
  content: "";
  height: 1.2em;
  margin-bottom: auto;
  margin-right: 0.5em;
  margin-top: auto;
  transition: background-color 0.5s; /* 色をじんわり変化させる */
  width: 1.2em;
}
.form input[type=radio]:checked + .wpcf7-list-item-label::before {
  background-color: #7fbfff; /* チェック後の中心の色 */
  box-shadow: inset 0 0 0 3px #fff; /* 中心の色のスタイル */
}
.form .year_box {
  text-align: left;
  vertical-align: middle;
}
.form .year_box .col {
  font-size: 2rem;
  color: #FF8F8F;
  font-weight: 800;
}
.form .year_box .format_year {
  width: 130px;
  font-size: 2rem;
  padding: 10px 20px;
  border-radius: 10px;
  margin: 15px 10px 15px 0;
}
.form .year_box :focus {
  outline: 2px solid #FF8F8F;
}
.form .year_box label {
  margin-right: 30px;
  font-size: 2rem;
}
.form .post_box {
  text-align: left;
  vertical-align: middle;
}
.form .post_box .format_post {
  width: 300px;
  font-size: 2rem;
  padding: 10px 20px;
  border-radius: 10px;
  margin: 15px 10px 15px 0;
}
.form .post_box :focus {
  outline: 2px solid #FF8F8F;
}
.form .line_box {
  text-align: left;
  vertical-align: middle;
}
.form .line_box .format_line {
  width: 250px;
  font-size: 2rem;
  padding: 10px 20px;
  border-radius: 10px;
  margin: 15px 10px 15px 0;
}
.form .line_box label {
  font-size: 2rem;
  font-weight: normal;
  margin-right: 5px;
  color: #707070;
}
.form .line_box :focus {
  outline: 2px solid #FF8F8F;
}
.form .text_box {
  text-align: left;
  vertical-align: top;
}
.form .text_box .text_inner {
  width: 630px;
  height: 500px;
  border: 2px solid #333333;
  border-radius: 10px;
}
.form .text_box :focus {
  outline: 2px solid #FF8F8F;
}

@media screen and (max-width: 520px) {
  .br-sp {
    display: none;
  }
}
.consent {
  width: 500px;
  height: auto;
  margin: 0 auto;
}
.consent input[type=checkbox] {
  vertical-align: middle;
}
.consent label {
  font-size: 2rem;
  font-weight: 800;
}
.consent a {
  border-bottom: 1px solid #FF8F8F;
}

#agree {
  width: 50px;
  height: 50px;
}

.submit-btn {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  color: #fff;
  font-size: 3.8rem;
  font-weight: 800;
  width: 500px;
  height: 134px;
  background-color: #FF8F8F;
  border-radius: 10px;
  cursor: pointer;
  margin-top: 40px;
}

.submit-btn[disabled] {
  background-color: #ccc;
  cursor: not-allowed; /* クリック不可のカーソルを表示 */
}

.wpcf7-list-item.first {
  margin: 15px 0 0 0;
}

.wpcf7-list-item {
  height: 45px;
}

.wpcf7-list-item-label {
  cursor: pointer;
  display: flex;
  align-items: center;
}

/* デフォルトのボタン */
input[type=radio] {
  opacity: 0; /* デフォルトのボタンを非表示 */
  position: absolute;
}

/* チェック前のボタン */
.wpcf7-list-item-label::before {
  background: #fff;
  border: 1px solid #333333;
  border-radius: 100%; /* ラジオボタンっぽく丸くする */
  content: "";
  height: 45px;
  margin-bottom: auto;
  margin-right: 0.5em;
  margin-top: auto;
  transition: background-color 0.5s; /* 色をじんわり変化させる */
  width: 45px;
}

/* チェック後のボタン */
.form_birth {
  display: flex;
}

.form_birth-input {
  display: flex;
  align-items: center;
}

.form_age {
  display: flex !important;
  align-items: center;
}

.form_station {
  display: flex !important;
  align-items: center;
}

.form_station-input {
  display: flex;
  align-items: center;
  margin-right: 5px;
}

.wpcf7-form-control-wrap select {
  border: 2px solid;
  height: 50px;
}

.navimenu {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .navimenu {
    padding: 0 50px;
  }
}
@media screen and (max-width: 768px) {
  .navimenu {
    width: 100%;
    padding-left: min(6.6666666667vw, 30px);
    padding-right: min(6.6666666667vw, 30px);
  }
}
.navimenu_toppage {
  margin-top: -470px;
}
@media screen and (max-width: 768px) {
  .navimenu_toppage {
    margin-top: max(-72.2222222222vw, -325px);
  }
}
.navimenu_colum2 {
  display: flex;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .navimenu_colum2 {
    flex-direction: column;
    align-items: center;
    margin-top: min(13.8888888889vw, 62.5px);
  }
}
.navimenu_colum2 a {
  width: 50%;
  height: 150px;
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 0 0 0 40px;
  font-size: 42px;
  color: #333333;
  box-shadow: 3px 3px 3px rgba(51, 51, 51, 0.4666666667);
  position: relative;
  white-space: nowrap;
  cursor: pointer;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .navimenu_colum2 a {
    font-size: 30px;
    padding-right: 40px;
  }
}
.navimenu_colum2 a:first-of-type::after {
  content: "";
  position: absolute;
  height: 80%;
  top: 10%;
  right: 0;
  width: 1px;
  background-color: #eee;
}
.navimenu_colum2 a:hover {
  background-color: #FF8F8F;
  color: #fff;
}
.navimenu_colum2 a:hover::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .navimenu_colum2 a {
    width: 100%;
    height: min(27.7777777778vw, 125px);
    padding: 0 0 0 min(6.9444444444vw, 31.25px);
    font-size: min(6.9444444444vw, 31.25px);
    box-shadow: min(0.8333333333vw, 3.75px) min(0.8333333333vw, 3.75px) min(0.8333333333vw, 3.75px) rgba(51, 51, 51, 0.4666666667);
  }
  .navimenu_colum2 a:first-of-type::after {
    content: "";
    position: absolute;
    width: 90%;
    height: min(0.2777777778vw, 1.25px);
    top: auto;
    bottom: 0;
    right: 5%;
    background-color: #eee;
  }
}
.navimenu_colum2 a ._img {
  display: block;
  width: 114px;
  height: 114px;
  background-color: #fff;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
@media screen and (max-width: 768px) {
  .navimenu_colum2 a ._img {
    width: min(17.7777777778vw, 80px);
    height: min(17.7777777778vw, 80px);
    margin-right: 16px;
  }
}
.navimenu_colum2 a ._img img {
  position: relative;
  height: 70px;
}
@media screen and (max-width: 768px) {
  .navimenu_colum2 a ._img img {
    height: min(11.1111111111vw, 50px);
  }
}
.navimenu_colum2 a:first-of-type {
  border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 768px) {
  .navimenu_colum2 a:first-of-type {
    border-radius: min(2.7777777778vw, 12.5px) min(2.7777777778vw, 12.5px) 0 0;
  }
}
.navimenu_colum2 a:last-of-type {
  border-radius: 0 10px 10px 0;
}
@media screen and (max-width: 768px) {
  .navimenu_colum2 a:last-of-type {
    border-radius: 0 0 min(2.7777777778vw, 12.5px) min(2.7777777778vw, 12.5px);
  }
}

.nayami_tab {
  width: 100%;
  display: flex;
  justify-content: space-between;
  gap: 16px;
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .nayami_tab {
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
  }
}
@media screen and (max-width: 768px) {
  .nayami_tab {
    flex-direction: column;
    align-items: center;
    gap: min(8.3333333333vw, 37.5px);
  }
}
.nayami_tab_btn {
  position: relative;
  padding: 0 36px;
  height: 80px;
  width: 100%;
  background-color: #fff;
  border: 5px solid #333333;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-left: 105px;
  cursor: pointer;
  max-width: 322.6666666667px;
}
.nayami_tab_btn:hover {
  background-color: #FFD6D6;
}
@media screen and (max-width: 768px) {
  .nayami_tab_btn {
    padding: 0 min(10vw, 45px);
    height: min(22.2222222222vw, 100px);
    border-radius: min(2.7777777778vw, 12.5px);
    padding-left: min(33.3333333333vw, 150px);
    padding-right: min(2.2222222222vw, 10px);
    max-width: min(83.3333333333vw, 375px);
  }
}
.nayami_tab_btn p {
  font-size: 20px;
  line-height: 25px;
  font-weight: 700;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .nayami_tab_btn p {
    font-size: min(5.5555555556vw, 25px);
    line-height: min(6.9444444444vw, 31.25px);
  }
}
.nayami_tab_btn::after {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  /*background-image: url(/wp-content/themes/jobs2/image/common/arrow-right-maru.svg);*/
  background-size: 20px 20px;
  background-repeat: no-repeat;
}
@media screen and (max-width: 768px) {
  .nayami_tab_btn::after {
    width: min(5.5555555556vw, 25px);
    height: min(5.5555555556vw, 25px);
    background-size: min(5.5555555556vw, 25px) min(5.5555555556vw, 25px);
  }
}
.nayami_tab_btn img {
  position: absolute;
  left: 10px;
  bottom: 10px;
  width: 110px;
}
@media screen and (max-width: 768px) {
  .nayami_tab_btn img {
    width: min(30.5555555556vw, 137.5px);
    left: min(2.7777777778vw, 12.5px);
    bottom: min(2.7777777778vw, 12.5px);
  }
}
.nayami_tab_btn:last-of-type img {
  width: 82px;
  nav-right: 12px;
}
@media screen and (max-width: 768px) {
  .nayami_tab_btn:last-of-type img {
    margin-left: min(3.0555555556vw, 13.75px);
    width: min(24.4444444444vw, 110px);
  }
}

.globalmenu {
  position: fixed;
  width: 100vw;
  height: 100vh;
  top: 0;
  left: 0;
  z-index: 200;
  background-color: rgba(255, 255, 255, 0.88);
  pointer-events: none;
  opacity: 0;
  transition: all 0.3s ease;
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .globalmenu {
    padding-left: 50px;
    padding-right: 50px;
  }
}
.globalmenu.open {
  opacity: 1;
  pointer-events: all;
}
.globalmenu_container {
  width: 100%;
  max-width: 1200px;
  height: 860px;
  margin: 0 auto;
  margin-top: calc((100vh - 860px) / 2);
  background-color: #F8F5ED;
  border-radius: 20px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.16);
  padding: 50px 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .globalmenu_container {
    height: auto;
    max-height: calc(100vh - (100vh - 860px) / 2);
    overflow-y: scroll;
  }
}
@media screen and (max-width: 768px) {
  .globalmenu_container {
    width: min(91.6666666667vw, 412.5px);
    width: 90vw;
    margin-top: 5vh;
    height: 95vh;
    border-radius: min(5.5555555556vw, 25px);
    box-shadow: min(0.8333333333vw, 3.75px) min(0.8333333333vw, 3.75px) min(0.8333333333vw, 3.75px) rgba(0, 0, 0, 0.16);
    padding: min(16.6666666667vw, 75px) min(3.8888888889vw, 17.5px) min(33.3333333333vw, 150px);
    overflow-y: scroll;
  }
}
.globalmenu_head {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .globalmenu_head {
    padding-left: 50px;
    padding-right: 50px;
    gap: 30px;
    flex-direction: column;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .globalmenu_head {
    flex-direction: column;
    gap: min(6.6666666667vw, 30px);
    margin-bottom: min(16.6666666667vw, 75px);
  }
}
.globalmenu_head__content h2 {
  color: #333333;
  font-size: 34px;
  line-height: 50px;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .globalmenu_head__content h2 {
    font-size: min(6.6666666667vw, 30px);
    line-height: min(10vw, 45px);
    margin-bottom: min(6.6666666667vw, 30px);
  }
}
.globalmenu_head__content p {
  color: #333333;
  font-size: 20px;
  line-height: 30px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .globalmenu_head__content p {
    font-size: min(4.4444444444vw, 20px);
    line-height: min(6.6666666667vw, 30px);
  }
}
.globalmenu_content {
  width: 100%;
  max-width: 1000px;
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .globalmenu_content {
    margin-bottom: 30px;
  }
}
@media screen and (max-width: 768px) {
  .globalmenu_content {
    margin-bottom: min(8.3333333333vw, 37.5px);
  }
  .globalmenu_content .navimenu {
    padding: 0;
  }
}
.globalmenu_foot {
  width: 100%;
  max-width: 1000px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .globalmenu_foot {
    padding: 0 50px;
  }
}
@media screen and (max-width: 768px) {
  .globalmenu_foot {
    flex-direction: column;
    gap: min(8.3333333333vw, 37.5px);
  }
}
.globalmenu_foot a {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px;
  position: relative;
  color: #333333;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .globalmenu_foot a {
    font-size: min(5vw, 22.5px);
    padding: min(3.8888888889vw, 17.5px);
  }
}
.globalmenu_foot a:hover::after {
  background-color: #FFD6D6;
}
.globalmenu_foot a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 10px;
  background-color: #FF8F8F;
  box-shadow: 3px 3px 0 rgba(0, 0, 0, 0.16);
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  .globalmenu_foot a::after {
    bottom: max(-1.9444444444vw, -8.75px);
    height: min(2.7777777778vw, 12.5px);
    box-shadow: min(0.8333333333vw, 3.75px) min(0.8333333333vw, 3.75px) 0 rgba(0, 0, 0, 0.16);
  }
}
@media screen and (max-width: 768px) {
  .globalmenu_foot a img {
    height: min(16.6666666667vw, 75px);
  }
}
@media screen and (max-width: 768px) {
  .globalmenu_foot a:nth-of-type(2) img {
    margin-right: min(2.7777777778vw, 12.5px);
  }
}

.heading {
  position: relative;
  padding-top: 60px;
  margin-bottom: 0px;
  width: 100vw;
}
@media screen and (max-width: 768px) {
  .heading {
    padding-top: min(16.6666666667vw, 75px);
    margin-bottom: min(0vw, 0px);
  }
}
.heading_inner {
  position: relative;
  height: 130px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .heading_inner {
    height: min(36.1111111111vw, 162.5px);
  }
}
.heading_bg {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100vw;
  z-index: -1;
}
.heading_bg img {
  width: 100vw;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.heading_deco {
  position: absolute;
  right: 50px;
  top: 0;
  transform: translateY(-150px);
}
.heading_deco img {
  width: 280px;
}
@media screen and (max-width: 768px) {
  .heading_deco {
    right: min(0vw, 0px);
    transform: translateY(max(-27.7777777778vw, -125px));
  }
  .heading_deco img {
    width: min(55.5555555556vw, 250px);
  }
}
.heading_title {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  line-height: 1.2;
}
.heading_title br {
  display: none;
}
@media screen and (max-width: 1120px) {
  .heading_title {
    font-size: 20px;
  }
  .heading_title br {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .heading_title {
    font-size: min(4.4444444444vw, 20px);
  }
}

.heading#staff {
  margin-top: 120px;
}

.heading#howtouse {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .heading#howtouse {
    margin-top: min(5.5555555556vw, 25px);
  }
}

#chare_link {
  position: fixed;
  bottom: 0;
  left: 30px;
  z-index: 50;
}

#chare_link:hover {
  animation: pyon01 0.5s ease-in-out;
}

@keyframes pyon01 {
  0%, 100% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -10px);
  }
}
@media screen and (max-width: 520px) {
  #chare_link {
    display: none;
  }
}
.mainvisual {
  width: 100%;
  position: relative;
}
.mainvisual_fv {
  height: 1280px;
  width: 100%;
  overflow-y: hidden;
  background-image: url(/wp-content/themes/jobs2/image/top-fv.jpg);
  background-size: auto 100%;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1920px) {
  .mainvisual_fv {
    background-size: 100% auto;
  }
}
@media screen and (max-width: 1720px) {
  .mainvisual_fv {
    background-position: -380px;
  }
}
@media screen and (max-width: 768px) {
  .mainvisual_fv {
    height: min(211.1111111111vw, 950px);
    width: 100vw;
    overflow: hidden;
    background-size: auto 65%;
    background-position: -100px 0;
  }
}
@media screen and (max-width: 520px) {
  .mainvisual_fv {
    background-position: max(-43.8888888889vw, -197.5px) 0;
  }
}
.mainvisual_wrapper {
  width: 100%;
  max-width: 1765px;
  margin: 0 auto;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.mainvisual_catch {
  position: absolute;
  top: 200px;
  right: 510px;
  width: 480px;
  transform: rotate(-12deg);
}
@media screen and (max-width: 1400px) {
  .mainvisual_catch {
    top: 200px;
    right: 426px;
  }
}
@media screen and (max-width: 1200px) {
  .mainvisual_catch {
    width: 380px;
    top: 280px;
    right: 80px;
  }
}
@media screen and (max-width: 768px) {
  .mainvisual_catch {
    width: min(55.5555555556vw, 250px);
    top: min(53.3333333333vw, 240px);
    right: min(5.5555555556vw, 25px);
  }
}
.mainvisual_img01 {
  position: absolute;
  top: 385px;
  right: 420px;
  width: 662px;
}
@media screen and (max-width: 1400px) {
  .mainvisual_img01 {
    width: 600px;
    right: 320px;
  }
}
@media screen and (max-width: 1200px) {
  .mainvisual_img01 {
    top: 90px;
    width: 370px;
    right: 40px;
  }
}
@media screen and (max-width: 768px) {
  .mainvisual_img01 {
    width: min(66.3138888889vw, 298.4125px);
    top: min(18.8888888889vw, 85px);
    right: min(5.5555555556vw, 25px);
  }
}
.mainvisual_img02 {
  position: absolute;
  top: 140px;
  right: 40px;
  width: 360px;
}
@media screen and (max-width: 1400px) {
  .mainvisual_img02 {
    width: 300px;
  }
}
@media screen and (max-width: 1200px) {
  .mainvisual_img02 {
    top: 380px;
    width: 218px;
  }
}
@media screen and (max-width: 768px) {
  .mainvisual_img02 {
    width: min(30.2777777778vw, 136.25px);
    min-width: 0;
    bottom: auto;
    top: min(70.8333333333vw, 318.75px);
    left: auto;
    right: min(5.5555555556vw, 25px);
    transform: none;
  }
}

.step {
  margin-top: 500px;
  text-align: center;
}
.step .step_txt {
  font-size: 3.2rem;
  margin-bottom: 168px;
}
.step .step_txt-sp {
  display: none;
}
.step h2 {
  font-size: 4.2rem;
  text-align: center;
  margin-bottom: 50px;
}

.step_container {
  width: 582px;
  height: 196px;
  margin: 0 auto;
  position: relative;
}
.step_container .step_deco img {
  position: absolute;
  left: 0;
  width: 244px;
}
.step_container .step_deco .slanting {
  position: absolute;
  top: 12px;
  left: 37px;
  font-size: 1.9rem;
  transform: rotate(-15deg);
}
.step_container .step_deco .slanting span {
  font-size: 2.8rem;
}
.step_container .step_btn {
  position: absolute;
  bottom: 2px;
  right: 30px;
  z-index: 10;
}
.step_container .step_btn a {
  display: flex;
}
.step_container .step_btn .step_btn-box {
  margin-top: 50px;
}
.step_container .step_btn .step_btn-box .step_btn-title {
  font-size: 4.6rem;
  color: #FF8F8F;
}
.step_container .step_btn .step_btn-box .step_btn-txt {
  font-size: 2rem;
  color: #000000;
}
.step_container .step_btn img {
  width: auto;
  height: 164px;
}
.step_container .step_btn-sp {
  display: none;
}
.step_container .step_base {
  width: 500px;
  height: 130px;
  background-image: url(../image/back/sk_grain_backimage.png);
  background-repeat: no-repeat;
  background-size: cover;
  border: 2px solid #333333;
  border-radius: 10px;
  position: absolute;
  bottom: 0;
  right: 0;
}

.step_logo {
  display: block;
  text-align: center;
  margin-top: 167px;
  margin-bottom: 100px;
}
.step_logo img {
  width: 110px;
  height: 100px;
  margin-bottom: 50px;
}
.step_logo p {
  font-size: 3.6rem;
  color: #FF8F8F;
}

.consulting {
  margin-bottom: 100px;
}
.consulting .consulting_container {
  text-align: center;
  position: relative;
}
.consulting .consulting_container img {
  width: 367px;
  height: 106px;
}
.consulting .consulting_container p {
  font-size: 2.8rem;
  font-family: "Montserrat";
  position: absolute;
  z-index: 10;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.consulting .consulting_txt {
  width: 800px;
  margin: 50px auto 0 auto;
  font-size: 3.2rem;
  text-align: center;
  line-height: 60px;
}

.consulting:last-child {
  margin-bottom: 0;
}

.image-between {
  width: 100%;
  height: auto;
}
.image-between img {
  width: 100%;
}

@media screen and (max-width: 520px) {
  .step {
    margin-top: 700px;
    text-align: left;
    padding: 0 2%;
  }
  .step .step_txt-sp {
    display: block;
    font-size: 2rem;
    margin-bottom: 37px;
    text-align: justify;
  }
  .step .step_txt {
    display: none;
  }
  .step h2 {
    font-size: 2.6rem;
    text-align: center;
    margin-bottom: 50px;
    transform: rotate(0.05deg);
  }
  .step_container {
    width: 313px;
    height: auto;
    margin: 0 auto;
    position: relative;
  }
  .step_container .step_deco img {
    position: absolute;
    left: 0;
    width: 129px;
  }
  .step_container .step_deco .slanting {
    position: absolute;
    top: 7px;
    left: 24px;
    font-size: 1rem;
    transform: scale(0.9);
    transform: rotate(-15deg);
  }
  .step_container .step_deco .slanting span {
    font-size: 1.3rem;
  }
  .step_container .step_btn {
    display: none;
  }
  .step_container .step_btn-sp {
    display: block;
    position: absolute;
    top: 2px;
    right: 30px;
    z-index: 10;
  }
  .step_container .step_btn-sp a {
    display: flex;
  }
  .step_container .step_btn-sp .step_btn-box {
    margin-top: 45px;
  }
  .step_container .step_btn-sp .step_btn-box .step_btn-title {
    font-size: 2.4rem;
    color: #FF8F8F;
  }
  .step_container .step_btn-sp .step_btn-box .step_btn-txt {
    font-size: 1.3rem;
    color: #000000;
  }
  .step_container .step_btn-sp img {
    width: auto;
    height: 86px;
    margin-top: 20px;
    margin-right: 10px;
  }
  .step_container .step_base {
    width: 262px;
    height: 68px;
    background-image: url(../image/back/sk_grain_backimage.png);
    background-repeat: no-repeat;
    background-size: cover;
    border: 2px solid #333333;
    border-radius: 10px;
    position: absolute;
    top: 42px;
    right: 26px;
  }
  .step_logo {
    display: block;
    text-align: center;
    margin-top: 167px;
    margin-bottom: 100px;
    padding-top: 40px;
  }
  .step_logo img {
    width: 110px;
    height: 100px;
    margin-bottom: 50px;
  }
  .step_logo p {
    font-size: 2rem;
    color: #FF8F8F;
    letter-spacing: -0.1em;
  }
  .consulting {
    margin-top: -50px;
    margin-bottom: 30px;
  }
  .consulting .consulting_container {
    text-align: center;
    position: relative;
  }
  .consulting .consulting_container img {
    width: 300px;
    height: 106px;
  }
  .consulting .consulting_container p {
    width: 300px;
    font-size: 2.8rem;
    font-family: "Montserrat";
    position: absolute;
  }
  .consulting .consulting_txt {
    width: 313px;
    margin: 30px auto 0 auto;
    font-size: 1.8rem;
    text-align: center;
    line-height: 35px;
    padding-right: 2%;
  }
  .consulting + .consulting {
    padding-top: 50px;
  }
  .consulting:last-child {
    margin-bottom: 30px;
  }
  .image-between {
    width: 100%;
    height: 200px;
  }
  .image-between img {
    width: 100%;
    height: 120px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.worries {
  margin-bottom: 100px;
  margin-top: 100px;
  text-align: center;
}
.worries .worries_inner {
  width: 1024px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.worries .worries_content {
  width: 47%;
  background-color: #fff;
  padding: 30px;
  box-shadow: 10px 10px 5px -5px #999;
  border-radius: 10px;
  transform: rotate(0.05deg);
  margin-bottom: 50px;
}
.worries .worries_content img {
  width: 180px;
  height: 180px;
  margin-bottom: 20px;
}
.worries .worries_content p {
  font-size: 1.8rem;
  margin-bottom: 16px;
  font-weight: normal;
  color: #707070;
}
.worries .worries_content h3 {
  font-size: 3rem;
  margin-bottom: 40px;
}
.worries .worries_content .worries_txt {
  font-size: 1.6rem;
  text-align: left;
  line-height: 30px;
}

.swiper {
  display: none;
}

.support_headline {
  margin-bottom: 130px;
  text-align: center;
}
.support_headline h3 {
  font-size: 3.6rem;
  margin-bottom: 58px;
}
.support_headline span {
  font-size: 2.8rem;
}
.support_headline .number {
  display: flex;
  justify-content: center;
  align-items: baseline;
}
.support_headline .number p {
  font-size: 3.6rem;
}
.support_headline .number .updown {
  padding: 0 20px;
}
.support_headline .number .updown span {
  font-size: 12rem;
  color: #FF8F8F;
}
.support_headline .number_sp {
  display: none;
}

@keyframes updown-anim {
  0% {
    transform: translateY(110%);
  }
  50% {
    transform: translateY(50%);
  }
  100% {
    transform: translateY(0);
  }
}
/*** アニメーションする要素の親 ***/
.updown {
  display: flex;
  overflow: hidden;
}

/*** アニメーションを適用する文字全体 ***/
.updown span {
  transform: translateY(110%);
  display: block;
}

/*** スクロールで画面に入った場合 ***/
.updown.active span {
  animation: 0.35s updown-anim linear forwards; /*一度だけのアニメーション（終了時点で固定）*/
}

/*** 各span(文字)に遅延時間を設定 ***/
.updown span:nth-child(1) {
  animation-delay: 0s;
}

.updown span:nth-child(2) {
  animation-delay: 0.5s;
}

.updown span:nth-child(3) {
  animation-delay: 1s;
}

.updown span:nth-child(4) {
  animation-delay: 1.5s;
}

.updown span:nth-child(5) {
  animation-delay: 2s;
}

.updown span:nth-child(6) {
  animation-delay: 2.5s;
}

.support_pro {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.support_pro .support_img {
  width: 900px;
  height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
  top: 0;
  left: 0;
  margin-left: calc(50% - 50vw);
}
.support_pro .support_img img {
  width: 100%;
}
.support_pro .support_txt-sp {
  display: none;
}
.support_pro .support_txt {
  width: 600px;
  height: auto;
  margin-right: 13%;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  position: absolute;
  top: 20px;
  right: 0;
  z-index: 10;
}
.support_pro .support_txt h2 {
  font-size: 5rem;
  line-height: 89px;
  margin-bottom: 60px;
}
.support_pro .support_txt p {
  font-size: 1.8rem;
  line-height: 30px;
  transform: rotate(0.05deg);
}

.support_pro-2 {
  display: flex;
  justify-content: space-between;
  margin-top: 42px;
  position: relative;
}
.support_pro-2 .support_txt-2 {
  width: 600px;
  height: auto;
  margin-left: 13%;
  padding: 30px;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  position: absolute;
  top: 100px;
  z-index: 10;
  left: 0;
}
.support_pro-2 .support_txt-2 h2 {
  font-size: 5rem;
  line-height: 89px;
  margin-bottom: 60px;
}
.support_pro-2 .support_txt-2 p {
  font-size: 1.8rem;
  line-height: 30px;
  transform: rotate(0.05deg);
}
.support_pro-2 .support_img-2 {
  width: 900px;
  height: 500px;
  -o-object-fit: contain;
     object-fit: contain;
  margin-right: calc(50% - 50vw);
  position: absolute;
  top: 0;
  right: 0;
}

.support_pro-2-sp {
  display: none;
}

.support_feature {
  margin-top: 700px;
  display: flex;
  justify-content: space-between;
}
.support_feature .feature {
  width: 31%;
  height: auto;
  background-color: #FF8F8F;
  border-radius: 10px;
  text-align: center;
  padding: 0 20px 30px 20px;
}
.support_feature .feature .number {
  font-size: 11rem;
  font-family: "Montserrat";
  color: #fff;
}
.support_feature .feature h3 {
  font-size: 3rem;
  color: #F8EE73;
  margin-bottom: 24px;
}
.support_feature .feature .feature_txt {
  font-size: 1.6rem;
  color: #fff;
  line-height: 32px;
}

@media screen and (max-width: 520px) {
  .support {
    margin-bottom: 30px;
  }
  .support_headline {
    margin-bottom: 100px;
    text-align: center;
  }
  .support_headline h3 {
    width: 280px;
    font-size: 2.2rem;
    margin: 0 auto 45px auto;
  }
  .support_headline span {
    font-size: 1.7rem;
    font-weight: normal;
  }
  .support_headline .number {
    display: none;
  }
  .support_headline .number_sp {
    display: block;
    display: flex;
    justify-content: center;
    align-items: baseline;
    font-size: 2.2rem;
  }
  .support_headline .number_sp .updown_sp {
    font-size: 5.6rem;
    color: #FF8F8F;
  }
  .support_pro {
    flex-direction: column;
    position: static;
  }
  .support_pro .support_txt-sp {
    display: block;
    width: 320px;
    margin: 0 auto;
    padding: 0 2%;
  }
  .support_pro .support_txt-sp h2 {
    font-size: 3.2rem;
    margin-bottom: 30px;
  }
  .support_pro .support_txt-sp p {
    line-height: 35px;
    transform: rotate(0.05deg);
    margin-bottom: 30px;
  }
  .support_pro .support_txt {
    display: none;
  }
  .support_pro .support_img {
    width: 100vw;
    height: auto;
  }
  .support_pro .support_img img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .support_pro-2 {
    display: none;
  }
  .support_pro-2-sp {
    display: block;
    margin-top: 50px;
  }
  .support_pro-2-sp .support_txt-2 {
    display: block;
    width: 320px;
    margin: 0 auto;
    padding: 0 2%;
  }
  .support_pro-2-sp .support_txt-2 h2 {
    font-size: 3.2rem;
    margin-bottom: 30px;
  }
  .support_pro-2-sp .support_txt-2 p {
    line-height: 35px;
    transform: rotate(0.05deg);
    margin-bottom: 30px;
  }
  .support_pro-2-sp .support_img-2 {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    height: auto;
  }
  .support_pro-2-sp .support_img-2 img {
    width: 100%;
    height: auto;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .support_feature {
    margin-top: 60px;
    padding: 0 5%;
    flex-direction: column;
  }
  .support_feature .feature {
    width: 100%;
    margin-bottom: 30px;
  }
}
.career {
  margin-top: 100px;
}

.career_content {
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  width: 960px;
  height: 330px;
  margin: 0 auto;
  padding: 35px 0 25px 30px;
  box-shadow: 10px 10px 5px -5px #d3d3d3;
  border-radius: 15px;
  position: relative;
}
.career_content .career_inner p {
  font-size: 1.8rem;
  color: #707070;
  margin-bottom: 20px;
}
.career_content .career_inner h4 {
  font-size: 1.8rem;
  margin-bottom: 57px;
}
.career_content .career_inner .before_area {
  display: flex;
}
.career_content .career_inner .before_area .before {
  background-color: #efefef;
  text-align: left;
  width: 309px;
  height: 139px;
  padding: 6px 9px;
  position: absolute;
  bottom: 25px;
  left: 30px;
}
.career_content .career_inner .before_area .before p {
  font-size: 1.2rem;
  font-family: "Montserrat";
  color: #aaa;
  margin-bottom: 11px;
  transform: rotate(0.05deg);
}
.career_content .career_inner .before_area .before dl {
  display: flex;
  padding-left: 41px;
  align-items: center;
}
.career_content .career_inner .before_area .before dl dt {
  font-size: 1.2rem;
  margin-right: 20px;
}
.career_content .career_inner .before_area .before dl dd {
  font-size: 1.8rem;
  font-weight: 800;
}
.career_content .career_inner .before_area .before dl + dl {
  margin-top: 8px;
}
.career_content .career_inner .before_area .before_triangle {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 69.5px 0 69.5px 27px;
  border-color: transparent transparent transparent #efefef;
  z-index: 10;
  position: absolute;
  bottom: 25px;
  left: 338px;
}
.career_content .career_inner .after {
  background-color: #FF8F8F;
  text-align: left;
  width: 351px;
  height: 139px;
  padding: 6px 9px 6px 24px;
  position: absolute;
  bottom: 25px;
  left: 339px;
}
.career_content .career_inner .after p {
  font-size: 1.2rem;
  font-family: "Montserrat";
  color: #9DD3CF;
  margin-bottom: 11px;
}
.career_content .career_inner .after dl {
  display: flex;
  padding-left: 48px;
  align-items: center;
  color: #fff;
}
.career_content .career_inner .after dl dt {
  font-size: 1.2rem;
  margin-right: 20px;
  transform: rotate(0.05deg);
}
.career_content .career_inner .after dl dd {
  font-size: 1.8rem;
}
.career_content .career_inner .after dl .yellow_dd {
  color: #F8EE73;
}
.career_content .career_inner .after dl + dl {
  margin-top: 8px;
}
.career_content .career_inner img {
  width: 230px;
  height: 230px;
}

.career_content + .career_content {
  margin-top: 50px;
}

.swiper {
  display: none;
}

.recruit {
  width: 100%;
  height: auto;
  background-color: #fff;
  padding-top: 100px;
  padding-bottom: 100px;
  margin: 100px auto;
}
.recruit .recruit_wrapper {
  width: 1446px;
  margin: 0 auto;
}
.recruit .recruit_container {
  width: 1446px;
  height: auto;
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.recruit .recruit_outer {
  position: relative;
  width: 462px;
  height: 644px;
  border: 3px solid #333333;
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 10px 10px 5px -5px #d3d3d3;
  margin-right: 30px;
}
.recruit .recruit_outer img {
  width: 100%;
}
.recruit .recruit_outer .info {
  width: 98px;
  height: 42px;
  background-color: #F8EE73;
  text-align: center;
  line-height: 42px;
  border-radius: 5px;
  border: 2px solid #333333;
  font-size: 1.5rem;
  position: absolute;
  top: 13px;
  left: 19px;
}
.recruit .recruit_outer .copy {
  width: 462px;
  height: 42px;
  background-color: rgba(51, 51, 51, 0.8);
  position: absolute;
  top: 257px;
  left: 0;
}
.recruit .recruit_outer .copy p {
  font-size: 1.6rem;
  color: #fff;
  line-height: 42px;
  padding-left: 24px;
}
.recruit .recruit_outer .list {
  display: flex;
  padding: 0 10px;
  justify-content: left;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
}
.recruit .recruit_outer .list p {
  width: 78px;
  height: 32px;
  font-size: 1.1rem;
  line-height: 32px;
  border-radius: 5px;
}
.recruit .recruit_outer .list p + p {
  margin-left: 4px;
}
.recruit .recruit_outer .list .blue {
  border: 1px solid #4379c4;
  color: #4379c4;
}
.recruit .recruit_outer .list .blue2 {
  width: 89px;
  height: 32px;
  font-size: 1.1rem;
  line-height: 32px;
  border-radius: 5px;
  border: 1px solid #4379c4;
  color: #4379c4;
}
.recruit .recruit_outer .list .orange {
  border: 1px solid #e58b32;
  color: #e58b32;
}
.recruit .recruit_outer .list .orange2 {
  width: 100px;
  height: 32px;
  font-size: 1.1rem;
  line-height: 32px;
  border-radius: 5px;
  border: 1px solid #e58b32;
  color: #e58b32;
}
.recruit .recruit_outer .list .pink {
  border: 1px solid #fc579d;
  color: #fc579d;
}
.recruit .recruit_outer .list .green {
  border: 1px solid #178820;
  color: #178820;
}
.recruit .recruit_outer .while {
  display: flex;
}
.recruit .recruit_outer .while .list {
  padding-right: 4px;
}
.recruit .recruit_outer .while .list_while {
  display: flex;
  justify-content: left;
  text-align: center;
  margin-top: 10px;
  margin-bottom: 20px;
}
.recruit .recruit_outer .while .list_while p {
  height: 32px;
  padding: 0 4px;
  font-size: 1.1rem;
  line-height: 32px;
  border-radius: 5px;
}
.recruit .recruit_outer .while .list_while p + p {
  margin-left: 5px;
}
.recruit .recruit_outer .while .list_while .pink {
  border: 1px solid #fc579d;
  color: #fc579d;
}
.recruit .recruit_outer .while .list_while .green {
  border: 1px solid #178820;
  color: #178820;
}
.recruit .recruit_outer .bold {
  padding: 0 20px;
  font-size: 1.6rem;
  margin-bottom: 33px;
}
.recruit .recruit_outer dl {
  display: flex;
  flex-wrap: wrap;
  padding: 0 24px;
}
.recruit .recruit_outer dl dt {
  width: 20%;
  padding: 6px 0;
  border-top: 1px solid #333333;
  font-weight: 800;
}
.recruit .recruit_outer dl dd {
  width: 80%;
  padding: 6px 0;
  border-top: 1px solid #333333;
}
.recruit .recruit_outer:last-child {
  margin-right: 0;
}

.swiper {
  display: none;
}

.staff_outer {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

@media screen and (max-width: 768px) {
  .staff_member {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
}
.staff_member .staff_card {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .staff_member .staff_card {
    width: min(83.3333333333vw, 375px);
  }
}
.staff_member .staff_card::after {
  content: "";
  z-index: -1;
  position: absolute;
  width: 300px;
  height: 200px;
  bottom: -35px;
  left: 0px;
  border: 5px solid #fff;
}
@media screen and (max-width: 768px) {
  .staff_member .staff_card::after {
    width: min(83.3333333333vw, 375px);
    height: min(55.5555555556vw, 250px);
    bottom: max(-9.7222222222vw, -43.75px);
    left: min(0vw, 0px);
    border: min(1.3888888889vw, 6.25px) solid #fff;
  }
}
.staff_member .staff_card .staff_fukidashi {
  width: 273px;
  height: 118px;
}
@media screen and (max-width: 768px) {
  .staff_member .staff_card .staff_fukidashi {
    width: min(75.8333333333vw, 341.25px);
    height: min(32.7777777778vw, 147.5px);
  }
}
.staff_member .staff_card .staff_fukidashi img {
  width: 100%;
  height: 100%;
}
.staff_member .staff_card .staff_fukidashi p {
  width: 100%;
  height: 100%;
  padding: 0 16px 25px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-top: -120px;
  font-size: 16px;
  line-height: 20px;
}
@media screen and (max-width: 768px) {
  .staff_member .staff_card .staff_fukidashi p {
    padding: 0 min(4.4444444444vw, 20px) min(6.9444444444vw, 31.25px);
    margin-top: max(-33.3333333333vw, -150px);
    font-size: min(4.4444444444vw, 20px);
    line-height: min(5.5555555556vw, 25px);
  }
}
.staff_member .staff_card .staff_img {
  width: 180px;
  height: 240px;
  margin-top: -25px;
  margin-bottom: -15px;
}
@media screen and (max-width: 768px) {
  .staff_member .staff_card .staff_img {
    width: min(50vw, 225px);
    height: min(66.6666666667vw, 300px);
    margin-top: max(-6.9444444444vw, -31.25px);
    margin-bottom: max(-4.1666666667vw, -18.75px);
  }
}
.staff_member .staff_card .staff_inner {
  text-align: center;
}
.staff_member .staff_card .staff_inner span {
  font-size: 14px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .staff_member .staff_card .staff_inner span {
    font-size: min(3.8888888889vw, 17.5px);
  }
}
.staff_member .staff_card .staff_inner p {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .staff_member .staff_card .staff_inner p {
    font-size: min(5.5555555556vw, 25px);
  }
}
.staff_member .staff_card .staff_hover {
  opacity: 0;
  transition: all 0.3s ease;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 405px;
  background-color: rgba(255, 255, 255, 0.9333333333);
  padding: 20px;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .staff_member .staff_card .staff_hover {
    height: min(112.5vw, 506.25px);
    padding: min(3.8888888889vw, 17.5px);
    font-size: min(4.4444444444vw, 20px);
  }
}
.staff_member .staff_card .staff_hover dt {
  margin-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .staff_member .staff_card .staff_hover dt {
    margin-bottom: min(2.2222222222vw, 10px);
  }
}
.staff_member .staff_card .staff_hover dd {
  margin-bottom: 16px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .staff_member .staff_card .staff_hover dd {
    margin-bottom: min(4.4444444444vw, 20px);
  }
}
.staff_member .staff_card .staff_hover .staff_txt {
  position: absolute;
  text-align: center;
  left: 50%;
  transform: translateX(-50%);
  bottom: 33px;
}
@media screen and (max-width: 768px) {
  .staff_member .staff_card .staff_hover .staff_txt {
    display: block;
    bottom: min(9.7222222222vw, 43.75px);
  }
}
.staff_member .staff_card .staff_hover .staff_txt span {
  font-size: 14px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .staff_member .staff_card .staff_hover .staff_txt span {
    font-size: min(3.8888888889vw, 17.5px);
  }
}
.staff_member .staff_card .staff_hover .staff_txt p {
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .staff_member .staff_card .staff_hover .staff_txt p {
    font-size: min(5.5555555556vw, 25px);
  }
}
.staff_member .staff_card.open .staff_hover {
  opacity: 1;
}
.staff_member .staff_card .staff_btn {
  z-index: 10;
  position: absolute;
  right: 15px;
  bottom: 0px;
  width: 25px;
  height: 25px;
  transition: all 0.3s ease;
  pointer-events: all;
}
.staff_member .staff_card .staff_btn:hover {
  opacity: 0.5;
}
.staff_member .staff_card .staff_btn::after {
  content: "";
  position: absolute;
  width: 25px;
  height: 5px;
  background-color: #FF8F8F;
  border-radius: 99px;
  top: 10px;
}
.staff_member .staff_card .staff_btn::before {
  content: "";
  position: absolute;
  height: 25px;
  width: 5px;
  background-color: #FF8F8F;
  border-radius: 99px;
  left: 10px;
}
.staff_member .staff_card.open .staff_btn {
  transform: rotate(45deg);
}

.staff_container {
  width: 100vw;
  overflow-x: hidden;
  overflow-y: visible;
  position: relative;
  margin-bottom: 100px;
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .staff_container {
    margin-bottom: min(0vw, 0px);
    margin-top: min(13.8888888889vw, 62.5px);
  }
}
.staff_container .swiper-staff {
  width: 2050px;
  margin-left: calc((2050px - 100vw) / 2 * -1);
  position: relative;
}
@media screen and (max-width: 768px) {
  .staff_container .swiper-staff {
    width: 100vw;
    padding: 0 min(3.8888888889vw, 17.5px);
    margin: 0;
  }
}
.staff_container .swiper-wrapper {
  height: 580px;
}
@media screen and (max-width: 768px) {
  .staff_container .swiper-wrapper {
    height: min(161.1111111111vw, 725px);
  }
}
.staff_container .swiper-pagination {
  bottom: 100px !important;
}
.staff_container .swiper-pagination-bullet {
  width: 16px;
  height: 16px;
  background-color: #fff;
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .staff_container .swiper-pagination-bullet {
    width: min(4.4444444444vw, 20px);
    height: min(4.4444444444vw, 20px);
  }
}
.staff_container .swiper-pagination-bullet-active {
  background-color: #FF8F8F;
}

.staff_ttl01 {
  margin-top: -30px;
  font-size: 20px;
  margin-bottom: 50px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .staff_ttl01 {
    margin-top: max(-8.3333333333vw, -37.5px);
    font-size: min(4.4444444444vw, 20px);
    margin-bottom: min(13.8888888889vw, 62.5px);
  }
}

.staff_ttl02 {
  font-size: 30px;
  line-height: 50px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .staff_ttl02 {
    font-size: min(5.5555555556vw, 25px);
    line-height: min(9.7222222222vw, 43.75px);
    padding: 0 min(3.8888888889vw, 17.5px);
  }
}

.flow_step {
  margin-bottom: 100px;
}

.flow_step-container {
  width: 970px;
  height: auto;
  margin: 0 auto;
}

.flow_outer {
  width: 930px;
  height: auto;
  margin-left: 40px;
  display: flex;
  position: relative;
}
.flow_outer .flow_step-img {
  width: 80px;
  height: 80px;
  position: absolute;
  top: -24px;
  left: -40px;
  z-index: 10;
}

.flow_item {
  display: flex;
  justify-content: right;
  width: 174px;
  margin-right: 30px;
  border-left: 3px solid #000000;
  margin-left: -1.5px;
}
@media screen and (max-width: 768px) {
  .flow_item {
    width: min(50vw, 225px);
    gap: min(5.5555555556vw, 25px);
  }
}
.flow_item .flow_part {
  width: 118px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: left;
  position: relative;
}
.flow_item .flow_part::after {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  border: 2px solid #333333;
  left: 90px;
  border-radius: 99px;
  background-color: #fff;
}
.flow_item .flow_part::before {
  border-top: 2px solid #333333;
  content: "";
  width: 90px;
}
@media screen and (max-width: 768px) {
  .flow_item .flow_part {
    width: min(33.3333333333vw, 150px);
  }
  .flow_item .flow_part::after {
    content: "";
    position: absolute;
    width: min(4.4444444444vw, 20px);
    height: min(4.4444444444vw, 20px);
    border: min(0.5555555556vw, 2.5px) solid #333333;
    left: min(33.3333333333vw, 150px);
    border-radius: 99px;
    background-color: #fff;
  }
  .flow_item .flow_part::before {
    border-top: min(0.5555555556vw, 2.5px) solid #333333;
    content: "";
    width: min(33.3333333333vw, 150px);
  }
}
.flow_item .flow_span {
  height: 29px;
  background-color: #FF8F8F;
  text-align: center;
  display: flex;
  align-items: baseline;
  line-height: 29px;
  border-radius: 5px;
  margin: 0 0 0 auto;
  white-space: nowrap;
  padding: 0 8px;
}
.flow_item .span_l {
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  margin-right: 2px;
}
.flow_item .span_r {
  font-size: 20px;
  font-weight: 800;
  font-family: "Montserrat";
  color: #fff;
}

.flow_inner {
  margin-bottom: 120px;
}
.flow_inner h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 20px;
}
.flow_inner p {
  font-size: 1.4rem;
  line-height: 20px;
  margin-bottom: 20px;
}

.flow_btn-01-sp {
  display: none;
}

.flow_end {
  border-left: none;
  margin-bottom: 156px;
}

.flow_btn {
  display: flex;
}

.flow_btn-02 {
  display: block;
  width: 240px;
  height: 90px;
  border: 2px solid #333333;
  border-radius: 8px;
  background-color: #fff;
  text-align: center;
  padding-top: 8px;
  box-shadow: 10px 10px 5px -5px #d3d3d3;
}
.flow_btn-02 p {
  font-size: 1rem;
  font-weight: 800;
  margin-bottom: 8px;
}
.flow_btn-02 p img {
  margin-right: 6px;
}
.flow_btn-02 .flow_btn-02-tel {
  font-size: 2.7rem;
  font-weight: 800;
  font-family: "Montserrat";
  color: #FF8F8F;
  margin-bottom: 4px;
}
.flow_btn-02 .flow_btn-txt span {
  color: #FF8F8F;
}

@media screen and (max-width: 768px) {
  .flow_step {
    margin-bottom: 0;
  }
  .flow_step-container {
    width: min(86.1111111111vw, 387.5px);
    height: auto;
    margin: 0 auto;
  }
  .flow_outer {
    flex-direction: column;
    width: min(75vw, 337.5px);
    height: auto;
    padding-bottom: min(13.8888888889vw, 62.5px);
  }
  .flow_outer .flow_step-img {
    width: min(22.2222222222vw, 100px);
    height: min(22.2222222222vw, 100px);
    position: absolute;
    top: max(-6.6666666667vw, -30px);
    left: max(-11.9444444444vw, -53.75px);
    z-index: 10;
  }
  .flow_outer .flow_inner {
    margin: min(11.1111111111vw, 50px) 0 min(5.5555555556vw, 25px) min(3.8888888889vw, 17.5px);
  }
  .flow_outer .flow_inner h3 {
    font-size: min(4.4444444444vw, 20px);
    line-height: min(5.5555555556vw, 25px);
    font-weight: 800;
    margin-bottom: min(5.5555555556vw, 25px);
  }
  .flow_outer .flow_inner p {
    font-size: min(3.3333333333vw, 15px);
    line-height: min(5vw, 22.5px);
    font-weight: normal;
    line-height: min(5vw, 22.5px);
    text-align: justify;
  }
  .flow_outer .flow_inner .flow_btn {
    flex-direction: column;
  }
  .flow_outer .flow_inner .flow_btn .flow_btn-01 {
    display: none;
  }
  .flow_outer .flow_inner .flow_btn .flow_btn-02 {
    width: min(66.6666666667vw, 300px);
    height: min(25vw, 112.5px);
    padding: min(2.7777777778vw, 12.5px);
  }
  .flow_outer .flow_inner .flow_btn .flow_btn-02 p {
    font-size: min(2.7777777778vw, 12.5px);
    font-weight: 800;
    margin-bottom: min(2.2222222222vw, 10px);
    display: flex;
    align-items: center;
  }
  .flow_outer .flow_inner .flow_btn .flow_btn-02 p img {
    margin-right: min(1.6666666667vw, 7.5px);
    height: min(2.7777777778vw, 12.5px);
  }
  .flow_outer .flow_inner .flow_btn .flow_btn-02-tel {
    font-size: min(5.5555555556vw, 25px) !important;
    font-family: "Montserrat";
    color: #FF8F8F;
    margin-bottom: min(1.1111111111vw, 5px);
    text-align: center;
    justify-content: center;
  }
  .flow_outer .flow_inner .flow_btn .flow_btn-txt {
    text-align: center;
    justify-content: center;
  }
  .flow_outer .flow_inner .flow_btn .flow_btn-txt span {
    color: #FF8F8F;
    margin: 0 min(1.1111111111vw, 5px);
  }
  .line_1 {
    border-left: min(1.3888888889vw, 6.25px) solid #000000;
  }
  .flow_end {
    margin-bottom: 0;
  }
}
.accordion {
  padding: 0 0 80px 100px;
  width: 960px;
}

.toggle {
  display: none;
}

.option {
  position: relative;
  margin-bottom: 90px;
}

.option_img {
  display: block;
  position: absolute;
  z-index: 10;
  top: -40px;
  left: -70px;
}

.title,
.content {
  backface-visibility: hidden;
  transform: translateZ(0);
  transition: all 0.3s;
}

.title {
  background-color: #FF8F8F;
  padding: 37px 0 32px 74px;
  display: block;
  color: #fff;
  font-size: 2.2rem;
  font-weight: bold;
  border-top-right-radius: 15px;
}

.title::after,
.title::before {
  content: "";
  position: absolute;
  right: 40px;
  top: 35px;
  width: 5px;
  height: 30px;
  background-color: #fff;
  transition: all 0.3s;
}

.title::after {
  transform: rotate(90deg);
}

.content {
  max-height: 0;
  overflow: hidden;
}

.content p {
  margin: 0;
  padding: 40px 30px;
  font-size: 1.6rem;
  line-height: 23px;
  background-color: #fff;
  transform: rotate(0.05deg);
  border-bottom-left-radius: 15px;
  border-bottom-right-radius: 15px;
}

.toggle:checked + .title + .content {
  max-height: 500px;
  transition: all 1.5s;
}

.toggle:checked + .title::before {
  transform: rotate(90deg) !important;
}

@media screen and (max-width: 768px) {
  .accordion {
    padding: 0 min(2.7777777778vw, 12.5px) 0 min(5.5555555556vw, 25px);
    width: min(75vw, 337.5px);
  }
  .toggle {
    display: none;
  }
  .option {
    position: relative;
    margin-bottom: min(13.8888888889vw, 62.5px);
  }
  .option_img {
    width: min(16.1111111111vw, 72.5px);
    height: auto;
    display: block;
    position: absolute;
    z-index: 10;
    top: max(-7.2222222222vw, -32.5px);
    left: max(-3.8888888889vw, -17.5px);
  }
  .title,
  .content {
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
  }
  .title {
    background-color: #FF8F8F;
    padding: min(3.0555555556vw, 13.75px) min(13.8888888889vw, 62.5px);
    display: block;
    color: #fff;
    font-size: min(4.4444444444vw, 20px);
    font-weight: bold;
    border-top-right-radius: min(2.7777777778vw, 12.5px);
  }
  .title::after,
  .title::before {
    content: "";
    position: absolute;
    right: min(6.3888888889vw, 28.75px);
    top: min(3.0555555556vw, 13.75px);
    width: min(0.8333333333vw, 3.75px);
    height: min(4.4444444444vw, 20px);
    background-color: #fff;
    transition: all 0.3s;
  }
  .title::after {
    transform: rotate(90deg);
  }
  .content {
    max-height: 0;
    overflow: hidden;
  }
  .content p {
    margin: 0;
    padding: min(8.3333333333vw, 37.5px) min(4.1666666667vw, 18.75px);
    font-size: min(4.4444444444vw, 20px);
    line-height: 1.2em;
    font-weight: normal;
    background-color: #fff;
    transform: rotate(0.05deg);
    border-bottom-left-radius: min(4.1666666667vw, 18.75px);
    border-bottom-right-radius: min(4.1666666667vw, 18.75px);
  }
  .toggle:checked + .title + .content {
    max-height: min(138.8888888889vw, 625px);
    transition: all 1.5s;
  }
  .toggle:checked + .title::before {
    transform: rotate(90deg) !important;
  }
}
@media screen and (max-width: 520px) {
  .swiper-pag1 .swiper {
    display: block;
    width: 320px;
    height: 450px;
    margin: 30px auto 50px auto;
    position: relative;
    border-radius: 10px;
    box-shadow: 10px 10px 5px -5px #999;
  }
  .swiper-pag1 .swiper .swiper-wrapper {
    width: 320px;
  }
  .swiper-pag1 .swiper .swiper-slide {
    text-align: center;
    width: 320px;
    background-color: #fff;
    padding: 20px;
    box-sizing: border-box;
    border-radius: 10px;
    transform: rotate(0.05deg);
  }
  .swiper-pag1 .swiper .swiper-slide img {
    width: 150px;
    height: 150px;
    margin-bottom: 20px;
  }
  .swiper-pag1 .swiper .swiper-slide p {
    font-size: 1.4rem;
    margin-bottom: 14px;
    font-weight: normal;
    color: #707070;
  }
  .swiper-pag1 .swiper .swiper-slide h3 {
    font-size: 2.2rem;
    margin-bottom: 20px;
  }
  .swiper-pag1 .swiper .swiper-slide .swiper_txt {
    font-size: 1.4rem;
    text-align: left;
    line-height: 30px;
  }
  .swiper-pag1 .swiper .swiper-pagination-bullet {
    background-color: #FF8F8F;
  }
  .worries {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  .swiper-pag2 .swiper {
    display: block;
    width: 320px;
    height: 660px;
    margin: 30px auto;
    position: relative;
    border-radius: 10px;
    box-shadow: 10px 10px 5px -5px #999;
  }
  .swiper-pag2 .swiper .swiper-wrapper {
    width: 320px;
  }
  .swiper-pag2 .swiper .swiper-slide {
    width: 320px;
    background-color: #fff;
    margin: 0 auto;
    padding: 25px 25px 20px;
  }
  .swiper-pag2 .swiper .swiper-slide img {
    display: block;
    width: 165px;
    height: 165px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
  .swiper-pag2 .swiper .swiper-slide p {
    font-size: 1.4rem;
    font-weight: normal;
    color: #707070;
    margin-bottom: 15px;
  }
  .swiper-pag2 .swiper .swiper-slide h4 {
    font-size: 1.8rem;
    margin-bottom: 30px;
  }
  .swiper-pag2 .swiper .swiper-slide .before {
    position: relative;
    z-index: 10;
  }
  .swiper-pag2 .swiper .swiper-slide .before,
  .swiper-pag2 .swiper .swiper-slide .after {
    background-color: #efefef;
    width: 270px;
    height: 139px;
    padding: 6px 9px;
    margin: 0 auto;
  }
  .swiper-pag2 .swiper .swiper-slide .before p,
  .swiper-pag2 .swiper .swiper-slide .after p {
    font-size: 1.2rem;
    font-family: "Montserrat";
    color: #9dd3cf;
    margin-bottom: 11px;
    transform: rotate(0.05deg);
  }
  .swiper-pag2 .swiper .swiper-slide .before dl,
  .swiper-pag2 .swiper .swiper-slide .after dl {
    display: flex;
    padding-left: 41px;
    align-items: center;
  }
  .swiper-pag2 .swiper .swiper-slide .before dl dt,
  .swiper-pag2 .swiper .swiper-slide .after dl dt {
    font-size: 1.2rem;
    font-weight: normal;
    margin-right: 20px;
  }
  .swiper-pag2 .swiper .swiper-slide .before dl dd,
  .swiper-pag2 .swiper .swiper-slide .after dl dd {
    font-size: 1.8rem;
  }
  .swiper-pag2 .swiper .swiper-slide .before dl + dl,
  .swiper-pag2 .swiper .swiper-slide .after dl + dl {
    margin-top: 8px;
  }
  .swiper-pag2 .swiper .swiper-slide .before_triangle {
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 27px 135px 0 135px;
    border-color: #efefef transparent transparent transparent;
    position: relative;
    z-index: 10;
  }
  .swiper-pag2 .swiper .swiper-slide .after {
    background-color: #FF8F8F;
    height: 160px;
    position: absolute;
    padding-top: 15px;
    bottom: 32px;
  }
  .swiper-pag2 .swiper .swiper-slide .after .yellow_dd {
    font-size: 2.5rem;
    color: #F8EE73;
  }
  .swiper-pag2 .swiper .swiper-pagination-bullet {
    background-color: #FF8F8F;
  }
  .career {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  .swiper-pag3 {
    width: 100%;
    height: auto;
    background-color: #fff;
    padding-top: 50px;
    padding-bottom: 50px;
    margin: 20px auto;
  }
  .swiper-pag3 .swiper {
    display: block;
    width: 320px;
    position: relative;
    border: 2px solid #333333;
    border-radius: 10px;
    box-shadow: 10px 10px 5px -5px #999;
  }
  .swiper-pag3 .swiper .swiper-slide {
    position: relative;
    height: 644px;
  }
  .swiper-pag3 .swiper .swiper-slide img {
    width: 100%;
  }
  .swiper-pag3 .swiper .swiper-slide .info {
    width: 98px;
    height: 42px;
    background-color: #F8EE73;
    text-align: center;
    line-height: 42px;
    border-radius: 5px;
    border: 2px solid #333333;
    font-size: 1.5rem;
    position: absolute;
    top: 13px;
    left: 19px;
  }
  .swiper-pag3 .swiper .swiper-slide .copy-sp {
    width: 320px;
    height: 42px;
    background-color: rgba(51, 51, 51, 0.8);
    position: absolute;
    top: 166px;
  }
  .swiper-pag3 .swiper .swiper-slide .copy-sp p {
    font-size: 1.6rem;
    color: #fff;
    line-height: 42px;
    padding-left: 24px;
  }
  .swiper-pag3 .swiper .swiper-slide .list-sp {
    width: 300px;
    margin: 10px auto 20px auto;
    display: grid;
    grid-template-columns: repeat(3, 78px);
    grid-auto-rows: auto;
    gap: 10px 6px;
    text-align: center;
  }
  .swiper-pag3 .swiper .swiper-slide .list-sp p {
    width: 78px;
    height: 32px;
    font-size: 1.1rem;
    line-height: 32px;
    border-radius: 5px;
  }
  .swiper-pag3 .swiper .swiper-slide .list-sp p + p {
    margin: 0;
  }
  .swiper-pag3 .swiper .swiper-slide .list-sp .blue {
    border: 1px solid #4379c4;
    color: #4379c4;
  }
  .swiper-pag3 .swiper .swiper-slide .list-sp .blue2 {
    width: 89px;
    height: 32px;
    font-size: 1.1rem;
    line-height: 32px;
    border-radius: 5px;
    border: 1px solid #4379c4;
    color: #4379c4;
  }
  .swiper-pag3 .swiper .swiper-slide .list-sp .orange {
    border: 1px solid #e58b32;
    color: #e58b32;
  }
  .swiper-pag3 .swiper .swiper-slide .list-sp .orange2 {
    width: 100px;
    height: 32px;
    font-size: 1.1rem;
    line-height: 32px;
    border-radius: 5px;
    border: 1px solid #e58b32;
    color: #e58b32;
  }
  .swiper-pag3 .swiper .swiper-slide .list-sp .pink {
    border: 1px solid #fc579d;
    color: #fc579d;
  }
  .swiper-pag3 .swiper .swiper-slide .list-sp .green {
    border: 1px solid #178820;
    color: #178820;
  }
  .swiper-pag3 .swiper .swiper-slide .while .list-sp {
    grid-template-columns: repeat(2, 89px);
    margin: 10px auto 6px auto;
  }
  .swiper-pag3 .swiper .swiper-slide .while .list_while {
    width: 300px;
    margin: 0 auto 20px auto;
    display: grid;
    grid-template-columns: repeat(3, 78px);
    grid-auto-rows: auto;
    gap: 10px 6px;
    text-align: center;
  }
  .swiper-pag3 .swiper .swiper-slide .while .list_while p {
    width: 78px;
    height: 32px;
    font-size: 1.1rem;
    line-height: 32px;
    border-radius: 5px;
  }
  .swiper-pag3 .swiper .swiper-slide .while .list_while p + p {
    margin: 0;
  }
  .swiper-pag3 .swiper .swiper-slide .while .list_while .pink {
    border: 1px solid #fc579d;
    color: #fc579d;
  }
  .swiper-pag3 .swiper .swiper-slide .while .list_while .green {
    border: 1px solid #178820;
    color: #178820;
  }
  .swiper-pag3 .swiper .swiper-slide .bold {
    padding: 0 20px;
    font-size: 1.6rem;
    margin-bottom: 23px;
    transform: rotate(0.05deg);
  }
  .swiper-pag3 .swiper .swiper-slide dl {
    display: flex;
    flex-wrap: wrap;
    padding: 0 24px;
  }
  .swiper-pag3 .swiper .swiper-slide dl dt {
    width: 30%;
    padding: 6px 0;
    border-top: 1px solid #dddddd;
    font-weight: 800;
  }
  .swiper-pag3 .swiper .swiper-slide dl dd {
    width: 70%;
    padding: 6px 0;
    color: #707070;
    font-weight: normal;
    border-top: 1px solid #dddddd;
  }
  .swiper-pag3 .swiper .swiper-pagination-bullet {
    background-color: #FF8F8F;
  }
  .recruit {
    display: none;
  }
}
@media screen and (max-width: 520px) {
  .swiper-pag4 .swiper {
    display: block;
    width: 320px;
    height: 420px;
    margin: 30px auto 50px auto;
    position: relative;
    border-radius: 10px;
    box-shadow: 10px 10px 5px -5px #999;
  }
  .swiper-pag4 .swiper .swiper-wrapper {
    width: 320px;
  }
  .swiper-pag4 .swiper .swiper-pagination-bullet {
    background-color: #FF8F8F;
  }
  .swiper-pag4 .swiper-slide {
    width: 320px;
    height: 545px;
    background-color: #fff;
  }
  .swiper-pag4 .swiper-slide .staff_up {
    width: 320px;
    height: 220px;
    display: flex;
    background-color: #FF8F8F;
    padding: 20px 15px 0 0;
  }
  .swiper-pag4 .swiper-slide .staff_up img {
    width: 135px;
    height: 180px;
  }
  .swiper-pag4 .swiper-slide .staff_up .staff_inner {
    color: #fff;
  }
  .swiper-pag4 .swiper-slide .staff_up .staff_inner span {
    display: block;
    margin-bottom: 14px;
    font-weight: normal;
    font-size: 1.1rem;
  }
  .swiper-pag4 .swiper-slide .staff_up .staff_inner .staff_name {
    font-size: 1.8rem;
    margin-bottom: 28px;
  }
  .swiper-pag4 .swiper-slide .staff_up .staff_inner .staff_copy {
    font-size: 1.6rem;
    color: #F8EE73;
  }
  .swiper-pag4 .swiper-slide dl {
    display: flex;
    flex-wrap: wrap;
    padding: 30px 13px 15px 15px;
    font-size: 1.4rem;
    transform: rotate(0.05deg);
  }
  .swiper-pag4 .swiper-slide dl dt {
    width: 40%;
    margin-bottom: 11px;
  }
  .swiper-pag4 .swiper-slide dl dd {
    width: 60%;
    margin-bottom: 11px;
    font-size: 1.2rem;
    font-weight: normal;
  }
  .staff,
  .staff_txt {
    display: none;
  }
}
.contact {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto 0;
  transform: translateY(-587px);
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .contact {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 768px) {
  .contact {
    width: min(91.6666666667vw, 412.5px);
    transform: translateY(max(-101.1111111111vw, -455px));
  }
}
.contact_finish {
  width: 100%;
  max-width: 1000px;
  margin: 200px auto;
  transform: none;
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .contact_finish {
    padding-left: 50px;
    padding-right: 50px;
  }
}
@media screen and (max-width: 768px) {
  .contact_finish {
    width: min(91.6666666667vw, 412.5px);
    margin: min(55.5555555556vw, 250px) auto;
    transform: none;
  }
}
.contact_finish .contact_content .form {
  margin-bottom: 0;
}
.contact_finish .contact_content .form_content {
  margin-bottom: 0;
}
.contact_finish .contact_content .form_next-button {
  display: block;
  background-color: #FF8F8F;
  pointer-events: all;
}
.contact_head {
  position: relative;
  width: 100%;
  max-width: 900px;
  margin: 0 auto;
  background-color: #FF8F8F;
  border-radius: 10px 10px 0 0;
  text-align: center;
  color: #fff;
  font-family: "M PLUS 1", sans-serif;
  font-weight: 700;
  padding-top: 16px;
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .contact_head {
    width: calc(100% - 50px);
  }
}
@media screen and (max-width: 768px) {
  .contact_head {
    width: min(83.3333333333vw, 375px);
    border-radius: min(2.7777777778vw, 12.5px) min(2.7777777778vw, 12.5px) 0 0;
    padding-top: min(2.2222222222vw, 10px);
  }
}
.contact_head p {
  font-size: 20px;
  line-height: 20px;
}
@media screen and (max-width: 768px) {
  .contact_head p {
    font-size: min(2.7777777778vw, 12.5px);
    line-height: min(2.2222222222vw, 10px);
  }
}
.contact_head h2 {
  font-size: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .contact_head h2 {
    font-size: min(3.3333333333vw, 15px);
  }
}
.contact_head h2 span {
  color: #F8EE73;
  font-size: 61px;
  margin: 0 8px;
}
@media screen and (max-width: 768px) {
  .contact_head h2 span {
    font-size: min(5.5555555556vw, 25px);
    margin: 0 min(1.1111111111vw, 5px);
  }
}
.contact_head_pop {
  position: absolute;
  top: -112px;
  left: -82px;
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .contact_head_pop {
    top: -160px;
  }
}
@media screen and (max-width: 768px) {
  .contact_head_pop {
    width: min(27.7777777778vw, 125px);
    top: max(-11.6666666667vw, -52.5px);
    left: max(-11.6666666667vw, -52.5px);
  }
}
.contact_content {
  border-radius: 10px;
  background-color: #fff;
  padding: 60px 50px;
}
@media screen and (max-width: 768px) {
  .contact_content {
    padding: min(8.3333333333vw, 37.5px) min(3.8888888889vw, 17.5px) min(13.8888888889vw, 62.5px);
    border-radius: min(2.7777777778vw, 12.5px);
  }
}
@media screen and (max-width: 768px) {
  .contact_content .wpcf7-response-output {
    margin: min(22.2222222222vw, 100px) auto min(0vw, 0px) !important;
    font-size: min(3.3333333333vw, 15px);
    width: min(72.2222222222vw, 325px);
  }
}
.contact_content .form-window-hidden {
  display: none;
}
.contact_content .form_content {
  margin-bottom: 124px;
}
@media screen and (max-width: 768px) {
  .contact_content .form_content {
    margin-bottom: min(14.4444444444vw, 65px);
  }
}
.contact_content .form_section {
  margin-bottom: 94px;
}
@media screen and (max-width: 768px) {
  .contact_content .form_section {
    margin-bottom: min(8.3333333333vw, 37.5px);
  }
}
.contact_content .form_require {
  display: inline-block;
  font-size: 23px;
  line-height: 50px;
  height: 50px;
  width: 120px;
  text-align: center;
  border: 1px solid #E36969;
  margin-left: 24px;
  color: #E36969;
}
@media screen and (max-width: 768px) {
  .contact_content .form_require {
    font-size: min(3.3333333333vw, 15px);
    line-height: min(6.9444444444vw, 31.25px);
    height: min(6.9444444444vw, 31.25px);
    width: min(17.7777777778vw, 80px);
    margin-left: min(6.6666666667vw, 30px);
    border: min(0.2777777778vw, 1.25px) solid #E36969;
    border-radius: min(0.8333333333vw, 3.75px);
  }
}
.contact_content .form_require_not {
  display: inline-block;
  font-size: 23px;
  line-height: 50px;
  height: 50px;
  width: 120px;
  text-align: center;
  margin-left: 24px;
  color: #5394E0;
  border: 1px solid #5394E0;
}
@media screen and (max-width: 768px) {
  .contact_content .form_require_not {
    font-size: min(3.3333333333vw, 15px);
    line-height: min(6.9444444444vw, 31.25px);
    height: min(6.9444444444vw, 31.25px);
    width: min(17.7777777778vw, 80px);
    margin-left: min(6.6666666667vw, 30px);
    border: min(0.2777777778vw, 1.25px) solid #5394E0;
    border-radius: min(0.8333333333vw, 3.75px);
  }
}
.contact_content .form_title {
  font-size: 38px;
  line-height: 1.2;
  margin-bottom: 30px;
  display: flex;
  align-items: center;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .contact_content .form_title {
    font-size: min(5vw, 22.5px);
    margin-bottom: min(2.7777777778vw, 12.5px);
  }
}
.contact_content .form_label {
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 28px;
}
@media screen and (max-width: 768px) {
  .contact_content .form_label {
    font-size: min(3.0555555556vw, 13.75px);
    margin-bottom: min(6.1111111111vw, 27.5px);
  }
}
.contact_content .form_select .wpcf7-checkbox,
.contact_content .form_select .wpcf7-radio {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .contact_content .form_select .wpcf7-checkbox,
  .contact_content .form_select .wpcf7-radio {
    gap: min(4.4444444444vw, 20px);
  }
}
.contact_content .form_select input[type=radio]:checked + .wpcf7-list-item-label::before {
  background-color: transparent !important;
  /* チェック後の中心の色 */
  box-shadow: none;
  /* 中心の色のスタイル */
  border: none;
}
.contact_content .form_select input[type=radio]:checked + .wpcf7-list-item-label,
.contact_content .form_select input[type=checkbox]:checked + .wpcf7-list-item-label {
  background-color: #FFD6D6;
}
.contact_content .form-button {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.contact_content .form_next-button {
  margin: 10px auto 0;
  width: 500px;
  height: 100px;
  background-color: #AAA;
  color: white;
  font-size: 38px;
  line-height: 100px;
  text-align: center;
  border-radius: 8px;
  cursor: pointer;
  pointer-events: none;
  opacity: 1;
  transition: all 0.5s ease;
}
.contact_content .form_next-button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .contact_content .form_next-button {
    margin: 0 auto;
    width: min(72.2222222222vw, 325px);
    height: min(16.6666666667vw, 75px);
    font-size: min(5vw, 22.5px);
    line-height: min(16.6666666667vw, 75px);
    border-radius: min(2.2222222222vw, 10px);
  }
}
.contact_content .form_next-button.active {
  pointer-events: all;
  background-color: #FF8F8F;
}
.contact_content .form_submit-button {
  display: none;
  opacity: 1;
  transition: all 0.5s ease;
}
.contact_content .form_submit-button:hover {
  opacity: 0.7;
}
.contact_content .form_submit-button p {
  display: flex;
  flex-direction: column;
}
.contact_content .form_submit-button .wpcf7-submit {
  width: 500px;
  height: 100px;
  border-radius: 8px;
  font-size: 38px;
  color: white;
  background-color: #AAA;
  font-weight: 700;
  cursor: pointer;
  border: none;
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  .contact_content .form_submit-button .wpcf7-submit {
    margin: max(-5.5555555556vw, -25px) auto 0;
    width: min(72.2222222222vw, 325px);
    height: min(16.6666666667vw, 75px);
    font-size: min(5vw, 22.5px);
    line-height: min(16.6666666667vw, 75px);
    border-radius: min(2.2222222222vw, 10px);
  }
}
.contact_content .form_submit-button.active .wpcf7-submit {
  pointer-events: all;
  background-color: #FF8F8F;
}
.contact_content .form_submit-button p {
  width: 100%;
  text-align: center;
  color: #333;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .contact_content .form_submit-button p {
    font-size: min(2.5vw, 11.25px);
    margin-top: max(-2.7777777778vw, -12.5px);
  }
}
.contact_content .form_pre-button {
  position: absolute;
  width: 120px;
  height: 50px;
  transition: all 0.3s ease;
  left: 0;
  background-color: #EEE;
  color: #333333;
  font-size: 18px;
  line-height: 20px;
  text-align: center;
  border-radius: 7px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 1;
  transition: all 0.5s ease;
}
.contact_content .form_pre-button:hover {
  opacity: 0.7;
}
@media screen and (max-width: 768px) {
  .contact_content .form_pre-button {
    width: min(33.3333333333vw, 150px);
    height: min(13.8888888889vw, 62.5px);
    font-size: min(5vw, 22.5px);
    line-height: min(13.8888888889vw, 62.5px);
    border-radius: min(2.2222222222vw, 10px);
    top: min(20vw, 90px);
    left: min(5.5555555556vw, 25px);
  }
}
.contact_content .form_pre-button svg {
  margin-top: -4px;
  margin-right: 8px;
}
.contact_content .form_pre-button:hover {
  background-color: #AAA;
}
.contact_content .form_section_01 .wpcf7-list-item {
  width: 170px;
  height: 170px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .contact_content .form_section_01 .wpcf7-list-item {
    width: min(24.4444444444vw, 110px);
    height: min(24.4444444444vw, 110px);
  }
}
.contact_content .form_section_01 .wpcf7-list-item-label {
  width: 100%;
  height: 100%;
  text-align: center;
  border: 10px solid #FFD6D6;
  border-radius: 20px;
  background-color: #F8F5ED;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  font-size: 20px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .contact_content .form_section_01 .wpcf7-list-item-label {
    border: min(1.3888888889vw, 6.25px) solid #FFD6D6;
    border-radius: min(2.7777777778vw, 12.5px);
    padding: min(2.2222222222vw, 10px);
    font-size: min(2.7777777778vw, 12.5px);
  }
}
.contact_content .form_section_01 .wpcf7-list-item-label::before {
  border: none;
  background: none;
  border-radius: 0;
  background-size: 80px 80px;
  width: 80px;
  height: 80px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .contact_content .form_section_01 .wpcf7-list-item-label::before {
    background-size: min(11.1111111111vw, 50px) min(11.1111111111vw, 50px);
    width: min(11.1111111111vw, 50px);
    height: min(11.1111111111vw, 50px);
  }
}
.contact_content .form_section_01 .wpcf7-list-item-label::after {
  content: none;
}
.contact_content .form_section_01 .wpcf7-list-item:nth-of-type(1) .wpcf7-list-item-label::before {
  background-image: url(/wp-content/themes/jobs2/image/contact/time-01.svg);
}
.contact_content .form_section_01 .wpcf7-list-item:nth-of-type(2) .wpcf7-list-item-label::before {
  background-image: url(/wp-content/themes/jobs2/image/contact/time-02.svg);
}
.contact_content .form_section_01 .wpcf7-list-item:nth-of-type(3) .wpcf7-list-item-label::before {
  background-image: url(/wp-content/themes/jobs2/image/contact/time-03.svg);
}
.contact_content .form_section_01 .wpcf7-list-item:nth-of-type(4) .wpcf7-list-item-label::before {
  background-image: url(/wp-content/themes/jobs2/image/contact/time-04.svg);
}
.contact_content .form_section_01 .wpcf7-list-item:nth-of-type(5) .wpcf7-list-item-label {
  justify-content: center;
}
.contact_content .form_section_01 .wpcf7-list-item:nth-of-type(5) .wpcf7-list-item-label::before {
  display: none;
}
.contact_content .form_section_02 .wpcf7-list-item {
  width: 170px;
  height: 170px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .contact_content .form_section_02 .wpcf7-list-item {
    width: min(24.4444444444vw, 110px);
    height: min(24.4444444444vw, 110px);
  }
}
.contact_content .form_section_02 .wpcf7-list-item input {
  display: none;
}
.contact_content .form_section_02 .wpcf7-list-item-label {
  width: 100%;
  height: 100%;
  text-align: center;
  border: 10px solid #FFD6D6;
  border-radius: 20px;
  background-color: #F8F5ED;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  padding: 14px;
  font-size: 20px;
  line-height: 1;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .contact_content .form_section_02 .wpcf7-list-item-label {
    border: min(1.3888888889vw, 6.25px) solid #FFD6D6;
    border-radius: min(2.7777777778vw, 12.5px);
    padding: min(2.2222222222vw, 10px);
    font-size: min(2.7777777778vw, 12.5px);
  }
}
.contact_content .form_section_02 .wpcf7-list-item-label::before {
  border: none;
  background: none;
  border-radius: 0;
  background-size: 80px 80px;
  width: 80px;
  height: 80px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .contact_content .form_section_02 .wpcf7-list-item-label::before {
    background-size: min(11.1111111111vw, 50px) min(11.1111111111vw, 50px);
    width: min(11.1111111111vw, 50px);
    height: min(11.1111111111vw, 50px);
  }
}
.contact_content .form_section_02 .wpcf7-list-item-label::after {
  content: none;
}
.contact_content .form_section_02 .wpcf7-list-item:nth-of-type(1) .wpcf7-list-item-label::before {
  background-image: url(/wp-content/themes/jobs2/image/job-01.png);
}
.contact_content .form_section_02 .wpcf7-list-item:nth-of-type(2) .wpcf7-list-item-label::before {
  background-image: url(/wp-content/themes/jobs2/image/job-02.png);
}
.contact_content .form_section_02 .wpcf7-list-item:nth-of-type(3) .wpcf7-list-item-label::before {
  background-image: url(/wp-content/themes/jobs2/image/job-03.png);
}
.contact_content .form_section_02 .wpcf7-list-item:nth-of-type(4) .wpcf7-list-item-label::before {
  background-image: url(/wp-content/themes/jobs2/image/job-04.png);
}
.contact_content .form_section_02 .wpcf7-list-item:nth-of-type(5) .wpcf7-list-item-label::before {
  background-image: url(/wp-content/themes/jobs2/image/job-05.png);
}
.contact_content .form_section_02 .wpcf7-list-item:nth-of-type(6) .wpcf7-list-item-label::before {
  background-image: url(/wp-content/themes/jobs2/image/job-06.png);
}
.contact_content .form_section_02 .wpcf7-list-item:nth-of-type(7) .wpcf7-list-item-label::before {
  background-image: url(/wp-content/themes/jobs2/image/job-07.png);
}
.contact_content .form_section_02 .wpcf7-list-item:nth-of-type(8) .wpcf7-list-item-label::before {
  background-image: url(/wp-content/themes/jobs2/image/job-08.png);
}
.contact_content .form_section_02 .wpcf7-list-item:nth-of-type(9) .wpcf7-list-item-label {
  justify-content: center;
}
.contact_content .form_section_02 .wpcf7-list-item:nth-of-type(9) .wpcf7-list-item-label::before {
  display: none;
}
.contact_content .form_check {
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .contact_content .form_check {
    margin-bottom: min(8.3333333333vw, 37.5px);
  }
}
.contact_content .form_check .form_subtitle {
  font-size: 20px;
  color: #FF8F8F;
  width: 100%;
  padding-bottom: 12px;
  border-bottom: 1px solid #FF8F8F;
  margin-bottom: 12px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .contact_content .form_check .form_subtitle {
    font-size: min(3.3333333333vw, 15px);
    padding-bottom: min(2.2222222222vw, 10px);
    border-bottom: min(0.2777777778vw, 1.25px) solid #FF8F8F;
    margin-bottom: min(2.2222222222vw, 10px);
  }
}
.contact_content .form_check .form_subtitle .form_allcheck {
  font-size: 18px;
  line-height: 30px;
  font-weight: 400;
  display: flex;
  cursor: pointer;
}
.contact_content .form_check .form_subtitle .form_allcheck .fa-check {
  display: none;
}
@media screen and (max-width: 768px) {
  .contact_content .form_check .form_subtitle .form_allcheck {
    font-size: min(3.3333333333vw, 15px);
    line-height: min(5vw, 22.5px);
  }
}
.contact_content .form_check .form_subtitle .form_allcheck::before {
  content: "";
  width: 30px;
  height: 30px;
  border: 3px solid #FF8F8F;
  padding: 3px;
  border-radius: 5px;
  margin-right: 8px;
}
@media screen and (max-width: 768px) {
  .contact_content .form_check .form_subtitle .form_allcheck::before {
    width: min(5vw, 22.5px);
    height: min(5vw, 22.5px);
    border: min(0.8333333333vw, 3.75px) solid #FF8F8F;
    padding: min(0.8333333333vw, 3.75px);
    border-radius: min(1.3888888889vw, 6.25px);
    margin-right: min(2.2222222222vw, 10px);
  }
}
.contact_content .form_check .wpcf7-checkbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
}
@media screen and (max-width: 768px) {
  .contact_content .form_check .wpcf7-checkbox {
    gap: min(1.6666666667vw, 7.5px);
  }
}
.contact_content .form_check input[type=checkbox]:checked + .wpcf7-list-item-label {
  background-color: #FFD6D6;
}
.contact_content .form_check .wpcf7-list-item {
  width: 120px;
  height: 60px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .contact_content .form_check .wpcf7-list-item {
    width: min(22.2222222222vw, 100px);
    height: min(8.3333333333vw, 37.5px);
  }
}
.contact_content .form_check .wpcf7-list-item input {
  display: none;
}
.contact_content .form_check .wpcf7-list-item-label {
  width: 100%;
  height: 100%;
  text-align: center;
  border: 5px solid #FFD6D6;
  border-radius: 10px;
  background-color: #F8F5ED;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px;
  font-size: 20px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .contact_content .form_check .wpcf7-list-item-label {
    border: min(0.8333333333vw, 3.75px) solid #FFD6D6;
    border-radius: min(1.3888888889vw, 6.25px);
    padding: min(3.8888888889vw, 17.5px);
    font-size: min(3.3333333333vw, 15px);
  }
}
.contact_content .form_check .wpcf7-list-item-label::before {
  border: none;
  background: none;
  border-radius: 0;
  background-size: 80px 80px;
  width: 80px;
  height: 80px;
  margin: 0;
}
.contact_content .form_check .wpcf7-list-item-label::after {
  content: none;
}
.contact_content .form .all .form_allcheck .fa-check {
  display: block;
  position: absolute;
  top: 50%;
  transform: translateX(-180%) translateY(-50%);
}
.contact_content .form_section_04 .wpcf7-list-item {
  width: 200px;
  height: 170px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .contact_content .form_section_04 .wpcf7-list-item {
    width: min(38.8888888889vw, 175px);
    height: min(24.4444444444vw, 110px);
  }
}
.contact_content .form_section_04 .wpcf7-list-item-label {
  width: 100%;
  height: 100%;
  text-align: center;
  border: 10px solid #FFD6D6;
  border-radius: 20px;
  background-color: #F8F5ED;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 14px;
  font-size: 20px;
  white-space: nowrap;
}
@media screen and (max-width: 768px) {
  .contact_content .form_section_04 .wpcf7-list-item-label {
    border: min(1.3888888889vw, 6.25px) solid #FFD6D6;
    border-radius: min(2.7777777778vw, 12.5px);
    padding: min(2.2222222222vw, 10px);
    font-size: min(3.3333333333vw, 15px);
  }
}
.contact_content .form_section_04 .wpcf7-list-item-label::before {
  display: none;
}
.contact_content .form_section_04 .wpcf7-list-item-label::after {
  content: none;
}
.contact_content .form_section_99 input,
.contact_content .form_section_99 select, .contact_content .form_section_05 input,
.contact_content .form_section_05 select, .contact_content .form_section_06 input,
.contact_content .form_section_06 select, .contact_content .form_section_07 input,
.contact_content .form_section_07 select, .contact_content .form_section_08 input,
.contact_content .form_section_08 select {
  width: 100%;
  min-width: 420px;
  height: 80px;
  border: 3px solid #FFD6D6;
  border-radius: 10px;
  line-height: 80px;
  font-size: 20px;
  padding: 0 30px;
  color: #333333;
  font-weight: 700;
  outline: none;
}
@media screen and (max-width: 768px) {
  .contact_content .form_section_99 input,
  .contact_content .form_section_99 select, .contact_content .form_section_05 input,
  .contact_content .form_section_05 select, .contact_content .form_section_06 input,
  .contact_content .form_section_06 select, .contact_content .form_section_07 input,
  .contact_content .form_section_07 select, .contact_content .form_section_08 input,
  .contact_content .form_section_08 select {
    min-width: 0;
    width: 100%;
    height: min(16.6666666667vw, 75px);
    border: min(0.8333333333vw, 3.75px) solid #FFD6D6;
    border-radius: min(2.7777777778vw, 12.5px);
    line-height: min(16.6666666667vw, 75px);
    font-size: min(4.4444444444vw, 20px);
    padding: 0 min(8.3333333333vw, 37.5px);
  }
}
.contact_content .form_section_99 .not-require input,
.contact_content .form_section_99 .not-require select, .contact_content .form_section_05 .not-require input,
.contact_content .form_section_05 .not-require select, .contact_content .form_section_06 .not-require input,
.contact_content .form_section_06 .not-require select, .contact_content .form_section_07 .not-require input,
.contact_content .form_section_07 .not-require select, .contact_content .form_section_08 .not-require input,
.contact_content .form_section_08 .not-require select {
  border: 3px solid #BBD6F7;
}
@media screen and (max-width: 768px) {
  .contact_content .form_section_99 .not-require input,
  .contact_content .form_section_99 .not-require select, .contact_content .form_section_05 .not-require input,
  .contact_content .form_section_05 .not-require select, .contact_content .form_section_06 .not-require input,
  .contact_content .form_section_06 .not-require select, .contact_content .form_section_07 .not-require input,
  .contact_content .form_section_07 .not-require select, .contact_content .form_section_08 .not-require input,
  .contact_content .form_section_08 .not-require select {
    border: min(0.8333333333vw, 3.75px) solid #BBD6F7;
  }
}
.contact_content .form_section_99 select, .contact_content .form_section_05 select, .contact_content .form_section_06 select, .contact_content .form_section_07 select, .contact_content .form_section_08 select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  position: relative;
  color: #AAA;
}
.contact_content .form_section_99 select option:first-child, .contact_content .form_section_05 select option:first-child, .contact_content .form_section_06 select option:first-child, .contact_content .form_section_07 select option:first-child, .contact_content .form_section_08 select option:first-child {
  color: #AAA;
}
.contact_content .form_section_99 .your-year, .contact_content .form_section_05 .your-year, .contact_content .form_section_06 .your-year, .contact_content .form_section_07 .your-year, .contact_content .form_section_08 .your-year {
  position: relative;
}
.contact_content .form_section_99 .your-year::after, .contact_content .form_section_05 .your-year::after, .contact_content .form_section_06 .your-year::after, .contact_content .form_section_07 .your-year::after, .contact_content .form_section_08 .your-year::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 30px;
  width: 19.4px;
  height: 33px;
  background-image: url(/wp-content/themes/jobs2/image/common/angle-right-solid.svg);
  transform: translateY(-50%) rotate(90deg);
  background-repeat: no-repeat;
  background-size: 19.4px 33px;
}
@media screen and (max-width: 768px) {
  .contact_content .form_section_99 .your-year::after, .contact_content .form_section_05 .your-year::after, .contact_content .form_section_06 .your-year::after, .contact_content .form_section_07 .your-year::after, .contact_content .form_section_08 .your-year::after {
    top: 50%;
    right: min(8.3333333333vw, 37.5px);
    width: min(2.6944444444vw, 12.125px);
    height: min(4.5833333333vw, 20.625px);
    transform: translateY(-50%) rotate(90deg);
    background-size: min(2.6944444444vw, 12.125px) min(4.5833333333vw, 20.625px);
  }
}
.contact_content .form_column {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .contact_content .form_column {
    flex-direction: column;
  }
}
.contact_content .form_column .form_section {
  width: 100%;
  max-width: 420px;
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .contact_content .form_column .form_section {
    max-width: none;
    min-width: 420px;
  }
}
@media screen and (max-width: 768px) {
  .contact_content .form_column .form_section {
    width: 100%;
  }
}
.contact_content .form_confirm {
  text-align: center;
}
.contact_content .form_confirm h2 {
  margin-bottom: 30px;
}
.contact_content .form_confirm p {
  margin-bottom: 94px;
}
.contact_content .form .wpcf7-list-item-label {
  transition: all 0.3s ease;
}
.contact_content .form .wpcf7-list-item-label:hover {
  background-color: #FFD6D6;
}
.contact_content .form .wpcf7-form-control-wrap[data-name=location-home]::after {
  content: "";
  position: absolute;
  top: 0;
  right: 36px;
  transform: translate(50%, -50%) rotate(45deg);
  width: 24px;
  height: 24px;
  border-bottom: 6px solid #FFD6D6;
  border-right: 6px solid #FFD6D6;
}
@media screen and (max-width: 768px) {
  .contact_content .form .wpcf7-form-control-wrap[data-name=location-home]::after {
    top: 50%;
    right: min(10vw, 45px);
    width: min(6.6666666667vw, 30px);
    height: min(6.6666666667vw, 30px);
    border-bottom: min(1.6666666667vw, 7.5px) solid #FFD6D6;
    border-right: al(6) solid #FFD6D6;
  }
}
.contact_content .form .wpcf7-form-control-wrap[data-name=location-job]::after,
.contact_content .form .wpcf7-form-control-wrap[data-name=birth-year]::after {
  content: "";
  position: absolute;
  top: 0;
  right: 36px;
  transform: translate(50%, -50%) rotate(45deg);
  width: 24px;
  height: 24px;
  border-bottom: 6px solid #BBD6F7;
  border-right: 6px solid #BBD6F7;
}
@media screen and (max-width: 768px) {
  .contact_content .form .wpcf7-form-control-wrap[data-name=location-job]::after,
  .contact_content .form .wpcf7-form-control-wrap[data-name=birth-year]::after {
    top: 50%;
    right: min(10vw, 45px);
    width: min(6.6666666667vw, 30px);
    height: min(6.6666666667vw, 30px);
    border-bottom: min(1.6666666667vw, 7.5px) solid #BBD6F7;
    border-right: al(6) solid #BBD6F7;
  }
}
.contact .wpcf7-not-valid-tip {
  display: none;
}

.closer {
  font-size: 20px;
  margin-bottom: 80px;
  text-align: center;
  width: 100%;
  max-width: 1000px;
  margin-right: auto;
  margin-left: auto;
  color: #333;
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .closer {
    padding: 0 50px;
  }
}
@media screen and (max-width: 768px) {
  .closer {
    font-size: min(5vw, 22.5px);
    margin-bottom: min(0vw, 0px);
    padding: 0 min(3.8888888889vw, 17.5px);
  }
}

.policy {
  width: 920px;
  height: auto;
  background-color: #fff;
  border-radius: 15px;
  margin-bottom: 150px;
  padding: 80px 2%;
  font-weight: normal;
  transform: rotate(0.05deg);
}
.policy h2 {
  font-size: 3.2rem;
  text-align: center;
  margin-bottom: 40px;
}
.policy p {
  margin-bottom: 70px;
}
.policy .inside {
  margin-bottom: 34px;
}
.policy .inside .green {
  font-size: 2.4rem;
  color: #FF8F8F;
  font-weight: 800;
  margin-bottom: 30px;
}
.policy .inside dl {
  display: flex;
  flex-wrap: wrap;
}
.policy .inside dl dt {
  width: 5%;
  font-size: 1.8rem;
  font-weight: 800;
  color: #FF8F8F;
  margin-bottom: 13px;
}
.policy .inside dl dd {
  width: 95%;
}

.notes {
  font-size: 1.4rem;
  padding-left: 5%;
  margin-top: 50px;
}

.policy_address p {
  margin-bottom: 30px;
}
.policy_address .policy_inner {
  display: flex;
  font-size: 2.3rem;
  font-weight: 800;
  font-family: "Montserrat";
  margin-bottom: 13px;
}
.policy_address .policy_inner .tel,
.policy_address .policy_inner .fax {
  display: flex;
  align-items: center;
  margin-right: 28px;
}
.policy_address .policy_inner .tel p,
.policy_address .policy_inner .fax p {
  margin-bottom: 0;
}
.policy_address .policy_inner .tel p {
  color: #FF8F8F;
}
.policy_address img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.policy_address .email {
  display: flex;
  font-size: 2.3rem;
  font-weight: 800;
  font-family: "Montserrat";
  margin-bottom: 13px;
  align-items: center;
}
.policy_address .email img {
  width: 24px;
  height: 24px;
  margin-right: 10px;
}
.policy_address .email p {
  margin-bottom: 0;
}

.put-down {
  margin-top: 40px;
}

@media screen and (max-width: 520px) {
  .policy {
    width: 320px;
    height: auto;
    background-color: #fff;
    border-radius: 15px;
    margin-bottom: 200px;
    padding: 50px 3%;
    font-weight: normal;
    transform: rotate(0.05deg);
  }
  .policy h2 {
    font-size: 2.4rem;
    text-align: center;
    margin-bottom: 40px;
  }
  .policy p {
    font-size: 1.2rem;
    margin-bottom: 32px;
  }
  .policy .inside {
    margin-bottom: 32px;
  }
  .policy .inside .green {
    font-size: 1.6rem;
    color: #FF8F8F;
    font-weight: 800;
    margin-bottom: 20px;
  }
  .policy .inside dl {
    display: flex;
    flex-wrap: wrap;
  }
  .policy .inside dl dt {
    width: 8%;
    font-size: 1.2rem;
    font-weight: 800;
    color: #FF8F8F;
    margin-bottom: 8px;
  }
  .policy .inside dl dd {
    font-size: 1.2rem;
    width: 92%;
  }
  .notes {
    font-size: 1.2rem;
    padding-left: 5%;
    margin-top: 50px;
  }
  .policy_address p {
    margin-bottom: 30px;
  }
  .policy_address .policy_inner {
    display: flex;
    font-size: 2.3rem;
    font-weight: 800;
    font-family: "Montserrat";
    margin-bottom: 13px;
  }
  .policy_address .policy_inner .tel,
  .policy_address .policy_inner .fax {
    display: flex;
    align-items: center;
    margin-right: 28px;
  }
  .policy_address .policy_inner .tel p,
  .policy_address .policy_inner .fax p {
    margin-bottom: 0;
  }
  .policy_address .policy_inner .tel p {
    color: #FF8F8F;
  }
  .policy_address img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  .policy_address .email {
    display: flex;
    font-size: 2.3rem;
    font-weight: 800;
    font-family: "Montserrat";
    margin-bottom: 13px;
    align-items: center;
  }
  .policy_address .email img {
    width: 20px;
    height: 20px;
    margin-right: 10px;
  }
  .policy_address .email p {
    margin-bottom: 0;
  }
}
.assist {
  text-align: center;
}
.assist .finish_link {
  display: inline-block;
  width: 706px;
  height: 134px;
  line-height: 134px;
  background-color: #FF8F8F;
  border-radius: 15px;
  font-size: 3.8rem;
  color: #fff;
  text-align: center;
}
.assist a:hover {
  opacity: 0.7;
}
.assist .modification {
  background-color: #dddddd;
  color: #707070;
  margin-bottom: 40px;
}
.assist .fix-sp {
  display: none;
}

@media screen and (max-width: 520px) {
  .assist .finish_link {
    display: inline-block;
    width: 300px;
    height: 64px;
    line-height: 64px;
    background-color: #FF8F8F;
    border-radius: 15px;
    font-size: 1.8rem;
    color: #fff;
    text-align: center;
  }
  .assist a:hover {
    opacity: 0.7;
  }
}
.confirm {
  width: 700px;
  height: auto;
  text-align: left;
  margin: 0 auto 80px auto;
}
.confirm th {
  width: 190px;
  font-size: 2rem;
}
.confirm td {
  font-size: 3.2rem;
  font-weight: normal;
  padding: 15px 0;
}
.confirm .col {
  color: #FF8F8F;
}
.confirm span {
  font-size: 2rem;
}
.confirm .line_box #a_line,
.confirm .line_box #b_line {
  margin-right: 10px;
}
.confirm .line_box #station_a,
.confirm .line_box #station_b {
  margin-left: 50px;
  margin-right: 10px;
}
.confirm .text_box {
  vertical-align: top;
}
.confirm .text_box th {
  padding-top: 20px;
}

.confirm_btn {
  text-align: center;
}
.confirm_btn a {
  display: inline-block;
  width: 706px;
  height: 134px;
  line-height: 134px;
  background-color: #FF8F8F;
  border-radius: 15px;
  font-size: 3.8rem;
  color: #fff;
  text-align: center;
}
.confirm_btn a:hover {
  opacity: 0.7;
}
.confirm_btn .modification {
  background-color: #dddddd;
  color: #707070;
  margin-bottom: 40px;
}
.confirm_btn .fix-sp {
  display: none;
}

@media screen and (max-width: 520px) {
  .confirm th,
  .confirm td {
    width: 100%;
    display: block;
  }
  .confirm {
    width: 320px;
    height: auto;
    text-align: left;
    margin: 0 auto 80px auto;
  }
  .confirm th {
    font-size: 1.4rem;
  }
  .confirm td {
    font-size: 2.4rem;
    font-weight: normal;
    padding: 0 0 15px 0;
  }
  .confirm .col {
    color: #FF8F8F;
  }
  .confirm span {
    font-size: 2rem;
  }
  .confirm .line_box #a_line,
  .confirm .line_box #b_line {
    margin-right: 5px;
  }
  .confirm .line_box #station_a,
  .confirm .line_box #station_b {
    margin-left: 30px;
    margin-right: 5px;
  }
  .confirm .text_box {
    vertical-align: top;
  }
  .confirm .text_box th {
    padding-top: 0;
  }
  .confirm_btn {
    text-align: center;
  }
  .confirm_btn a {
    display: inline-block;
    width: 300px;
    height: 64px;
    line-height: 64px;
    background-color: #FF8F8F;
    border-radius: 15px;
    font-size: 1.8rem;
    color: #fff;
    text-align: center;
  }
  .confirm_btn a:hover {
    opacity: 0.7;
  }
  .confirm_btn .modification {
    display: none;
  }
  .confirm_btn .fix-sp {
    display: inline-block;
    background-color: #dddddd;
    color: #707070;
    margin-bottom: 20px;
  }
}
.service {
  padding: 250px 100px 0;
  width: 100%;
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .service {
    padding: 250px 30px 0;
  }
}
@media screen and (max-width: 768px) {
  .service {
    padding: min(63.8888888889vw, 287.5px) min(3.8888888889vw, 17.5px) 0;
  }
}
.service__inner {
  width: 100%;
  max-width: 990px;
  margin: 0 auto;
}
.service .nayami_tab_btn.active {
  background-color: #FFD6D6;
}
.service_content_0 {
  width: 100%;
  padding-top: 0px;
}
.service_content_0 .fukidasi-css {
  position: relative;
  bottom: -80px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .service_content_0 .fukidasi-css {
    width: min(83.3333333333vw, 375px);
  }
}
.service_content_0 .fukidasi-css p {
  font-size: 42px;
  line-height: 62px;
  color: #FF8F8F;
}
@media screen and (max-width: 768px) {
  .service_content_0 .fukidasi-css p {
    font-size: min(6.6666666667vw, 30px);
    line-height: min(9.1666666667vw, 41.25px);
  }
}
.service_content_0 .fukidasi-css p span {
  color: #333333;
}
.service_content_0 .nayami_container {
  width: 100%;
  max-width: 1000px;
  background-color: #F7F0CC;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  padding: 148px 50px 64px;
}
@media screen and (max-width: 768px) {
  .service_content_0 .nayami_container {
    box-shadow: min(0.8333333333vw, 3.75px) min(0.8333333333vw, 3.75px) min(0.8333333333vw, 3.75px) rgba(0, 0, 0, 0.4);
    border-radius: min(2.7777777778vw, 12.5px);
    padding: min(40.2777777778vw, 181.25px) 14px 64px;
  }
}
@media screen and (min-width: 769px) {
  .service_content_0 .nayami_container .nayami_list {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
  }
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .service_content_0 .nayami_container .nayami_list {
    gap: 48px;
  }
}
.service_content_0 .nayami_container .nayami_list__item {
  width: 420px;
  height: 500px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-color: #fff;
  border-radius: 10px;
}
@media screen and (max-width: 1180px) {
  .service_content_0 .nayami_container .nayami_list__item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .service_content_0 .nayami_container .nayami_list__item {
    width: 100%;
    height: min(138.8888888889vw, 625px);
    padding: min(5.5555555556vw, 25px) min(3.8888888889vw, 17.5px);
  }
}
.service_content_0 .nayami_container .nayami_list__item img {
  width: 180px;
  height: 180px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .service_content_0 .nayami_container .nayami_list__item img {
    width: min(50vw, 225px);
    height: min(50vw, 225px);
    margin-bottom: min(5.5555555556vw, 25px);
  }
}
.service_content_0 .nayami_container .nayami_list__item p {
  font-size: 18px;
  color: #707070;
  margin-bottom: 16px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .service_content_0 .nayami_container .nayami_list__item p {
    font-size: min(5vw, 22.5px);
    margin-bottom: min(4.4444444444vw, 20px);
  }
}
.service_content_0 .nayami_container .nayami_list__item h3 {
  font-size: 22px;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .service_content_0 .nayami_container .nayami_list__item h3 {
    font-size: min(6.1111111111vw, 27.5px);
    margin-bottom: min(13.3333333333vw, 60px);
  }
}
.service_content_0 .nayami_container .nayami_list__item p.swiper_txt {
  font-size: 14px;
  line-height: 30px;
  color: #333333;
}
@media screen and (max-width: 768px) {
  .service_content_0 .nayami_container .nayami_list__item p.swiper_txt {
    font-size: min(3.8888888889vw, 17.5px);
    line-height: min(7.7777777778vw, 35px);
  }
}
.service_content_0 .nayami_container .nayami_textarea {
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .service_content_0 .nayami_container .nayami_textarea {
    margin-top: min(8.3333333333vw, 37.5px);
  }
}
.service_content_0 .nayami_container .nayami_textarea h3 {
  font-size: 36px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .service_content_0 .nayami_container .nayami_textarea h3 {
    font-size: min(5.5555555556vw, 25px);
    line-height: min(9.7222222222vw, 43.75px);
    margin-bottom: min(16.6666666667vw, 75px);
  }
}
.service_content_0 .nayami_container .nayami_textarea .text__suport {
  font-size: 28px;
  font-weight: normal;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .service_content_0 .nayami_container .nayami_textarea .text__suport {
    font-size: min(5vw, 22.5px);
    margin-bottom: min(8.3333333333vw, 37.5px);
  }
}
.service_content_0 .nayami_container .nayami_textarea .text__num {
  display: flex;
  align-items: end;
  font-size: 36px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .service_content_0 .nayami_container .nayami_textarea .text__num {
    font-size: min(5vw, 22.5px);
  }
}
.service_content_0 .nayami_container .nayami_textarea .text__num span {
  font-size: 120px;
  line-height: 120px;
  color: #FF8F8F;
}
@media screen and (max-width: 768px) {
  .service_content_0 .nayami_container .nayami_textarea .text__num span {
    font-size: min(15.2777777778vw, 68.75px);
    line-height: min(15.2777777778vw, 68.75px);
  }
}
.service_content_0 .swiper-nayami {
  position: relative;
}
.service_content_0 .swiper-nayami .swiper-wrapper {
  position: relative;
}
.service_content_0 .swiper-nayami .swiper-pagination-nayami {
  display: none;
}
@media screen and (max-width: 768px) {
  .service_content_0 .swiper-nayami .swiper-pagination-nayami {
    display: block;
    position: relative;
    margin-top: min(8.3333333333vw, 37.5px);
  }
  .service_content_0 .swiper-nayami .swiper-pagination-nayami .swiper-pagination-bullet {
    background-color: #fff;
    opacity: 1;
    width: min(3.3333333333vw, 15px);
    height: min(3.3333333333vw, 15px);
  }
  .service_content_0 .swiper-nayami .swiper-pagination-nayami .swiper-pagination-bullet-active {
    background-color: #FF8F8F;
  }
}
.service_content_1 {
  width: 100%;
  padding-top: 0px;
}
.service_content_1 .fukidasi-css {
  position: relative;
  bottom: -80px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .service_content_1 .fukidasi-css {
    width: min(83.3333333333vw, 375px);
  }
}
.service_content_1 .fukidasi-css p {
  font-size: 42px;
  line-height: 62px;
  color: #FF8F8F;
}
@media screen and (max-width: 768px) {
  .service_content_1 .fukidasi-css p {
    font-size: min(6.6666666667vw, 30px);
    line-height: min(9.1666666667vw, 41.25px);
  }
}
.service_content_1 .fukidasi-css p span {
  color: #333333;
}
.service_content_1 .nayami_container {
  width: 100%;
  max-width: 1000px;
  background-color: #F7F0CC;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  padding: 148px 50px 64px;
}
@media screen and (max-width: 768px) {
  .service_content_1 .nayami_container {
    box-shadow: min(0.8333333333vw, 3.75px) min(0.8333333333vw, 3.75px) min(0.8333333333vw, 3.75px) rgba(0, 0, 0, 0.4);
    border-radius: min(2.7777777778vw, 12.5px);
    padding: min(40.2777777778vw, 181.25px) 14px 64px;
  }
}
@media screen and (min-width: 769px) {
  .service_content_1 .nayami_container .nayami_list {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
}
.service_content_1 .nayami_container .nayami_list__item {
  width: 100%;
  padding: 20px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  background-color: #fff;
  border-radius: 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .service_content_1 .nayami_container .nayami_list__item {
    border-radius: min(2.7777777778vw, 12.5px);
    padding: min(41.6666666667vw, 187.5px) min(3.8888888889vw, 17.5px) min(3.8888888889vw, 17.5px);
  }
}
.service_content_1 .nayami_container .nayami_list__item img {
  position: absolute;
  bottom: 20px;
  right: 20px;
  width: 200px;
  height: 200px;
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .service_content_1 .nayami_container .nayami_list__item img {
    right: 0px;
    width: 150px;
    height: 150px;
  }
}
@media screen and (max-width: 768px) {
  .service_content_1 .nayami_container .nayami_list__item img {
    width: min(27.7777777778vw, 125px);
    height: min(27.7777777778vw, 125px);
    top: min(7.7777777778vw, 35px);
    left: 50%;
    transform: translateX(-50%);
  }
}
.service_content_1 .nayami_container .nayami_list__item__head {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .service_content_1 .nayami_container .nayami_list__item__head {
    margin-bottom: min(11.1111111111vw, 50px);
  }
}
.service_content_1 .nayami_container .nayami_list__item__head p {
  font-size: 18px;
  margin-bottom: 20px;
  color: #707070;
}
@media screen and (max-width: 768px) {
  .service_content_1 .nayami_container .nayami_list__item__head p {
    font-size: min(5vw, 22.5px);
  }
}
.service_content_1 .nayami_container .nayami_list__item__head h4 {
  width: 80%;
  font-size: 22px;
}
@media screen and (max-width: 768px) {
  .service_content_1 .nayami_container .nayami_list__item__head h4 {
    font-size: min(5vw, 22.5px);
    width: 100%;
  }
}
.service_content_1 .nayami_container .nayami_list__item__content {
  display: flex;
  height: 150px;
}
@media screen and (max-width: 768px) {
  .service_content_1 .nayami_container .nayami_list__item__content {
    flex-direction: column;
    height: auto;
    width: 100%;
  }
}
.service_content_1 .nayami_container .nayami_list__item__content .after {
  width: 300px;
  padding: 8px 8px 16px;
  padding-left: 27.5px;
  background-color: #FF8F8F;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .service_content_1 .nayami_container .nayami_list__item__content .after {
    width: min(75vw, 337.5px);
    width: 100%;
    height: min(48.6111111111vw, 218.75px);
    padding: min(5.5555555556vw, 25px) min(2.2222222222vw, 10px) min(4.4444444444vw, 20px);
  }
}
.service_content_1 .nayami_container .nayami_list__item__content .after p {
  font-size: 12px;
  color: #9DD3CF;
}
@media screen and (max-width: 768px) {
  .service_content_1 .nayami_container .nayami_list__item__content .after p {
    font-size: min(3.3333333333vw, 15px);
  }
}
.service_content_1 .nayami_container .nayami_list__item__content .before {
  width: 286.5px;
  padding: 8px 8px 14px;
  background-color: #efefef;
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .service_content_1 .nayami_container .nayami_list__item__content .before {
    width: min(75vw, 337.5px);
    width: 100%;
    height: min(38.8888888889vw, 175px);
    padding: min(2.2222222222vw, 10px) min(2.2222222222vw, 10px) min(3.8888888889vw, 17.5px);
  }
}
.service_content_1 .nayami_container .nayami_list__item__content .before p {
  font-size: 12px;
  color: #AAAAAA;
}
@media screen and (max-width: 768px) {
  .service_content_1 .nayami_container .nayami_list__item__content .before p {
    font-size: min(3.3333333333vw, 15px);
  }
}
.service_content_1 .nayami_container .nayami_list__item__content .before::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 75px 0 75px 25px;
  border-color: transparent transparent transparent #efefef;
  z-index: 10;
  position: absolute;
  bottom: 0;
  left: 286.5px;
  overflow-x: hidden;
}
@media screen and (max-width: 768px) {
  .service_content_1 .nayami_container .nayami_list__item__content .before::after {
    border-width: min(7.5vw, 33.75px) min(37.5vw, 168.75px) 0 min(37.5vw, 168.75px);
    border-color: #efefef transparent transparent transparent;
    left: min(0vw, 0px);
    bottom: max(-7.5vw, -33.75px);
  }
}
.service_content_1 .nayami_container .nayami_list__item__content dl {
  display: flex;
  align-items: center;
  margin-left: 30px;
}
@media screen and (max-width: 768px) {
  .service_content_1 .nayami_container .nayami_list__item__content dl {
    margin-left: min(8.3333333333vw, 37.5px);
  }
}
.service_content_1 .nayami_container .nayami_list__item__content dl dt {
  font-size: 12px;
  margin-right: 14px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .service_content_1 .nayami_container .nayami_list__item__content dl dt {
    font-size: min(3.3333333333vw, 15px);
    margin-right: min(3.8888888889vw, 17.5px);
  }
}
.service_content_1 .nayami_container .nayami_list__item__content dl dd {
  font-size: 18px;
  line-height: 18px;
}
@media screen and (max-width: 768px) {
  .service_content_1 .nayami_container .nayami_list__item__content dl dd {
    font-size: min(5vw, 22.5px);
    line-height: min(5vw, 22.5px);
  }
}
.service_content_1 .nayami_container .nayami_list__item__content .yellow_dd {
  font-size: 25px;
  color: #F8EE73;
}
@media screen and (max-width: 768px) {
  .service_content_1 .nayami_container .nayami_list__item__content .yellow_dd {
    font-size: min(6.9444444444vw, 31.25px);
  }
}
.service_content_1 .nayami_container .nayami_textarea {
  margin-top: 30px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .service_content_1 .nayami_container .nayami_textarea {
    margin-top: min(8.3333333333vw, 37.5px);
  }
}
.service_content_1 .nayami_container .nayami_textarea h3 {
  font-size: 36px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .service_content_1 .nayami_container .nayami_textarea h3 {
    font-size: min(5.5555555556vw, 25px);
    line-height: min(9.7222222222vw, 43.75px);
    margin-bottom: min(16.6666666667vw, 75px);
  }
}
.service_content_1 .nayami_container .nayami_textarea .text__suport {
  font-size: 28px;
  font-weight: normal;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .service_content_1 .nayami_container .nayami_textarea .text__suport {
    font-size: min(5vw, 22.5px);
    margin-bottom: min(8.3333333333vw, 37.5px);
  }
}
.service_content_1 .nayami_container .nayami_textarea .text__num {
  display: flex;
  align-items: end;
  font-size: 36px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .service_content_1 .nayami_container .nayami_textarea .text__num {
    font-size: min(5vw, 22.5px);
  }
}
.service_content_1 .nayami_container .nayami_textarea .text__num span {
  font-size: 120px;
  line-height: 120px;
  color: #FF8F8F;
}
@media screen and (max-width: 768px) {
  .service_content_1 .nayami_container .nayami_textarea .text__num span {
    font-size: min(15.2777777778vw, 68.75px);
    line-height: min(15.2777777778vw, 68.75px);
  }
}
.service_content_1 .swiper-nayami {
  position: relative;
}
.service_content_1 .swiper-nayami .swiper-wrapper {
  position: relative;
}
.service_content_1 .swiper-nayami .swiper-pagination-nayami {
  display: none;
}
@media screen and (max-width: 768px) {
  .service_content_1 .swiper-nayami .swiper-pagination-nayami {
    display: block;
    position: relative;
    margin-top: min(8.3333333333vw, 37.5px);
  }
  .service_content_1 .swiper-nayami .swiper-pagination-nayami .swiper-pagination-bullet {
    background-color: #fff;
    opacity: 1;
    width: min(3.3333333333vw, 15px);
    height: min(3.3333333333vw, 15px);
  }
  .service_content_1 .swiper-nayami .swiper-pagination-nayami .swiper-pagination-bullet-active {
    background-color: #FF8F8F;
  }
}
.service_content_2 {
  width: 100%;
  padding-top: 0px;
}
.service_content_2 .fukidasi-css {
  position: relative;
  bottom: -80px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .service_content_2 .fukidasi-css {
    width: min(83.3333333333vw, 375px);
  }
}
.service_content_2 .fukidasi-css p {
  font-size: 42px;
  line-height: 62px;
  color: #FF8F8F;
}
@media screen and (max-width: 768px) {
  .service_content_2 .fukidasi-css p {
    font-size: min(6.6666666667vw, 30px);
    line-height: min(9.1666666667vw, 41.25px);
  }
}
.service_content_2 .fukidasi-css p span {
  color: #333333;
}
.service_content_2 .nayami_container {
  width: 100%;
  max-width: 1000px;
  background-color: #F7F0CC;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  padding: 148px 50px 64px;
}
@media screen and (max-width: 768px) {
  .service_content_2 .nayami_container {
    box-shadow: min(0.8333333333vw, 3.75px) min(0.8333333333vw, 3.75px) min(0.8333333333vw, 3.75px) rgba(0, 0, 0, 0.4);
    border-radius: min(2.7777777778vw, 12.5px);
    padding: min(41.1111111111vw, 185px) min(3.8888888889vw, 17.5px) min(17.7777777778vw, 80px);
  }
}
@media screen and (min-width: 769px) {
  .service_content_2 .nayami_container .nayami_list {
    display: flex;
    flex-direction: column;
    gap: 48px;
  }
}
.service_content_2 .nayami_container .nayami_list__item {
  width: 100%;
  height: 350px;
  display: flex;
  align-items: stretch;
  background-color: #fff;
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .service_content_2 .nayami_container .nayami_list__item {
    min-height: 350px;
    height: auto;
    align-items: stretch;
  }
}
@media screen and (max-width: 768px) {
  .service_content_2 .nayami_container .nayami_list__item {
    height: auto;
    flex-direction: column;
    border-radius: min(2.7777777778vw, 12.5px);
    overflow: hidden;
    border: 5px solid #333333;
  }
}
.service_content_2 .nayami_container .nayami_list__item__head {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .service_content_2 .nayami_container .nayami_list__item__head {
    width: 100%;
    height: min(55.5555555556vw, 250px);
  }
}
.service_content_2 .nayami_container .nayami_list__item__head p.info {
  display: none;
}
.service_content_2 .nayami_container .nayami_list__item__head .copy {
  position: relative;
  width: 100%;
  height: 42px;
  background-color: rgba(51, 51, 51, 0.6666666667);
  color: #fff;
  font-size: 16px;
  line-height: 42px;
  padding: 0 14px;
  margin-top: -42px;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .service_content_2 .nayami_container .nayami_list__item__head .copy {
    height: min(11.6666666667vw, 52.5px);
    font-size: min(4.4444444444vw, 20px);
    line-height: min(11.6666666667vw, 52.5px);
    padding: 0 min(3.8888888889vw, 17.5px);
    margin-top: max(-11.6666666667vw, -52.5px);
  }
}
.service_content_2 .nayami_container .nayami_list__item__head img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.service_content_2 .nayami_container .nayami_list__item__content {
  width: 50%;
  padding: 20px;
}
@media screen and (max-width: 768px) {
  .service_content_2 .nayami_container .nayami_list__item__content {
    width: 100%;
    padding: min(3.8888888889vw, 17.5px);
  }
}
.service_content_2 .nayami_container .nayami_list__item__content .list {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .service_content_2 .nayami_container .nayami_list__item__content .list {
    gap: min(1.1111111111vw, 5px);
    margin-bottom: min(3.8888888889vw, 17.5px);
  }
}
.service_content_2 .nayami_container .nayami_list__item__content .list p {
  height: 32px;
  padding: 0 4px;
  border-radius: 4px;
  border: 1px solid #333333;
  font-size: 12px;
  line-height: 32px;
}
@media screen and (max-width: 768px) {
  .service_content_2 .nayami_container .nayami_list__item__content .list p {
    height: min(7.7777777778vw, 35px);
    padding: 0 min(1.1111111111vw, 5px);
    border-radius: min(1.1111111111vw, 5px);
    border: min(0.2777777778vw, 1.25px) solid #333333;
    font-size: min(2.7777777778vw, 12.5px);
    line-height: min(7.7777777778vw, 35px);
  }
}
.service_content_2 .nayami_container .nayami_list__item__content .list p.blue {
  color: #4379C4;
  border-color: #4379C4;
}
.service_content_2 .nayami_container .nayami_list__item__content .list p.orange {
  color: #E58B32;
  border-color: #E58B32;
}
.service_content_2 .nayami_container .nayami_list__item__content .list p.pink {
  color: #FC579D;
  border-color: #FC579D;
}
.service_content_2 .nayami_container .nayami_list__item__content .list p.green {
  color: #178820;
  border-color: #178820;
}
.service_content_2 .nayami_container .nayami_list__item__content p.bold {
  font-size: 16px;
  line-height: 24px;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .service_content_2 .nayami_container .nayami_list__item__content p.bold {
    font-size: min(3.3333333333vw, 15px);
    line-height: min(5.5555555556vw, 25px);
    margin-bottom: min(4.4444444444vw, 20px);
  }
}
.service_content_2 .nayami_container .nayami_list__item__content dl {
  display: flex;
  padding: 8px 0;
  border-top: 1px solid #aaa;
}
@media screen and (max-width: 768px) {
  .service_content_2 .nayami_container .nayami_list__item__content dl {
    padding: min(1.1111111111vw, 5px) 0;
    border-top: min(0.2777777778vw, 1.25px) solid #aaa;
  }
}
.service_content_2 .nayami_container .nayami_list__item__content dl dt {
  width: 80px;
  font-size: 16px;
}
@media screen and (max-width: 768px) {
  .service_content_2 .nayami_container .nayami_list__item__content dl dt {
    width: min(22.2222222222vw, 100px);
    font-size: min(3.3333333333vw, 15px);
  }
}
.service_content_2 .nayami_container .nayami_list__item__content dl dd {
  flex: 1;
  font-size: 16px;
  color: #777;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .service_content_2 .nayami_container .nayami_list__item__content dl dd {
    font-size: min(3.3333333333vw, 15px);
  }
}
.service_content_2 .nayami_container .contact_list-outer-03 {
  margin-top: 80px;
  width: 100%;
  height: auto;
  text-align: left;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: flex-end;
}
@media screen and (max-width: 768px) {
  .service_content_2 .nayami_container .contact_list-outer-03 {
    margin-top: min(5.5555555556vw, 25px);
    flex-direction: column;
    text-align: center;
    align-items: center;
  }
}
.service_content_2 .nayami_container .contact_list-outer-03__content {
  display: flex;
  flex-direction: column;
}
.service_content_2 .nayami_container .contact_list-outer-03 .contact_list-icon {
  width: 438.5px;
  height: 232.73px;
}
@media screen and (max-width: 768px) {
  .service_content_2 .nayami_container .contact_list-outer-03 .contact_list-icon {
    width: 287px;
    height: 153px;
  }
}
.service_content_2 .nayami_container .contact_list-outer-03 h3 {
  font-size: 34px;
  font-weight: 800;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .service_content_2 .nayami_container .contact_list-outer-03 h3 {
    margin-bottom: min(5.5555555556vw, 25px);
    font-size: min(5.5555555556vw, 25px);
  }
}
.service_content_2 .nayami_container .contact_list-outer-03 .contact_list-txt {
  font-size: 20px;
  margin-bottom: 30px;
  font-weight: normal;
}
@media screen and (max-width: 768px) {
  .service_content_2 .nayami_container .contact_list-outer-03 .contact_list-txt {
    margin-bottom: min(8.3333333333vw, 37.5px);
    font-size: min(3.6111111111vw, 16.25px);
  }
}
.service_content_2 .nayami_container .contact_list-outer-03 a {
  display: inline-block;
  width: 441px;
  height: 80px;
  line-height: 80px;
  padding: 0 28px;
  font-size: 28px;
  color: #fff;
  background-color: #FF8F8F;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.service_content_2 .nayami_container .contact_list-outer-03 a svg {
  width: 27px;
}
@media screen and (max-width: 768px) {
  .service_content_2 .nayami_container .contact_list-outer-03 a {
    width: min(66.6666666667vw, 300px);
    height: min(13.8888888889vw, 62.5px);
    line-height: min(13.8888888889vw, 62.5px);
    padding: 0 min(4.4444444444vw, 20px);
    font-size: min(5vw, 22.5px);
    border-radius: min(27.5vw, 123.75px);
  }
  .service_content_2 .nayami_container .contact_list-outer-03 a svg {
    width: min(4.5833333333vw, 20.625px);
  }
}
.service_content_2 .swiper-nayami {
  position: relative;
}
.service_content_2 .swiper-nayami .swiper-wrapper {
  position: relative;
}
.service_content_2 .swiper-nayami .swiper-pagination-nayami {
  display: none;
}
@media screen and (max-width: 768px) {
  .service_content_2 .swiper-nayami .swiper-pagination-nayami {
    display: block;
    position: relative;
    margin-top: min(8.3333333333vw, 37.5px);
  }
  .service_content_2 .swiper-nayami .swiper-pagination-nayami .swiper-pagination-bullet {
    background-color: #fff;
    opacity: 1;
    width: min(3.3333333333vw, 15px);
    height: min(3.3333333333vw, 15px);
  }
  .service_content_2 .swiper-nayami .swiper-pagination-nayami .swiper-pagination-bullet-active {
    background-color: #FF8F8F;
  }
}
.service_content_2 .nayami_footer {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.service_content_2 .nayami_footer .contact_list-outer-03 {
  max-width: none;
}
@media screen and (max-width: 1120px) {
  .service_content_2 .nayami_footer .contact_list-outer-03 .contact_list-icon {
    width: 300px;
    -o-object-fit: contain;
       object-fit: contain;
  }
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .service_content_2 .nayami_footer .contact_list-outer-03 {
    flex-direction: column;
    align-items: center;
  }
  .service_content_2 .nayami_footer .contact_list-outer-03 .contact_list-icon {
    width: 500px;
    -o-object-fit: contain;
       object-fit: contain;
  }
  .service_content_2 .nayami_footer .contact_list-outer-03 .contact_list-outer-03__content {
    width: 100%;
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .service .nayami_container {
    overflow-x: hidden;
  }
}

.middle_heading-low.service-page .middle_outer .middle_inner,
.middle_heading-low-sp.service-page .middle_outer .middle_inner {
  width: 100%;
}
.middle_heading-low.service-page .middle_outer .middle_inner p,
.middle_heading-low-sp.service-page .middle_outer .middle_inner p {
  width: auto;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  padding-left: 0;
  margin: 0 auto;
  white-space: nowrap;
}

.howtouse {
  padding: 50px 100px 0;
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .howtouse {
    padding: 100px 30px 0;
  }
}
@media screen and (max-width: 768px) {
  .howtouse {
    padding: min(16.6666666667vw, 75px) min(3.8888888889vw, 17.5px) 0;
  }
}
.howtouse__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .howtouse__inner {
    width: 100%;
    padding: min(0vw, 0px);
  }
}
.howtouse_tab {
  display: flex;
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .howtouse_tab {
    flex-direction: column;
    padding: 0 min(3.8888888889vw, 17.5px);
    margin-bottom: min(13.8888888889vw, 62.5px);
    width: 100%;
  }
}
.howtouse_tab__btn {
  width: 50%;
  height: 150px;
  background-color: #fff;
  display: flex;
  align-items: center;
  padding: 0 20px 0 40px;
  font-size: 36px;
  color: #333333;
  box-shadow: 3px 3px 3px rgba(51, 51, 51, 0.4666666667);
  white-space: nowrap;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .howtouse_tab__btn {
    padding-right: 20px;
    padding-left: 20px;
    font-size: 30px;
  }
}
.howtouse_tab__btn.active {
  background-color: #FF8F8F;
  color: #fff;
}
@media screen and (max-width: 768px) {
  .howtouse_tab__btn {
    width: 100%;
    height: min(27.7777777778vw, 125px);
    padding: 0 0 0 min(6.9444444444vw, 31.25px);
    font-size: min(6.9444444444vw, 31.25px);
    box-shadow: min(0.8333333333vw, 3.75px) min(0.8333333333vw, 3.75px) min(0.8333333333vw, 3.75px) rgba(51, 51, 51, 0.4666666667);
  }
}
.howtouse_tab__btn__img {
  display: block;
  width: 114px;
  height: 114px;
  background-color: #fff;
  border-radius: 99px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 16px;
}
@media screen and (max-width: 768px) {
  .howtouse_tab__btn__img {
    width: min(17.7777777778vw, 80px);
    height: min(17.7777777778vw, 80px);
    margin-right: 16px;
  }
}
.howtouse_tab__btn__img img {
  position: relative;
  height: 70px;
}
@media screen and (max-width: 768px) {
  .howtouse_tab__btn__img img {
    height: min(11.1111111111vw, 50px);
  }
}
.howtouse_tab__btn:first-of-type {
  border-radius: 10px 0 0 10px;
}
@media screen and (max-width: 768px) {
  .howtouse_tab__btn:first-of-type {
    border-radius: min(2.7777777778vw, 12.5px) min(2.7777777778vw, 12.5px) 0 0;
  }
}
.howtouse_tab__btn:last-of-type {
  border-radius: 0 10px 10px 0;
}
@media screen and (max-width: 768px) {
  .howtouse_tab__btn:last-of-type {
    border-radius: 0 0 min(2.7777777778vw, 12.5px) min(2.7777777778vw, 12.5px);
  }
}
.howtouse_content {
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .howtouse_content {
    margin-bottom: min(16.6666666667vw, 75px);
  }
}
.howtouse_content_0 .flow_step {
  width: 100%;
  padding: 100px 50px 0;
  background-color: #F7F0CC;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .howtouse_content_0 .flow_step {
    padding: min(16.6666666667vw, 75px) min(3.8888888889vw, 17.5px) 0;
  }
}
.howtouse_content_0 .flow_step-container {
  width: 100%;
}
.howtouse_content_0 .flow_step .flow_outer {
  width: 100%;
  padding-right: 40px;
}
.howtouse_content_0 .flow_btn {
  gap: 16px;
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .howtouse_content_0 .flow_btn {
    flex-direction: column;
  }
}
.howtouse_content_0 .flow_btn .btn-contact-y {
  width: 280px;
  height: 96px;
  padding: 14px;
  border-width: 2px;
  box-shadow: 10px 10px 5px -5px #d3d3d3;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .howtouse_content_0 .flow_btn .btn-contact-y {
    width: min(66.6666666667vw, 300px);
    height: min(26.6666666667vw, 120px);
    border-width: min(0.5555555556vw, 2.5px);
    padding: min(3.8888888889vw, 17.5px) min(2.2222222222vw, 10px);
  }
}
.howtouse_content_0 .flow_btn .btn-contact-y img {
  width: 77px;
  height: 67px;
  top: 14px;
  right: 14px;
}
@media screen and (max-width: 768px) {
  .howtouse_content_0 .flow_btn .btn-contact-y img {
    width: min(18.0555555556vw, 81.25px);
    height: min(13.8888888889vw, 62.5px);
    right: min(2.2222222222vw, 10px);
    top: min(3.8888888889vw, 17.5px);
  }
}
.howtouse_content_0 .flow_btn .btn-contact-y__txt01 {
  font-size: 18px;
  margin-bottom: 8px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .howtouse_content_0 .flow_btn .btn-contact-y__txt01 {
    font-size: min(5vw, 22.5px);
    margin-bottom: min(2.2222222222vw, 10px);
  }
}
.howtouse_content_0 .flow_btn .btn-contact-y__txt02 {
  font-size: 11px;
  width: 168px;
  height: 30px;
  padding: 8px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .howtouse_content_0 .flow_btn .btn-contact-y__txt02 {
    font-size: min(3.0555555556vw, 13.75px);
    width: min(46.6666666667vw, 210px);
    height: min(8.3333333333vw, 37.5px);
    padding: min(2.2222222222vw, 10px);
  }
}
.howtouse_content_0 .flow_btn .btn-contact-y__txt02 svg {
  width: 13.9px;
}
@media screen and (max-width: 768px) {
  .howtouse_content_0 .flow_btn .btn-contact-y__txt02 svg {
    width: min(3.8611111111vw, 17.375px);
  }
}
.howtouse_content_0 .flow_btn-02 {
  height: 96px;
}
.howtouse_content_0 .flow_btn-02 i {
  margin-right: 4px;
}
.howtouse_content_0 .flow_btn-02-tel a {
  color: #FF8F8F;
}
.howtouse_content_1 {
  width: 100%;
  padding: 100px 50px 0;
  background-color: #F7F0CC;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .howtouse_content_1 {
    border-radius: min(2.7777777778vw, 12.5px);
    padding: min(16.6666666667vw, 75px) min(3.8888888889vw, 17.5px) min(5vw, 22.5px) 0;
    box-shadow: min(0.8333333333vw, 3.75px) min(0.8333333333vw, 3.75px) min(0.8333333333vw, 3.75px) rgba(0, 0, 0, 0.4);
  }
}
.howtouse_content_1 .accordion {
  width: 100%;
}
.howtouse_content_1 .accordion .title {
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .howtouse_content_1 .accordion .title {
    border-radius: min(2.7777777778vw, 12.5px);
  }
}
.howtouse_content_1 .accordion .toggle:checked + .title {
  border-radius: 0;
  border-top-right-radius: 10px;
}
@media screen and (max-width: 768px) {
  .howtouse_content_1 .accordion .toggle:checked + .title {
    border-top-right-radius: min(2.7777777778vw, 12.5px);
  }
}

.globalmenu_head.service-page {
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .globalmenu_head.service-page {
    padding: 0 min(3.8888888889vw, 17.5px);
  }
}

.infomation {
  padding: 250px 100px 0;
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .infomation {
    padding: 250px 30px 0;
  }
}
@media screen and (max-width: 768px) {
  .infomation {
    padding: min(63.8888888889vw, 287.5px) min(3.8888888889vw, 17.5px) 0;
  }
}
.infomation__inner {
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.infomation_tab {
  width: 100%;
  display: flex;
  height: 150px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
  border-radius: 10px;
  overflow: hidden;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .infomation_tab {
    flex-direction: column;
    height: min(58.3333333333vw, 262.5px);
    box-shadow: min(0.8333333333vw, 3.75px) min(0.8333333333vw, 3.75px) min(0.8333333333vw, 3.75px) rgba(0, 0, 0, 0.4);
    border-radius: min(2.7777777778vw, 12.5px);
    margin-bottom: min(16.6666666667vw, 75px);
  }
}
.infomation_tab_btn {
  width: 33.3333333333%;
  text-align: center;
  height: 100%;
  line-height: 150px;
  background: #fff;
  font-size: 30px;
  cursor: pointer;
  position: relative;
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .infomation_tab_btn {
    font-size: 24px;
  }
}
.infomation_tab_btn::after {
  content: "";
  position: absolute;
  height: 80%;
  top: 10%;
  right: 0;
  width: 1px;
  background-color: #eee;
}
.infomation_tab_btn:last-of-type::after {
  display: none;
}
@media screen and (max-width: 768px) {
  .infomation_tab_btn {
    width: 100%;
    height: min(19.4444444444vw, 87.5px);
    line-height: min(19.4444444444vw, 87.5px);
    font-size: min(6.6666666667vw, 30px);
  }
  .infomation_tab_btn::after {
    content: "";
    position: absolute;
    height: min(0.2777777778vw, 1.25px);
    width: 90%;
    left: 5%;
    top: auto;
    bottom: 0;
    background-color: #eee;
  }
  .infomation_tab_btn:last-of-type::after {
    display: none;
  }
}
.infomation_tab_btn.active {
  background-color: #FF8F8F;
  color: #fff;
}
.infomation_tab_btn.active::after {
  display: none;
}
.infomation_content {
  width: 100%;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.4);
  padding: 50px;
}
@media screen and (max-width: 768px) {
  .infomation_content {
    border-radius: min(2.7777777778vw, 12.5px);
    box-shadow: min(0.8333333333vw, 3.75px) min(0.8333333333vw, 3.75px) min(0.8333333333vw, 3.75px) rgba(0, 0, 0, 0.4);
    padding: min(7.7777777778vw, 35px) min(3.8888888889vw, 17.5px);
  }
}
.infomation_content .policy {
  height: 55vh;
  overflow-y: scroll;
  margin-bottom: 0;
  padding-top: 50px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .infomation_content .policy {
    padding-top: min(13.8888888889vw, 62.5px);
  }
}
.infomation_content .company {
  padding-top: 50px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .infomation_content .company {
    padding-top: min(13.8888888889vw, 62.5px);
  }
}
.infomation_content .company h2 {
  font-size: 32px;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .infomation_content .company h2 {
    font-size: min(6.6666666667vw, 30px);
    margin-bottom: min(8.3333333333vw, 37.5px);
  }
}
.infomation_content .company h3 {
  font-size: 24px;
  padding-bottom: 5px;
  width: 100%;
  color: #FF8F8F;
  border-bottom: 1px solid #FF8F8F;
  margin: 30px 0 20px;
}
@media screen and (max-width: 768px) {
  .infomation_content .company h3 {
    font-size: min(4.4444444444vw, 20px);
    padding-bottom: min(1.3888888889vw, 6.25px);
    border-bottom: min(0.2777777778vw, 1.25px) solid #FF8F8F;
    margin: min(8.3333333333vw, 37.5px) 0 min(5.5555555556vw, 25px);
  }
}
.infomation_content .company dl {
  width: 100%;
  min-height: 50px;
  display: flex;
  font-size: 20px;
}
@media screen and (max-width: 768px) {
  .infomation_content .company dl {
    flex-direction: column;
    margin-bottom: min(2.2222222222vw, 10px);
    font-size: min(4.4444444444vw, 20px);
    min-height: min(16.6666666667vw, 75px);
  }
}
.infomation_content .company dl dt {
  width: 250px;
}
@media screen and (max-width: 768px) {
  .infomation_content .company dl dt {
    width: 100%;
    margin-bottom: min(1.1111111111vw, 5px);
  }
}
.infomation_content .company dl dd {
  font-weight: normal;
  display: flex;
  flex: 1;
  gap: 16px;
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .infomation_content .company dl dd {
    flex-direction: column;
    gap: 4px;
    margin-bottom: 16px;
  }
}
@media screen and (max-width: 768px) {
  .infomation_content .company dl dd {
    flex-direction: column;
    gap: min(2.2222222222vw, 10px);
  }
}
.infomation_content .company dl dd i {
  margin-right: 8px;
}
@media screen and (max-width: 768px) {
  .infomation_content .company dl dd i {
    margin-right: min(2.2222222222vw, 10px);
  }
}
.infomation_content .company dl dd .phone {
  color: #FF8F8F;
  font-weight: bold;
}
.infomation_content .company dl dd .fax {
  font-weight: bold;
}
.infomation .globalmenu_container {
  background-color: transparent;
  box-shadow: none;
  margin-top: 0;
  justify-content: flex-start;
  height: auto;
}
@media screen and (max-width: 1100px) and (min-width: 769px) {
  .infomation .globalmenu_container {
    overflow-y: auto;
    height: auto;
    max-height: none;
  }
}
@media screen and (max-width: 768px) {
  .infomation .globalmenu_container {
    background-color: transparent;
    box-shadow: none;
    justify-content: flex-start;
    height: auto;
    padding-bottom: 0;
  }
}/*# sourceMappingURL=style.css.map */
