@charset "UTF-8";

:root {
  --main-black: #000;
  --montserrat: "Montserrat", sans-serif;
  --noto-sans: "Noto Sans JP", sans-serif;
}

* {
  line-height: 2;
  -ms-overflow-style: none;
  scrollbar-width: none;
  transition-delay: unset;
}
*::-webkit-scrollbar {
  display: none;
}

html {
  font-size: 10px;
  overflow-x: hidden;
  width: 100vw;
}
body {
  font-family: "Noto Sans JP", "Helvetica Neue", Arial,
    "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  font-size: 1.4rem;
  opacity: 1;
  width: 100vw;
}
body.m-anime {
  opacity: 0;
}
.m-lock {
  overflow: hidden;
}

a {
  color: #000;
  text-decoration: none;
}
ul {
  list-style: none;
}

.arrow {
  aspect-ratio: 16 / 9;
  bottom: 20px;
  display: none;
  height: 50px;
  opacity: 0.5;
  max-width: 100px;
  position: absolute;
  right: 20px;
}
@media screen and (max-width: 750px) {
  .arrow.m-open {
    animation: 1.7s ease-in-out forwards arrowAnime;
    display: block;
  }
  @keyframes arrowAnime {
    0% {
      opacity: 0.5;
      transform: translateY(-40px);
    }
    90% {
      opacity: 0.5;
      transform: translateY(0);
    }
    100% {
      opacity: 0;
      transform: translateY(0);
    }
  }
}

/*----------------------------------

  COMMON
  よく使う

----------------------------------*/
button,
.e-anchor {
  transition: all 0.3s;
}
button:hover,
.e-anchor:hover {
  filter: brightness(0.9);
}

.-circle {
  align-items: center;
  background-color: #0068b7;
  border-radius: 35px;
  display: flex;
  justify-content: center;
  position: relative;
  transition: 0.3s;
}
.-arrow::before {
  background-color: #fff;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 55%;
}
.-arrow::after {
  border-right: 1px solid #fff;
  border-top: 1px solid #fff;
  content: "";
  height: 15px;
  left: 25%;
  position: absolute;
  top: 47%;
  transform: rotate(45deg) translateY(-50%);
  transition: transform 0.3s ease;
  width: 15px;
}
*:hover > .-circle {
  filter: brightness(0.8);
  transform: scale(0.9);
}
*:hover > .-arrow::before {
  transform: scale(1.05) translateY(-50%);
}
*:hover > .-arrow::after {
  transform: scale(1.3) rotate(45deg) translateY(-38%);
}
.-blank img {
  display: block;
  height: auto;
  margin: 0 auto;
  min-width: 10px;
  width: 30%;
}

.b-hero {
  align-items: center;
  display: flex;
  justify-content: space-between;
  margin: 0 0 0 auto;
  width: 90.625%;
}
.b-hero .e-heading {
  color: #0068b7;
  font-family: var(--montserrat);
  font-size: 6.4rem;
  line-height: 1.2;
}
.b-hero .e-heading span {
  display: block;
  font-size: 1.6rem;
  opacity: 0.7;
  margin-top: 15px;
  padding-left: 3em;
  position: relative;
}
.b-hero .e-heading span::before {
  background-color: #0068b7;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.5em;
}
.b-hero .e-img {
  width: 59.3vw;
}

.b-copy {
  display: flex;
  justify-content: space-between;
  line-height: 2;
  margin: 80px auto 45px;
  width: 81.25%;
}
.b-copy h3 {
  font-size: 2.4rem;
  width: 37.5%;
}
.b-copy p {
  width: 61.5%;
}

.b-dual-contena {
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
  width: 81.25vw;
}
.b-dual-contena .b-hero {
  align-items: flex-start;
  margin: 0;
  max-width: 295px;
  padding-top: 94px;
}
.b-dual-contena .b-main-cont {
  margin-left: 8.2vw;
  width: 50vw;
}

.b-dual-contena .b-aside-cont {
  width: 25vw;
}

.b-aside-cont h3 {
  color: #0068b7;
  font-family: var(--montserrat);
  font-size: 2.4rem;
  margin-bottom: 30px;
}
.b-aside-cont .-list {
  padding-bottom: 160px;
  position: sticky;
  top: 90px;
}
.b-aside-cont .-list a {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 1.25em;
  padding-left: 20px;
  position: relative;
}
.b-aside-cont .-list a::before {
  background-color: #0068b7;
  content: "";
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  display: block;
  height: 6px;
  left: 0;
  position: absolute;
  top: 0.6em;
  width: 8px;
}

.b-foot-link {
  background-color: #e7f2f7;
  height: 542px;
  padding: 1px 0;
  position: relative;
  width: 100%;
}
.b-foot-link * {
  line-height: 1;
  transition: 0.3s;
}
.b-foot-link .e-anchor {
  align-items: center;
  aspect-ratio: 26 / 11;
  background-color: #0068b7;
  background-position: center;
  background-size: 100%;
  border-radius: 16px;
  color: #fff;
  display: flex;
  font-family: var(--montserrat);
  font-size: 6.4rem;
  font-weight: 700;
  max-height: 440px;
  max-width: 1040px;
  left: 50%;
  object-fit: cover;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 81.25vw;
}
.b-foot-link .e-anchor:hover {
  background-size: 110%;
}
.b-foot-link .e-anchor .-cap {
  display: block;
  font-size: 1.6rem;
  margin-top: 10px;
  padding-left: 3em;
  position: relative;
}
.b-foot-link .e-anchor .-cap::before {
  background-color: #fff;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.6em;
}
.b-foot-link .e-anchor .-circle {
  bottom: 36px;
  border: 1px solid #fff;
  height: 49px;
  right: 36px;
  position: absolute;
  width: 49px;
}
.b-foot-link .-arrow::after {
  height: 9px;
  width: 9px;
}
.b-foot-link .e-anchor.m-anime {
  aspect-ratio: unset;
  background-size: cover;
  justify-content: center;
  margin: 0;
  max-height: unset;
  max-width: unset;
  opacity: 1;
  position: fixed;
  transform: translate(-50%, -50%) scale(1.5);
  z-index: 99;
}

.b-modal {
  -webkit-backdrop-filter: blur(2px) brightness(0.94);
  backdrop-filter: blur(2px) brightness(0.94);
  background-color: rgba(31, 67, 95, 0.42);
  display: none;
  height: 100vh;
  left: 0;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 10000;
}
.b-modal .-wrap {
  background-color: #fff;
  border-radius: 32px;
  left: 50%;
  padding: 60px;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.b-modal .-wrap .e-close {
  height: 60px;
  position: absolute;
  top: -80px;
  right: 0;
  width: 60px;
}
.b-modal .-wrap .e-close span {
  background-color: #fff;
  display: block;
  height: 2px;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  width: 85px;
}
.b-modal .-wrap .e-close span:nth-child(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.b-modal h2 {
  color: #fff;
  font-size: 2.4rem;
  padding: 0 0 3px 16px;
}

.b-modal.m-lightblue h2 {
  background-color: #05a3ff;
}
.b-modal.m-deepblue h2 {
  background-color: #4774b9;
}
.b-modal.m-blue h2 {
  background-color: #0068b7;
}
.b-modal.m-dullblue h2 {
  background-color: #007697;
}
.b-modal.m-green h2 {
  background-color: #05a3a7;
}
.b-modal.m-mono h2 {
  background-color: #fff;
  border: 1px solid #000;
  color: #000;
}
.b-modal.m-lineblue h2 {
  background-color: #fff;
  border: 1px solid #0086d1;
  color: #0086d1;
}
.b-modal.m-linegreen h2 {
  background-color: #fff;
  border: 1px solid #05a3a7;
  color: #05a3a7;
}

.b-modal em {
  font-style: normal;
  font-weight: 600;
}

.b-modal.m-lightblue em {
  color: #05a3ff;
}
.b-modal.m-deepblue em {
  color: #4774b9;
}
.b-modal.m-blue em {
  color: #0068b7;
}
.b-modal.m-dullblue em {
  color: #007697;
}
.b-modal.m-green em {
  color: #05a3a7;
}
.b-modal.m-mono em {
  color: #000;
}
.b-modal.m-lineblue em {
  color: #0086d1;
}
.b-modal.m-linegreen em {
  color: #05a3a7;
}

.b-modal h3 {
  font-size: 1.6rem;
  margin-top: 26px;
}
.b-modal p {
  font-size: 1.3rem;
  margin-top: 20px;
}
.b-modal .-list {
  display: flex;
  margin-top: 40px;
  max-width: 680px;
  width: 53vw;
}
.b-modal .-list .e-anchor {
  align-items: center;
  border: 1px solid #0068b7;
  color: #0068b7;
  display: flex;
  font-size: 1.3rem;
  justify-content: space-between;
  margin-right: 30px;
  max-width: 225px;
  padding: 12px 20px;
  width: 17.5vw;
}
.b-modal .-list .e-anchor .-circle {
  height: 36px;
  width: 36px;
}
.b-modal .-list .e-anchor .-arrow::after {
  height: 8px;
  width: 8px;
}

.b-modal .-inner .-cont {
  display: flex;
  justify-content: space-between;
}
.b-modal .-inner .-cont img {
  margin: 20px 0 auto 30px;
  width: 40%;
}

.m-pc {
  display: block;
}
.m-sp {
  display: none;
}

/*----------------------------------

  HEADER
  ヘッダー

----------------------------------*/
.header,
.header .nav-wrap {
  align-items: center;
  display: flex;
  justify-content: space-between;
}
.header {
  background-color: #ffffffdd;
  height: 64px;
  padding: 0 30px;
  position: fixed;
  top: 0;
  width: 100vw;
  z-index: 99;
}
.header .b-logo img {
  height: 28px;
}
.header .b-nav .-list {
  display: flex;
  list-style: none;
}
.header .b-nav .e-li {
  margin-right: 30px;
}
.header .b-nav .e-li .-anchor {
  background: linear-gradient(currentcolor, currentcolor) right bottom / 0 1px
    no-repeat;
  color: #000;
  display: block;
  text-decoration: none;
  transition: background-size 0.4s;
}
.header .b-nav .e-li .-anchor:hover {
  background-position: left bottom;
  background-size: 100% 1px;
}
.header .b-nav .e-li h2 {
  font-family: var(--montserrat);
  font-size: 1.4rem;
}
.header .b-nav .e-li .-cap {
  display: none;
}
.header .b-nav .-circle {
  display: none;
}
.header .b-nav .-entry {
  display: none;
}
.header .b-entry .e-btn {
  background-color: #fff;
  border: 2px solid #0068b7;
  border-radius: 2em;
  color: #0068b7;
  padding: 7px 20px 6px;
}
.header .b-entry .e-btn:hover {
  background-color: #0068b7;
  color: #fff;
}
.header .b-entry .e-btn h2 {
  font-family: var(--montserrat);
  font-size: 1.4rem;
}
.header .b-entry .-list {
  background-color: #0068b7;
  border-radius: 5px;
  display: flex;
  justify-content: space-between;
  max-width: 358px;
  opacity: 0;
  padding: 16px;
  pointer-events: none;
  position: fixed;
  right: 30px;
  top: 64px;
  visibility: hidden;
  width: calc(100vw - 30px);
}
.header .b-entry .-list.m-open {
  opacity: 1;
  pointer-events: all;
  visibility: visible;
}
.header .b-entry .e-li .-anchor {
  align-items: center;
  background-color: #fff;
  border-radius: 50px;
  color: #0068b7;
  display: flex;
  font-weight: 600;
  justify-content: space-between;
  max-width: 159px;
  padding: 12px 16px;
  width: 41vw;
}
.header .b-entry .-list .-circle {
  height: 28px;
  width: 28px;
}
.header .b-entry .-list .-arrow::after {
  height: 8px;
  left: calc(50% - 10px);
  top: calc(50% - 1px);
  width: 8px;
}
.header .e-anchor {
  display: none;
}
.header .e-navbtn {
  display: none;
}

/*----------------------------------

  BREADCRUMB
  パンくずリスト

----------------------------------*/
.breadcrumb {
  margin: 94px 6.25vw 50px;
}
.breadcrumb .b-list {
  display: flex;
  flex-wrap: wrap;
  font-size: 1.2rem;
  list-style: none;
  row-gap: 5px;
}
.breadcrumb .b-list li:nth-child(n + 2) {
  margin-left: 3em;
  position: relative;
}
.breadcrumb .b-list li:nth-child(n + 2)::before {
  border-right: 1px solid #000;
  border-top: 1px solid #000;
  content: "";
  display: block;
  height: 9px;
  left: -2.35em;
  position: absolute;
  top: 50%;
  transform: rotate(45deg) translateY(-50%) skew(-15deg, -15deg);
  width: 9px;
}

/*----------------------------------

  FOOTER
  フッター

----------------------------------*/
.footer .entry {
  background-color: #0068b7;
  padding: 100px 0;
  position: relative;
  width: 100%;
}
.footer .entry h2 {
  color: #fff;
  font-family: var(--montserrat);
  font-size: 6.4rem;
  text-align: center;
}
.footer .entry .b-wrap {
  display: flex;
  justify-content: center;
  margin: 40px auto 0;
}
.footer .entry .b-wrap .e-anchor {
  align-items: center;
  background-color: #fff;
  border-radius: 16px;
  color: #0068b7;
  display: flex;
  font-size: 2.4rem;
  font-weight: 600;
  justify-content: space-between;
  margin: 0 20px;
  max-width: 360px;
  padding: 40px;
  width: 100%;
}
.footer .entry .b-wrap .e-anchor .-circle {
  height: 70px;
  width: 70px;
}
.footer .entry .-arrow,
.footer .entry .-arrow::before,
.footer .entry .-arrow::after {
  border-width: 2px;
}
.footer .entry .-arrow::before {
  height: 2px;
}
.footer .entry .e-img {
  display: block;
  position: absolute;
}
.footer .entry .e-img.m-left {
  bottom: -75px;
  transform: translateY(0);
  width: 27vw;
}
.footer .entry .e-img.m-right {
  top: -70px;
  transform: translateY(-100px);
  right: 60px;
  width: 18.6vw;
}

.footer .bottom {
  background-color: #014c84;
  color: #fff;
  padding: 90px 20px 20px;
  text-align: center;
}
.footer .bottom .wrap {
  display: flex;
  justify-content: space-between;
  margin: 0 auto 120px;
  max-width: 1200px;
}
.footer .bottom a {
  color: #fff;
}
.footer .bottom .b-left {
  max-width: 400px;
  width: 50%;
}
.footer .bottom .b-left .b-list {
  display: flex;
  justify-content: center;
  list-style: none;
  margin: 0 auto 50px;
}
.footer .bottom .b-left .b-list li {
  font-weight: 600;
  margin: 0 10px;
}
.footer .bottom .b-left .b-list .e-anchor {
  display: block;
  padding: 0 15px 10px;
  transition: 0.3s;
}
.footer .bottom .b-left .b-list .e-anchor:hover {
  background-color: #ffffff22;
}
.footer .bottom .b-left .b-list .e-anchor .-imgwrap {
  align-items: center;
  display: flex;
  height: 70px;
  justify-content: center;
  width: 96px;
}
.footer .bottom .b-left .b-list .e-anchor.m-faq .-imgwrap img {
  width: 50px;
}
.footer .bottom .b-left .b-list .e-anchor.m-tiktok .-imgwrap img {
  width: 35px;
}
.footer .bottom .b-left .b-list .e-anchor .-imgwrap img {
  width: 40px;
}
.footer .bottom .e-azapa {
  display: block;
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 auto 0 0;
  max-width: 300px;
  opacity: 1;
  transition: 0.3s;
}
.footer .bottom .e-azapa:hover {
  opacity: 0.8;
}
.footer .bottom .e-azapa img {
  width: 100%;
}
.footer .bottom .b-logo {
  display: block;
  margin: 0 auto 50px;
  max-width: 100%;
  width: 30vw;
}

.footer .bottom .b-right {
  display: flex;
  justify-content: space-between;
  width: 45%;
}
.footer .bottom .b-right a {
  background: linear-gradient(currentcolor, currentcolor) right bottom / 0 1px
    no-repeat;
  transition: background-size 0.4s;
}
.footer .bottom .b-right a:hover {
  background-position: left bottom;
  background-size: 100% 1px;
}
.footer .bottom .b-right .b-list {
  font-family: var(--montserrat);
  font-size: 2rem;
  font-weight: 600;
  text-align: left;
}
.footer .bottom .b-right .b-list > .e-li {
  margin-top: 30px;
}
.footer .bottom .b-right .b-list > .e-li:first-child {
  margin-top: 0;
}
.footer .bottom .b-right .b-inner-list {
  font-family: var(--noto-sans);
  font-size: 1.4rem;
  margin-top: 10px;
}
.footer .bottom .b-right .b-inner-list .e-li::before {
  content: "-";
  display: inline-block;
  margin-right: 0.5em;
}

.footer small {
  font-size: 1rem;
}

/*----------------------------------

  NEWS
  ニュース

----------------------------------*/
.news .footer .entry .e-img.m-right {
  display: none;
}

.news main {
  margin: 0 auto;
  max-width: 1040px;
  padding: 0 20px;
}

.news .b-hero {
  margin: 0 0 60px;
}

.news .b-news-list {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
}

.news .b-news-list li {
  border-top: 1px solid #d5d5d5;
  transition: 0.3s;
}
.news .b-news-list li * {
  font-size: 16px;
  line-height: 1.76;
}
.news .b-news-list li:hover {
  background-color: #f5f5f5;
}
.news .b-news-list li:last-child {
  border-bottom: 1px solid #d5d5d5;
}

.news .b-news-list li a {
  display: flex;
  gap: 1.5em;
  padding: 0.5em 1em;
}

.news time {
  color: #49a1ec;
  min-width: 8em;
}
.news.single time {
  font-weight: 700;
}

.news .b-pagination {
  display: flex;
  gap: 4px;
  justify-content: center;
  margin: 40px auto;
  max-width: calc(100vw - 40px);
}
.news .b-pagination > * {
  align-items: center;
  border: 1px solid #d5d5d5;
  display: flex;
  height: 40px;
  justify-content: center;
  padding: 5px 10px;
  transition: 0.3s;
}
.news .b-pagination .prev,
.news .b-pagination .next {
  aspect-ratio: 1.5 / 1;
  padding: 5px;
}
.news .b-pagination > *:hover {
  border-color: #000;
}

.news .b-pagination .current {
  background-color: #ff8e8e;
  border-color: #000;
  color: #fff;
}

.news.single .b-pagination {
  justify-content: space-between;
  max-width: 840px;
}

.news.single .b-pagination > * {
  aspect-ratio: unset;
  border: none;
  height: auto;
  padding: 0;
}
.news.single .b-pagination .e-btn-wrap {
  width: 20%;
}
.news.single .b-pagination .e-btn-wrap.prev {
  justify-content: flex-start;
}
.news.single .b-pagination .e-btn-wrap.next {
  justify-content: flex-end;
}
.news.single .b-pagination .e-btn {
  border: 1px solid #000;
  border-radius: 3px;
  padding: 8px 20px;
  position: relative;
  transition: 0.3s;
}
.news.single .b-pagination .e-btn:hover {
  background-color: #eee;
}
.news.single .b-pagination .e-btn.list {
  background-color: #000;
  color: #fff;
  padding: 8px 40px;
}
.news.single .b-pagination .e-btn.list:hover {
  background-color: #6d6d6d;
}
.news.single .b-pagination .prev .e-btn {
  padding-left: 30px;
}
.news.single .b-pagination .next .e-btn {
  padding-right: 30px;
}
.news.single .b-pagination .prev .e-btn::after,
.news.single .b-pagination .next .e-btn::after {
  border-top: 1px solid #000;
  content: "";
  display: block;
  height: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
}
.news.single .b-pagination .prev .e-btn::after {
  border-left: 1px solid #000;
  left: 15px;
  transform: translateY(-50%) rotate(-45deg);
}
.news.single .b-pagination .next .e-btn::after {
  border-right: 1px solid #000;
  right: 15px;
  transform: translateY(-50%) rotate(45deg);
}

.news.single .b-article-wrap {
  margin: 0 auto;
  max-width: 840px;
}

.news.single .b-article-wrap .e-title {
  border-bottom: 1px solid #d5d5d5;
  padding: 0 30px 10px;
  position: relative;
}
.news.single .b-article-wrap .e-title:after {
  background-color: #d5d5d5;
  bottom: 3px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  width: 100%;
}
.news.single .b-article-wrap .e-title h1 {
  font-size: 18px;
}
.news.single .b-article-wrap .e-body {
  padding: 30px;
}
.news.single .b-article-wrap .e-body a {
  color: #0068b7;
  text-decoration: underline;
}
.news.single .b-article-wrap .e-body a:hover {
  text-decoration: none;
}

/*----------------------------------

  HISTORY & VISION
  社長メッセージ

----------------------------------*/
.history-and-vision .b-dual-contena {
  margin-top: 80px;
}
.history-and-vision .b-aside-cont {
  max-width: 27%;
}
.history-and-vision .b-main-cont {
  margin-bottom: 200px;
}
.history-and-vision .b-main-cont h2 {
  font-size: 3.6rem;
  line-height: 2;
}

.history-and-vision .b-paragraph {
  margin-top: 80px;
  padding-top: 40px;
  position: relative;
}
.history-and-vision .b-paragraph::before {
  background-color: #0068b7;
  content: "";
  height: 2px;
  left: 0;
  position: absolute;
  top: 0;
  width: 60px;
}
.history-and-vision .b-paragraph h3 {
  font-size: 2.4rem;
  margin-bottom: 40px;
}
.history-and-vision .b-paragraph p {
  font-size: 1.5rem;
  line-height: 2;
}
.history-and-vision .b-paragraph .e-img {
  margin-top: 40px;
  width: 100%;
}
.history-and-vision .e-name {
  font-size: 1.6rem;
  margin-right: 9.375vw;
  text-align: right;
}
.history-and-vision .e-name span {
  margin-right: 1em;
}
.history-and-vision .b-foot-link {
  margin-top: 130px;
}
.history-and-vision .b-foot-link .e-anchor,
.culture .b-foot-link .e-anchor {
  background-image: url(../img/link_about.jpg);
}

/*----------------------------------

  ABOUT
  私たちについて

----------------------------------*/
.about .b-canva {
  aspect-ratio: 16 / 9;
  margin: 80px auto 100px;
  max-width: 1040px;
  width: 81.25vw;
}

.about .hero-aria .b-copy {
  margin-bottom: 90px;
}

.about .b-service-wrap {
  background-color: #0068b7;
  padding: 80px 9.57vw;
}
.about .b-service-wrap > .e-heading,
.about .b-service-wrap > .e-paragraph {
  color: #fff;
}
.about .b-service-wrap > .e-heading {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.about .b-service {
  background-color: #fff;
  border-radius: 8px;
  margin-top: 60px;
  padding: 60px;
  width: 100%;
}
.about .b-service h4.m-green {
  color: #05a3a7;
}
.about .b-service .e-para {
  font-size: 1.3rem;
  line-height: 2;
}
.about .b-service h5 {
  border-bottom: 1px solid #b4b4b4;
  font-size: 1.6rem;
  line-height: 2;
  margin-bottom: 20px;
  margin-top: 40px;
  padding-bottom: 5px;
}

.about .b-service .-header h4 {
  align-items: flex-end;
  font-size: 3.5rem;
  line-height: 1;
  margin-bottom: 60px;
}
.about .b-service .-header h4 img {
  height: 2.15em;
  margin-right: 0.75em;
}
.about .b-service .-header h4.-sub {
  color: #000;
  font-size: 2rem;
  margin-bottom: 20px;
}

.about .b-service .-box {
  display: flex;
}
.about .b-service .-box.m-between {
  justify-content: space-between;
}
.about .b-service .-box .-sub {
  margin-left: 60px;
}

.about .b-service h4 {
  align-items: center;
  color: #0068b7;
  display: flex;
  font-size: 2.4rem;
}
.about .b-service button {
  align-items: center;
  border-radius: 8px;
  color: #fff;
  display: flex;
  font-size: 1.6rem;
  justify-content: space-between;
  margin-right: 10px;
  padding: 16px 24px;
  text-align: left;
  width: 33%;
}
.about .b-service .-box p {
  margin-bottom: 20px;
}
.about .b-service .-box button .-circle {
  background-color: transparent;
  border: 1px solid #fff;
  height: 30px;
  width: 30px;
}
.about .b-service .-box button .-arrow::after {
  height: 6.25px;
  width: 6.25px;
}
.about .b-service .-box.m-blue > button {
  background-color: #014c84;
}

.about .b-service .-list {
  display: flex;
  flex-wrap: wrap;
}
.about .b-service .-list li {
  margin: 0 20px 20px 0;
  width: calc(33.3% - 15px);
}
.about .b-service .-list li:nth-child(3n) {
  margin-right: 0;
}
.about .b-service .-list li img {
  margin-bottom: auto;
  width: 100%;
}

.about .b-btn-wrap {
  width: 23.4vw;
}
.about .b-btn-wrap .e-line {
  border-top: 1px solid #b4b4b4;
  display: block;
  margin: 40px 0;
}
.about .b-btn-wrap button {
  margin-top: 20px;
  margin-right: 0;
  width: 100%;
}
.about .b-btn-wrap button:first-child {
  margin-top: 0;
}
.about .b-btn-wrap button .-circle {
  background-color: transparent;
  border: 1px solid #fff;
  height: 30px;
  width: 30px;
}
.about .b-btn-wrap button .-arrow::after {
  height: 6.25px;
  width: 6.25px;
}
.about .b-btn-wrap button.m-lightblue {
  background-color: #05a3ff;
}
.about .b-btn-wrap button.m-deepblue {
  background-color: #4774b9;
}
.about .b-btn-wrap button.m-blue {
  background-color: #0068b7;
}
.about .b-btn-wrap button.m-dullblue {
  background-color: #007697;
}
.about .b-btn-wrap button.m-lineblue {
  border: 1px solid #0068b7;
  color: #0068b7;
}
.about .b-btn-wrap button.m-lineblue .-circle,
.about .b-btn-wrap button.m-lineblue .-arrow::after {
  border-color: #0068b7;
}
.about .b-btn-wrap button.m-lineblue .-arrow::before {
  background-color: #0068b7;
}
.about .b-btn-wrap button.m-green {
  border: 1px solid #05a3a7;
  color: #05a3a7;
}
.about .b-btn-wrap button.m-green .-circle,
.about .b-btn-wrap button.m-green .-arrow::after {
  border-color: #05a3a7;
}
.about .b-btn-wrap button.m-green .-arrow::before {
  background-color: #05a3a7;
}

.about .b-flow-wrap {
  align-items: center;
  display: flex;
}
.about .b-flow-sp {
  display: none;
}
.about .b-flow {
  aspect-ratio: 189 / 125;
  margin-bottom: 40px;
  margin-top: 40px;
  position: relative;
  width: 42.6vw;
}
.about .b-flow .js-modal-btn {
  cursor: pointer;
}
.about .b-flow .e-img {
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  width: 100%;
}
.about .b-flow .e-img.m-back-line {
  width: 33.8vw;
}
.about .b-flow .e-img.m-model {
  left: calc(50% - 20px);
  top: calc(50% + 35px);
  width: 34.8vw;
}
.about .b-flow .e-img.m-pm {
  left: 50%;
  top: -40px;
  transform: translateX(-50%);
}
.about .b-flow .e-img.m-left {
  left: 30%;
  top: 45%;
  width: 15.5vw;
}
.about .b-flow .e-img.m-right {
  left: unset;
  right: 15%;
  width: 9vw;
}

.about .e-more {
  display: block;
  margin: 40px 0 0 auto;
  max-width: 200px;
  transition: 0.3s;
}
.about .e-more:hover {
  filter: brightness(0.8);
}
.about .e-more img {
  display: block;
  width: 100%;
}

/*----------------------------------

  AZA-PERSON
  仕事紹介とインタビュー

----------------------------------*/
.aza-person .b-foot-link .e-anchor {
  background-image: url(../img/link_culture.jpg);
}
.aza-person .b-article {
  margin-bottom: 130px;
  margin-top: 140px;
}
.aza-person .b-article .-list {
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto;
  max-width: 1000px;
  gap: 30px;
  width: 78vw;
}
.aza-person .b-article .e-li * {
  width: 100%;
}
.aza-person .b-article .e-li {
  margin: 0;
  max-width: calc(100% / 2 - 15px);
  position: relative;
  width: 100%;
}
.aza-person .b-article .e-li:nth-child(3n) {
  margin-right: 0;
}
.aza-person .b-article .e-li .-anchor {
  display: block;
  position: relative;
}
.aza-person .b-article .e-li .-case {
  bottom: 16px;
  color: #fff;
  left: 16px;
  position: absolute;
}
.aza-person .b-article .e-li .-title {
  height: 48px;
  left: 0;
  position: absolute;
  top: -29px;
  width: auto;
}
.aza-person .b-article .e-li .-thumb {
  border-radius: 20px;
  opacity: 1;
  transform: scale(1);
  transition: 0.3s;
}
.aza-person .b-article .e-li:hover .-thumb {
  opacity: 0.8;
  transform: scale(0.99);
}

.interview .b-article-wrap {
  background-color: #e4eef8;
  border-radius: 16px;
  margin: 0 auto;
  max-width: 1040px;
  position: relative;
  width: 81.25vw;
}
.interview .b-article-wrap::after {
  background-color: #86b9ed;
  bottom: 0;
  border-radius: 0 0 16px 16px;
  content: "";
  display: block;
  height: 160px;
  left: 0;
  position: absolute;
  width: 100%;
}
.interview .b-article-wrap .e-heading {
  background-color: #86b9ed;
  border-radius: 16px 16px 0 0;
  font-family: var(--montserrat);
  font-size: 1.5rem;
  padding: 30px 49px;
}
.interview .b-article-wrap .e-title {
  margin: 40px;
}
.interview .b-article-wrap .e-title h2 {
  font-size: 2.4rem;
  margin-bottom: 20px;
}
.interview .b-article-wrap .e-title p {
  font-size: 1.2rem;
  line-height: 2;
}
.interview .b-article-wrap .e-hero-img {
  margin-left: 40px;
  position: relative;
  width: calc(100% - 120px);
  z-index: 2;
}
.interview .b-dual-contena {
  padding: 40px;
  position: relative;
  width: 100%;
  z-index: 1;
}
.interview .b-main-cont {
  background-color: #fff;
  margin-left: 40px;
  padding: 0 40px 1px;
  position: relative;
  width: 46.8vw;
}
.interview .b-main-cont::before {
  background-color: #fff;
  content: "";
  display: block;
  height: 400px;
  left: 0;
  position: absolute;
  top: -400px;
  width: 100%;
}

.interview .b-paragraph {
  margin-bottom: 80px;
}
.interview .b-paragraph h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.interview .b-paragraph h4 {
  color: #7c7c7c;
  font-size: 1.5rem;
  margin-bottom: 20px;
}
.interview .b-paragraph p {
  font-size: 1.5rem;
  line-height: 2;
}
.interview .b-paragraph em {
  color: #0068b7;
  font-style: normal;
  font-weight: 600;
}
.interview .b-paragraph .e-img {
  margin-top: 40px;
  width: 100%;
}

.interview .b-article {
  margin-left: auto;
  margin-right: auto;
  max-width: 1040px;
  width: 81.25vw;
}
.interview .b-article .e-heading {
  color: #0068b7;
  font-family: var(--montserrat);
  font-size: 2.4rem;
  margin-bottom: 100px;
  position: relative;
}
.interview .b-article .e-heading::before {
  background-color: #0068b7;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: calc(100% - 18em);
}

.interview.m-01-qc .e-li.m-01-qc,
.interview.m-02-ei .e-li.m-02-ei,
.interview.m-03-fg .e-li.m-03-fg {
  display: none;
}

.interview.m-02 .b-article-wrap {
  background-color: #c2b2f233;
}
.interview.m-02 .b-article-wrap .e-heading,
.interview.m-02 .b-article-wrap::after {
  background-color: #c2b2f2;
}
.interview.m-02 .b-paragraph em {
  color: #8561d8;
}
.interview.m-03 .b-article-wrap {
  background-color: #def6ec;
}
.interview.m-03 .b-article-wrap .e-heading,
.interview.m-03 .b-article-wrap::after {
  background-color: #6adfab;
}
.interview.m-03 .b-paragraph em {
  color: #259564;
}
.interview.m-04 .b-article-wrap {
  background-color: #f8e7e8;
}
.interview.m-04 .b-article-wrap .e-heading,
.interview.m-04 .b-article-wrap::after {
  background-color: #ea9298;
}
.interview.m-04 .b-paragraph em {
  color: #d96068;
}

.interview .slick-list {
  overflow: visible;
}

/*----------------------------------

  CULTURE
  働く環境

----------------------------------*/
.culture .b-dual-contena {
  border-top: 1px solid #231816;
  display: flex;
  margin: 0 0 auto auto;
  width: 90.625%;
}
.culture .b-main-cont {
  margin-left: 0;
  width: 80%;
}
.culture .b-aside-cont {
  width: 20%;
}

.culture .b-main-cont .e-heading {
  border-bottom: 1px solid #231816;
  display: block;
  font-size: 2.4rem;
  margin-bottom: 40px;
  padding-bottom: 10px;
}
.culture .b-main-cont .e-heading span {
  color: #0068b7;
  display: block;
  font-family: var(--montserrat);
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.culture .b-aside-cont {
  padding-top: 3.125vw;
}

.culture .b-cont {
  padding-bottom: 1px;
  padding-left: 6.25vw;
  padding-top: 6.25vw;
}
.culture .-edu {
  background-color: #e7f2f7;
  padding-right: 9.375vw;
}

.culture .-edu ul {
  list-style: none;
}
.culture .-edu ul li {
  background-color: #fff;
  border-radius: 16px;
  margin-bottom: 20px;
  padding: 30px;
}
.culture .-edu ul li:last-child {
  margin-bottom: 0;
}
.culture .-edu ul h3 {
  font-size: 2rem;
  margin-bottom: 10px;
  padding-left: 1em;
  position: relative;
}
.culture .-edu ul h3::before {
  background-color: #0068b7;
  border-radius: 4px;
  content: "";
  display: block;
  height: 8px;
  left: 0;
  margin-bottom: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}
.culture .-edu ul .e-text {
  font-size: 1.3rem;
  line-height: 2;
  margin-bottom: 20px;
}
.culture .-edu ul .e-comment {
  background-color: #f1fabf;
  border-radius: 57px;
  font-size: 1.2rem;
  line-height: 1.66;
  margin: 0 10px 0 auto;
  padding: 30px;
  position: relative;
  width: 372px;
}
.culture .-edu ul .e-comment::before {
  background-color: #f1fabf;
  bottom: 0;
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  content: "";
  display: block;
  height: 39px;
  position: absolute;
  right: -10px;
  transform: rotate(120deg);
  width: 22px;
}
.culture .b-stepup {
  margin: 70px 0 90px;
}
.culture .b-stepup h3 {
  font-size: 1.6rem;
  margin-bottom: 60px;
  position: relative;
  text-align: center;
  z-index: 0;
}
.culture .b-stepup h3::before {
  background-color: #707070;
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  z-index: -1;
}
.culture .b-stepup h3::after {
  background-color: #e7f2f7;
  content: "";
  display: block;
  height: 1.5em;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 45%;
  z-index: -1;
}
.culture .b-stepup img {
  width: 100%;
}

.culture .-wel {
  background-color: #fafafa;
  padding-bottom: 10vw;
  position: relative;
}
.culture .-wel br {
  display: none;
}
.culture .-wel .e-img {
  position: absolute;
  right: 9.375vw;
}
.culture .-wel .e-img.m-01 {
  top: 20vw;
  max-width: 160px;
  width: 12.5vw;
}
.culture .-wel .e-img.m-02 {
  bottom: 31vw;
  max-width: 183px;
  width: 14.3vw;
}
.culture .-wel h3 {
  align-items: center;
  display: flex;
  font-size: 2rem;
  margin-bottom: 1em;
  margin-top: 80px;
}
.culture .-wel h3 img {
  display: block;
  margin-right: 8px;
  width: 23px;
}
.culture .-wel ul {
  list-style: none;
}
.culture .-wel li {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 20px;
  padding-left: calc(2rem + 8px);
  padding-right: 9.375vw;
  position: relative;
}
.culture .-wel li::before {
  background-color: #707070;
  content: "";
  display: block;
  height: 1px;
  left: 0;
  position: absolute;
  top: 16px;
  width: 21px;
}
.culture .-wel p {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 2;
  margin-bottom: 40px;
  padding-left: calc(2rem + 8px);
  padding-right: 9.375vw;
}
.culture .-wel p br {
  display: block;
}

/*----------------------------------

  RECRUIT
  採用情報

----------------------------------*/
.recruit main {
  padding-bottom: 122px;
}
.recruit .b-hero .e-heading {
  word-break: break-word;
}
.recruit .b-copy,
.recruit .b-copy h3,
.recruit .b-copy p {
  width: 100%;
}
.recruit .b-copy {
  flex-direction: column;
  margin: 0 0 60px;
}
.recruit .b-copy h3 {
  font-size: 3.6rem;
}
.recruit .b-copy p {
  font-size: 1.2rem;
  font-weight: 600;
}

.recruit .b-main-cont ul {
  width: 100%;
}
.recruit .b-main-cont ul > br {
  display: none;
}
.recruit .b-main-cont a {
  align-items: center;
  border: 1px solid #0068b7;
  border-radius: 16px;
  color: #0068b7;
  display: flex;
  font-size: 1.6rem;
  font-weight: 600;
  justify-content: space-between;
  line-height: 1.75;
  margin-top: 25px;
  padding: 30px 16px 28px 32px;
}
.recruit .b-main-cont a .-circle {
  height: 49px;
  width: 49px;
}

/*----------------------------------

  FAQ
  よくある質問

----------------------------------*/
.faq main {
  padding-bottom: 122px;
}
.faq .b-main-cont h3 {
  font-size: 2rem;
  margin-bottom: 20px;
}
.faq main .b-list {
  margin-bottom: 40px;
}
.faq main .b-list .e-li {
  background-color: #e7f2f7;
  border-radius: 16px;
  cursor: pointer;
  margin-bottom: 8px;
  position: relative;
}
.faq main .b-list .e-li * {
  transition: 0.3s;
  word-break: break-all;
}
.faq main .b-list .e-li::before {
  content: "Q.\2002";
  font-family: var(--montserrat);
  font-size: 2rem;
  font-weight: 600;
  left: 20px;
  line-height: 1;
  position: absolute;
  top: 26px;
}
.faq .b-list .e-li details {
  line-height: 2;
  padding: 0 50px;
}
.faq .b-list .e-li details[open] {
  padding-bottom: 30px;
}
.faq .b-list .e-li details[open] summary {
  padding-bottom: 20px;
}
.faq .b-list .e-li details summary::marker,
details summary::-webkit-details-marker {
  display: none;
}
.faq .b-list .e-li details summary::marker {
  content: "\200B";
}
.faq .b-list .e-li summary {
  line-height: 1;
  font-weight: 600;
  padding: 30px 0;
}
.faq .b-list .e-li .-circle {
  background-color: #fff;
  cursor: pointer;
  display: block;
  height: 34px;
  position: absolute;
  right: 20px;
  top: 21px;
  width: 34px;
}
.faq .b-list .e-li details[open] ~ .-circle {
  transform: rotate(45deg);
}

.faq .b-list .e-li .-circle::before,
.faq .b-list .e-li .-circle::after {
  background-color: #000;
  content: "";
  display: block;
  left: 50%;
  position: absolute;
  top: 50%;
  transform: translate(-50%, -50%);
}
.faq .b-list .e-li .-circle::before {
  height: 20px;
  width: 1px;
}
.faq .b-list .e-li .-circle::after {
  height: 1px;
  width: 20px;
}

.faq .b-outro h4 {
  font-size: 1.8rem;
  font-weight: 600;
  margin-top: 40px;
  text-align: center;
}
.faq .b-outro p {
  line-height: 2;
  margin: 20px auto 40px;
}
.faq .b-outro .e-anchor {
  align-items: center;
  border: 1px solid #0068b7;
  border-radius: 8px;
  color: #0068b7;
  display: flex;
  font-size: 1.6rem;
  font-weight: 600;
  justify-content: space-between;
  margin: 0 auto;
  min-width: 300px;
  max-width: 330px;
  padding: 16px 24px;
  width: 26vw;
}
.faq .b-outro .e-anchor .-circle {
  height: 34px;
  width: 34px;
}
.faq .b-outro .e-anchor .-arrow::after {
  height: 9px;
  left: calc(55% - 12px);
  top: calc(50% - 1px);
  width: 9px;
}

/*----------------------------------

  MEDIA QUERY
  メディアクエリ

----------------------------------*/
@media screen and (max-width: 750px) {
  body {
    overflow-x: hidden;
  }

  /*----------------------------------

    COMMON
    よく使う

  ----------------------------------*/
  .b-dual-contena {
    flex-direction: column;
    width: 100%;
  }
  .b-dual-contena .b-main-cont {
    margin-top: 50px;
    width: calc(100% - 60px);
  }
  .b-dual-contena .b-hero {
    padding-top: 0;
  }

  .b-hero {
    margin-left: 0;
  }
  .b-hero .e-img {
    display: none;
  }
  .-blank img {
    min-width: 20px;
  }

  .b-copy {
    flex-direction: column;
    margin: 40px auto 60px;
    width: calc(100% - 60px);
  }
  .b-copy h3,
  .b-copy p {
    width: 100%;
  }
  .b-copy h3 {
    margin-bottom: 20px;
  }

  .b-modal .-wrap {
    padding: 1px 7.6vw;
    width: 84.8vw;
  }
  .b-modal .-wrap .-inner {
    max-height: 65vh;
    margin: 7.6vw 0;
    overflow-y: scroll;
  }
  .b-modal h2 {
    font-size: 2rem;
    line-height: 1;
    padding: 11px 16px;
  }
  .b-modal h3 {
    margin-top: 20px;
  }
  .b-modal p {
    margin-top: 10px;
  }
  .b-modal .-list {
    flex-direction: column;
    margin-top: 14px;
    width: 100%;
  }
  .b-modal .-list .e-anchor {
    margin-top: 16px;
    max-width: unset;
    padding: 10px 18px;
    width: 100%;
  }
  .b-modal .-inner .-cont {
    display: block;
  }
  .b-modal .-inner .-cont img {
    margin: 30px 0;
    width: 100%;
  }

  .b-foot-link {
    height: 440px;
    margin-top: 130px;
    position: relative;
  }
  .b-foot-link .e-anchor {
    aspect-ratio: 1 / 1;
    background-size: cover;
    border-radius: 0 16px 16px 0;
    max-height: 360px;
    left: 0;
    transform: translateY(-50%);
    width: 92vw;
  }
  .b-foot-link .e-anchor .-circle {
    bottom: 20px;
    right: 12px;
  }
  .b-foot-link .e-anchor.m-anime {
    aspect-ratio: unset;
    font-size: 4rem;
    left: 50%;
    max-height: unset;
  }
  .b-foot-link .e-anchor.m-anime .-cap {
    font-size: 1rem;
  }

  .m-pc {
    display: none;
  }
  .m-sp {
    display: block;
  }

  /*----------------------------------

    HEADER
    ヘッダー

  ----------------------------------*/
  .header {
    padding: 0 20px 0 17px;
  }
  .header * {
    transition: 0.3s;
  }
  .header.m-open {
    background-color: #fff;
  }
  .header .b-logo img {
    height: 28px;
  }
  .header .b-nav {
    height: calc(100vh - 64px);
    left: 0;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    top: 64px;
    visibility: hidden;
    width: 100vw;
    z-index: -1;
  }
  .header.m-open .b-nav {
    background-color: #fff;
    display: block;
    opacity: 1;
    overflow-y: scroll;
    padding: 0 30px 110px;
    pointer-events: all;
    visibility: visible;
    z-index: 99;
  }
  .header .b-nav .-list {
    flex-direction: column;
  }
  .header .b-nav > .-list .e-li {
    border-bottom: 1px solid #b4bcc3;
    margin-right: 0;
  }
  .header .b-nav .e-li .-anchor {
    align-items: center;
    color: #0068b7;
    display: flex;
    justify-content: space-between;
    padding: 16px 0 14px;
  }
  .header .b-nav .e-li .-cap {
    color: #000;
    display: block;
  }
  .header .b-nav .-circle {
    display: flex;
    height: 34px;
    width: 34px;
  }
  .header .b-nav .-arrow::after {
    height: 10px;
    left: calc(50% - 12px);
    top: calc(50% - 1px);
    width: 10px;
  }
  .header .-blank img {
    min-width: 10px;
  }

  .header .b-nav .-entry {
    align-items: center;
    background-color: #0068b7;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin-top: 16px;
    padding: 20px 0 14px;
    width: 100%;
  }
  .header .b-nav .-entry h2 {
    color: #fff;
    font-family: var(--montserrat);
    margin-bottom: 20px;
  }
  .header .b-nav .-entry .e-li {
    margin-right: 0;
  }
  .header .b-nav .-entry .e-li .-anchor {
    align-items: center;
    background-color: #fff;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 16px;
    min-width: 238px;
    padding: 20px 26px;
    width: 61vw;
  }
  .header .e-navbtn {
    display: block;
    margin-left: 18px;
    height: 40px;
    width: 40px;
  }
  .header .e-navbtn span {
    background-color: #000;
    display: block;
    height: 1px;
    margin: 8px 0;
    width: 8.2vw;
  }
  .header .e-navbtn.m-open span {
    margin: 0;
    transform: rotate(45deg);
  }
  .header .e-navbtn.m-open span:last-child {
    transform: rotate(-45deg);
  }

  .header .b-nav .e-anchor {
    border-bottom: 1px solid #0068b7;
    color: #0068b7;
    display: block;
    font-size: 1.2rem;
    font-weight: 600;
    margin: 30px auto 0;
    width: 17em;
  }

  .header .b-entry .-list {
    left: 50%;
    top: 60px;
    transform: translateX(-50%);
    right: unset;
  }

  /*----------------------------------

    BREADCRUMB
    パンくずリスト

  ----------------------------------*/
  .breadcrumb {
    margin: 94px 6.25vw 30px;
  }
  .breadcrumb .b-list li {
    line-height: 1.5;
  }

  /*----------------------------------

    FOOTER
    フッター

  ----------------------------------*/
  .footer .entry .b-wrap {
    flex-direction: column;
    position: relative;
    z-index: 1;
  }
  .footer .entry .b-wrap .e-anchor {
    font-size: 1.8rem;
    margin: 0 auto 30px;
    padding: 15px 17px 15px 32px;
    width: 72vw;
  }
  .footer .entry .b-wrap .e-anchor:nth-child(2) {
    margin-bottom: 0;
  }
  .footer .entry .b-wrap .e-anchor .-circle {
    height: 50px;
    width: 50px;
  }
  .footer .entry .-arrow,
  .footer .entry .-arrow::before,
  .footer .entry .-arrow::after {
    border-width: 1px;
  }
  .footer .entry .-arrow::after {
    height: 8px;
    left: calc(55% - 11px);
    top: calc(50% - 1px);
    width: 8px;
  }
  .footer .-blank img {
    min-width: 8px;
  }
  .footer .entry .e-img.m-left {
    bottom: -45px;
    left: -3vw;
    width: 43vw;
  }
  .footer .entry .e-img.m-right {
    top: 28px;
    right: -4.6vw;
    width: 29vw;
  }

  .footer .bottom .wrap {
    flex-direction: column;
  }
  .footer .bottom .b-left,
  .footer .bottom .b-right {
    max-width: unset;
    width: 100%;
  }
  .footer .bottom .b-left .b-list {
    margin-bottom: 40px;
  }
  .footer .bottom .b-left .b-list .e-anchor {
    align-items: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0 0 10px;
  }
  .footer .bottom .b-left .b-list li:last-child .e-anchor {
    margin-bottom: 0;
  }
  .footer .bottom .e-azapa img {
    width: 75vw;
  }
  .footer .bottom .b-logo {
    margin: 0 auto 40px;
    width: 75vw;
  }
  .footer .bottom .b-right {
    flex-direction: column;
    padding: 0 10px;
  }
  .footer .bottom .b-right .b-list {
    margin-bottom: 30px;
  }
  .footer .bottom .e-azapa {
    margin: 30px auto 0;
  }

  /*----------------------------------

    NEWS
    ニュース

  ----------------------------------*/
  .news .b-news-list li a {
    flex-direction: column;
    gap: 0;
  }
  .news.single .b-article-wrap .e-title,
  .news.single .b-article-wrap .e-body {
    padding-left: 20px;
    padding-right: 20px;
  }

  /*----------------------------------

    HISTORY & VISION
    社長メッセージ

  ----------------------------------*/
  .history-and-vision .b-hero {
    display: block;
    width: 100%;
  }
  .history-and-vision .b-hero .e-img {
    display: block;
    height: 240px;
    margin: 40px 0 0 auto;
    width: auto;
  }
  .history-and-vision .e-sp-heading {
    font-size: 2.4rem;
    line-height: 2;
    margin: 60px auto 0;
    width: calc(100% - 60px);
  }
  .history-and-vision .b-aside-cont {
    border-bottom: 1px solid #000;
    border-top: 1px solid #000;
    margin: 0 auto;
    max-width: calc(100% - 60px);
    padding: 20px;
    width: 100%;
  }
  .history-and-vision .b-aside-cont .-list {
    padding-bottom: 0;
  }
  .history-and-vision .b-aside-cont .-list .e-li:last-child a {
    margin-bottom: 0;
  }
  .history-and-vision .b-dual-contena .b-main-cont {
    margin-bottom: 120px;
    margin-top: 0;
  }

  /*----------------------------------

    ABOUT
    私たちについて

  ----------------------------------*/
  .about .b-service .-header h4 {
    font-size: 2rem;
    margin-bottom: 40px;
  }
  .about .b-service .-header h4 img {
    height: 1.5em;
  }
  .about .b-service .-header h4.-sub {
    font-size: 4.5vw;
    line-height: 1.5;
  }
  .about .b-service .-header br {
    display: none;
  }

  .about .b-copy h3 {
    font-size: 5vw;
  }
  .about .b-service-wrap {
    padding: 1px 12px 60px;
  }
  .about .b-service-wrap > .e-heading,
  .about .b-service-wrap > .e-paragraph {
    margin: 0 18px 20px;
  }
  .about .b-canva {
    margin: 40px auto 60px;
  }
  .about .b-service {
    padding: 40px 18px;
  }

  .about .b-service .-box.m-between {
    flex-direction: column;
    margin-bottom: 30px;
  }

  .about .b-service .-box .e-para {
    width: 100%;
  }
  .about .b-service .-box .e-para br {
    display: none;
  }
  .about .b-service button {
    padding: 16px 18px 16px 12px;
    width: 50%;
  }

  .about .b-service .-box.m-gold button:first-child {
    margin-top: 0;
  }

  .about .b-service .-box .-sub {
    margin-left: 0;
  }

  .about .b-flow-wrap {
    flex-direction: column-reverse;
  }
  .about .b-flow-sp {
    aspect-ratio: 315 / 236;
    display: block;
    position: relative;
  }
  .about .b-flow-sp img {
    width: 100%;
  }
  .about .b-modal.--flow .-wrap {
    padding: 1px 10px;
  }
  .about .b-modal.--flow .-inner {
    margin: 10px 0;
  }
  .about .b-modal.--flow img {
    width: 750px;
  }
  .about .b-flow {
    display: none;
    /* margin-left: 0;
    padding-bottom: 20px;
    width: 84.6vw;*/
  }
  /*
  .about .b-flow .e-img.m-pm {
    top: -25px;
  }
  .about .b-flow .e-img.m-left {
    width: 32vw;
  }
  .about .b-flow .e-img.m-right {
    width: 17vw;
  }
  .about .b-flow .e-img.m-model {
    left: calc(50% - 10px);
    top: calc(50% + 30px);
    width: 65vw;
  }
    */
  .about .b-btn-wrap {
    margin-right: 0;
    margin-top: 30px;
    width: 100%;
  }
  .about .b-btn-wrap button,
  .about .b-service .-box.m-tate button {
    max-width: unset;
    padding: 16px 18px 16px 20px;
    width: 100%;
  }
  .about .b-service .-box.m-tate button {
    margin-right: 0;
    margin-top: 20px;
  }
  .about .b-service .-box.m-tate button:first-child {
    margin-top: 0;
  }

  .about .b-service .-list li {
    width: calc(50% - 10px);
  }
  .about .b-service .-list li:nth-child(3n) {
    margin-right: 20px;
  }
  .about .b-service .-list li:nth-child(2n) {
    margin-right: 0;
  }

  .about .b-foot-link {
    margin-top: 0;
  }

  /*----------------------------------

    AZA-PERSON
    社員インタビュー

  ----------------------------------*/
  .aza-person .b-article {
    margin-bottom: 80px;
    margin-top: 80px;
  }
  .aza-person .b-article .e-li {
    margin-bottom: 70px;
    max-width: calc(100vw - 20px);
  }
  .aza-person .b-article .e-li:last-child {
    margin-bottom: 0;
  }

  .interview .b-article-wrap {
    width: 100%;
  }
  .interview .b-article-wrap .e-heading {
    padding: 30px;
  }
  .interview .b-main-cont::before {
    display: none;
  }
  .interview .b-article-wrap .e-title {
    margin: 40px 30px;
  }
  .interview .b-article-wrap .e-hero-img {
    display: block;
    margin: 0 auto;
    width: calc(100% - 20px);
  }
  .interview .b-dual-contena {
    padding: 10px 10px 40px;
  }
  .interview .b-dual-contena .b-aside-cont {
    display: none;
  }
  .interview .b-dual-contena .b-main-cont {
    margin: 0;
    padding: 40px 20px 1px;
    width: calc(100vw - 20px);
  }

  .interview .b-article {
    max-width: unset;
    width: 100vw;
  }
  .interview .b-article .-list {
    max-width: unset;
    width: 100vw;
  }
  .interview .b-article .e-heading {
    margin-bottom: 60px;
    margin-left: auto;
    margin-right: auto;
    max-width: 1040px;
    width: 81.25vw;
  }
  .interview .b-article .e-li {
    margin: 0 20px !important;
  }

  /*----------------------------------

    CULTURE
    働く環境

  ----------------------------------*/
  .culture .b-dual-contena {
    border: none;
    flex-direction: column;
    margin: 0;
    width: 100%;
  }
  .culture .b-dual-contena .b-aside-cont {
    margin: 0 30px 55px auto;
    width: auto;
  }
  .culture .b-aside-cont .-list {
    padding-bottom: 0;
    width: 29.5vw;
  }
  .culture .b-main-cont {
    margin-top: 0;
    width: 100%;
  }
  .culture .b-cont {
    padding: 60px 30px 1px;
  }
  .culture .b-main-cont .e-heading {
    margin-bottom: 20px;
  }
  .culture .-edu ul .e-comment {
    width: 100%;
  }
  .culture .b-stepup .e-imgwrap {
    height: 113vw;
    overflow-x: scroll;
    overflow-y: hidden;
    width: calc(100% + 30px);
  }
  .culture .b-stepup h3::after {
    width: 70%;
  }
  .culture .b-stepup img {
    height: 100%;
    width: auto;
  }
  .culture .-wel {
    padding-bottom: 120px;
  }
  .culture .-wel .e-img.m-01 {
    top: 11vw;
    width: 21.3vw;
  }
  .culture .-wel .e-img.m-02 {
    bottom: 90vw;
    width: 24.1vw;
  }

  /*----------------------------------

    FAQ
    よくある質問

  ----------------------------------*/
  .faq .b-list .e-li .-circle {
    display: none;
  }
  .faq .b-list .e-li details {
    font-size: 1.3rem;
    padding-right: 20px;
  }
  .faq .b-list .e-li summary,
  .faq .b-list .e-li::before {
    line-height: 1.5;
  }
}
