:root {
  --text-black: #333;
  --blue01: #3ea2d8;
  --blue02: #3e7fd8;
  --blue03: #2b87b8;
  --green01: #57c157;
  --green02: #379161;
  --green03: #37bf77;
  --gray01: #777;
  --en: "Barlow", sans-serif;
  --higure: "Higure Gothic";
  --ja: "Noto Sans JP", sans-serif;
  --shadow: 0 5px 15px rgba(#dde6ec, 1);
  --shadow-text: 0 3px 6px rba(0, 0, 0, 0.25);
}

@font-face {
  font-family: "Higure Gothic";
  src: url(../../assets/fonts/HigureGothic-Bold.woff2) format("woff2");
  font-weight: 700;
  font-display: swap;
  font-style: normal;
}
* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

body {
  font-family: var(--ja);
  font-size: clamp(14px, 1.1713030747vw, 16px);
  line-height: 1.625;
  font-weight: 400;
  color: var(--text-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: auto;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

a {
  color: var(--text-black);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}

ul,
li {
  list-style: none;
}

table {
  border-collapse: collapse;
}

table thead th,
table thead td {
  background-color: #f2f2f2;
}

table th,
table td {
  border-collapse: collapse;
}

table th {
  text-align: left;
}

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

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.is-pc {
  display: block;
}

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

@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}
a[href^=tel] {
  text-decoration: none;
  color: inherit;
}

.en {
  font-family: var(--en);
}

.fade {
  opacity: 0;
  transform: translateY(25px);
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  width: 89.6%;
}

.bold {
  font-weight: 700;
}

.flex {
  display: flex;
}

.en {
  font-family: var(--en);
}

.higure {
  font-family: var(--higure);
  font-weight: 700;
  font-style: normal;
}

.header {
  padding: 14px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  .header {
    position: fixed;
    background-color: white;
    padding: 8px;
    top: 0;
    left: 0;
    height: 60px;
  }
}
.header .header-inner {
  align-items: center;
  height: 100%;
  column-gap: 56px;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .header .header-inner {
    justify-content: space-between;
  }
}
.header h1 {
  width: auto;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .header h1 {
    width: 120px;
  }
}
.header h1 a {
  display: block;
}
.header h1 a img {
  display: block;
}
.header .header-nav .nav-list {
  gap: 20px;
}
.header .header-nav .nav-list li a {
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .header .header-nav {
    display: none;
  }
}
.header .header-link {
  display: block;
  color: white;
  background: var(--pink01);
  padding: 12px 24px;
  box-shadow: 0 4px 0 #d6424b;
  font-size: 1.5rem;
  font-weight: 700;
  transition: all 0.5s ease;
  border-radius: 60px;
  z-index: 999;
}
.header .header-link:hover {
  box-shadow: none;
  transform: translateY(4px);
}
@media screen and (max-width: 768px) {
  .header .header-link {
    font-size: 1.3rem;
    white-space: nowrap;
    padding: 8px 16px;
  }
}

.openbtn {
  height: 40px;
  width: 40px;
  position: relative;
  display: none;
  z-index: 999;
}
@media screen and (max-width: 768px) {
  .openbtn {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.openbtn span {
  position: absolute;
  width: 22px;
  height: 2px;
  background: #3e7fd8;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s ease;
}
.openbtn span:nth-of-type(1) {
  top: calc(50% - 6px);
}
.openbtn span:nth-of-type(2) {
  top: 50%;
}
.openbtn span:nth-of-type(3) {
  top: calc(50% + 6px);
}
.openbtn.active span:nth-of-type(1) {
  transform: translate(-50%, 6px) rotate(-45deg);
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  transform: translate(-50%, -6px) rotate(45deg);
}

#gnav-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  #gnav-sp {
    position: fixed;
    z-index: 100;
    display: block;
    top: 0px;
    right: -120%;
    width: 100%;
    padding: 120px 24px 80px 24px;
    background: white;
    transition: all 0.6s ease;
    box-shadow: 0px 3px 6px rgba(87, 69, 66, 0.3);
  }
  #gnav-sp.panelactive {
    right: 0;
  }
  #gnav-sp #gnav-sp-list {
    display: flex;
    justify-content: center;
    align-items: flex-start;
  }
  #gnav-sp #gnav-sp-list ul li {
    margin-bottom: 24px;
  }
  #gnav-sp #gnav-sp-list ul li a {
    font-size: 1.5rem;
  }
}

main {
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  main {
    padding-top: 60px;
  }
}

@keyframes mv-rotate-circle {
  to {
    transform: rotate(360deg);
  }
}
.mv {
  position: relative;
  width: 100%;
  height: 100svh;
}
@media screen and (max-width: 768px) {
  .mv {
    height: auto;
    padding-bottom: 40px;
  }
}
.mv .mv-inner {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .mv .mv-inner {
    flex-direction: column;
    row-gap: 40px;
  }
}
.mv .img-wrapper {
  width: calc(100% - 272px);
  height: calc(100svh - 151px);
  border-radius: 30px 0 0 30px;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .mv .img-wrapper {
    width: calc(100% - 30px);
    margin-left: auto;
    height: auto;
  }
}
.mv .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mv .text-wrapper {
  position: absolute;
  top: 50%;
  left: 69px;
  transform: translateY(-50%);
  max-width: 551px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .mv .text-wrapper {
    position: static;
    transform: translate(0);
    width: 100%;
    padding: 0 30px;
  }
}
.mv .text-wrapper .text {
  font-size: 1.7rem;
  margin-top: 24px;
}
@media screen and (max-width: 768px) {
  .mv .text-wrapper .text {
    margin-top: 20px;
    font-size: 1.5rem;
  }
}
.mv .rotate-circle {
  position: absolute;
  width: auto;
  height: 108.1924577373%;
  aspect-ratio: 1/1;
  top: 50%;
  left: 40%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  .mv .rotate-circle {
    left: 14%;
    top: 30%;
    height: 61%;
  }
}
.mv .rotate-circle img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform-origin: center;
  animation: mv-rotate-circle 60s linear infinite;
}
.mv .scroll-view {
  position: absolute;
  left: 40px;
  bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .mv .scroll-view {
    bottom: 0;
    right: 24px;
    left: auto;
    column-gap: 0.5em;
    flex-direction: row-reverse;
  }
}
.mv .scroll-view a {
  width: 28px;
  height: 28px;
  display: block;
  background: var(--blue01);
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: var(--gray01);
}
@media screen and (max-width: 768px) {
  .mv .scroll-view a {
    width: 21px;
    height: 21px;
    font-size: 0.9rem;
  }
}
.mv .scroll-view a::after {
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  border-top: 1px solid white;
  border-right: 1px solid white;
  transform: rotate(135deg);
  background: var(--blue01);
}
@media screen and (max-width: 768px) {
  .mv .scroll-view a::after {
    width: 6px;
    height: 6px;
  }
}
.mv .scroll-view p {
  font-size: 1.2rem;
  text-align: center;
  font-weight: 600;
  color: var(--gray01);
}
@media screen and (max-width: 768px) {
  .mv .scroll-view p {
    font-size: 0.9rem;
  }
}

.ta-c {
  text-align: center;
}

section {
  padding: 80px 0;
}
@media screen and (max-width: 768px) {
  section {
    padding: 56px 0;
  }
}

hgroup {
  text-align: center;
  margin-bottom: 40px;
}
hgroup h2 {
  font-family: var(--en);
  font-size: clamp(37px, 4.39238653vw, 60px);
  font-weight: 600;
  line-height: 1.2;
}
hgroup .sub-ttl {
  font-weight: 500;
  color: var(--gray01);
}

.color-blue01 {
  color: var(--blue01);
}

.about {
  padding-bottom: 212px;
  padding-top: 140px;
}
@media screen and (max-width: 768px) {
  .about {
    padding-bottom: 120px;
    padding-top: 70px;
  }
}
.about .inner {
  position: relative;
}
.about .inner .deco,
.about .inner .square {
  position: absolute;
  content: "";
  display: inline-block;
  height: auto;
}
.about .inner .deco.deco1,
.about .inner .square.deco1 {
  width: 303px;
  background: url(../../assets/images/deco1.png) no-repeat center/contain;
  left: -200px;
  top: -6px;
  height: 236px;
}
@media screen and (max-width: 768px) {
  .about .inner .deco.deco1,
  .about .inner .square.deco1 {
    width: 119px;
    height: 93px;
    left: -40px;
    top: 70px;
  }
}
.about .inner .deco.deco2,
.about .inner .square.deco2 {
  width: 120px;
  height: 120px;
  background: url(../../assets/images/deco2.png) no-repeat center/contain;
  left: -40px;
  top: 312px;
}
@media screen and (max-width: 768px) {
  .about .inner .deco.deco2,
  .about .inner .square.deco2 {
    width: 79px;
    height: 79px;
    left: -60px;
    top: 300px;
  }
}
.about .inner .deco.deco3,
.about .inner .square.deco3 {
  width: 120px;
  height: 120px;
  background: url(../../assets/images/deco3.png) no-repeat center/contain;
  top: 60px;
  right: 0;
}
@media screen and (max-width: 768px) {
  .about .inner .deco.deco3,
  .about .inner .square.deco3 {
    width: 75px;
    height: 75px;
    top: 78px;
    right: -40px;
  }
}
.about .inner .deco.deco4,
.about .inner .square.deco4 {
  width: 248px;
  height: 193px;
  top: 236px;
  right: -207px;
  background: url(../../assets/images/deco4.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .about .inner .deco.deco4,
  .about .inner .square.deco4 {
    width: 117px;
    height: 91px;
    top: 337px;
    right: -60px;
  }
}
.about .inner .deco.square1,
.about .inner .square.square1 {
  width: 103px;
  height: 103px;
  top: -70px;
  left: 62px;
  background: url(../../assets/images/square1.svg) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
  .about .inner .deco.square1,
  .about .inner .square.square1 {
    width: 50px;
    height: 50px;
    left: -10px;
    top: 45px;
  }
}
.about .inner .deco.square2,
.about .inner .square.square2 {
  width: 19px;
  height: 19px;
  background: url(../../assets/images/square2.svg) no-repeat center/contain;
  top: 155px;
  left: 138px;
}
@media screen and (max-width: 768px) {
  .about .inner .deco.square2,
  .about .inner .square.square2 {
    background: none;
  }
}
.about .inner .deco.square3,
.about .inner .square.square3 {
  width: 30px;
  height: 30px;
  background: url(../../assets/images/square2.svg) no-repeat center/contain;
  left: 40px;
  top: 218px;
}
@media screen and (max-width: 768px) {
  .about .inner .deco.square3,
  .about .inner .square.square3 {
    width: 19px;
    height: 19px;
    top: 244px;
  }
}
.about .inner .deco.square4,
.about .inner .square.square4 {
  width: 12px;
  height: 12px;
  background: url(../../assets/images/square2.svg) no-repeat center/contain;
  left: 217px;
  top: 514px;
}
@media screen and (max-width: 768px) {
  .about .inner .deco.square4,
  .about .inner .square.square4 {
    left: 37px;
    top: 354px;
  }
}
.about .inner .deco.square5,
.about .inner .square.square5 {
  width: 15px;
  height: 15px;
  background: url(../../assets/images/square2.svg) no-repeat center/contain;
  right: 125px;
  top: 23px;
}
@media screen and (max-width: 768px) {
  .about .inner .deco.square5,
  .about .inner .square.square5 {
    width: 9px;
    height: 9px;
    top: 78px;
    right: 58px;
  }
}
.about .inner .deco.square6,
.about .inner .square.square6 {
  width: 15px;
  height: 15px;
  background: url(../../assets/images/square2.svg) no-repeat center/contain;
  right: -78px;
  top: 161px;
}
.about .inner .deco.square7,
.about .inner .square.square7 {
  width: 150px;
  height: 150px;
  background: url(../../assets/images/square1.svg) no-repeat center/contain;
  right: 0px;
  top: 371px;
}
@media screen and (max-width: 768px) {
  .about .inner .deco.square7,
  .about .inner .square.square7 {
    width: 93px;
    height: 93px;
  }
}
.about .inner .deco.square8,
.about .inner .square.square8 {
  width: 30px;
  height: 30px;
  background: url(../../assets/images/square2.svg) no-repeat center/contain;
  top: 448px;
  right: 30px;
}
@media screen and (max-width: 768px) {
  .about .inner .deco.square8,
  .about .inner .square.square8 {
    width: 18px;
    height: 18px;
    top: 306px;
    right: -28px;
  }
}
.about .content {
  position: relative;
}
.about h2 {
  color: var(--blue02);
}
.about .higure.big-text {
  font-size: clamp(36px, 5.6368960469vw, 77px);
  line-height: 1.1688311688;
  font-weight: 700;
  color: #222;
  margin-bottom: 30px;
}

.assurances {
  background: #f9fbf2;
}
.assurances h2 {
  color: var(--green01);
}
.assurances .assurances-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5.6%;
}
@media screen and (max-width: 768px) {
  .assurances .assurances-list {
    flex-direction: column;
    row-gap: 32px;
  }
}
.assurances .assurances-list li {
  width: 100%;
}
.assurances .assurances-list li .ttl {
  text-align: center;
  color: #37bf77;
  font-family: var(--en);
  font-size: 2.4rem;
  font-weight: 600;
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .assurances .assurances-list li .ttl {
    font-size: 2.2rem;
  }
}
.assurances .assurances-list li img {
  display: block;
  margin: 0 auto;
  height: 118px;
}
@media screen and (max-width: 768px) {
  .assurances .assurances-list li img {
    height: 90px;
  }
}
.assurances .assurances-list li h3 {
  text-align: center;
  color: #56856c;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 12px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .assurances .assurances-list li .desc {
    text-align: center;
  }
}

.works h2 {
  color: var(--blue02);
}
.works .inner {
  max-width: 1366px;
}
.works .content .lead {
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .works .content .lead {
    text-align: justify;
    margin-bottom: 40px;
  }
}
.works .content .case-list {
  width: 100%;
}
.works .content .case-list .item {
  max-width: 1183px;
  display: flex;
  column-gap: 6.4%;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .works .content .case-list .item {
    flex-direction: column;
  }
}
.works .content .case-list .item .img-wrapper {
  position: relative;
  width: 50.718512257%;
  border-radius: 0 30px 30px 0;
  overflow: hidden;
  box-shadow: 20px 20px 0 rgba(62, 127, 216, 0.05);
}
@media screen and (max-width: 768px) {
  .works .content .case-list .item .img-wrapper {
    width: 90%;
    margin-bottom: 30px;
  }
}
.works .content .case-list .item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.works .content .case-list .item .text-wrapper {
  width: 43.956043956%;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .works .content .case-list .item .text-wrapper {
    width: 100%;
  }
}
.works .content .case-list .item .text-wrapper .text-head .meta {
  margin-bottom: 12px;
  align-items: center;
}
.works .content .case-list .item .text-wrapper .text-head .meta .num {
  font-size: 2.4rem;
  margin-right: 1em;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .works .content .case-list .item .text-wrapper .text-head .meta .num {
    font-size: 1.8rem;
  }
}
.works .content .case-list .item .text-wrapper .text-head .meta .text {
  color: var(--gray01);
  font-size: 1.8rem;
  padding-left: 1em;
  border-left: 1px solid var(--gray01);
}
@media screen and (max-width: 768px) {
  .works .content .case-list .item .text-wrapper .text-head .meta .text {
    font-size: 1.6rem;
  }
}
.works .content .case-list .item .text-wrapper .text-head h3 {
  color: var(--blue03);
  font-weight: 700;
  font-size: 2.8rem;
  line-height: 1.4285714286;
  padding-bottom: 20px;
  border-bottom: 1px solid #ccc;
  position: relative;
}
@media screen and (max-width: 768px) {
  .works .content .case-list .item .text-wrapper .text-head h3 {
    font-size: 2.2rem;
    padding-bottom: 10px;
  }
}
.works .content .case-list .item .text-wrapper .text-head h3::after {
  content: "";
  width: 60px;
  height: 1px;
  position: absolute;
  bottom: -1px;
  left: 0;
  background-color: var(--blue01);
}
.works .content .case-list .item .text-wrapper .text-body {
  margin-top: 20px;
  margin-bottom: 20px;
}
.works .content .case-list .item .text-wrapper .text-body .btn01 {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .works .content .case-list .item .text-wrapper .text-body .btn01 {
    margin: 30px auto;
  }
}
.works .content .case-list .item .text-wrapper .text-body .desc {
  text-align: justify;
}
.works .content .case-list .item .text-wrapper .text-body .skill {
  background-color: rgba(62, 127, 216, 0.1);
  padding: 10px 13px;
  width: 100%;
  margin-top: 20px;
}
.works .content .case-list .item:nth-of-type(2n) {
  flex-direction: row-reverse;
  justify-content: flex-end;
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .works .content .case-list .item:nth-of-type(2n) {
    flex-direction: column;
  }
}
.works .content .case-list .item:nth-of-type(2n) .img-wrapper {
  border-radius: 30px 0 0 30px;
}
@media screen and (max-width: 768px) {
  .works .content .case-list .item:nth-of-type(2n) .img-wrapper {
    margin-left: auto;
  }
}
.works .content .case-list .item:not(:last-child) {
  margin-bottom: 70px;
}
@media screen and (max-width: 768px) {
  .works .content .case-list .item:not(:last-child) {
    margin-bottom: 40px;
  }
}
@media screen and (max-width: 768px) {
  .works .content .case-list .item {
    flex-direction: column;
  }
}

.btn01 {
  font-size: 1.5rem;
  margin: 30px 0;
  font-weight: 700;
  background: var(--blue02);
  border-radius: 30px;
  height: 38px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  width: fit-content;
  padding: 0 40px;
}

.interview {
  padding-top: 0;
  background: #f9fbf2;
}
.interview .sec-ttl-wrapper {
  background: url(../images/interv-ttl-bg.jpg) no-repeat center/cover;
  width: 100%;
  height: 415px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .interview .sec-ttl-wrapper {
    height: 268px;
  }
}
.interview .sec-ttl-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(87, 193, 87, 0.018);
}
.interview hgroup {
  position: relative;
  z-index: 1;
}
.interview hgroup h2 {
  color: white;
  background-color: var(--green01);
  display: inline-block;
  padding: 8px 16px;
  border-radius: 5px;
  line-height: 1.1;
}
.interview hgroup .sub-ttl {
  color: white;
}
.interview .content .interv-list {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 4%;
  margin-top: -72px;
  z-index: 2;
  position: relative;
}
@media screen and (max-width: 768px) {
  .interview .content .interv-list {
    flex-direction: column;
    row-gap: 40px;
  }
}
.interview .content .interv-list .item {
  width: 100%;
  background: white;
  padding: 30px;
  box-shadow: 0 3px 10px #a4beb0;
}
@media screen and (max-width: 768px) {
  .interview .content .interv-list .item {
    padding: 20px;
  }
}
.interview .content .interv-list .item .item-head {
  margin-bottom: 24px;
  align-items: center;
}
.interview .content .interv-list .item .item-head .img-wrapper {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}
.interview .content .interv-list .item .item-head .text-wrapper {
  margin-left: 20px;
}
.interview .content .interv-list .item .item-head .text-wrapper .years {
  font-size: 1.4rem;
  background: rgba(55, 145, 97, 0.05);
  color: var(--green01);
}
.interview .content .interv-list .item .item-head .text-wrapper .name {
  font-size: 1.8rem;
  font-weight: 700;
}
.interview .content .interv-list .item .item-head .text-wrapper .post {
  color: var(--gray01);
  font-size: 1.4rem;
}
.interview .content .interv-list .item dl > div:not(:last-child) {
  margin-bottom: 20px;
}
.interview .content .interv-list .item dl dt {
  color: var(--green02);
  font-weight: 700;
}
.interview .content .interv-list .item dl dt::before {
  content: "Q";
  color: white;
  font-family: var(--en);
  font-weight: 600;
  background-color: var(--green01);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40px;
  height: 40px;
  font-size: 2.6rem;
  border-radius: 50%;
  margin-right: 0.2em;
}
.interview .content .interv-list .item dl dt {
  margin-bottom: 10px;
}
.interview .content .interv-list .item dl dd {
  text-align: justify;
}
.interview .content .interv-list .item dl dd > .flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.interview .content .interv-list .item dl dd .left,
.interview .content .interv-list .item dl dd .right {
  width: 8em;
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .interview .content .interv-list .item dl dd .left,
  .interview .content .interv-list .item dl dd .right {
    font-size: 1.2rem;
  }
}
.interview .content .interv-list .item dl dd .right {
  text-align: right;
}
.interview .chart {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  height: 16px;
  width: 200px;
}
@media screen and (max-width: 768px) {
  .interview .chart {
    width: 100px;
  }
}
.interview .chart span {
  background-color: #f9fbf2;
  border: 1px solid #379161;
  border-right: none;
}
.interview .chart span.check {
  background-color: var(--green01);
  display: flex;
  align-items: center;
  justify-content: center;
}
.interview .chart span.check::after {
  content: "";
  background: url(../../assets/images/icon-check.svg) no-repeat center/contain;
  width: 12px;
  display: block;
  align-items: center;
  justify-content: center;
  height: 10px;
}
.interview .chart span:first-child {
  border-radius: 15px 0 0 15px;
}
.interview .chart span:last-child {
  border-radius: 0 15px 15px 0;
  border-right: 1px solid #379161;
}

.faq h2 {
  color: var(--blue02);
}
.faq .acc-area {
  width: 100%;
}
.faq .acc-area li:not(:last-child) {
  margin-bottom: 40px;
}
.faq .acc-area li .title {
  padding: 10px 0;
  position: relative;
  cursor: pointer;
  transition: all 0.3s ease;
  padding-right: 48px;
}
.faq .acc-area li .title::before, .faq .acc-area li .title::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 2px;
  background: #386b87;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
.faq .acc-area li .title::before {
  top: 48%;
  right: 15px;
  transform: rotate(0deg);
}
.faq .acc-area li .title::after {
  top: 48%;
  right: 15px;
  transform: rotate(0deg);
}
.faq .acc-area li .title p {
  color: var(--blue03);
  font-weight: 500;
  font-size: 1.8rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .faq .acc-area li .title p {
    font-size: 1.6rem;
  }
}
.faq .acc-area li .title p::before {
  content: "Q";
  flex-shrink: 0;
  color: white;
  background-color: var(--blue01);
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 15px;
  font-family: var(--en);
  font-size: 2.8rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  .faq .acc-area li .title p::before {
    width: 30px;
    height: 30px;
    font-size: 2rem;
  }
}
.faq .acc-area li .title.close::before {
  transform: rotate(90deg);
}
.faq .acc-area li .box {
  border-top: 2px solid var(--blue01);
  padding-top: 20px;
  padding-left: 75px;
}
@media screen and (max-width: 768px) {
  .faq .acc-area li .box {
    padding-left: 0;
  }
}

.color-green03 {
  color: var(--green03);
}

.recruit {
  background: #f9fbf2;
}
.recruit h2 {
  color: var(--green01);
}
.recruit .content dl {
  margin-bottom: 56px;
}
.recruit .content dl > div {
  display: flex;
  border-bottom: 1px solid #bdd5c8;
}
@media screen and (max-width: 768px) {
  .recruit .content dl > div {
    flex-direction: column;
  }
}
.recruit .content dl > div dt,
.recruit .content dl > div dd {
  padding: 20px 0;
}
.recruit .content dl > div dt {
  width: 25%;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .recruit .content dl > div dt {
    width: 100%;
    font-weight: 500;
  }
}
@media screen and (max-width: 768px) {
  .recruit .content dl > div dt {
    padding: 16px 0 10px;
  }
}
.recruit .content dl > div dd {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .recruit .content dl > div dd {
    padding-top: 0;
  }
}
.recruit .content .sec-bottom-text {
  font-weight: 700;
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .recruit .content .sec-bottom-text {
    font-size: 1.8rem;
  }
}

.footer {
  border-top: 1px solid var(--gray01);
  padding: 90px 0;
}
@media screen and (max-width: 768px) {
  .footer {
    padding: 48px 0;
  }
}
.footer .flex-wrapper {
  align-items: center;
  justify-content: space-between;
  column-gap: 24px;
}
@media screen and (max-width: 768px) {
  .footer .flex-wrapper {
    flex-direction: column;
  }
}
.footer .footer-nav .nav-list {
  column-gap: 20px;
}
@media screen and (max-width: 768px) {
  .footer .footer-nav .nav-list {
    flex-direction: column;
    text-align: center;
    row-gap: 10px;
  }
}
.footer .footer-nav li a {
  font-size: 1.4rem;
}
.footer .copy {
  margin-top: 40px;
  display: block;
  font-size: 1.4rem;
  color: #777;
}


