:root {
  --text-black: #222;
  --blue01: #2f485a;
  --blue02: #596f9b;
  --blue03: rgba(#5e9ccf, 0.2);
  --blue04: #5e9ccf;
  --gray01: #777777;
  --en: "Manrope", sans-serif;
  --ja: "Noto Sans JP", sans-serif;
  --mincho: "Noto Serif", serif;
  --shadow: 0 5px 15px rgba(#dde6ec, 1);
  --shadow-text: 0 3px 6px rba(0, 0, 0, 0.25);
}

* {
  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.75;
  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);
}

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

.bold {
  font-weight: 700;
}

.flex {
  display: flex;
}

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

.under {
  text-decoration: underline;
  text-underline-offset: 0;
  text-decoration-thickness: 0.4em;
  -webkit-text-decoration-color: var(--yellow01);
  text-decoration-color: var(--yellow01);
  -webkit-text-decoration-skip-ink: none;
  text-decoration-skip-ink: none;
}

.header {
  width: 60.7613469985%;
  margin-left: 16px;
  margin-top: 16px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
}
@media screen and (max-width: 768px) {
  .header {
    width: 100%;
  }
}
.header h1 {
  width: 240px;
}
@media screen and (max-width: 768px) {
  .header h1 {
    width: 211px;
  }
}
.header h1 a {
  display: block;
}
.header h1 a img {
  display: block;
}
.header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .header .header-inner .header-nav {
    display: none;
  }
}
.header .header-inner .nav-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 30px;
}
.header .header-inner .nav-list .item a {
  font-weight: 400;
  font-size: 1.5rem;
}

.openbtn {
  height: 57px;
  width: 57px;
  top: 12px;
  position: fixed;
  right: 12px;
  z-index: 200;
  border-radius: 50%;
  background: var(--bg-orange);
  display: none;
}
@media screen and (max-width: 768px) {
  .openbtn {
    display: flex;
    justify-content: center;
    align-items: center;
  }
}
.openbtn span {
  position: absolute;
  width: 24px;
  height: 2px;
  background: #402c14;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.4s ease;
}
.openbtn span:nth-of-type(1) {
  top: calc(50% - 7px);
}
.openbtn span:nth-of-type(2) {
  top: 50%;
}
.openbtn span:nth-of-type(3) {
  top: calc(50% + 7px);
}
.openbtn.active span:nth-of-type(1) {
  transform: translate(-50%, 7px) rotate(-45deg);
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  transform: translate(-50%, -7px) 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: 84%;
    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.8rem;
  }
}

@keyframes arrowFloat {
  0% {
    transform: translate(-50%, 0);
  }
  50% {
    transform: translate(-50%, 10px);
  }
  100% {
    transform: translate(-50%, 0);
  }
}
.mv {
  position: relative;
  height: 100svh;
  width: 100%;
}
.mv .mv-inner {
  width: 93.7042459736%;
  margin: 0 auto;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 3;
}
@media screen and (max-width: 768px) {
  .mv .mv-inner {
    width: 100%;
  }
}
.mv .mv-inner .text-wrapper {
  width: 100%;
}
.mv .mv-arrow {
  position: absolute;
  bottom: 2em;
  background: url(../../assets/images/mv-arrow.svg) no-repeat center/contain;
  width: 7px;
  height: 37px;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  animation: arrowFloat 2s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .mv .mv-arrow {
    display: none;
  }
}
.mv .mv-link {
  font-size: 2rem;
  font-weight: 500;
  font-family: var(--mincho);
  display: flex;
  align-items: center;
  z-index: 5;
  position: absolute;
  right: 24px;
  bottom: 2em;
}
.mv .mv-link::before {
  content: "";
  width: 100%;
  height: 2px;
  background-color: #5a5a5a;
  bottom: 0;
  left: 0;
  position: absolute;
  transition: all 0.3s ease;
}
.mv .mv-link::after {
  content: "";
  background: url(../../assets/images/arrow-right.svg) no-repeat center/contain;
  width: 37px;
  height: 7px;
  margin-left: 1em;
  transition: all 0.3s ease;
  display: inline-block;
}
.mv .mv-link:hover::after {
  transform: translateX(6px);
}
.mv .mv-link:hover::before {
  opacity: 0;
}

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

main {
  position: relative;
  background: url(../../assets/images/mv-bg.png) no-repeat top center;
  background-size: 100%;
}
@media screen and (max-width: 768px) {
  main {
    background: url(../../assets/images/mv-grad-sp.png) no-repeat top center;
    background-size: 100%;
  }
}

.intro {
  padding-top: 20vw;
  margin-bottom: 100px;
}
@media screen and (max-width: 768px) {
  .intro {
    padding-top: 45vw;
  }
}
.intro .intro-list .item {
  align-items: flex-start;
  gap: 32px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .intro .intro-list .item {
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
  }
}
.intro .intro-list .item:not(:last-child) {
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .intro .intro-list .item:not(:last-child) {
    margin-bottom: 24px;
  }
}
.intro .intro-list .item .ttl {
  font-weight: 600;
  font-size: 4rem;
  line-height: 1.375;
  position: relative;
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-family: var(--en);
}
@media screen and (max-width: 768px) {
  .intro .intro-list .item .ttl {
    font-size: 3rem;
  }
}
.intro .intro-list .item .ttl::before {
  content: "";
  background: #ccc;
  height: 1px;
  width: 80px;
  margin-right: 8px;
  display: inline-block;
}
.intro .intro-list .item .content {
  width: 70.6%;
}
@media screen and (max-width: 768px) {
  .intro .intro-list .item .content {
    width: 100%;
  }
}
.intro .intro-list .item .content .text {
  font-weight: 500;
  font-size: 3.2rem;
  line-height: 1.5625;
}
@media screen and (max-width: 768px) {
  .intro .intro-list .item .content .text {
    font-size: 1.8rem;
  }
}
.intro .intro-list .item .content .child-list .child-item {
  border: 1px solid #ccc;
  padding: 10px 32px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .intro .intro-list .item .content .child-list .child-item {
    flex-direction: column;
  }
}
.intro .intro-list .item .content .child-list .child-item:not(:last-child) {
  margin-bottom: 20px;
}
.intro .intro-list .item .content .child-list .child-item .child-ttl {
  display: flex;
  width: 20%;
  flex-shrink: 0;
  margin-right: 32px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .intro .intro-list .item .content .child-list .child-item .child-ttl {
    flex-direction: row;
    width: 100%;
    margin-right: 0;
    gap: 8px;
    margin-bottom: 8px;
  }
}
.intro .intro-list .item .content .child-list .child-item .child-ttl .en {
  color: var(--blue04);
  font-weight: 600;
  font-size: 2.4rem;
  display: block;
  line-height: 1.3846153846;
}
.intro .intro-list .item .content .child-list .child-item .child-ttl .ja {
  display: block;
  font-weight: 500;
  font-size: 1.3rem;
}
.intro .intro-list .item .content .child-list .child-item .text {
  font-size: 1.4rem;
  font-weight: 400;
  flex: 1;
}

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

hgroup {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  hgroup {
    margin-bottom: 24px;
  }
}
hgroup .sub-ttl {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 3rem;
  font-weight: 600;
  line-height: 1.3666666667;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  hgroup .sub-ttl {
    font-size: 1.6rem;
    margin-bottom: 8px;
  }
}
hgroup .sub-ttl::before {
  content: "";
  width: 2em;
  height: 1px;
  background: white;
  display: block;
}
hgroup h2 {
  font-size: 3.8rem;
  line-height: 1.6315789474;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  hgroup h2 {
    font-size: 2.4rem;
  }
}

.ta-r {
  text-align: right;
}

.message {
  background: var(--blue01);
  color: white;
}
@media screen and (max-width: 768px) {
  .message .contents-head {
    flex-direction: column;
  }
}
.message .contents-head .img-wrapper {
  width: 244px;
  height: auto;
  flex-shrink: 0;
  margin-right: 5%;
}
@media screen and (max-width: 768px) {
  .message .contents-head .img-wrapper {
    margin-right: 0;
    width: 180px;
    margin: 0 auto 16px;
  }
}
.message .contents-head .text-wrapper {
  flex: 1;
}
.message .contents-head .text-wrapper .text {
  margin-bottom: 24px;
  text-align: justify;
}
.message .contents-body {
  padding-top: 116px;
  gap: 6.4%;
}
@media screen and (max-width: 768px) {
  .message .contents-body {
    padding-top: 56px;
    flex-direction: column;
  }
}
.message .contents-body hgroup {
  flex-shrink: 0;
}
.message .contents-body .right dl div {
  display: flex;
  align-items: flex-start;
}
.message .contents-body .right dl div dt,
.message .contents-body .right dl div dd {
  padding: 8px 0;
}
.message .contents-body .right dl div dt {
  width: 6em;
  flex-shrink: 0;
}
.message .contents-body .right dl div dd {
  padding-left: 54px;
  width: calc(100% - 6em);
  border-left: 1px solid white;
}
@media screen and (max-width: 768px) {
  .message .contents-body .right dl div dd {
    padding-left: 32px;
  }
}

.color-blue {
  color: var(--blue02);
}

.works hgroup .sub-ttl {
  color: var(--gray01);
}
.works hgroup .sub-ttl::before {
  background-color: var(--gray01);
}
.works .contents dl.flex-wrapper {
  margin-bottom: 64px;
}
@media screen and (max-width: 768px) {
  .works .contents dl.flex-wrapper {
    flex-direction: column;
  }
}
.works .contents dl.flex-wrapper > div {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .works .contents dl.flex-wrapper > div {
    width: 100%;
  }
}
.works .contents dl.flex-wrapper > div:nth-child(2n) {
  padding-left: 5%;
  border-left: 1px solid #aec9df;
}
@media screen and (max-width: 768px) {
  .works .contents dl.flex-wrapper > div:nth-child(2n) {
    padding-left: 0;
    padding-top: 16px;
    border: none;
  }
}
.works .contents dl.flex-wrapper > div:nth-child(1n) {
  padding-right: 5%;
}
@media screen and (max-width: 768px) {
  .works .contents dl.flex-wrapper > div:nth-child(1n) {
    padding-right: 0;
  }
}
.works .contents dl.flex-wrapper dt {
  font-size: 2.6rem;
  font-weight: 500;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .works .contents dl.flex-wrapper dt {
    margin-bottom: 8px;
    font-size: 2rem;
  }
}
.works .contents dl.flex-wrapper dd {
  text-align: justify;
}
.works .works-list .item {
  background: white;
  box-shadow: 0 5px 15px rgb(221, 230, 236);
}
@media screen and (max-width: 768px) {
  .works .works-list .item {
    flex-direction: column;
  }
}
.works .works-list .item:nth-child(even) {
  flex-direction: row-reverse;
}
@media screen and (max-width: 768px) {
  .works .works-list .item:nth-child(even) {
    flex-direction: column;
  }
}
.works .works-list .item:not(:last-child) {
  margin-bottom: 40px;
}
.works .works-list .item .img-wrapper {
  width: 36%;
  height: 220px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .works .works-list .item .img-wrapper {
    width: 100%;
    height: 180px;
  }
}
.works .works-list .item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.works .works-list .item .text-wrapper {
  padding: 20px 40px;
}
@media screen and (max-width: 768px) {
  .works .works-list .item .text-wrapper {
    padding: 20px 24px;
  }
}
.works .works-list .item .text-wrapper {
  flex: 1;
}
.works .works-list .item .text-wrapper h3 {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}
.works .works-list .item .text-wrapper h3 .num {
  color: rgba(94, 156, 207, 0.2);
  font-size: 6rem;
  font-weight: 600;
  line-height: 1.3666666667;
  font-family: var(--en);
}
@media screen and (max-width: 768px) {
  .works .works-list .item .text-wrapper h3 .num {
    font-size: 4rem;
  }
}
.works .works-list .item .text-wrapper h3 .ttl {
  color: var(--blue02);
  font-size: 2.6rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .works .works-list .item .text-wrapper h3 .ttl {
    font-size: 2rem;
  }
}
.works .works-list .item .text-wrapper .text {
  text-align: justify;
}

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

.company {
  background: var(--blue01);
  color: whtie;
}
.company hgroup {
  color: white;
}
.company .company-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}
@media screen and (max-width: 768px) {
  .company .company-list {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}
.company .company-list .item .img-wrapper {
  border-radius: 20px;
  width: 100%;
  aspect-ratio: 1/1;
  overflow: hidden;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .company .company-list .item .img-wrapper {
    width: 180px;
    margin: 0 auto 16px;
  }
}
.company .company-list .item .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.company .company-list .item .name-wrapper {
  color: whitesmoke;
  text-align: center;
  font-family: var(--mincho);
  margin-bottom: 16px;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .company .company-list .item .name-wrapper {
    margin-bottom: 8px;
  }
}
.company .company-list .item .name-wrapper span {
  display: block;
}
.company .company-list .item .name-wrapper .post {
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .company .company-list .item .name-wrapper .post {
    font-size: 1.2rem;
  }
}
.company .company-list .item .name-wrapper .name {
  font-size: 2.6rem;
}
@media screen and (max-width: 768px) {
  .company .company-list .item .name-wrapper .name {
    font-size: 2rem;
  }
}
.company .company-list .item .desc {
  color: white;
  text-align: justify;
}

.footer {
  padding: 24px 0;
}
.footer .contents {
  margin-bottom: 16px;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer .contents {
    flex-direction: column;
  }
}
.footer .contents .footer-logo {
  width: 150px;
}
.footer .contents .footer-nav li {
  margin-left: 30px;
}
.footer .contents .footer-nav li a {
  font-size: 1.5rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .footer .contents .footer-nav .nav-list {
    margin-top: 32px;
    flex-direction: column;
    gap: 8px;
    text-align: center;
    margin-bottom: 32px;
  }
  .footer .contents .footer-nav .nav-list li {
    margin-left: 0;
  }
}
.footer .copy {
  display: block;
  text-align: center;
  color: var(--gray01);
  font-size: 1.4rem;
}
@media screen and (max-width: 768px) {
  .footer .copy {
    font-size: 1.1rem;
  }
}

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