@charset "UTF-8";
:root {
  --headerHeight: 6.25rem;
  --paddingSection: 6.25rem;
  --paddingLR: 1rem;
  --border_radius: 1.25rem;
}
@media screen and (max-width: 979px) {
  :root {
    --headerHeight: 4rem;
    --paddingSection: 2.5rem;
    --border_radius: 0.71428rem;
  }
}

:root {
  --color_main: #4B4B4B;
  --color_sub: #EFEFEF;
}

/*========== トップページ ==========*/
/*==========
メインビジュアル
==========*/
#mv .bg {
  color: #fff;
  background: center/cover url("../img/index/index_mv.jpg") no-repeat;
  border-radius: var(--border_radius);
  padding: 2.5rem var(--paddingLR);
  overflow: hidden;
  position: relative;
  z-index: 1;
}
#mv .bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: #A0A0A0;
  mix-blend-mode: multiply;
  z-index: -1;
}
#mv .text_area {
  text-align: center;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
}
#mv .title_main {
  font-family: "M PLUS Rounded 1c";
  font-size: 3.6875rem;
  font-weight: 500;
  line-height: 1.25;
}
#mv .title_main .cross {
  width: 1em;
  aspect-ratio: 1/1;
  margin-left: auto;
  margin-right: auto;
  display: block;
  margin-top: 0.25em;
  margin-bottom: 0.25em;
  position: relative;
}
#mv .title_main .cross::before, #mv .title_main .cross::after {
  content: "";
  width: 100%;
  height: 6px;
  border-radius: 6.25rem;
  background-color: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}
#mv .title_main .cross::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
#mv .title_main .cross::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
#mv .list {
  margin-top: 1rem;
  font-size: 1.9375rem;
  line-height: 1.25;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
}
#mv .list > * {
  width: 4.45em;
  aspect-ratio: 1/1;
  background-color: rgba(255, 255, 255, 0.78);
  color: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
#mv .btn_01 {
  margin-top: 5rem;
}
@media screen and (max-width: 979px) {
  #mv .title_main {
    font-size: 1.375rem;
  }
  #mv .title_main .cross::before, #mv .title_main .cross::after {
    height: 3px;
  }
  #mv .list {
    font-size: 1.125rem;
  }
  #mv .btn_01 {
    margin-top: 2.5rem;
  }
}

/*==========
index_case
==========*/
#index_case {
  margin-top: calc(var(--paddingSection) * 1.5);
}
#index_case .layout_title {
  text-align: center;
  max-width: 49.0625rem;
}
#index_case .layout_title .title_main {
  font-size: 2.25rem;
  line-height: 1.5;
}
#index_case .layout_title .title_main .small {
  font-size: 0.611112em;
}
#index_case .layout_title .text_deco {
  position: absolute;
  top: -2em;
  left: -1em;
}
#index_case .list > * {
  -webkit-animation-duration: 1.5s;
          animation-duration: 1.5s;
}
#index_case .list > *:not(:last-child) {
  margin-bottom: 2rem;
}
#index_case .list > *:not(:has(a)),
#index_case .list a {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  background-color: #fff;
  padding: 2.5rem;
  border-radius: var(--border_radius);
}
#index_case .list a {
  color: inherit;
  text-decoration: none;
}
#index_case .list .img_area {
  display: flex;
  width: 70%;
  margin-left: auto;
}
#index_case .list .img_area .img {
  flex: 1;
  aspect-ratio: 1/1;
}
#index_case .list .img_area .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
#index_case .list .title_area {
  flex: 1;
}
#index_case .list .row_price {
  text-align: center;
}
#index_case .list .price {
  font-family: "Barlow";
  font-size: 4.375rem;
  font-weight: 100;
  line-height: 1;
}
#index_case .list .unit {
  font-size: 1.5625rem;
}
#index_case .list .text_link {
  margin-top: 1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  gap: 1.5em;
  margin-left: auto;
  margin-right: auto;
}
#index_case .list .text_link::after {
  content: "";
  width: 1em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_btn_01.svg") no-repeat;
  display: block;
  margin-left: auto;
}
@media screen and (min-width: 960px) {
  #index_case .list a .text_link::after {
    transition: transform 0.5s;
  }
  #index_case .list a:hover .text_link::after {
    transform: translateX(0.5em);
  }
}
#index_case .btn_01 {
  margin-top: var(--paddingSection);
}
@media screen and (max-width: 979px) {
  #index_case .layout_title .title_main {
    font-size: 1rem;
  }
  #index_case .list > *:not(:has(a)),
#index_case .list a {
    flex-direction: column;
    gap: 1rem;
    padding: var(--paddingLR);
  }
  #index_case .list .img_area {
    flex-wrap: wrap;
    width: 100%;
    max-width: 25rem;
    margin-right: auto;
  }
  #index_case .list .img_area .img {
    width: 50%;
    flex: 0 1 auto;
  }
  #index_case .list .title_area {
    width: 100%;
  }
  #index_case .list .price {
    font-size: 2.5rem;
  }
  #index_case .list .unit {
    font-size: 1rem;
  }
  #index_case .list .text_link {
    margin-left: auto;
    font-size: 1rem;
    gap: 1em;
  }
  #index_case .list .text_link::after {
    margin-top: 0.125em;
  }
}

/*==========
index_can
==========*/
#index_can .title_area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 8rem 3rem 2rem;
  min-height: 26.625rem;
  max-width: 48.75rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 2rem;
  background: center/contain url("../img/common/icon_can.svg") no-repeat;
  position: relative;
  text-align: center;
}
#index_can .title_area .text_aside {
  font-size: 1.125rem;
  margin-bottom: 0.5em;
}
#index_can .title_area .text_main {
  font-size: 2.25rem;
  line-height: 1.5;
}
#index_can .title_area .text_deco {
  height: 100%;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
}
#index_can .flex_img {
  display: flex;
  gap: 1.5rem;
}
#index_can .flex_img .img {
  flex: 1;
}
#index_can .flex_img + .flex_text {
  margin-top: 2.5rem;
}
#index_can .flex_text {
  display: flex;
  gap: 1.5rem 3.75rem;
}
#index_can .flex_text .item {
  flex: 1;
}
#index_can .flex_text .label {
  border: 1px solid #000;
  border-radius: 0.625rem;
  font-size: 1.25rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 0.125em 1em;
  min-height: 3.75rem;
  margin-bottom: 0.75em;
}
#index_can .flex_text .text {
  font-size: 1.25rem;
  font-weight: 500;
  padding: 0 1em;
}
#index_can .flex_text .aside {
  font-weight: 400;
}
@media screen and (max-width: 979px) {
  #index_can .title_area {
    min-height: 15rem;
    padding: 6rem 2.5rem 2rem;
  }
  #index_can .title_area .text_aside {
    font-size: 1rem;
  }
  #index_can .title_area .text_main {
    font-size: 1.25rem;
  }
  #index_can .flex_img {
    gap: 0.5rem;
  }
  #index_can .flex_text {
    flex-direction: column;
  }
  #index_can .flex_text .label {
    font-size: 1rem;
    min-height: 2.5rem;
    border-radius: 6px;
  }
  #index_can .flex_text .text {
    font-size: 0.875rem;
  }
}

/*==========
index_cannot
==========*/
#index_cannot .bg {
  background-color: var(--color_sub);
  border-radius: var(--border_radius);
  padding: var(--paddingSection) var(--paddingLR);
}
#index_cannot .title_area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2rem 3rem 2rem;
  min-height: 21.875rem;
  max-width: 48.75rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 5rem;
  background: center/contain url("../img/common/icon_cannot.svg") no-repeat;
  position: relative;
  text-align: center;
}
#index_cannot .title_area .text_main {
  font-size: 2.25rem;
  line-height: 1.5;
}
#index_cannot .title_area .text_aside {
  font-size: 1.125rem;
}
#index_cannot .title_area .text_deco {
  height: 100%;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
}
#index_cannot .list {
  max-width: 72.5rem;
  margin-left: auto;
  margin-right: auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
}
#index_cannot .list > * {
  background-color: #fff;
  border-radius: 0.75rem;
  padding: 2.5rem var(--paddingLR);
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 0.875rem;
}
#index_cannot .list .title {
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1.25;
}
#index_cannot .list .text {
  font-size: 1.25rem;
  text-align: justify;
  -moz-text-align-last: left;
       text-align-last: left;
}
@media screen and (max-width: 979px) {
  #index_cannot .title_area {
    min-height: 15rem;
    padding: 6rem 2.5rem 2rem;
  }
  #index_cannot .title_area .text_aside {
    font-size: 0.875rem;
  }
  #index_cannot .title_area .text_main {
    font-size: 1.25rem;
  }
  #index_cannot .list {
    grid-template-columns: repeat(1, 1fr);
    gap: 1rem;
  }
  #index_cannot .list > * {
    border-radius: 6px;
    padding: 1.5rem var(--paddingLR);
  }
  #index_cannot .list .title {
    font-size: 1.125rem;
  }
  #index_cannot .list .text {
    font-size: 0.875rem;
  }
}

/*==========
index_flow
==========*/
#index_flow .img_area {
  padding-top: 14rem;
  margin-right: 12.5rem;
}
#index_flow .img_area .text_deco {
  position: absolute;
  top: 0;
  left: 4em;
  z-index: 1;
}
#index_flow .text_area {
  position: absolute;
  top: 5rem;
  right: 0;
  background-color: #fff;
  border-radius: var(--border_radius);
  padding: 2.5rem;
}
#index_flow .text_area::before, #index_flow .text_area::after {
  content: "";
  width: 1.25rem;
  aspect-ratio: 1/1;
  position: absolute;
  z-index: 1;
}
#index_flow .text_area::before {
  top: 9rem;
  left: -1.25rem;
  background: center/contain url("../img/common/deco_round_L.svg") no-repeat;
}
#index_flow .text_area::after {
  right: 12.5rem;
  bottom: -1.25rem;
  transform: rotate(90deg);
  background: center/contain url("../img/common/deco_round_R.svg") no-repeat;
}
#index_flow .text_area .title {
  font-size: 2.25rem;
  line-height: 1.5;
  margin-bottom: 1em;
}
#index_flow .text_area .btn_01 {
  margin-top: 1.125rem;
  margin-left: 0;
  max-width: 18.75rem;
}
@media screen and (max-width: 979px) {
  #index_flow .img_area {
    padding-top: 10rem;
    margin-right: var(--paddingLR);
    max-width: 40rem;
  }
  #index_flow .img_area .text_deco {
    left: 2em;
  }
  #index_flow .img_area .img {
    height: 16.5rem;
  }
  #index_flow .img_area .img img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
  #index_flow .text_area {
    width: 80%;
    max-width: 20rem;
    position: relative;
    top: auto;
    bottom: 0;
    margin-left: auto;
    margin-top: -6rem;
    padding: var(--paddingLR);
  }
  #index_flow .text_area::before, #index_flow .text_area::after {
    display: none;
  }
  #index_flow .text_area .title {
    font-size: 1rem;
  }
}

/*==========
index_company
==========*/
#index_company .row_title {
  display: flex;
  align-items: flex-end;
  gap: var(--paddingLR);
}
#index_company .row_title .btn_01 {
  max-width: 16.875rem;
}
#index_company .layout_title {
  margin-left: 0;
  max-width: 46.625rem;
}
#index_company .layout_title .box {
  flex: 1;
  margin-top: 1.5rem;
}
#index_company .layout_title .flex {
  max-width: 33.25rem;
  margin-left: auto;
  margin-right: auto;
  display: flex;
  gap: 3.5rem;
}
#index_company .layout_title .title {
  font-size: 2.25rem;
  line-height: 1.25;
  margin-bottom: 0.5em;
}
#index_company .layout_title .text {
  font-size: 1.25rem;
}
#index_company .flex_img {
  display: flex;
  gap: var(--paddingLR);
}
@media screen and (max-width: 979px) {
  #index_company .row_title {
    flex-wrap: wrap;
  }
  #index_company .layout_title {
    margin-left: auto;
  }
  #index_company .layout_title .flex {
    gap: 1rem;
  }
  #index_company .layout_title .title {
    font-size: 1.125rem;
  }
  #index_company .layout_title .text {
    font-size: 0.875rem;
  }
  #index_company .flex_img {
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
  }
  #index_company .flex_img .img {
    flex: 0 1 auto;
    max-width: 15rem;
  }
}

/*==========
index_column
==========*/
#index_column .title_area {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 7.5rem 3rem 0;
  max-width: 55.5rem;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 4rem;
  position: relative;
  text-align: center;
}
#index_column .title_area .text_deco {
  height: 100%;
  justify-content: center;
  position: absolute;
  left: 0;
  top: 0;
}
#index_column .title_area .text {
  font-size: 2.25rem;
  line-height: 1.5;
}
#index_column .slider_area {
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
  margin-bottom: 4rem;
}
#index_column .text_link {
  font-size: 1.125rem;
  padding: 1em;
  border-bottom: 1px solid #000;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 1em;
}
#index_column .text_link::after {
  content: "";
  width: 1em;
  aspect-ratio: 1/1;
  background: center/contain url("../img/common/icon_btn_01.svg") no-repeat;
  display: block;
}
@media screen and (max-width: 979px) {
  #index_column .title_area {
    padding: 6rem 3rem 0;
    margin-bottom: 2.5rem;
  }
  #index_column .title_area .text {
    font-size: 1.125rem;
  }
  #index_column .slider_area {
    margin-bottom: 2rem;
  }
  #index_column .text_link {
    font-size: 0.875rem;
  }
}

.slider_column.swiper {
  overflow: visible;
  position: relative;
}
.slider_column.swiper .swiper-wrapper {
  margin: 0 calc(50% - 50vw);
  padding: 0 calc(50vw - 50%);
}
.slider_column.swiper .swiper-slide:not(:has(a)),
.slider_column.swiper a {
  width: calc(100% - 10.625rem);
  display: flex;
  align-items: center;
  gap: 1.75rem;
  margin-left: 5.3125rem;
  margin-right: 5.3125rem;
}
.slider_column.swiper a {
  color: inherit;
  text-decoration: none;
}
.slider_column.swiper .title {
  font-size: 1.25rem;
  font-weight: 500;
  line-height: 1.5;
  margin-bottom: 1rem;
}
.slider_column.swiper .img_area {
  width: 48.387%;
  aspect-ratio: 45/30;
  flex-shrink: 0;
}
.slider_column.swiper .img_area img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.slider_column.swiper .navigation_area {
  display: flex;
  justify-content: space-between;
  width: 100%;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  pointer-events: none;
}
.slider_column.swiper .navigation_area .slider_column_prev,
.slider_column.swiper .navigation_area .slider_column_next {
  pointer-events: auto;
  width: 3.625rem;
  aspect-ratio: 1/1;
  cursor: pointer;
}
.slider_column.swiper .navigation_area .slider_column_prev {
  background: center/contain url("../img/common/icon_slider_prev.svg") no-repeat;
}
.slider_column.swiper .navigation_area .slider_column_next {
  background: center/contain url("../img/common/icon_slider_next.svg") no-repeat;
}
@media screen and (max-width: 979px) {
  .slider_column.swiper .swiper-slide:not(:has(a)),
.slider_column.swiper a {
    flex-direction: column;
    width: calc(100% - 5rem);
    gap: 0.5rem;
    margin-left: 2.5rem;
    margin-right: 2.5rem;
  }
  .slider_column.swiper .img_area {
    width: 100%;
    max-width: 25rem;
  }
  .slider_column.swiper .title {
    font-size: 1rem;
  }
  .slider_column.swiper .text {
    font-size: 0.875rem;
  }
  .slider_column.swiper .navigation_area .slider_column_prev,
.slider_column.swiper .navigation_area .slider_column_next {
    width: 2.5rem;
  }
}