@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  color: #3E3E3E;
  background: #fff;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  overflow: hidden;
  font-size: clamp(0px, 16 * 100vw / 1281, 16px);
  line-height: 1.8;
  letter-spacing: 1.4px;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  font-feature-settings: "palt";
}
@media screen and (max-width: 1280px) {
  body {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  body {
    font-size: 14px;
  }
}

img {
  max-width: 100%;
  height: auto;
}

.interview-img{
  border-radius: 8px;
}

.hover {
  opacity: 1;
  transition: 0.3s ease-in-out;
}
.hover:hover {
  opacity: 0.7;
}

.clearfix::after {
  content: "";
  clear: both;
  display: table;
}

.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}

.pc {
  display: block;
}
@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}

.txt__c {
  text-align: center;
}

.inner {
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
  box-sizing: border-box;
}

section {
  overflow: hidden;
}

.wrap1240 {
  max-width: 1240px;
  padding: 0 20px;
  margin: 0 auto;
}

.wrap1100 {
  max-width: 1100px;
  padding: 0 20px;
  margin: 0 auto;
}

sup {
  font-size: 12px;
  vertical-align: top;
}

.flex {
  display: flex;
}
@media screen and (max-width: 768px) {
  .flex {
    display: block;
  }
}
.flex__left, .flex__right {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .flex__left, .flex__right {
    width: 100%;
  }
}

.btn_yellow {
  font-size: clamp(0px, 27 * 100vw / 1281, 27px);
  position: relative;
  color: #1F1F1F;
  display: block;
  padding: 20px;
  background: #FFE400;
  border: 2px solid #1F1F1F;
  text-align: center;
  width: 100%;
  max-width: 350px;
  border-radius: 100vh;
  box-shadow: 0 10px 0 #1F1F1F;
}
@media screen and (max-width: 1280px) {
  .btn_yellow {
    font-size: 24px;
  }
}
@media screen and (max-width: 768px) {
  .btn_yellow {
    font-size: 20px;
    max-width: 460px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  .btn_yellow {
    max-width: 270px;
    padding: 16px 10px;
    font-size: 18px;
  }
}
.btn_yellow:hover {
  box-shadow: 0 5px 0 #1F1F1F;
  opacity: 1;
  transform: translate(0px, 5px);
}
@media screen and (max-width: 768px) {
  .btn_yellow {
    font-size: 18px;
  }
}
.btn_yellow span {
  position: relative;
  padding-left: 40px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .btn_yellow span {
    padding-left: 30px;
  }
}
.btn_yellow span:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
.btn_yellow.mail span:after {
  width: 31px;
  height: 29px;
  margin: auto;
  background: url(../images/icon-mail.svg) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .btn_yellow.mail span:after {
    width: 22px;
    height: 19px;
  }
}
.btn_yellow.recruit span:after {
  width: 29px;
  height: 31px;
  margin: auto;
  background: url(../images/icon-recruit.svg) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .btn_yellow.recruit span:after {
    width: 19px;
    height: 20px;
  }
}

.btn_red {
  color: #fff;
  font-size: clamp(0px, 23 * 100vw / 1281, 23px);
  position: relative;
  display: block;
  padding: 20px;
  background: #EF4645;
  border: 2px solid #1F1F1F;
  text-align: center;
  width: 100%;
  max-width: 331px;
  border-radius: 100vh;
  box-shadow: 0 10px 0 #1F1F1F;
}
.btn_red:hover {
  box-shadow: 0 5px 0 #1F1F1F;
  opacity: 1;
  transform: translate(0px, 5px);
}
@media screen and (max-width: 1280px) {
  .btn_red {
    font-size: 23px;
  }
}
@media screen and (max-width: 768px) {
  .btn_red {
    font-size: 1.8rem;
    padding: 16px 20px;
  }
}
@media screen and (max-width: 480px) {
  .btn_red {
    max-width: 270px;
  }
}
.btn_red span {
  position: relative;
  display: block;
}
.btn_red span:after {
  content: "";
  position: absolute;
  right: 0px;
  top: 0;
  bottom: 0;
  width: 25px;
  height: 25px;
  margin: auto;
  background: url(../images/btn-arrow.webp) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .btn_red span:after {
    width: 20px;
    height: 20px;
  }
}

#header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  box-sizing: border-box;
  z-index: 8888;
  background: #fff;
  border-bottom: 3px solid #1F1F1F;
  padding: 10px 0;
}
@media screen and (max-width: 1050px) {
  #header {
    display: block;
    padding: 10px 0;
    min-height: 57px;
  }
}
#header #button {
  display: none;
  background: #1F1F1F;
}
@media screen and (max-width: 1050px) {
  #header #button {
    display: block;
    position: absolute;
    top: 0;
    right: 0;
    padding: 0;
  }
}
@media screen and (max-width: 1050px) {
  #header #button.open_button .close {
    display: block;
    animation: fade-in 0.5s;
    opacity: 1;
    z-index: 9998;
  }
}
#header .hd_logo {
  width: 20%;
  max-width: 213px;
}
@media screen and (max-width: 1400px) {
  #header .hd_logo {
    width: 15%;
  }
}
@media screen and (max-width: 1050px) {
  #header .hd_logo {
    width: 100%;
    max-width: 213px;
  }
}
@media screen and (max-width: 768px) {
  #header .hd_logo {
    width: 100%;
    max-width: 183px;
  }
}
#header .hd_logo a {
  display: block;
  line-height: 1;
}
#header .wrap {
  width: 100%;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5%;
}

.drawer_hidden {
  display: none;
}

.drawer_open {
  display: flex;
  height: 57px;
  width: 57px;
  justify-content: center;
  align-items: center;
  position: relative;
  z-index: 9999;
  cursor: pointer;
}
.drawer_open span,
.drawer_open span::before,
.drawer_open span::after {
  content: "";
  display: block;
  height: 2px;
  width: 25px;
  border-radius: 3px;
  background: #0b0b0b;
  transition: 0.5s;
  position: absolute;
}
@media screen and (max-width: 1050px) {
  .drawer_open span,
  .drawer_open span::before,
  .drawer_open span::after {
    background: #fff;
  }
}
.drawer_open span::before {
  bottom: 8px;
}
.drawer_open span::after {
  top: 8px;
}

#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
}
#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
}

nav {
  text-align: right;
  width: 76%;
  max-width: 1265px;
}
@media screen and (max-width: 1400px) {
  nav {
    width: 90%;
  }
}
@media screen and (max-width: 1050px) {
  nav {
    text-align: center;
    position: fixed;
    top: 57px;
    left: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    z-index: -100;
    display: none;
    opacity: 0;
    padding: 0 20px;
  }
}
nav ul {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
@media screen and (max-width: 1050px) {
  nav ul {
    padding: 55px 0 0 0;
    display: block;
  }
}
nav ul li {
  text-align: center;
  margin-left: 4%;
}
@media screen and (max-width: 1280px) {
  nav ul li {
    margin-left: 2%;
  }
}
@media screen and (max-width: 1050px) {
  nav ul li {
    display: block;
    margin-bottom: 15px;
    width: 100%;
    text-align: left;
    margin-left: 0;
    text-align: center;
  }
}
nav ul li a {
  font-size: clamp(0px, 16 * 100vw / 1281, 16px);
  color: #1F1F1F;
  font-weight: 700;
}
@media screen and (max-width: 1500px) {
  nav ul li a {
    font-size: 14px;
  }
}
@media screen and (max-width: 1100px) {
  nav ul li a {
    font-size: 12px;
  }
}
@media screen and (max-width: 1050px) {
  nav ul li a {
    display: block;
    font-size: 22px;
    padding: 0;
  }
}
nav ul li.header__recruit a, nav ul li.header__entry a {
  border-radius: 100vh;
  text-align: center;
  position: relative;
  padding: 10px;
  width: 144px;
  display: block;
}
@media screen and (max-width: 1050px) {
  nav ul li.header__recruit a, nav ul li.header__entry a {
    width: 100%;
    max-width: 360px;
    margin: 0 auto;
  }
}
nav ul li.header__recruit a span, nav ul li.header__entry a span {
  position: relative;
  padding-left: 30px;
}
nav ul li.header__recruit a span:before, nav ul li.header__entry a span:before {
  display: block;
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
@media screen and (max-width: 1050px) {
  nav ul li.header__recruit {
    margin-top: 5vh;
  }
}
nav ul li.header__recruit a {
  border: 2px solid #1F1F1F;
  background: #fff;
}
nav ul li.header__recruit a span:before {
  width: 19px;
  height: 22px;
  background: url(../images/header-recruit.svg) no-repeat center/cover;
}
nav ul li.header__entry {
  margin-left: 15px;
}
@media screen and (max-width: 1050px) {
  nav ul li.header__entry {
    margin-left: 0;
  }
}
nav ul li.header__entry a {
  color: #fff;
  border: 2px solid #1F1F1F;
  background: #1F1F1F;
}
nav ul li.header__entry a span:before {
  width: 20px;
  height: 19px;
  background: url(../images/header-mail.svg) no-repeat center/cover;
}
@media screen and (max-width: 1050px) {
  nav.open {
    display: block;
    animation: fade-in 0.5s;
    opacity: 1;
    height: calc(100% - 57px);
    z-index: 2;
  }
}

/********** mainvisual **********/
.mainvisual {
  position: relative;
  padding: 0;
  margin-top: 73px;
  z-index: 2;
}
@media screen and (max-width: 1050px) {
  .mainvisual {
    overflow: initial;
    margin-top: 57px;
  }
}
.mainvisual .wrap1240 {
  max-width: 100%;
}
.mainvisual__inner {
  padding-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .mainvisual__inner {
    padding-bottom: 0;
  }
}
.mainvisual__ttl {
  padding: 56px 0 0;
  max-width: 941px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .mainvisual__ttl {
    padding: 10% 0 2%;
    margin-bottom: 3px;
  }
}
@media screen and (max-width: 480px) {
  .mainvisual__ttl {
    padding: 85px 0 10px;
  }
}
.mainvisual__txt {
  max-width: 850px;
  margin: 0 auto;
  padding: 80px 95px 90px;
  background: url(../images/mv-txt-bg-pc.webp) no-repeat center/100% 100%;
  position: relative;
  z-index: 2;
  box-shadow: 10px 10px 0 rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 768px) {
  .mainvisual__txt {
    background: url(../images/mv-txt-bg-sp.webp) no-repeat center/100% 100%;
    position: relative;
    margin: 0 auto 40px;
    padding: 40px 45px;
    max-width: 600px;
  }
}
@media screen and (max-width: 520px) {
  .mainvisual__txt {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.mainvisual__txt:after, .mainvisual__txt:before {
  content: "";
  position: absolute;
  bottom: 3px;
  z-index: 1;
}
.mainvisual__txt:after {
  width: clamp(0px, 264 * 100vw / 1281, 264px);
  height: clamp(0px, 251 * 100vw / 1281, 251px);
  left: -144px;
  background: url(../images/mv-txt-leftimg.svg) no-repeat center/cover;
}
@media screen and (max-width: 1280px) {
  .mainvisual__txt:after {
    left: -114px;
  }
}
@media screen and (max-width: 1050px) {
  .mainvisual__txt:after {
    left: -82px;
  }
}
@media screen and (max-width: 768px) {
  .mainvisual__txt:after {
    padding: 7% 20px;
    width: 264px;
    height: 251px;
    bottom: -60px;
  }
}
@media screen and (max-width: 768px) {
  .mainvisual__txt:after {
    padding: 30px 20px;
    width: 106px;
    height: 87px;
    left: -90px;
    bottom: -77px;
  }
}
.mainvisual__txt:before {
  width: clamp(0px, 297 * 100vw / 1281, 297px);
  height: clamp(0px, 251 * 100vw / 1281, 251px);
  right: -144px;
  background: url(../images/mv-txt-rightimg.svg) no-repeat center/cover;
}
@media screen and (max-width: 1280px) {
  .mainvisual__txt:before {
    right: -114px;
  }
}
@media screen and (max-width: 1050px) {
  .mainvisual__txt:before {
    right: -82px;
  }
}
@media screen and (max-width: 768px) {
  .mainvisual__txt:before {
    width: 297px;
    height: 251px;
    bottom: -60px;
  }
}
@media screen and (max-width: 768px) {
  .mainvisual__txt:before {
    width: 149px;
    height: 126px;
    right: -80px;
  }
}
.mainvisual__txt__inner {
  position: relative;
}
.mainvisual__txt__inner:before {
  content: "";
  position: absolute;
  z-index: 1;
  right: -105px;
  top: 100px;
  width: 32px;
  height: 32px;
  background: url(../images/img-ball.svg) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .mainvisual__txt__inner:before {
    width: 15px;
    height: 15px;
    right: 20px;
    top: -45px;
  }
}
@media screen and (max-width: 768px) {
  .mainvisual__txt__inner:after {
    content: "";
    position: absolute;
    z-index: 1;
    width: 34px;
    height: 34px;
    right: -60px;
    bottom: 45px;
    background: url(../images/img-ball.svg) no-repeat center/cover;
  }
}
@media screen and (max-width: 490px) {
  .mainvisual__txt__inner:after {
    right: -30px;
  }
}
.mainvisual__txt p {
  line-height: 1.4;
}
.mainvisual__txt p span {
  font-size: clamp(0px, 20 * 100vw / 1281, 20px);
  font-weight: 700;
  padding-bottom: 10px;
  display: block;
  border-bottom: 1px dashed #1F1F1F;
}
@media screen and (max-width: 768px) {
  .mainvisual__txt p span {
    padding-top: 10px;
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .mainvisual__txt p span {
    font-size: 14px;
  }
}
.mainvisual__txt p:nth-of-type(1) {
  margin-bottom: 50px;
}
@media screen and (max-width: 768px) {
  .mainvisual__txt p:nth-of-type(1) {
    margin-bottom: 40px;
  }
}
.mainvisual__txt p:nth-of-type(2) {
  padding-top: 30px;
  border-top: 1px dashed #1F1F1F;
}
@media screen and (max-width: 768px) {
  .mainvisual__txt p:nth-of-type(2) {
    padding-top: 10px;
  }
}
.mainvisual__btn {
  margin-bottom: 85px;
}
@media screen and (max-width: 768px) {
  .mainvisual__btn {
    margin-bottom: 10%;
  }
}
@media screen and (max-width: 480px) {
  .mainvisual__btn {
    margin-bottom: 65px;
  }
}
.mainvisual__btn__flex {
  display: flex;
  justify-content: center;
  max-width: 787px;
  margin: 0 auto;
  gap: 15px;
}
@media screen and (max-width: 768px) {
  .mainvisual__btn__flex {
    display: block;
  }
}
.mainvisual__btn__flex a {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .mainvisual__btn__flex a {
    margin: 0 auto 20px;
  }
}
.mainvisual__bg {
  position: absolute;
  left: -50%;
  right: -50%;
  top: -16px;
  z-index: -1;
  transform: translate(50%, 0);
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .mainvisual__bg {
    top: 0;
  }
}
.mainvisual__bg img {
  width: 100%;
}

.bg__red {
  overflow: hidden;
  background: #EF4645;
}

.bg-grid {
  position: relative;
  z-index: 1;
}
.bg-grid:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  background: url(../images/grid-bg.webp) repeat top center/92px 92px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .bg-grid:before {
    background-size: 80px 80px;
  }
}

footer {
  color: #fff;
  background: #1F1F1F;
  text-align: center;
  padding: 10px 20px;
}
footer .pagetop {
  display: none; /* ← これで上部では非表示 */
  position: fixed;
  right: 20px;
  bottom: 20px;
  margin-top: 3px;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #111;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  z-index: 3;
  transition: transform 0.15s ease, filter 0.15s ease, box-shadow 0.15s ease;
}
footer .pagetop::before {
  content: "";
  display: inline-block;
  width: 12px;
  height: 12px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: rotate(-135deg) translateY(-1px);
}
footer .pagetop:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.22);
  filter: brightness(1.1);
}
@media (max-width: 640px) {
  footer .pagetop {
    right: 14px;
    bottom: 14px;
    width: 48px;
    height: 48px;
  }
}
@media (max-width: 480px) {
  footer .copy {
    font-size: 11px;
  }
}

.company {
  width: 120%;
  left: -10%;
  position: relative;
  padding: 80px 0 0;
  border-radius: 96% 96% 96% 96%/31% 31% 31% 31%;
  background: #FFF5E5;
}
@media screen and (max-width: 768px) {
  .company {
    border-radius: 96% 96% 96% 96%/8% 8% 8% 8%;
    position: relative;
    z-index: 2;
    width: 110%;
    left: -5%;
    padding: 10% 5% 0;
  }
}
@media screen and (max-width: 768px) {
  .company {
    padding-top: 40px;
  }
}
.company__cloud-left {
  position: absolute;
  left: 10%;
  top: 8vh;
}
@media screen and (max-width: 768px) {
  .company__cloud-left {
    width: 120px;
    top: 26px;
    left: 0;
  }
}
.company__cloud-right {
  position: absolute;
  right: 10%;
  top: 200px;
  width: 87.36px;
}
@media screen and (max-width: 768px) {
  .company__cloud-right {
    width: 60px;
    top: 119px;
    right: 0;
  }
}
.company h2 {
  margin-bottom: 30px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .company h2 {
    margin-bottom: 17px;
  }
}
.company .flex {
  justify-content: space-between;
}
.company__box__txt {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .company__box__txt {
    width: 100%;
  }
}
.company__box__txt h3 {
  font-size: clamp(0px, 36 * 100vw / 1281, 36px);
  line-height: 1.4;
  margin-bottom: 30px;
}
@media screen and (max-width: 1280px) {
  .company__box__txt h3 {
    font-size: 36px;
  }
}
@media screen and (max-width: 768px) {
  .company__box__txt h3 {
    font-size: 30px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .company__box__txt h3 {
    font-size: 26px;
  }
}
.company__box__txt h3 span {
  display: inline-block;
  font-weight: 700;
  background: linear-gradient(transparent 70%, #FFE400 30%);
}
.company__box__txt p {
  font-size: 16px;
}
.company__box__img {
  width: 40%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .company__box__img {
    width: 100%;
    margin-top: 30px;
    text-align: center;
  }
  .company__box__img img {
    width: 100%;
  }
}
.company__box__img:before {
  content: "";
  position: absolute;
  right: -20px;
  bottom: -20px;
  width: 83px;
  height: 90px;
  background: url(../images/img-bell.svg) no-repeat center/cover;
  z-index: 2;
}
@media screen and (max-width: 480px) {
  .company__box__img:before {
    width: 41px;
    height: 45px;
    right: -10px;
    bottom: -10px;
  }
}
.company__people {
  line-height: 0;
}
@media screen and (max-width: 768px) {
  .company__people {
    margin-top: 28px;
  }
}

.group {
  padding: 70px 0 60px;
  background: url(../images/group-bg.webp) no-repeat center/100%;
}
@media screen and (max-width: 768px) {
  .group {
    padding: 9% 0 8%;
  }
}
@media screen and (max-width: 480px) {
  .group {
    padding: 44px 0 60px;
  }
}
.group h2 {
  text-align: center;
  margin-bottom: 35px;
}
@media screen and (max-width: 768px) {
  .group h2 {
    margin-bottom: 4%;
  }
}
@media screen and (max-width: 480px) {
  .group h2 {
    margin-bottom: 20px;
  }
}
.group ul {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 15px;
}
.group ul li {
  width: 32%;
  margin-bottom: 20px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .group ul li {
    width: 48%;
  }
}
.group ul li:last-child {
  position: relative;
  margin-bottom: 0;
}
.group ul li:last-child:before {
  content: "";
  position: absolute;
  right: -130px;
  bottom: -100px;
  z-index: 1;
  width: clamp(0px, 319.07 * 100vw / 1281, 319.07px);
  height: clamp(0px, 226.46 * 100vw / 1281, 226.46px);
  background: url(../images/group__img.webp) no-repeat center/cover;
}
@media screen and (max-width: 1050px) {
  .group ul li:last-child:before {
    width: 319px;
    height: 226px;
    right: -120px;
  }
}
@media screen and (max-width: 768px) {
  .group ul li:last-child:before {
    width: 159.5px;
    height: 113px;
    right: -60px;
    bottom: -50px;
  }
}
.group ul li:nth-last-of-type(2) {
  margin-bottom: 0;
}
.group p {
  color: #fff;
}
@media screen and (max-width: 768px) {
  .group p {
    text-align: left;
  }
}

.works {
  padding: 70px 0 140px;
  position: relative;
  background-color: #FFF5E5;
}
@media screen and (max-width: 768px) {
  .works {
    padding: 9% 0 8%;
  }
}
@media screen and (max-width: 480px) {
  .works {
    padding: 45px 0 60px;
  }
}
.works:after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 29px;
  background: url(../images/wave-bg.webp) repeat-x center top/128px 29px;
  z-index: -2;
}
@media screen and (max-width: 1280px) {
  .works:after {
    background-size: 255px 58px;
  }
}
@media screen and (max-width: 768px) {
  .works:after {
    background-size: 67px 17px;
  }
}
.works.bg-grid:before {
  z-index: -1;
}
.works h2 {
  text-align: center;
  max-width: 675px;
  margin: 0 auto 20px;
}
.works__ttl {
  font-size: clamp(0px, 40 * 100vw / 1281, 40px);
  margin-bottom: 20px;
}
@media screen and (max-width: 1280px) {
  .works__ttl {
    font-size: 40px;
  }
}
@media screen and (max-width: 1050px) {
  .works__ttl {
    font-size: 38px;
  }
}
@media screen and (max-width: 768px) {
  .works__ttl {
    font-size: 30px;
  }
}
@media screen and (max-width: 480px) {
  .works__ttl {
    font-size: 20px;
  }
}
.works .tabs {
  margin: 1rem auto 0;
}
.works .tabs .tab-list {
  display: flex;
  justify-content: space-between;
  list-style: none;
  padding: 0;
  border-bottom: 1px solid #e5e7eb;
}
.works .tabs .tab-list li {
  width: 49.5%;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .works .tabs .tab-list li {
    width: 49%;
  }
}
@media screen and (max-width: 768px) {
  .works .tabs .tab-list li span {
    display: block;
    font-size: 14px;
  }
}
@media screen and (max-width: 480px) {
  .works .tabs .tab-list li span {
    font-size: 12px;
  }
}
.works .tabs .tab-list li button {
  font-weight: 700;
}
.works .tabs .tab-list li button:hover {
  color: #1F1F1F;
}
.works .tabs .tab-list .tab {
  width: 100%;
  appearance: none;
  background: #F57227;
  border: 2px solid #1F1F1F;
  border-bottom: none;
  padding: 20px 1rem;
  border-radius: 16px 16px 0 0;
  cursor: pointer;
  transition: 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  color: #fff;
  text-align: center;
  font-size: clamp(0px, 22 * 100vw / 1281, 22px);
  border-bottom: 2px solid #1F1F1F;
}
@media screen and (max-width: 1280px) {
  .works .tabs .tab-list .tab {
    font-size: 22px;
  }
}
@media screen and (max-width: 1050px) {
  .works .tabs .tab-list .tab {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .works .tabs .tab-list .tab {
    font-size: 16px;
    padding: 15px 5px;
  }
}
.works .tabs .tab-list .tab:hover {
  background: #efefef;
}
.works .tabs .tab-list .tab:focus-visible {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}
.works .tabs .tab-list .tab.is-active {
  color: #1F1F1F;
  background: #fff;
  position: relative;
  top: 1px;
  box-shadow: 0 -1px 0 #fff inset;
  border-bottom: 2px solid #fff;
}
.works .tabs .panels {
  padding: 60px;
  border-radius: 0 0 8px 8px;
  background: #fff;
  min-height: 120px;
  border-left: 2px solid #1F1F1F;
  border-right: 2px solid #1F1F1F;
  border-bottom: 2px solid #1F1F1F;
  position: relative;
}
@media screen and (max-width: 768px) {
  .works .tabs .panels {
    padding: 8% 20px;
  }
}
.works .tabs .panels::before {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 92px;
  height: 112px;
  z-index: 1;
  background: url(../images/works-cherry.svg) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .works .tabs .panels::before {
    right: -14px;
    bottom: -30px;
    width: 63px;
    height: 77px;
  }
}
.works .tabs .panels .panel {
  display: none;
}
.works .tabs .panels .panel.is-show {
  display: block;
  animation: panel-fade 0.2s ease;
}
.works .tabs .panels .panel ul li {
  padding: 20px 0;
  border-bottom: 4px dotted #CECECE;
}
@media screen and (max-width: 768px) {
  .works .tabs .panels .panel ul li {
    padding: 30px 0;
  }
}
.works .tabs .panels .panel ul li:nth-of-type(1) {
  padding-top: 0;
}
.works .tabs .panels .panel ul li:last-child {
  border-bottom: none;
}
.works .tabs .panels .panel ul li .flex {
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .works .tabs .panels .panel ul li .flex {
    flex-direction: column-reverse;
    display: flex;
    position: relative;
  }
}
.works .tabs .panels .panel ul li .flex__left {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .works .tabs .panels .panel ul li .flex__left {
    width: 100%;
  }
}
.works .tabs .panels .panel ul li .flex .txt {
  display: flex;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 768px) {
  .works .tabs .panels .panel ul li .flex .txt {
    flex-direction: column;
    align-items: flex-start;
  }
}
.works .tabs .panels .panel ul li .flex .txt img {
  max-width: 80px;
}
@media screen and (max-width: 768px) {
  .works .tabs .panels .panel ul li .flex .txt img {
    position: absolute;
    left: -10px;
    top: -10px;
    width: 80px;
    height: 80px;
  }
}
@media screen and (max-width: 480px) {
  .works .tabs .panels .panel ul li .flex .txt img {
    width: 40px;
    height: 40px;
  }
}
.works .tabs .panels .panel ul li .flex .txt dl dt {
  color: #EF4645;
  font-size: clamp(0px, 22 * 100vw / 1281, 22px);
  font-weight: 800;
}
@media screen and (max-width: 1280px) {
  .works .tabs .panels .panel ul li .flex .txt dl dt {
    font-size: 22px;
  }
}
@media screen and (max-width: 768px) {
  .works .tabs .panels .panel ul li .flex .txt dl dt {
    font-size: 22px;
    line-height: 1.4;
    margin: 18px 0 15px;
  }
}
@media screen and (max-width: 480px) {
  .works .tabs .panels .panel ul li .flex .txt dl dt {
    font-size: 18px;
  }
}
.works .tabs .panels .panel ul li .flex .txt dl dt span {
  display: inline-block !important;
}
@media screen and (max-width: 768px) {
  .works .tabs .panels .panel ul li .flex .txt dl dt span {
    display: none !important;
  }
}
.works .tabs .panels .panel ul li .flex__right {
  width: 30%;
  max-width: 318px;
}
@media screen and (max-width: 768px) {
  .works .tabs .panels .panel ul li .flex__right {
    width: 100%;
    max-width: 100%;
    text-align: center;
  }
}
@media (max-width: 640px) {
  .works .tabs .tab-list {
    flex-wrap: wrap;
    gap: 6px;
  }
}
@keyframes panel-fade {
  from {
    opacity: 0;
    transform: translateY(4px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.works__bottom {
  position: relative;
  z-index: 2;
}
.works__bottom:after, .works__bottom:before {
  content: "";
  position: absolute;
  bottom: 3px;
  z-index: 1;
}
.works__bottom:after {
  width: clamp(0px, 264 * 100vw / 1281, 264px);
  height: clamp(0px, 251 * 100vw / 1281, 251px);
  left: -141px;
  background: url(../images/works-leftimg.webp) no-repeat center/cover;
}
@media screen and (max-width: 1280px) {
  .works__bottom:after {
    left: -114px;
  }
}
@media screen and (max-width: 1050px) {
  .works__bottom:after {
    left: -82px;
  }
}
@media screen and (max-width: 768px) {
  .works__bottom:after {
    padding: 7% 20px;
    width: 264px;
    height: 251px;
  }
}
@media screen and (max-width: 768px) {
  .works__bottom:after {
    padding: 30px 20px;
    width: 106px;
    height: 87px;
    left: -87px;
  }
}
.works__bottom:before {
  width: clamp(0px, 297 * 100vw / 1281, 297px);
  height: clamp(0px, 251 * 100vw / 1281, 251px);
  right: -141px;
  background: url(../images/works-rightimg.webp) no-repeat center/cover;
}
@media screen and (max-width: 1280px) {
  .works__bottom:before {
    right: -114px;
  }
}
@media screen and (max-width: 1050px) {
  .works__bottom:before {
    right: -82px;
  }
}
@media screen and (max-width: 768px) {
  .works__bottom:before {
    width: 297px;
    height: 251px;
  }
}
@media screen and (max-width: 768px) {
  .works__bottom:before {
    width: 149px;
    height: 126px;
    right: -70px;
  }
}
.works__bottom__arrow {
  position: relative;
  bottom: -32px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .works__bottom__arrow {
    bottom: 0;
    max-width: 70px;
    margin: 20px auto 1px;
  }
}
.works__bottom__inner {
  border: 3px solid #1F1F1F;
  padding: 60px;
  background: #fff;
  border-radius: 16px;
}
@media screen and (max-width: 768px) {
  .works__bottom__inner {
    padding: 8% 20px;
  }
}
@media screen and (max-width: 768px) {
  .works__bottom__inner {
    padding: 40px 15px 80px;
  }
}
.works__bottom__inner h3 {
  color: #EF4645;
  font-size: clamp(0px, 33 * 100vw / 1281, 33px);
  font-weight: 800;
  margin-bottom: 30px;
}
@media screen and (max-width: 1280px) {
  .works__bottom__inner h3 {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .works__bottom__inner h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 480px) {
  .works__bottom__inner h3 {
    font-size: 23px;
  }
}
.works__bottom__inner p {
  line-height: 2;
  margin-bottom: 30px;
}
.works__bottom .works__btn__flex {
  gap: 20px;
  justify-content: center;
}
@media screen and (max-width: 1050px) {
  .works__bottom .works__btn__flex {
    position: relative;
    z-index: 2;
  }
}
@media screen and (max-width: 768px) {
  .works__bottom .works__btn__flex {
    flex-direction: column;
    display: flex;
  }
}

.sliderarea {
  overflow: initial;
  position: relative;
}
.sliderarea:after {
  content: "";
  position: absolute;
  left: -20px;
  top: -20px;
  z-index: 1;
  width: 247px;
  height: 90px;
  background: url(../images/slider-cloud.webp) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .sliderarea:after {
    width: 161px;
    height: 59px;
  }
}
@media screen and (max-width: 480px) {
  .sliderarea:after {
    width: 119px;
    height: 43px;
  }
}
.sliderarea ul li img {
  width: 613px;
}
@media screen and (max-width: 480px) {
  .sliderarea ul li img {
    width: 192px;
  }
}
.sliderarea__bg {
  position: absolute;
  left: 0;
  bottom: -1px;
  width: 100%;
  z-index: 1;
  line-height: 0;
}

.interview {
  padding: 80px 0 130px 0;
  background: #EF4645;
}
@media screen and (max-width: 768px) {
  .interview {
    padding: 10% 0 30px 0;
  }
}
@media screen and (max-width: 480px) {
  .interview {
    padding: 40px 0 30px 0;
  }
}
.interview h2 {
  text-align: center;
  margin-bottom: 55px;
}
@media screen and (max-width: 768px) {
  .interview h2 {
    margin-bottom: 7%;
  }
}
.interview__box {
  background: #fff;
  border: 3px solid #1F1F1F;
  padding: 50px;
  border-radius: 12px;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
  align-items: flex-start;
  box-shadow: 5px 5px 0 #1F1F1F;
}
@media screen and (max-width: 768px) {
  .interview__box {
    padding: 7% 20px;
    display: flex;
    flex-direction: column-reverse;
    border-width: 5px;
    margin-bottom: 20px;
  }
}
@media screen and (max-width: 480px) {
  .interview__box {
    padding: 30px 20px;
  }
}
.interview__box:before {
  content: "";
  position: absolute;
  left: -40px;
  top: -50px;
  width: 90px;
  height: 111px;
  background: url(../images/img-cherry.svg) no-repeat center/cover;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .interview__box:before {
    left: -20px;
    top: -27px;
    width: 66px;
    height: 81px;
  }
}
.interview__box.return {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .interview__box.return {
    flex-direction: column-reverse;
  }
}
.interview__box.return:before {
  content: "";
  position: absolute;
  right: -40px;
  top: -26px;
  left: auto;
  width: 82px;
  height: 90px;
  background: url(../images/img-bell.svg) no-repeat center/cover;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .interview__box.return:before {
    right: auto;
    left: -20px;
    top: -14px;
    width: 60px;
    height: 66px;
    background: url(../images/img-bell-left.svg) no-repeat center/cover;
  }
}
.interview__box.return .interview__box__photo__name {
  right: auto;
  left: -20px;
}
@media screen and (max-width: 768px) {
  .interview__box.return .interview__box__photo__name {
    right: -10px;
    left: auto;
  }
}
.interview__box__txt {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .interview__box__txt {
    width: 100%;
    margin-top: 50px;
  }
}
.interview__box__txt h3 {
  font-size: clamp(0px, 28 * 100vw / 1281, 28px);
  font-weight: 600;
  margin-bottom: 30px;
  line-height: 1.4;
}
@media screen and (max-width: 1280px) {
  .interview__box__txt h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 768px) {
  .interview__box__txt h3 {
    font-size: 26px;
  }
}
@media screen and (max-width: 768px) {
  .interview__box__txt h3 {
    font-size: 22px;
  }
}
.interview__box__txt p {
  margin-bottom: 30px;
}
.interview__box__photo {
  width: 40%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .interview__box__photo {
    width: 100%;
    text-align: center;
  }
}
.interview__box__photo__inner {
  border: 3px solid #1F1F1F;
  border-radius: 12px;
  line-height: 0;
}
.interview__box__photo__name {
  position: absolute;
  right: -20px;
  bottom: -20px;
  background: #FFE400;
  border: 3px solid #1F1F1F;
  padding: 20px 30px;
  border-radius: 12px;
  font-size: clamp(0px, 16 * 100vw / 1281, 16px);
  text-align: left;
}
@media screen and (max-width: 1280px) {
  .interview__box__photo__name {
    font-size: 16px;
  }
}
@media screen and (max-width: 768px) {
  .interview__box__photo__name {
    right: -10px;
    padding: 10px 20px;
  }
}
@media screen and (max-width: 480px) {
  .interview__box__photo__name {
    font-size: 12px;
  }
}

.faq {
  position: relative;
  padding: 130px 0;
  background: #FFF5E5 url(../images/grid-bg.webp) repeat top center/92px 92px;
}
@media screen and (max-width: 768px) {
  .faq {
    background-size: 80px 80px;
    padding: 15% 0;
  }
}
@media screen and (max-width: 480px) {
  .faq {
    padding: 65px 0 48px;
  }
}
.faq:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 29px;
  background: url(../images/wave-bg.webp) repeat-x center top/128px 29px;
  z-index: 1;
}
@media screen and (max-width: 1280px) {
  .faq:before {
    background-size: 255px 58px;
  }
}
@media screen and (max-width: 768px) {
  .faq:before {
    background-size: 67px 17px;
  }
}
.faq h2 {
  width: 100%;
  max-width: 118px;
  margin: 0 auto 30px;
}
@media screen and (max-width: 768px) {
  .faq h2 {
    margin-bottom: 5%;
  }
}
@media screen and (max-width: 480px) {
  .faq h2 {
    max-width: 78px;
    margin-bottom: 10px;
  }
}
.faq__txt {
  font-size: clamp(0px, 30 * 100vw / 1281, 30px);
  margin-bottom: 60px;
}
@media screen and (max-width: 1280px) {
  .faq__txt {
    font-size: 30px;
  }
}
@media screen and (max-width: 768px) {
  .faq__txt {
    font-size: 18px;
    margin-bottom: 8%;
  }
}
@media screen and (max-width: 480px) {
  .faq__txt {
    font-size: 16px;
    margin-bottom: 30px;
  }
}
.faq .accordion {
  margin-inline: auto;
  margin-top: 30px;
  position: relative;
  width: 100%;
}
.faq .accordion-item {
  margin-bottom: 30px;
  border-radius: 8px;
  overflow: hidden;
  border: 3px solid #1F1F1F;
}
@media screen and (max-width: 768px) {
  .faq .accordion-item {
    margin-bottom: 10px;
  }
}
.faq .accordion .accordion-title {
  color: #fff;
  cursor: pointer;
  font-size: clamp(0px, 20 * 100vw / 1281, 20px);
  padding: 30px;
  position: relative;
  background: #F57327;
  line-height: 1.4;
  font-weight: bold;
}
@media screen and (max-width: 1280px) {
  .faq .accordion .accordion-title {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .faq .accordion .accordion-title {
    font-size: 18px;
    padding: 5% 20px;
  }
}
@media screen and (max-width: 480px) {
  .faq .accordion .accordion-title {
    padding: 15px 40px 15px 10px;
  }
}
.faq .accordion .accordion-title .circle {
  position: absolute;
  background: #1F1F1F;
  width: 40px;
  height: 40px;
  border-radius: 100%;
  display: block;
  right: 13px;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
}
@media screen and (max-width: 480px) {
  .faq .accordion .accordion-title .circle {
    width: 28px;
    height: 28px;
    right: 9px;
    bottom: -1px;
  }
}
.faq .accordion .accordion-title::before {
  background: #fff;
  content: "";
  height: 2px;
  position: absolute;
  right: 25px;
  top: 50%;
  transform: rotate(90deg);
  transition: transform 0.3s ease-in-out;
  width: 15px;
  z-index: 2;
}
@media screen and (max-width: 480px) {
  .faq .accordion .accordion-title::before {
    right: 15px;
  }
}
.faq .accordion .accordion-title::after {
  background: #fff;
  content: "";
  height: 2px;
  position: absolute;
  right: 25px;
  top: 50%;
  transition: opacity 0.3s ease-in-out;
  width: 15px;
  z-index: 2;
}
@media screen and (max-width: 480px) {
  .faq .accordion .accordion-title::after {
    right: 15px;
  }
}
.faq .accordion .accordion-title.open::before {
  transform: rotate(180deg);
}
.faq .accordion .accordion-title.open::after {
  opacity: 0;
}
.faq .accordion .accordion-content {
  display: none;
  padding: 30px;
  background: #fff;
  border-radius: 0 0 8px 8px;
  border-top: 3px solid #1F1F1F;
}
@media screen and (max-width: 768px) {
  .faq .accordion .accordion-content {
    padding: 5% 20px;
  }
}
@media screen and (max-width: 480px) {
  .faq .accordion .accordion-content {
    padding: 15px 10px;
  }
}
.faq .accordion .accordion-content p {
  font-size: clamp(0px, 18 * 100vw / 1281, 18px);
}
@media screen and (max-width: 1280px) {
  .faq .accordion .accordion-content p {
    font-size: 18px;
  }
}
@media screen and (max-width: 768px) {
  .faq .accordion .accordion-content p {
    font-size: 16px;
  }
}

.job-spec {
  padding-bottom: 80px;
}
@media screen and (max-width: 768px) {
  .job-spec {
    padding-bottom: 10%;
  }
}
@media screen and (max-width: 480px) {
  .job-spec {
    padding-bottom: 40px;
  }
}
.job-spec h2 {
  color: #1F1F1F;
  text-align: center;
  border-top: 4px solid #1F1F1F;
  border-bottom: 4px solid #1F1F1F;
  font-size: clamp(0px, 42 * 100vw / 1281, 42px);
  padding: 35px 20px;
  font-weight: 700;
  line-height: 1;
}
@media screen and (max-width: 1280px) {
  .job-spec h2 {
    font-size: 42px;
    padding: 5% 20px;
  }
}
@media screen and (max-width: 768px) {
  .job-spec h2 {
    font-size: 38px;
    padding: 20px 20px;
  }
}
@media screen and (max-width: 480px) {
  .job-spec h2 {
    font-size: 32px;
    padding: 20px 20px;
  }
}
.job-spec__btn {
  margin: 60px 0;
  justify-content: center;
  gap: 10px;
}
@media screen and (max-width: 768px) {
  .job-spec__btn {
    display: flex;
    flex-direction: column;
    gap: 20px;
  }
}
@media screen and (max-width: 768px) {
  .job-spec__btn a {
    margin: 0 auto;
  }
}
@media screen and (max-width: 768px) {
  .job-spec .single__btn {
    margin: 40px 0 70px;
  }
}
.job-spec .single__btn a {
  margin-right: auto;
  margin-left: auto;
}
.job-spec__ttl {
  font-size: clamp(0px, 35 * 100vw / 1281, 35px);
  margin-bottom: 18px;
  line-height: 1.4;
  font-weight: 800;
}
@media screen and (max-width: 1280px) {
  .job-spec__ttl {
    font-size: 35px;
  }
}
@media screen and (max-width: 768px) {
  .job-spec__ttl {
    font-size: 30px;
    margin-bottom: 15px;
  }
}
@media screen and (max-width: 480px) {
  .job-spec__ttl {
    font-size: 24px;
  }
}
.job-spec__txt {
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .job-spec__txt {
    margin-bottom: 20px;
  }
}
.job-spec .job-table {
  overflow: hidden;
  width: 100%;
  table-layout: fixed;
  background: #fff;
  color: #222;
  border-radius: 8px;
  border-left: 2px solid #1F1F1F;
  border-top: 2px solid #1F1F1F;
  border-collapse: separate;
}
.job-spec .job-table a {
  width: 100%;
}
.job-spec .job-table caption.job-title {
  text-align: left;
  margin-bottom: 0.5rem;
  padding: 0.6rem 0.8rem;
  background: #f7f7f7;
  border-bottom: 0;
  font-weight: 700;
}
.job-spec .job-table tbody tr.headbar th {
  background: #F57227;
  color: #fff;
  text-align: center;
  padding: 20px;
  font-size: clamp(0px, 18 * 100vw / 1281, 18px);
}
@media screen and (max-width: 768px) {
  .job-spec .job-table tbody tr.headbar th {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .job-spec .job-table tbody tr.headbar th {
    font-size: 15px;
  }
}
.job-spec .job-table tbody tr.headbar th.col-title {
  width: 18%;
  border-radius: 8px 0 0 0;
}
@media screen and (max-width: 768px) {
  .job-spec .job-table tbody tr.headbar th.col-title {
    width: 34%;
  }
}
.job-spec .job-table tbody tr.headbar th.col-detail {
  width: auto;
  border-radius: 0 8px 0 0;
}
.job-spec .job-table tbody tr th,
.job-spec .job-table tbody tr td {
  border-right: 2px solid #1F1F1F;
  border-bottom: 2px solid #1F1F1F;
  vertical-align: top;
  padding: 20px;
  background: #fff;
  font-size: clamp(0px, 18 * 100vw / 1281, 18px);
}
@media screen and (max-width: 768px) {
  .job-spec .job-table tbody tr th,
  .job-spec .job-table tbody tr td {
    font-size: 16px;
    padding: 15px 10px 15px 10px;
  }
}
@media screen and (max-width: 480px) {
  .job-spec .job-table tbody tr th,
  .job-spec .job-table tbody tr td {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .job-spec .job-table tbody tr td {
    font-size: 15px;
  }
}
@media screen and (max-width: 480px) {
  .job-spec .job-table tbody tr td {
    font-size: 14px;
  }
}
.job-spec .job-table tbody tr th {
  background: #fff5e6;
  font-weight: 700;
  text-align: left;
}
.job-spec .job-table tbody tr:nth-child(odd) td {
  background: #FFF5E5;
}
.job-spec .job-table tbody tr:nth-child(even) th {
  background: #fff;
}
.job-spec .job-table tbody .text {
  line-height: 1.7;
}
.job-spec .job-table tbody .text ul, .job-spec .job-table tbody .text ol {
  margin: 0.5rem 0 0.5rem 1.2rem;
}
.job-spec .job-table tbody .text ul li, .job-spec .job-table tbody .text ol li {
  margin: 0.2rem 0;
}
.job-spec .job-table tbody .text p {
  margin: 0 0 4%;
}
.job-spec .job-table tbody .text b, .job-spec .job-table tbody .text strong {
  font-weight: 700;
}
.job-spec .job-table tbody .text small {
  opacity: 0.9;
}
.job-spec__backoffice {
  margin-top: 90px;
}

.contact {
  padding-bottom: 70px;
  background: #fff;
}
@media screen and (max-width: 768px) {
  .contact {
    padding-bottom: 9%;
  }
}
@media screen and (max-width: 480px) {
  .contact {
    padding-bottom: 35px;
  }
}
.contact .wrap1100 {
  max-width: 860px;
}
.contact h2 {
  color: #1F1F1F;
  text-align: center;
  border-top: 4px solid #1F1F1F;
  border-bottom: 4px solid #1F1F1F;
  font-size: clamp(0px, 42 * 100vw / 1281, 42px);
  padding: 35px 20px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 70px;
}
@media screen and (max-width: 1280px) {
  .contact h2 {
    font-size: 42px;
  }
}
@media screen and (max-width: 768px) {
  .contact h2 {
    margin-bottom: 9%;
    font-size: 32px;
  }
}
@media screen and (max-width: 480px) {
  .contact h2 {
    margin-bottom: 35px;
    font-size: 32px;
    padding: 20px 20px;
  }
}
.contact .fc__red {
  color: #EF4645;
  font-weight: 400;
  text-align: left;
}
.contact .mailform-flex {
  display: flex;
  justify-content: space-between;
}
.contact form#mailformpro dl dt {
  float: none;
  border-top: none;
  font-size: clamp(0px, 25 * 100vw / 1281, 25px);
  border-bottom: 1px solid #1F1F1F;
  margin: 70px 0 30px;
  text-align: left;
  width: 100%;
  font-weight: 700;
  background: none;
}
@media screen and (max-width: 1280px) {
  .contact form#mailformpro dl dt {
    font-size: 25px;
  }
}
@media screen and (max-width: 768px) {
  .contact form#mailformpro dl dt {
    font-size: 20px;
  }
}
@media screen and (max-width: 480px) {
  .contact form#mailformpro dl dt {
    font-size: 18px;
  }
}
.contact form#mailformpro dl dt:nth-of-type(1) {
  margin-top: 0;
}
.contact form#mailformpro dl dd {
  padding: 0;
  border-top: none;
  margin-bottom: 25px;
}
@media screen and (max-width: 768px) {
  .contact form#mailformpro dl dd {
    margin-bottom: 4.5%;
  }
}
@media screen and (max-width: 480px) {
  .contact form#mailformpro dl dd {
    margin-bottom: 20px;
  }
}
.contact form#mailformpro dl dd .mailform-name {
  font-size: clamp(0px, 20 * 100vw / 1281, 20px);
  display: block;
  margin-bottom: 10px;
}
@media screen and (max-width: 1280px) {
  .contact form#mailformpro dl dd .mailform-name {
    font-size: 20px;
  }
}
@media screen and (max-width: 768px) {
  .contact form#mailformpro dl dd .mailform-name {
    font-size: 18px;
  }
}
@media screen and (max-width: 480px) {
  .contact form#mailformpro dl dd .mailform-name {
    font-size: 16px;
  }
}
.contact form#mailformpro dl dd input,
.contact form#mailformpro dl dd textarea {
  padding: 10px;
  border-radius: 8px;
  background: #E2E2E2 !important;
  border: none;
  font-size: 17px;
}
.contact form#mailformpro dl dd input.w49,
.contact form#mailformpro dl dd textarea.w49 {
  width: 49% !important;
}
@media screen and (max-width: 480px) {
  .contact form#mailformpro dl dd input.w49,
  .contact form#mailformpro dl dd textarea.w49 {
    width: 48.5% !important;
  }
}
.contact form#mailformpro dl dd textarea {
  width: 100% !important;
  height: auto !important;
}
@media screen and (max-width: 480px) {
  .contact form#mailformpro dl dd input[type=tel],
  .contact form#mailformpro dl dd input[type=email],
  .contact form#mailformpro dl dd input[name=address] {
    width: 100% !important;
  }
}
.contact form#mailformpro dl dd input[type=radio] {
  width: 22px;
  height: 22px;
  vertical-align: middle;
  margin: 0 10px 0 0;
}
.contact form#mailformpro dl dd ul.radio__list {
  display: flex;
}
@media screen and (max-width: 768px) {
  .contact form#mailformpro dl dd ul.radio__list {
    display: block;
  }
}
.contact form#mailformpro dl dd ul.radio__list li {
  margin-right: 4%;
}
.contact form#mailformpro dl dd ul.radio__list li label {
  font-size: clamp(0px, 17 * 100vw / 1281, 17px);
}
@media screen and (max-width: 1280px) {
  .contact form#mailformpro dl dd ul.radio__list li label {
    font-size: 17px;
  }
}
@media screen and (max-width: 768px) {
  .contact form#mailformpro dl dd ul.radio__list li label {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .contact form#mailformpro dl dd ul.radio__list li label {
    font-size: 14px;
  }
}
.contact .privacy {
  font-size: clamp(0px, 17 * 100vw / 1281, 17px);
}
@media screen and (max-width: 768px) {
  .contact .privacy {
    font-size: 15px;
  }
}
.contact .privacy a {
  font-weight: 500;
  color: #EF4645;
  text-decoration: underline;
}
.contact .privacy .custom-checkbox {
  font-weight: 500 !important;
}
.contact .mfp_buttons {
  text-align: center;
}
.contact .mfp_buttons button {
  margin: 20px auto 0;
  cursor: pointer;
}
.contact .mfp_buttons button span {
  font-weight: 700;
}
.contact .mfp_buttons button span::after {
  content: none;
}

#mfp_phase_confirm_inner .mfp_buttons #mfp_button_send {
  display: block;
  color: #fff;
  font-size: clamp(0px, 27 * 100vw / 1281, 27px);
  position: relative;
  display: block;
  padding: 20px;
  background: #EF4645;
  border: 2px solid #1F1F1F;
  text-align: center;
  width: 100%;
  max-width: 331px;
  border-radius: 100vh;
  box-shadow: 0 10px 0 #1F1F1F;
  margin-bottom: 50px;
}
#mfp_phase_confirm_inner .mfp_buttons #mfp_button_send:hover {
  box-shadow: 0 5px 0 #1F1F1F;
  opacity: 1;
  transform: translate(0px, 5px);
}
@media screen and (max-width: 1280px) {
  #mfp_phase_confirm_inner .mfp_buttons #mfp_button_send {
    font-size: 27px;
    margin-bottom: 7%;
  }
}
@media screen and (max-width: 768px) {
  #mfp_phase_confirm_inner .mfp_buttons #mfp_button_send {
    font-size: 1.8rem;
    margin-bottom: 25px;
  }
}
#mfp_phase_confirm_inner .mfp_buttons #mfp_button_cancel {
  color: #1F1F1F;
  background: #ddd;
  border-radius: 100vh;
  border: none;
  padding: 10px;
}

.contact__thanks {
  margin-top: 120px;
}
.contact__thanks a {
  margin: 50px auto 0;
}
.contact__thanks a:after {
  content: none;
}

.fade-in {
  opacity: 0;
  transition: opacity 1s ease-out, transform 1s ease-out;
  will-change: opacity, transform;
  position: relative;
}
.fade-in.fade-up {
  transform: translateY(50px);
}
.fade-in.fade-down {
  transform: translateY(-50px);
}
.fade-in.fade-right {
  transform: translateX(50px);
}
.fade-in.fade-left {
  transform: translateX(-50px);
}
.fade-in.fade-scale {
  transform: scale(0.8);
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.fade-in.visible {
  opacity: 1;
  transform: translate(0, 0);
}

@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* モーダル開いているときの背景固定 */
body.modal-open {
  overflow: hidden;
}

/* プライバシーポリシー モーダル */
.modal {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.7);
  animation: fadeIn 0.3s ease-out;
}

.modal-content {
  position: relative;
  background-color: #fff;
  margin: 2% auto;
  width: 90%;
  max-width: 800px;
  max-height: 90vh;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  overflow: hidden;
  animation: modalSlideIn 0.3s ease-out;
  /* 中央配置のための設定を削除し、margin: auto で中央配置 */
}

.modal-header {
  background: linear-gradient(135deg, #EF4645 0%, #ff6b6b 100%);
  color: #fff;
  padding: 25px 30px;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal-header h3 {
  margin: 0;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}

.close {
  color: #fff;
  font-size: 32px;
  font-weight: 300;
  cursor: pointer;
  line-height: 1;
  padding: 0;
  background: none;
  border: none;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: all 0.2s ease;
}

.close:hover,
.close:focus {
  background-color: rgba(255, 255, 255, 0.2);
  transform: rotate(90deg);
}

.modal-body {
  padding: 0;
  max-height: calc(90vh - 100px);
  overflow-y: auto;
}

.privacy-content {
  padding: 30px;
  line-height: 1.7;
  font-family: "Noto Sans JP", sans-serif;
}

.privacy-content h4 {
  color: #1F1F1F;
  font-size: 20px;
  font-weight: 700;
  margin: 0 0 25px 0;
  padding-bottom: 15px;
  border-bottom: 3px solid #EF4645;
}

.privacy-content h5 {
  color: #EF4645;
  font-size: 18px;
  font-weight: 600;
  margin: 30px 0 15px 0;
}

.privacy-content h5:first-of-type {
  margin-top: 0;
}

.privacy-content p {
  margin: 0 0 15px 0;
  color: #333;
  font-size: 16px;
}

.privacy-content ul {
  margin: 15px 0;
  padding-left: 20px;
}

.privacy-content li {
  margin: 8px 0;
  color: #555;
  font-size: 16px;
}

.privacy-content strong {
  color: #EF4645;
  font-weight: 600;
}

/* プライバシーポリシーリンクのスタイル */
#privacy-link {
  color: #EF4645;
  text-decoration: underline;
  cursor: pointer;
  transition: color 0.2s ease;
}

#privacy-link:hover {
  color: #ff6b6b;
}

/* アニメーション */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes modalSlideIn {
  from {
    opacity: 0;
    transform: translateY(-60px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* レスポンシブ対応 */
@media screen and (max-width: 768px) {
  .modal-content {
    width: 95%;
    margin: 5% auto;
    max-height: 90vh;
  }

  .modal-header {
    padding: 20px 15px;
  }

  .modal-header h3 {
    font-size: 1.2rem;
  }

  .privacy-content {
    padding: 20px 15px;
  }

  .privacy-content h4 {
    font-size: 18px;
  }

  .privacy-content h5 {
    font-size: 16px;
  }

  .privacy-content p,
  .privacy-content li {
    font-size: 16px;
  }
}

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