@charset "UTF-8";
*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td {
  margin: 0;
  padding: 0;
  border: 0;
  font-weight: normal;
  font-size: 100%;
  vertical-align: baseline;
}

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

ol,
ul {
  list-style: none;
}

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

a {
  color: inherit;
  text-decoration: none;
}

button {
  margin: 0;
  padding: 0;
  border: none;
  box-shadow: none;
  background: transparent;
  cursor: pointer;
  font: inherit;
}

input,
select,
textarea {
  font: inherit;
  color: inherit;
  vertical-align: top;
}

option {
  color: black;
}

body {
  color: #222;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
  background: #FFF;
}
body.is-fixed {
  position: fixed;
  width: 100%;
  overflow: hidden;
  top: 0;
  left: 0;
}

.l-inner {
  padding-inline: 20px;
  max-width: 1240px;
  margin-inline: auto;
}

.l-header {
  position: fixed;
  z-index: 150;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  transition: background 0.2s ease-in-out;
  padding-block: 17.5px;
}
@media screen and (min-width: 768px) {
  .l-header {
    padding-block: 20px;
  }
}
.l-header.is-checked {
  background: rgba(255, 255, 255, 0);
}
.l-header.is-checked .p-header_logo {
  opacity: 0;
  pointer-events: none;
}

.l-header_inner {
  padding-right: 17.5px;
  max-width: none;
}
@media screen and (min-width: 768px) {
  .l-header_inner {
    padding-inline: 30px;
  }
}

.p-header_contents {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-header_logo a {
  transition: opacity 0.2s ease-in;
}
@media (any-hover: hover) {
  .p-header_logo a:hover {
    opacity: 0.7;
  }
}
.p-header_logo img {
  width: 147px;
  aspect-ratio: 147/30;
}
@media screen and (min-width: 768px) {
  .p-header_logo img {
    width: 195px;
    aspect-ratio: 195/40;
  }
}

.p-header_list {
  display: flex;
  align-items: center;
  gap: 30px;
}

.p-header_link a {
  transition: opacity 0.2s ease-in;
}
@media (any-hover: hover) {
  .p-header_link a:hover {
    opacity: 0.7;
  }
}

.p-header_linkInner {
  height: 100%;
}
.p-header_linkInner p {
  font-size: 13.47px;
  font-weight: 600;
}

@media (any-hover: hover) {
  .p-header_linkContact a:hover .p-header_contactInner {
    background: #101010;
  }
}

.p-header_contactInner {
  padding: 18px 48px;
  border-radius: 25px;
  background: #E1690D;
  transition: background 0.2s ease-in;
}
.p-header_contactInner p {
  color: #FFF;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.p-header_menuButton {
  width: 35px;
  aspect-ratio: 1/1;
  position: relative;
  z-index: 105;
}
.p-header_menuButton span {
  position: absolute;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 24px;
  height: 1.4px;
  background: #101010;
  transition: all 0.25s ease-in-out;
  transition-delay: 0.2s;
}
.p-header_menuButton span:nth-child(1) {
  top: calc(50% - 8.6px);
}
.p-header_menuButton span:nth-child(2) {
  top: 50%;
  transform-origin: left;
}
.p-header_menuButton span:nth-child(3) {
  top: calc(50% + 8.6px);
}
.p-header_menuButton.is-checked span {
  background: #FFF;
}
.p-header_menuButton.is-checked span:nth-child(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.p-header_menuButton.is-checked span:nth-child(2) {
  transform: translate(-50%, -50%) scaleX(0);
}
.p-header_menuButton.is-checked span:nth-child(3) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.l-overlayMenu.is-open .p-overlay_lightGray,
.l-overlayMenu.is-open .p-overlay_darkGray,
.l-overlayMenu.is-open .p-overlayMenu_nav {
  transform: translateY(0);
  pointer-events: auto;
}
.l-overlayMenu.is-open .p-overlay_lightGray {
  transition-delay: 0s;
}
.l-overlayMenu.is-open .p-overlay_darkGray {
  transition-delay: 0.1s;
}
.l-overlayMenu.is-open .p-overlayMenu_nav {
  transition-delay: 0.2s;
}
.l-overlayMenu.is-open .p-overlayMenu_linkInner,
.l-overlayMenu.is-open .p-menu_serLinkInner,
.l-overlayMenu.is-open .p-overlayMenu_contactInner {
  transition: all 0.3s ease;
  transition-delay: 0.9s;
  transform: translateY(0);
  opacity: 1;
}
.l-overlayMenu.is-close .p-overlay_lightGray,
.l-overlayMenu.is-close .p-overlay_darkGray,
.l-overlayMenu.is-close .p-overlayMenu_nav {
  transform: translateY(100%);
  pointer-events: none;
}
.l-overlayMenu.is-close .p-overlay_lightGray {
  transition-delay: 0.3s;
}
.l-overlayMenu.is-close .p-overlay_darkGray {
  transition-delay: 0.2s;
}
.l-overlayMenu.is-close .p-overlayMenu_nav {
  transition-delay: 0.1s;
}
.l-overlayMenu.is-close .p-overlayMenu_linkInner,
.l-overlayMenu.is-close .p-menu_serLinkInner,
.l-overlayMenu.is-close .p-overlayMenu_contactInner {
  transition: all 0.3s cubic-bezier(0.9, 0.1, 0.1, 0.9);
  transition-delay: 0s;
  transform: translateY(100%);
  opacity: 0;
}

.p-overlay_lightGray,
.p-overlay_darkGray,
.p-overlayMenu_nav {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  transition: 0.7s cubic-bezier(0.9, 0.1, 0.1, 0.9);
}

.p-overlay_lightGray {
  background: #9d9d9d;
  z-index: 101;
}

.p-overlay_darkGray {
  background: #5d5d5d;
  z-index: 102;
}

.p-overlayMenu_nav {
  background: #101010;
  z-index: 103;
  overflow-y: scroll;
}

.p-overlayMenu_list {
  padding-top: 90px;
  padding-bottom: 84px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 49px;
}

.p-overlayMenu_link {
  overflow: hidden;
}
.p-overlayMenu_link a {
  transition: opacity 0.2s ease-in;
}
@media (any-hover: hover) {
  .p-overlayMenu_link a:hover {
    opacity: 0.7;
  }
}

.p-overlayMenu_linkInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  padding-bottom: 4px;
}

.p-overlayMenu_link_textEn {
  text-align: center;
  color: #FFF;
  font-family: "Montserrat", sans-serif;
  font-size: 32px;
  font-weight: 600;
  line-height: 1.25;
}

.p-overlayMenu_link_textJa {
  color: #FFF;
  font-size: 18px;
  line-height: 0.83333;
}

.p-overlayMenu_linkService {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
}

.p-menu_serLinks {
  width: 230px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px 40px;
}

.p-menu_serLink {
  overflow: hidden;
}
.p-menu_serLink a {
  transition: opacity 0.2s ease-in;
}
@media (any-hover: hover) {
  .p-menu_serLink a:hover {
    opacity: 0.7;
  }
}

.p-menu_serLinkInner p {
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  line-height: 1;
}

.p-overlayMenu_linkContact {
  overflow: hidden;
}
@media (any-hover: hover) {
  .p-overlayMenu_linkContact a:hover .p-overlayMenu_contactInner {
    background: #101010;
  }
}

.p-overlayMenu_contactInner {
  padding: 22px 85px;
  background: #E1690D;
  border-radius: 30px;
  border: 1px solid #E1690D;
}
.p-overlayMenu_contactInner p {
  color: #FFF;
  font-size: 18px;
  font-weight: 700;
  line-height: 0.77778;
}

.l-contactLink {
  position: relative;
  z-index: 10;
}
@media (any-hover: hover) {
  .l-contactLink a:hover .p-contactLink_inner {
    background: #EF802B;
  }
}

.p-contactLink_inner {
  padding-block: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  background: #101010;
  transition: background 0.2s ease-in-out;
}
@media screen and (min-width: 768px) {
  .p-contactLink_inner {
    padding-block: 80px;
  }
}

.p-contactLink_textEn {
  color: #FFF;
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-contactLink_textEn {
    font-size: 80px;
  }
}

.p-contactLink_textJa {
  color: #FFF;
  line-height: 0.875;
}

.l-footer {
  position: relative;
  z-index: 10;
}

.l-footerHead {
  padding-top: 58px;
  background: #FCF9F1;
}
@media screen and (min-width: 768px) {
  .l-footerHead {
    padding-top: 80px;
    padding-bottom: 40px;
  }
}

.p-footerHead_contents {
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 39px;
  border-bottom: 1px solid #E6DEC7;
}
@media screen and (min-width: 768px) {
  .p-footerHead_contents {
    flex-direction: row;
    padding-bottom: 0;
    border-bottom: 0;
  }
}

.p-footerHead_info,
.p-footerHead_siteMap {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-footerHead_info,
  .p-footerHead_siteMap {
    width: calc((100% - 30px) / 2);
  }
}

.p-footerHead_logo img {
  width: 146.25px;
  height: 30px;
}

.p-footerHead_info_heading {
  margin-top: 20px;
}
.p-footerHead_info_heading p {
  font-weight: 600;
  line-height: 1.25;
}

.p-footerHead_info_link {
  margin-top: 9px;
  width: -moz-fit-content;
  width: fit-content;
}
.p-footerHead_info_link p {
  font-size: 14px;
  font-weight: 600;
  line-height: 1.42857;
  position: relative;
}
.p-footerHead_info_link p::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: -15px;
  width: 10px;
  aspect-ratio: 1/1;
  background: url(../img/linkIcon.svg) no-repeat center center/contain;
}
.p-footerHead_info_link a {
  transition: opacity 0.2s ease-in;
}
@media (any-hover: hover) {
  .p-footerHead_info_link a:hover {
    opacity: 0.7;
  }
}

.p-footerHead_info_script,
.p-footerHead_info_address,
.p-footerHead_info_telephone {
  margin-top: 9px;
}
.p-footerHead_info_script p,
.p-footerHead_info_address p,
.p-footerHead_info_telephone p {
  font-size: 14px;
  line-height: 1.28571;
}

.p-footerHead_siteMap_heading p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.33333;
}

.p-footerHead_siteMap_nav {
  margin-top: 10px;
}
.p-footerHead_siteMap_nav.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-footerHead_siteMap_nav.pc {
    display: flex;
    gap: 30px;
  }
}
.p-footerHead_siteMap_nav.sp {
  display: flex;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-footerHead_siteMap_nav.sp {
    display: none;
  }
}

.p-footerHead_siteMap_list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.p-footerHead_siteMap_list.firstList, .p-footerHead_siteMap_list.secondList {
  width: calc((100% - 20px) / 2);
}
@media screen and (min-width: 768px) {
  .p-footerHead_siteMap_list.firstList, .p-footerHead_siteMap_list.secondList {
    width: calc((100% - 60px) / 3);
  }
}
@media screen and (min-width: 768px) {
  .p-footerHead_siteMap_list.thirdList {
    width: calc((100% - 60px) / 3);
  }
}

.p-footerHead_siteMap_link {
  width: -moz-fit-content;
  width: fit-content;
}
.p-footerHead_siteMap_link p {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}
.p-footerHead_siteMap_link p::before {
  content: "・";
  color: #E1690D;
}
.p-footerHead_siteMap_link a {
  transition: opacity 0.2s ease-in;
}
@media (any-hover: hover) {
  .p-footerHead_siteMap_link a:hover {
    opacity: 0.7;
  }
}

.p-footerHead_siteMap_serviceList {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-footerHead_siteMap_serviceLink {
  width: -moz-fit-content;
  width: fit-content;
}
.p-footerHead_siteMap_serviceLink p {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
}
.p-footerHead_siteMap_serviceLink p::before {
  content: "　- ";
  color: #E1690D;
}
.p-footerHead_siteMap_serviceLink a {
  transition: opacity 0.2s ease-in;
}
@media (any-hover: hover) {
  .p-footerHead_siteMap_serviceLink a:hover {
    opacity: 0.7;
  }
}

.l-footerRelated {
  padding-top: 20px;
  padding-bottom: 59px;
  background: #FCF9F1;
}
@media screen and (min-width: 768px) {
  .l-footerRelated {
    padding-top: 39px;
    padding-bottom: 80px;
    border-top: 1px solid #E6DEC7;
  }
}

.p-footerRelated_heading p {
  font-family: "Montserrat", sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.33333;
}

.p-footerRelated_marquee {
  margin-top: 10px;
  overflow: hidden;
  width: 100%;
}

.p-footerRelated_sliderArea {
  width: -moz-max-content;
  width: max-content;
  display: flex;
  animation: slide 15s linear infinite;
}

@keyframes slide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-33.3333%);
  }
}
.p-ftSlider {
  display: flex;
  gap: 15px;
  padding-right: 15px;
}
@media screen and (min-width: 768px) {
  .p-ftSlider {
    gap: 18px;
    padding-right: 18px;
  }
}

.p-ftSlider_item {
  width: -moz-fit-content;
  width: fit-content;
}
.p-ftSlider_item a {
  transition: opacity 0.2s ease-in;
}
@media (any-hover: hover) {
  .p-ftSlider_item a:hover {
    opacity: 0.7;
  }
}

.p-ftSlider_banner {
  width: 169px;
  height: 54.811px;
  display: grid;
  place-items: center;
}
@media screen and (min-width: 768px) {
  .p-ftSlider_banner {
    width: 185px;
    height: 60px;
  }
}
.p-ftSlider_banner.offWhite {
  border: 0.649px solid #CCC;
  background: #FFF;
}
.p-ftSlider_banner.black {
  background: #000;
}

.l-footerCopyright {
  padding-top: 3px;
  padding-bottom: 9px;
  background: #FBE8D6;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .l-footerCopyright {
    padding-top: 12px;
    padding-bottom: 12px;
  }
}
.l-footerCopyright small {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 10px;
  line-height: 1.5;
}

@media (any-hover: hover) {
  .c-linkBtn a:hover .c-linkBtn_inner {
    background: #E1690D;
  }
}
.c-linkBtn .c-linkBtn_inner {
  display: inline-block;
  width: 100%;
  max-width: 300px;
  height: 60px;
  border-radius: 30px;
  background: #101010;
  transition: background 0.2s ease-in;
  padding-top: 23px;
  position: relative;
}
.c-linkBtn .c-linkBtn_inner::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 28.33px;
  width: 13.3px;
  height: 13px;
  background: url(../img/btnArrow-icon.svg) no-repeat center center/contain;
}
.c-linkBtn p {
  color: #FFF;
  text-align: center;
  font-weight: 500;
  line-height: 0.9375;
}

.c-section_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.c-section_title p {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}
.c-section_title h2 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55556;
}

.c-mvSwiperArea {
  position: relative;
}

.c-mvSwiper {
  position: relative;
}
.c-mvSwiper::after {
  content: "";
  position: absolute;
  z-index: 5;
  bottom: -1%;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  max-width: 840px;
  min-width: 300px;
  aspect-ratio: 840/66;
  border-radius: 20px 20px 0 0;
  background: #FFF;
}
@media screen and (min-width: 768px) {
  .c-mvSwiper::after {
    border-radius: 40px 40px 0 0;
  }
}

.c-mvSwiper_slide {
  width: -moz-fit-content;
  width: fit-content;
}
.c-mvSwiper_slide img {
  width: 89.82188vw;
  aspect-ratio: 1200/640;
}
@media screen and (min-width: 768px) {
  .c-mvSwiper_slide img {
    width: 62.5vw;
  }
}

.c-pageTitleArea {
  margin: 15px auto 0;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .c-pageTitleArea {
    gap: 50px;
  }
}

.c-pageTitle {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
}
@media screen and (min-width: 768px) {
  .c-pageTitle {
    gap: 20px;
  }
}
.c-pageTitle p {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 0.88889;
}
@media screen and (min-width: 768px) {
  .c-pageTitle p {
    font-size: 90px;
  }
}
.c-pageTitle h1 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.4;
}
@media screen and (min-width: 768px) {
  .c-pageTitle h1 {
    font-size: 20px;
  }
}

.c-breadcrumb {
  padding-left: 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
}
.c-breadcrumb::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 13px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #E1690D;
}
.c-breadcrumb .page p {
  font-size: 14px;
  line-height: 0.9;
  letter-spacing: -0.5px;
}
.c-breadcrumb .page.parent-page a {
  transition: 0.2s ease-in;
}
@media (any-hover: hover) {
  .c-breadcrumb .page.parent-page a:hover {
    opacity: 0.7;
  }
}
.c-breadcrumb .page.parent-page p {
  color: #CCC;
  font-weight: 700;
}
.c-breadcrumb .page.active-page p {
  font-weight: 600;
}
.c-breadcrumb .betweenLine {
  display: block;
  width: 12px;
  height: 1px;
  background: #000;
}

.p-sidebar_categories {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (min-width: 768px) {
  .p-sidebar_categories {
    flex-direction: column;
  }
}

.p-sidebar_category {
  width: -moz-fit-content;
  width: fit-content;
}
@media (any-hover: hover) {
  .p-sidebar_category a:hover p {
    color: #E1690D;
  }
}
.p-sidebar_category p {
  color: #C8C8C8;
  font-size: 16px;
  font-weight: 700;
  line-height: 0.875;
  transition: color 0.3s ease-in;
}
.p-sidebar_category.is-activePage {
  pointer-events: none;
  position: relative;
  padding-left: 14px;
}
.p-sidebar_category.is-activePage::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
  width: 6px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #E1690D;
}
.p-sidebar_category.is-activePage p {
  color: #E1690D;
}

.l-hero {
  padding-top: 81px;
}
@media screen and (min-width: 768px) {
  .l-hero {
    padding-top: 150px;
  }
}

.p-hero_swiperArea {
  position: relative;
}

.p-heroSwiper {
  position: relative;
}

.p-heroSwiper_slide {
  width: -moz-fit-content;
  width: fit-content;
}
.p-heroSwiper_slide.swiper-slide-prev {
  transform: translate3d(-12.72264vw, 0px, -81.42493vw) rotateX(0deg) rotateY(30deg) scale(1) !important;
}
@media screen and (min-width: 768px) {
  .p-heroSwiper_slide.swiper-slide-prev {
    transform: translate3d(-10.9375vw, 0px, -2.34375vw) rotateX(0deg) rotateY(30deg) scale(1) !important;
  }
}
.p-heroSwiper_slide.swiper-slide-next {
  transform: translate3d(12.72264vw, -1.52671vw, -81.42493vw) rotateX(0deg) rotateY(-30deg) scale(1) !important;
}
@media screen and (min-width: 768px) {
  .p-heroSwiper_slide.swiper-slide-next {
    transform: translate3d(10.9375vw, 0px, -2.34375vw) rotateX(0deg) rotateY(-30deg) scale(1) !important;
  }
}

.p-heroSwiper_image img {
  width: 89.82188vw;
  aspect-ratio: 1200/800;
}
@media screen and (min-width: 768px) {
  .p-heroSwiper_image img {
    width: 62.5vw;
  }
}

.p-heroSwiper_pagination {
  bottom: 3px !important;
}
@media screen and (min-width: 768px) {
  .p-heroSwiper_pagination {
    bottom: 33px !important;
  }
}
.p-heroSwiper_pagination .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  margin: 0 7.5px !important;
  opacity: 0.8 !important;
  background-color: #FFF;
}
@media screen and (min-width: 768px) {
  .p-heroSwiper_pagination .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    margin: 0 10px !important;
  }
}
.p-heroSwiper_pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #EF802B;
}

.p-heroSwiper_prev,
.p-heroSwiper_next {
  opacity: 1;
  visibility: visible;
  display: block;
  position: absolute;
  z-index: 10;
  top: 50%;
  width: 18px;
  height: 54px;
  transform: translate(0, -50%);
}
.p-heroSwiper_prev::after,
.p-heroSwiper_next::after {
  display: none;
}

.p-heroSwiper_prev {
  left: 43px;
  background: url(../img/heroSwiper-prev.svg) no-repeat center center/contain;
}

.p-heroSwiper_next {
  right: 49px;
  background: url(../img/heroSwiper-next.svg) no-repeat center center/contain;
}

.l-lead {
  padding-top: 100px;
  padding-bottom: 120px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .l-lead {
    padding-top: 80px;
    padding-bottom: 140px;
  }
}

.p-lead_topSpace {
  width: 100%;
  height: 76.1vw;
  position: relative;
}

.p-lead_catchphrase {
  position: sticky;
  top: 150px;
  z-index: 20;
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
@media screen and (min-width: 768px) {
  .p-lead_catchphrase {
    top: 170px;
    gap: 8px;
  }
}
.p-lead_catchphrase .p-lead_catchphrase_row span {
  display: inline-block;
  transition: transform 1s cubic-bezier(0.85, 0, 0.15, 1);
}
.p-lead_catchphrase.is-hideDown .p-lead_catchphrase_row span {
  transform: translateY(110%);
  transition-delay: 0s;
}
.p-lead_catchphrase.is-hideUp .p-lead_catchphrase_row span {
  transform: translateY(-110%);
  transition-delay: 0s;
}
.p-lead_catchphrase.is-show .p-lead_catchphrase_row span {
  transform: translateY(0);
}
.p-lead_catchphrase.is-show .p-lead_catchphrase_row .delay1 {
  transition-delay: 0.1s;
}
.p-lead_catchphrase.is-show .p-lead_catchphrase_row .delay1-4 {
  transition-delay: 0.4s;
}
@media screen and (min-width: 768px) {
  .p-lead_catchphrase.is-show .p-lead_catchphrase_row .delay1-4 {
    transition-delay: 0.1s;
  }
}
.p-lead_catchphrase.is-show .p-lead_catchphrase_row .delay4-7 {
  transition-delay: 0.7s;
}
@media screen and (min-width: 768px) {
  .p-lead_catchphrase.is-show .p-lead_catchphrase_row .delay4-7 {
    transition-delay: 0.4s;
  }
}
.p-lead_catchphrase.is-show .p-lead_catchphrase_row .delay7-10 {
  transition-delay: 1s;
}
@media screen and (min-width: 768px) {
  .p-lead_catchphrase.is-show .p-lead_catchphrase_row .delay7-10 {
    transition-delay: 0.7s;
  }
}
.p-lead_catchphrase.is-show .p-lead_catchphrase_row .delay7-13 {
  transition-delay: 1.3s;
}
@media screen and (min-width: 768px) {
  .p-lead_catchphrase.is-show .p-lead_catchphrase_row .delay7-13 {
    transition-delay: 0.7s;
  }
}

.p-lead_catchphrase_row {
  display: inline-block;
  overflow: hidden;
  height: -moz-fit-content;
  height: fit-content;
}

.p-lead_catchphrase-en .p-lead_catchphrase_row span {
  font-family: "Montserrat", sans-serif;
  font-size: 48px;
  font-weight: 600;
  line-height: 1.125;
  letter-spacing: -3.6px;
}
@media screen and (min-width: 768px) {
  .p-lead_catchphrase-en .p-lead_catchphrase_row span {
    font-size: 110px;
    letter-spacing: normal;
  }
}
.p-lead_catchphrase-en .p-lead_catchphrase_row span.lsLarge {
  letter-spacing: normal;
}

.p-lead_catchphrase-ja .p-lead_catchphrase_row span {
  font-size: 18px;
  font-weight: 600;
  line-height: 1.5556;
  letter-spacing: normal;
}
@media screen and (min-width: 768px) {
  .p-lead_catchphrase-ja .p-lead_catchphrase_row span {
    font-size: 26px;
    line-height: 2.30769;
  }
}
@media screen and (max-width: 370px) {
  .p-lead_catchphrase-ja .p-lead_catchphrase_row span {
    font-size: 16px;
  }
}

.p-lead_bottomSpace {
  width: 100%;
  height: 170.22849vw;
}
@media screen and (min-width: 768px) {
  .p-lead_bottomSpace {
    height: 64.89583vw;
  }
}

.p-lead_images {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.p-lead_image {
  position: absolute;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.p-lead_image img {
  width: 100%;
  height: 100%;
  will-change: transform;
  transform: translateY(0);
}
.p-lead_image.image1 {
  z-index: 10;
  top: 180.66157vw;
  left: 5.08905vw;
  width: 61.0687vw;
  height: 40.39923vw;
}
@media screen and (min-width: 768px) {
  .p-lead_image.image1 {
    top: 7.55208vw;
    left: calc(50% + 0.72916vw);
    width: 30.46875vw;
    height: 20.15625vw;
  }
}
.p-lead_image.image2 {
  z-index: 15;
  top: 216.28498vw;
  right: 5.34351vw;
  width: 40.71246vw;
  height: 26.97201vw;
}
@media screen and (min-width: 768px) {
  .p-lead_image.image2 {
    top: 25.57291vw;
    right: auto;
    left: calc(50% + 25vw);
    width: 20.83333vw;
    height: 13.80208vw;
  }
}
.p-lead_image.image3 {
  z-index: 15;
  top: 25.44529vw;
  left: 5.59796vw;
  width: 61.0687vw;
  height: 40.26513vw;
}
@media screen and (min-width: 768px) {
  .p-lead_image.image3 {
    top: 32.96875vw;
    left: auto;
    right: calc(50% + 36.35416vw);
    width: 20.83333vw;
    height: 13.80208vw;
  }
}
.p-lead_image.image4 {
  z-index: 10;
  bottom: 91.89516vw;
  left: 15.52162vw;
  width: 30.53435vw;
  height: 20.229vw;
}
@media screen and (min-width: 768px) {
  .p-lead_image.image4 {
    bottom: auto;
    top: 45.41666vw;
    left: calc(50% + 6.04166vw);
    width: 15.625vw;
    height: 10.3125vw;
  }
}
.p-lead_image.image5 {
  z-index: 10;
  top: 55.21628vw;
  right: 5.59796vw;
  width: 45.80152vw;
  height: 30.34351vw;
}
@media screen and (min-width: 768px) {
  .p-lead_image.image5 {
    top: auto;
    bottom: 15.3125vw;
    right: calc(50% + 32.65625vw);
    width: 15.625vw;
    height: 10.41666vw;
  }
}
.p-lead_image.image6 {
  z-index: 10;
  bottom: 31.18091vw;
  left: 5.08905vw;
  width: 72.51908vw;
  height: 47.96615vw;
}
@media screen and (min-width: 768px) {
  .p-lead_image.image6 {
    bottom: 7.34375vw;
    left: calc(50% + 0.72916vw);
    width: 36.45833vw;
    height: 24.11458vw;
  }
}

.p-leadStart,
.p-leadEnd {
  display: block;
  height: 1px;
}

.l-about {
  padding-top: 80px;
  padding-bottom: 78px;
  background: #FCF9F1;
}
@media screen and (min-width: 768px) {
  .l-about {
    padding-top: 79px;
    padding-bottom: 80px;
  }
}

.p-about_contents {
  display: flex;
  flex-direction: column;
  gap: 35px;
}
@media screen and (min-width: 768px) {
  .p-about_contents {
    flex-direction: row;
    gap: 30px;
  }
}

.p-about_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 5px;
}
@media screen and (min-width: 768px) {
  .p-about_title {
    align-items: start;
  }
}
.p-about_title p {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-about_title p {
    font-size: 80px;
  }
}
.p-about_title h2 {
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55556;
}

.p-about_main,
.p-about_sub {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-about_main,
  .p-about_sub {
    width: calc((100% - 30px) / 2);
  }
}

.p-about_main_heading {
  margin-top: 57px;
}
.p-about_main_heading h3 {
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-about_main_heading h3 {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.65;
  }
}

.p-about_main_text {
  margin-top: 21px;
}
.p-about_main_text p {
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-about_main_text p {
    font-size: 18px;
    line-height: 2.22222;
  }
}
.p-about_main_text p + p {
  margin-top: 38px;
}

.p-about_linkButton {
  margin-top: 56px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-about_linkButton {
    margin-top: 57px;
    text-align: left;
  }
}
.p-about_linkButton.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .p-about_linkButton.pc {
    display: block;
  }
}
@media screen and (min-width: 768px) {
  .p-about_linkButton.sp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .p-about_imageArea {
    position: sticky;
    top: 100px;
  }
}

.p-about_image {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-about_image img {
  width: 100%;
  max-width: 347px;
  aspect-ratio: 572/532;
}
@media screen and (min-width: 768px) {
  .p-about_image img {
    max-width: 572px;
  }
}
.p-about_image .hover {
  position: absolute;
  z-index: 20;
  inset: 0;
  opacity: 0;
  transition: opacity 0.2s ease-in;
}
@media (any-hover: hover) {
  .p-about_image a:hover .hover {
    opacity: 1;
  }
}

.l-service {
  padding-top: 82px;
  padding-bottom: 80px;
  background: #FFF;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-service {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.p-service_headArea {
  margin-top: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .p-service_headArea {
    margin-top: 50px;
    gap: 60px;
  }
}

.p-service_headText {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.p-service_headText strong {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.45455;
}
.p-service_headText p {
  text-align: center;
  font-size: 18px;
  line-height: 1.66667;
}

.p-service_headLogo img {
  width: 200px;
  aspect-ratio: 200/41;
}
@media screen and (min-width: 768px) {
  .p-service_headLogo img {
    width: 300px;
  }
}

.p-service_bgCircle {
  position: relative;
}
.p-service_bgCircle picture {
  position: absolute;
  z-index: 5;
  top: 142px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  aspect-ratio: 1200/800;
}
.p-service_bgCircle img {
  width: 100%;
  aspect-ratio: 1200/800;
}

.p-service_swiperArea {
  margin-top: 50px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .p-service_swiperArea {
    margin-top: 80px;
    width: 100%;
    max-width: 1230px;
    margin-inline: auto;
  }
}

.p-srvSwiper {
  overflow: visible;
}

.p-srvSwiper_slide {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: 15px;
}
@media screen and (min-width: 768px) {
  .p-srvSwiper_slide {
    margin-inline: 30px;
  }
}
.p-srvSwiper_slide.swiper-slide-prev .p-srvSwiper_heading, .p-srvSwiper_slide.swiper-slide-next .p-srvSwiper_heading {
  opacity: 0;
}

.p-srvSwiper_heading {
  transition: opacity 0.2s ease;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-srvSwiper_heading p {
  text-align: center;
  font-size: 22px;
  font-weight: 600;
  line-height: 1;
}
.p-srvSwiper_heading p.colorGreen {
  color: #14AF91;
}
.p-srvSwiper_heading p.colorBlue {
  color: #0F83C6;
}
.p-srvSwiper_heading p.colorOrange {
  color: #E1690D;
}
.p-srvSwiper_heading p span {
  display: inline-block;
}

.p-srvSwiper_card {
  margin-top: 120px;
}
@media screen and (min-width: 768px) {
  .p-srvSwiper_card {
    margin-top: 141px;
  }
}
.p-srvSwiper_card a {
  transition: opacity 0.2s ease-in;
}
@media (any-hover: hover) {
  .p-srvSwiper_card a:hover {
    opacity: 0.7;
  }
}

.p-srvSwiper_cardContainer {
  width: 100%;
  max-width: 300px;
  border-radius: 18px;
  background: #FFF;
  box-shadow: 0 -10px 10px 0 rgba(0, 0, 0, 0.03), -10px 0 10px 0 rgba(0, 0, 0, 0.03), 10px 0 10px 0 rgba(0, 0, 0, 0.03), 0 10px 10px 0 rgba(0, 0, 0, 0.03);
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-srvSwiper_cardContainer {
    max-width: 360px;
  }
}
@media screen and (min-width: 768px) {
  .p-srvSwiper_cardContainer.underCard {
    max-width: 700px;
  }
  .p-srvSwiper_cardContainer.underCard .p-srvSwiper_cardLink {
    padding-left: 41px;
  }
}

.p-srvSwiper_cardHeading {
  padding: 10px 20px;
  border-radius: 21px;
  position: absolute;
  top: -23.293px;
  left: 50%;
  transform: translateX(-50%);
}
.p-srvSwiper_cardHeading.bgGreen {
  background: #14AF91;
}
.p-srvSwiper_cardHeading.bgBlue {
  background: #0F83C6;
}
.p-srvSwiper_cardHeading.bgOrange {
  background: #E1690D;
}
.p-srvSwiper_cardHeading.bgRed {
  background: #E05353;
}
.p-srvSwiper_cardHeading p {
  white-space: nowrap;
  color: #FFF;
  font-weight: 600;
  line-height: 1.375;
}

.p-srvSwiper_cardMain {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  padding: 50px 40px 30px;
}
@media screen and (min-width: 768px) {
  .p-srvSwiper_cardMain.underCard {
    flex-direction: row;
    gap: 20px;
  }
  .p-srvSwiper_cardMain.underCard .p-srvSwiper_cardTitle,
  .p-srvSwiper_cardMain.underCard .p-srvSwiper_cardText {
    width: calc((100% - 20px) / 2);
  }
  .p-srvSwiper_cardMain.underCard .p-srvSwiper_cardTitle {
    width: -moz-fit-content;
    width: fit-content;
    margin-inline: auto;
  }
}

.p-srvSwiper_cardTitle img {
  width: 200px;
  height: 41.707px;
}

.p-srvSwiper_cardText {
  height: 96px;
}
@media screen and (min-width: 768px) {
  .p-srvSwiper_cardText {
    height: auto;
  }
}
.p-srvSwiper_cardText p {
  text-align: left;
  font-size: 18px;
  line-height: 1.77778;
}

.p-srvSwiper_cardLinkArea {
  overflow: hidden;
  border-radius: 0 0 18px 18px;
}

.p-srvSwiper_cardLink {
  padding: 17px 0 19px 15px;
  background: #FBE8D6;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
}
.p-srvSwiper_cardLink p {
  font-weight: 600;
  line-height: 0.9375;
}
.p-srvSwiper_cardLink span {
  display: block;
  width: 24px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border-radius: 50%;
  position: relative;
}
.p-srvSwiper_cardLink span::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 9.723px;
  background: url(../img/btnArrow-icon.svg) no-repeat center center/contain;
}
.p-srvSwiper_cardLink span.iconGreen {
  background: #14AF91;
}
.p-srvSwiper_cardLink span.iconBlue {
  background: #0F83C6;
}
.p-srvSwiper_cardLink span.iconOrange {
  background: #E1690D;
}
.p-srvSwiper_cardLink span.iconRed {
  background: #E05353;
}

.p-srvSwiper_bar {
  position: absolute;
  z-index: 20;
  top: 50px;
  left: 50%;
  transform: translateX(-50%);
  width: 353px;
  height: 6px;
}
@media screen and (min-width: 768px) {
  .p-srvSwiper_bar {
    width: 920px;
  }
}
.p-srvSwiper_bar::after {
  content: "";
  position: absolute;
  top: 4px;
  left: 52%;
  transform: translateX(-50%);
  width: 25px;
  aspect-ratio: 1/1;
  background: url(../img/triangle.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-srvSwiper_bar::after {
    left: 50.6%;
    width: 26px;
  }
}
.p-srvSwiper_bar img {
  width: 100%;
}

.p-srvSwiper_prevBtn,
.p-srvSwiper_nextBtn {
  display: block;
  position: absolute;
  top: 30px;
  width: 16px;
  height: 16px;
  background: url(../img/triangle.svg) no-repeat center center/contain;
  pointer-events: auto;
  transition: opacity 0.2s ease-in;
}
@media screen and (min-width: 768px) {
  .p-srvSwiper_prevBtn,
  .p-srvSwiper_nextBtn {
    top: 31px;
    width: 17px;
    height: 17px;
  }
}
@media (any-hover: hover) {
  .p-srvSwiper_prevBtn:hover,
  .p-srvSwiper_nextBtn:hover {
    opacity: 0.7;
  }
}
.p-srvSwiper_prevBtn svg,
.p-srvSwiper_nextBtn svg {
  display: none;
}

.p-srvSwiper_prevBtn {
  left: calc(50% - 82px);
}
@media screen and (min-width: 768px) {
  .p-srvSwiper_prevBtn {
    left: calc(50% - 134px);
  }
}

.p-srvSwiper_nextBtn {
  right: calc(50% - 94px);
}
@media screen and (min-width: 768px) {
  .p-srvSwiper_nextBtn {
    right: calc(50% - 134px);
  }
}

.p-service_underCardArea {
  margin-top: 64px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-service_underCardArea {
    margin-top: 102px;
  }
}
.p-service_underCardArea .p-srvSwiper_card {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.p-service_linkButton {
  position: relative;
  z-index: 10;
  margin-top: 41px;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-service_linkButton {
    margin-top: 76px;
  }
}

.l-information {
  padding-top: 80px;
  padding-bottom: 79px;
  background: #FCF9F1;
}
@media screen and (min-width: 768px) {
  .l-information {
    padding-top: 124px;
    padding-bottom: 119px;
  }
}

.p-information_cards {
  margin-top: 40px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (min-width: 768px) {
  .p-information_cards {
    margin-top: 49px;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 30px;
  }
}
.p-information_cards li > a {
  transition: opacity 0.2s ease-in;
}
@media (any-hover: hover) {
  .p-information_cards li > a:hover {
    opacity: 0.7;
  }
}
.p-information_cards li:first-child .p-information_card {
  border-top: 1px solid #CCC;
}
@media screen and (min-width: 768px) {
  .p-information_cards li:first-child .p-information_card {
    border-top: 1px solid #E6DEC7;
  }
}
@media screen and (min-width: 768px) {
  .p-information_cards li:nth-child(2) .p-information_card {
    border-top: 1px solid #E6DEC7;
  }
}

.p-information_card {
  padding-top: 29px;
  padding-bottom: 29px;
  border-bottom: 1px solid #CCC;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media screen and (min-width: 768px) {
  .p-information_card {
    padding-top: 30px;
    padding-bottom: 29px;
    border-bottom: 1px solid #E6DEC7;
  }
}

.p-information_card_head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.p-information_card_headDate {
  font-family: "Montserrat", sans-serif;
}

.p-information_card_headCategory {
  padding: 6px 15px;
  border-radius: 18px;
}
.p-information_card_headCategory p {
  color: #FFF;
  font-weight: 600;
  line-height: 1;
}

.p-information_card_title {
  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.p-information_link {
  margin-top: 30px;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .p-information_link {
    margin-top: 40px;
  }
}
@media (any-hover: hover) {
  .p-information_link a:hover {
    transition: opacity 0.2s ease-in;
  }
}
@media (any-hover: hover) and (any-hover: hover) {
  .p-information_link a:hover:hover {
    opacity: 0.7;
  }
}

.p-information_linkInner {
  display: flex;
  align-items: center;
  gap: 6px;
}
.p-information_linkInner p {
  font-weight: 600;
  line-height: 0.9375;
}
.p-information_linkInner .arrowIcon {
  display: block;
  width: 24px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border-radius: 50%;
  background: #101010;
  position: relative;
}
.p-information_linkInner .arrowIcon::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 9.723px;
  background: url(../img/btnArrow-icon.svg) no-repeat center center/contain;
}

.l-client {
  padding-top: 82px;
  padding-bottom: 81px;
  background: #FFF;
}
@media screen and (min-width: 768px) {
  .l-client {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}

.p-client_list {
  margin-top: 39px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
  max-width: 578px;
  margin-inline: auto;
  gap: 18px;
}
@media screen and (min-width: 768px) {
  .p-client_list {
    margin-top: 50px;
    max-width: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 26px;
  }
}

.p-client_image img {
  width: 100%;
  max-width: 280px;
}

.l-aboutMv {
  padding-top: 70px;
}
@media screen and (min-width: 768px) {
  .l-aboutMv {
    padding-top: 90px;
  }
}

.l-aboutHead {
  padding-top: 22px;
  padding-bottom: 77px;
  background: #FFF;
}
@media screen and (min-width: 768px) {
  .l-aboutHead {
    padding-bottom: 122px;
  }
}

.p-aboutHead_contents {
  margin-top: 27px;
  display: flex;
  flex-direction: column;
  gap: 35px;
}
@media screen and (min-width: 768px) {
  .p-aboutHead_contents {
    margin-top: 54px;
    flex-direction: row;
    gap: 28px;
  }
}

.p-aboutHead_main,
.p-aboutHead_imageArea {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-aboutHead_main,
  .p-aboutHead_imageArea {
    width: calc((100% - 28px) / 2);
  }
}

.p-aboutHead_main_heading strong {
  font-size: 18px;
  font-weight: 700;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-aboutHead_main_heading strong {
    font-size: 24px;
    font-weight: 600;
    line-height: 1.65;
  }
}

.p-aboutHead_main_text {
  margin-top: 34px;
}
@media screen and (min-width: 768px) {
  .p-aboutHead_main_text {
    width: 100%;
    max-width: 491px;
  }
}
.p-aboutHead_main_text p {
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .p-aboutHead_main_text p {
    font-size: 18px;
  }
}
.p-aboutHead_main_text p + p {
  margin-top: 44px;
}
@media screen and (min-width: 768px) {
  .p-aboutHead_main_text p + p {
    margin-top: 50px;
  }
}

@media screen and (min-width: 768px) {
  .p-aboutHead_imageArea {
    padding-top: 30px;
  }
}

@media screen and (min-width: 768px) {
  .p-aboutHead_images {
    position: sticky;
    top: 100px;
  }
}

.p-aboutHead_image {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-aboutHead_image img {
  width: 100%;
  max-width: 347px;
  aspect-ratio: 572/532;
}
@media screen and (min-width: 768px) {
  .p-aboutHead_image img {
    max-width: 572px;
  }
}
.p-aboutHead_image .hover {
  position: absolute;
  z-index: 20;
  inset: 0;
  opacity: 0;
  transition: opacity 0.2s ease-in;
}
@media (any-hover: hover) {
  .p-aboutHead_image:hover .hover {
    opacity: 1;
  }
}

.l-aboutStrengths {
  padding-top: 80px;
  padding-bottom: 80px;
  background: #FBE8D6;
}
@media screen and (min-width: 768px) {
  .l-aboutStrengths {
    padding-top: 115px;
    padding-bottom: 200px;
  }
}

.p-aboutStrengths_title {
  gap: 3px;
}
.p-aboutStrengths_title p {
  text-align: center;
}

.p-aboutStrengths_list {
  margin-top: 61px;
  display: flex;
  flex-direction: column;
  gap: 60px;
  max-width: 1020px;
  width: 100%;
  margin-inline: auto;
}

.p-strCard {
  padding: 30px;
  border-radius: 18px;
  background: #FFF;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 47px;
}
@media screen and (min-width: 768px) {
  .p-strCard {
    padding: 60px 60px 57px 47px;
    flex-direction: row;
  }
}
.p-strCard.card2 {
  padding-top: 78px;
  padding-bottom: 74px;
}

.p-strCard_image {
  text-align: center;
  flex-grow: 1;
}
.p-strCard_image img {
  width: 100%;
}
.p-strCard_image img.image1 {
  max-width: 229px;
  aspect-ratio: 229/294;
}
.p-strCard_image img.image2 {
  max-width: 291px;
  aspect-ratio: 291/247;
}
.p-strCard_image img.image3 {
  max-width: 300px;
  aspect-ratio: 300/300;
}

.p-strCard_body {
  display: flex;
  flex-direction: column;
  gap: 26px;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-strCard_body {
    width: 59.0909%;
    flex-shrink: 0;
  }
}

.p-strCard_heading {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.p-strCard_heading p, .p-strCard_heading h3 {
  font-size: 24px;
  font-weight: 600;
}
.p-strCard_heading p {
  color: #E1690D;
  font-family: "Montserrat", sans-serif;
  line-height: 1;
}
.p-strCard_heading h3 {
  line-height: 1.33333;
}

.p-strCard_text p {
  font-size: 18px;
  line-height: 1.85;
}
.p-strCard_text p + p {
  margin-top: 35px;
}

.l-aboutService {
  padding-top: 95px;
  padding-bottom: 80px;
  background: #FCF9F1;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-aboutService {
    padding-bottom: 120px;
  }
}

.p-aboutService_title {
  gap: 3px;
}

.p-aboutService_bgCircle {
  position: relative;
}
.p-aboutService_bgCircle picture {
  position: absolute;
  z-index: 5;
  top: 246px;
  left: 50%;
  transform: translateX(-50%);
  width: 1200px;
  aspect-ratio: 1200/800;
}
.p-aboutService_bgCircle img {
  width: 100%;
  aspect-ratio: 1200/800;
}

.p-aboutService_headArea {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-aboutService_headArea {
    margin-top: 73px;
  }
}

.p-aboutService_headLogo {
  text-align: center;
}
.p-aboutService_headLogo img {
  width: 200px;
  aspect-ratio: 200/41;
}
@media screen and (min-width: 768px) {
  .p-aboutService_headLogo img {
    width: 300px;
  }
}

.p-aboutService_swiperArea {
  margin-top: 50px;
  position: relative;
  z-index: 10;
  overflow: hidden;
  padding-bottom: 20px;
}
@media screen and (min-width: 768px) {
  .p-aboutService_swiperArea {
    margin-top: 80px;
    width: 100%;
    max-width: 1230px;
    margin-inline: auto;
  }
}

.p-aboutService_underCardArea {
  margin-top: 64px;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-aboutService_underCardArea {
    margin-top: 102px;
  }
}
.p-aboutService_underCardArea .p-srvSwiper_card {
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
}

.p-aboutService_linkButton {
  margin-top: 41px;
  text-align: center;
  position: relative;
  z-index: 10;
}
@media screen and (min-width: 768px) {
  .p-aboutService_linkButton {
    margin-top: 76px;
  }
}

.l-aboutCompany {
  padding-top: 16px;
  padding-bottom: 80px;
  position: relative;
  background: #FCF9F1;
}
@media screen and (min-width: 768px) {
  .l-aboutCompany {
    padding-bottom: 120px;
  }
}
.l-aboutCompany .l-inner {
  position: relative;
  z-index: 10;
}

.p-aboutCompany_bgCircle {
  position: absolute;
  z-index: 5;
  width: 100%;
  height: 1777px;
  overflow: hidden;
}
.p-aboutCompany_bgCircle::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 3553px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background: #FFF;
}

.p-aboutCompany_title p {
  text-align: center;
}

.p-aboutCompany_headArea {
  margin-top: 50px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 50px;
}

.p-aboutCompany_headImage img {
  width: 100%;
  max-width: 327px;
  height: 104px;
}

.p-aboutCompany_headText p {
  text-align: center;
  line-height: 1.66667;
}
@media screen and (min-width: 768px) {
  .p-aboutCompany_headText p {
    font-size: 18px;
  }
}

.p-aboutCompany_info {
  margin-top: 73px;
  width: 100%;
  max-width: 816px;
  margin-inline: auto;
}

.p-aboutCompany_info_row {
  display: flex;
  gap: 20px;
  padding-top: 23px;
  padding-bottom: 29px;
  border-bottom: 1px solid #C6C6C6;
}
@media screen and (min-width: 768px) {
  .p-aboutCompany_info_row {
    gap: 30px;
  }
}
.p-aboutCompany_info_row:first-child {
  border-top: 1px solid #C6C6C6;
}
@media screen and (min-width: 768px) {
  .p-aboutCompany_info_row dt, .p-aboutCompany_info_row dd {
    font-size: 18px;
  }
}
.p-aboutCompany_info_row dt {
  width: 90px;
  flex-shrink: 0;
}
.p-aboutCompany_info_row dd {
  flex-grow: 1;
}

.l-serviceMv {
  padding-top: 70px;
}
@media screen and (min-width: 768px) {
  .l-serviceMv {
    padding-top: 90px;
  }
}

.l-serviceMain {
  padding-top: 60px;
  padding-bottom: 183px;
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-serviceMain {
    padding-bottom: 440px;
  }
}
.l-serviceMain .l-inner {
  position: relative;
  z-index: 10;
}

.bg-halfCircle {
  position: absolute;
  z-index: 5;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  aspect-ratio: 393/131;
}
@media screen and (min-width: 768px) {
  .bg-halfCircle {
    width: 1200px;
  }
}
.bg-halfCircle.top {
  top: 90px;
}
@media screen and (min-width: 768px) {
  .bg-halfCircle.top {
    top: 30px;
  }
}
.bg-halfCircle.bottom {
  bottom: 0;
}
.bg-halfCircle img {
  width: 100%;
}

.p-serviceMain_headText p {
  text-align: center;
  font-size: 14px;
  line-height: 2.22222;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_headText p {
    font-size: 18px;
  }
}

.p-serviceMain_headLogo {
  margin-top: 58px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_headLogo {
    margin-top: 177px;
  }
}
.p-serviceMain_headLogo img {
  width: 195.217px;
  height: 40px;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_headLogo img {
    width: 237.887px;
    height: 48.743px;
  }
}

.p-serviceMain_detailGroup {
  margin-top: 32px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_detailGroup {
    margin-top: 45px;
  }
}
.p-serviceMain_detailGroup::after {
  content: "";
  position: absolute;
  z-index: 5;
  top: 247px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 340px;
  height: 281px;
  background: url(../img/srvLine_sp.svg) no-repeat center center/100%;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_detailGroup::after {
    top: 278px;
    max-width: 860px;
    height: 323px;
    background: url(../img/srvLine_pc.svg) no-repeat center center/100%;
  }
}
.p-serviceMain_detailGroup > * {
  position: relative;
  z-index: 10;
}

.p-serviceMain_srvCards {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_srvCards {
    gap: 120px;
  }
}

.p-serviceMain_srvCard {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.p-serviceMain_srvCard_title .logo-yadokikaku {
  width: 90px;
  aspect-ratio: 90/19;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_srvCard_title .logo-yadokikaku {
    width: 102px;
    aspect-ratio: 102/22;
  }
}
.p-serviceMain_srvCard_title .logo-bessotoshi {
  width: 98px;
  aspect-ratio: 98/20;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_srvCard_title .logo-bessotoshi {
    width: 110px;
    aspect-ratio: 110/23;
  }
}

.p-serviceMain_srvCard_target {
  margin-top: 16px;
  padding: 5.478px 13.696px;
  border-radius: 18.52px;
  background: #0F83C6;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_srvCard_target {
    margin-top: 18px;
    padding: 6.173px 15.433px;
    border-radius: 16.435px;
  }
}
.p-serviceMain_srvCard_target p {
  color: #FFF;
  font-size: 14.609px;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_srvCard_target p {
    font-size: 16.462px;
  }
}
@media screen and (max-width: 390px) {
  .p-serviceMain_srvCard_target p {
    font-size: clamp(0.688rem, -0.17rem + 4.29vw, 0.875rem);
  }
}

.p-serviceMain_srvCard_image {
  margin-top: 20px;
  height: 73.323px;
  display: flex;
  flex-direction: column;
  justify-content: end;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_srvCard_image {
    margin-top: 21px;
    height: 82.624px;
  }
}

.p-serviceMain_srvCard_text {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_srvCard_text {
    margin-top: 16px;
  }
}
.p-serviceMain_srvCard_text p {
  text-align: center;
  font-weight: 600;
  line-height: 1.25;
}
.p-serviceMain_srvCard_text .colorOrange {
  color: #E1690D;
  font-size: 14.609px;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_srvCard_text .colorOrange {
    font-size: 16.462px;
  }
}
.p-serviceMain_srvCard_text .mainText {
  font-size: 16.435px;
  line-height: 1.45;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_srvCard_text .mainText {
    font-size: 18.52px;
    line-height: 1.6;
  }
}
.p-serviceMain_srvCard_text .note {
  color: #0F83C6;
  font-size: 14.609px;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_srvCard_text .note {
    font-size: 16.462px;
  }
}

.p-serviceMain_yellowBox {
  margin-top: 60px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_yellowBox {
    margin-top: 107px;
  }
}
@media screen and (max-width: 390px) {
  .p-serviceMain_yellowBox {
    margin-top: 73px;
  }
}
.p-serviceMain_yellowBox img {
  width: 100%;
  max-width: 353px;
  aspect-ratio: 353/84;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_yellowBox img {
    max-width: 468px;
    aspect-ratio: 468/104;
  }
}

.p-serviceMain_checkItem {
  padding-left: 21px;
  position: relative;
}
.p-serviceMain_checkItem::before {
  content: "";
  position: absolute;
  top: 13px;
  left: 0;
  width: 14px;
  aspect-ratio: 14/10;
  background: url(../img/checkIcon_service.svg) no-repeat center center/contain;
}
.p-serviceMain_checkItem p {
  font-size: 15px;
  font-weight: 600;
  line-height: 2.13333;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_checkItem p {
    font-size: 18px;
    line-height: 1.77778;
  }
}

.p-serviceMain_yellowBoxImage {
  position: absolute;
  top: 20px;
  right: 12px;
  width: 60.877px;
  height: 51px;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_yellowBoxImage {
    top: 14px;
    right: 18px;
    width: 89.524px;
    height: 81.27px;
  }
}
@media screen and (max-width: 390px) {
  .p-serviceMain_yellowBoxImage {
    top: auto;
    bottom: 7px;
  }
}
.p-serviceMain_yellowBoxImage img {
  width: 100%;
}

.p-serviceMain_agencyArea {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_agencyArea {
    margin-top: 50px;
  }
}

.p-serviceMain_agencyHead {
  width: 100%;
  max-width: 351px;
  padding-top: 12px;
  padding-bottom: 12px;
  border-radius: 25px;
  background: #EF802B;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_agencyHead {
    max-width: 438px;
  }
}
.p-serviceMain_agencyHead p {
  text-align: center;
  color: #FFF;
  font-size: 18px;
  font-weight: 600;
  line-height: 1.44444;
}

.p-serviceMain_agencyContents {
  margin-top: 75px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 40px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_agencyContents {
    margin-top: 39px;
    flex-direction: row;
    align-items: end;
    gap: 37px;
  }
}

.p-serviceMain_agencyContent {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_agencyContent {
    gap: 28px;
    height: 100%;
    justify-content: flex-end;
  }
}
.p-serviceMain_agencyContent.management {
  max-width: 640px;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_agencyContent.management {
    width: 76.46356%;
  }
}

.p-serviceMain_agencyCards {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 38px;
  width: 100%;
  max-width: 404px;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_agencyCards {
    flex-wrap: nowrap;
    max-width: 640px;
    flex-grow: 1;
    gap: 30px;
  }
}

.p-serviceMain_agencyCard {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  flex-direction: column;
  justify-content: end;
  align-items: center;
}
.p-serviceMain_agencyCard.card1 {
  gap: 9px;
}
.p-serviceMain_agencyCard.card1 img {
  width: 74px;
  aspect-ratio: 74/65;
}
.p-serviceMain_agencyCard.card2 {
  gap: 6.5px;
}
.p-serviceMain_agencyCard.card2 img {
  width: 68px;
  aspect-ratio: 68/77;
}
.p-serviceMain_agencyCard.card3 {
  gap: 7.6px;
}
.p-serviceMain_agencyCard.card3 img {
  width: 66px;
  aspect-ratio: 66/72;
}
.p-serviceMain_agencyCard.card4 {
  gap: 6.3px;
}
.p-serviceMain_agencyCard.card4 img {
  width: 83px;
  aspect-ratio: 83/75;
}
.p-serviceMain_agencyCard.card5 {
  gap: 11px;
}
.p-serviceMain_agencyCard.card5 img {
  width: 57px;
  aspect-ratio: 57/59;
}
.p-serviceMain_agencyCard.card6 {
  gap: 11px;
}
.p-serviceMain_agencyCard.card6 img {
  width: 60px;
  aspect-ratio: 60/51;
}

.p-serviceMain_agencyName p {
  text-align: center;
  font-size: 15.803px;
  font-weight: 600;
  line-height: 1.08333;
}
@media screen and (min-width: 768px) and (max-width: 840px) {
  .p-serviceMain_agencyName p {
    font-size: 10px;
  }
}

.p-serviceMain_agencyContent_title {
  border-radius: 20px;
  height: 40px;
  background: #F7F2D9;
  display: grid;
  place-items: center;
}
.p-serviceMain_agencyContent_title.yadokanri {
  width: 100%;
}
.p-serviceMain_agencyContent_title.yadokanri img {
  width: 96px;
  aspect-ratio: 96/21;
}
.p-serviceMain_agencyContent_title.sauna {
  width: 160px;
  margin-inline: auto;
}
.p-serviceMain_agencyContent_title.sauna img {
  width: 101px;
  aspect-ratio: 101/21;
  margin-inline: auto;
}

.p-serviceMain_cycleArea {
  margin: 58px auto 0;
  max-width: 1040px;
  position: relative;
  border-radius: 68px;
  border: 6px solid #FBE8D6;
  background: #FFF;
  padding: 47px 45px 30px;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_cycleArea {
    margin-top: 138px;
    border-radius: 50px;
    padding: 93px 47px 56px 42px;
  }
}

.p-serviceMain_cycleArrows {
  position: absolute;
  inset: 0;
}

.p-serviceMain_cycleArrow {
  position: absolute;
  width: 26px;
  display: grid;
  place-items: center;
}
.p-serviceMain_cycleArrow::after {
  content: "";
  position: absolute;
  bottom: -14px;
  left: 50%;
  transform: translate(-50%, 0);
  width: 39px;
  height: 18px;
  clip-path: polygon(0 0, 50% 100%, 100% 0);
}
@media screen and (min-width: 768px) {
  .p-serviceMain_cycleArrow::after {
    bottom: -10px;
    transform: translate(0);
    left: auto;
    right: -27px;
    width: 29px;
    height: 72px;
    clip-path: polygon(0 0, 0 100%, 100% 50%);
  }
}
.p-serviceMain_cycleArrow p {
  color: #FFF;
  font-weight: 600;
  line-height: 1.0625;
  letter-spacing: 1px;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_cycleArrow p {
    font-size: 22px;
    line-height: 1;
    letter-spacing: normal;
    writing-mode: horizontal-tb;
  }
}
.p-serviceMain_cycleArrow.greenArrow {
  z-index: 25;
  top: 26px;
  right: -8px;
  height: 190px;
  background: #14AF91;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_cycleArrow.greenArrow {
    top: -26px;
    right: auto;
    left: 46px;
    width: 252px;
    height: 50px;
  }
}
.p-serviceMain_cycleArrow.greenArrow::after {
  background: #14AF91;
}
.p-serviceMain_cycleArrow.blueArrow {
  z-index: 23;
  top: 217px;
  right: -7.5px;
  height: 119px;
  background: #0F83C6;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_cycleArrow.blueArrow {
    top: -26px;
    right: auto;
    left: 49.7%;
    transform: translate(-50%, 0);
    width: 252px;
    height: 50px;
  }
}
.p-serviceMain_cycleArrow.blueArrow::after {
  background: #0F83C6;
}
.p-serviceMain_cycleArrow.orangeArrow {
  z-index: 20;
  top: 335px;
  right: -7.5px;
  height: 152px;
  background: #EF802B;
  padding-top: 13px;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_cycleArrow.orangeArrow {
    padding-top: 0;
    top: -26px;
    right: 76px;
    width: 252px;
    height: 50px;
  }
}
.p-serviceMain_cycleArrow.orangeArrow::after {
  background: #EF802B;
}
.p-serviceMain_cycleArrow.yellowArrow {
  top: 41px;
  left: -6px;
  height: 461px;
  background: #FFE556;
  padding-bottom: 41px;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_cycleArrow.yellowArrow {
    padding-bottom: 0;
    top: auto;
    bottom: -26px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 845px;
    height: 44px;
  }
}
.p-serviceMain_cycleArrow.yellowArrow::after {
  bottom: auto;
  top: -14px;
  left: 50%;
  transform: translate(-50%, 0) rotate(180deg);
  background: #FFE556;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_cycleArrow.yellowArrow::after {
    top: 50%;
    left: -28px;
    transform: translate(0, -50%) rotate(180deg);
  }
}
.p-serviceMain_cycleArrow.yellowArrow p {
  color: #101010;
}

.p-serviceMain_cycleCards {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_cycleCards {
    gap: 58px;
  }
}

.p-serviceMain_cycleCards-top {
  display: flex;
  flex-direction: column;
  justify-content: stretch;
  gap: 35px;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_cycleCards-top {
    flex-direction: row;
    gap: 50px;
  }
}
@media screen and (min-width: 768px) {
  .p-serviceMain_cycleCards-top .p-serviceMain_cycleCard {
    width: calc((100% - 100px) / 3);
    height: 140px;
  }
}

@media screen and (min-width: 768px) {
  .p-serviceMain_cycleCards-bottom .p-serviceMain_cycleCard {
    height: 130px;
  }
}

.p-serviceMain_cycleCard {
  border-radius: 18px;
  background: #FFF;
  box-shadow: 0 -10px 10px 0 rgba(0, 0, 0, 0.03), -10px 0 10px 0 rgba(0, 0, 0, 0.03), 10px 0 10px 0 rgba(0, 0, 0, 0.03), 0 10px 10px 0 rgba(0, 0, 0, 0.03);
  display: grid;
  place-items: center;
  width: 100%;
  height: 80px;
  position: relative;
}
.p-serviceMain_cycleCard.pt7 {
  padding-top: 7px;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_cycleCard.pt7 {
    padding-top: 16px;
  }
}
@media screen and (min-width: 768px) {
  .p-serviceMain_cycleCard.pt12-pl17 {
    padding-top: 12px;
    padding-left: 17px;
  }
}
@media screen and (min-width: 768px) {
  .p-serviceMain_cycleCard.pl31 {
    padding-left: 31px;
  }
}

.p-serviceMain_cycleCard_heading {
  position: absolute;
  top: -24px;
  left: 50%;
  transform: translateX(-50%);
  padding: 10px 20px;
  border-radius: 18px;
}
@media screen and (min-width: 768px) {
  .p-serviceMain_cycleCard_heading {
    top: -15px;
  }
}
.p-serviceMain_cycleCard_heading.greenBg {
  background: #14AF91;
}
.p-serviceMain_cycleCard_heading.blueBg {
  background: #0F83C6;
}
.p-serviceMain_cycleCard_heading.orangeBg {
  background: #EF802B;
}
.p-serviceMain_cycleCard_heading.redBg {
  background: #E05353;
}
.p-serviceMain_cycleCard_heading p {
  color: #FFF;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.p-serviceMain_cycleCard_title img {
  height: 24px;
}
.p-serviceMain_cycleCard_title img.logo-bessotoshi {
  width: 113px;
}
@media screen and (min-width: 960px) {
  .p-serviceMain_cycleCard_title img.logo-bessotoshi {
    width: 189px;
    height: 40px;
  }
}
.p-serviceMain_cycleCard_title img.logo-yadokanri {
  width: 108px;
}
@media screen and (min-width: 960px) {
  .p-serviceMain_cycleCard_title img.logo-yadokanri {
    width: 180px;
    height: 39px;
  }
}
.p-serviceMain_cycleCard_title img.logo-saunayado {
  width: 110px;
}
@media screen and (min-width: 960px) {
  .p-serviceMain_cycleCard_title img.logo-saunayado {
    width: 180px;
    height: 39px;
  }
}
.p-serviceMain_cycleCard_title img.logo-yadokikaku {
  width: 113.512px;
}
@media screen and (min-width: 960px) {
  .p-serviceMain_cycleCard_title img.logo-yadokikaku {
    width: 180px;
    height: 38px;
  }
}

.p-serviceOv_title p {
  text-align: center;
}

.p-serviceOv_headText {
  margin-top: 60px;
}
.p-serviceOv_headText p {
  text-align: center;
  font-size: 18px;
  line-height: 2.22222;
}

.p-serviceOv_linkArea {
  margin-top: 35px;
}

.p-serviceOv_linkNote {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-serviceOv_linkNote {
    padding-left: 62px;
  }
}
.p-serviceOv_linkNote p {
  color: #7C7B7B;
  font-size: 18px;
  line-height: 2.22222;
}

.p-serviceOv_list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3px;
}
@media screen and (min-width: 768px) and (max-width: 1400px) {
  .p-serviceOv_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1401px) {
  .p-serviceOv_list {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media (any-hover: hover) {
  .p-serviceOv_list li a:hover .p-serviceOv_card {
    justify-content: center;
    padding: 0 20px;
  }
  .p-serviceOv_list li a:hover .p-serviceOv_cardBg {
    transform: translateY(-100%);
    opacity: 0;
  }
  .p-serviceOv_list li a:hover .pc-default {
    opacity: 0;
  }
  .p-serviceOv_list li a:hover .pc-hover {
    opacity: 1;
  }
  .p-serviceOv_list li a:hover .p-serviceOv_cardNeeds p {
    color: #101010;
  }
  .p-serviceOv_list li a:hover .p-serviceOv_cardBottom {
    opacity: 1;
    transform: scaleY(1);
  }
}

.p-serviceOv_card {
  position: relative;
  height: 36.45833vw;
  min-height: 620px;
  background: #FCF9F1;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  transition: all 0.3s ease-in;
}
@media screen and (min-width: 768px) {
  .p-serviceOv_card {
    min-height: 800px;
  }
}
@media (any-hover: hover) {
  .p-serviceOv_card {
    padding: 13.75vw 20px 0;
    justify-content: start;
  }
}

.p-serviceOv_cardBg {
  position: absolute;
  z-index: 15;
  inset: 0;
  transform: translateY(-100%);
  opacity: 0;
}
@media (any-hover: hover) {
  .p-serviceOv_cardBg {
    transition: all 0.3s ease-in;
    transform-origin: top;
    transform: translateY(0);
    opacity: 0.6;
  }
  .p-serviceOv_cardBg::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.8);
  }
}
.p-serviceOv_cardBg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.p-serviceOv_cardTop {
  position: relative;
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2.96875vw;
}

.p-serviceOv_cardTile {
  position: relative;
}
.p-serviceOv_cardTile img {
  width: 230px;
  transition: opacity 0.3s ease-in;
}
.p-serviceOv_cardTile .pc-default {
  opacity: 0;
}
@media (any-hover: hover) {
  .p-serviceOv_cardTile .pc-default {
    opacity: 1;
  }
}
.p-serviceOv_cardTile .pc-hover {
  position: absolute;
  inset: 0;
  opacity: 1;
}
@media (any-hover: hover) {
  .p-serviceOv_cardTile .pc-hover {
    opacity: 0;
  }
}

.p-serviceOv_cardNeeds p {
  color: #101010;
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.33333;
  transition: color 0.3s ease-in;
}
@media (any-hover: hover) {
  .p-serviceOv_cardNeeds p {
    color: #FFF;
  }
}

.p-serviceOv_cardBottom {
  position: relative;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.19791vw;
  width: 100%;
  max-width: 343px;
  margin-inline: auto;
  opacity: 1;
  transition: all 0.3s ease-in;
}
@media (any-hover: hover) {
  .p-serviceOv_cardBottom {
    opacity: 0;
    transform: scaleY(0);
  }
}

.p-serviceOv_cardHeading {
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
  border-radius: 18px;
}
.p-serviceOv_cardHeading p {
  text-align: center;
  color: #FFF;
  font-weight: 600;
  line-height: 1;
}
.p-serviceOv_cardHeading.bessotoshi {
  background: #14AF91;
}
.p-serviceOv_cardHeading.yadokanri {
  background: #0F83C6;
}
.p-serviceOv_cardHeading.saunayado {
  background: #EF802B;
}
.p-serviceOv_cardHeading.yadokikaku {
  background: #E05353;
}

.p-serviceOv_cardText p {
  color: #101010;
  font-size: 18px;
  line-height: 1.77778;
}

.p-serviceOv_cardLinkText {
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  display: flex;
  align-items: center;
  gap: 6px;
}
.p-serviceOv_cardLinkText p {
  color: #101010;
  font-weight: 600;
  line-height: 0.9375;
}
.p-serviceOv_cardLinkText .circle {
  width: 24px;
  aspect-ratio: 1/1;
  flex-shrink: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
}
.p-serviceOv_cardLinkText .circle.bessotoshi {
  background: #14AF91;
}
.p-serviceOv_cardLinkText .circle.yadokanri {
  background: #0F83C6;
}
.p-serviceOv_cardLinkText .circle.saunayado {
  background: #EF802B;
}
.p-serviceOv_cardLinkText .circle.yadokikaku {
  background: #E05353;
}

.l-detailHead {
  padding-top: 106px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .l-detailHead {
    padding-top: 176px;
  }
}

.p-detailHead_container {
  position: relative;
}

.p-detailHead_thumbnail {
  width: calc(100% - 40px);
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .p-detailHead_thumbnail {
    position: absolute;
    z-index: 5;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
    width: 50.83333vw;
    max-width: 976px;
  }
}
.p-detailHead_thumbnail img {
  width: 100%;
}

.l-detailHead_inner {
  position: relative;
  z-index: 10;
}

.p-detailHead_contents {
  margin-top: 60px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 1024px) {
  .p-detailHead_contents {
    margin-top: 0;
    max-width: 448px;
    background: rgba(255, 255, 255, 0.8);
    align-items: start;
  }
}

.p-detailHead_logo {
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-detailHead_logo {
    text-align: left;
  }
}
.p-detailHead_logo img {
  width: 70%;
  max-width: 350px;
  aspect-ratio: 350/76;
}
@media screen and (min-width: 768px) {
  .p-detailHead_logo img {
    width: 100%;
  }
}

.p-detailHead_text {
  margin-top: 70px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}
.p-detailHead_text strong {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.33333;
}
.p-detailHead_text p {
  font-size: 18px;
  line-height: 1.66667;
}

.p-detailHead_breadcrumb {
  margin-top: 84px;
}

.p-detailHead_button {
  margin-top: 61px;
  width: 100%;
}
.p-detailHead_button a {
  transition: opacity 0.3s ease-in;
}
@media (any-hover: hover) {
  .p-detailHead_button a:hover {
    opacity: 0.7;
  }
}

.p-detailHead_buttonInner {
  width: 100%;
  max-width: 300px;
  height: 60px;
  border-radius: 30px;
  background: #101010;
  display: grid;
  place-items: center;
  position: relative;
  margin-inline: auto;
}
@media screen and (min-width: 1024px) {
  .p-detailHead_buttonInner {
    margin-inline: 0;
  }
}
.p-detailHead_buttonInner::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 28px;
  width: 16.667px;
  height: 16.667px;
  background: url(../img/linkIcon_white.svg) no-repeat center center/contain;
}
.p-detailHead_buttonInner p {
  color: #FFF;
  text-align: center;
  font-weight: 500;
  line-height: 0.9375;
}

.p-detailHead_bgImages {
  margin-top: 20.18229vw;
  position: relative;
  width: 100%;
  height: 50.26041vw;
  display: flex;
  width: -moz-max-content;
  width: max-content;
  animation: imgSlide 30s linear infinite;
}
@media screen and (min-width: 768px) {
  .p-detailHead_bgImages {
    margin-top: 155px;
    height: 386px;
  }
}

@keyframes imgSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}
.p-detailHead_bgImage {
  margin-right: 6.51041vw;
  flex-shrink: 0;
}
@media screen and (min-width: 768px) {
  .p-detailHead_bgImage {
    margin-right: 50px;
  }
}
.p-detailHead_bgImage img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-detailHead_bgImage.image1 {
  width: 52.08333vw;
  height: 34.5052vw;
  padding-top: 62px;
}
@media screen and (min-width: 768px) {
  .p-detailHead_bgImage.image1 {
    width: 400px;
    height: 265px;
  }
}
.p-detailHead_bgImage.image2 {
  width: 39.0625vw;
  height: 25.91145vw;
}
@media screen and (min-width: 768px) {
  .p-detailHead_bgImage.image2 {
    width: 300px;
    height: 199px;
  }
}
.p-detailHead_bgImage.image3 {
  width: 52.08333vw;
  height: 34.5052vw;
  padding-top: 99px;
}
@media screen and (min-width: 768px) {
  .p-detailHead_bgImage.image3 {
    width: 400px;
    height: 265px;
  }
}
.p-detailHead_bgImage.image4 {
  width: 39.0625vw;
  height: 32.68229vw;
  padding-top: 22px;
}
@media screen and (min-width: 768px) {
  .p-detailHead_bgImage.image4 {
    width: 300px;
    height: 251px;
  }
}
.p-detailHead_bgImage.image5 {
  width: 31.25vw;
  height: 27.47395vw;
  padding-top: 148px;
}
@media screen and (min-width: 768px) {
  .p-detailHead_bgImage.image5 {
    width: 240px;
    height: 211px;
  }
}
.p-detailHead_bgImage.image6 {
  width: 52.08333vw;
  height: 34.5052vw;
  padding-top: 22px;
}
@media screen and (min-width: 768px) {
  .p-detailHead_bgImage.image6 {
    width: 400px;
    height: 265px;
  }
}

.p-detailHead_diagram {
  margin-top: 19.79166vw;
}
@media screen and (min-width: 768px) {
  .p-detailHead_diagram {
    margin-top: 152px;
  }
}
.p-detailHead_diagram img {
  width: 100%;
  aspect-ratio: 1200/692;
}

.l-detailService {
  padding-top: 69px;
  padding-bottom: 120px;
}

.p-detailService_title {
  gap: 3px;
}

.p-detailService_headText {
  margin-top: 36px;
  width: 100%;
}
.p-detailService_headText p {
  text-align: center;
  font-size: 18px;
  line-height: 2.1;
}

.p-detailService_cards {
  margin: 76px auto 0;
  display: flex;
  flex-direction: column;
  gap: 60px;
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1101px) {
  .p-detailService_cards {
    flex-direction: row;
    align-items: stretch;
  }
}
.p-detailService_cards li {
  width: -moz-fit-content;
  width: fit-content;
}
@media screen and (min-width: 1101px) {
  .p-detailService_cards li {
    width: calc((100% - 120px) / 3);
  }
}

.p-detCard {
  padding: 36px 28px 35px;
  border-radius: 18px;
  background: #FCF9F1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: start;
  height: 100%;
  max-width: 500px;
}

.p-detCard_heading {
  padding-top: 46px;
  position: relative;
}
.p-detCard_heading::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 32px;
  height: 32px;
  background: url(../img/checkCircle.svg) no-repeat center center/contain;
}
.p-detCard_heading h3 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.33333;
}

.p-detCard_image {
  margin-top: 10px;
  height: 160px;
  display: grid;
  place-items: center;
}
.p-detCard_image img {
  height: 160px;
  -o-object-fit: contain;
     object-fit: contain;
}

.p-detCard_text {
  margin-top: 29px;
}
.p-detCard_text p {
  font-size: 18px;
  line-height: 1.77778;
}

.l-detailFeatures {
  padding-top: 115px;
  padding-bottom: 120px;
  background: #FBE8D6;
}

.p-detailFeatures_title {
  gap: 3px;
}

.p-detailFeatures_list {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.p-dfCard {
  padding: 30px;
  border-radius: 18px;
  background: #FFF;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
@media screen and (min-width: 768px) {
  .p-dfCard {
    flex-direction: row;
    padding: 60px 120px;
    gap: 66px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .p-dfCard {
    padding: 60px;
  }
}

.p-dfCard_head,
.p-dfCard_headText {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-dfCard_head,
  .p-dfCard_headText {
    width: calc((100% - 66px) / 2);
  }
}

.p-dfCard_head {
  display: flex;
  flex-direction: column;
  gap: 17px;
}

.p-dfCard_headTag {
  padding: 17px 6px 23px;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
}
.p-dfCard_headTag::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  aspect-ratio: 200/16;
  background: url(../img/detFeat-cardHeadIcon.svg) no-repeat center center/contain;
}
.p-dfCard_headTag p {
  text-align: center;
  font-family: "Montserrat", sans-serif;
  font-size: 28px;
  font-weight: 600;
  line-height: 1;
}
.p-dfCard_headTag p .colorOrange {
  color: #E1690D;
  font-weight: 600;
  line-height: 1;
}

.p-dfCard_headTitle h3 {
  font-size: 24px;
  font-weight: 600;
  line-height: 1.33333;
}

.p-dfCard_headText p {
  font-size: 18px;
  line-height: 2.22222;
}

.l-detailRelated {
  padding-top: 116px;
  padding-bottom: 120px;
}

.p-detailRelated_title {
  gap: 2px;
}

.p-detailRelated_text {
  margin: 40px auto 0;
  width: 100%;
  max-width: 630px;
}
.p-detailRelated_text p {
  text-align: center;
  font-size: 18px;
  line-height: 2.22222;
}

.p-detailRelated_list {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 29px;
}
@media screen and (min-width: 768px) {
  .p-detailRelated_list {
    grid-template-columns: repeat(2, 1fr);
  }
}

.p-detailRelated_itemInner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.p-detailRelated_itemImage {
  width: 100%;
}
.p-detailRelated_itemImage img {
  width: 100%;
}

.p-detailRelated_itemText p {
  font-size: 18px;
  line-height: 2.22222;
}

.l-detailCase {
  padding-top: 115px;
  padding-bottom: 120px;
  background: #FCF9F1;
}

.p-detailCase_title {
  gap: 4px;
}

.p-detailCase_list {
  margin-top: 56px;
  display: flex;
  flex-direction: column;
  gap: 58px;
}
@media screen and (min-width: 768px) {
  .p-detailCase_list {
    flex-direction: row;
  }
}

.p-detailCase_item {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .p-detailCase_item {
    width: calc((100% - 116px) / 3);
  }
}

.p-detailCase_itemInner {
  display: flex;
  flex-direction: column;
  gap: 38px;
}

.p-detailCase_itemImage img {
  width: 100%;
  aspect-ratio: 360/390;
}

.p-detailCase_itemHeading p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.7778;
}

.l-detailLinkArea {
  padding-top: 130px;
}

@media (any-hover: hover) {
  .p-detailLink_button a:hover .p-detailLink_buttonInner {
    border: 2px solid #0F83C6;
    background: #0F83C6;
  }
  .p-detailLink_button a:hover .p-detailLink_buttonInner::after {
    background: url(../img/linkIcon_white.svg) no-repeat center center/contain;
  }
  .p-detailLink_button a:hover .p-detailLink_button_logo img.default {
    opacity: 0;
  }
  .p-detailLink_button a:hover .p-detailLink_button_logo img.hover {
    opacity: 1;
  }
  .p-detailLink_button a:hover .p-detailLink_button_text p {
    color: #FFF;
  }
}

.p-detailLink_buttonInner {
  width: 100%;
  padding: 30px 0;
  border-radius: 80.5px;
  border: 2px solid #000;
  background: #FBE8D6;
  transition: all 0.2s ease-in;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 31px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-detailLink_buttonInner {
    padding: 61px 0 59px 151px;
    flex-direction: row;
  }
}
@media screen and (min-width: 768px) {
  .p-detailLink_buttonInner::after {
    content: "";
    position: absolute;
    top: 68px;
    right: 120px;
    width: 31px;
    height: 26px;
    background: url(../img/linkIcon.svg) no-repeat center center/contain;
    transition: background 0.2s ease-in;
  }
}

.p-detailLink_button_logo {
  position: relative;
}
.p-detailLink_button_logo img {
  width: 100%;
  max-width: 190px;
  aspect-ratio: 190/41;
}
.p-detailLink_button_logo img.default {
  opacity: 1;
  transition: opacity 0.2s ease-in;
}
.p-detailLink_button_logo img.hover {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.2s ease-in;
}

.p-detailLink_button_text {
  padding-right: 35px;
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .p-detailLink_button_text {
    padding-right: 0;
    width: 100%;
    margin-inline: 0;
  }
}
.p-detailLink_button_text p {
  font-size: 18px;
  font-weight: 500;
  line-height: 1.77778;
  transition: color 0.2s ease-in;
}
.p-detailLink_button_text::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 31px;
  height: 26px;
  background: url(../img/linkIcon.svg) no-repeat center center/contain;
}
@media screen and (min-width: 768px) {
  .p-detailLink_button_text::after {
    display: none;
  }
}

.p-detailOv_linkArea {
  margin-top: 53px;
}

.p-detailOv_linkNote {
  padding-inline: 20px;
}
@media screen and (min-width: 768px) {
  .p-detailOv_linkNote {
    padding-left: 62px;
  }
}
.p-detailOv_linkNote p {
  color: #7C7B7B;
  font-size: 18px;
  line-height: 2.22222;
}

.p-detailOv_list {
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  gap: 3px;
}
@media screen and (min-width: 768px) {
  .p-detailOv_list {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (any-hover: hover) {
  .p-detailOv_list li a:hover .p-serviceOv_card {
    justify-content: center;
    padding: 0 20px;
  }
  .p-detailOv_list li a:hover .p-serviceOv_cardBg {
    transform: translateY(-100%);
    opacity: 0;
  }
  .p-detailOv_list li a:hover .pc-default {
    opacity: 0;
  }
  .p-detailOv_list li a:hover .pc-hover {
    opacity: 1;
  }
  .p-detailOv_list li a:hover .p-serviceOv_cardNeeds p {
    color: #101010;
  }
  .p-detailOv_list li a:hover .p-serviceOv_cardBottom {
    opacity: 1;
    transform: scaleY(1);
  }
}

.p-detailOvLink.is-activePage {
  display: none;
}

.l-archive_pageTitle {
  padding-top: 92px;
}
@media screen and (min-width: 768px) {
  .l-archive_pageTitle {
    padding-top: 152px;
  }
}
@media screen and (min-width: 768px) {
  .l-archive_pageTitle .c-pageTitle {
    gap: 34px;
  }
}
@media screen and (min-width: 768px) {
  .l-archive_pageTitle .c-pageTitleArea {
    gap: 52px;
  }
}

.l-archive_pageLayout {
  margin-top: 90px;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding-bottom: 120px;
}
@media screen and (min-width: 768px) {
  .l-archive_pageLayout {
    flex-direction: row;
  }
}
.l-archive_pageLayout aside {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-archive_pageLayout aside {
    width: 210px;
  }
}
.l-archive_pageLayout main {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-archive_pageLayout main {
    width: calc(100% - 40px - 210px);
  }
}

.l-archive_cards {
  display: grid;
  gap: 25px;
}
@media screen and (max-width: 624px) {
  .l-archive_cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 625px) and (max-width: 767px) {
  .l-archive_cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 768px) and (max-width: 874px) {
  .l-archive_cards {
    grid-template-columns: repeat(1, 1fr);
  }
}
@media screen and (min-width: 875px) and (max-width: 1179px) {
  .l-archive_cards {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1180px) {
  .l-archive_cards {
    grid-template-columns: repeat(3, 1fr);
  }
}
.l-archive_cards li a {
  transition: opacity 0.2s ease-in;
}
@media (any-hover: hover) {
  .l-archive_cards li a:hover {
    opacity: 0.7;
  }
}

.p-archiveCard {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-archiveCard_thumbnail img {
  width: 100%;
  aspect-ratio: 300/200;
}

.p-archiveCard_body {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.p-archiveCard_head {
  display: flex;
  align-items: center;
  gap: 10px;
}

.p-archiveCard_headDate {
  font-family: "Montserrat", sans-serif;
}

.p-archiveCard_headCategory {
  padding: 6px 15px;
  border-radius: 18px;
}
.p-archiveCard_headCategory p {
  color: #FFF;
  font-weight: 600;
  line-height: 1;
}

.p-archive_pagination {
  margin-top: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}
.p-archive_pagination .page-numbers {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: #C7C7C7;
  font-weight: 600;
}
.p-archive_pagination .page-numbers.current {
  color: #E1690D;
}
.p-archive_pagination .page-numbers.prev, .p-archive_pagination .page-numbers.next {
  width: -moz-fit-content;
  width: fit-content;
  color: rgba(0, 0, 0, 0);
  position: relative;
}
.p-archive_pagination .page-numbers.prev::after, .p-archive_pagination .page-numbers.next::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 12.8px;
  height: 12.445px;
}
.p-archive_pagination .page-numbers.prev {
  margin-right: 65px;
}
@media screen and (max-width: 1100px) {
  .p-archive_pagination .page-numbers.prev {
    margin-right: clamp(0.625rem, -7.327rem + 16.57vw, 4.063rem);
  }
}
.p-archive_pagination .page-numbers.prev::after {
  background: url(../img/pagination-prev.svg) no-repeat center center/contain;
}
.p-archive_pagination .page-numbers.next {
  margin-left: 65px;
}
@media screen and (max-width: 1100px) {
  .p-archive_pagination .page-numbers.next {
    margin-left: clamp(0.625rem, -7.327rem + 16.57vw, 4.063rem);
  }
}
.p-archive_pagination .page-numbers.next::after {
  background: url(../img/pagination-next.svg) no-repeat center center/contain;
}
.p-archive_pagination .pagination-first,
.p-archive_pagination .pagination-last {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  .p-archive_pagination .pagination-first,
  .p-archive_pagination .pagination-last {
    font-size: 20px;
  }
}
.p-archive_pagination .pagination-first {
  margin-right: 65px;
}
@media screen and (max-width: 1100px) {
  .p-archive_pagination .pagination-first {
    margin-right: clamp(0.625rem, -7.327rem + 16.57vw, 4.063rem);
  }
}
.p-archive_pagination .pagination-last {
  margin-left: 65px;
}
@media screen and (max-width: 1100px) {
  .p-archive_pagination .pagination-last {
    margin-left: clamp(0.625rem, -7.327rem + 16.57vw, 4.063rem);
  }
}

.l-post_pageLayout {
  margin-top: 100px;
  padding-bottom: 119px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .l-post_pageLayout {
    margin-top: 160px;
    flex-direction: row;
  }
}
.l-post_pageLayout aside {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-post_pageLayout aside {
    width: 210px;
    padding-top: 304px;
  }
}
.l-post_pageLayout main {
  width: 100%;
}
@media screen and (min-width: 768px) {
  .l-post_pageLayout main {
    width: calc(100% - 40px - 210px);
  }
}

.l-post_headArea {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.p-post_title h1 {
  font-size: 28px;
  font-weight: 600;
  line-height: 1.14286;
}

.p-post_info {
  display: flex;
  align-items: center;
  gap: 10px;
}

.p-post_infoDate {
  font-family: "Montserrat", sans-serif;
}

.p-post_infoCategory {
  padding: 6px 15px;
  border-radius: 18px;
}
.p-post_infoCategory p {
  color: #FFF;
  font-weight: 600;
  line-height: 1;
}

.l-post_contents {
  margin-top: 60px;
}
.l-post_contents * + * {
  margin-top: 32px;
}
.l-post_contents p {
  line-height: 2;
}
.l-post_contents h2 {
  color: #EF802B;
  font-size: 24px;
  font-weight: 700;
  line-height: 1.33333;
  padding-bottom: 24px;
  position: relative;
  margin-bottom: 30px;
}
.l-post_contents h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, #0F83C6 10%, #E1690D 10%);
}
.l-post_contents h3 {
  font-size: 22px;
  font-weight: 700;
  line-height: 1.45455;
  padding-left: 20px;
  position: relative;
  margin-bottom: 30px;
}
.l-post_contents h3::before {
  content: "";
  position: absolute;
  top: 0;
  left: -2px;
  width: 4px;
  height: 100%;
  background: #0F83C6;
}
.l-post_contents h4 {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.6;
  margin-bottom: 15px;
}
.l-post_contents h5 {
  font-size: 18px;
  font-weight: 700;
  line-height: 1.77778;
  margin-bottom: 15px;
}
.l-post_contents h6 {
  font-weight: 700;
  line-height: 2;
  margin-bottom: 15px;
}
.l-post_contents a {
  color: #0F83C6;
  font-weight: 500;
  line-height: 2;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-underline-position: from-font;
}
@media (any-hover: hover) {
  .l-post_contents a:hover {
    opacity: 0.8;
  }
}

.l-post_link {
  margin-top: 60px;
}

.p-postNav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.p-postNav_prev a,
.p-postNav_next a {
  font-family: "Montserrat", sans-serif;
  font-weight: 600;
  position: relative;
  transition: opacity 0.2s ease-in;
}
.p-postNav_prev a::after,
.p-postNav_next a::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 12.8px;
  height: 12.445px;
}
@media (any-hover: hover) {
  .p-postNav_prev a:hover,
  .p-postNav_next a:hover {
    opacity: 0.7;
  }
}

.p-postNav_prev a {
  padding-left: 29px;
}
.p-postNav_prev a::after {
  left: 0;
  background: url(../img/pagination-prev.svg) no-repeat center center/contain;
}

@media (any-hover: hover) {
  .p-postNav_archive a:hover .p-postNav_buttonInner {
    background: #FFF;
  }
  .p-postNav_archive a:hover .p-postNav_buttonInner p {
    color: #101010;
  }
}

.p-postNav_buttonInner {
  padding: 17px 29px;
  border-radius: 25px;
  border: 1px solid #101010;
  background: #101010;
  transition: background 0.3s ease-in;
}
@media screen and (min-width: 768px) {
  .p-postNav_buttonInner {
    padding: 18px 92px;
  }
}
.p-postNav_buttonInner p {
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  transition: color 0.3s ease-in;
}

.p-postNav_next a {
  padding-right: 29px;
}
.p-postNav_next a::after {
  right: 0;
  background: url(../img/pagination-next.svg) no-repeat center center/contain;
}

.l-contact_pageTitle {
  padding-top: 103px;
}
@media screen and (min-width: 768px) {
  .l-contact_pageTitle {
    padding-top: 163px;
  }
}

.l-contact_head {
  margin-top: 70px;
}

.p-contact_message {
  padding-inline: 23px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  position: relative;
}
.p-contact_message h2 {
  text-align: center;
  font-size: 24px;
  font-weight: 600;
  line-height: 1.6667;
}
.p-contact_message::before, .p-contact_message::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 1px;
  height: 24px;
  background: #222;
}
.p-contact_message::before {
  left: 6px;
  transform: translateY(-50%) rotate(-36deg);
}
.p-contact_message::after {
  right: 6px;
  transform: translateY(-50%) rotate(36deg);
}

.p-contact_text {
  margin-top: 16px;
}
.p-contact_text p {
  text-align: center;
  font-size: 18px;
  line-height: 2.1;
}

.p-contact_images {
  margin-top: 36px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 47px;
}

.p-contact_image img {
  width: 100%;
  max-width: 100px;
  aspect-ratio: 145/30;
}
@media screen and (min-width: 768px) {
  .p-contact_image img {
    max-width: 145px;
  }
}

.l-contact_main {
  margin-top: 79px;
  margin-bottom: 120px;
}
.l-contact_main #satori__creative_container {
  padding: 49.449px 15px 49.45px;
  border-radius: 10px;
  background: #FBE8D6;
}
@media screen and (min-width: 768px) {
  .l-contact_main #satori__creative_container {
    padding: 49.449px 50.5px 49.45px 49.5px;
  }
}

.l-contact_inner {
  max-width: 880px;
}

.l-contactThanks {
  margin-top: 60px;
  margin-bottom: 102px;
}

.p-contactThanks_message p {
  text-align: left;
  font-size: 18px;
  line-height: 2.22222;
}
@media screen and (min-width: 768px) {
  .p-contactThanks_message p {
    text-align: center;
  }
}
.p-contactThanks_message p + p {
  margin-top: 40px;
}

.p-contactThanks_linkButton {
  margin-top: 60px;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.p-contactThanks_linkButton a {
  transition: opacity 0.3s ease-in;
}
@media (any-hover: hover) {
  .p-contactThanks_linkButton a:hover {
    opacity: 0.7;
  }
}

.p-ctlbInner {
  padding: 18px 30px;
  border-radius: 25px;
  background: #101010;
}
@media screen and (min-width: 768px) {
  .p-ctlbInner {
    padding: 18px 92px;
  }
}
.p-ctlbInner p {
  color: #FFF;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
}

.l-privacy_pageTitle {
  padding-top: 118px;
}
@media screen and (min-width: 768px) {
  .l-privacy_pageTitle {
    padding-top: 178px;
  }
}

.l-privacy_headArea {
  margin-top: 60px;
}
.l-privacy_headArea p, .l-privacy_headArea dt, .l-privacy_headArea dd {
  font-size: 16px;
  line-height: 1.88889;
}
@media screen and (min-width: 768px) {
  .l-privacy_headArea p, .l-privacy_headArea dt, .l-privacy_headArea dd {
    font-size: 18px;
  }
}
.l-privacy_headArea p.fw600, .l-privacy_headArea dt.fw600, .l-privacy_headArea dd.fw600 {
  font-weight: 600;
}
.l-privacy_headArea .mt12 {
  margin-top: 12px;
}

.p-privacy_headList {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.p-privacy_headList > li {
  padding-left: 23px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-privacy_headList > li {
    padding-left: 39px;
  }
}
.p-privacy_headList > li::before {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  line-height: 1.88889;
}
.p-privacy_headList > li:nth-child(1)::before {
  content: "1.";
}
.p-privacy_headList > li:nth-child(2)::before {
  content: "2.";
}
.p-privacy_headList > li:nth-child(3)::before {
  content: "3.";
}
.p-privacy_headList > li:nth-child(4)::before {
  content: "4.";
}
.p-privacy_headList > li:nth-child(5)::before {
  content: "5.";
}
.p-privacy_headList > li:nth-child(6)::before {
  content: "6.";
}

.p-privacy_headInfo {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.p-privacy_headInfo > dl {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-privacy_headInfo > dl > div {
  display: flex;
}
.p-privacy_headInfo > dl > div dt::after {
  content: "：";
}

.l-privacy_psnInfo {
  margin-top: 30px;
}
.l-privacy_psnInfo p, .l-privacy_psnInfo li, .l-privacy_psnInfo h3 {
  font-size: 16px;
  line-height: 1.88889;
}
@media screen and (min-width: 768px) {
  .l-privacy_psnInfo p, .l-privacy_psnInfo li, .l-privacy_psnInfo h3 {
    font-size: 18px;
  }
}
.l-privacy_psnInfo .mt12 {
  margin-top: 12px;
}
.l-privacy_psnInfo .mt15 {
  margin-top: 15px;
}

.p-privacy_psnInfo_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}
.p-privacy_psnInfo_title h2 {
  text-align: center;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.53846;
}
@media screen and (min-width: 768px) {
  .p-privacy_psnInfo_title h2 {
    font-size: 26px;
  }
}
.p-privacy_psnInfo_title p {
  text-align: center;
  font-weight: 500;
  line-height: 2.22222;
}

.p-privacy_psnInfo_text.protectionManager p + p {
  margin-top: 8px;
}

.p-privacy_psnInfo_group {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-privacy_psnInfo_heading h3 {
  font-weight: 600;
}

.p-privacy_psnInfo_circleList {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-privacy_psnInfo_circleList li:nth-child(1)::before {
  content: "①";
}
.p-privacy_psnInfo_circleList li:nth-child(2)::before {
  content: "②";
}
.p-privacy_psnInfo_circleList li:nth-child(3)::before {
  content: "③";
}
.p-privacy_psnInfo_circleList li:nth-child(4)::before {
  content: "④";
}
.p-privacy_psnInfo_circleList li:nth-child(5)::before {
  content: "⑤";
}

.p-privacy_psnInfo_pointList {
  display: flex;
  flex-direction: column;
}
.p-privacy_psnInfo_pointList li {
  padding-left: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-privacy_psnInfo_pointList li {
    padding-left: 27px;
  }
}
.p-privacy_psnInfo_pointList li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-privacy_psnInfo_pointList li::before {
    left: 4px;
  }
}

.p-privacy_psnInfo_note p::before {
  content: "※";
}
.p-privacy_psnInfo_note p + p {
  margin-top: 8px;
}
.p-privacy_psnInfo_note.mt-4 {
  margin-top: -4px;
}

.p-privacy_psnInfo_contentsHead p {
  font-weight: 600;
}
.p-privacy_psnInfo_contentsHead p::before {
  content: "＜";
}
.p-privacy_psnInfo_contentsHead p::after {
  content: "＞";
}

.l-privacy_psnData {
  margin-top: 30px;
  padding-bottom: 81px;
}
@media screen and (min-width: 768px) {
  .l-privacy_psnData {
    padding-bottom: 121px;
  }
}
.l-privacy_psnData p, .l-privacy_psnData h3, .l-privacy_psnData h4, .l-privacy_psnData h5, .l-privacy_psnData h6, .l-privacy_psnData dt, .l-privacy_psnData dd {
  font-size: 16px;
  line-height: 1.88889;
}
@media screen and (min-width: 768px) {
  .l-privacy_psnData p, .l-privacy_psnData h3, .l-privacy_psnData h4, .l-privacy_psnData h5, .l-privacy_psnData h6, .l-privacy_psnData dt, .l-privacy_psnData dd {
    font-size: 18px;
  }
}
.l-privacy_psnData .gap0 {
  gap: 0;
}
.l-privacy_psnData .gap10 {
  gap: 10px;
}
.l-privacy_psnData .mt-1 {
  margin-top: -1px;
}
.l-privacy_psnData .mt-2 {
  margin-top: -2px;
}
.l-privacy_psnData .ml-4 {
  margin-left: -4px;
}

.p-privacy_psnData_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}
.p-privacy_psnData_title h2 {
  text-align: center;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.53846;
}
@media screen and (min-width: 768px) {
  .p-privacy_psnData_title h2 {
    font-size: 26px;
  }
}
.p-privacy_psnData_title p {
  text-align: center;
  font-weight: 500;
  line-height: 2.22222;
  letter-spacing: 0.3px;
}

.p-privacy_psnData_mainList {
  margin-top: 15px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-privacy_psnData_mainList > li {
  padding-left: 23px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-privacy_psnData_mainList > li {
    padding-left: 39px;
  }
}
.p-privacy_psnData_mainList > li::before {
  position: absolute;
  top: 0;
  left: 0;
  font-size: 18px;
  line-height: 1.88889;
}
.p-privacy_psnData_mainList > li:nth-child(1)::before {
  content: "1.";
}
.p-privacy_psnData_mainList > li:nth-child(2)::before {
  content: "2.";
}
.p-privacy_psnData_mainList > li:nth-child(3)::before {
  content: "3.";
}
.p-privacy_psnData_mainList > li:nth-child(4)::before {
  content: "4.";
}
.p-privacy_psnData_mainList > li:nth-child(5)::before {
  content: "5.";
}
.p-privacy_psnData_mainList > li:nth-child(6)::before {
  content: "6.";
}
.p-privacy_psnData_mainList h3, .p-privacy_psnData_mainList h4, .p-privacy_psnData_mainList h6 {
  font-weight: 400;
}
.p-privacy_psnData_mainList h5 {
  font-weight: 600;
}

.p-privacy_psnData_mainGroup {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.p-privacy_psnData_subList {
  margin-top: 3px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.p-privacy_psnData_subGroup {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-privacy_psnData_subGroup:nth-child(1) h4::before {
  content: "（１）";
}
.p-privacy_psnData_subGroup:nth-child(2) h4::before {
  content: "（２）";
}
.p-privacy_psnData_subGroup:nth-child(3) h4::before {
  content: "（３）";
}
.p-privacy_psnData_subGroup:nth-child(4) h4::before {
  content: "（４）";
}
.p-privacy_psnData_subGroup:nth-child(5) h4::before {
  content: "（５）";
}
.p-privacy_psnData_subGroup:nth-child(6) h4::before {
  content: "（６）";
}
.p-privacy_psnData_subGroup:nth-child(7) h4::before {
  content: "（７）";
}

.p-privacy_psnData_pointList {
  display: flex;
  flex-direction: column;
}
.p-privacy_psnData_pointList li {
  padding-left: 20px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-privacy_psnData_pointList li {
    padding-left: 27px;
  }
}
.p-privacy_psnData_pointList li::before {
  content: "・";
  position: absolute;
  top: 4px;
  left: 0;
}
@media screen and (min-width: 768px) {
  .p-privacy_psnData_pointList li::before {
    left: 5px;
  }
}

.p-privacy_psnData_thirdList {
  margin-top: 14px;
  padding-left: 12px;
  display: flex;
  flex-direction: column;
  gap: 13px;
}
@media screen and (min-width: 768px) {
  .p-privacy_psnData_thirdList {
    padding-left: 24px;
  }
}

.p-privacy_psnData_thirdGroup:nth-child(1) h5::before {
  content: "ａ） ";
}
.p-privacy_psnData_thirdGroup:nth-child(2) h5::before {
  content: "ｂ）";
}
.p-privacy_psnData_thirdGroup:nth-child(3) h5::before {
  content: "ｃ）";
}

.p-privacy_psnData_fourthList {
  padding-left: 18px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
@media screen and (min-width: 768px) {
  .p-privacy_psnData_fourthList {
    padding-left: 36px;
  }
}

.p-privacy_psnData_fourthGroup {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-privacy_psnData_fourthGroup:nth-child(1) h6::before {
  content: "１）";
}
.p-privacy_psnData_fourthGroup:nth-child(2) h6::before {
  content: "２）";
}

.p-privacy_psnData_fifthList {
  padding-left: 16px;
  display: flex;
  flex-direction: column;
  gap: 11.5px;
}
@media screen and (min-width: 768px) {
  .p-privacy_psnData_fifthList {
    padding-left: 33px;
  }
}

.p-privacy_psnData_fifthGroup {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.p-privacy_psnData_fifthGroup:nth-child(1) .p-privacy_psnData_fifthHeading p::before {
  content: "① ";
}
.p-privacy_psnData_fifthGroup:nth-child(2) .p-privacy_psnData_fifthHeading p::before {
  content: "② ";
}
.p-privacy_psnData_fifthGroup:nth-child(3) .p-privacy_psnData_fifthHeading p::before {
  content: "③ ";
}

.p-privacy_psnData_fifthText p + p {
  margin-top: 7px;
}

.p-privacy_psnData_fifthInnerGroup {
  padding-left: 12px;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-privacy_psnData_fifthInnerGroup {
    padding-left: 32px;
  }
}

.p-privacy_psnData_sixthList {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.p-privacy_psnData_sixthList li:nth-child(1) p::before {
  content: "ア ";
}
.p-privacy_psnData_sixthList li:nth-child(2) p::before {
  content: "イ ";
}

.p-privacy_psnData_sixthGroup {
  margin-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-privacy_psnData_counter {
  margin-top: 15px;
}

.p-privacy_psnInfo_counterText {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.p-privacy_psnInfo_counterText dl {
  display: flex;
}
.p-privacy_psnInfo_counterText dl dt::after {
  content: "：";
}

.p-privacy_psnData_precautions {
  margin-top: 29px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-privacy_psnData_cookie {
  margin-top: 31px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}

.p-privacy_psnData_cookieHeading h3 {
  font-size: 20px;
  font-weight: 600;
  line-height: 1.7;
}

.l-terms_pageTitle {
  padding-top: 118px;
}
@media screen and (min-width: 768px) {
  .l-terms_pageTitle {
    padding-top: 178px;
  }
}

.l-terms_main {
  margin-top: 60px;
  padding-bottom: 79px;
}
@media screen and (min-width: 768px) {
  .l-terms_main {
    padding-bottom: 119px;
  }
}

.p-terms_title {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}
.p-terms_title h2 {
  text-align: center;
  font-size: 23px;
  font-weight: 600;
  line-height: 1.53846;
}
@media screen and (min-width: 768px) {
  .p-terms_title h2 {
    font-size: 26px;
  }
}
.p-terms_title p {
  text-align: center;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.66667;
}
@media screen and (min-width: 768px) {
  .p-terms_title p {
    font-size: 18px;
  }
}

.p-terms_contents {
  margin-top: 12px;
  display: flex;
  flex-direction: column;
  gap: 12.2px;
}
.p-terms_contents p, .p-terms_contents h3, .p-terms_contents li {
  font-size: 16px;
  line-height: 2.22222;
}
@media screen and (min-width: 768px) {
  .p-terms_contents p, .p-terms_contents h3, .p-terms_contents li {
    font-size: 18px;
  }
}
.p-terms_contents .mt8 {
  margin-top: 8px;
}

.p-terms_article {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.p-terms_article_heading h3 {
  font-weight: 600;
}

.p-terms_article_listNumPoint {
  display: flex;
  flex-direction: column;
  gap: 15px;
}
.p-terms_article_listNumPoint > li {
  padding-left: 23px;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-terms_article_listNumPoint > li {
    padding-left: 39px;
  }
}
.p-terms_article_listNumPoint > li::before {
  position: absolute;
  top: 0;
  left: 0;
}
.p-terms_article_listNumPoint > li:nth-child(1)::before {
  content: "1.";
}
.p-terms_article_listNumPoint > li:nth-child(2)::before {
  content: "2.";
}
.p-terms_article_listNumPoint > li:nth-child(3)::before {
  content: "3.";
}

.p-terms_article_listNumBrackets {
  display: flex;
  flex-direction: column;
}
.p-terms_article_listNumBrackets > li {
  padding-left: 4px;
}
.p-terms_article_listNumBrackets > li:nth-child(1) p::before {
  content: " (1) ";
}
.p-terms_article_listNumBrackets > li:nth-child(2) p::before {
  content: " (2) ";
}
.p-terms_article_listNumBrackets > li:nth-child(3) p::before {
  content: " (3) ";
}
.p-terms_article_listNumBrackets > li:nth-child(4) p::before {
  content: " (4) ";
}
.p-terms_article_listNumBrackets > li:nth-child(5) p::before {
  content: " (5) ";
}
.p-terms_article_listNumBrackets > li:nth-child(6) p::before {
  content: " (6) ";
}
.p-terms_article_listNumBrackets > li:nth-child(7) p::before {
  content: " (7) ";
}

@media screen and (max-width: 767.98px) {
  .u-hidden-sp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .u-hidden-pc {
    display: none;
  }
}