/* ==================== */
/* COMMON */
/* ==================== */

@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&family=Noto+Sans+JP:wght@100..900&family=Timmana&family=Viga&display=swap");

:root {
  --main-color: rgba(129, 199, 103, 1);
  --main-light-color: rgba(199, 232, 167, 1);
  --main-lighter-color: rgba(234, 255, 194, 1);
  --main-dark-color: rgba(66, 136, 56, 1);

  --main-light-grey-color: rgba(249, 249, 249, 1);
  --main-light-2-grey-color: rgb(185, 185, 185);
  --main-grey-color: rgb(128, 128, 128);

  --header-height: 100px;

  --section-my: 60px;
  --section-px: 8vw;
  --section-py: var(--section-my);

  --text-h1: 36px;
  --text-h2: 30px;
  --text-h3: 26px;
  --text-h4: 24px;
  --text-h5: 20px;

  --top-mv-mt: calc(var(--header-height));
  --top-mv-height: calc(100vh - var(--header-height));

  --lower-mv-height: 600px;

  --font-family-1: "Noto Sans JP", sans-serif;
  --font-family-2: "Inter", sans-serif;
  --font-family-3: "Viga", sans-serif;
  --font-family-4: "Timmana", sans-serif;

  --box-shadow-dark: 0 4px 50px 0 rgba(0, 0, 0, 0.25);

  --text-shadow-light: 0 0 8px #fff;
}

body {
  line-height: 1.7;
  font-family: var(--font-family-1);
  font-style: normal;
  font-weight: 500;
}

a {
  text-decoration: none;
}

a,
button {
  color: inherit;
  transition: 0.6s;
}

a:hover,
button:hover {
  opacity: 0.8;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* TEXT */
.color-white {
  color: #fff !important;
}

.color-main {
  color: var(--main-color);
}

.color-main-light {
  color: var(--main-light-color);
}

.color-main-lighter {
  color: var(--main-lighter-color);
}

.color-main-lightest {
  color: var(--main-lightest-color);
}

.color-main-dark {
  color: var(--main-dark-color);
}

.color-grey {
  color: var(--main-grey-color);
}

.text-h1 {
  font-size: var(--text-h1);
}

.text-h2 {
  font-size: var(--text-h2);
}

.text-h3 {
  font-size: var(--text-h3);
}

.text-h4 {
  font-size: var(--text-h4);
}

.text-h5 {
  font-size: var(--text-h5);
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.text-bold {
  font-weight: bold;
}

/* PADDING */

/* % */
.px-3pct {
  padding-left: 3%;
  padding-right: 3%;
}

.pl-3pct {
  padding-left: 3%;
}

.pr-3pct {
  padding-right: 3%;
}

/* vw */

.pl-3vw {
  padding-left: 3vw;
}

.pr-3vw {
  padding-right: 3vw;
}

/* MARGIN */
.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.ml-auto {
  margin-left: auto;
}

.mr-auto {
  margin-right: auto;
}

.my-80px {
  margin-top: 80px;
  margin-bottom: 80px;
}

.mb-10px {
  margin-bottom: 10px;
}

.mb-20px {
  margin-bottom: 20px;
}

.mb-30px {
  margin-bottom: 30px;
}

.mb-60px {
  margin-bottom: 60px;
}

/* WIDTH */

.w-fit {
  width: fit-content;
}

.w-full {
  width: 100%;
}

.max-w-500px {
  max-width: 500px;
}

.max-w-600px {
  max-width: 600px;
}

.max-w-800px {
  max-width: 800px;
}

.max-w-1000px {
  max-width: 1000px;
}

.max-w-1200px {
  max-width: 1200px;
}

.max-w-1500px {
  max-width: 1500px;
}

/* BUTTON */

.btn {
  display: block;
  color: var(--main-color);
  text-transform: uppercase;
  font-weight: 600;
  text-align: center;
  width: fit-content;
}

.btn.w-full {
  width: 100%;
}

.btn.bg-white {
  min-width: 200px;
  padding: 15px 20px;
  background: #fff;
  color: var(--main-color);
}

.btn.bg-main {
  min-width: 200px;
  padding: 15px 20px;
  background: var(--main-color);
  color: #fff;
}

.btn.bg-main-dark {
  min-width: 200px;
  padding: 15px 20px;
  background: var(--main-dark-color);
  color: #fff;
}

.btn.rounded {
  border-radius: 8px;
}

.btn.rounded-full {
  border-radius: 100vw;
}

/* SECTION */
.my {
  margin-top: var(--section-my);
  margin-bottom: var(--section-my);
}

.px {
  padding-left: var(--section-px);
  padding-right: var(--section-px);
}

.pl {
  padding-left: var(--section-px);
}

.pr {
  padding-right: var(--section-px);
}

.pt {
  padding-top: var(--section-py);
}

.pb {
  padding-bottom: var(--section-py);
}

.py {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

section .inner {
  margin-left: auto;
  margin-right: auto;
  width: 100%;
  height: 100%;
}

.section_ttl {
  font-weight: 700;
  text-transform: uppercase;
  line-height: normal;
}

.section_ttl.border-bottom {
  border-bottom: 2px solid #000;
  margin-bottom: 30px;
}

.section_subttl {
  font-weight: 600;
  font-family: var(--font-family-1);
  text-transform: uppercase;
  font-size: var(--text-h2);
  line-height: normal;
}

.section_ttl-box {
  display: flex;
  flex-direction: column;
}

.section_ttl-box .section_ttl .sp {
  display: none;
}

.section_capt {
  font-weight: 600;
  font-family: var(--font-family-2);
}

.logo img {
  object-fit: contain;
  max-width: 400px;
}

header .flexbox .logo a img.sp {
  display: none;
}

/* ==================== */
/* COMMON END*/
/* ==================== */

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--header-height);
  background: #fff;
  z-index: 10;
  transition: transform 0.3s ease;
}

header.is-hidden,
header.is-hidden nav {
  transform: translateY(-200%);
}

header .inner,
header .flexbox,
header .flexbox .logo {
  height: 100%;
}

header .flexbox .logo {
  max-width: 180px;
}

header .flexbox {
  display: flex;
  gap: 20px;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 10px var(--section-px);
}

header .flexbox .logo a,
header .flexbox .logo a img {
  display: block;
  width: 100%;
  height: 100%;
}
header nav {
  display: flex;
  gap: 20px;
  align-items: center;
}

header nav .nav_list {
  display: flex;
  gap: 20px;
}

header nav .nav_item.cta {
  display: none;
}

header nav .nav_link {
  color: #000;
  font-weight: 700;
  font-size: 18px;
}

/* hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 32px;
  height: 32px;
  background: none;
  border: none;
  cursor: pointer;
}

.hamburger span {
  display: block;
  height: 2px;
  width: 100%;
  background: #000;
}

.hamburger.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.hamburger.is-open span:nth-child(2) {
  opacity: 0;
}

.hamburger.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

.hamburger span {
  transition: 0.3s;
}

/* ==================== */
/* Footer */
/* ==================== */
footer {
  background: var(--main-light-color);
  color: var(--main-grey-color);
}
footer .flexbox {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 30px;
}

footer .flexbox .logo {
  max-width: 180px;
}

footer .flexbox .nav_list {
  display: flex;
  flex-wrap: wrap;
  max-width: 360px;
}

footer .flexbox .nav_list .nav_item {
  padding: 10px;
  width: 50%;
}

footer .navbox {
  display: flex;
  gap: 20px;
  color: #4A4A4A;
}

footer .navbox .btn {
  height: fit-content;
  min-width: 250px;
  font-size: 14px;
}

footer .navbox .btn span {
  font-size: 24px;
}

footer .txtbox {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
}

footer .txtbox .ttl {
  font-size: 80px;
  font-weight: 700;
}

footer .txtbox .subttl {
  font-size: 24px;
  font-weight: 700;
}

footer .copyright {
  color: #4A4A4A;
  text-align: center;
  font-size: 14px;
}

/* ==================== */
/* Lower MV */
/* ==================== */

.lower_mv {
  background: var(--main-light-color);
  height: 430px;
  margin-top: var(--header-height);
}

.lower_mv .inner {
  position: relative;
}

.lower_mv .txtbox {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 30px;
  height: 100%;
}

.lower_mv .txtbox .mv_ttl {
  font-size: 40px;
  color: #fff;
  font-family: var(--font-family-1);
  font-weight: 600;
  line-height: 1;
  position: relative;
}

.lower_mv .txtbox .mv_ttl::after {
  content: "";
  position: absolute;
  top: -30px;
  left: 50%;
  transform: translateX(-50%);
  width: 75px;
  height: 5px;
  background-color: #C7E8A7;
}

.privacy .lower_mv .txtbox .mv_ttl::after {
  content: unset;
}

.lower_mv .txtbox .mv_subttl {
  font-size: 30px;
  color: #fff;
}

.lower_mv .breadcrumbs {
  display: flex;
  gap: 20px;
  font-weight: 500;
  color: #fff;
  position: absolute;
  left: 0;
  top: 0;
}

/* .lower_mv .breadcrumbs .text-main {
  color: var(--main-color);
}

.lower_mv .breadcrumbs .text-grey {
  color: var(--main-grey-color);
}

.lower_mv .breadcrumbs .breadcrumb:first-child {
  color: var(--main-color);
} */

.lower_mv .breadcrumbs .breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
}

.lower_mv .breadcrumbs .breadcrumb_link {
  width: 100%;
  height: 100%;
  display: block;
}

/* ==================== */
/* Contact Banner */
/* ==================== */
.contactbnr {
  background-color: var(--main-light-color);
  background-image: url("../img/contact/img_02.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: right bottom var(--section-py);
  color: #fff;
}

.contactbnr .section_subttl {
  font-size: 16px;
}

.contactbnr .inner {
  position: relative;
}

.contactbnr .flexbox {
  display: flex;
}

.contactbnr .flexbox .imgbox,
.contactbnr .flexbox .txtbox {
  width: 50%;
}

.contactbnr .flexbox .imgbox img {
  object-fit: contain;
}

.contactbnr .flexbox .imgbox .sp {
  display: none;
}

.contactbnr .flexbox .imgbox .pc {
  display: block;
}

.contactbnr .flexbox .txtbox {
  padding: 20px var(--section-px);
}

.contactbnr .flexbox .txtbox .btn:nth-of-type(1) {
  margin-bottom: 20px;
}

.contactbnr .flexbox .txtbox .btn:nth-of-type(1) span {
  font-size: 32px;
}

.contactbnr .mail-icon {
  position: relative;
  padding-left: 35px;
  min-width: 220px;
}

.contactbnr .mail-icon::after {
  content: "";
  background: url(../img/contact/mail-icon.png) no-repeat;
  background-position: center;
  background-size: contain;
  position: absolute;
  left: 15%;
  top: 50%;
  transform: translateY(-50%);
  width: 25px;
  height: 25px;
}

/* ==================== */
/* Entry Banner */
/* ==================== */

.entry-bnr {
  background-color: var(--main-color);

  background-image: url(../img/common/text-entry.png),
    url(../img/common/text-contact.png);

  background-repeat: no-repeat, no-repeat;

  background-position: left 15% top 5px, right 15% bottom 5px;
  background-size: auto 70px, auto 70px;
  padding-top: 80px;
  padding-bottom: 80px;
  margin-top: 20px;
}

.entry-bnr .flexbox .entry {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 30px;
  border-radius: 15px;
  margin-bottom: 30px;
}

.entry-bnr .flexbox .entry .txtbox,
.entry-bnr .flexbox .contact .txtbox {
  width: 50%;
  font-weight: 600;
}

.entry-bnr .flexbox .entry .txtbox .ttl,
.entry-bnr .flexbox .contact .txtbox .ttl {
  font-size: 20px;
}

.entry-bnr .flexbox .entry .txtbox .ttl {
  color: var(--main-color);
  margin-bottom: 20px;
}

.entry-bnr .flexbox .contact .txtbox .desc {
  color: #fff;
}

.entry-bnr .flexbox .entry .btn::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/common/mail-white.png) no-repeat;
  background-size: contain;
  background-position: center;
}

.entry-bnr .flexbox .entry .btn,
.entry-bnr .flexbox .contact .btn {
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: center;
  min-width: 280px;
}

.entry-bnr .flexbox .entry .btn::after {
  content: "";
  display: block;
  width: 30px;
  height: 20px;
  background: url(../img/common/arrow-right-white.png) no-repeat;
  background-size: contain;
  background-position: center;
  margin-left: 40px;
}

.entry-bnr .flexbox .contact {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 1px solid #fff;
  padding: 30px;
  border-radius: 15px;
}

.entry-bnr .flexbox .contact .btn::before {
  content: "";
  display: block;
  width: 20px;
  height: 20px;
  background: url(../img/common/mail-main.png) no-repeat;
  background-size: contain;
  background-position: center;
}

.entry-bnr .flexbox .contact .btn::after {
  content: "";
  display: block;
  width: 30px;
  height: 20px;
  background: url(../img/common/arrow-right-main.png) no-repeat;
  background-size: contain;
  background-position: center;
  margin-left: 40px;
}

/* Interview */
.interview-content {
  background: var(--main-color);
}

.interview-content .section_ttl {
  font-family: var(--font-family-1);
  font-style: italic;
  font-weight: 400;
  line-height: 1;
}

.interview-content .cards .section_ttl {
  font-style: normal;
  font-weight: 600;
}

.interview-content .section_subttl {
  font-style: italic;
  font-family: var(--font-family-1);
  color: #fff;
}

.interview-content .txtbox {
  text-align: center;
  color: #fff;
}
.interview-content .txtbox .btn {
  color: #fff;
}

.interview-content .slider {
  overflow: hidden;
}

.interview-content .slider .slick-slide {
  background: var(--main-color);
  padding: 10px 5px 10px 5px;
}

.interview-content .slider .slick-slide img {
  height: 500px;
}

/* Sales */
.sales {
  background: var(--main-lighter-color);
}

.sales .inner > div ul {
  padding-left: 32px;
}

.sales .inner > div ul li {
  list-style-type: disc;
}

.sales .note {
  padding: var(--section-py) 20px 0 20px;
  text-align: center;
  margin-top: 30px;
  border-top: 1px dashed var(--main-light-2-grey-color);
}

.tel-icon-left {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.tel-icon-left::before {
  content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url(../img/common/icon_mail.png) no-repeat;
  background-position: center;
  background-size: contain;
}

@media (max-width: 1500px) {
  :root {
    --section-my: 60px;
    --section-px: 5vw;

    --text-h1: 43px;
    --text-h2: 28px;
    --text-h3: 25px;
    --text-h4: 20px;
    --text-h5: 18px;
  }
}

@media (max-width: 1400px) {
  .entry-bnr {
    background-position: left 3% top 5px, right 3% bottom 5px;
  }
}

@media (max-width: 1366px) {
  .interview-content .slider .slick-slide img {
    height: 400px;
  }
}

@media (max-width: 1200px) {
  :root {
    --section-my: 50px;

    --text-h1: 40px;
    --text-h2: 26px;
    --text-h3: 24px;
    --text-h4: 20px;
    --text-h5: 18px;
  }

  header nav .nav_link::before {
    display: none;
  }

  footer .txtbox .ttl {
    font-size: 70px;
  }

  footer .txtbox .subttl {
    font-size: 20px;
  }
}

@media (max-width: 1100px) {
  footer .flexbox {
    flex-direction: column;
  }

  footer .navbox {
    width: 100%;
    justify-content: space-between;
    align-items: center;
  }

  footer .navbox .btn {
    margin: unset;
  }
}

@media (max-width: 1000px) {
  :root {
    --section-px: 3vw;

    --text-h1: 36px;
    --text-h2: 26px;
    --text-h3: 24px;
  }

  header nav {
    position: fixed;
    top: -200vh;
    left: 0;
    right: unset;
    transition: 0.6s;
    z-index: 1;
    background: #fff;
    padding: 30px 3%;
    width: 100vw;
    height: calc(100vh - var(--header-height));
    text-shadow: unset;
    display: flex;
    flex-direction: column;
  }

  header nav.is-open {
    top: var(--header-height);
  }

  header nav .nav_list {
    gap: unset;
    display: flex;
    flex-direction: column;
    width: 100%;
  }

  header nav .nav_list .nav_item {
    border-bottom: 1px solid var(--main-light-2-grey-color);
    padding-bottom: 15px;
    padding-top: 15px;
    width: 100%;
  }

  header nav .nav_list .nav_item.cta {
    display: block;
    border-bottom: unset;
  }

  header nav .nav_list .nav_item.cta .nav_link {
    text-align: center;
    display: block;
    width: 100%;
    background: var(--main-dark-color);
    border-radius: 10px;
    padding-bottom: 20px;
    padding-top: 20px;
  }

  header nav .nav_list .nav_item.cta .nav_link.privacy {
    background: unset;
    padding-top: unset;
    padding-bottom: unset;
    text-align: left;
    margin-top: 30px;
    font-size: 14px;
    color: #dadada;
  }

  .hamburger {
    display: flex;
  }

  .lower_mv {
    height: 300px;
  }

  .lower_mv .txtbox .mv_subttl {
    font-size: 40px;
  }

  footer .txtbox .ttl {
    font-size: 50px;
  }

  .contactbnr .flexbox {
    flex-direction: column;
  }

  .contactbnr .flexbox .imgbox,
  .contactbnr .flexbox .txtbox {
    width: 100%;
  }

  .contactbnr .flexbox .imgbox {
    padding-left: var(--section-px);
    padding-right: var(--section-px);
  }

  .contactbnr .flexbox .imgbox .sp {
    display: block;
  }

  .contactbnr .flexbox .imgbox .pc {
    display: none;
  }

  .contactbnr .flexbox .txtbox {
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .contactbnr .flexbox .txtbox .btn:nth-of-type(1) {
    width: fit-content;
  }

  .contactbnr .flexbox .txtbox .btn:nth-of-type(2) {
    margin-left: auto;
    margin-right: auto;
  }
}

@media (max-width: 820px) {
  .lower_mv .txtbox .mv_subttl {
    font-size: 36px;
  }

  .privacy .lower_mv .txtbox .mv_ttl {
    font-size: 34px;
  }

  .privacy .lower_mv .txtbox .mv_subttl {
    font-size: 26px;
  }
}

@media (max-width: 768px) {
  :root {
    --text-h1: 34px;
    --text-h2: 24px;
    --text-h3: 22px;
  }

  header .flexbox .logo a img.sp {
    display: block;
    max-width: 100px;
  }

  .interview-content .section_subttl {
    text-align: center;
  }

  .section_ttl-box {
    flex-direction: column-reverse;
  }

  .section_ttl-box .section_ttl .sp {
    display: block;
  }

  .section_ttl-box .section_ttl .pc {
    display: none;
  }

  .section_ttl-box .section_ttl {
    font-size: 20px;
  }

  .section_ttl-box .section_subttl {
    font-size: 40px;
  }

  .interview-content .btn {
    margin-left: 0;
  }

  .interview-content .section_desc {
    text-align: left;
  }

  .interview-content .slider .slick-slide img {
    height: 500px;
  }

  footer .flexbox .logo {
    margin: 0 auto;
  }

  footer .navbox {
    flex-direction: column-reverse;
  }
}

@media (max-width: 576px) {
  :root {
    --text-h1: 32px;
    --text-h2: 22px;
    --text-h3: 20px;
  }

  header .flexbox {
    padding: 10px 5% 10px 3%;
  }

  .text-h1 {
    font-size: 26px;
  }

  .privacy .lower_mv {
    background-image: url(../img/privacy/mv-sp.png) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
  }

  .solicitation .lower_mv {
    background-image: url(../img/solicitation/mv-sp.png) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
  }

  .recommended-policy .lower_mv {
    background-image: url(../img/recommended-policy/mv-sp.png) !important;
    background-repeat: no-repeat !important;
    background-position: center !important;
    background-size: cover !important;
  }

  .lower_mv {
    height: 350px;
    min-height: 350px;
  }

  .entry-bnr .flexbox .entry,
  .entry-bnr .flexbox .contact {
    flex-direction: column;
  }

  .entry-bnr .flexbox .entry .txtbox,
  .entry-bnr .flexbox .contact .txtbox {
    width: 100%;
  }

  .entry-bnr .flexbox .entry .btn,
  .entry-bnr .flexbox .contact .btn {
    width: 100%;
  }

  .interview-content .section_subttl {
    color: #fff;
    text-align: start;
  }

  .interview-details .lower_mv .breadcrumbs {
    flex-wrap: wrap;
  }

  .interview-details .lower_mv .breadcrumbs .breadcrumb:nth-child(3) {
    width: 65%;
  }

  .interview-details .lower_mv .breadcrumbs .breadcrumb .text-main:nth-child(4),
  .interview-details .lower_mv .breadcrumbs .breadcrumb:nth-child(5) {
    width: fit-content;
  }

  .job .txtbox p {
    text-align: start;
  }

  .job .txtbox p br,
  .service .section_desc br,
  .interview-content .section_desc br {
    display: none;
  }

  .faq .section_capt {
    margin-bottom: 40px;
    font-size: 32px;
  }
}

@media (max-width: 500px) {
  header .cta_link span {
    font-size: 10px;
  }

  .entry-bnr {
    background-size: 70% auto, 80% auto;
  }

  .lower_mv .txtbox .mv_ttl::after {
    width: 50px;
  }

  .privacy .lower_mv .txtbox .mv_ttl {
    font-size: 27px;
  }
}
