@charset "UTF-8";
* {
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  box-sizing: border-box;
  font: inherit;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  text-decoration: none;
  vertical-align: baseline;
}

html {
  font-size: 16px;
  width: 100%;
  height: 100%;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 16px;
  line-height: 1;
  color: #404040;
  background: #F9F9F9;
  position: relative;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  width: 100%;
  height: 100%;
}
body.is-hidden {
  overflow: hidden;
}

article,
aside,
dialog,
figure,
footer,
header,
main,
menu,
nav,
section {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

hr {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

input,
select {
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

p {
  color: #404040;
}

a {
  text-decoration: none;
}

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

@media print, screen and (min-width:769px) {
  a[href^="tel:"] {
    pointer-events: none;
    cursor: default;
  }
}
sup {
  vertical-align: super;
}

input,
textarea {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  max-width: 100%;
}

input,
select,
textarea {
  letter-spacing: 0.03rem;
}
@media screen and (max-width:768px) {
  input,
  select,
  textarea {
    font-size: 16px !important;
  }
}
input::-moz-placeholder, select::-moz-placeholder, textarea::-moz-placeholder {
  opacity: 1;
  color: #d1d1d1;
}
input::placeholder,
select::placeholder,
textarea::placeholder {
  opacity: 1;
  color: #d1d1d1;
}

button,
input[type=button],
input[type=submit] {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

[id] {
  scroll-margin-top: 100px;
}
@media screen and (max-width:768px) {
  [id] {
    scroll-margin-top: 80px;
  }
}

@media screen and (max-width:768px) {
  .pc {
    display: none !important;
  }
}
@media print, screen and (min-width:769px) {
  .pc {
    display: block;
  }
}

@media screen and (max-width:768px) {
  .sp {
    display: block;
  }
}
@media print, screen and (min-width:769px) {
  .sp {
    display: none !important;
  }
}

.br_pc {
  display: block;
}
@media screen and (max-width:768px) {
  .br_pc {
    display: none;
  }
}

.br_md {
  display: none;
}
@media screen and (max-width:1024px) {
  .br_md {
    display: block;
  }
}

.br_sp {
  display: none;
}
@media screen and (max-width:768px) {
  .br_sp {
    display: block;
  }
}

/* hover animation */
.__opacity05 {
  transition: opacity 0.3s;
}
.__opacity05:hover {
  opacity: 0.5;
}

.__opacity07 {
  transition: opacity 0.3s;
}
.__opacity07:hover {
  opacity: 0.7;
}

/* inview animation */
.is-fade {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s, transform 0.8s;
}

.is-fade.is-inview {
  opacity: 1;
  transform: translateY(0);
  transition-delay: 0.5s;
}

.is-fadeleft {
  opacity: 0;
  transform: translateX(30px);
  transition: opacity 0.8s, transform 0.8s;
}

.is-fadeleft.is-inview {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.5s;
}

.is-faderight {
  opacity: 0;
  transform: translateX(-30px);
  transition: opacity 0.8s, transform 0.8s;
}

.is-faderight.is-inview {
  opacity: 1;
  transform: translateX(0);
  transition-delay: 0.5s;
}

.anime-up {
  animation: showText 1s backwards;
}

.anime-up.displayed span {
  opacity: 0;
}

.anime-up.displayed.is-inview span {
  opacity: 1;
  animation: showText 1s backwards;
  display: inline-block;
}

.anime-up.displayed.is-inview > span {
  overflow: hidden;
}

.anime-up.displayed.is-inview > span > span {
  animation: showTextFade 0.7s backwards;
}

.is-bounce {
  opacity: 0;
  transform: scale(0.3);
  transition: 1.2s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.is-bounce.is-inview {
  opacity: 1;
  transform: scale(1);
}

@keyframes mvcatch {
  0% {
    filter: blur(0.2em);
    opacity: 0;
  }
  50% {
    filter: blur(0.05em);
    opacity: 1;
  }
  100% {
    filter: blur(0);
    opacity: 1;
  }
}
@keyframes infinity_scroll {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(0%);
  }
}
.c_link {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  color: #AD1919;
  border-left: 2px solid #AD1919;
  border-top: 2px solid #AD1919;
  box-sizing: border-box;
  padding: 15px 22px 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
}
.c_link::before {
  content: "";
  width: 12px;
  aspect-ratio: 1;
  background: url(../img/common/ico_triangle.svg) no-repeat center/100%;
}
.c_link:hover {
  opacity: 0.5;
}

.l-page-contents {
  padding-top: 140px;
}
@media screen and (max-width:768px) {
  .l-page-contents {
    padding-top: 64px;
  }
}
.l-page-contents .c-mv__img {
  width: calc(100% - 160px);
  height: 560px;
  margin: 0 80px 45px;
}
@media screen and (max-width:768px) {
  .l-page-contents .c-mv__img {
    width: 100%;
    height: 200px;
    margin: 0 auto 20px;
  }
}
.l-page-contents .c-mv__img.company_img {
  background: url(../img/company/bg_mv.png) no-repeat center/cover;
}
@media screen and (max-width:768px) {
  .l-page-contents .c-mv__img.company_img {
    background: url(../img/company/bg_mv_sp.png) no-repeat center/cover;
  }
}
.l-page-contents .c-mv__img.services_img {
  background: url(../img/services/bg_mv.png) no-repeat center/cover;
}
@media screen and (max-width:768px) {
  .l-page-contents .c-mv__img.services_img {
    background: url(../img/services/bg_mv_sp.png) no-repeat center/cover;
  }
}
.l-page-contents .c-mv__img.strength_img {
  background: url(../img/strength/bg_mv.png) no-repeat center/cover;
}
@media screen and (max-width:768px) {
  .l-page-contents .c-mv__img.strength_img {
    background: url(../img/strength/bg_mv_sp.png) no-repeat center/cover;
  }
}
.l-page-contents .c-mv__img.news_img {
  background: url(../img/news/bg_mv.png) no-repeat center/cover;
}
@media screen and (max-width:768px) {
  .l-page-contents .c-mv__img.news_img {
    background: url(../img/news/bg_mv_sp.png) no-repeat center/cover;
  }
}
.l-page-contents .c-mv__img.contact_img {
  background: url(../img/contact/bg_mv.png) no-repeat center/cover;
}
@media screen and (max-width:768px) {
  .l-page-contents .c-mv__img.contact_img {
    background: url(../img/contact/bg_mv_sp.png) no-repeat center/cover;
  }
}
.l-page-contents .c-mv__img.policy_img {
  background: url(../img/privacy-policy/bg_mv.png) no-repeat center/cover;
}
@media screen and (max-width:768px) {
  .l-page-contents .c-mv__img.policy_img {
    background: url(../img/privacy-policy/bg_mv_sp.png) no-repeat center/cover;
  }
}
.l-page-contents .c-mv .c_ttl {
  font-size: clamp(1rem, 0.392rem + 1.27vw, 1.5rem);
  text-align: center;
  align-items: center;
}
.l-page-contents .c-mv .c_ttl::after {
  font-size: clamp(3rem, 1.785rem + 2.53vw, 4rem);
}
.l-page-contents .c-mv.c-mv-error {
  padding: 100px 0 0;
}
.l-page-contents__inner {
  padding: 150px 0 0;
}
@media screen and (max-width:768px) {
  .l-page-contents__inner {
    padding: 80px 0 0;
  }
}
.l-page-contents__inner .l-page-contents__main {
  margin-bottom: 160px;
}
@media screen and (max-width:768px) {
  .l-page-contents__inner .l-page-contents__main {
    margin-bottom: 80px;
  }
}
.l-page-contents__inner.c-company__container {
  padding: 0 0 55px;
}
@media screen and (max-width:768px) {
  .l-page-contents__inner.c-company__container {
    padding: 0 0 30px;
  }
}
.l-page-contents__inner.c-services__container {
  padding: 0 0 55px;
}
@media screen and (max-width:768px) {
  .l-page-contents__inner.c-services__container {
    padding: 0 0 30px;
  }
}
.l-page-contents .c-pages-catch {
  width: min(1280px, 90%);
  margin: 0 auto 160px;
}
@media screen and (max-width:768px) {
  .l-page-contents .c-pages-catch {
    margin: 0 auto 80px;
  }
}
.l-page-contents .c-pages-catch__ttl {
  font-size: clamp(1.75rem, 0.535rem + 2.53vw, 2.75rem);
  font-weight: 700;
  line-height: 1.9;
  text-align: center;
  margin-bottom: 60px;
}
@media screen and (max-width:415px) {
  .l-page-contents .c-pages-catch__ttl {
    font-size: 1.625rem;
  }
}
.l-page-contents .c-pages-catch__txt {
  text-align: center;
  line-height: 1.9;
}
.l-page-contents .c-strength .c-pages-catch {
  margin: 0 auto 80px;
}

.c_ttl {
  font-size: clamp(0.875rem, 0.782rem + 0.19vw, 1rem);
  font-weight: 700;
  line-height: 1;
  color: #AD1919;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.c_ttl::after {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  font-size: clamp(2.5rem, 2.128rem + 0.78vw, 3rem);
  line-height: 1;
  color: #E93636;
  content: attr(data-en) "";
}
.c_ttl.c_ttl-solo {
  font-size: clamp(2rem, 1.628rem + 0.78vw, 2.5rem);
  font-weight: 500;
}

.c-company {
  position: relative;
  overflow: hidden;
}
.c-company-stroke {
  width: 90%;
  position: absolute;
  bottom: -1px;
  z-index: -1;
}
.c-company-message {
  width: 100%;
  padding: 150px 0 160px;
  margin: 0 auto;
  overflow: hidden;
  position: relative;
}
@media screen and (max-width:768px) {
  .c-company-message {
    padding: 60px 0;
  }
}
.c-company-message__img {
  width: min(320px, 90%);
  margin: 0 auto 45px;
}
@media screen and (max-width:768px) {
  .c-company-message__img {
    width: 240px;
    margin: 0 auto 40px;
  }
}
.c-company-message__txt {
  width: min(960px, 90%);
  font-size: clamp(1rem, 0.848rem + 0.32vw, 1.125rem);
  font-weight: 700;
  line-height: 1.9;
  text-align: center;
  margin: 0 auto 60px;
}
.c-company-message__name {
  font-size: clamp(0.813rem, 0.661rem + 0.32vw, 0.938rem);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 8px;
}
.c-company-message__name::after {
  content: "";
  width: 150px;
  aspect-ratio: 150/40;
  background: url(../img/company/pic_write.svg) no-repeat center/100%;
}
.c-company-overview {
  background: #FDE8E8;
  padding: 80px 0;
}
.c-company-overview .c_ttl {
  text-align: center;
  width: 90%;
  margin: 0 auto 60px;
  align-items: center;
}
.c-company-overview-table {
  width: min(960px, 90%);
  margin: 0 auto 160px;
}
@media screen and (max-width:768px) {
  .c-company-overview-table {
    margin: 0 auto 60px;
  }
}
.c-company-overview-table__block {
  border-bottom: 1px solid #BC8D8D;
  padding: 30px 0;
  box-sizing: border-box;
  display: flex;
  align-items: center;
}
@media screen and (max-width:768px) {
  .c-company-overview-table__block {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
}
.c-company-overview-table__block:first-of-type {
  padding-top: 0;
}
.c-company-overview-table__block .c-company-overview-table__ttl {
  font-size: clamp(0.938rem, 0.862rem + 0.16vw, 1rem);
  line-height: 1.9;
  width: 240px;
}
@media screen and (max-width:768px) {
  .c-company-overview-table__block .c-company-overview-table__ttl {
    font-weight: 700;
    width: 100%;
  }
}
.c-company-overview-table__block .c-company-overview-table__txt {
  font-size: clamp(0.938rem, 0.862rem + 0.16vw, 1rem);
  line-height: 1.9;
  width: calc(100% - 240px);
}
@media screen and (max-width:768px) {
  .c-company-overview-table__block .c-company-overview-table__txt {
    width: 100%;
  }
}
.c-company-overview-table__block .c-company-overview-table__txt .__link {
  color: #404040;
}
.c-company-overview-access {
  width: min(1280px, 90%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 80px;
}
@media screen and (max-width:768px) {
  .c-company-overview-access {
    flex-direction: column-reverse;
    gap: 40px;
  }
}
.c-company-overview-access__map {
  width: 100%;
}
.c-company-overview-access__map .__frame {
  width: 100%;
  aspect-ratio: 800/450;
}
@media screen and (max-width:768px) {
  .c-company-overview-access__info {
    width: 100%;
  }
}
.c-company-overview-access__info .c_ttl {
  align-items: flex-start;
}
@media screen and (max-width:768px) {
  .c-company-overview-access__info .c_ttl {
    width: 100%;
    margin: 0 auto 40px;
  }
}
.c-company-overview-access__txt {
  font-size: clamp(0.938rem, 0.862rem + 0.16vw, 1rem);
  line-height: 1.35;
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.c-company-overview-access__txt .__sub {
  font-size: clamp(1rem, 0.848rem + 0.32vw, 1.125rem);
  font-weight: 700;
  line-height: 1;
}
.c-company-overview-access__btn {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(1rem, 0.848rem + 0.32vw, 1.125rem);
  color: #AD1919;
  display: flex;
  align-items: center;
  gap: 5px;
}
.c-company-overview-access__btn::before {
  content: "";
  width: 14px;
  aspect-ratio: 14/18;
  background: url(../img/common/ico_pin.svg) no-repeat center/100%;
}
.c-company-number {
  width: min(1280px, 90%);
  margin: 160px auto 0;
}
@media screen and (max-width:768px) {
  .c-company-number {
    margin: 80px auto 0;
  }
}
.c-company-number .c_ttl {
  margin-bottom: 60px;
  align-items: center;
}
.c-company-number__inner {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}
@media screen and (max-width:768px) {
  .c-company-number__inner {
    gap: 20px;
  }
}
.c-company-number__item {
  width: min((100% - 40px) / 2);
  padding: 30px 30px 30px 50px;
  background: #FAF7F3;
  border: 2px solid #E5DACA;
  border-radius: 8px;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
@media screen and (max-width:1024px) {
  .c-company-number__item {
    padding: 15px 15px 15px 20px;
  }
}
@media screen and (max-width:768px) {
  .c-company-number__item {
    width: 100%;
    display: flex;
  }
}
.c-company-number__item .c-company-number__txt {
  flex-shrink: 0;
}
.c-company-number__item .c-company-number__txt .__sub {
  font-size: clamp(1.125rem, 0.669rem + 0.95vw, 1.5rem);
  font-weight: 700;
  line-height: 1.35;
  color: #AD1919;
  margin-bottom: 15px;
}
.c-company-number__item .c-company-number__txt .__num {
  line-height: 1.1;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}
.c-company-number__item .c-company-number__txt .__num .js-number {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(3rem, 1.785rem + 2.53vw, 4rem);
  line-height: 1;
  color: #E93636;
}
.c-company-number__item .c-company-number__txt .__num .__label {
  font-size: clamp(1rem, 0.468rem + 1.11vw, 1.438rem);
  font-weight: 700;
  line-height: 1.1;
  color: #AD1919;
}
.c-company-number__item .c-company-number__img {
  width: inherit;
  flex-shrink: 0;
}
@media screen and (max-width:768px) {
  .c-company-number__item .c-company-number__img {
    width: 120px;
    flex-shrink: unset;
  }
}

.c-contact__ttl {
  font-size: clamp(1.125rem, 0.642rem + 1.27vw, 1.75rem);
  font-weight: 700;
  line-height: 1;
  color: #AD1919;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
@media screen and (max-width:768px) {
  .c-contact__ttl {
    gap: 6px;
  }
}
.c-contact__ttl::before {
  content: "";
  width: 40px;
  aspect-ratio: 1;
}
@media screen and (max-width:768px) {
  .c-contact__ttl::before {
    width: 20px;
  }
}
.c-contact-tel {
  width: min(960px, 90%);
  margin: 0 auto 120px;
  padding: 40px 0;
  border-radius: 120px;
  background: #fff;
  border: 2px solid #FAEEEE;
  box-sizing: border-box;
}
@media screen and (max-width:768px) {
  .c-contact-tel {
    margin: 0 auto 60px;
  }
}
.c-contact-tel .c-contact__ttl {
  margin-bottom: 30px;
}
@media screen and (max-width:768px) {
  .c-contact-tel .c-contact__ttl {
    margin-bottom: 20px;
  }
}
.c-contact-tel .c-contact__ttl::before {
  background: url(../img/common/ico_tel.svg) no-repeat center/100%;
}
.c-contact-tel__inner {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width:768px) {
  .c-contact-tel__inner {
    flex-direction: column;
  }
}
.c-contact-tel__link {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(2rem, 1.785rem + 2.53vw, 4rem);
  line-height: 1;
  color: #404040;
}
.c-contact-tel__quote {
  font-size: clamp(0.75rem, 0.598rem + 0.32vw, 0.875rem);
}
.c-contact-mail {
  width: min(1280px, 90%);
  margin: 0 auto;
  display: flex;
  gap: 80px;
}
@media screen and (max-width:768px) {
  .c-contact-mail {
    flex-direction: column;
  }
}
.c-contact-mail-flow {
  width: 150px;
  flex-shrink: 0;
}
@media screen and (max-width:768px) {
  .c-contact-mail-flow {
    width: 100%;
  }
}
.c-contact-mail-flow__inner {
  counter-reset: order 0;
  position: relative;
}
@media screen and (max-width:768px) {
  .c-contact-mail-flow__inner {
    width: 156px;
    margin: 0 auto;
    display: flex;
    justify-content: center;
    gap: 24px;
  }
}
.c-contact-mail-flow__inner::before {
  content: "";
  width: 2px;
  height: 94%;
  background: #AD1919;
  position: absolute;
  top: 3%;
  left: 9px;
}
@media screen and (max-width:768px) {
  .c-contact-mail-flow__inner::before {
    width: 80%;
    height: 2px;
    margin: auto;
    top: 7px;
    left: 0;
    right: 0;
  }
}
.c-contact-mail-flow__sub {
  font-size: clamp(1.125rem, 0.669rem + 0.95vw, 1.5rem);
  font-weight: 500;
  padding-left: 45px;
  margin-bottom: 30px;
  position: relative;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width:768px) {
  .c-contact-mail-flow__sub {
    padding: 35px 0 0;
    margin: 0;
    flex-direction: column;
    justify-content: center;
    gap: 8px;
  }
}
.c-contact-mail-flow__sub:last-of-type {
  margin-bottom: 0;
}
.c-contact-mail-flow__sub::before {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(1.25rem, 0.642rem + 1.27vw, 1.75rem);
  counter-increment: order 1;
  content: "0" counter(order);
}
.c-contact-mail-flow__sub::after {
  content: "";
  width: 20px;
  height: 20px;
  margin: auto;
  background: transparent;
  border-radius: 20px;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
}
@media screen and (max-width:768px) {
  .c-contact-mail-flow__sub::after {
    width: 16px;
    height: 16px;
    right: 0;
    bottom: unset;
  }
}
.c-contact-mail-flow__sub.__current {
  color: #E93636;
}
.c-contact-mail-flow__sub.__current::before {
  color: #E93636;
}
.c-contact-mail-flow__sub.__current::after {
  background: #E93636;
}
.c-contact-mail .c-contact__ttl {
  margin-bottom: 40px;
  justify-content: flex-start;
}
.c-contact-mail .c-contact__ttl::before {
  background: url(../img/common/ico_mail.svg) no-repeat center/100%;
}
.c-contact-mail .c-contact__catch {
  font-size: clamp(1.125rem, 0.669rem + 0.95vw, 1.5rem);
  font-weight: 700;
  line-height: 1.9;
  margin-bottom: 30px;
}
.c-contact-mail .c-contact__subcatch {
  font-size: clamp(1rem, 0.848rem + 0.32vw, 1.125rem);
  font-weight: 500;
  line-height: 1.9;
  margin-bottom: 30px;
}
.c-contact-mail .c-contact__txt {
  font-size: clamp(0.875rem, 0.799rem + 0.16vw, 0.938rem);
  line-height: 1.9;
}
.c-contact-mail .c-contact__txt .__link {
  color: #404040;
}
.c-contact-mail .c-contact__txt .__sub {
  color: #AD1919;
}
.c-contact-mail-form {
  margin: 80px 0 0;
}
.c-contact-mail-form__block {
  margin-bottom: 45px;
}
.c-contact-mail-form__block .c-contact-mail-form__ttl {
  font-size: clamp(1rem, 0.848rem + 0.32vw, 1.125rem);
  font-weight: 700;
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  gap: 1px;
}
.c-contact-mail-form__block .c-contact-mail-form__ttl .quote {
  font-size: 0.625rem;
  color: #AD1919;
}
.c-contact-mail-form__block .c-contact-mail-form__parts__inner {
  font-weight: 700;
  display: flex;
  align-items: center;
  gap: 8px;
}
.c-contact-mail-form__block .c-contact-mail-form__parts .c-contact-mail-form__text {
  font-size: 1rem !important;
  font-weight: 400;
  line-height: 1.35;
  width: 100%;
  padding: 20px 15px;
  border: 1px solid #D3D3D3;
  border-radius: 4px;
}
.c-contact-mail-form__block .c-contact-mail-form__parts .c-contact-mail-form__text.w50 {
  width: 50%;
}
@media screen and (max-width:768px) {
  .c-contact-mail-form__block .c-contact-mail-form__parts .c-contact-mail-form__text.w50 {
    width: 100%;
  }
}
.c-contact-mail-form__block .c-contact-mail-form__parts .c-contact-mail-form__text.w70 {
  width: 70%;
}
@media screen and (max-width:768px) {
  .c-contact-mail-form__block .c-contact-mail-form__parts .c-contact-mail-form__text.w70 {
    width: 100%;
  }
}
.c-contact-mail-form__block .c-contact-mail-form__parts .c-contact-mail-form__textarea {
  font-size: 1rem !important;
  font-weight: 400;
  line-height: 1.35;
  width: 100%;
  padding: 20px 15px;
  border: 1px solid #D3D3D3;
  border-radius: 4px;
}
.c-contact-mail-form__block .c-contact-mail-form__parts .c-contact-mail-form__parts__quote {
  font-size: clamp(0.813rem, 0.661rem + 0.32vw, 0.938rem);
  line-height: 1.35;
  margin: 15px 0 0;
}
.c-contact-mail-form__block .c-contact-mail-form__parts .c-contact-mail-form__parts__quote.half-quote {
  margin: 15px 0 20px;
}
.c-contact-mail-form__block .c-contact-mail-form__parts .c-contact-mail-form__info {
  font-size: clamp(0.938rem, 0.862rem + 0.16vw, 1rem);
  line-height: 1.9;
  margin-bottom: 20px;
}
.c-contact-mail-form__block .c-contact-mail-form__parts .c-contact-mail-form__info .__link {
  font-weight: 700;
  text-decoration: underline;
  color: #AD1919;
}
@media screen and (max-width:768px) {
  .c-contact-mail-form__block .c-contact-mail-form__parts .c-contact-mail-form__check {
    display: flex;
    flex-wrap: wrap;
    row-gap: 10px;
  }
}
.c-contact-mail-form__block .c-contact-mail-form__parts .c-contact-mail-form__check > .wpcf7-list-item {
  margin: 0 0 5px;
}
.c-contact-mail-form__block .c-contact-mail-form__parts .c-contact-mail-form__check > .wpcf7-list-item label {
  font-size: clamp(0.938rem, 0.862rem + 0.16vw, 1rem);
  font-weight: 700;
  padding-right: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.c-contact-mail-form__block .c-contact-mail-form__parts .c-contact-mail-form__check > .wpcf7-list-item input[type=checkbox] {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.c-contact-mail-form__block .c-contact-mail-form__parts .c-contact-mail-form__check > .wpcf7-list-item input[type=checkbox]::before {
  content: "";
  width: 18px;
  aspect-ratio: 1;
  background: url(../img/common/ico_check.svg) no-repeat center/100%;
}
.c-contact-mail-form__block .c-contact-mail-form__parts .c-contact-mail-form__check > .wpcf7-list-item input[type=checkbox]:checked::before {
  background: url(../img/common/ico_check-active.svg) no-repeat center/100%;
}
.c-contact-mail-form__block .c-contact-mail-form__parts .wpcf7-acceptance .wpcf7-list-item {
  margin: 0;
}
.c-contact-mail-form__block .c-contact-mail-form__parts .wpcf7-acceptance .wpcf7-list-item label {
  font-size: clamp(0.938rem, 0.862rem + 0.16vw, 1rem);
  font-weight: 700;
  padding-right: 20px;
  display: flex;
  align-items: center;
  gap: 4px;
}
.c-contact-mail-form__block .c-contact-mail-form__parts .wpcf7-acceptance .wpcf7-list-item input[type=checkbox] {
  cursor: pointer;
  display: flex;
  align-items: center;
}
.c-contact-mail-form__block .c-contact-mail-form__parts .wpcf7-acceptance .wpcf7-list-item input[type=checkbox]::before {
  content: "";
  width: 18px;
  aspect-ratio: 1;
  background: url(../img/common/ico_check.svg) no-repeat center/100%;
}
.c-contact-mail-form__block .c-contact-mail-form__parts .wpcf7-acceptance .wpcf7-list-item input[type=checkbox]:checked::before {
  background: url(../img/common/ico_check-active.svg) no-repeat center/100%;
}
.c-contact-mail-form__block:last-of-type {
  margin-bottom: 0;
}
.c-contact-mail-form__block.__policy {
  margin-bottom: 80px;
}
.c-contact-mail-form__block.__submit {
  width: min(440px, 100%);
  margin: 0 auto;
  position: relative;
}
.c-contact-mail-form__block.__submit::before {
  content: "";
  width: 20px;
  margin: auto;
  aspect-ratio: 1;
  background: url(../img/common/ico_triangle.svg) no-repeat center/100%;
  position: absolute;
  left: 16%;
  top: 0;
  bottom: 0;
  filter: brightness(0) saturate(100%) invert(96%) sepia(100%) saturate(5%) hue-rotate(341deg) brightness(106%) contrast(100%);
  cursor: pointer;
}
@media screen and (max-width:768px) {
  .c-contact-mail-form__block.__submit::before {
    width: 16px;
  }
}
.c-contact-mail-form__block.__submit .wpcf7-spinner {
  display: none;
}
.c-contact-mail-form__block.__submit .c-contact-mail-form__submit {
  font-size: clamp(1.25rem, 1.064rem + 0.39vw, 1.5rem);
  font-weight: 700;
  width: 100%;
  padding: 20px 0 20px 36px;
  box-sizing: border-box;
  background: #AD1919;
  border: 2px solid #AD1919;
  border-radius: 100px;
  color: #fff;
  display: block;
  cursor: pointer;
  transition: all 0.3s;
}
.c-contact-mail-form__block.__submit:hover::before {
  filter: brightness(0) saturate(100%) invert(17%) sepia(26%) saturate(5318%) hue-rotate(339deg) brightness(121%) contrast(114%);
}
.c-contact-mail-form__block.__submit:hover .c-contact-mail-form__submit {
  background: #fff;
  color: #AD1919;
}
.c-contact-mail-form .confirm-inner .c-contact-mail-form__block .c-contact-mail-form__ttl {
  font-size: clamp(0.938rem, 0.862rem + 0.16vw, 1rem);
  font-weight: 400;
  color: #AD1919;
  margin-bottom: 20px;
}
.c-contact-mail-form .confirm-inner .c-contact-mail-form__block .c-contact-mail-form__parts {
  font-size: clamp(1.125rem, 0.973rem + 0.32vw, 1.25rem);
  font-weight: 700;
  line-height: 1.9;
}
.c-contact-mail-form .confirm-inner .c-contact-mail-form__block.__submit {
  margin: 0 auto 50px;
}
.c-contact-mail-form .confirm-inner .c-contact-mail-form__block.__return {
  width: 240px;
  margin: 0 auto;
  cursor: pointer;
  position: relative;
}
.c-contact-mail-form .confirm-inner .c-contact-mail-form__block.__return::before {
  content: "";
  width: 12px;
  margin: auto;
  aspect-ratio: 1;
  background: url(../img/common/ico_triangle.svg) no-repeat center/100%;
  position: absolute;
  left: 20px;
  top: 6px;
  bottom: 0;
}
.c-contact-mail-form .confirm-inner .c-contact-mail-form__block.__return .c_link {
  background: #F9F9F9;
  padding-left: 40px;
  cursor: pointer;
}
.c-contact-mail .c-contact__completettl {
  font-size: clamp(2rem, 1.089rem + 1.9vw, 2.75rem);
  font-weight: 700;
  text-align: left;
  margin-bottom: 40px;
}
@media screen and (max-width:768px) {
  .c-contact-mail .c-contact__completettl {
    text-align: center;
  }
}
.c-contact-mail .c-contact__completetxt {
  font-size: clamp(0.938rem, 0.862rem + 0.16vw, 1rem);
  line-height: 1.9;
  text-align: left;
  margin-bottom: 80px;
}
@media screen and (max-width:768px) {
  .c-contact-mail .c-contact__completetxt {
    text-align: center;
  }
}
.c-contact-mail .c_link {
  width: 200px;
}
@media screen and (max-width:768px) {
  .c-contact-mail .c_link {
    margin: 0 auto;
  }
}

.l-contents .c-index-visual {
  width: 100%;
  height: 100vh;
  margin-bottom: 150px;
  position: relative;
}
.l-contents .c-index-visual-slider {
  height: 100%;
}
.l-contents .c-index-visual-slider .slick-track {
  height: 100vh;
}
.l-contents .c-index-visual-slider__item {
  width: 100%;
  height: 100%;
}
.l-contents .c-index-visual-slider__item.slider01 {
  background: url(../img/top/bg_mv01.png) no-repeat center/cover;
}
.l-contents .c-index-visual-slider__item.slider02 {
  background: url(../img/top/bg_mv02.png) no-repeat center/cover;
}
.l-contents .c-index-visual-slider__item.slider03 {
  background: url(../img/top/bg_mv03.png) no-repeat center/cover;
}
.l-contents .c-index-visual-left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  left: 80px;
  top: 0;
  bottom: 0;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-visual-left {
    left: 16px;
    bottom: unset;
    top: 10%;
  }
}
.l-contents .c-index-visual-left__inner {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(4rem, 2rem + 3vmin, 6rem);
  line-height: 1.75;
  letter-spacing: 4.8px;
  color: #fff;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-visual-left__inner {
    line-height: 1.5;
  }
}
@media screen and (max-width:415px) {
  .l-contents .c-index-visual-left__inner {
    line-height: 1.4;
  }
}
.l-contents .c-index-visual-left__inner .is-blur {
  opacity: 0;
}
.l-contents .c-index-visual-left__inner .is-blur.is-inview {
  animation: mvcatch 1s backwards;
  opacity: 1;
}
.l-contents .c-index-visual-left__inner .is-blur:nth-of-type(2) {
  animation-delay: 0.08s;
}
.l-contents .c-index-visual-left__inner .is-blur:last-of-type {
  animation-delay: 0.16s;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-visual-left__dots {
    display: none;
  }
}
.l-contents .c-index-visual-left__dots__inner {
  display: flex;
  align-items: center;
  gap: 16px;
}
.l-contents .c-index-visual-left__dots__inner li button {
  font-size: 0;
  width: 12px;
  height: 12px;
  background: #fff;
  border-radius: 20px;
  opacity: 0.35;
  transition: all 0.3s;
  cursor: pointer;
}
.l-contents .c-index-visual-left__dots__inner li.slick-active button {
  opacity: 1;
}
.l-contents .c-index-visual-catch {
  font-size: clamp(1.125rem, 0.474rem + 1.36vw, 2rem);
  font-weight: 500;
  padding-left: 40px;
  position: absolute;
  right: 80px;
  bottom: 80px;
  color: #fff;
  display: flex;
  flex-direction: column;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-visual-catch {
    padding-left: 23px;
    right: 15px;
    bottom: 7%;
  }
}
.l-contents .c-index-visual-catch .__inner {
  letter-spacing: 6px;
  width: -moz-fit-content;
  width: fit-content;
  padding: 20px 0;
  border-bottom: 2px dotted #fff;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-visual-catch .__inner .__spinner {
    width: -moz-fit-content;
    width: fit-content;
    padding-bottom: 20px;
    margin-bottom: 20px;
    border-bottom: 2px dotted #fff;
  }
}
@media screen and (max-width:768px) {
  .l-contents .c-index-visual-catch .__inner:nth-of-type(2) {
    display: flex;
    flex-direction: column-reverse;
  }
}
.l-contents .c-index-visual-catch::before {
  content: "";
  width: 24px;
  aspect-ratio: 1;
  background: url(../img/common/ico_triangle.svg) no-repeat center/100%;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(169deg) brightness(107%) contrast(102%);
  position: absolute;
  left: 0;
  top: 10%;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-visual-catch::before {
    width: 15px;
  }
}
.l-contents .c-index-contents__inner {
  position: relative;
}
.l-contents .c-index-stroke {
  width: 100%;
  overflow: hidden;
  position: absolute;
  right: 0;
  z-index: -1;
}
.l-contents .c-index-stroke path {
  stroke-linecap: round;
  stroke-linejoin: round;
}
.l-contents .c-index-news {
  width: min(1280px, 90%);
  margin: 0 auto 160px;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-news {
    margin: 0 auto 60px;
  }
}
.l-contents .c-index-news-ttl {
  margin-bottom: 40px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-news-ttl .c_link {
    display: none;
  }
}
.l-contents .c-index-news-list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-news-list {
    flex-direction: column;
    gap: 24px;
  }
}
.l-contents .c-index-news-list__item {
  width: 31%;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-news-list__item {
    width: 100%;
  }
}
.l-contents .c-index-news-list__item .c-index-news-list__img {
  margin-bottom: 20px;
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-news-list__item .c-index-news-list__img {
    margin-bottom: 15px;
  }
}
.l-contents .c-index-news-list__item .c-index-news-list__ttl {
  font-size: clamp(1rem, 0.907rem + 0.19vw, 1.125rem);
  font-weight: 500;
  line-height: 1.9;
  margin-bottom: 30px;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-news-list__item .c-index-news-list__ttl {
    margin-bottom: 25px;
  }
}
.l-contents .c-index-news-list__item .c-index-news-list__info {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.l-contents .c-index-news-list__item .c-index-news-list__info .c-index-news-list__day {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(0.875rem, 0.828rem + 0.1vw, 0.938rem);
  color: #808080;
}
.l-contents .c-index-news-list__item .c-index-news-list__info .c-index-news-list__category {
  font-size: clamp(0.875rem, 0.828rem + 0.1vw, 0.938rem);
  color: #AD1919;
}
.l-contents .c-index-news .sp_btn {
  display: none;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-news .sp_btn {
    width: 200px;
    margin: 50px auto 0;
    display: flex;
  }
}
.l-contents .c-index-services {
  width: min(1280px, 90%);
  margin: 0 auto 160px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}
@media screen and (max-width:1024px) {
  .l-contents .c-index-services {
    gap: 40px;
  }
}
@media screen and (max-width:768px) {
  .l-contents .c-index-services {
    margin: 0 auto 60px;
    flex-direction: column;
  }
}
.l-contents .c-index-services__left {
  width: 480px;
  flex-shrink: 0;
  position: sticky;
  top: 40px;
}
@media screen and (max-width:1200px) {
  .l-contents .c-index-services__left {
    width: 400px;
  }
}
@media screen and (max-width:1024px) {
  .l-contents .c-index-services__left {
    width: 385px;
  }
}
@media screen and (max-width:768px) {
  .l-contents .c-index-services__left {
    width: 100%;
    position: relative;
    top: unset;
  }
}
.l-contents .c-index-services__left .c_ttl {
  margin-bottom: 60px;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-services__left .c_ttl {
    margin-bottom: 35px;
  }
}
.l-contents .c-index-services__left .c-index-services__catch {
  font-size: clamp(2.25rem, 1.878rem + 0.78vw, 2.75rem);
  font-weight: 700;
  line-height: 1.9;
  margin-bottom: 30px;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-services__left .c-index-services__catch {
    width: 100%;
  }
}
.l-contents .c-index-services__left .c-index-services__txt {
  font-size: clamp(0.938rem, 0.891rem + 0.1vw, 1rem);
  line-height: 1.9;
  margin-bottom: 80px;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-services__left .c-index-services__txt {
    margin-bottom: 0;
  }
}
.l-contents .c-index-services__left .c_link {
  width: 185px;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-services__left .c_link {
    display: none;
  }
}
@media screen and (max-width:768px) {
  .l-contents .c-index-services__right {
    width: 100%;
  }
}
.l-contents .c-index-services__right .c-index-services__list {
  counter-reset: order 0;
}
.l-contents .c-index-services__right .c-index-services__list .c-index-services__item {
  border-bottom: 3px dotted #AD1919;
  padding-bottom: 40px;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-services__right .c-index-services__list .c-index-services__item {
    border-bottom: none;
    border-right: 3px dotted #AD1919;
    padding: 0 24px 30px;
    margin-bottom: 0;
    flex-direction: column;
  }
}
.l-contents .c-index-services__right .c-index-services__list .c-index-services__item .c-index-services__img {
  width: 55%;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-services__right .c-index-services__list .c-index-services__item .c-index-services__img {
    width: 100%;
  }
}
.l-contents .c-index-services__right .c-index-services__list .c-index-services__item .c-index-services__info {
  width: 35%;
  margin: 0 auto;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-services__right .c-index-services__list .c-index-services__item .c-index-services__info {
    width: 100%;
  }
}
.l-contents .c-index-services__right .c-index-services__list .c-index-services__item .c-index-services__info__ttl {
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  color: #AD1919;
  margin-bottom: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.l-contents .c-index-services__right .c-index-services__list .c-index-services__item .c-index-services__info__ttl::before {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 3rem;
  line-height: 1;
  color: #E93636;
}
.l-contents .c-index-services__right .c-index-services__list .c-index-services__item .c-index-services__info__txt {
  line-height: 1.9;
  text-align: center;
}
.l-contents .c-index-services__right .c-index-services__list .c-index-services__item:last-of-type {
  padding: 0;
  margin: 0;
  border: none;
}
.l-contents .c-index-services__right .c-index-services__list .c-index-services__item:nth-child(4n-3) .c-index-services__info__ttl::before {
  content: "01";
}
.l-contents .c-index-services__right .c-index-services__list .c-index-services__item:nth-child(4n-2) .c-index-services__info__ttl::before {
  content: "02";
}
.l-contents .c-index-services__right .c-index-services__list .c-index-services__item:nth-child(4n-1) .c-index-services__info__ttl::before {
  content: "03";
}
.l-contents .c-index-services__right .c-index-services__list .c-index-services__item:nth-child(4n) .c-index-services__info__ttl::before {
  content: "04";
}
.l-contents .c-index-services__right .c-index-services__navi {
  font-weight: 700;
  color: #404040;
  margin: 20px 20px 50px 0;
  display: none;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-services__right .c-index-services__navi {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
  }
}
.l-contents .c-index-services__right .c-index-services__navi::before {
  content: "";
  width: 12px;
  aspect-ratio: 1;
  background: url(../img/common/ico_triangle.svg) no-repeat center/100%;
}
.l-contents .c-index-services__right .c_link.sp_btn {
  display: none;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-services__right .c_link.sp_btn {
    width: 200px;
    margin: 0 auto;
    display: flex;
  }
}
.l-contents .c-index-strength {
  margin: 0 40px 160px;
  padding: 80px 0;
  background: #AD1919;
  position: relative;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-strength {
    width: 100%;
    margin: 0 0 60px;
  }
}
.l-contents .c-index-strength::before {
  content: "";
  background: url(../img/top/bg_strength.png) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}
.l-contents .c-index-strength__inner {
  width: min(1280px, 90%);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-strength__inner {
    flex-direction: column;
    gap: 40px;
  }
}
.l-contents .c-index-strength__left {
  flex-shrink: 0;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-strength__left {
    width: 100%;
  }
}
.l-contents .c-index-strength__left .c_ttl {
  color: #fff;
  margin-bottom: 60px;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-strength__left .c_ttl {
    margin-bottom: 40px;
  }
}
.l-contents .c-index-strength__left .c_ttl::after {
  color: #fff;
}
.l-contents .c-index-strength__left .c-index-strength__catch {
  font-size: clamp(2.25rem, 1.878rem + 0.78vw, 2.75rem);
  font-weight: 700;
  line-height: 1.9;
  color: #fff;
  margin-bottom: 80px;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-strength__left .c-index-strength__catch {
    margin-bottom: 50px;
  }
}
@media screen and (max-width:415px) {
  .l-contents .c-index-strength__left .c-index-strength__catch {
    font-size: 1.8rem;
  }
}
.l-contents .c-index-strength__left .c_link {
  color: #fff;
  border-color: #fff;
  width: 185px;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-strength__left .c_link {
    margin: 0 auto;
  }
}
.l-contents .c-index-strength__left .c_link::before {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(73deg) brightness(101%) contrast(102%);
}
.l-contents .c-index-strength__right {
  width: min(800px, 60%);
  aspect-ratio: 800/638;
  position: relative;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-strength__right {
    width: min(350px, 100%);
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 15px;
  }
}
.l-contents .c-index-strength__right .c-index-strength__img {
  position: absolute;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-strength__right .c-index-strength__img {
    width: calc((100% - 15px) / 2) !important;
    position: unset;
  }
}
.l-contents .c-index-strength__right .c-index-strength__img.img01 {
  background: url(../img/top/pic_strength01.jpg) no-repeat center/100%;
  width: min(300px, 37.5%);
  aspect-ratio: 3/2;
  top: 0;
  left: 5%;
}
.l-contents .c-index-strength__right .c-index-strength__img.img02 {
  background: url(../img/top/pic_strength02.jpg) no-repeat center/100%;
  width: min(400px, 50%);
  aspect-ratio: 200/133;
  top: 12.5%;
  right: 0;
}
.l-contents .c-index-strength__right .c-index-strength__img.img03 {
  background: url(../img/top/pic_strength03.jpg) no-repeat center/100%;
  width: min(160px, 20%);
  aspect-ratio: 80/53;
  top: 41%;
  left: 20%;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-strength__right .c-index-strength__img.img03 {
    margin-right: calc((100% - 15px) / 2);
    flex-shrink: 0;
  }
}
.l-contents .c-index-strength__right .c-index-strength__img.img04 {
  background: url(../img/top/pic_strength04.jpg) no-repeat center/100%;
  width: min(280px, 35%);
  aspect-ratio: 56/37;
  left: 0;
  bottom: 4.5%;
}
.l-contents .c-index-strength__right .c-index-strength__img.img05 {
  background: url(../img/top/pic_strength05.jpg) no-repeat center/100%;
  width: min(320px, 40%);
  aspect-ratio: 323/214;
  right: 17%;
  bottom: 0;
}
.l-contents .c-index-company {
  width: min(1280px, 90%);
  margin: 0 auto 160px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-company {
    margin: 0 auto 60px;
    flex-direction: column-reverse;
    gap: 40px;
  }
}
.l-contents .c-index-company__left {
  width: 50%;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-company__left {
    width: 100%;
  }
}
.l-contents .c-index-company__right {
  width: calc(50% - 80px);
}
@media screen and (max-width:768px) {
  .l-contents .c-index-company__right {
    width: 100%;
  }
}
.l-contents .c-index-company__right .c_ttl {
  margin-bottom: 60px;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-company__right .c_ttl {
    margin-bottom: 40px;
  }
}
.l-contents .c-index-company__right .c-index-company__catch {
  font-size: clamp(2.25rem, 1.878rem + 0.78vw, 2.75rem);
  font-weight: 700;
  line-height: 1.9;
  margin-bottom: 40px;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-company__right .c-index-company__catch {
    margin-bottom: 30px;
  }
}
.l-contents .c-index-company__right .c-index-company__txt {
  font-size: clamp(0.938rem, 0.891rem + 0.1vw, 1rem);
  margin-bottom: 75px;
}
@media screen and (max-width:768px) {
  .l-contents .c-index-company__right .c-index-company__txt {
    margin-bottom: 50px;
  }
}
.l-contents .c-index-company__right .c_link {
  width: 185px;
}
.l-contents .__mask {
  background: rgba(0, 0, 0, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
  position: fixed;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  z-index: 2;
}

.is-hidden .__mask {
  opacity: 1;
  visibility: visible;
}

.c-policy {
  width: min(960px, 90%);
  margin: 0 auto;
}
.c-policy .c_ttl {
  font-size: clamp(1.5rem, 0.892rem + 1.27vw, 2rem);
  margin-bottom: 80px;
}
@media screen and (max-width:768px) {
  .c-policy .c_ttl {
    margin-bottom: 40px;
  }
}
.c-policy__catch {
  line-height: 1.9;
  margin-bottom: 45px;
}
@media screen and (max-width:768px) {
  .c-policy__catch {
    margin-bottom: 30px;
  }
}
.c-policy__table .c-policy__ttl {
  font-size: clamp(1.063rem, 0.987rem + 0.16vw, 1.125rem);
  font-weight: 700;
  line-height: 1.9;
  margin-bottom: 20px;
}
@media screen and (max-width:768px) {
  .c-policy__table .c-policy__ttl {
    margin-bottom: 10px;
  }
}
.c-policy__table .c-policy__contents {
  font-size: clamp(0.938rem, 0.862rem + 0.16vw, 1rem);
  line-height: 1.9;
  margin-bottom: 45px;
}
@media screen and (max-width:768px) {
  .c-policy__table .c-policy__contents {
    margin-bottom: 30px;
  }
}
.c-policy__table .c-policy__contents:last-of-type {
  margin-bottom: 0;
}
.c-policy-points {
  padding: 20px 0 0;
}
.c-policy-points__list {
  display: flex;
}
.c-policy-points__list::before {
  content: "・";
}
.c-policy .__link {
  color: #404040;
}

.c-services {
  padding: 150px 0 0;
  position: relative;
  overflow: hidden;
}
@media screen and (max-width:768px) {
  .c-services {
    padding: 80px 0 0;
  }
}
.c-services-stroke {
  position: absolute;
  right: 0;
  top: -1px;
  z-index: -1;
}
.c-services-list {
  margin-bottom: 160px;
  counter-reset: order 0;
}
@media screen and (max-width:768px) {
  .c-services-list {
    margin-bottom: 80px;
  }
}
.c-services-list__item {
  margin-bottom: 120px;
  padding-bottom: 35px;
  position: relative;
}
@media screen and (max-width:768px) {
  .c-services-list__item {
    margin-bottom: 60px;
  }
}
.c-services-list__item:last-of-type {
  margin-bottom: 0;
}
.c-services-list__item .c-services-list__img {
  width: min(1280px, 90%);
  margin: 0 auto 40px;
}
@media screen and (max-width:768px) {
  .c-services-list__item .c-services-list__img {
    margin: 0 auto 30px;
  }
}
.c-services-list__item .c-services-list__info {
  width: min(1280px, 90%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 80px;
}
@media screen and (max-width:1024px) {
  .c-services-list__item .c-services-list__info {
    gap: 30px;
  }
}
@media screen and (max-width:768px) {
  .c-services-list__item .c-services-list__info {
    flex-direction: column;
  }
}
.c-services-list__item .c-services-list__info .c-services-list__ttl {
  font-size: clamp(1.5rem, 1.196rem + 0.63vw, 1.75rem);
  font-weight: 700;
  line-height: 1.35;
  color: #AD1919;
  width: 320px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 15px;
}
.c-services-list__item .c-services-list__info .c-services-list__ttl::before {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(2rem, 1.392rem + 1.27vw, 2.5rem);
  line-height: 1;
  background: #E93636;
  color: #fff;
  border-radius: 80px;
  width: 80px;
  aspect-ratio: 1;
  counter-increment: order 1;
  content: "0" counter(order);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width:768px) {
  .c-services-list__item .c-services-list__info .c-services-list__ttl::before {
    width: 64px;
  }
}
.c-services-list__item .c-services-list__info .c-services-list__detail .c-services-list__catch {
  font-size: clamp(1.125rem, 0.973rem + 0.32vw, 1.25rem);
  font-weight: 700;
  line-height: 1.9;
  margin-bottom: 35px;
}
.c-services-list__item .c-services-list__info .c-services-list__detail .c-services-list__txt {
  font-size: clamp(0.938rem, 0.862rem + 0.16vw, 1rem);
  line-height: 1.9;
}
.c-services-list__item:nth-child(even) .c-services-list__info {
  flex-direction: row-reverse;
}
@media screen and (max-width:768px) {
  .c-services-list__item:nth-child(even) .c-services-list__info {
    flex-direction: column;
  }
}
.c-services-list__item:nth-child(even) .c-services-list__info .c-services-list__ttl {
  flex-direction: row-reverse;
}
@media screen and (max-width:768px) {
  .c-services-list__item:nth-child(even) .c-services-list__info .c-services-list__ttl {
    flex-direction: row;
  }
}
.c-services-list__slide {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: -1;
  display: flex;
}
.c-services-list__slide__text {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(4rem, 0.506rem + 7.28vw, 6.875rem);
  line-height: 1;
  color: #FDE8E8;
  width: -moz-max-content;
  width: max-content;
  animation: infinity_scroll 50s infinite linear 0.5s both;
}
.c-services-flow {
  background: #FDE8E8;
  margin-bottom: 160px;
  padding: 80px 0;
}
@media screen and (max-width:768px) {
  .c-services-flow {
    margin-bottom: 80px;
  }
}
.c-services-flow__inner {
  width: min(1280px, 90%);
  margin: 0 auto;
}
.c-services-flow .c_ttl {
  margin-bottom: 60px;
  align-items: center;
}
.c-services-flow-list .c-services-flow-list__item {
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 1;
}
@media screen and (max-width:768px) {
  .c-services-flow-list .c-services-flow-list__item {
    align-items: center;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
  }
}
.c-services-flow-list .c-services-flow-list__item::before {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(2rem, 1.392rem + 1.27vw, 2.5rem);
  line-height: 1;
  width: 80px;
  margin-bottom: 30px;
  aspect-ratio: 1;
  border-radius: 100px;
  background: #E93636;
  color: #fff;
  counter-increment: order 1;
  content: "0" counter(order);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width:768px) {
  .c-services-flow-list .c-services-flow-list__item::before {
    width: 64px;
    margin-bottom: 0;
  }
}
.c-services-flow-list .c-services-flow-list__item:nth-of-type(2) {
  transition-delay: 0.8s;
}
.c-services-flow-list .c-services-flow-list__item:last-of-type {
  transition-delay: 1.1s;
}
@media screen and (max-width:768px) {
  .c-services-flow-list .c-services-flow-list__item:last-of-type {
    padding-bottom: 40px;
  }
}
.c-services-flow-list .c-services-flow-list__item .c-services-flow-list__ttl {
  font-size: clamp(1rem, 0.696rem + 0.63vw, 1.25rem);
  font-weight: 700;
  line-height: 1.35;
  margin-bottom: 15px;
  color: #AD1919;
  display: flex;
  align-items: center;
  height: 100%;
}
@media screen and (max-width:768px) {
  .c-services-flow-list .c-services-flow-list__item .c-services-flow-list__ttl {
    margin-bottom: 0;
  }
}
@media screen and (max-width:768px) {
  .c-services-flow-list .c-services-flow-list__item .c-services-flow-list__img {
    width: 100%;
    padding-left: 80px;
    flex-shrink: 0;
  }
}
.c-services-flow-list__inner {
  width: min(1120px, 90%);
  position: relative;
  display: flex;
  align-items: stretch;
  gap: 80px;
  counter-reset: order 0;
}
@media screen and (max-width:768px) {
  .c-services-flow-list__inner {
    flex-direction: column;
    gap: 40px;
  }
}
.c-services-flow-list__inner::before {
  content: "";
  width: 0;
  height: 2px;
  background: #BC8D8D;
  position: absolute;
  left: 0;
  top: 40px;
  z-index: 0;
  transition: all 1s;
  transition-delay: 0.5s;
}
@media screen and (max-width:768px) {
  .c-services-flow-list__inner::before {
    width: 2px;
    height: 0;
    left: 32px;
  }
}
.c-services-flow-list__inner:first-of-type {
  margin: 0 auto 45px 0;
  padding-right: 60px;
}
@media screen and (max-width:768px) {
  .c-services-flow-list__inner:first-of-type {
    margin: 0 auto;
    padding: 0;
  }
}
.c-services-flow-list__inner:last-of-type {
  counter-reset: order 3;
  margin: 0 0 0 auto;
  padding-left: 45px;
}
@media screen and (max-width:768px) {
  .c-services-flow-list__inner:last-of-type {
    margin: 0 auto;
    padding: 0;
  }
}
.c-services-flow-list__inner.is-inview::before {
  width: 100%;
}
@media screen and (max-width:768px) {
  .c-services-flow-list__inner.is-inview::before {
    width: 2px;
    height: 100%;
  }
}
.c-services-flow-list__inner.is-inview:last-of-type::before {
  width: 75%;
}
@media screen and (max-width:768px) {
  .c-services-flow-list__inner.is-inview:last-of-type::before {
    width: 2px;
    height: 65%;
  }
}
.c-services-voice {
  width: min(1280px, 90%);
  margin: 0 auto;
}
.c-services-voice .c_ttl {
  margin-bottom: 60px;
  align-items: center;
}
.c-services-voice__list {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}
@media screen and (max-width:1024px) {
  .c-services-voice__list {
    flex-direction: column;
    gap: 40px;
  }
}
.c-services-voice__list .c-services-voice__item {
  width: 32%;
  background: #FAF7F3;
  border: 2px solid #E5DACA;
  padding: 46px 30px 40px;
  box-sizing: border-box;
  border-radius: 8px;
  position: relative;
}
@media screen and (max-width:1024px) {
  .c-services-voice__list .c-services-voice__item {
    width: min(500px, 100%);
    margin: 0 auto;
  }
}
.c-services-voice__list .c-services-voice__item::before {
  content: "";
  width: 16px;
  margin: auto;
  aspect-ratio: 1;
  border-radius: 20px;
  border: 2px solid #E5DACA;
  color: #fff;
  background: #fff;
  position: absolute;
  top: 14px;
  left: 0;
  right: 0;
}
.c-services-voice__list .c-services-voice__ttl {
  font-size: clamp(1rem, 0.696rem + 0.63vw, 1.25rem);
  font-weight: 700;
  color: #fff;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.c-services-voice__list .c-services-voice__ttl .__sub {
  line-height: 1;
  display: inline;
  background: #763B22;
  width: -moz-max-content;
  width: max-content;
  padding: 10px 15px;
  box-sizing: border-box;
  border-radius: 4px;
}
.c-services-voice__list .c-services-voice__img {
  margin: -18px 0 20px;
  padding: 0 10px;
}
.c-services-voice__list .c-services-voice__txt {
  font-weight: 700;
  line-height: 1.9;
}

.l-page-strength {
  position: relative;
  overflow-x: clip;
}
.l-page-strength-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 75px;
  left: 0;
  z-index: -1;
}
.l-page-strength-bg__top {
  width: 100%;
  aspect-ratio: 1920/1210;
  background: url(../img/strength/bg_map.svg) no-repeat center/100%;
}
.l-page-strength-bg__stroke {
  width: 100%;
  height: inherit;
  overflow: hidden;
}

.c-strength-flow {
  width: min(1280px, 90%);
  margin: 0 auto 160px;
}
@media screen and (max-width:768px) {
  .c-strength-flow {
    margin: 0 auto 80px;
  }
}
.c-strength-flow__inner {
  counter-reset: order 0;
  position: relative;
}
.c-strength-flow__inner .c-strength-flow__item {
  margin-bottom: 60px;
}
.c-strength-flow__inner .c-strength-flow__item:nth-of-type(2) {
  transition-delay: 0.4s;
}
.c-strength-flow__inner .c-strength-flow__item:last-of-type {
  transition-delay: 0.8s;
  margin-bottom: 0;
}
.c-strength-flow__inner .c-strength-flow__item .c-strength-flow__ttl {
  font-size: 1.5rem;
  font-weight: 700;
  color: #AD1919;
  margin-bottom: 40px;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width:768px) {
  .c-strength-flow__inner .c-strength-flow__item .c-strength-flow__ttl {
    line-height: 1.35;
    margin-bottom: 5px;
  }
}
.c-strength-flow__inner .c-strength-flow__item .c-strength-flow__ttl::before {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(2rem, 1.392rem + 1.27vw, 2.5rem);
  line-height: 1;
  counter-increment: order 1;
  content: "0" counter(order);
  color: #fff;
  background: #E93636;
  width: 80px;
  aspect-ratio: 1;
  border-radius: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width:768px) {
  .c-strength-flow__inner .c-strength-flow__item .c-strength-flow__ttl::before {
    width: 64px;
  }
}
.c-strength-flow__inner .c-strength-flow__item .c-strength-flow__info {
  padding-left: 120px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 80px;
}
@media screen and (max-width:768px) {
  .c-strength-flow__inner .c-strength-flow__item .c-strength-flow__info {
    padding-left: 80px;
    flex-direction: column;
    gap: 20px;
  }
}
.c-strength-flow__inner .c-strength-flow__item .c-strength-flow__info .c-strength-flow__txt {
  font-size: clamp(0.938rem, 0.71rem + 0.47vw, 1.125rem);
  font-weight: 500;
  line-height: 1.9;
  width: 38%;
  flex-shrink: 0;
}
@media screen and (max-width:768px) {
  .c-strength-flow__inner .c-strength-flow__item .c-strength-flow__info .c-strength-flow__txt {
    width: 100%;
  }
}
.c-strength-flow__inner::before {
  content: "";
  width: 2px;
  height: 0;
  background: #BC8D8D;
  transition: all 1s;
  transition-delay: 0.4s;
  position: absolute;
  top: 0;
  left: 40px;
  z-index: -1;
}
@media screen and (max-width:768px) {
  .c-strength-flow__inner::before {
    left: 32px;
  }
}
.c-strength-flow__inner.is-inview::before {
  height: 72%;
}
@media screen and (max-width:768px) {
  .c-strength-flow__inner.is-inview::before {
    height: 70%;
  }
}
.c-strength-detail {
  width: calc(100% - 160px);
  margin: 0 80px 160px;
  background: #AD1919;
}
@media screen and (max-width:768px) {
  .c-strength-detail {
    width: 100%;
    margin: 0 auto 80px;
  }
}
.c-strength-detail__inner {
  width: min(1600px, 90%);
  margin: 0 auto;
  padding: 80px 0;
}
.c-strength-detail .c_ttl {
  color: #fff;
  align-items: center;
  margin-bottom: 45px;
}
.c-strength-detail .c_ttl::after {
  color: #fff;
}
.c-strength-detail__list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 80px;
}
@media screen and (max-width:1200px) {
  .c-strength-detail__list {
    width: min(400px, 100%);
    margin: 0 auto;
    flex-direction: column;
    gap: 40px;
  }
}
.c-strength-detail__list .c-strength-detail__item .c-strength-detail__ttl {
  font-size: clamp(1.25rem, 0.642rem + 1.27vw, 1.75rem);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  width: min(240px, 95%);
  margin: -30px auto 20px;
  padding: 15px 0;
  border-radius: 100px;
  background: #fff;
  position: relative;
}
.c-strength-detail__list .c-strength-detail__item .c-strength-detail__txt {
  font-size: clamp(0.938rem, 0.862rem + 0.16vw, 1rem);
  line-height: 1.9;
  color: #fff;
}
.c-strength-stand {
  width: min(1120px, 90%);
  margin: 0 auto;
}
.c-strength-stand .c_ttl {
  text-align: center;
  margin-bottom: 45px;
  align-items: center;
}
@media screen and (max-width:768px) {
  .c-strength-stand__img {
    width: min(400px, 100%);
    margin: 0 auto;
  }
}

.c-news {
  width: min(1280px, 90%);
  margin: 0 auto;
}
.c-news-category {
  margin-bottom: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 15px;
}
@media screen and (max-width:768px) {
  .c-news-category {
    margin-bottom: 40px;
    gap: 10px;
  }
}
.c-news-category__link {
  font-size: clamp(0.875rem, 0.571rem + 0.63vw, 1.125rem);
  font-weight: 500;
  line-height: 1;
  padding: 15px 22px;
  box-sizing: border-box;
  color: #404040;
  background: #fff;
  border-radius: 50px;
  border: 1px solid #808080;
  transition: all 0.3s;
}
@media screen and (max-width:768px) {
  .c-news-category__link {
    padding: 10px 15px;
  }
}
.c-news-category__link.__current {
  color: #fff;
  background: #AD1919;
  border: 1px solid #AD1919;
}
.c-news-category__link:hover {
  color: #fff;
  background: #AD1919;
  border: 1px solid #AD1919;
}
.c-news-list {
  margin-bottom: 120px;
  display: flex;
  flex-wrap: wrap;
  gap: 60px;
}
@media screen and (max-width:1024px) {
  .c-news-list {
    gap: 20px;
  }
}
@media screen and (max-width:768px) {
  .c-news-list {
    margin-bottom: 80px;
    gap: 30px;
  }
}
.c-news-list__item {
  width: calc((100% - 120px) / 3);
}
@media screen and (max-width:1024px) {
  .c-news-list__item {
    width: calc((100% - 40px) / 3);
  }
}
@media screen and (max-width:768px) {
  .c-news-list__item {
    width: 100%;
  }
}
.c-news-list__item .c-news-list__img {
  margin-bottom: 24px;
  aspect-ratio: 16/9;
  width: 100%;
  overflow: hidden;
}
@media screen and (max-width:768px) {
  .c-news-list__item .c-news-list__img {
    margin-bottom: 15px;
  }
}
.c-news-list__item .c-news-list__ttl {
  font-size: clamp(1rem, 0.848rem + 0.32vw, 1.125rem);
  font-weight: 500;
  letter-spacing: 0.8px;
  line-height: 1.9;
  margin-bottom: 30px;
  color: #404040;
}
@media screen and (max-width:768px) {
  .c-news-list__item .c-news-list__ttl {
    margin-bottom: 15px;
  }
}
.c-news-list__item .c-news-list__info {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-news-list__item .c-news-list__info .c-news-list__day {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(0.875rem, 0.799rem + 0.16vw, 0.938rem);
  font-weight: 500;
  color: #808080;
}
.c-news-list__item .c-news-list__info .c-news-list__category {
  font-size: clamp(0.875rem, 0.799rem + 0.16vw, 0.938rem);
  font-weight: 500;
  color: #AD1919;
}
.c-news-pager {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}
.c-news-pager__item {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(1.125rem, 0.669rem + 0.95vw, 1.5rem);
  font-weight: 500;
  line-height: 1;
  text-align: center;
  background: #fff;
  color: #AD1919;
  border: 1px solid #AD1919;
  border-radius: 50px;
  width: 48px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
@media screen and (max-width:768px) {
  .c-news-pager__item {
    width: 40px;
  }
}
.c-news-pager__item.__current {
  background: #AD1919;
  color: #fff;
  border: 1px solid #fff;
}
.c-news-pager__item.c-news-pager__prev::before {
  content: "";
  width: 7px;
  aspect-ratio: 1/2;
  background: url(../img/common/ico_arrow.svg) no-repeat center/100%;
  transform: rotate(180deg);
  transition: all 0.3s;
}
.c-news-pager__item.c-news-pager__next::before {
  content: "";
  width: 7px;
  aspect-ratio: 1/2;
  background: url(../img/common/ico_arrow.svg) no-repeat center/100%;
  transition: all 0.3s;
}
.c-news-pager__item:hover {
  background: #AD1919;
  color: #fff;
  border: 1px solid #fff;
}
.c-news-pager__item:hover.c-news-pager__prev::before, .c-news-pager__item:hover.c-news-pager__next::before {
  background: url(../img/common/ico_arrow-white.svg) no-repeat center/100%;
}

.c-news-detail {
  width: min(960px, 90%);
  margin: 0 auto 160px;
}
.c-news-detail .c_ttl {
  font-size: clamp(1.5rem, 0.589rem + 1.9vw, 2.25rem);
  font-weight: 700;
  line-height: 1.35;
  color: #404040;
  margin-bottom: 35px;
}
@media screen and (max-width:768px) {
  .c-news-detail .c_ttl {
    margin-bottom: 20px;
  }
}
.c-news-detail__info {
  padding-bottom: 45px;
  margin-bottom: 60px;
  border-bottom: 1px solid #D3D3D3;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 40px;
}
@media screen and (max-width:768px) {
  .c-news-detail__info {
    padding-bottom: 30px;
    margin-bottom: 30px;
  }
}
.c-news-detail__info .c-news-detail__time {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: clamp(0.875rem, 0.419rem + 0.95vw, 1.25rem);
  font-weight: 500;
  color: #808080;
}
.c-news-detail__info .c-news-detail__category {
  font-size: clamp(0.875rem, 0.419rem + 0.95vw, 1.25rem);
  font-weight: 500;
  color: #AD1919;
}
.c-news-detail__img {
  width: 100%;
  margin-bottom: 45px;
}
@media screen and (max-width:768px) {
  .c-news-detail__img {
    margin-bottom: 30px;
  }
}
.c-news-detail__contents {
  line-height: 1.9;
  margin-bottom: 120px;
}
@media screen and (max-width:768px) {
  .c-news-detail__contents {
    margin-bottom: 80px;
  }
}
.c-news-detail-pager {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.c-news-detail-pager .contents-none {
  width: 150px;
}
@media screen and (max-width:768px) {
  .c-news-detail-pager .contents-none {
    width: 100px;
  }
}
.c-news-detail-pager__item {
  font-size: clamp(1rem, 0.848rem + 0.32vw, 1.125rem);
  font-weight: 500;
  color: #AD1919;
  display: flex;
  align-items: center;
  gap: 15px;
}
@media screen and (max-width:768px) {
  .c-news-detail-pager__item {
    font-size: 0.8125rem;
    gap: 8px;
  }
}
@media screen and (max-width:415px) {
  .c-news-detail-pager__item.c-news-pager__prev {
    flex-direction: column;
  }
}
@media screen and (max-width:415px) {
  .c-news-detail-pager__item.c-news-pager__next {
    flex-direction: column-reverse;
  }
}
.c-news-detail-pager__item .__arrow {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-weight: 500;
  line-height: 1;
  text-align: center;
  background: #fff;
  color: #AD1919;
  border: 1px solid #AD1919;
  border-radius: 50px;
  width: 48px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}
@media screen and (max-width:768px) {
  .c-news-detail-pager__item .__arrow {
    width: 35px;
  }
}
.c-news-detail-pager__item .__arrow::before {
  content: "";
  width: 7px;
  aspect-ratio: 1/2;
  background: url(../img/common/ico_arrow.svg) no-repeat center/100%;
  transition: all 0.3s;
}
.c-news-detail-pager__item.c-news-pager__prev .__arrow::before {
  transform: rotate(180deg);
}
.c-news-detail-pager__item:hover .__arrow {
  background: #AD1919;
  color: #fff;
  border: 1px solid #fff;
}
.c-news-detail-pager__item:hover .__arrow::before {
  background: url(../img/common/ico_arrow-white.svg) no-repeat center/100%;
}
.c-news-detail-pager__return {
  font-size: clamp(1rem, 0.848rem + 0.32vw, 1.125rem);
  font-weight: 500;
  color: #AD1919;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 17px;
}
@media screen and (max-width:768px) {
  .c-news-detail-pager__return {
    font-size: 0.8125rem;
    gap: 10px;
  }
}
.c-news-detail-pager__return__parts {
  width: 30px;
  aspect-ratio: 1;
  position: relative;
}
.c-news-detail-pager__return__parts .__sub {
  width: 6px;
  aspect-ratio: 1;
  background: #AD1919;
  position: absolute;
  transition: all 0.3s;
  transform: translate(0, 0);
}
.c-news-detail-pager__return__parts .__sub.__parts01 {
  left: 0;
  top: 0;
}
.c-news-detail-pager__return__parts .__sub.__parts02 {
  left: 12px;
  top: 0;
}
.c-news-detail-pager__return__parts .__sub.__parts03 {
  left: 24px;
  top: 0;
}
.c-news-detail-pager__return__parts .__sub.__parts04 {
  left: 0;
  top: 12px;
}
.c-news-detail-pager__return__parts .__sub.__parts05 {
  left: 12px;
  top: 12px;
}
.c-news-detail-pager__return__parts .__sub.__parts06 {
  left: 24px;
  top: 12px;
}
.c-news-detail-pager__return__parts .__sub.__parts07 {
  left: 0;
  top: 24px;
}
.c-news-detail-pager__return__parts .__sub.__parts08 {
  left: 12px;
  top: 24px;
}
.c-news-detail-pager__return__parts .__sub.__parts09 {
  left: 24px;
  top: 24px;
}
.c-news-detail-pager__return:hover .c-news-detail-pager__return__parts .__sub.__parts01 {
  transform: translate(6px, 6px);
}
.c-news-detail-pager__return:hover .c-news-detail-pager__return__parts .__sub.__parts02 {
  transform: translate(0, 6px);
}
.c-news-detail-pager__return:hover .c-news-detail-pager__return__parts .__sub.__parts03 {
  transform: translate(-6px, 6px);
}
.c-news-detail-pager__return:hover .c-news-detail-pager__return__parts .__sub.__parts04 {
  transform: translate(6px, 0);
}
.c-news-detail-pager__return:hover .c-news-detail-pager__return__parts .__sub.__parts06 {
  transform: translate(-6px, 0);
}
.c-news-detail-pager__return:hover .c-news-detail-pager__return__parts .__sub.__parts07 {
  transform: translate(6px, -6px);
}
.c-news-detail-pager__return:hover .c-news-detail-pager__return__parts .__sub.__parts08 {
  transform: translate(0, -6px);
}
.c-news-detail-pager__return:hover .c-news-detail-pager__return__parts .__sub.__parts09 {
  transform: translate(-6px, -6px);
}

.c-breadcrumb {
  width: -moz-fit-content;
  width: fit-content;
  max-width: 95%;
  padding: 8px 12px;
  margin: 0 auto 55px;
  background: #FAEEEE;
  border-radius: 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 8px;
}
@media screen and (max-width:768px) {
  .c-breadcrumb {
    margin: 0 auto 30px;
  }
}
.c-breadcrumb .__arrow {
  width: 8px;
  aspect-ratio: 1;
  background: url(../img/common/ico_triangle.svg) no-repeat center/100%;
}
.c-breadcrumb__main {
  font-size: clamp(0.75rem, 0.598rem + 0.32vw, 0.875rem);
  line-height: 1;
  color: #000;
  background: #fff;
  padding: 6px 12px;
  border-radius: 20px;
}
.c-breadcrumb__sub {
  font-size: clamp(0.75rem, 0.598rem + 0.32vw, 0.875rem);
  line-height: 1;
  color: #000;
  background: #fff;
  padding: 6px 12px;
  border-radius: 20px;
}

.c-contact-bottom {
  width: min(1280px, 90%);
  margin: 0 auto -205px;
  padding: 110px 80px;
  background: #fff;
  border: 1px solid #D3D3D3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  position: relative;
}
@media screen and (max-width:1024px) {
  .c-contact-bottom {
    padding: 50px 40px;
  }
}
@media screen and (max-width:768px) {
  .c-contact-bottom {
    margin: 0 auto -60px;
    padding: 40px 20px;
    flex-direction: column;
    gap: 45px;
  }
}
.c-contact-bottom__info .c_ttl {
  margin-bottom: 60px;
}
@media screen and (max-width:768px) {
  .c-contact-bottom__info .c_ttl {
    margin-bottom: 30px;
  }
}
.c-contact-bottom__btn {
  font-size: clamp(1.25rem, 1.064rem + 0.39vw, 1.5rem);
  font-weight: 700;
  width: 440px;
  padding: 20px 0;
  border-radius: 100px;
  background: #AD1919;
  border: 2px solid #AD1919;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.3s;
}
@media screen and (max-width:768px) {
  .c-contact-bottom__btn {
    line-height: 1.35;
    width: min(300px, 90%);
    margin: 0 auto;
  }
}
.c-contact-bottom__btn::before {
  content: "";
  width: 44px;
  aspect-ratio: 44/40;
  background: url(../img/common/ico_contact.svg) no-repeat center/100%;
  transition: all 0.3s;
}
.c-contact-bottom__btn:hover {
  color: #AD1919;
  background: #fff;
}
.c-contact-bottom__btn:hover::before {
  background: url(../img/common/ico_contact-red.svg) no-repeat center/100%;
}
.c-contact-bottom__txt {
  line-height: 1.9;
}
@media screen and (max-width:1024px) {
  .c-contact-bottom__txt {
    font-size: 0.9375rem;
  }
}

.c-error {
  padding: 40px 0 0;
  margin: 0 0 160px;
}
.c-error .c_ttl {
  font-size: clamp(1.875rem, 0.812rem + 2.22vw, 2.75rem);
  font-weight: 700;
  line-height: 1.35;
  text-align: center;
  color: #404040;
  margin-bottom: 45px;
  flex-direction: column-reverse;
  align-items: center;
  gap: 80px;
}
.c-error__txt {
  text-align: center;
  line-height: 1.9;
  margin-bottom: 80px;
}
.c-error .c_link {
  width: 200px;
  margin: 0 auto;
}

@media print, screen and (min-width:769px) {
  .l-contents._col2_ .l-contents__inner {
    display: grid;
    grid-template-columns: 1fr 240px;
    grid-template-rows: auto;
    gap: 0 40px;
    grid-template-areas: "body side";
  }
}
@media screen and (max-width:768px) {
  .l-contents._col2_ .l-contents__inner {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto auto;
    gap: 60px 0;
    grid-template-areas: "body" "side";
  }
}
.l-contents._col2_ .l-contents__body {
  grid-area: body;
}
.l-contents._col2_ .l-contents__side {
  grid-area: side;
}
@media print, screen and (min-width:1025px) {
  .l-contents._col3_ .l-contents__inner {
    display: grid;
    grid-template-columns: minmax(200px, 25%) 1fr minmax(200px, 25%);
    grid-template-rows: auto;
    gap: 0 30px;
    grid-template-areas: "left main right";
  }
}
@media screen and (max-width:1024px) {
  .l-contents._col3_ .l-contents__inner {
    display: grid;
    grid-template-columns: 100%;
    grid-template-rows: auto auto auto;
    gap: 50px 0;
    grid-template-areas: "main" "right" "left";
  }
}
.l-contents._col3_ .l-contents__body {
  grid-area: main;
}
.l-contents._col3_ .l-contents__left {
  grid-area: left;
}
.l-contents._col3_ .l-contents__right {
  grid-area: right;
}

.l-header {
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
}
.l-header__inner {
  padding: 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width:1200px) {
  .l-header__inner {
    padding: 40px 15px;
  }
}
@media screen and (max-width:768px) {
  .l-header__inner {
    padding: 18px 15px;
  }
}
.l-header__inner::after {
  content: "";
}
.l-header-logo {
  width: min(377px, 22%);
  position: relative;
  z-index: 1;
}
@media screen and (max-width:1200px) {
  .l-header-logo {
    width: 237px;
  }
}
.l-header-nav {
  position: absolute;
  width: calc(100% - 80px);
}
@media screen and (max-width:1200px) {
  .l-header-nav {
    top: 105px;
  }
}
@media screen and (max-width:768px) {
  .l-header-nav {
    top: 8px;
    right: 16px;
  }
}
@media screen and (max-width:768px) {
  .l-header-nav__list {
    opacity: 0;
    visibility: hidden;
  }
}
.l-header-nav__list .l-header-nav__inner {
  display: flex;
  justify-content: center;
  gap: clamp(1.25rem, -0.269rem + 3.16vw, 2.5rem);
}
@media screen and (max-width:1200px) {
  .l-header-nav__list .l-header-nav__inner {
    justify-content: flex-start;
    gap: 20px;
  }
}
.l-header-nav__list .l-header-nav__inner .l-header-nav__item.h-policy {
  display: none;
}
.l-header-nav__list .l-header-nav__inner .l-header-nav__item.h-contact {
  display: none;
}
.l-header-nav__list .l-header-nav__inner .l-header-nav__item .l-header-nav__link {
  font-size: clamp(0.875rem, 0.571rem + 0.63vw, 1.125rem);
  color: #fff;
}
.l-header-nav__toggle {
  width: 80px;
  aspect-ratio: 1;
  background: #fff;
  border: 1px solid #D3D3D3;
  border-radius: 100px;
  position: absolute;
  top: 0;
  right: 170px;
  cursor: pointer;
  z-index: 3;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
@media screen and (max-width:768px) {
  .l-header-nav__toggle {
    width: 56px;
    top: 0;
    right: 0;
    opacity: 1;
    visibility: visible;
  }
}
.l-header-nav__toggle .__sub {
  width: 28px;
  height: 2px;
  margin: auto;
  background: #AD1919;
  position: absolute;
  right: 0;
  left: 0;
  transition: all 0.4s;
}
@media screen and (max-width:768px) {
  .l-header-nav__toggle .__sub {
    width: 22px;
  }
}
.l-header-nav__toggle .__sub:first-of-type {
  top: 30px;
}
@media screen and (max-width:768px) {
  .l-header-nav__toggle .__sub:first-of-type {
    top: 20px;
  }
}
.l-header-nav__toggle .__sub:nth-of-type(2) {
  top: 0;
  bottom: 0;
}
.l-header-nav__toggle .__sub:last-of-type {
  top: 46px;
}
@media screen and (max-width:768px) {
  .l-header-nav__toggle .__sub:last-of-type {
    top: 32px;
  }
}
.l-header-btn {
  width: 160px;
  position: fixed;
  top: 40px;
  right: 40px;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
@media screen and (max-width:768px) {
  .l-header-btn {
    display: none;
  }
}
.l-header-btn__contact {
  width: 100%;
  background: #AD1919;
  color: #fff;
  border-radius: 200px;
  aspect-ratio: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 15px;
}
.l-header-btn__contact::before {
  content: "";
  width: 44px;
  aspect-ratio: 44/40;
  background: url(../img/common/ico_contact.svg) no-repeat center/100%;
}
.l-header-btn__instagram {
  background: #fff;
  width: 80px;
  border: 1px solid #D3D3D3;
  border-radius: 100px;
  aspect-ratio: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.l-header-btn__instagram::before {
  content: "";
  width: 36px;
  aspect-ratio: 1;
  background: url(../img/common/ico_instagram.svg) no-repeat center/100%;
}
.l-header.header_fix .l-header-logo {
  display: none;
}
.l-header.header_fix .l-header-nav {
  position: fixed;
  top: 40px;
}
@media screen and (max-width:768px) {
  .l-header.header_fix .l-header-nav {
    top: 8px;
  }
}
.l-header.header_fix .l-header-nav__toggle {
  opacity: 1;
  visibility: visible;
}
.l-header.header_fix .l-header-nav__list {
  width: min(480px, 100%);
  height: 100vh;
  background: #fff;
  position: absolute;
  top: -40px;
  right: -65px;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
}
.l-header.header_fix .l-header-nav__list .l-header-nav__inner {
  flex-direction: column;
  gap: 60px;
  padding: 160px 0 0 40px;
}
.l-header.header_fix .l-header-nav__list .l-header-nav__item .l-header-nav__link {
  font-weight: 700;
  color: #404040;
}
@media screen and (max-width:768px) {
  .l-header-nav.is-open {
    width: 100%;
    height: 100vh;
    top: 0 !important;
    right: 0;
    z-index: 1;
  }
}
@media screen and (max-width:768px) {
  .l-header-nav.is-open .l-header-nav__toggle {
    top: 8px;
    right: 16px;
  }
}
.l-header-nav.is-open .l-header-nav__toggle .__sub:first-of-type {
  transform: rotate(45deg);
  top: 40px;
}
@media screen and (max-width:768px) {
  .l-header-nav.is-open .l-header-nav__toggle .__sub:first-of-type {
    top: 28px;
  }
}
.l-header-nav.is-open .l-header-nav__toggle .__sub:nth-of-type(2) {
  opacity: 0;
}
.l-header-nav.is-open .l-header-nav__toggle .__sub:last-of-type {
  transform: rotate(-45deg);
  top: 40px;
}
@media screen and (max-width:768px) {
  .l-header-nav.is-open .l-header-nav__toggle .__sub:last-of-type {
    top: 28px;
  }
}
.l-header-nav.is-open .l-header-nav__list {
  opacity: 1;
  visibility: visible;
}
@media screen and (max-width:768px) {
  .l-header-nav.is-open .l-header-nav__list {
    background: #fff;
    width: 100%;
    height: 100%;
    top: unset;
    right: unset;
  }
}
@media screen and (max-width:768px) {
  .l-header-nav.is-open .l-header-nav__list .l-header-nav__inner {
    padding: 100px 0 0;
    flex-direction: column;
    align-items: center;
    gap: 45px;
  }
}
@media screen and (max-width:768px) {
  .l-header-nav.is-open .l-header-nav__list .l-header-nav__inner .l-header-nav__item .l-header-nav__link {
    font-weight: 700;
    text-align: center;
    color: #404040;
  }
}
.l-header-nav.is-open .l-header-nav__list .l-header-nav__inner .l-header-nav__item.h-policy {
  display: block;
}
@media screen and (max-width:768px) {
  .l-header-nav.is-open .l-header-nav__list .l-header-nav__inner .l-header-nav__item.h-contact {
    width: min(280px, 90%);
    margin: 0 auto;
    background: #AD1919;
    border-radius: 50px;
    display: block;
  }
}
@media screen and (max-width:768px) {
  .l-header-nav.is-open .l-header-nav__list .l-header-nav__inner .l-header-nav__item.h-contact .l-header-nav__link {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
  }
}
@media screen and (max-width:768px) {
  .l-header-nav.is-open .l-header-nav__list .l-header-nav__inner .l-header-nav__item.h-contact .l-header-nav__link::before {
    content: "";
    width: 27px;
    padding: 15px 0;
    aspect-ratio: 27/24;
    background: url(../img/common/ico_contact.svg) no-repeat center/100%;
  }
}
@media screen and (max-width:768px) {
  .l-header-nav.is-open + .l-header-btn {
    width: 56px;
    display: block;
    top: 8px;
    right: 82px;
    z-index: 1;
  }
}
@media screen and (max-width:768px) {
  .l-header-nav.is-open + .l-header-btn .l-header-btn__contact {
    display: none;
  }
}
@media screen and (max-width:768px) {
  .l-header-nav.is-open + .l-header-btn .l-header-btn__instagram {
    width: 56px;
  }
}
@media screen and (max-width:768px) {
  .l-header-nav.is-open + .l-header-btn .l-header-btn__instagram::before {
    width: 28px;
  }
}
.l-header.is-home .l-header-logo .__img {
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(73deg) brightness(101%) contrast(102%);
}
.l-header.is-page .l-header-nav__list .l-header-nav__item .l-header-nav__link {
  color: #404040;
}

.l-footer {
  background: #470101;
  padding: 320px 0 80px;
}
@media screen and (max-width:768px) {
  .l-footer {
    padding: 140px 0 45px;
  }
}
.l-footer__inner {
  width: min(1280px, 90%);
  margin: 0 auto;
}
.l-footer-top {
  border-bottom: 1px solid #BC8D8D;
  padding-bottom: 80px;
  display: flex;
  justify-content: space-between;
  align-items: stretch;
  gap: 80px;
}
@media screen and (max-width:1024px) {
  .l-footer-top {
    flex-direction: column-reverse;
  }
}
@media screen and (max-width:768px) {
  .l-footer-top {
    padding-bottom: 45px;
    gap: 0;
  }
}
.l-footer-top__left {
  display: flex;
  flex-direction: column;
  align-items: stretch;
}
.l-footer-top__left .l-footer-top__logo {
  width: 270px;
  aspect-ratio: 270/40;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(0%) hue-rotate(73deg) brightness(101%) contrast(102%);
  margin-bottom: 30px;
}
@media screen and (max-width:1024px) {
  .l-footer-top__left .l-footer-top__logo {
    width: 210px;
    margin-bottom: 24px;
  }
}
.l-footer-top__left .l-footer-top__catch {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  font-style: normal;
  font-size: clamp(1.5rem, 1.128rem + 0.78vw, 2rem);
  color: #fff;
}
@media screen and (max-width:1024px) {
  .l-footer-top__left .l-footer-top__catch {
    font-size: 1.5rem;
    margin-bottom: 45px;
  }
}
.l-footer-top__left .l-footer-top__sns {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-style: normal;
  line-height: 1.1;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
}
.l-footer-top__left .l-footer-top__sns::after {
  content: "";
  width: 32px;
  aspect-ratio: 1;
  background: url(../img/common/ico_instagram.svg) no-repeat center/100%;
  filter: brightness(0) saturate(100%) invert(100%) sepia(0%) saturate(7500%) hue-rotate(64deg) brightness(110%) contrast(101%);
}
.l-footer-top__menu {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 96px;
}
@media screen and (max-width:1200px) {
  .l-footer-top__menu {
    gap: 40px;
  }
}
@media screen and (max-width:768px) {
  .l-footer-top__menu {
    flex-direction: column;
  }
}
.l-footer-top__menu .__item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media screen and (max-width:768px) {
  .l-footer-top__menu .__item {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
.l-footer-top__menu .__item .__link {
  font-size: 1.125rem;
  font-weight: 700;
  line-height: 1.35;
  color: #fff;
  margin-bottom: 30px;
}
@media screen and (max-width:1024px) {
  .l-footer-top__menu .__item .__link {
    font-size: 1rem;
  }
}
@media screen and (max-width:768px) {
  .l-footer-top__menu .__item .__link {
    width: 100%;
    flex-shrink: 0;
    margin-bottom: 40px;
  }
}
.l-footer-top__menu .__item .__link.__mb0 {
  margin-bottom: 0;
}
.l-footer-top__menu .__item .__link.__sub {
  font-size: clamp(0.875rem, 0.782rem + 0.19vw, 1rem);
  font-weight: 400;
  margin-bottom: 20px;
  display: flex;
  justify-content: flex-start;
}
@media screen and (max-width:1024px) {
  .l-footer-top__menu .__item .__link.__sub {
    font-size: 0.875rem;
  }
}
@media screen and (max-width:768px) {
  .l-footer-top__menu .__item .__link.__sub {
    width: 50%;
    flex-shrink: unset;
  }
}
.l-footer-top__menu .__item .__link.__sub::before {
  content: "―";
}
.l-footer-top__menu .__item .__link.__last {
  margin-bottom: 60px;
}
@media screen and (max-width:768px) {
  .l-footer-top__menu .__item .__link.__splast {
    margin-bottom: 40px;
  }
}
.l-footer-bottom {
  margin: 80px 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
}
@media screen and (max-width:768px) {
  .l-footer-bottom {
    margin: 45px 0 0;
  }
}
.l-footer-bottom__info {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: clamp(1.25rem, -1.541rem + 5.81vw, 5rem);
}
@media screen and (max-width:768px) {
  .l-footer-bottom__info {
    align-items: flex-start;
    flex-direction: column-reverse;
    gap: 40px;
  }
}
.l-footer-bottom__info .l-footer-bottom__copyright {
  font-size: 0.875rem;
  line-height: 1.35;
  color: #BC8D8D;
}
@media screen and (max-width:768px) {
  .l-footer-bottom__info .l-footer-bottom__copyright {
    font-size: 0.875rem;
    line-height: 2;
  }
}
.l-footer-bottom__info .l-footer-bottom__policy {
  font-size: 0.9375rem;
  text-decoration: underline;
  color: #fff;
}
.l-footer-bottom__return {
  font-family: "Outfit", sans-serif;
  font-weight: 500;
  font-style: normal;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 8px;
}
@media screen and (max-width:768px) {
  .l-footer-bottom__return {
    position: absolute;
    top: 0;
    right: 0;
  }
}
.l-footer-bottom__return::before {
  content: "";
  width: 12px;
  aspect-ratio: 1;
  background: url(../img/common/ico_arrowtop.svg) no-repeat center/100%;
}

@media screen and (max-width:415px) {
  .u-xs-min {
    display: none !important;
  }
}

@media print, screen and (min-width:416px) {
  .u-xs-max {
    display: none !important;
  }
}

@media screen and (max-width:768px) {
  .u-sm-min {
    display: none !important;
  }
}

@media print, screen and (min-width:769px) {
  .u-sm-max {
    display: none !important;
  }
}

@media screen and (max-width:1024px) {
  .u-md-min {
    display: none !important;
  }
}

@media print, screen and (min-width:1025px) {
  .u-md-max {
    display: none !important;
  }
}

@media screen and (max-width:1200px) {
  .u-lg-min {
    display: none !important;
  }
}

@media print, screen and (min-width:1201px) {
  .u-lg-max {
    display: none !important;
  }
}/*# sourceMappingURL=common.css.map */