@charset "UTF-8";
/* レスポンシブ */
/** example
.element {
    @include fade-in(0.5s, 0.2s, ease-in-out);
}
*/
@keyframes opacityFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
html,
body {
  overflow-x: hidden;
  scroll-behavior: smooth;
  font-family: "Noto Serif JP", serif;
}

html * {
  box-sizing: border-box;
  scroll-margin-top: 50px;
}

.sp-only {
  display: block;
}
@media (min-width: 769px) {
  .sp-only {
    display: none;
  }
}

.pc-only {
  display: none;
}
@media (min-width: 769px) {
  .pc-only {
    display: block;
  }
}

ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

a {
  text-decoration: none;
}

.fade-item {
  opacity: 1;
  transform: translateY(0);
}

.fade-item-sp {
  opacity: 0;
  transform: translateY(-40px);
  transition: opacity 1s ease-out, transform 1s ease-out;
}
.fade-item-sp.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 769px) {
  .fade-item-sp {
    opacity: 1;
    transform: translateY(0);
  }
  .fade-item {
    opacity: 0;
    transform: translateY(-40px);
    transition: opacity 1s ease-out, transform 1s ease-out;
  }
  .fade-item.is-visible {
    opacity: 1;
    transform: translateY(0);
  }
}
.view-more-button.white-button {
  background-color: #FFFFFF;
  border: 1px solid #095AAB;
}
.view-more-button.white-button span {
  color: #095AAB;
}
.view-more-button.white-button svg path {
  stroke: #095AAB;
}
.view-more-button.white-button:hover {
  transition: background-color 0.3s ease, border 0.3s ease, color 0.3s ease, stroke 0.3s ease;
  background-color: #095AAB;
  border: 1px solid #FFFFFF;
}
.view-more-button.white-button:hover span {
  color: #FFFFFF;
}
.view-more-button.white-button:hover svg path {
  stroke: #FFFFFF;
}
.view-more-button.blue-button {
  background-color: #095AAB;
  border: 1px solid #095AAB;
}
.view-more-button.blue-button span {
  color: #FFFFFF;
}
.view-more-button.blue-button svg path {
  stroke: #FFFFFF;
}
.view-more-button.blue-button:hover {
  transition: background-color 0.3s ease, border 0.3s ease, color 0.3s ease, stroke 0.3s ease;
  background-color: #FFFFFF;
}
.view-more-button.blue-button:hover span {
  color: #095AAB;
}
.view-more-button.blue-button:hover svg path {
  stroke: #095AAB;
}

/* レスポンシブ */
/** example
.element {
    @include fade-in(0.5s, 0.2s, ease-in-out);
}
*/
@keyframes opacityFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
body {
  position: relative;
}

#bar {
  width: 1.02vw;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 500;
  background: linear-gradient(180deg, #D9D9D9 0%, #6F98C2 50.85%, #095AAB 100%);
}
@media (min-width: 769px) {
  #bar {
    width: 0.92vw;
  }
}

header {
  width: 100%;
  height: 60px;
  padding-left: 5.08vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
@media (min-width: 769px) {
  header {
    height: 132px;
    padding: 0;
    padding-left: 8.85vw;
  }
}
header .logo img {
  width: 37.43vw;
}
@media (min-width: 769px) {
  header .logo img {
    width: 15.33vw;
  }
}
header .hamburger {
  width: 60px;
  height: 60px;
  background-color: #095AAB;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 6px;
  cursor: pointer;
}
@media (min-width: 769px) {
  header .hamburger {
    display: none;
  }
}
header .hamburger span {
  width: 36.66%;
  height: 1.45px;
  background-color: #fff;
  transform-origin: center;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
header .header__contents {
  display: none;
}
@media (min-width: 769px) {
  header .header__contents {
    display: flex;
    justify-content: end;
    align-items: center;
    gap: 5.03vw;
  }
}
header .header__contents .nav ul {
  display: flex;
  gap: 1.39vw;
}
header .header__contents .nav ul a {
  padding: 0 0.93vw;
  font-weight: 400;
  font-size: clamp(14px, 0.725rem + 0.31vw, 17px);
  line-height: 1.29em;
  letter-spacing: 0.1em;
  color: #231815;
  transition: all 0.3s ease;
}
@media (min-width: 769px) {
  header .header__contents .nav ul a:hover {
    color: #fff;
    background-color: #095AAB;
  }
}
header .header__contents .contact-button {
  padding: 8px 1.62vw;
  background-color: #095AAB;
  border: 1px solid #095AAB;
  color: #fff;
  font-weight: 400;
  font-size: clamp(14px, 0.725rem + 0.31vw, 17px);
  line-height: 1.29em;
  letter-spacing: 0.1em;
  transition: background-color 0.3s ease;
}
header .header__contents .contact-button:hover {
  background-color: #FFFFFF;
  color: #095AAB;
  border: 1px solid #095AAB;
}

.hamburger-contents {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100svh;
  height: 100dvh;
  padding-top: 195px;
  background-color: #095AAB;
  opacity: 0;
  transform: scale3d(0.94, 0.94, 1);
  transition: transform 400ms cubic-bezier(0.63, 0.32, 0.35, 0.63), opacity 400ms cubic-bezier(0.63, 0.32, 0.35, 0.63);
  pointer-events: none;
  z-index: 99;
}
.hamburger-contents ul {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 58px;
}
.hamburger-contents ul li {
  opacity: 0;
  transform: translate3d(20%, 0, 0);
  transition: transform 400ms cubic-bezier(0.63, 0.32, 0.35, 0.63), opacity 400ms cubic-bezier(0.63, 0.32, 0.35, 0.63);
  transition-delay: 0s;
}
.hamburger-contents ul li a {
  font-weight: 400;
  font-size: 22px;
  font-style: normal;
  line-height: 1em;
  letter-spacing: 0.1em;
  color: #ffffff;
}

body.hamburger-active {
  position: fixed;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
body.hamburger-active #bar {
  opacity: 0;
  transition: opacity 0.4s ease;
}
body.hamburger-active .hamburger span:nth-of-type(1) {
  transform: translateY(7.45px) rotate(45deg);
}
body.hamburger-active .hamburger span:nth-of-type(2) {
  opacity: 0;
}
body.hamburger-active .hamburger span:nth-of-type(3) {
  transform: translateY(-7.45px) rotate(-45deg);
}
body.hamburger-active .hamburger-contents {
  opacity: 1;
  transform: scale3d(1, 1, 1);
  pointer-events: auto;
}
body.hamburger-active .hamburger-contents .nav li {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
body.hamburger-active .hamburger-contents .nav li:nth-of-type(1) {
  transition-delay: 0.4s;
}
body.hamburger-active .hamburger-contents .nav li:nth-of-type(2) {
  transition-delay: 0.5s;
}
body.hamburger-active .hamburger-contents .nav li:nth-of-type(3) {
  transition-delay: 0.6s;
}
body.hamburger-active .hamburger-contents .nav li:nth-of-type(4) {
  transition-delay: 0.7s;
}
body.hamburger-active .hamburger-contents .nav li:nth-of-type(5) {
  transition-delay: 0.8s;
}
body.hamburger-active .hamburger-contents .nav li:nth-of-type(6) {
  transition-delay: 1s;
}

/* レスポンシブ */
/** example
.element {
    @include fade-in(0.5s, 0.2s, ease-in-out);
}
*/
@keyframes opacityFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
footer {
  width: 100%;
  border-bottom: 12px solid #095AAB;
}
footer .top {
  padding: 23px 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #095AAB;
}
@media (min-width: 769px) {
  footer .top {
    padding: 40px 0;
  }
}
footer .top img {
  width: 8.65vw;
  height: auto;
}
@media (min-width: 769px) {
  footer .top img {
    width: 70px;
  }
}
@media (min-width: 769px) {
  footer .main {
    padding: 101px 0 130px;
    display: flex;
    justify-content: center;
    gap: 15.85vw;
  }
}
footer .main .pc-logo {
  display: none;
}
@media (min-width: 769px) {
  footer .main .pc-logo {
    display: block;
    width: min(12.78vw, 220px);
    height: auto;
  }
}
footer .main .nav {
  padding: 70px 6.1vw 90px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 769px) {
  footer .main .nav {
    padding: 0;
    flex-direction: row;
    gap: 4.34vw;
  }
}
footer .main .nav h4 a {
  font-weight: 400;
  font-size: 19px;
  line-height: 20px;
  letter-spacing: 0.2em;
  color: #095AAB;
}
footer .main .nav h4 a:hover {
  color: #231815;
}
footer .main .nav .nav__left,
footer .main .nav .nav__right {
  display: contents;
}
@media (min-width: 769px) {
  footer .main .nav .nav__left,
  footer .main .nav .nav__right {
    width: 19.9vw;
    display: flex;
    flex-direction: column;
    gap: 40px;
  }
}
footer .main .nav .links {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer .main .nav .links__head {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
footer .main .nav .links__head a {
  font-weight: 400;
  font-size: 19px;
  line-height: 1.25em;
  letter-spacing: 0.2em;
  color: #095AAB;
}
footer .main .nav .links__head a:hover {
  color: #231815;
}
footer .main .nav .links__head hr {
  width: 100%;
  height: 1px;
  margin: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  background-color: #D9D9D9;
}
footer .main .nav .links__items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
footer .main .nav .links__items li a {
  font-weight: 400;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0;
  color: #636363;
}
footer .main .nav .links__items li a:hover {
  color: #095AAB;
}
footer .main .sp-logo {
  margin: auto;
  width: 56.4vw;
  height: auto;
  padding-bottom: 90px;
  display: block;
}
@media (min-width: 769px) {
  footer .main .sp-logo {
    display: none;
  }
}

/* レスポンシブ */
/** example
.element {
    @include fade-in(0.5s, 0.2s, ease-in-out);
}
*/
@keyframes opacityFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#top {
  margin-top: 88px;
}
@media (min-width: 769px) {
  #top {
    margin-top: 160px;
  }
}
#top .kv {
  width: 100%;
  height: calc(100svh - 60px - 27px - 20px);
  margin-bottom: 111px;
  padding: 0 5.08vw;
  position: relative;
}
@media (min-width: 769px) {
  #top .kv {
    height: auto;
    margin-bottom: 162px;
    padding: 0 4.16vw;
  }
}
#top .kv-image-swiper {
  width: 100%;
  height: 100%;
}
@media (min-width: 769px) {
  #top .kv-image-swiper {
    aspect-ratio: 1.59/1;
    overflow: hidden;
  }
}
#top .kv-image-swiper .swiper-slide {
  opacity: 0;
}
#top .kv-image-swiper .swiper-slide-active {
  opacity: 1;
  z-index: 2;
  filter: brightness(1);
}
#top .kv-image-swiper img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 769px) {
  #top .kv-image-swiper img {
    height: auto;
  }
}
#top .kv__message {
  padding: 4.07vw 8.14vw 4.58vw 2.41vw;
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: absolute;
  top: 50.92%;
  left: 5.08vw;
  color: #095AAB;
  background-color: #FFFFFF;
  z-index: 10;
}
@media (min-width: 769px) {
  #top .kv__message {
    padding: 4.68vw 6.71vw 3.58vw 6.82vw;
    gap: 2.54vw;
    top: 34.74%;
    left: 4.16vw;
  }
}
#top .kv__message .top {
  display: flex;
  gap: 8px;
  font-size: clamp(20px, 0.654rem + 2.54vw, 30px);
  font-weight: 400;
  line-height: 1.35em;
  letter-spacing: 0.1em;
  opacity: 0;
  animation: opacityFadeIn 1.5s ease-out 0.3s forwards;
}
@media (min-width: 769px) {
  #top .kv__message .top {
    font-size: clamp(24px, 1.05rem + 0.94vw, 33px);
  }
}
#top .kv__message .top span {
  width: 10px;
  height: 3px;
  margin-top: 0.675em;
  display: inline-block;
  background-color: #095AAB;
}
@media (min-width: 769px) {
  #top .kv__message .top span {
    width: 16px;
    height: 4px;
  }
}
#top .kv__message .bottom {
  margin-left: 18px;
  font-size: clamp(9px, 0.384rem + 0.76vw, 12px);
  font-weight: 400;
  line-height: 1.66em;
  letter-spacing: 0.1em;
  opacity: 0;
  animation: opacityFadeIn 1.5s ease-out 0.3s forwards;
}
@media (min-width: 769px) {
  #top .kv__message .bottom {
    margin-left: 0;
    font-size: clamp(14px, 0.625rem + 0.52vw, 19px);
  }
}
#top .kv__bottom-message {
  position: absolute;
  bottom: 0px;
  right: 5.08vw;
  z-index: 10;
  font-weight: 400;
  font-size: clamp(27px, 0.077rem + 6.87vw, 54px);
  line-height: 0.81em;
  letter-spacing: 0em;
  text-align: right;
  color: #FFFFFF;
  opacity: 0;
  animation: opacityFadeIn 1.5s ease-out 0.3s forwards;
}
@media (min-width: 769px) {
  #top .kv__bottom-message {
    right: 4.16vw;
    font-size: clamp(54px, 0.425rem + 6.15vw, 113px);
    line-height: 0.87em;
  }
}
#top .message {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 48px;
  position: relative;
}
@media (min-width: 769px) {
  #top .message {
    flex-direction: row;
    align-items: flex-start;
    gap: 58px;
  }
}
#top .message__text {
  padding: 58px 6.1vw;
  font-weight: 400;
  font-size: clamp(12px, 0.392rem + 1.53vw, 18px);
  line-height: 4em;
  letter-spacing: 0.12em;
  color: #FFFFFF;
  background-color: #095AAB;
}
@media (min-width: 769px) {
  #top .message__text {
    flex-grow: 1;
    margin-top: min(5.97vw, 86px);
    padding: 58.33px 3.29vw 58.33px 10.41vw;
    font-size: clamp(14px, 0.625rem + 0.52vw, 19px);
    line-height: 2.73em;
    letter-spacing: 0.2em;
  }
}
#top .message__lists {
  width: 87.78vw;
  margin-top: 56px;
}
@media (min-width: 769px) {
  #top .message__lists {
    flex-shrink: 0;
    width: 42.07vw;
    margin: auto 6.37vw auto auto;
    padding-bottom: 145px;
    background: none;
  }
}
#top .message__lists .swiper-wrapper {
  padding-bottom: 67px;
}
@media (min-width: 769px) {
  #top .message__lists .swiper-wrapper {
    padding-bottom: 35px;
  }
}
#top .message__lists .swiper-slide {
  width: 100%;
}
#top .message__lists .swiper-slide img {
  width: 100%;
  aspect-ratio: 1/1;
}
#top .message__lists .swiper-slide .texts {
  width: 89.14%;
  padding: 15px 22px 12px 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: absolute;
  bottom: -47px;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFFFFF;
}
@media (min-width: 769px) {
  #top .message__lists .swiper-slide .texts {
    width: 93.39%;
    flex-direction: row;
    align-items: center;
    gap: 2.01vw;
    padding: 18.33px 1.94vw;
    bottom: 24px;
  }
}
#top .message__lists .swiper-slide .texts h3 {
  font-weight: 400;
  font-size: clamp(18px, 0.886rem + 1.02vw, 22px);
  line-height: 1.55em;
  letter-spacing: 0.1em;
  color: #515151;
}
@media (min-width: 769px) {
  #top .message__lists .swiper-slide .texts h3 {
    word-break: auto-phrase;
    font-size: clamp(14px, 0.304rem + 1.19vw, 22px);
  }
}
@media (min-width: 1025px) {
  #top .message__lists .swiper-slide .texts h3 {
    white-space: nowrap;
  }
}
#top .message__lists .swiper-slide .texts p {
  font-weight: 400;
  font-size: clamp(12px, 0.631rem + 0.51vw, 14px);
  line-height: 1.83em;
  letter-spacing: 0.1em;
  color: #515151;
}
@media (min-width: 769px) {
  #top .message__lists .swiper-slide .texts p {
    font-size: clamp(10px, 0.482rem + 0.3vw, 12px);
  }
}
#top .message__lists .swiper-button-prev,
#top .message__lists .swiper-button-next {
  width: 40px;
  height: 40px;
  background-color: #ffffff;
  border: 1px solid #095AAB;
  top: 43.89vw;
  transform: translateY(50%);
}
@media (min-width: 769px) {
  #top .message__lists .swiper-button-prev,
  #top .message__lists .swiper-button-next {
    width: 48px;
    height: 48px;
    top: calc(21.04vw - 35px);
  }
}
#top .message__lists .swiper-button-prev .swiper-navigation-icon,
#top .message__lists .swiper-button-next .swiper-navigation-icon {
  display: none;
}
#top .message__lists .swiper-button-prev {
  left: 8px;
}
@media (min-width: 769px) {
  #top .message__lists .swiper-button-prev {
    left: 24px;
  }
}
#top .message__lists .swiper-button-prev img {
  transform: rotate(180deg);
}
#top .message__lists .swiper-button-next {
  right: 8px;
}
@media (min-width: 769px) {
  #top .message__lists .swiper-button-next {
    right: 24px;
  }
}
#top .message__lists .swiper-pagination {
  position: relative;
  top: 0;
}
#top .message__lists .swiper-pagination .swiper-pagination-bullet {
  background-color: #D9D9D9;
  opacity: 1;
}
#top .message__lists .swiper-pagination .swiper-pagination-bullet-active {
  background-color: #095AAB;
}
#top .message__gray-bg {
  width: 100%;
  height: 185px;
  background-color: #EAEAEA;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
}
@media (min-width: 769px) {
  #top .message__gray-bg {
    height: 39.58vw;
  }
}
#top .howto {
  margin-top: 70px;
  margin-bottom: 100px;
}
@media (min-width: 769px) {
  #top .howto {
    margin-top: 152px;
    margin-bottom: 137px;
    display: flex;
    justify-content: flex-start;
    gap: 6.36vw;
  }
}
#top .howto__img {
  margin-right: 5.08vw;
  margin-bottom: 52px;
  padding: 30px 18px 30px 38px;
  background-color: #095AAB;
}
@media (min-width: 769px) {
  #top .howto__img {
    flex-shrink: 0;
    width: auto;
    margin: 0;
    padding: 2.54vw 2.54vw 2.54vw 10.41vw;
  }
}
#top .howto__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.5/1;
}
@media (min-width: 769px) {
  #top .howto__img img {
    width: 32.11vw;
    aspect-ratio: 1.18/1;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
#top .howto__texts {
  margin: auto 6.1vw;
}
@media (min-width: 769px) {
  #top .howto__texts {
    width: 33.85vw;
    margin: 0;
  }
}
#top .howto__texts .head {
  margin-bottom: 27px;
  display: inline-flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 769px) {
  #top .howto__texts .head {
    margin-bottom: 52px;
    gap: 40px;
  }
}
#top .howto__texts .head h2 {
  font-weight: 400;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.1em;
  color: #095AAB;
}
@media (min-width: 769px) {
  #top .howto__texts .head h2 {
    font-size: 36px;
  }
}
#top .howto__texts .head hr {
  width: 77.43vw;
  height: 2px;
  margin: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  background: linear-gradient(to right, #095AAB 0%, #095AAB 50.66%, #D9D9D9 50.66%, #D9D9D9 100%);
}
@media (min-width: 769px) {
  #top .howto__texts .head hr {
    width: 100%;
  }
}
#top .howto__texts .text {
  margin-bottom: 47px;
  font-weight: 400;
  font-size: 15px;
  line-height: 2.46em;
  letter-spacing: 0.1em;
  color: #515151;
}
@media (min-width: 769px) {
  #top .howto__texts .text {
    font-size: clamp(14px, 0.575rem + 0.63vw, 20px);
    line-height: 2.25em;
  }
}
#top .howto__texts .view-more-button {
  width: 88.11%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
  padding: 21px 0 17px;
}
@media (min-width: 769px) {
  #top .howto__texts .view-more-button {
    width: 295px;
    margin: 0;
  }
}
#top .howto__texts .view-more-button span {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.22em;
  letter-spacing: 0.1em;
}
#top .lists {
  margin: auto 6.1vw 100px;
}
@media (min-width: 769px) {
  #top .lists {
    margin: auto 11.92vw 110px;
  }
}
#top .lists__items {
  display: grid;
  gap: 100px;
}
@media (min-width: 769px) {
  #top .lists__items {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.37vw;
  }
}
@media (min-width: 769px) {
  #top .lists__items .item {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    gap: 0px;
  }
}
#top .lists__items .item .thumbnail {
  margin-bottom: 24px;
  width: 100%;
  aspect-ratio: 1.59/1;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 769px) {
  #top .lists__items .item .thumbnail {
    aspect-ratio: 1.91/1;
  }
}
#top .lists__items .item .title {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.87em;
  letter-spacing: 0.2em;
  color: #095AAB;
}
@media (min-width: 769px) {
  #top .lists__items .item .title {
    margin: auto 0;
    font-size: 20px;
    line-height: 1.5em;
  }
}
#top .lists__items .item .excerpt {
  margin-top: 16px;
  margin-bottom: 32px;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.83em;
  letter-spacing: 0.1em;
  color: #095AAB;
}
@media (min-width: 769px) {
  #top .lists__items .item .excerpt {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }
}
#top .lists__items .item .view-more-button {
  width: 216px;
  margin-left: 0;
  padding: 7px 0;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 6px;
}
#top .lists__items .item .view-more-button span {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.37em;
  letter-spacing: 0.1em;
}
@media (min-width: 769px) {
  #top .greeting {
    margin-bottom: 152px;
  }
}
@media (min-width: 769px) {
  #top .greeting__contents {
    display: flex;
    align-items: center;
    gap: 2.43vw;
  }
}
#top .greeting__contents .content {
  padding: 78px 6.15vw 116px;
  background-color: #095AAB;
}
@media (min-width: 769px) {
  #top .greeting__contents .content {
    padding: 7.77vw 3.64vw 4.58vw 10.41vw;
  }
}
#top .greeting__contents .content .head {
  margin-bottom: 46px;
  display: inline-flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 769px) {
  #top .greeting__contents .content .head {
    margin-bottom: 42px;
  }
}
#top .greeting__contents .content .head h2 {
  font-weight: 400;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}
@media (min-width: 769px) {
  #top .greeting__contents .content .head h2 {
    font-size: 36px;
  }
}
#top .greeting__contents .content .head hr {
  width: 77.43vw;
  height: 2px;
  margin: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  background-color: #FFFFFF;
}
@media (min-width: 769px) {
  #top .greeting__contents .content .head hr {
    width: min(17.36vw, 300px);
  }
}
#top .greeting__contents .content p {
  font-weight: 400;
  font-size: 12px;
  line-height: 2.91em;
  letter-spacing: 0.12em;
  color: #FFFFFF;
}
@media (min-width: 769px) {
  #top .greeting__contents .content p {
    font-size: clamp(12px, 0.55rem + 0.42vw, 16px);
    line-height: 2.75em;
    letter-spacing: 0.1em;
  }
}
#top .greeting__contents .content ul {
  list-style-type: disc;
  list-style-position: inside;
}
#top .greeting__contents .content ul li {
  font-weight: 400;
  font-size: 12px;
  line-height: 2.91em;
  letter-spacing: 0.12em;
  color: #FFFFFF;
}
@media (min-width: 769px) {
  #top .greeting__contents .content ul li {
    font-size: clamp(12px, 0.55rem + 0.42vw, 16px);
    line-height: 2.75em;
    letter-spacing: 0.1em;
  }
}
#top .greeting__contents .content .view-more-button {
  width: 88.11%;
  margin: auto;
  margin-top: 36px;
  padding: 21px 0 17px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
}
@media (min-width: 769px) {
  #top .greeting__contents .content .view-more-button {
    width: 295px;
    margin: 36px 0 auto;
  }
}
#top .greeting__contents .content .view-more-button span {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.22em;
  letter-spacing: 0.1em;
}
#top .greeting__contents .img {
  display: none;
}
@media (min-width: 769px) {
  #top .greeting__contents .img {
    flex-shrink: 0;
    display: block;
    width: 47.16vw;
    height: auto;
  }
}
#top .greeting__gray-bg {
  width: 100%;
  height: 110px;
  background-color: #EAEAEA;
}
@media (min-width: 769px) {
  #top .greeting__gray-bg {
    height: 444px;
    margin-top: -339px;
  }
}
#top .individual {
  padding: 78px 6.15vw 76px;
  background-color: #095AAB;
}
@media (min-width: 769px) {
  #top .individual {
    padding: 60px 10.41vw;
  }
}
#top .individual .head {
  margin-bottom: 46px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 769px) {
  #top .individual .head {
    margin-bottom: 52px;
    gap: 34px;
  }
}
#top .individual .head h2 {
  font-weight: 400;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}
@media (min-width: 769px) {
  #top .individual .head h2 {
    font-size: 36px;
    text-align: center;
  }
}
#top .individual .head hr {
  width: 100%;
  height: 2px;
  margin: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  background-color: #FFFFFF;
}
#top .individual .text {
  margin-bottom: 50px;
  font-weight: 400;
  font-size: 15px;
  line-height: 2.46em;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}
@media (min-width: 769px) {
  #top .individual .text {
    margin-bottom: 40px;
    font-size: clamp(16px, 0.8rem + 0.42vw, 20px);
    line-height: 2.25em;
    letter-spacing: 0.2em;
    text-align: center;
  }
}
#top .individual .view-more-button {
  width: 88.11%;
  margin: auto;
  padding: 21px 0 17px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
}
@media (min-width: 769px) {
  #top .individual .view-more-button {
    width: 295px;
    margin: 36px auto auto;
  }
}
#top .individual .view-more-button span {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.22em;
  letter-spacing: 0.1em;
}
#top .qa {
  margin-top: 109px;
  margin-bottom: 129px;
  padding: 0 6.1vw;
}
@media (min-width: 769px) {
  #top .qa {
    margin-top: 152px;
    margin-bottom: 152px;
    padding-left: 10.41vw;
    padding-right: 10.24vw;
  }
}
#top .qa__head {
  margin-bottom: 39px;
  display: inline-flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 769px) {
  #top .qa__head {
    margin-bottom: 52px;
    display: flex;
    gap: 40px;
  }
}
#top .qa__head h2 {
  font-weight: 400;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.1em;
  color: #095AAB;
}
@media (min-width: 769px) {
  #top .qa__head h2 {
    font-size: 36px;
  }
}
#top .qa__head hr {
  width: 77.43vw;
  height: 2px;
  margin: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  background: linear-gradient(to right, #095AAB 0%, #095AAB 50.66%, #D9D9D9 50.66%, #D9D9D9 100%);
}
@media (min-width: 769px) {
  #top .qa__head hr {
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #095AAB 0%, #095AAB 21.89%, #D9D9D9 21.89%, #D9D9D9 100%);
  }
}
#top .qa__contents .items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
#top .qa__contents .items.pc-only {
  display: none;
}
@media (min-width: 769px) {
  #top .qa__contents .items.pc-only {
    display: flex;
  }
}
#top .qa__contents .items.sp-only {
  display: flex;
}
@media (min-width: 769px) {
  #top .qa__contents .items.sp-only {
    display: none;
  }
}
#top .qa__contents .items .item-group {
  display: contents;
}
@media (min-width: 769px) {
  #top .qa__contents .items .item-group {
    display: grid;
    grid-template-columns: auto auto;
    column-gap: 7.4vw;
  }
  #top .qa__contents .items .item-group:nth-of-type(1) {
    justify-content: flex-start;
  }
  #top .qa__contents .items .item-group:nth-of-type(2) {
    justify-content: center;
  }
  #top .qa__contents .items .item-group:nth-of-type(3) {
    justify-content: flex-end;
  }
}
#top .qa__contents .items .item {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 769px) {
  #top .qa__contents .items .item {
    width: 26.73vw;
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 2;
  }
}
#top .qa__contents .items .item .question {
  font-weight: 400;
  font-size: 14px;
  line-height: 2.65em;
  letter-spacing: 0.2em;
  color: #515151;
  border-bottom: 1px solid #095AAB;
}
@media (min-width: 769px) {
  #top .qa__contents .items .item .question {
    font-size: clamp(14px, 0.575rem + 0.63vw, 20px);
    line-height: 2.65em;
    letter-spacing: 0.2em;
  }
}
#top .qa__contents .items .item .answer {
  margin-left: 5px;
  display: flex;
}
#top .qa__contents .items .item .answer span {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.83em;
  letter-spacing: 0.1em;
  color: #095AAB;
}
@media (min-width: 769px) {
  #top .qa__contents .items .item .answer span {
    font-size: clamp(14px, 0.575rem + 0.63vw, 20px);
    line-height: 1.5em;
    letter-spacing: 0.2em;
  }
}
#top .qa__contents .items .item .answer p {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.83em;
  letter-spacing: 0.1em;
  color: #515151;
}
#top .qa__contents .view-more-button {
  width: 88.11%;
  margin: auto;
  margin-top: 36px;
  padding: 21px 0 17px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
}
@media (min-width: 769px) {
  #top .qa__contents .view-more-button {
    width: 295px;
    margin: 60px 0 auto;
  }
}
#top .qa__contents .view-more-button span {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.22em;
  letter-spacing: 0.1em;
}

/* レスポンシブ */
/** example
.element {
    @include fade-in(0.5s, 0.2s, ease-in-out);
}
*/
@keyframes opacityFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#service {
  margin-top: 88px;
  margin-bottom: 100px;
}
@media (min-width: 769px) {
  #service {
    margin-top: 160px;
    margin-bottom: 152px;
  }
}
#service .kv {
  width: 100%;
  margin-bottom: 80px;
  padding: 0 5.12vw;
  position: relative;
}
@media (min-width: 769px) {
  #service .kv {
    margin-bottom: 137px;
    padding: 0 4.16vw;
  }
}
#service .kv__image img {
  width: 100%;
  aspect-ratio: 1/1.26;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 769px) {
  #service .kv__image img {
    aspect-ratio: 2.61/1;
  }
}
#service .kv__message {
  padding: 4.07vw 4.58vw 4.58vw 2.41vw;
  display: flex;
  gap: 8px;
  position: absolute;
  top: 55.63%;
  left: 5.12vw;
  color: #095AAB;
  background-color: #FFFFFF;
  z-index: 10;
  font-size: clamp(20px, 0.654rem + 2.54vw, 30px);
  font-weight: 400;
  line-height: 1.35em;
  letter-spacing: 0.1em;
}
@media (min-width: 769px) {
  #service .kv__message {
    padding: 63px 6.71vw 67px 6.82vw;
    gap: 2.54vw;
    top: 34.74%;
    left: 4.16vw;
    font-size: clamp(24px, 0.9rem + 1.25vw, 36px);
    line-height: 1.72em;
  }
}
#service .kv__message span {
  width: 10px;
  height: 3px;
  margin-top: 0.675em;
  display: inline-block;
  background-color: #095AAB;
  opacity: 0;
  animation: opacityFadeIn 1.5s ease-out 0.3s forwards;
}
@media (min-width: 769px) {
  #service .kv__message span {
    width: 16px;
    height: 4px;
  }
}
#service .kv__message p {
  opacity: 0;
  animation: opacityFadeIn 1.5s ease-out 0.3s forwards;
}
#service .kv__bottom-message {
  position: absolute;
  bottom: 4px;
  right: 5.12vw;
  z-index: 10;
  font-weight: 400;
  font-size: clamp(27px, 0.077rem + 6.87vw, 54px);
  line-height: 0.81em;
  letter-spacing: 0em;
  text-align: right;
  color: #FFFFFF;
  opacity: 0;
  animation: opacityFadeIn 1.5s ease-out 0.3s forwards;
}
@media (min-width: 769px) {
  #service .kv__bottom-message {
    right: 4.16vw;
    font-size: clamp(54px, 0.425rem + 6.15vw, 113px);
    line-height: 0.87em;
  }
}
@media (min-width: 769px) {
  #service .support {
    margin-bottom: 137px;
    position: relative;
    display: flex;
    align-items: center;
    gap: 5.49vw;
  }
}
#service .support__img {
  margin-right: 6.15vw;
  margin-bottom: 52px;
  padding: 30px 18px 30px 38px;
  background-color: #095AAB;
}
@media (min-width: 769px) {
  #service .support__img {
    flex-shrink: 0;
    width: auto;
    margin: 0;
    padding: 2.54vw 2.54vw 2.54vw 10.41vw;
  }
}
#service .support__img img {
  width: 100%;
  height: auto;
  aspect-ratio: 1.5/1;
}
@media (min-width: 769px) {
  #service .support__img img {
    width: 32.11vw;
    aspect-ratio: 1.18/1;
    height: 100%;
    object-fit: cover;
    object-position: center;
  }
}
#service .support__texts {
  margin: auto 6.15vw;
  margin-bottom: 84px;
}
@media (min-width: 769px) {
  #service .support__texts {
    flex-shrink: 0;
    margin: 0;
  }
}
#service .support__texts .head {
  margin-bottom: 27px;
  display: inline-flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 769px) {
  #service .support__texts .head {
    margin-bottom: 52px;
    gap: 13px;
  }
}
#service .support__texts .head h2 {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.54em;
  letter-spacing: 0.1em;
  color: #095AAB;
}
@media (min-width: 769px) {
  #service .support__texts .head h2 {
    font-size: clamp(26px, 1.125rem + 1.04vw, 36px);
  }
}
#service .support__texts .head hr {
  width: 77.43vw;
  height: 2px;
  margin: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  background: linear-gradient(to right, #095AAB 0%, #095AAB 50.66%, #D9D9D9 50.66%, #D9D9D9 100%);
}
@media (min-width: 769px) {
  #service .support__texts .head hr {
    width: 100%;
    height: 3px;
  }
}
#service .support__texts .lists {
  margin-bottom: 46px;
  list-style-type: disc;
  list-style-position: inside;
  font-weight: 400;
  font-size: 15px;
  line-height: 2.46em;
  letter-spacing: 0.1em;
  color: #515151;
}
@media (min-width: 769px) {
  #service .support__texts .lists {
    margin: 0;
    margin-bottom: 77px;
    font-size: 20px;
  }
}
#service .support__texts .label {
  width: 100%;
  display: block;
  padding: 10px 0;
  font-weight: 400;
  font-size: 11px;
  line-height: 1em;
  letter-spacing: 0.2em;
  text-align: center;
  color: #FFFFFF;
  background-color: #095AAB;
  margin-bottom: 20px;
}
#service .support__texts .label:nth-last-of-type(1) {
  margin-bottom: 33px;
}
@media (min-width: 769px) {
  #service .support__texts .label:nth-last-of-type(1) {
    margin-bottom: 0;
  }
}
@media (min-width: 769px) {
  #service .support__texts .label {
    width: 400px;
    font-size: 14px;
  }
}
#service .support__gray-bg {
  width: 100%;
  height: 142px;
  margin-top: -192px;
  background-color: #EAEAEA;
  position: relative;
  z-index: -1;
}
@media (min-width: 769px) {
  #service .support__gray-bg {
    margin-top: 0;
    position: absolute;
    bottom: -137px;
    height: clamp(250px, 22.56vw, 290px);
  }
}
#service .main {
  width: 100%;
  padding: 60px 6.15vw 80px;
  background-color: #095AAB;
}
@media (min-width: 769px) {
  #service .main {
    padding: 108px 9.95vw 364px;
  }
}
#service .main__visualization {
  margin-bottom: 60px;
}
@media (min-width: 769px) {
  #service .main__visualization {
    margin-bottom: 148px;
    display: flex;
    flex-direction: row-reverse;
    gap: 4.68vw;
  }
}
#service .main__visualization .logo {
  width: 100%;
  margin-bottom: 28px;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 2.11/1;
  background-color: #FFFFFF;
  transition-delay: 0s;
}
@media (min-width: 769px) {
  #service .main__visualization .logo {
    flex-shrink: 0;
    width: 35.59vw;
    aspect-ratio: 1.42/1;
    transition-delay: 0.3s;
  }
}
#service .main__visualization .logo img {
  width: 21.02vw;
  height: auto;
}
@media (min-width: 769px) {
  #service .main__visualization .logo img {
    width: 35.44%;
  }
}
#service .main__visualization .texts {
  transition-delay: 0.3s;
}
@media (min-width: 769px) {
  #service .main__visualization .texts {
    transition-delay: 0s;
    flex-grow: 1;
  }
}
#service .main__visualization .texts .head {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 769px) {
  #service .main__visualization .texts .head {
    margin-bottom: 52px;
    gap: 13px;
  }
}
#service .main__visualization .texts .head h2 {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.22em;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}
@media (min-width: 769px) {
  #service .main__visualization .texts .head h2 {
    font-size: clamp(26px, 1.125rem + 1.04vw, 36px);
  }
}
#service .main__visualization .texts .head hr {
  width: 100%;
  height: 2px;
  margin: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  background-color: #FFFFFF;
}
#service .main__visualization .texts p {
  font-weight: 400;
  font-size: 12px;
  line-height: 2.91em;
  letter-spacing: 0.12em;
  color: #FFFFFF;
}
@media (min-width: 769px) {
  #service .main__visualization .texts p {
    font-size: clamp(12px, 0.55rem + 0.42vw, 16px);
    line-height: 2.75em;
  }
}
#service .main__visualization .texts p span {
  width: max(340px, 62.2%);
  margin-top: 32px;
  display: block;
  font-weight: 600;
  font-size: 14px;
  line-height: 2em;
  letter-spacing: 0.1em;
  text-align: center;
  color: #095AAB;
  background-color: #FFFFFF;
}
#service .main__what-i-can-do {
  margin-bottom: 60px;
}
@media (min-width: 769px) {
  #service .main__what-i-can-do {
    margin-bottom: 94px;
  }
}
#service .main__what-i-can-do .head {
  margin-bottom: 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 769px) {
  #service .main__what-i-can-do .head {
    margin-bottom: 52px;
    gap: 13px;
  }
}
#service .main__what-i-can-do .head h2 {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.22em;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}
@media (min-width: 769px) {
  #service .main__what-i-can-do .head h2 {
    font-size: clamp(26px, 1.125rem + 1.04vw, 36px);
  }
}
#service .main__what-i-can-do .head hr {
  width: 100%;
  height: 2px;
  margin: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  background-color: #FFFFFF;
}
@media (min-width: 769px) {
  #service .main__what-i-can-do .head hr {
    width: 38.88vw;
  }
}
#service .main__what-i-can-do .items {
  display: flex;
  flex-direction: column;
  gap: 45px;
}
@media (min-width: 769px) {
  #service .main__what-i-can-do .items {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4.68vw;
  }
}
#service .main__what-i-can-do .items .item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 769px) {
  #service .main__what-i-can-do .items .item {
    gap: 34px;
  }
}
#service .main__what-i-can-do .items .item p {
  width: 79.74vw;
  padding: 16px 0;
  display: inline-block;
  font-weight: 600;
  font-size: 21px;
  line-height: 1em;
  letter-spacing: 0.1em;
  text-align: center;
  color: #095AAB;
  background-color: #FFFFFF;
}
@media (min-width: 769px) {
  #service .main__what-i-can-do .items .item p {
    width: 100%;
    font-size: clamp(20px, 0.9rem + 0.73vw, 27px);
  }
}
#service .main__what-i-can-do .items .item ul {
  margin-left: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 769px) {
  #service .main__what-i-can-do .items .item ul {
    gap: 20px;
  }
}
#service .main__what-i-can-do .items .item ul li {
  font-weight: 600;
  font-size: 16px;
  line-height: 2.75em;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}
#service .main__figure {
  margin-bottom: 62px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
@media (min-width: 769px) {
  #service .main__figure {
    flex-direction: row;
  }
}
#service .main__figure .youtube {
  width: 100%;
  aspect-ratio: 1.5/1;
  color: #095AAB;
  background-color: #FFFFFF;
}
@media (min-width: 769px) {
  #service .main__figure .youtube {
    flex-grow: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 400;
    font-size: 30px;
    line-height: 1.33em;
    letter-spacing: 0;
    text-align: center;
  }
}
#service .main__figure .youtube a {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#service .main__figure .youtube a img {
  width: 61.67%;
  height: auto;
}
#service .main__figure .youtube a p {
  font-weight: 600;
  font-size: 21px;
  line-height: 2.1em;
  letter-spacing: 0.1em;
  color: #231815;
}
#service .main__figure .image {
  width: 100%;
  height: auto;
  padding: 17px 10px 20px;
  background-color: #FFFFFF;
}
@media (min-width: 769px) {
  #service .main__figure .image {
    width: 42.7vw;
    padding: 62px 19px;
  }
}
#service .main__view-more-button {
  width: 88.11%;
  margin: auto;
  padding: 21px 0 17px;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 10px;
}
@media (min-width: 769px) {
  #service .main__view-more-button {
    width: 295px;
    margin-left: 0;
  }
}
#service .main__view-more-button span {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.22em;
  letter-spacing: 0.1em;
}

/* レスポンシブ */
/** example
.element {
    @include fade-in(0.5s, 0.2s, ease-in-out);
}
*/
@keyframes opacityFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#company {
  margin-top: 88px;
  margin-bottom: 200px;
}
@media (min-width: 769px) {
  #company {
    margin-top: 160px;
  }
}
#company .kv {
  width: 100%;
  margin-bottom: 52px;
  padding: 0 6.15vw;
  position: relative;
}
@media (min-width: 769px) {
  #company .kv {
    margin-bottom: 80px;
    padding: 0 4.16vw;
  }
}
#company .kv__image img {
  width: 100%;
  aspect-ratio: 1/1.26;
  object-fit: cover;
  object-position: 80% 50%;
}
@media (min-width: 769px) {
  #company .kv__image img {
    aspect-ratio: 1.78/1;
    object-position: center;
  }
}
#company .kv__message {
  width: 79.14vw;
  padding: 20px 36px 20px 2.41vw;
  display: flex;
  gap: 8px;
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 8px;
  top: 48.19%;
  left: 6.15vw;
  color: #095AAB;
  background-color: #FFFFFF;
  z-index: 10;
}
@media (min-width: 769px) {
  #company .kv__message {
    width: auto;
    padding: 74px 36px 56px 122px;
    gap: 2.54vw;
    top: 20.83%;
    left: 4.16vw;
  }
}
#company .kv__message .top {
  display: flex;
  gap: 8px;
  font-size: clamp(20px, 0.654rem + 2.54vw, 30px);
  font-weight: 400;
  line-height: 1.35em;
  letter-spacing: 0.1em;
  opacity: 0;
  animation: opacityFadeIn 1.5s ease-out 0.3s forwards;
}
@media (min-width: 769px) {
  #company .kv__message .top {
    font-size: clamp(24px, 0.9rem + 1.25vw, 36px);
  }
}
#company .kv__message .top span {
  width: 10px;
  height: 3px;
  margin-top: 0.675em;
  display: inline-block;
  background-color: #095AAB;
}
@media (min-width: 769px) {
  #company .kv__message .top span {
    width: 16px;
    height: 4px;
  }
}
#company .kv__message .bottom {
  margin-left: 18px;
  font-size: clamp(9px, 0.384rem + 0.76vw, 12px);
  font-weight: 400;
  line-height: 1.66em;
  letter-spacing: 0.1em;
  opacity: 0;
  animation: opacityFadeIn 1.5s ease-out 0.3s forwards;
}
@media (min-width: 769px) {
  #company .kv__message .bottom {
    margin-left: 0;
    font-size: clamp(14px, 0.625rem + 0.52vw, 19px);
  }
}
#company .kv__message span {
  width: 10px;
  height: 3px;
  margin-top: 0.675em;
  display: inline-block;
  background-color: #095AAB;
  opacity: 0;
  animation: opacityFadeIn 1.5s ease-out 0.3s forwards;
}
@media (min-width: 769px) {
  #company .kv__message span {
    width: 16px;
    height: 4px;
  }
}
#company .kv__message p {
  opacity: 0;
  animation: opacityFadeIn 1.5s ease-out 0.3s forwards;
}
#company .background {
  width: 100%;
  margin-bottom: 80px;
  padding: 0 6.15vw;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 769px) {
  #company .background {
    margin-bottom: 70px;
    flex-direction: row-reverse;
    align-items: flex-start;
    padding: 0;
    gap: 7.17vw;
  }
}
#company .background__img {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  aspect-ratio: 2.1/1;
  background-color: #095AAB;
  transition-delay: 0s;
}
@media (min-width: 769px) {
  #company .background__img {
    flex-shrink: 0;
    width: 49.65vw;
    aspect-ratio: 1.74/1;
    transition-delay: 0.3s;
  }
}
#company .background__img img {
  width: 20vw;
  height: auto;
}
@media (min-width: 769px) {
  #company .background__img img {
    width: 13.77vw;
  }
}
#company .background__texts {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 42px;
  transition-delay: 0.3s;
}
@media (min-width: 769px) {
  #company .background__texts {
    margin-left: 10.59vw;
    gap: 52px;
    transition-delay: 0s;
  }
}
#company .background__texts .head {
  display: inline-flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 769px) {
  #company .background__texts .head {
    gap: 34px;
  }
}
#company .background__texts .head h2 {
  font-weight: 400;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.1em;
  color: #095AAB;
}
@media (min-width: 769px) {
  #company .background__texts .head h2 {
    font-size: clamp(24px, 0.9rem + 1.25vw, 36px);
  }
}
#company .background__texts .head hr {
  width: 77.43vw;
  height: 2px;
  margin: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  background: linear-gradient(to right, #095AAB 0%, #095AAB 50.66%, #D9D9D9 50.66%, #D9D9D9 100%);
}
@media (min-width: 769px) {
  #company .background__texts .head hr {
    width: 100%;
    height: 3px;
  }
}
#company .background__texts p {
  font-weight: 400;
  font-size: 13px;
  line-height: 2.76em;
  letter-spacing: 0.12em;
  color: #095AAB;
}
@media (min-width: 769px) {
  #company .background__texts p {
    font-size: clamp(14px, 0.625rem + 0.52vw, 19px);
    line-height: 2.31em;
    letter-spacing: 0.1em;
  }
}
#company .issue-recognition {
  width: 100%;
  margin-bottom: 110px;
  padding-top: 40px;
  position: relative;
}
@media (min-width: 769px) {
  #company .issue-recognition {
    margin-bottom: 260px;
    padding-top: 230px;
  }
}
#company .issue-recognition__gray-bg {
  width: 100%;
  aspect-ratio: 1.85/1;
  background-color: #EAEAEA;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
@media (min-width: 769px) {
  #company .issue-recognition__gray-bg {
    aspect-ratio: 2.73/1;
  }
}
#company .issue-recognition__img {
  width: 77.94vw;
  height: auto;
  margin: 0 auto 30px;
  display: block;
  transition-delay: 0s;
}
@media (min-width: 769px) {
  #company .issue-recognition__img {
    width: 47.91vw;
    margin: 0;
    position: absolute;
    bottom: 95px;
    right: 70px;
    z-index: 10;
    transition-delay: 0.3s;
  }
}
#company .issue-recognition__texts {
  width: 100%;
  padding: 86px 6.15vw 58px;
  background-color: #095AAB;
  transition-delay: 0.3s;
}
@media (min-width: 769px) {
  #company .issue-recognition__texts {
    width: 54vw;
    padding: 112px 10.06vw 95px;
    transition-delay: 0s;
  }
}
#company .issue-recognition__texts .head {
  margin-bottom: 46px;
  display: inline-flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 769px) {
  #company .issue-recognition__texts .head {
    margin-bottom: 52px;
    gap: 34px;
  }
}
#company .issue-recognition__texts .head h2 {
  font-weight: 400;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}
@media (min-width: 769px) {
  #company .issue-recognition__texts .head h2 {
    font-size: clamp(24px, 0.9rem + 1.25vw, 36px);
  }
}
#company .issue-recognition__texts .head hr {
  width: 77.43vw;
  height: 2px;
  margin: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  background-color: #FFFFFF;
}
@media (min-width: 769px) {
  #company .issue-recognition__texts .head hr {
    width: min(17.36vw, 300px);
    height: 3px;
  }
}
#company .issue-recognition__texts p {
  font-weight: 400;
  font-size: 13px;
  line-height: 2.91em;
  letter-spacing: 0.12em;
  color: #FFFFFF;
}
@media (min-width: 769px) {
  #company .issue-recognition__texts p {
    font-size: clamp(12px, 0.55rem + 0.42vw, 16px);
    line-height: 2.75em;
    letter-spacing: 0.1em;
  }
}
#company .thought {
  width: 100%;
  margin-bottom: 110px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 769px) {
  #company .thought {
    margin-bottom: 220px;
    flex-direction: row;
    align-items: center;
    gap: 6.53vw;
  }
}
#company .thought__img {
  width: 100%;
  aspect-ratio: 1.5/1;
  object-fit: cover;
  object-position: center;
  display: block;
}
@media (min-width: 769px) {
  #company .thought__img {
    width: 50.75vw;
  }
}
#company .thought__texts {
  width: 100%;
  padding: 0 6.15vw;
  display: flex;
  flex-direction: column;
  gap: 46px;
}
@media (min-width: 769px) {
  #company .thought__texts {
    margin-right: 6.59vw;
    padding: 0;
    gap: 52px;
  }
}
#company .thought__texts .head {
  display: inline-flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 769px) {
  #company .thought__texts .head {
    gap: 34px;
  }
}
#company .thought__texts .head h2 {
  font-weight: 400;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.1em;
  color: #095AAB;
}
@media (min-width: 769px) {
  #company .thought__texts .head h2 {
    font-size: clamp(24px, 0.9rem + 1.25vw, 36px);
  }
}
#company .thought__texts .head hr {
  width: 77.43vw;
  height: 2px;
  margin: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  background: linear-gradient(to right, #095AAB 0%, #095AAB 50.66%, #D9D9D9 50.66%, #D9D9D9 100%);
}
@media (min-width: 769px) {
  #company .thought__texts .head hr {
    width: 100%;
    height: 3px;
  }
}
#company .thought__texts p {
  font-weight: 400;
  font-size: 13px;
  line-height: 2.76em;
  letter-spacing: 0.12em;
  color: #095AAB;
}
@media (min-width: 769px) {
  #company .thought__texts p {
    font-size: clamp(12px, 0.55rem + 0.42vw, 16px);
    line-height: 2.31em;
    letter-spacing: 0.1em;
  }
}
#company .mvv {
  width: 100%;
  padding: 86px 6.15vw 58px;
  background-color: #095AAB;
}
#company .mvv .head {
  margin-bottom: 78px;
  display: inline-flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 769px) {
  #company .mvv .head {
    margin-bottom: 52px;
    gap: 34px;
  }
}
#company .mvv .head h2 {
  font-weight: 400;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}
@media (min-width: 769px) {
  #company .mvv .head h2 {
    font-size: clamp(24px, 0.9rem + 1.25vw, 36px);
  }
}
#company .mvv .head hr {
  width: 77.43vw;
  height: 2px;
  margin: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  background-color: #FFFFFF;
}
@media (min-width: 769px) {
  #company .mvv .head hr {
    width: min(38.88vw, 672px);
    height: 3px;
  }
}
#company .mvv .items {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media (min-width: 769px) {
  #company .mvv .items {
    gap: 60px;
  }
}
#company .mvv .items .item {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
@media (min-width: 769px) {
  #company .mvv .items .item {
    gap: 28px;
  }
}
#company .mvv .items .item__title {
  width: 79.74vw;
  padding: 16px 0;
  display: block;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.2em;
  letter-spacing: 0.1em;
  text-align: center;
  color: #095AAB;
  background-color: #FFFFFF;
}
@media (min-width: 769px) {
  #company .mvv .items .item__title {
    width: 312px;
    font-size: clamp(20px, 0.9rem + 0.73vw, 27px);
  }
}
#company .mvv .items .item__title span {
  font-size: 11px;
  line-height: 1.2em;
  letter-spacing: 0.1em;
}
@media (min-width: 769px) {
  #company .mvv .items .item__title span {
    font-size: 15px;
  }
}
#company .mvv .items .item__contents {
  display: flex;
  flex-direction: column;
  gap: 30px;
}
@media (min-width: 769px) {
  #company .mvv .items .item__contents {
    display: grid;
    justify-content: start;
    gap: 16px;
  }
}
#company .mvv .items .item__contents div {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
@media (min-width: 769px) {
  #company .mvv .items .item__contents div {
    margin-left: 1.21vw;
    display: inline-grid;
    align-items: center;
    grid-template-columns: subgrid;
    grid-column: span 2;
    gap: 2.71vw;
  }
}
#company .mvv .items .item__contents h4 {
  font-weight: 400;
  font-size: 28px;
  line-height: 1.85em;
  letter-spacing: 0.1em;
  color: #FFFFFF;
}
@media (min-width: 769px) {
  #company .mvv .items .item__contents h4 {
    font-size: clamp(26px, 1.125rem + 1.04vw, 36px);
    line-height: 1.72em;
  }
}
#company .mvv .items .item__contents p {
  font-weight: 400;
  font-size: 12px;
  line-height: 1.87em;
  letter-spacing: 0.2em;
  color: #FFFFFF;
}
@media (min-width: 769px) {
  #company .mvv .items .item__contents p {
    font-size: clamp(14px, 0.575rem + 0.63vw, 20px);
    line-height: 1.5em;
    letter-spacing: 0.1em;
  }
}
#company .info {
  width: 100%;
  padding: 170px 6.15vw 0;
  display: flex;
  flex-direction: column;
  gap: 46px;
}
@media (min-width: 769px) {
  #company .info {
    padding: 220px 10.41vw 232px;
    gap: 40px;
  }
}
#company .info .head {
  display: inline-flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 769px) {
  #company .info .head {
    gap: 34px;
  }
}
#company .info .head h2 {
  font-weight: 400;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.1em;
  color: #095AAB;
}
@media (min-width: 769px) {
  #company .info .head h2 {
    font-size: clamp(24px, 0.9rem + 1.25vw, 36px);
  }
}
#company .info .head hr {
  width: 77.43vw;
  height: 2px;
  margin: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  background: linear-gradient(to right, #095AAB 0%, #095AAB 50.66%, #D9D9D9 50.66%, #D9D9D9 100%);
}
@media (min-width: 769px) {
  #company .info .head hr {
    width: 511px;
    height: 3px;
  }
}
#company .info .items {
  display: grid;
  gap: 16px;
}
@media (min-width: 769px) {
  #company .info .items {
    justify-content: start;
    gap: 40px;
  }
}
#company .info .items .item {
  display: grid;
  gap: 16px;
}
@media (min-width: 769px) {
  #company .info .items .item {
    grid-template-columns: subgrid;
    grid-column: span 3;
    gap: 52px;
  }
}
#company .info .items .item h4 {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.19em;
  letter-spacing: 0.1em;
  color: #095AAB;
}
@media (min-width: 769px) {
  #company .info .items .item h4 {
    font-size: 19px;
    line-height: 1.68em;
  }
}
#company .info .items .item p,
#company .info .items .item a {
  font-weight: 400;
  font-size: 12px;
  line-height: 2.67em;
  letter-spacing: 0.1em;
  color: #231815;
}
@media (min-width: 769px) {
  #company .info .items .item p,
  #company .info .items .item a {
    font-size: 19px;
    line-height: 1.68em;
  }
}
#company .info .items .item .item__contents {
  display: block;
}
@media (min-width: 769px) {
  #company .info .items .item .item__contents {
    display: grid;
    grid-template-columns: auto 1fr;
    grid-column: span 2;
    gap: 27px;
  }
}

/* レスポンシブ */
/** example
.element {
    @include fade-in(0.5s, 0.2s, ease-in-out);
}
*/
@keyframes opacityFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#contact {
  padding: 120px 0 200px;
}
@media (min-width: 769px) {
  #contact {
    padding: 253px 0 240px;
  }
}
#contact .head {
  width: 77.43vw;
  margin: 0 6.15vw 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 769px) {
  #contact .head {
    width: 79.28vw;
    margin: auto auto 80px;
    gap: 34px;
  }
}
#contact .head h1 {
  font-weight: 400;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.1em;
  color: #095AAB;
}
@media (min-width: 769px) {
  #contact .head h1 {
    font-size: 36px;
  }
}
#contact .head hr {
  width: 100%;
  height: 2px;
  margin: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  background: linear-gradient(to right, #095AAB 0%, #095AAB 50.66%, #D9D9D9 50.66%, #D9D9D9 100%);
}
@media (min-width: 769px) {
  #contact .head hr {
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #095AAB 0%, #095AAB 21.82%, #D9D9D9 21.82%, #D9D9D9 100%);
  }
}
#contact .main .contact-top {
  width: 100%;
  margin-bottom: 60px;
  padding: 40px 11.02vw;
  background-color: #095AAB;
  color: #fff;
}
@media (min-width: 769px) {
  #contact .main .contact-top {
    width: 68.72vw;
    margin: auto auto 34px;
    padding: 90px 5.46vw;
  }
}
#contact .main .contact-top .label-wrapper {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 769px) {
  #contact .main .contact-top .label-wrapper {
    flex-direction: row;
    align-items: center;
    gap: 24px;
  }
}
#contact .main .contact-top .label-wrapper p {
  font-weight: 600;
  font-size: 18px;
  line-height: 1em;
  letter-spacing: 0.1em;
}
@media (min-width: 769px) {
  #contact .main .contact-top .label-wrapper p {
    font-size: 26px;
    line-height: 1.69em;
  }
}
#contact .main .contact-top .label-wrapper .small {
  display: inline-block;
  font-weight: 400;
  font-size: 10px;
  line-height: 1em;
  letter-spacing: 0.1em;
}
@media (min-width: 769px) {
  #contact .main .contact-top .label-wrapper .small {
    font-size: 16px;
    line-height: 2.75em;
  }
}
#contact .main .contact-top select {
  width: 100%;
  height: 50px;
  padding: 6px;
  font-weight: 400;
  color: #000000;
  border: 1px solid #000000;
  background-color: #fff;
  background-image: url(../images/select-arrow.svg);
  background-size: 14px auto;
  background-position: right 14px center;
}
#contact .main .contact-main {
  width: 77.94vw;
  margin: auto;
}
@media (min-width: 769px) {
  #contact .main .contact-main {
    width: 56.88vw;
  }
}
#contact .main .contact-main .wpcf7-form-control-wrap {
  display: inline-block;
  margin-top: 16px;
  margin-bottom: 30px;
}
#contact .main .contact-main label {
  display: block;
  font-weight: 400;
  font-size: 16px;
  line-height: 1em;
  letter-spacing: 0.1em;
  color: #095AAB;
}
@media (min-width: 769px) {
  #contact .main .contact-main label:has(input[type=text]), #contact .main .contact-main label:has(input[type=email]), #contact .main .contact-main label:has(input[type=tel]), #contact .main .contact-main label:has(textarea) {
    display: flex;
    flex-direction: column;
  }
}
#contact .main .contact-main input[type=text],
#contact .main .contact-main input[type=email],
#contact .main .contact-main input[type=tel] {
  width: 100%;
  height: 50px;
  padding: 6px;
  border: 1px solid #000000;
}
#contact .main .contact-main .wpcf7-list-item:has(input[type=radio]).first {
  margin: 0;
}
#contact .main .contact-main .wpcf7-list-item:has(input[type=radio]) label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #000;
}
#contact .main .contact-main .wpcf7-list-item:has(input[type=radio]) input[type=radio] {
  width: 20px;
}
#contact .main .contact-main .wpcf7-list-item:has(input[type=checkbox]) {
  margin: 0;
}
#contact .main .contact-main .wpcf7-list-item:has(input[type=checkbox]) label {
  display: flex;
  align-items: stretch;
  gap: 8px;
  color: #000;
}
#contact .main .contact-main .wpcf7-list-item:has(input[type=checkbox]) input[type=checkbox] {
  width: 18px;
  height: 18px;
}
#contact .main .contact-main .wpcf7-list-item:has(input[type=checkbox]) .wpcf7-list-item-label {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.42em;
  letter-spacing: 0;
}
#contact .main .contact-main textarea {
  width: 100%;
  height: 200px;
  padding: 6px;
  border: 1px solid #000000;
}
#contact .main .contact-main .caution {
  font-weight: 300;
  font-size: 10px;
  line-height: 2em;
  letter-spacing: 0%;
  color: #000;
}
@media (min-width: 769px) {
  #contact .main .contact-main .caution {
    font-size: 12px;
    line-height: 1.67em;
  }
}
#contact .main .contact-main .caution a {
  text-decoration: underline;
  color: #000;
}
#contact .main .contact-main p:has(input[type=submit]) {
  position: relative;
}
#contact .main .contact-main .wpcf7-submit {
  width: 100%;
  height: 60px;
  margin-top: 60px;
  font-weight: 300;
  font-size: 18px;
  line-height: 1.22em;
  letter-spacing: 0.1em;
  border: 1px solid #095AAB;
  color: #095AAB;
  background-color: #fff;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: all 0.3s ease;
}
#contact .main .contact-main .wpcf7-submit:hover {
  border: 1px solid #fff;
  color: #fff;
  background-color: #095AAB;
}
#contact .main .contact-main .wpcf7-submit:hover ~ .submit-icon svg path {
  stroke: #fff;
}
#contact .main .contact-main .submit-icon {
  position: absolute;
  top: 33px;
  left: calc(50% + 68px);
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  z-index: 10;
  transition: all 0.3s ease;
}
#contact .main .contact-main .submit-icon svg {
  width: 100%;
  height: 100%;
}
#contact .wpcf7-response-output {
  width: 77.94vw;
  margin: 0 auto;
}
@media (min-width: 769px) {
  #contact .wpcf7-response-output {
    width: 56.88vw;
  }
}

/* レスポンシブ */
/** example
.element {
    @include fade-in(0.5s, 0.2s, ease-in-out);
}
*/
@keyframes opacityFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#privacy-policy {
  padding: 120px 11.28vw 200px 6.15vw;
}
@media (min-width: 769px) {
  #privacy-policy {
    padding: 253px 10.35vw 240px;
  }
}
#privacy-policy .head {
  width: 77.43vw;
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 769px) {
  #privacy-policy .head {
    width: 100%;
    margin-bottom: 52px;
    gap: 34px;
  }
}
#privacy-policy .head h1 {
  font-weight: 400;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.1em;
  color: #095AAB;
}
@media (min-width: 769px) {
  #privacy-policy .head h1 {
    font-size: 36px;
  }
}
#privacy-policy .head hr {
  width: 100%;
  height: 2px;
  margin: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  background: linear-gradient(to right, #095AAB 0%, #095AAB 50.66%, #D9D9D9 50.66%, #D9D9D9 100%);
}
@media (min-width: 769px) {
  #privacy-policy .head hr {
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #095AAB 0%, #095AAB 21.82%, #D9D9D9 21.82%, #D9D9D9 100%);
  }
}
#privacy-policy .main p {
  font-weight: 400;
  font-size: 12px;
  line-height: 2em;
  letter-spacing: 0.2em;
  color: #515151;
}
@media (min-width: 769px) {
  #privacy-policy .main p {
    font-size: 19px;
    line-height: 1.56em;
    letter-spacing: 0.1em;
  }
}
#privacy-policy .main p a {
  color: #515151;
}
#privacy-policy .main > div {
  margin-bottom: 60px;
}
#privacy-policy .main > div .label {
  margin-bottom: 24px;
  font-weight: 400;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.1em;
  color: #0B0B0B;
}
@media (min-width: 769px) {
  #privacy-policy .main > div .label {
    margin-bottom: 44px;
    font-size: 36px;
  }
}

/* レスポンシブ */
/** example
.element {
    @include fade-in(0.5s, 0.2s, ease-in-out);
}
*/
@keyframes opacityFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#archive-articles {
  margin-top: 88px;
  margin-bottom: 138px;
}
@media (min-width: 769px) {
  #archive-articles {
    margin-top: 160px;
  }
}
#archive-articles .kv {
  width: 100%;
  margin-bottom: 80px;
  padding: 0 5.12vw;
  position: relative;
}
@media (min-width: 769px) {
  #archive-articles .kv {
    margin-bottom: 137px;
    padding: 0 4.16vw;
  }
}
#archive-articles .kv__image img {
  width: 100%;
  aspect-ratio: 1/1.26;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 769px) {
  #archive-articles .kv__image img {
    aspect-ratio: 2.61/1;
  }
}
#archive-articles .kv__message {
  padding: 4.07vw 4.58vw 4.58vw 2.41vw;
  display: flex;
  gap: 8px;
  position: absolute;
  display: flex;
  flex-direction: column;
  gap: 8px;
  top: 63.28%;
  left: 5.12vw;
  color: #095AAB;
  background-color: #FFFFFF;
  z-index: 10;
}
@media (min-width: 769px) {
  #archive-articles .kv__message {
    padding: 4.68vw 6.71vw 3.58vw 6.82vw;
    gap: 2.54vw;
    top: 30.57%;
    left: 4.16vw;
  }
}
#archive-articles .kv__message .top {
  display: flex;
  gap: 8px;
  font-size: clamp(20px, 0.654rem + 2.54vw, 30px);
  font-weight: 400;
  line-height: 1.35em;
  letter-spacing: 0.1em;
  opacity: 0;
  animation: opacityFadeIn 1.5s ease-out 0.3s forwards;
}
@media (min-width: 769px) {
  #archive-articles .kv__message .top {
    font-size: clamp(24px, 0.9rem + 1.25vw, 36px);
  }
}
#archive-articles .kv__message .top span {
  width: 10px;
  height: 3px;
  margin-top: 0.675em;
  display: inline-block;
  background-color: #095AAB;
}
@media (min-width: 769px) {
  #archive-articles .kv__message .top span {
    width: 16px;
    height: 4px;
  }
}
#archive-articles .kv__message .bottom {
  margin-left: 18px;
  font-size: clamp(9px, 0.384rem + 0.76vw, 12px);
  font-weight: 400;
  line-height: 1.66em;
  letter-spacing: 0.1em;
  opacity: 0;
  animation: opacityFadeIn 1.5s ease-out 0.3s forwards;
}
@media (min-width: 769px) {
  #archive-articles .kv__message .bottom {
    margin-left: 0;
    font-size: clamp(14px, 0.625rem + 0.52vw, 19px);
  }
}
#archive-articles .kv__message span {
  width: 10px;
  height: 3px;
  margin-top: 0.675em;
  display: inline-block;
  background-color: #095AAB;
  opacity: 0;
  animation: opacityFadeIn 1.5s ease-out 0.3s forwards;
}
@media (min-width: 769px) {
  #archive-articles .kv__message span {
    width: 16px;
    height: 4px;
  }
}
#archive-articles .kv__message p {
  opacity: 0;
  animation: opacityFadeIn 1.5s ease-out 0.3s forwards;
}
#archive-articles .kv__bottom-message {
  position: absolute;
  bottom: 4px;
  right: 5.12vw;
  z-index: 10;
  font-weight: 400;
  font-size: clamp(27px, 0.077rem + 6.87vw, 54px);
  line-height: 0.81em;
  letter-spacing: 0em;
  text-align: right;
  color: #FFFFFF;
  opacity: 0;
  animation: opacityFadeIn 1.5s ease-out 0.3s forwards;
}
@media (min-width: 769px) {
  #archive-articles .kv__bottom-message {
    right: 4.16vw;
    font-size: clamp(54px, 0.425rem + 6.15vw, 113px);
    line-height: 0.87em;
  }
}
#archive-articles .main {
  width: 100%;
  padding: 0 6.15vw;
}
#archive-articles .main__category {
  margin-bottom: 138px;
}
#archive-articles .main__category .head {
  margin-bottom: 60px;
  display: inline-flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 769px) {
  #archive-articles .main__category .head {
    width: 100%;
    margin-bottom: 52px;
    gap: 13px;
  }
}
#archive-articles .main__category .head h2 {
  font-weight: 400;
  font-size: 22px;
  line-height: 1.54em;
  letter-spacing: 0.1em;
  color: #095AAB;
}
@media (min-width: 769px) {
  #archive-articles .main__category .head h2 {
    font-size: clamp(26px, 1.125rem + 1.04vw, 36px);
  }
}
#archive-articles .main__category .head hr {
  width: 77.43vw;
  height: 2px;
  margin: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  background: linear-gradient(to right, #095AAB 0%, #095AAB 50.66%, #D9D9D9 50.66%, #D9D9D9 100%);
}
@media (min-width: 769px) {
  #archive-articles .main__category .head hr {
    width: 100%;
    height: 3px;
  }
}
#archive-articles .main__category .posts {
  display: grid;
  grid-template-columns: 1fr;
  gap: 100px;
}
@media (min-width: 769px) {
  #archive-articles .main__category .posts {
    margin: auto 12px 80px;
    grid-template-columns: repeat(3, 1fr);
    row-gap: 60px;
    column-gap: 2.37vw;
  }
}
@media (min-width: 769px) {
  #archive-articles .main__category .posts .post {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 4;
    row-gap: 0px;
  }
}
#archive-articles .main__category .posts .post .thumbnail {
  margin-bottom: 24px;
  width: 100%;
  aspect-ratio: 1.59/1;
  object-fit: cover;
  object-position: center;
}
@media (min-width: 769px) {
  #archive-articles .main__category .posts .post .thumbnail {
    aspect-ratio: 1.91/1;
  }
}
#archive-articles .main__category .posts .post .title {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.87em;
  letter-spacing: 0.2em;
  color: #095AAB;
}
@media (min-width: 769px) {
  #archive-articles .main__category .posts .post .title {
    margin: auto 0;
    font-size: 20px;
  }
}
#archive-articles .main__category .posts .post .excerpt {
  margin-top: 16px;
  margin-bottom: 32px;
  font-weight: 400;
  font-size: 12px;
  line-height: 1.83em;
  letter-spacing: 0.1em;
  color: #095AAB;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
@media (min-width: 769px) {
  #archive-articles .main__category .posts .post .excerpt {
    -webkit-line-clamp: 4;
  }
}
#archive-articles .main__category .posts .post .view-more-button {
  width: 216px;
  margin-left: 0;
  padding: 7px 0;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 6px;
  transition: all 0.3s ease;
}
#archive-articles .main__category .posts .post .view-more-button span {
  font-weight: 300;
  font-size: 16px;
  line-height: 1.37em;
  letter-spacing: 0.1em;
}
#archive-articles .main__category .view-more-category-button {
  display: none;
}
@media (min-width: 769px) {
  #archive-articles .main__category .view-more-category-button {
    width: 295px;
    margin: 36px 0 auto;
    padding: 21px 0 17px;
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
  }
}
#archive-articles .main__category .view-more-category-button span {
  font-weight: 300;
  font-size: 18px;
  line-height: 1.22em;
  letter-spacing: 0.1em;
}

/* レスポンシブ */
/** example
.element {
    @include fade-in(0.5s, 0.2s, ease-in-out);
}
*/
@keyframes opacityFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#single-articles {
  width: 100%;
  padding: 88px 6.15vw 200px;
}
@media (min-width: 769px) {
  #single-articles {
    padding: 160px 4.16vw 200px;
  }
}
#single-articles .thumbnail {
  width: 100%;
  height: auto;
  margin-bottom: 34px;
}
@media (min-width: 769px) {
  #single-articles .thumbnail {
    margin-bottom: 132px;
    aspect-ratio: 2.61/1;
  }
}
#single-articles .head {
  margin-bottom: 16px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 769px) {
  #single-articles .head {
    width: min(62.5vw, 1200px);
    margin: 0 auto;
    margin-bottom: 30px;
    gap: 13px;
  }
}
#single-articles .head h1 {
  font-weight: 400;
  font-size: 30px;
  line-height: 1.33em;
  letter-spacing: 0.1em;
  color: #095AAB;
}
@media (min-width: 769px) {
  #single-articles .head h1 {
    font-size: 42px;
    letter-spacing: 0.2em;
  }
}
#single-articles .head hr {
  width: 100%;
  height: 2px;
  margin: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  background: linear-gradient(to right, #095AAB 0%, #095AAB 44.86%, #D9D9D9 44.86%, #D9D9D9 100%);
}
@media (min-width: 769px) {
  #single-articles .head hr {
    width: 100%;
    height: 3px;
  }
}
#single-articles .categories {
  margin-bottom: 60px;
  display: flex;
  justify-content: flex-end;
  gap: 16px;
}
@media (min-width: 769px) {
  #single-articles .categories {
    width: min(62.5vw, 1200px);
    margin: 0 auto;
    margin-bottom: 100px;
  }
}
#single-articles .categories a {
  pointer-events: none;
  font-weight: 600;
  font-size: 14px;
  line-height: 1.87em;
  letter-spacing: 0.2em;
  color: #095AAB;
}
#single-articles .content {
  color: #095AAB;
}
@media (min-width: 769px) {
  #single-articles .content {
    width: min(62.5vw, 1200px);
    margin: 0 auto;
  }
}
#single-articles .content h1 {
  margin-top: 80px;
  margin-bottom: 40px;
  font-weight: 400;
  font-size: 26px;
  line-height: 1.19em;
  letter-spacing: 0.1em;
}
@media (min-width: 769px) {
  #single-articles .content h1 {
    font-size: 36px;
  }
}
#single-articles .content h2 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-weight: 400;
  font-size: 22px;
  line-height: 1.36em;
  letter-spacing: 0.1em;
}
@media (min-width: 769px) {
  #single-articles .content h2 {
    font-size: 27px;
  }
}
#single-articles .content h3 {
  margin-top: 40px;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 19px;
  line-height: 1.57em;
  letter-spacing: 0.1em;
}
@media (min-width: 769px) {
  #single-articles .content h3 {
    font-size: 23px;
    line-height: 1.62em;
  }
}
#single-articles .content h4 {
  margin-top: 20px;
  margin-bottom: 16px;
  font-weight: 600;
  font-size: 16px;
  line-height: 1.88em;
  letter-spacing: 0.1em;
}
@media (min-width: 769px) {
  #single-articles .content h4 {
    font-size: 20px;
  }
}
#single-articles .content p {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.87em;
  letter-spacing: 0.1em;
}
@media (min-width: 769px) {
  #single-articles .content p {
    font-size: clamp(16px, 0.8rem + 0.42vw, 20px);
    line-height: 2.2em;
  }
}
#single-articles .content ul {
  list-style: disc;
  list-style-position: inside;
}
#single-articles .content ul li {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.87em;
  letter-spacing: 0.1em;
}
@media (min-width: 769px) {
  #single-articles .content ul li {
    font-size: clamp(16px, 0.8rem + 0.42vw, 20px);
    line-height: 2.2em;
  }
}
#single-articles .content a {
  font-weight: 400;
  font-size: 16px;
  line-height: 1.87em;
  letter-spacing: 0.1em;
  color: #095AAB;
}
@media (min-width: 769px) {
  #single-articles .content a {
    font-size: clamp(16px, 0.8rem + 0.42vw, 20px);
    line-height: 2.2em;
  }
}
#single-articles .content img {
  width: 100%;
  height: auto;
  margin-top: 20px;
  margin-bottom: 20px;
}

/* レスポンシブ */
/** example
.element {
    @include fade-in(0.5s, 0.2s, ease-in-out);
}
*/
@keyframes opacityFadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#archive-faq {
  width: 87.69vw;
  margin: 0 auto;
  padding: 120px 0 200px;
}
@media (min-width: 769px) {
  #archive-faq {
    width: min(1200px, 79.28vw);
    padding: 253px 0 240px;
  }
}
#archive-faq .head {
  width: 77.43vw;
  margin-bottom: 60px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
@media (min-width: 769px) {
  #archive-faq .head {
    width: 100%;
    margin-bottom: 52px;
    gap: 34px;
  }
}
#archive-faq .head h1 {
  font-weight: 400;
  font-size: 22px;
  line-height: 1em;
  letter-spacing: 0.1em;
  color: #095AAB;
}
@media (min-width: 769px) {
  #archive-faq .head h1 {
    font-size: 36px;
  }
}
#archive-faq .head hr {
  width: 100%;
  height: 2px;
  margin: 0;
  padding: 0;
  box-shadow: none;
  border: none;
  background: linear-gradient(to right, #095AAB 0%, #095AAB 50.66%, #D9D9D9 50.66%, #D9D9D9 100%);
}
@media (min-width: 769px) {
  #archive-faq .head hr {
    width: 100%;
    height: 3px;
    background: linear-gradient(to right, #095AAB 0%, #095AAB 21.82%, #D9D9D9 21.82%, #D9D9D9 100%);
  }
}
#archive-faq .main {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media (min-width: 769px) {
  #archive-faq .main {
    gap: 72px;
  }
}
#archive-faq .main .category h2 {
  width: 54.35vw;
  margin-bottom: 30px;
  padding: 12px 0;
  display: block;
  font-weight: 600;
  font-style: bold;
  font-size: 15px;
  line-height: 1.42em;
  letter-spacing: 10%;
  text-align: center;
  background-color: #095AAB;
  color: #FFFFFF;
}
@media (min-width: 769px) {
  #archive-faq .main .category h2 {
    width: 406px;
    margin-bottom: 52px;
    padding: 16px 0;
    font-size: clamp(20px, 0.9rem + 0.73vw, 27px);
    line-height: 1.25em;
  }
}
#archive-faq .main .faqs {
  display: flex;
  flex-direction: column;
  gap: 36px;
}
@media (min-width: 769px) {
  #archive-faq .main .faqs {
    gap: 44px;
  }
}
#archive-faq .main .faqs .faq {
  font-size: clamp(12px, 0.511rem + 1.02vw, 16px);
  line-height: 2em;
  letter-spacing: 0.2em;
}
@media (min-width: 769px) {
  #archive-faq .main .faqs .faq {
    font-size: clamp(16px, 0.65rem + 0.73vw, 23px);
    line-height: 1.5em;
  }
}
#archive-faq .main .faqs .faq .summary {
  padding-right: 6px;
  padding-bottom: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid #095AAB;
  cursor: pointer;
  position: relative;
}
@media (min-width: 769px) {
  #archive-faq .main .faqs .faq .summary {
    padding-right: 0;
    padding-bottom: 20px;
  }
}
#archive-faq .main .faqs .faq .summary::-webkit-details-marker {
  display: none;
}
#archive-faq .main .faqs .faq .summary::marker {
  display: none;
  content: "";
}
#archive-faq .main .faqs .faq .summary .icon {
  width: 24px;
  height: 24px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (min-width: 769px) {
  #archive-faq .main .faqs .faq .summary .icon {
    width: 40px;
    height: 40px;
  }
}
#archive-faq .main .faqs .faq .summary .icon span {
  width: 100%;
  height: 1.2px;
  display: block;
  background-color: #095AAB;
  position: absolute;
  border-radius: 1px;
  transition: transform 0.3s ease-in-out;
}
@media (min-width: 769px) {
  #archive-faq .main .faqs .faq .summary .icon span {
    height: 2px;
  }
}
#archive-faq .main .faqs .faq .summary .icon span:nth-child(1) {
  transform: rotate(0deg);
}
#archive-faq .main .faqs .faq .summary .icon span:nth-child(2) {
  transform: rotate(90deg);
}
#archive-faq .main .faqs .faq .summary.open .icon span:nth-child(1) {
  transform: rotate(0deg);
}
#archive-faq .main .faqs .faq .summary.open .icon span:nth-child(2) {
  transform: rotate(180deg);
}
#archive-faq .main .faqs .faq .panel {
  transition: block-size 0.5s;
  contain: content;
}
#archive-faq .main .faqs .faq .paner--inner {
  padding: 36px 18px 0;
  display: flex;
}
@media (min-width: 769px) {
  #archive-faq .main .faqs .faq .paner--inner {
    padding: 32px 9.25vw 0 12px;
  }
}
#archive-faq .main .faqs .faq .paner--inner span {
  color: #095AAB;
}/*# sourceMappingURL=style.css.map */