@import url("https://fonts.googleapis.com/css2?family=Zen+Old+Mincho&Noto+Sans+JP:wght@100..900&display=swap");
html,
body {
  height: 100%;
  font-family: "Zen Old Mincho", serif;
  scroll-behavior: smooth;
  scroll-padding-top: 60px;
}

@media screen and (min-width: 961px) {
  .sp {
    display: none !important;
  }
  .pc {
    display: block !important;
  }
}
@media screen and (max-width: 960px) {
  .sp {
    display: block !important;
  }
  .pc {
    display: none !important;
  }
}
@keyframes reflect {
  0%, 50% {
    transform: rotate(45deg) scale(0);
    opacity: 1;
  }
  100% {
    transform: rotate(45deg) scale(100);
    opacity: 0;
  }
}
.cv-btn {
  position: relative;
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-inline: auto;
  width: 100%;
  max-width: 400px;
  font-family: "Noto Sans JP", sans-serif;
}
.cv-btn a.cv {
  position: relative;
  overflow: hidden;
  display: block;
  isolation: isolate;
}
.cv-btn a.cv:hover img {
  opacity: 0.75;
}

body {
  font-size: 15px;
  line-height: 30px;
  font-feature-settings: "palt";
  color: #1d1d1d;
}

header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 40px 20px 20px;
  margin-inline: auto;
  max-width: 800px;
  background-color: #fff;
}
@media screen and (max-width: 960px) {
  header {
    padding: 0;
  }
}
header h1 {
  margin-right: 60px;
  width: 100px;
}
@media screen and (max-width: 960px) {
  header h1 {
    display: none;
  }
}
header h1 img {
  width: 100%;
}
header nav {
  width: 100%;
  max-width: 400px;
  z-index: 100;
}
header nav #drawer {
  display: none;
}
@media screen and (max-width: 960px) {
  header nav {
    position: absolute;
  }
  header nav #drawer:checked ~ ul {
    transform: none;
  }
  header nav #drawer:checked + .open {
    transform: translateX(-280px);
  }
  header nav #drawer:checked + .open span {
    transform: scaleX(0);
  }
  header nav #drawer:checked + .open::before {
    transform: rotate(135deg) scaleX(1.2);
  }
  header nav #drawer:checked + .open::after {
    transform: rotate(-135deg) scaleX(1.2);
  }
  header nav #drawer:checked ~ .close {
    pointer-events: auto;
    background: rgba(0, 0, 0, 0.3);
  }
  header nav label {
    cursor: pointer;
    position: fixed;
  }
  header nav .open {
    top: 20px;
    right: 20px;
    width: 33px;
    height: 33px;
    border-radius: 48px;
    border: 1px solid #F0F0F0;
    background-color: #1D1D1D;
    transition: 0.6s, transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  header nav .open::before, header nav .open::after {
    content: "";
  }
  header nav .open span, header nav .open::before, header nav .open::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 25%;
    width: 50%;
    border-bottom: 2px solid #F0F0F0;
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  header nav .open::before {
    transform: translateY(-6px);
  }
  header nav .open::after {
    transform: translateY(6px);
  }
  header nav .open .close {
    inset: 0;
    pointer-events: none;
    transition: 0.6s;
  }
  header nav ul {
    position: fixed;
    overflow: auto;
    top: 0;
    right: 0;
    width: 280px;
    height: 100%;
    padding: 20px;
    box-sizing: border-box;
    background: #fff;
    transform: translateX(100%);
    transition: transform 0.6s cubic-bezier(0.215, 0.61, 0.355, 1);
  }
}
header ul {
  display: flex;
  justify-content: space-between;
  width: 100%;
  font-size: 13px;
}
@media screen and (max-width: 960px) {
  header ul {
    display: block;
  }
}
header ul li {
  margin: 0 10px;
}
@media screen and (max-width: 960px) {
  header ul li {
    font-size: 18px;
    line-height: 50px;
  }
}
header ul li.active {
  color: #d9cb9a;
}

.caution {
  display: flex;
  justify-content: center;
  align-items: center;
  padding-block: 10px;
  text-align: center;
  font-size: 24px;
  background-color: #DEDCD1;
}
@media screen and (max-width: 960px) {
  .caution {
    position: fixed;
    top: 0;
    left: 0;
    padding-block: 0;
    height: 70px;
    width: 100%;
    font-size: 10px;
    line-height: 16px;
    z-index: 99;
  }
}
.caution--logo {
  position: absolute;
  top: 10px;
  left: 20px;
  width: 60px;
}
@media screen and (min-width: 961px) {
  .caution--logo {
    display: none;
  }
}
.caution--logo img {
  width: 100%;
}
.caution .countdown-timer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  font-size: 32px;
  line-height: 32px;
}
@media screen and (max-width: 960px) {
  .caution .countdown-timer {
    gap: 10px;
  }
}
.caution .countdown-timer ul {
  display: flex;
  align-items: center;
  justify-content: center;
}
.caution .countdown-timer span {
  display: inline-block;
}
.caution .countdown-timer .num {
  padding: 5px 0;
  margin-bottom: 5px;
  width: 50px;
  color: #5d4f33;
  text-align: center;
  font-weight: 600;
  border-radius: 5px;
  background-color: #fff;
}
@media screen and (max-width: 960px) {
  .caution .countdown-timer .num {
    margin-bottom: 3px;
    width: 40px;
    font-size: 24px;
  }
}
.caution .countdown-timer .colon {
  margin-bottom: 25px;
  color: #d9cb9a;
}
.caution .countdown-timer .jp {
  display: block;
  color: #5d4f33;
  font-size: 16px;
  line-height: 16px;
}
@media screen and (max-width: 960px) {
  .caution .countdown-timer .jp {
    font-size: 12px;
    line-height: 12px;
  }
}

main {
  position: relative;
  background-color: #DEDCD1;
}
main .main-inner {
  display: flex;
  align-items: center;
  margin-inline: auto;
  height: 626px;
  max-width: 1366px;
  width: 100%;
  background: url(../img/header_pc.webp) no-repeat center;
  background-size: cover;
}
@media screen and (max-width: 960px) {
  main .main-inner {
    justify-content: center;
    margin-top: 70px;
    height: auto;
    background: url(../img/header_sp.webp) no-repeat center bottom;
    background-size: contain;
  }
}
main .title-box {
  position: relative;
  left: -350px;
  margin-inline: auto;
  width: 900px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  main .title-box {
    position: static;
    margin-bottom: 0;
    width: 100%;
  }
}
main .title-box .join {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  color: #A5986A;
  font-size: 28px;
  font-weight: 600;
}
main .title-box p {
  color: #A0A0A0;
  font-size: 24px;
  font-weight: 600;
  line-height: 24px;
}
@media screen and (max-width: 960px) {
  main .title-box p {
    font-size: 16px;
    line-height: 16px;
  }
}
main .title-box p.sub-title {
  margin-top: 20px;
  color: #2F280E;
  font-size: 38px;
  line-height: 38px;
}
@media screen and (max-width: 960px) {
  main .title-box p.sub-title {
    margin-top: 5px;
    font-size: 28px;
    line-height: 28px;
  }
}
main .title-box h2 {
  margin-top: 20px;
  color: #2F280E;
  font-size: 60px;
  font-weight: 600;
  line-height: 60px;
  letter-spacing: 5px;
}
@media screen and (max-width: 960px) {
  main .title-box h2 {
    margin-top: 5px;
    font-size: 54px;
    line-height: 54px;
  }
}
main .title-box .region {
  display: inline-block;
  padding: 20px 50px;
  margin-top: 20px;
  color: #6F6F6F;
  letter-spacing: 1px;
  border-radius: 10px;
  background-color: #fff;
}
@media screen and (max-width: 960px) {
  main .title-box .region {
    padding-block: 10px;
    margin-top: 10px;
  }
}
main .title-box .region-title {
  position: relative;
  display: inline-block;
  font-size: 16px;
  font-weight: 600;
  line-height: 16px;
}
main .title-box .region-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -20px;
  margin-top: -5px;
  width: 13px;
  height: 10px;
  background: url(../img/icon_region.svg) no-repeat;
  background-size: contain;
}
main .title-box .region-title::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -20px;
  margin-top: -5px;
  width: 13px;
  height: 10px;
  background: url(../img/icon_region.svg) no-repeat;
  background-size: contain;
}
main .title-box .region-text {
  font-size: 12px;
  line-height: 18px;
}
main .title-box .region-text small {
  font-size: 10px;
}
main .title-box .no1 {
  margin-top: -10px;
  margin-inline: auto;
  max-width: 415px;
}
@media screen and (max-width: 960px) {
  main .title-box .no1 {
    margin-top: -20px;
    margin-bottom: 5px;
    width: 80%;
  }
}
main .title-box .no1 img {
  width: 100%;
}
main .title-box .merits {
  padding-bottom: 20px;
  margin-inline: auto;
  text-align: left;
}
@media screen and (max-width: 960px) {
  main .title-box .merits {
    margin-top: -30px;
  }
}
main .title-box .merits img {
  width: 40%;
}
main .title-box .cv-btn {
  margin-block: -10px 20px;
}
main .title-box .cv {
  display: block;
  margin-inline: auto;
}
@media screen and (max-width: 960px) {
  main .title-box .cv {
    max-width: 100%;
  }
}
main .title-box .cv img {
  width: 100%;
}
main .title-box .info {
  position: absolute;
  top: -15px;
  right: -120px;
}
@media screen and (max-width: 960px) {
  main .title-box .info {
    top: -60px;
    right: 0;
    width: 90px;
  }
}

.iwaikin {
  background-color: #DEDCD1;
}
.iwaikin img {
  display: block;
  position: relative;
  padding: 40px 20px 0;
  margin-inline: auto;
  max-width: 400px;
  width: 100%;
}

.vision {
  padding: 50px 0;
  background: url(../img/vision_bg.webp) no-repeat bottom 20px left 10% #DEDCD1;
  background-size: 200px;
}
@media screen and (max-width: 960px) {
  .vision {
    padding: 25px 20px;
    background: url(../img/vision_bg.webp) no-repeat top 20px right 5% #DEDCD1;
    background-size: 100%;
  }
}
.vision__inner {
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  max-width: 980px;
}
@media screen and (max-width: 960px) {
  .vision__inner {
    justify-content: center;
    flex-wrap: wrap;
    gap: 24px;
  }
}
.vision__left {
  padding-top: 50px;
}
@media screen and (max-width: 960px) {
  .vision__left {
    padding-top: 25px;
  }
}
.vision__right {
  max-width: 400px;
}
@media screen and (max-width: 960px) {
  .vision__right {
    margin-inline: -20px;
  }
}
.vision__right img {
  width: 100%;
}
.vision--title {
  font-size: 52px;
  line-height: 52px;
  letter-spacing: 3px;
}
.vision--info {
  margin-top: 30px;
  font-size: 26px;
  line-height: 41px;
}
.vision--text {
  margin-top: 20px;
}

.interview {
  padding: 50px 0 100px;
  background: url(../img/interview1_bg.webp) no-repeat top right 5% #DEDCD1;
  background-size: 300px;
}
@media screen and (max-width: 960px) {
  .interview {
    padding: 25px 20px 50px;
    background: url(../img/interview1_bg.webp) no-repeat top #DEDCD1;
    background-size: 100%;
  }
}
.interview--title {
  text-align: center;
  color: #6F6F6F;
  font-size: 52px;
  line-height: 52px;
  letter-spacing: 3px;
}
.interview__movie {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px 70px;
  margin: 50px auto;
  max-width: 980px;
}
@media screen and (max-width: 960px) {
  .interview__movie {
    grid-template-columns: 1fr;
    margin: 30px auto;
  }
}
.interview__movie li a {
  position: relative;
  display: block;
}
.interview__movie li svg {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -40px;
  margin-left: -40px;
  height: 80px;
  width: 80px;
  fill: rgb(255, 255, 255);
  transform: rotate(90deg);
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .interview__movie li svg {
    margin-top: -20px;
    margin-left: -20px;
    height: 40px;
    width: 40px;
  }
}
@media screen and (max-width: 960px) {
  .interview__movie li .thumbnail {
    display: flex;
  }
  .interview__movie li .thumbnail.-left20 {
    margin-left: -20px;
  }
  .interview__movie li .thumbnail.-right20 {
    margin-right: -20px;
  }
}
.interview__movie li .thumbnail .image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  z-index: 0;
}
@media screen and (max-width: 960px) {
  .interview__movie li .thumbnail .image {
    width: 100%;
  }
}
.interview__movie li .thumbnail .image img {
  width: 100%;
}
@media screen and (max-width: 960px) {
  .interview__movie li .thumbnail .sp {
    flex-shrink: 0;
    width: 40px;
  }
}
.interview__movie li img {
  width: 100%;
}
@media screen and (max-width: 960px) {
  .interview__movie li img {
    margin-bottom: 0;
  }
}
.interview__movie li span {
  display: block;
  margin-bottom: 10px;
  font-size: 16px;
  line-height: 16px;
  color: #d9cb9a;
  letter-spacing: 3px;
}
@media screen and (max-width: 960px) {
  .interview__movie li span {
    margin: 20px 0 0;
    font-size: 12px;
    line-height: 12px;
  }
}
.interview__movie li p {
  display: inline-block;
  padding: 5px;
  margin-top: 10px;
  color: #F0F0F0;
  font-size: 24px;
  line-height: 24px;
  border-radius: 5px;
  background-color: #1D1D1D;
}
@media screen and (max-width: 960px) {
  .interview__movie li p {
    font-size: 18px;
    line-height: 18px;
  }
}
.interview__movie li small {
  display: block;
}

.reason {
  background-color: #DEDCD1;
  background: url(../img/reason_bg.webp) no-repeat top left 5% #DEDCD1;
  background-size: 300px;
}
@media screen and (max-width: 960px) {
  .reason {
    padding: 25px 20px 50px;
    background: url(../img/reason_bg.webp) no-repeat top #DEDCD1;
    background-size: 100%;
  }
}
@media screen and (max-width: 960px) {
  .reason {
    padding-inline: 20px;
  }
}
.reason h2 {
  text-align: center;
  color: #6F6F6F;
  font-size: 52px;
  line-height: 52px;
  letter-spacing: 3px;
}
@media screen and (max-width: 960px) {
  .reason h2 {
    text-align: left;
  }
}
.reason__list {
  margin: 50px auto;
  max-width: 580px;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .reason__list {
    margin: 30px auto;
  }
}
.reason__list li {
  margin-bottom: 40px;
  font-size: 26px;
}
@media screen and (max-width: 960px) {
  .reason__list li {
    display: flex;
    font-size: 22px;
  }
}
.reason__list li span {
  margin-right: 10px;
  color: #A0A0A0;
  font-weight: 600;
}
.reason__list li p {
  display: inline;
}
.reason__list li p strong {
  font-weight: 500;
  background: linear-gradient(transparent 60%, #F0F0F0 30%);
}
.reason .cv {
  display: block;
  margin-inline: auto;
  max-width: 320px;
}
.reason .cv img {
  width: 100%;
}

.merit {
  padding: 50px 0;
  background-color: #DEDCD1;
}
@media screen and (max-width: 960px) {
  .merit {
    padding: 25px 20px;
  }
}
.merit__inner {
  margin-inline: auto;
  max-width: 600px;
}
.merit#no01 {
  background: url(../img/reason1_bg.webp) no-repeat top right 5% #DEDCD1;
  background-size: 300px;
}
@media screen and (max-width: 960px) {
  .merit#no01 {
    background: url(../img/reason1_bg.webp) no-repeat top #DEDCD1;
    background-size: 100%;
  }
}
.merit#no02 {
  background: url(../img/reason2_bg.webp) no-repeat top left 5% #DEDCD1;
  background-size: 300px;
}
@media screen and (max-width: 960px) {
  .merit#no02 {
    background: url(../img/reason2_bg.webp) no-repeat top #DEDCD1;
    background-size: 100%;
  }
}
.merit#no03 {
  background: url(../img/reason3_bg.webp) no-repeat top right 5% #DEDCD1;
  background-size: 300px;
}
@media screen and (max-width: 960px) {
  .merit#no03 {
    background: url(../img/reason3_bg.webp) no-repeat top #DEDCD1;
    background-size: 100%;
  }
}
.merit#no04 {
  background: url(../img/reason4_bg.webp) no-repeat top left 5% #DEDCD1;
  background-size: 300px;
}
@media screen and (max-width: 960px) {
  .merit#no04 {
    background: url(../img/reason4_bg.webp) no-repeat top #DEDCD1;
    background-size: 100%;
  }
}
.merit--subtitle {
  text-align: center;
  color: #414141;
  font-size: 15px;
  line-height: 15px;
}
.merit--num {
  text-align: center;
  color: #A0A0A0;
  font-size: 60px;
  line-height: 60px;
}
.merit--title {
  margin-block: 40px;
  text-align: center;
  font-size: 24px;
  line-height: 24px;
}
@media screen and (max-width: 960px) {
  .merit--title {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 30px;
  }
}
.merit--title p {
  position: relative;
  display: inline-block;
}
.merit--title p::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -20px;
  width: 10px;
  height: 10px;
  background: url(../img/kakko01.svg) no-repeat;
  background-size: contain;
}
.merit--title p::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -20px;
  width: 10px;
  height: 10px;
  background: url(../img/kakko02.svg) no-repeat;
  background-size: contain;
}
.merit--title strong {
  font-weight: 500;
  background: linear-gradient(transparent 60%, #F0F0F0 30%);
}
.merit--photo {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  margin-top: 30px;
  margin-inline: auto;
}
@media screen and (max-width: 960px) {
  .merit--photo {
    grid-template-columns: 1fr;
  }
}
.merit--photo img {
  width: 100%;
}
.merit--figure {
  margin-top: 30px;
  margin-inline: auto;
  max-width: 400px;
}
.merit--figure img {
  width: 100%;
}
.merit--careerplan {
  margin-top: 30px;
  margin-inline: auto;
}
.merit--careerplan img {
  width: 100%;
}
.merit__merit15 {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 50px;
  margin: 50px auto;
  max-width: 980px;
}
@media screen and (max-width: 960px) {
  .merit__merit15 {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px 0;
    margin: 30px auto;
  }
}
.merit__merit15--icon {
  display: block;
  margin-inline: auto;
  width: 55px;
}
.merit__merit15--title {
  margin-block: 10px 5px;
  text-align: center;
  font-size: 15px;
  line-height: 15px;
  white-space: nowrap;
}
@media screen and (max-width: 960px) {
  .merit__merit15--title {
    font-size: 14px;
    white-space: normal;
  }
}
.merit__merit15--info {
  text-align: center;
  color: #676049;
  font-size: 10px;
  line-height: 10px;
}

.message {
  padding: 50px 0;
}
.message.__1 {
  color: #F0F0F0;
  background: url(../img/message1_bg.webp) no-repeat top 10% right 5% #1D1D1D;
  background-size: 300px;
}
@media screen and (max-width: 960px) {
  .message.__1 {
    padding: 25px 20px 0;
    background: url(../img/message1_bg.webp) no-repeat top #1D1D1D;
    background-size: 100%;
  }
}
.message.__1 .message--title strong {
  color: #F0F0F0;
}
.message.__1 .message--title p::before {
  background: url(../img/kakko_white01.svg) no-repeat;
  background-size: contain;
}
.message.__1 .message--title p::after {
  background: url(../img/kakko_white02.svg) no-repeat;
  background-size: contain;
}
.message.__2 {
  color: #1D1D1D;
  background: url(../img/message2_bg.webp) no-repeat top 10% left 5% #F0F0F0;
  background-size: 300px;
}
@media screen and (max-width: 960px) {
  .message.__2 {
    padding: 25px 20px 50px;
    background: url(../img/message2_bg.webp) no-repeat top #F0F0F0;
    background-size: 100%;
  }
}
.message.__2 .message--title strong {
  color: #1D1D1D;
}
.message.__2 .message--title p::before {
  background: url(../img/kakko01.svg) no-repeat;
  background-size: contain;
}
.message.__2 .message--title p::after {
  background: url(../img/kakko02.svg) no-repeat;
  background-size: contain;
}
.message__inner {
  display: flex;
  justify-content: space-between;
  margin-inline: auto;
  max-width: 980px;
}
@media screen and (max-width: 960px) {
  .message__inner {
    display: block;
  }
}
.message__block {
  margin-inline: auto;
  max-width: 450px;
}
.message h2 {
  text-align: center;
  font-size: 52px;
  line-height: 52px;
  letter-spacing: 3px;
}
@media screen and (max-width: 960px) {
  .message h2 {
    text-align: left;
  }
}
.message--title {
  position: relative;
  margin-block: 40px;
  text-align: center;
  font-size: 24px;
  line-height: 24px;
}
@media screen and (max-width: 960px) {
  .message--title {
    margin-bottom: 20px;
    font-size: 22px;
    line-height: 30px;
  }
}
.message--title p {
  display: inline-block;
}
.message--title p::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 10px;
  height: 10px;
}
.message--title p::after {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  width: 10px;
  height: 10px;
}
.message--title strong {
  font-size: 15px;
  font-weight: 400;
}
.message--photo img {
  width: 100%;
}
.message--text {
  margin-top: 30px;
}
.message hr {
  margin-top: 50px;
  margin-inline: -20px;
  border-color: #DEDCD1;
  border-width: 10px;
}

.aun {
  padding: 50px 0;
  color: #F0F0F0;
  background: url(../img/aun_bg.webp) no-repeat top right 5% #1D1D1D;
  background-size: 300px;
}
@media screen and (max-width: 960px) {
  .aun {
    padding: 50px 20px;
    background: url(../img/aun_bg.webp) no-repeat top #1d1d1d;
    background-size: 100%;
  }
}
.aun__inner {
  display: flex;
  justify-content: center;
  gap: 50px;
  margin-inline: auto;
}
@media screen and (max-width: 960px) {
  .aun__inner {
    flex-wrap: wrap;
    gap: 40px;
    margin-inline: auto;
  }
}
.aun__left {
  padding-top: 50px;
}
@media screen and (max-width: 960px) {
  .aun__left {
    padding-top: 0;
  }
}
.aun__right {
  max-width: 400px;
}
.aun__right img {
  width: 100%;
}
.aun--title {
  font-size: 52px;
  line-height: 52px;
  letter-spacing: 3px;
}
@media screen and (max-width: 960px) {
  .aun--title {
    text-align: center;
  }
}
.aun--logo {
  margin-top: 40px;
  width: 120px;
}
@media screen and (max-width: 960px) {
  .aun--logo {
    margin-top: 0;
    margin-inline: auto;
  }
}
.aun--logo img {
  width: 100%;
}
.aun--text {
  margin-top: 20px;
  font-size: 20px;
  line-height: 34px;
}
@media screen and (max-width: 960px) {
  .aun--text {
    text-align: center;
  }
}
.aun .cv-btn {
  padding: 0;
  margin-top: -50px;
}

.shops {
  padding: 100px 0;
  background: url(../img/shops_bg.webp) no-repeat top 10% left 5% #DEDCD1;
  background-size: 300px;
}
@media screen and (max-width: 960px) {
  .shops {
    padding: 25px 20px;
    background: url(../img/shops_bg.webp) no-repeat top #DEDCD1;
    background-size: 100%;
  }
}
.shops__inner {
  margin-inline: auto;
  max-width: 980px;
}
@media screen and (max-width: 960px) {
  .shops__inner {
    margin-top: 25px;
  }
}
.shops--title {
  text-align: center;
  color: #6F6F6F;
  font-size: 52px;
  line-height: 52px;
  letter-spacing: 3px;
}
@media screen and (max-width: 960px) {
  .shops--title {
    text-align: left;
  }
}
.shops--text {
  text-align: center;
  margin-top: 25px;
  font-size: 20px;
  line-height: 34px;
}
@media screen and (max-width: 960px) {
  .shops--text {
    text-align: left;
  }
}
.shops ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  justify-content: center;
  gap: 30px;
  margin-top: 50px;
}
@media screen and (max-width: 960px) {
  .shops ul {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
}
.shops--photo {
  position: relative;
}
.shops--photo img {
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: 10px;
}
.shops--photo p {
  position: absolute;
  right: -10px;
  bottom: 15px;
  color: #fff;
  font-size: 30px;
  line-height: 30px;
  z-index: 1;
}
@media screen and (max-width: 960px) {
  .shops--photo p {
    right: -5px;
    bottom: -5px;
    font-size: 26px;
    line-height: 26px;
  }
}
.shops h3 {
  display: inline-block;
  padding: 5px;
  margin-top: 10px;
  color: #F0F0F0;
  font-size: 24px;
  line-height: 24px;
  border-radius: 5px;
  background-color: #1D1D1D;
}
@media screen and (max-width: 960px) {
  .shops h3 {
    font-size: 15px;
    line-height: 15px;
  }
}
.shops img {
  margin-bottom: 25px;
  width: 100%;
}
@media screen and (max-width: 960px) {
  .shops img {
    margin-bottom: 0;
  }
}

.step {
  padding: 100px 20px;
  text-align: center;
  background: url(../img/step_bg.webp) no-repeat top right 5% #DEDCD1;
  background-size: 400px;
}
@media screen and (max-width: 960px) {
  .step {
    padding: 50px 20px;
    background: url(../img/step_bg.webp) no-repeat top #DEDCD1;
    background-size: 100%;
  }
}
.step__inner {
  margin: 50px auto;
  max-width: 980px;
}
@media screen and (max-width: 960px) {
  .step__inner {
    margin: 30px auto;
  }
}
.step--title {
  text-align: center;
  font-size: 52px;
  line-height: 52px;
  letter-spacing: 3px;
}
@media screen and (max-width: 960px) {
  .step--title {
    text-align: left;
  }
}
.step--text {
  text-align: center;
  margin-top: 30px;
  font-size: 20px;
  line-height: 34px;
}
@media screen and (max-width: 960px) {
  .step--text {
    text-align: left;
  }
}
.step--figure {
  position: relative;
  margin-inline: auto;
  max-width: 400px;
}
.step--figure img {
  width: 100%;
}
.step--figure .cv-btn {
  gap: 20px;
  margin-top: 50px;
  max-width: 350px;
}
.step--figure .cv-btn img {
  width: 100%;
}

.jobdescription {
  padding: 50px 0 200px;
  color: #F0F0F0;
  background: url(../img/jobdescription_bg.webp) no-repeat top right 5% #1D1D1D;
  background-size: 400px;
}
@media screen and (max-width: 960px) {
  .jobdescription {
    padding: 25px 20px 50px;
    background: url(../img/jobdescription_bg.webp) no-repeat top #1D1D1D;
    background-size: 100%;
  }
}
.jobdescription__inner {
  margin: 50px auto;
  max-width: 820px;
}
@media screen and (max-width: 960px) {
  .jobdescription__inner {
    margin: 30px auto;
  }
}
.jobdescription--title {
  text-align: center;
  font-size: 52px;
  line-height: 52px;
  letter-spacing: 3px;
}
@media screen and (max-width: 960px) {
  .jobdescription--title {
    text-align: left;
    font-size: 40px;
    line-height: 40px;
  }
}
.jobdescription--text {
  margin-top: 40px;
  font-size: 20px;
  font-weight: 600;
  line-height: 34px;
}
.jobdescription dl {
  display: grid;
  grid-template-columns: 25% 1fr;
  gap: 20px 0;
  margin-block: 20px 50px;
  font-size: 18px;
  line-height: 28px;
}
@media screen and (max-width: 960px) {
  .jobdescription dl {
    font-size: 16px;
    line-height: 24px;
  }
}
.jobdescription dl dt {
  color: #A0A0A0;
}
.jobdescription dl ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
}
@media screen and (max-width: 960px) {
  .jobdescription dl ul {
    grid-template-columns: 1fr;
  }
}
.jobdescription dl ul img {
  width: 100%;
}
.jobdescription dl small {
  font-size: 12px;
  line-height: 18px;
}

footer {
  position: fixed;
  left: 0;
  bottom: 0;
  padding: 15px;
  width: 100%;
  display: flex;
  justify-content: center;
  text-align: center;
  visibility: visible;
  opacity: 1;
  transition: 0.5s;
  z-index: 100;
}
@media screen and (max-width: 960px) {
  footer {
    padding-bottom: 10px;
  }
}
footer.delete {
  visibility: hidden;
  opacity: 0;
}
footer .inner {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 980px;
  width: 100%;
}
@media screen and (max-width: 960px) {
  footer .inner {
    flex-wrap: wrap;
  }
}
footer .cv-btn {
  padding: 0;
  max-width: 600px;
}
@media screen and (max-width: 960px) {
  footer .cv-btn {
    order: 2;
  }
}
footer .cv-btn a.cv {
  display: block;
  margin-inline: auto;
}
footer .cv-btn li:first-child img {
  width: 250px;
}
@media screen and (max-width: 960px) {
  footer .cv-btn li:first-child img {
    width: 100%;
  }
}
footer .cv-btn li:last-child img {
  width: 283px;
}
@media screen and (max-width: 960px) {
  footer .cv-btn li:last-child img {
    width: 100%;
  }
}/*# sourceMappingURL=style.css.map */