@charset "UTF-8";
.pc_LL_display {
  display: none;
}
@media screen and (max-width: 1600px) {
  .pc_LL_display {
    display: block;
  }
}

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

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

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

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

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

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

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

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

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

/* animation */
.animation_dokundokun {
  animation: dokundokun 1500ms ease infinite;
}

@keyframes dokundokun {
  0% {
    transform: translateX(-50%) scale(0.94);
  }
  15% {
    transform: translateX(-50%) scale(1.02);
  }
  30% {
    transform: translateX(-50%) scale(0.94);
  }
  45% {
    transform: translateX(-50%) scale(1.02);
  }
  70% {
    transform: translateX(-50%) scale(0.94);
  }
  100% {
    transform: translateX(-50%) scale(0.94);
  }
}
.animation_fuwafuwa {
  animation: fuwafuwa 2s linear infinite;
  scale: 1;
}

@keyframes fuwafuwa {
  0% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0);
  }
}
.animation_shiny {
  background-size: 600% 100%;
  animation: shine 20s infinite;
  animation-delay: 0s;
  animation-timing-function: linear;
}

@keyframes shine {
  0% {
    background-position-x: 400%;
  }
  50% {
    background-position-x: 0%;
  }
  100% {
    background-position-x: -400%;
  }
}
.fadein {
  opacity: 0;
  transform: translateY(20px);
  transition: all 1s;
}

.scrollin {
  opacity: 1;
  transform: translateY(0);
}

body {
  width: 100%;
  overflow-x: hidden;
  position: relative;
  font-family: "Noto Sans JP", sans-serif;
  color: #44413F;
}
@media screen and (max-width: 460px) {
  body {
    position: static;
  }
}

img {
  display: block;
  width: 100%;
}

a {
  text-decoration: none;
}

/* 上層固定背景 */
.bg {
  position: fixed;
  z-index: 0;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  overflow: hidden;
  background-image: url(../img/bg.webp);
  background-size: cover;
  background-position: center center;
  background-attachment: fixed;
  background-repeat: no-repeat;
}
@media screen and (max-width: 800px) {
  .bg {
    z-index: 2;
  }
}
@media screen and (max-width: 460px) {
  .bg {
    display: none;
  }
}

.bg_content {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width: 800px) {
  .bg_content {
    display: none;
  }
}

.bg_content img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.lp_body {
  position: absolute;
  z-index: 3;
  margin-inline: auto;
  width: 100%;
  max-width: 375px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  display: none;
}
@media screen and (max-width: 800px) {
  .lp_body {
    display: block;
  }
}
@media screen and (max-width: 460px) {
  .lp_body {
    max-width: 100%;
    position: static;
    transform: none;
    margin-inline: 0;
    overflow-x: hidden;
  }
}

.section_heading {
  font-weight: 700;
  font-size: 35px;
  padding-left: 12px;
  position: relative;
  margin-bottom: 20px;
}
@media screen and (max-width: 360px) {
  .section_heading {
    font-size: 32px;
  }
}
.section_heading::after {
  content: "";
  position: absolute;
  background-color: #E74F51;
  width: 3px;
  height: 30px;
  top: 54%;
  transform: translateY(-50%);
  left: 0;
}

.wrap {
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 360px) {
  .wrap {
    width: 94%;
  }
}

/*------------------- point ------------------*/
.point {
  background-color: #EADCC8;
  padding: 30px 0;
}

.point_list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
@media screen and (max-width: 360px) {
  .point_list {
    gap: 8px;
  }
}

.point_item {
  background-color: #fff;
  border-radius: 10px;
  padding: 24px 0;
}
.point_item img {
  width: 68px;
  margin: 0 auto 12px;
}
.point_item span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  text-align: center;
  line-height: 1.3;
  font-size: 14px;
  font-weight: 700;
  margin: 0 auto;
}
@media screen and (max-width: 360px) {
  .point_item span {
    font-size: 13px;
  }
}

/*------------------- cta ------------------*/
.cta {
  padding: 50px 0;
  background-image: url(../img/cta_bg.webp);
  background-size: 100% 100%;
  width: 100%;
  overflow: hidden;
}

.cta_heading {
  margin-bottom: 30px;
}

.cta_subheading {
  font-weight: 700;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 10px;
}

.cta_content {
  position: relative;
}

.cta_bubble {
  position: absolute;
  width: 90px;
  top: -21px;
  left: -28px;
}
@media screen and (max-width: 360px) {
  .cta_bubble {
    width: 80px;
    top: -16px;
    left: -20px;
  }
}

.cta_box {
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
}

.cta_ttl {
  background-color: #E74F51;
  font-size: 23px;
  font-weight: 700;
  padding: 12px 0;
  color: #fff;
}
@media screen and (max-width: 360px) {
  .cta_ttl {
    font-size: 21px;
  }
}

.cta_ttl h3 {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding-left: 48px;
}

.cta_detail {
  padding: 12px 0 56px;
  position: relative;
}

.cta_top {
  width: calc(100% - 40px);
  margin: 0 auto 20px;
}
@media screen and (max-width: 360px) {
  .cta_top {
    width: calc(100% - 24px);
  }
}

.cta_txt {
  width: calc(100% - 20px);
  margin-left: auto;
}
@media screen and (max-width: 360px) {
  .cta_txt {
    width: calc(100% - 12px);
  }
}

.cta_btn {
  display: block;
  width: calc(100% - 20px);
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 360px) {
  .cta_btn {
    width: calc(100% - 12px);
  }
}

/*------------------- feature ------------------*/
.feature {
  background-color: #EADCC8;
  padding: 50px 0;
  position: relative;
}

.feature_bg {
  position: absolute;
  width: 100%;
}
.feature_bg:nth-child(1) {
  top: 0;
  left: 0;
}
.feature_bg:nth-child(2) {
  bottom: 0;
  left: 0;
}

.feature_wrap {
  position: relative;
  z-index: 3;
}

.feature_top {
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 20px;
}
.feature_top span {
  font-weight: 700;
  color: #E74F51;
}

.feature_item:not(:last-child) {
  margin-bottom: 20px;
}

.feature_inner {
  background-color: #fff;
  border: 2px solid #A4722F;
  padding: 30px;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
}
.feature_inner h3 {
  color: #E74F51;
  font-weight: 700;
  font-size: 20px;
  line-height: 1.3;
  margin-bottom: 16px;
}
.feature_inner p {
  font-weight: 500;
  text-align: justify;
  line-height: 1.5;
  margin-bottom: 20px;
}
.feature_inner img {
  border-radius: 10px;
}

/*------------------- trouble ------------------*/
.trouble {
  background-image: url(../img/trouble_bg.webp);
  background-size: 100% 100%;
  padding: 50px 0;
  position: relative;
}

.trouble_bg {
  position: absolute;
  top: 0;
  right: 0;
  width: 287px;
}

.trouble_wrap {
  position: relative;
  z-index: 3;
}

.trouble_heading {
  font-size: 30px;
  line-height: 1.3;
  color: #fff;
  font-weight: 700;
  margin-bottom: 20px;
}

.trouble_top {
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 30px;
  color: #fff;
}

.trouble_list {
  background-color: rgba(255, 255, 255, 0.9);
  border-radius: 10px;
  padding: 20px;
}
@media screen and (max-width: 360px) {
  .trouble_list {
    padding: 16px;
  }
}

.trouble_item {
  position: relative;
  padding-left: 34px;
}
@media screen and (max-width: 360px) {
  .trouble_item {
    padding-left: 28px;
  }
}
.trouble_item:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (max-width: 360px) {
  .trouble_item:not(:last-child) {
    margin-bottom: 16px;
  }
}
.trouble_item::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  background-image: url(../img/trouble_icon.webp);
  background-size: 100% 100%;
  top: 1px;
  left: 0;
}
.trouble_item h3 {
  color: #E74F51;
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 10px;
}
@media screen and (max-width: 360px) {
  .trouble_item h3 {
    margin-bottom: 6px;
  }
}
.trouble_item p {
  line-height: 1.5;
  font-weight: 500;
}
@media screen and (max-width: 360px) {
  .trouble_item p {
    font-size: 15px;
  }
}

/*------------------- work ------------------*/
.work {
  padding: 50px 0;
  background-color: #EADCC8;
}

.work_top {
  margin-bottom: 20px;
  line-height: 1.5;
  font-weight: 500;
}

.work_list {
  margin-bottom: 30px;
}

.work_item {
  width: 95%;
}
.work_item:not(:last-child) {
  margin-bottom: 20px;
}

.work_style_heading {
  color: #574115;
  font-weight: 700;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
}

/*------------------- salary ------------------*/
.salary {
  position: relative;
  padding: 50px 0;
}

.salary_bg {
  position: absolute;
  width: 204px;
  top: 0;
  right: 0;
}

.salary_wrap {
  position: relative;
  z-index: 3;
}

.salary_top {
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 30px;
}

.salary_group {
  margin-bottom: 30px;
}

.salary_ttl {
  margin-bottom: 28px;
}

.salary_menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.salary_btn {
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 48px;
  color: #999999;
  background-color: #F5F5F5;
  font-weight: 700;
  cursor: pointer;
}
.salary_btn.active {
  background-color: #A4722F;
  color: #fff;
  cursor: default;
}

.salary_item.active {
  display: block;
}

.salary_item {
  display: none;
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  background-color: #fff;
  padding: 20px;
  border: 3px solid #A4722F;
}

.salary_ex_heading {
  width: 230px;
  margin: 0 auto 20px;
}

.salary_ex_item h4 {
  font-weight: 700;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
}
.salary_ex_item:not(:last-child) {
  margin-bottom: 30px;
}

/*------------------- flow ------------------*/
.flow {
  background-color: #EADCC8;
  padding: 50px 0;
}

.flow_top {
  margin-bottom: 30px;
  line-height: 1.5;
  font-weight: 500;
}

/*------------------- voice ------------------*/
.voice {
  background-color: #fff;
  padding: 50px 0;
}

.voice_top {
  line-height: 1.5;
  margin-bottom: 35px;
  font-weight: 500;
}

.voice_item {
  width: 90%;
  margin: 0 auto;
  border-radius: 10px;
  border: 2px solid #574115;
  padding: 24px 20px;
}
@media screen and (max-width: 360px) {
  .voice_item {
    width: 94%;
  }
}

.voice_prof {
  position: relative;
  margin-bottom: 30px;
}
.voice_prof span {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  background-color: #E74F51;
  font-weight: 700;
  color: #fff;
  position: absolute;
  left: -20px;
  bottom: -18px;
  padding: 10px;
}

.voice_txt {
  padding: 0 12px;
}
.voice_txt h3 {
  padding-bottom: 12px;
  margin-bottom: 12px;
  font-size: 18px;
  font-weight: 700;
  border-bottom: 2px dashed #A4722F;
  line-height: 1.3;
}
.voice_txt p {
  line-height: 1.5;
  font-size: 15px;
  font-weight: 500;
  text-align: justify;
}

.voice .swiper {
  padding-bottom: 36px;
}

.voice .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #E74F51;
}

/*------------------- faq ------------------*/
.faq {
  background-color: #EADCC8;
  padding: 50px 0;
}

.faq_top {
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 30px;
}

.faq_item {
  border-radius: 10px;
  overflow: hidden;
}
.faq_item:not(:last-child) {
  margin-bottom: 20px;
}

.faq_q {
  background: linear-gradient(180deg, #917B45 0%, #3E2700 100%);
  height: 74px;
  width: 100%;
  padding: 0 48px 0 16px;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
}
@media screen and (max-width: 360px) {
  .faq_q {
    padding: 0 32px 0 12px;
  }
}

.faq_q_inner {
  display: grid;
  grid-template-columns: 36px 1fr;
  align-items: center;
}
@media screen and (max-width: 360px) {
  .faq_q_inner {
    grid-template-columns: 30px 1fr;
  }
}

.faq_q_icon {
  color: #fff;
  font-size: 30px;
  font-weight: 700;
  padding-bottom: 4px;
}
@media screen and (max-width: 360px) {
  .faq_q_icon {
    font-size: 24px;
  }
}

.faq_q_txt {
  color: #fff;
  line-height: 1.2;
  font-weight: 700;
}

.faq_q_plus {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  width: 14px;
  height: 14px;
  right: 16px;
  transition: all 0.3s ease-in-out;
  transform: translateY(-50%);
  z-index: 3;
}
@media screen and (max-width: 360px) {
  .faq_q_plus {
    right: 12px;
  }
}
.faq_q_plus::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  background-color: #fff;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.faq_q_plus::before {
  content: "";
  position: absolute;
  width: 2px;
  height: 100%;
  background-color: #fff;
  top: 0;
  transform: translateX(-50%);
  left: 50%;
  transition: all 0.3s ease-in-out;
}

.faq_q.open .faq_q_plus::before {
  transform: translateX(-50%) rotate(-90deg);
}

.faq_a {
  background-color: #fff;
  padding: 16px 28px 16px 16px;
  display: none;
}
@media screen and (max-width: 360px) {
  .faq_a {
    padding: 12px 24px 12px 12px;
  }
}

.faq_a_inner {
  display: grid;
  grid-template-columns: 36px 1fr;
}
@media screen and (max-width: 360px) {
  .faq_a_inner {
    grid-template-columns: 30px 1fr;
  }
}

.faq_a_icon {
  color: #E74F51;
  font-size: 30px;
  font-weight: 700;
  padding-left: 2px;
}
@media screen and (max-width: 360px) {
  .faq_a_icon {
    font-size: 24px;
  }
}

.faq_a_txt {
  line-height: 1.5;
  text-align: justify;
}

/*------------------- perfect ------------------*/
.perfect {
  background-color: #fff;
  padding: 50px 0;
}

.perfect_heading.section_heading {
  font-size: 33px;
}
@media screen and (max-width: 360px) {
  .perfect_heading.section_heading {
    font-size: 31px;
  }
}
@media screen and (max-width: 350px) {
  .perfect_heading.section_heading {
    font-size: 29px;
  }
}

.perfect_top {
  line-height: 1.5;
  font-weight: 500;
  margin-bottom: 30px;
}

.perfect_content {
  border-radius: 10px;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.15);
}

/*------------------- footer ------------------*/
.footer {
  background-color: #fff;
  padding: 16px 0 20px;
  border-top: 2px solid #574115;
}
@media screen and (max-width: 460px) {
  .footer {
    padding: 16px 0 60px;
  }
}

.footer_link {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  text-decoration: underline;
  margin: 0 auto;
  font-weight: 500;
}

/*-------------------  ------------------*/
/*-------------------  ------------------*/
/*-------------------  ------------------*/
/*-------------------  ------------------*//*# sourceMappingURL=index.css.map */