@charset "UTF-8";
/***************************

foundation/base.scss

***************************/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  word-break: break-all;
  word-wrap: break-word;
}

html {
  /*overflow:auto;*/
  font-size: 10px;
  -webkit-tap-highlight-color: transparent;
  font-family: sans-serif;
  line-height: 1;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  scroll-padding-top: 100px;
  scroll-behavior: smooth;
}

body {
  overflow-x: hidden;
  font-size: 1.6rem;
  color: #373737;
  font-family: "Noto Sans JP", serif;
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1.9;
  width: 100%;
  color: #373737;
}

a {
  color: inherit;
  text-decoration: none;
  background-color: transparent;
  -webkit-text-decoration-skip: objects;
  transition: 1s;
  -moz-transition: 1s;
  -webkit-transition: 1s;
  -o-transition: 1s;
  -ms-transition: 1s;
}

a:hover {
  color: inherit;
  text-decoration: none;
  opacity: 0.75;
}

a:active,
a:hover {
  outline-width: 0;
}

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

p {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin: 0;
  text-align: left;
}

dl,
dt,
dd {
  margin: 0;
  padding: 0;
}

figure {
  margin: 0;
}

figcaption,
figure,
main {
  display: block;
}

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

pre {
  font-family: monospace, monospace;
  font-size: 1em;
}

b,
strong {
  font-weight: bolder;
}

small {
  font-size: 80%;
}

img {
  border-style: none;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  height: auto;
  max-width: 100%;
  vertical-align: middle;
}

input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
html [type=button],
[type=reset],
[type=submit] {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

textarea {
  overflow: auto;
}

[type=checkbox],
[type=radio] {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
}

::-webkit-file-upload-button {
  -webkit-appearance: none;
  font: inherit;
}

[hidden] {
  display: none;
}

address {
  font-style: normal;
}

figure {
  margin: 0;
}

table {
  border-collapse: collapse;
}

/***************************

layout/_header.scss

***************************/
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  padding: 10px 18px 15px 32px;
  border-bottom: 1px solid #eee;
  background-color: #fff;
}
@media screen and (max-width: 1491px) {
  header {
    padding: 15px 18px 15px 32px;
  }
}
@media screen and (max-width: 834px) {
  header {
    padding: 10px 10px 10px 30px;
  }
}
@media screen and (max-width: 550px) {
  header {
    padding: 10px;
  }
}
header .inner {
  max-width: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}

.header-left {
  width: calc(100% - 284px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 45px;
}
@media screen and (max-width: 834px) {
  .header-left {
    width: calc(100% - 110px);
    gap: 0;
  }
}
@media screen and (max-width: 550px) {
  .header-left {
    width: calc(100% - 76px);
  }
}

.logo-h {
  width: fit-content;
  height: fit-content;
}

.pc-gnav_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  line-height: 1;
  gap: 10px 30px;
  color: #000000;
  font-size: 1.4rem;
}
@media screen and (max-width: 834px) {
  .pc-gnav_list {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 1100px) {
  .pc-gnav_list {
    display: none;
  }
}

.header-right {
  width: 254px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 13px;
}
@media screen and (max-width: 834px) {
  .header-right {
    width: fit-content;
  }
}
.header-right .c-btn {
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 834px) {
  .header-right .c-btn {
    display: none;
  }
}

/* Hamburger menu */
.gnav {
  position: absolute;
  width: 100%;
  height: 100vh;
  right: -100%;
  top: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  transition: all 0.3s ease-out;
  z-index: 6;
}
.gnav.active {
  right: 0;
  background-color: rgba(0, 0, 0, 0.6);
}

.gnav-wrap {
  max-width: 710px;
  width: 43vw;
  min-height: 100vh;
  padding: 19.7vh 30px 30px;
  overflow-y: auto;
  background-color: #fff;
}
@media screen and (max-width: 1100px) {
  .gnav-wrap {
    width: 100%;
  }
}
@media screen and (max-width: 834px) {
  .gnav-wrap {
    max-width: 80%;
  }
}
@media screen and (max-width: 450px) {
  .gnav-wrap {
    max-width: 100%;
    padding-top: 75px;
  }
}

.gnav-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
}
@media screen and (max-width: 834px) {
  .gnav-flex {
    gap: 30px;
  }
}

.gnav-list {
  font-weight: bold;
}

.gnav-list-item {
  line-height: 1;
}
@media screen and (max-width: 834px) {
  .gnav-list-item {
    line-height: 1.5;
  }
}
.gnav-list-item:not(:first-of-type) {
  margin-top: 45px;
}
@media screen and (max-width: 834px) {
  .gnav-list-item:not(:first-of-type) {
    margin-top: 30px;
  }
}
.gnav-list-item.current {
  color: #fa6650;
}

.gnav-dtl_list {
  font-weight: normal;
}

.gnav-dtl_item {
  margin-top: 15px;
  color: #a1a1a1;
  font-size: 1.4rem;
}
@media screen and (max-width: 834px) {
  .gnav-dtl_item {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 834px) {
  .gnav-dtl_item {
    margin-top: 10px;
  }
}

.logo-gnav {
  display: block;
  margin: 120px 0 55px;
  text-align: center;
}
@media screen and (max-width: 450px) {
  .logo-gnav {
    margin: 30px 0 20px;
  }
}

/* toggle button */
.toggle {
  position: relative;
  width: 46px;
  height: 46px;
  aspect-ratio: 1/1;
  cursor: pointer;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background: #000000;
  border: none;
  outline: none;
  text-align: center;
  z-index: 10;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 834px) and (min-width: 550px) {
  .toggle {
    width: 80px;
    height: 80px;
  }
}
.toggle.active {
  background-color: transparent;
}
.toggle.active .toggle__bar {
  background-color: transparent;
}
.toggle.active .toggle__bar::before, .toggle.active .toggle__bar::after {
  background-color: #000000;
}
.toggle.active .toggle__bar::before {
  -webkit-transform: translateY(7px) rotate(45deg);
  transform: translateY(7px) rotate(45deg);
}
@media screen and (max-width: 834px) and (min-width: 550px) {
  .toggle.active .toggle__bar::before {
    -webkit-transform: translateY(12px) rotate(45deg);
    transform: translateY(12px) rotate(45deg);
  }
}
.toggle.active .toggle__bar::after {
  -webkit-transform: translateY(-7px) rotate(-45deg);
  transform: translateY(-7px) rotate(-45deg);
}
@media screen and (max-width: 834px) and (min-width: 550px) {
  .toggle.active .toggle__bar::after {
    -webkit-transform: translateY(-12px) rotate(-45deg);
    transform: translateY(-12px) rotate(-45deg);
  }
}

.toggle__bar {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: block;
  width: 20px;
  height: 1px;
  background-color: #fff;
  outline: 1px solid transparent;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
@media screen and (max-width: 834px) and (min-width: 550px) {
  .toggle__bar {
    width: 35px;
    height: 2px;
  }
}
.toggle__bar::before, .toggle__bar::after {
  position: absolute;
  content: "";
  display: block;
  width: 20px;
  height: 1px;
  background-color: #fff;
  outline: 1px solid transparent;
  -webkit-transition-property: background-color, -webkit-transform;
  transition-property: background-color, -webkit-transform;
  transition-property: background-color, transform;
  transition-property: background-color, transform, -webkit-transform;
  -webkit-transition-duration: 0.3s;
  transition-duration: 0.3s;
}
@media screen and (max-width: 834px) and (min-width: 550px) {
  .toggle__bar::before, .toggle__bar::after {
    width: 35px;
    height: 2px;
  }
}
.toggle__bar::before {
  top: -7px;
}
@media screen and (max-width: 834px) and (min-width: 550px) {
  .toggle__bar::before {
    top: -12px;
  }
}
.toggle__bar::after {
  top: 7px;
}
@media screen and (max-width: 834px) and (min-width: 550px) {
  .toggle__bar::after {
    top: 12px;
  }
}

/***************************

layout/_footer.scss

***************************/
footer {
  margin-top: 100px;
  padding: 140px 0 110px;
  background-color: #f7f7f7;
}
@media screen and (max-width: 834px) {
  footer {
    padding: 100px 0 140px;
  }
}
@media screen and (max-width: 450px) {
  footer {
    margin-top: 0;
    padding: 50px 0 100px;
  }
}

.footer-flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 60px;
}
@media screen and (max-width: 834px) {
  .footer-flex {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 450px) {
  .footer-flex {
    gap: 20px;
  }
}

@media screen and (max-width: 450px) {
  .sitemap {
    gap: 10px 20px;
  }
}

.sitemap-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 60px;
  grid-row-gap: 35px;
  grid-template-areas: "s01 s05 s10" "s02 s06 s10" "s03 s07 s11" "s03 s08 s12" "s04 s09 .";
}
@media screen and (max-width: 834px) {
  .sitemap-list {
    grid-column-gap: 30px;
    grid-row-gap: 30px;
  }
}
@media screen and (max-width: 450px) {
  .sitemap-list {
    grid-row-gap: 20px;
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas: "s01 s06" "s02 s07" "s03 s08" "s03 s09" "s04 s10" "s05 s11" ". s12";
  }
}

.sitemap-item:nth-child(1) {
  grid-area: s01;
}
.sitemap-item:nth-child(2) {
  grid-area: s02;
}
.sitemap-item:nth-child(3) {
  grid-area: s03;
}
.sitemap-item:nth-child(4) {
  grid-area: s04;
}
.sitemap-item:nth-child(5) {
  grid-area: s05;
}
.sitemap-item:nth-child(6) {
  grid-area: s06;
}
.sitemap-item:nth-child(7) {
  grid-area: s07;
}
.sitemap-item:nth-child(8) {
  grid-area: s08;
}
.sitemap-item:nth-child(9) {
  grid-area: s09;
}
.sitemap-item:nth-child(10) {
  grid-area: s10;
}
.sitemap-item:nth-child(11) {
  grid-area: s11;
}
.sitemap-item:nth-child(12) {
  grid-area: s12;
}

.sitemnap-link {
  font-weight: bold;
}

.sitemap-dtl_item {
  margin-top: 5px;
  font-size: 1.4rem;
  color: #a1a1a1;
}
@media screen and (max-width: 834px) {
  .sitemap-dtl_item {
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 450px) {
  .sitemap-dtl_item {
    margin-top: 0;
  }
}

.footer-right {
  max-width: 347px;
  width: 100%;
}

.logo-f {
  margin-bottom: 20px;
  mix-blend-mode: multiply;
}

.copy {
  color: #a8a8a8;
  font-weight: 300;
}

/***************************

object/component/_box.scss

***************************/
.inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
}

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

.sp-no {
  display: none;
}
@media screen and (max-width: 450px) {
  .sp-no {
    display: block;
  }
}

@media screen and (max-width: 834px) {
  .tab {
    display: none;
  }
}

.tab-no {
  display: none;
}
@media screen and (max-width: 834px) {
  .tab-no {
    display: block;
  }
}

.application-box {
  position: relative;
  max-width: 1580px;
  width: 90%;
  margin: 120px auto 0;
  padding: 150px 0 140px;
  background-color: #fa6650;
  border-radius: 30px;
  -webkit-border-radius: 30px;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .application-box {
    margin-top: 100px;
    padding: 80px 0;
  }
}
@media screen and (max-width: 450px) {
  .application-box {
    margin-top: 80px;
    padding: 30px 0;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    border-radius: 30px 30px 0 0;
    -webkit-border-radius: 30px 30px 0 0;
  }
  .application-box .f24 {
    font-size: 1.8rem;
  }
  .application-box .c-btn {
    margin: 0 auto;
  }
}
@media screen and (max-width: 372px) {
  .application-box .sp-no {
    display: none;
  }
}
.application-box:before {
  position: absolute;
  content: "";
  width: 480px;
  aspect-ratio: 1/1;
  top: -25px;
  right: -20px;
  background: url(../img/top/top-cmn_bg.webp) no-repeat top left/cover;
  opacity: 0.1;
}
@media screen and (max-width: 834px) {
  .application-box:before {
    width: 40%;
  }
}
.application-box .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 834px) {
  .application-box .inner {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.application-box p {
  margin-top: 20px;
  color: #fff;
}

@media screen and (max-width: 450px) {
  .application-hg {
    text-align: center;
  }
}

/*////////////////////////

fade

////////////////////////*/
/* スクロールをしたら出現する要素にはじめに透過0を指定　*/
.fadeUpTrigger {
  opacity: 0;
}

.location-logo .fadeUp {
  animation-duration: 1s;
}

.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.fadeUp.fadeUp50 {
  animation-name: fadeUpAnime50;
  animation-duration: 0.8s;
  animation-fill-mode: forwards;
  opacity: 0;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes fadeUpAnime50 {
  from {
    opacity: 0;
    transform: translateY(100px) translateX(-50%);
  }
  to {
    opacity: 1;
    transform: translateY(0) translateX(-50%);
  }
}
/***************************

object/component/_button.scss

***************************/
.c-btn {
  width: 100%;
  line-height: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  transition: all 0.3s ease-out;
}
.c-btn:hover {
  opacity: 1;
}
.c-btn.-bgc-orange {
  max-width: 200px;
  padding: 14px 32px;
  background-color: #fa6650;
  color: #fff;
  border: 1px solid #fff;
}
.c-btn.-bgc-orange:hover {
  background-color: #fff;
  color: #fa6650;
  border: 1px solid #fa6650;
}
.c-btn.-arrow {
  position: relative;
  max-width: 300px;
  padding: 22.5px 28px;
  border: 1px solid #373737;
  background-color: #373737;
  color: #fff;
}
.c-btn.-arrow.bgc-wht {
  background-color: #fff;
  color: #fa6650;
  border-color: #fff;
}
.c-btn.-arrow::before {
  position: absolute;
  content: "\e5cc";
  font-family: "Material Icons";
  right: 20px;
  transition: all 0.3s linear;
}
@media screen and (max-width: 450px) {
  .c-btn.-arrow::before {
    padding: 15px 20px;
    right: 0;
  }
}
.c-btn.-arrow:hover {
  background-color: #fff;
  color: #373737;
}
.c-btn.-arrow:hover.bgc-wht {
  background-color: #fa6650;
  color: #fff;
}
.c-btn.-arrow:hover::before {
  transform: translateX(5px);
}

.c-btn_arrow {
  margin: 0 0 0 auto;
  width: 40px;
  aspect-ratio: 1/1;
  background-color: #fa6650;
  color: #fff;
  text-align: center;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  transition: all 0.3s linear;
}
.c-btn_arrow.-bgc-wht {
  background-color: #fff;
  color: #fa6650;
}
.c-btn_arrow .material-symbols-outlined {
  font-size: 1.6rem;
  line-height: 40px;
  transition: all 0.3s linear;
}
.c-btn_arrow:hover {
  opacity: 1;
}
.c-btn_arrow:hover .material-symbols-outlined {
  transform: translateX(5px);
}

/***************************

object/object/project/_top-common.scss

***************************/
.c-top_hg {
  line-height: 1;
}

.c-top_hg-txt {
  font-size: 1.8rem;
  font-weight: 500;
}
@media screen and (max-width: 834px) {
  .c-top_hg-txt {
    font-size: 1.6rem;
  }
}

.c-top_hg-ttl {
  margin-top: 10px;
  font-size: 5.2rem;
  line-height: 1.5;
}
@media screen and (max-width: 834px) {
  .c-top_hg-ttl {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 450px) {
  .c-top_hg-ttl {
    font-size: 2.5rem;
  }
}

/***************************

object/object/project/_top-mv.scss

***************************/
.top-mv {
  position: relative;
  margin-top: 112px;
  padding-bottom: 30px;
}
@media screen and (max-width: 450px) {
  .top-mv {
    margin-top: 100px;
  }
}

.top-mv_fig-main {
  width: 100%;
  padding: 0 20px;
  height: 610px;
}
@media screen and (max-width: 834px) {
  .top-mv_fig-main {
    aspect-ratio: 700/929;
    height: auto;
  }
}
.top-mv_fig-main img {
  width: 100%;
  height: 610px;
  object-fit: cover;
  border-radius: 20px;
  -webkit-border-radius: 20px;
}
@media screen and (max-width: 834px) {
  .top-mv_fig-main img {
    aspect-ratio: 700/929;
    height: auto;
  }
}

.top-mv_catch-wrap {
  position: relative;
  margin-top: -550px;
  left: 0;
  z-index: 1;
}
@media screen and (max-width: 834px) {
  .top-mv_catch-wrap {
    position: absolute;
    margin-top: 40px;
    width: 100%;
    padding: 0 20px;
    top: 0;
    text-align: center;
    z-index: 9;
  }
}
@media screen and (max-width: 550px) {
  .top-mv_catch-wrap {
    margin-top: 20px;
  }
}
@media screen and (max-width: 450px) {
  .top-mv_catch-wrap {
    margin-top: 20px;
  }
}
.top-mv_catch-wrap .c-btn.-bgc-orange {
  max-width: 360px;
  padding: 20px;
  display: block;
  text-align: center;
  border-width: 0;
  font-weight: bold;
  box-shadow: 0 0 13px rgba(250, 102, 80, 0.51);
}
@media screen and (max-width: 834px) and (min-width: 550px) {
  .top-mv_catch-wrap .c-btn.-bgc-orange .f13 {
    font-size: 2rem;
  }
  .top-mv_catch-wrap .c-btn.-bgc-orange .f21 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 834px) {
  .top-mv_catch-wrap .c-btn.-bgc-orange {
    position: fixed;
    max-width: 690px;
    width: 90%;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 11;
  }
}
@media screen and (max-width: 450px) {
  .top-mv_catch-wrap .c-btn.-bgc-orange {
    bottom: 10px;
  }
}
.top-mv_catch-wrap .c-btn.-bgc-orange p:nth-child(2) {
  margin-top: 5px;
}
@media screen and (max-width: 834px) and (min-width: 550px) {
  .top-mv_catch-wrap .c-btn.-bgc-orange p:nth-child(2) {
    margin-top: 8px;
  }
}

@media screen and (max-width: 834px) and (min-width: 665px) {
  .top-mv_hg-logo img {
    max-width: 305px;
    width: 100%;
  }
}
@media screen and (max-width: 550px) {
  .top-mv_hg-logo img {
    width: 60%;
  }
}

.top-mv_hg-txt {
  margin-top: 20px;
  line-height: 1.6;
}
@media screen and (max-width: 550px) {
  .top-mv_hg-txt {
    margin-top: 5px;
  }
}
@media screen and (max-width: 834px) and (min-width: 665px) {
  .top-mv_hg-txt.f24 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 550px) {
  .top-mv_hg-txt.f24 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 450px) {
  .top-mv_hg-txt.f24 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 400px) {
  .top-mv_hg-txt.f24 {
    font-size: 1.4rem;
  }
}

.top-mv_hg-ttl {
  margin: 25px 0 50px;
}
@media screen and (max-width: 834px) {
  .top-mv_hg-ttl {
    text-align: center;
  }
}
@media screen and (max-width: 550px) {
  .top-mv_hg-ttl {
    margin: 10px auto;
    width: 65%;
  }
}
@media screen and (max-width: 450px) {
  .top-mv_hg-ttl {
    padding: 0 30px;
  }
}

.top-mv_list {
  margin-top: 130px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1330px) {
  .top-mv_list {
    margin-top: 200px;
  }
}
@media screen and (max-width: 834px) {
  .top-mv_list {
    display: none;
  }
}

.top-mv_item {
  max-width: 254px;
  width: 100%;
  aspect-ratio: 254/115;
  padding-top: 18px;
  line-height: 1;
  background: url(../img/top/top-mv_list_bg.webp) no-repeat top left/cover;
}
.top-mv_item h3 {
  margin-top: 8px;
  text-align: center;
  line-height: 1.2;
}

.top-mv_list-sp {
  display: none;
}
@media screen and (max-width: 834px) {
  .top-mv_list-sp {
    margin-top: 10px;
    display: block;
  }
}

.top-mv_fig-sub {
  width: 36.73vw;
  position: absolute;
  bottom: 0;
  right: 0;
  z-index: 1;
  text-align: right;
}
@media screen and (max-width: 1330px) {
  .top-mv_fig-sub {
    bottom: 150px;
  }
}
@media screen and (max-width: 834px) {
  .top-mv_fig-sub {
    position: relative;
    margin-top: -25%;
    width: 80%;
    left: 50%;
    bottom: auto;
    transform: translateX(-50%);
  }
}

/***************************

object/object/project/_top-sec01.scss

***************************/
.top-sec01 {
  margin-top: 85px;
}
@media screen and (max-width: 834px) {
  .top-sec01 {
    margin-top: 60px;
  }
}
@media screen and (max-width: 450px) {
  .top-sec01 {
    margin-top: 0;
  }
}

.top-sec01-ttl {
  line-height: 1.4;
}

.loop-slide_wrap {
  margin-top: 65px;
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  line-height: 1;
}
@media screen and (max-width: 834px) {
  .loop-slide_wrap {
    margin-top: 40px;
  }
}
@media screen and (max-width: 450px) {
  .loop-slide_wrap {
    margin-top: 30px;
  }
}

.loop-slide {
  white-space: nowrap;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 60px;
  padding-left: 30px;
  padding-right: 30px;
}
@media screen and (max-width: 834px) {
  .loop-slide {
    gap: 30px;
    padding-left: 15px;
    padding-right: 15px;
  }
}
.loop-slide:nth-of-type(1) {
  animation: slider01 200s -100s infinite linear;
}
.loop-slide:nth-of-type(2) {
  animation: slider02 200s infinite linear;
}

@keyframes slider01 {
  0% {
    transform: translate(100%, 0);
  }
  100% {
    transform: translate(-100%, 0);
  }
}
@keyframes slider02 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(-200%, 0);
  }
}
.loop-slide_item:nth-child(1) {
  min-width: 157px;
}
.loop-slide_item:nth-child(2) {
  min-width: 90px;
}
.loop-slide_item:nth-child(3) {
  min-width: 179px;
}
.loop-slide_item:nth-child(4) {
  min-width: 198px;
}
.loop-slide_item:nth-child(5) {
  min-width: 168px;
}
@media screen and (max-width: 834px) and (max-width: 834px) {
  .loop-slide_item:nth-child(-n+5) {
    min-width: 100px;
  }
}

.bnr-swiper {
  width: 100vw;
  margin-top: 110px;
}
@media screen and (max-width: 834px) {
  .bnr-swiper {
    margin-top: 40px;
  }
}
.bnr-swiper img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  -webkit-border-radius: 10px;
}

.swiper-slide.bnr-slide {
  padding: 0 30px;
  transform: scale(0.93);
  filter: brightness(60%);
  transition: all 0.3s ease-out;
}
@media screen and (max-width: 834px) {
  .swiper-slide.bnr-slide {
    padding: 0 5px;
  }
}

.swiper-slide-active.bnr-slide {
  transform: scale(1);
  z-index: 1;
  filter: brightness(100%);
}

/***************************

object/object/project/_top-sec02.scss

***************************/
.top-sec02 {
  position: relative;
  margin: 150px 0 6.5vw;
  background-color: #fbf4ec;
}
@media screen and (max-width: 834px) {
  .top-sec02 {
    margin-top: 100px;
  }
}
@media screen and (max-width: 450px) {
  .top-sec02 {
    margin-top: 80px;
    padding-top: 50px;
  }
}
.top-sec02::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 6.5vw;
  bottom: -6.45vw;
  left: 0;
  background: url(../img/top/top-sec02_bg.webp) no-repeat top left/cover;
  z-index: 1;
}
@media screen and (max-width: 1380px) {
  .top-sec02 .inner.-top-sec02 {
    padding-left: 65px;
  }
}
@media screen and (max-width: 834px) {
  .top-sec02 .inner.-top-sec02 {
    padding-left: 55px;
  }
}
@media screen and (max-width: 450px) {
  .top-sec02 .inner.-top-sec02 {
    padding-left: 0;
  }
}

.top-sec02_hg-ttl {
  position: absolute;
  margin: 30px 15px 0 20px;
}
@media screen and (max-width: 834px) {
  .top-sec02_hg-ttl {
    width: 40px;
  }
}
@media screen and (max-width: 450px) {
  .top-sec02_hg-ttl {
    position: relative;
    width: 90%;
    margin: 0 auto;
  }
}

.top-sec02_flex {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
  gap: 30px;
}
@media screen and (max-width: 1100px) {
  .top-sec02_flex {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 40px;
  }
}

.top-sec02_cont {
  width: 578px;
  margin-top: 130px;
}
@media screen and (max-width: 1100px) {
  .top-sec02_cont {
    margin-top: 100px;
    width: 100%;
  }
}
@media screen and (max-width: 834px) {
  .top-sec02_cont {
    margin-top: 80px;
  }
}
@media screen and (max-width: 450px) {
  .top-sec02_cont {
    margin-top: 30px;
  }
}
.top-sec02_cont .c-top_hg {
  margin-bottom: 30px;
}
@media screen and (max-width: 450px) {
  .top-sec02_cont .c-top_hg {
    margin-bottom: 25px;
  }
}
.top-sec02_cont p:not(.c-top_hg-txt):not(:first-of-type) {
  margin-top: 30px;
}
@media screen and (max-width: 834px) {
  .top-sec02_cont p:not(.c-top_hg-txt):not(:first-of-type) {
    margin-top: 15px;
  }
}
.top-sec02_cont .c-btn {
  margin-top: 60px;
}
@media screen and (max-width: 834px) {
  .top-sec02_cont .c-btn {
    margin-top: 40px;
  }
}
@media screen and (max-width: 450px) {
  .top-sec02_cont .c-btn {
    margin: 30px auto 0;
  }
}

.top-sec02_list01 {
  width: calc(100% - 620px);
}
@media screen and (max-width: 1100px) {
  .top-sec02_list01 {
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
    gap: 30px;
  }
}
@media screen and (max-width: 450px) {
  .top-sec02_list01 {
    gap: 10px;
  }
}

.top-sec02_item {
  max-width: 400px;
  width: 100%;
}
.top-sec02_item:nth-child(1) {
  position: relative;
  margin-top: -26px;
  left: 0;
  -ms-transform: rotate(-5deg);
  -webkit-transform: rotate(-5deg);
  transform: rotate(-5deg);
}
@media screen and (max-width: 1100px) {
  .top-sec02_item:nth-child(1) {
    margin-top: 0;
  }
}
.top-sec02_item:nth-child(2) {
  position: absolute;
  width: calc(100% - 620px);
  bottom: 0;
  right: 0;
  -ms-transform: rotate(5deg);
  -webkit-transform: rotate(5deg);
  transform: rotate(5deg);
  z-index: 2;
}
@media screen and (max-width: 1100px) {
  .top-sec02_item:nth-child(2) {
    width: 100%;
    position: relative;
  }
}
.top-sec02_item img {
  border-radius: 20px;
  -webkit-border-radius: 20px;
  box-shadow: 0 0 18px rgba(0, 0, 0, 0.16);
}
@media screen and (max-width: 834px) {
  .top-sec02_item img {
    border-radius: 5%;
    -webkit-border-radius: 5%;
  }
}

.top-sec02_list02 {
  position: relative;
  overflow: hidden;
  margin-top: 80px;
  padding: 57px 62px;
  background-color: #f5ece2;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 15px 5px;
}
@media screen and (max-width: 834px) {
  .top-sec02_list02 {
    margin-top: 60px;
    padding: 30px 40px;
    gap: 10px 5px;
  }
}
@media screen and (max-width: 450px) {
  .top-sec02_list02 {
    margin-top: 40px;
    padding: 20px;
  }
}
.top-sec02_list02::before {
  position: absolute;
  content: "";
  width: 480px;
  aspect-ratio: 1/1;
  bottom: 0;
  right: -150px;
  background: url(../img/top/top-cmn_bg.webp) no-repeat bottom left/cover;
  opacity: 0.1;
}

.top-sec02_list02-item {
  position: relative;
  padding: 22px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 8px;
  line-height: 1;
  font-weight: 500;
  background-color: #fff;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}
@media screen and (max-width: 834px) {
  .top-sec02_list02-item {
    padding: 10px 20px 10px 10px;
  }
  .top-sec02_list02-item p {
    width: calc(100% - 29px);
  }
}
@media screen and (max-width: 450px) {
  .top-sec02_list02-item {
    line-height: 1.3;
  }
}

.top-sec02_list02-ico {
  position: relative;
  width: 21px;
  aspect-ratio: 1/1;
  background-color: #fa6650;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}
.top-sec02_list02-ico::before {
  position: absolute;
  content: "";
  width: 11px;
  height: 2px;
  top: calc(50% - 1px);
  left: calc(50% - 5.5px);
  background-color: #fff;
}

.top-sec02_catch {
  margin-top: 80px;
  padding-bottom: 50px;
}
@media screen and (max-width: 834px) {
  .top-sec02_catch {
    margin-top: 60px;
    padding-bottom: 30px;
  }
  .top-sec02_catch .f42 {
    line-height: 1.4;
  }
}
@media screen and (max-width: 450px) {
  .top-sec02_catch {
    margin-top: 40px;
    padding-bottom: 20px;
  }
  .top-sec02_catch .f24 {
    margin-bottom: 15px;
    line-height: 1.4;
  }
}

/***************************

object/object/project/_top-sec03.scss

***************************/
.top-sec03 {
  position: relative;
  margin-top: calc(6.5vw + 100px);
  margin-bottom: 120px;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .top-sec03 {
    margin-top: calc(6.5vw + 80px);
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 450px) {
  .top-sec03 {
    margin-top: calc(6.5vw + 50px);
    margin-bottom: 50px;
  }
  .top-sec03 p {
    text-align: left;
  }
}
.top-sec03 .f19 {
  line-height: 1.5;
}
.top-sec03 p:not(.first-of-type) {
  margin-top: 25px;
}
@media screen and (max-width: 834px) {
  .top-sec03 p:not(.first-of-type) {
    margin-top: 20px;
  }
}
@media screen and (max-width: 450px) {
  .top-sec03 p:not(.first-of-type) {
    margin-top: 10px;
  }
}
.top-sec03 .c-btn {
  margin: 60px auto 0;
}
@media screen and (max-width: 834px) {
  .top-sec03 .c-btn {
    margin-top: 40px;
  }
}

.top-sec03_ttl {
  margin: 40px 0 55px;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .top-sec03_ttl {
    margin: 20px 0 30px;
  }
}
@media screen and (max-width: 450px) {
  .top-sec03_ttl {
    margin: 10px 0 30px;
  }
}

.top-sec03_ttl-flex {
  margin-bottom: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
@media screen and (max-width: 834px) {
  .top-sec03_ttl-flex {
    margin-bottom: 10px;
  }
}

.top-sec03_fig-slider {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 15px;
  overflow: hidden;
  white-space: nowrap;
}

.top-sec03_fig-wrap:nth-of-type(2) {
  display: none;
}
@media screen and (max-width: 1100px) {
  .top-sec03_fig-wrap {
    margin-top: 40px;
    width: 150%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    gap: 15px;
  }
  .top-sec03_fig-wrap:nth-of-type(1) {
    animation: slider01 200s -100s infinite linear;
  }
  .top-sec03_fig-wrap:nth-of-type(2) {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    animation: slider02 200s infinite linear;
  }
}
@media screen and (max-width: 834px) {
  .top-sec03_fig-wrap {
    gap: 10px;
  }
}
@media screen and (max-width: 450px) {
  .top-sec03_fig-wrap {
    width: 200%;
  }
}

.top-sec03_fig {
  position: absolute;
  z-index: -1;
}
.top-sec03_fig:nth-child(1) {
  top: -65px;
  left: 0;
}
.top-sec03_fig:nth-child(2) {
  top: 40px;
  left: 8.95vw;
}
.top-sec03_fig:nth-child(3) {
  bottom: -30px;
  left: 4.8vw;
}
.top-sec03_fig:nth-child(4) {
  top: -30px;
  right: 6.73vw;
}
.top-sec03_fig:nth-child(5) {
  top: 234px;
  right: 0;
}
.top-sec03_fig:nth-child(6) {
  bottom: 0;
  right: 8.36vw;
}
@media screen and (max-width: 1390px) {
  .top-sec03_fig {
    width: 15vw;
  }
  .top-sec03_fig:nth-child(1), .top-sec03_fig:nth-child(2), .top-sec03_fig:nth-child(3) {
    text-align: left;
  }
  .top-sec03_fig:nth-child(4), .top-sec03_fig:nth-child(5), .top-sec03_fig:nth-child(6) {
    text-align: right;
  }
}
@media screen and (max-width: 1100px) {
  .top-sec03_fig {
    width: 400px;
  }
  .top-sec03_fig:nth-child(-n+6) {
    position: relative;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
  }
}
.top-sec03_fig img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
}

/***************************

object/object/project/_top-sec04.scss

***************************/
.top-sec04 {
  position: relative;
  padding: 175px 0;
  background-color: #ec6640;
  z-index: 1;
  overflow: hidden;
}
@media screen and (min-width: 1101px) {
  .top-sec04 {
    height: 100svh;
  }
}
@media screen and (max-width: 1100px) {
  .top-sec04 {
    height: auto;
  }
}
@media screen and (max-width: 834px) {
  .top-sec04 {
    padding: 80px 0;
  }
}
@media screen and (max-width: 450px) {
  .top-sec04 {
    padding: 50px 0;
  }
}
.top-sec04::before {
  position: absolute;
  content: "";
  width: 480px;
  aspect-ratio: 1/1;
  top: -10px;
  right: 60px;
  background: url(../img/top/top-cmn_bg.webp) no-repeat top left/cover;
  opacity: 0.1;
}
@media screen and (max-width: 834px) {
  .top-sec04::before {
    width: 40%;
    right: 30px;
  }
}
@media screen and (max-width: 450px) {
  .top-sec04::before {
    width: 50%;
    right: 15px;
  }
}
@media screen and (max-width: 1100px) {
  .top-sec04 {
    margin-top: 100px;
  }
}
@media screen and (max-width: 450px) {
  .top-sec04 {
    margin-top: 80px;
  }
}

.side-scroll-section {
  position: relative;
  margin: 60px auto 0;
  width: 100%;
  height: 500px;
  background-color: #ec6640;
}
@media screen and (max-width: 1100px) {
  .side-scroll-section {
    max-width: 100%;
    width: 100%;
    height: auto;
  }
}
@media screen and (max-width: 450px) {
  .side-scroll-section {
    margin-top: 30px;
  }
}

.side-scroll-list {
  position: absolute;
  top: 0;
  left: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  column-gap: 30px;
}
@media screen and (max-width: 1100px) {
  .side-scroll-list {
    position: relative;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    gap: 10px 20px;
  }
}

.top-sec04_item {
  width: 380px;
  width: 410px;
  padding: 60px 35px;
  background-color: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
}
.top-sec04_item h3 {
  margin: 14px 0;
}
@media screen and (max-width: 1100px) {
  .top-sec04_item {
    padding: 30px 20px;
    width: calc(50% - 20px);
  }
}
@media screen and (max-width: 450px) {
  .top-sec04_item {
    width: 100%;
  }
}

@media screen and (max-width: 450px) {
  .top-sec04_item-flex {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-direction: reverse;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
    gap: 15px;
  }
}

.top-sec04_fig {
  min-height: 51px;
}

/***************************

object/object/project/_top-sec05.scss

***************************/
.top-sec05 {
  margin-top: 150px;
}
@media screen and (max-width: 834px) {
  .top-sec05 {
    margin-top: 100px;
  }
}
@media screen and (max-width: 450px) {
  .top-sec05 {
    margin-top: 50px;
  }
}

.top-sec05_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 30px;
}
@media screen and (max-width: 1100px) {
  .top-sec05_flex {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 450px) {
  .top-sec05_flex {
    gap: 15px;
  }
}

.top-sec05_hg {
  width: 625px;
  line-height: 1;
}
.top-sec05_hg h2 {
  margin-top: 20px;
}
@media screen and (max-width: 450px) {
  .top-sec05_hg h2 {
    margin-top: 10px;
  }
}
@media screen and (max-width: 1100px) {
  .top-sec05_hg {
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .top-sec05_hg p {
    line-height: 1.3;
  }
}

.top-sec05_flex-fig {
  max-width: 464px;
  width: calc(100% - 655px);
  padding-right: 45px;
}
@media screen and (max-width: 1100px) {
  .top-sec05_flex-fig {
    width: 100%;
  }
}

.top-sec05_list {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-column-gap: 30px;
  grid-row-gap: 30px;
}
@media screen and (max-width: 1100px) {
  .top-sec05_list {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (max-width: 834px) {
  .top-sec05_list {
    margin-top: 40px;
  }
}
@media screen and (max-width: 723px) {
  .top-sec05_list {
    grid-template-columns: repeat(1, 1fr);
  }
}

.top-sec05_item {
  position: relative;
}
.top-sec05_item:nth-child(1) .c-btn_arrow {
  margin-top: -31px;
}
@media screen and (max-width: 723px) {
  .top-sec05_item:nth-child(1) .c-btn_arrow {
    margin-top: 0;
  }
}

.top-sec05_item-link {
  padding: 10px;
  display: block;
  background-color: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.top-sec05_item-link:hover {
  opacity: 1;
  box-shadow: 0 0 0 rgba(0, 0, 0, 0);
  background-color: #f7f7f7;
}
.top-sec05_item-link:hover .material-symbols-outlined {
  transform: translateX(5px);
}
@media screen and (max-width: 450px) {
  .top-sec05_item-link:hover {
    background-color: #fff;
  }
  .top-sec05_item-link:hover .material-symbols-outlined {
    transform: translateX(0);
  }
}

.top-sec05_fig {
  margin-bottom: 15px;
  text-align: center;
}
.top-sec05_fig img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
}

.top-sec05_list-item {
  position: relative;
  padding-left: 20px;
}
.top-sec05_list-item::before {
  position: absolute;
  content: "\e5ca";
  font-family: "Material Icons";
  left: 0;
  top: 2px;
  color: #fa6650;
}

.top-sec05_item-cont {
  padding: 0 20px;
}

.top-sec05_link {
  position: relative;
  margin-top: 75px;
  padding: 100px 70px;
  display: block;
  color: #fff;
  background: url(../img/top/top-sec05-bnr.webp) no-repeat top left/cover;
  border-radius: 20px;
  -webkit-border-radius: 20px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 834px) {
  .top-sec05_link {
    margin-top: 40px;
    padding: 80px 50px;
  }
}
@media screen and (max-width: 450px) {
  .top-sec05_link {
    padding: 40px 20px;
  }
}
.top-sec05_link .c-btn_arrow {
  position: absolute;
  bottom: 20px;
  right: 20px;
}
.top-sec05_link:hover {
  color: #fff;
}
.top-sec05_link:hover .material-symbols-outlined {
  transform: translateX(5px);
}

/***************************

object/object/project/_top-sec06.scss

***************************/
.top-sec06 {
  position: relative;
  margin-top: 120px;
  padding: 125px 0 140px;
  background-color: #f7f7f7;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .top-sec06 {
    padding: 100px 0;
    margin-top: 80px;
  }
}
@media screen and (max-width: 450px) {
  .top-sec06 {
    margin-top: 50px;
    padding: 50px 0;
  }
}
.top-sec06::before {
  position: absolute;
  content: "";
  width: 480px;
  aspect-ratio: 1/1;
  top: -68px;
  left: -20px;
  background: url(../img/top/top-cmn_bg.webp) no-repeat top left/cover;
  opacity: 0.8;
  z-index: 1;
}
@media screen and (max-width: 834px) {
  .top-sec06::before {
    top: -30px;
    width: 40%;
  }
}
@media screen and (max-width: 450px) {
  .top-sec06::before {
    width: 50%;
  }
}

.top-sec06_flex {
  position: relative;
  padding-left: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  z-index: 2;
}
@media screen and (max-width: 834px) {
  .top-sec06_flex {
    padding-left: 0;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.top-sec06_hg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
  gap: 10px;
  line-height: 1;
}
@media screen and (max-width: 834px) {
  .top-sec06_hg {
    display: block;
  }
}
.top-sec06_hg h2, .top-sec06_hg p {
  writing-mode: vertical-rl;
}
@media screen and (max-width: 834px) {
  .top-sec06_hg h2, .top-sec06_hg p {
    writing-mode: horizontal-tb;
  }
}
.top-sec06_hg p {
  line-height: 1.4;
}
@media screen and (max-width: 834px) {
  .top-sec06_hg p {
    margin-top: 15px;
  }
}

.top-sec06_list {
  width: calc(100% - 205px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 15px;
  grid-row-gap: 15px;
}
@media screen and (max-width: 834px) {
  .top-sec06_list {
    margin-top: 30px;
    width: 100%;
  }
}
@media screen and (max-width: 450px) {
  .top-sec06_list {
    grid-column-gap: 10px;
    grid-row-gap: 10px;
  }
}

.top-sec06_item {
  padding: 38px 10px;
  line-height: 1;
  text-align: center;
  background-color: #fff;
  border-radius: 10px;
  -webkit-border-radius: 10px;
}
@media screen and (max-width: 450px) {
  .top-sec06_item {
    padding: 20px 10px;
  }
}
.top-sec06_item p:has(.f60) {
  padding: 20px 0 15px;
}
@media screen and (max-width: 450px) {
  .top-sec06_item p:has(.f60) {
    padding: 10px 0;
  }
}

/***************************

object/object/project/_top-sec07.scss

***************************/
.top-sec07 {
  margin-top: 100px;
}
@media screen and (max-width: 834px) {
  .top-sec07 {
    margin-top: 80px;
  }
}
@media screen and (max-width: 450px) {
  .top-sec07 {
    margin-top: 50px;
  }
}

.top-sec07_flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 40px 60px;
}
@media screen and (max-width: 834px) {
  .top-sec07_flex {
    -ms-flex-wrap: wrap-reverse;
    flex-wrap: wrap-reverse;
  }
}

@media screen and (max-width: 834px) {
  .top-sec07_fig {
    width: 100%;
    text-align: center;
  }
}
@media screen and (max-width: 450px) {
  .top-sec07_fig {
    width: 100vw;
    margin-left: calc(-50vw + 50%);
  }
}
.top-sec07_fig img {
  border-radius: 10px;
  -webkit-border-radius: 10px;
}
@media screen and (max-width: 450px) {
  .top-sec07_fig img {
    max-width: 100vw;
    width: 100vw;
    border-radius: 0px;
    -webkit-border-radius: 0px;
  }
}

.top-sec07_cont .c-top_hg {
  margin-bottom: 20px;
}
@media screen and (max-width: 450px) {
  .top-sec07_cont .c-top_hg {
    margin-bottom: 10px;
  }
}
.top-sec07_cont .f24 {
  margin-bottom: 25px;
}
@media screen and (max-width: 450px) {
  .top-sec07_cont .f24 {
    margin-bottom: 20px;
  }
}
.top-sec07_cont .c-btn {
  margin-top: 40px;
}
@media screen and (max-width: 450px) {
  .top-sec07_cont .c-btn {
    margin: 30px auto 0;
  }
}

/***************************

object/utility/display.scss

***************************/
.relative {
  position: relative;
}

.inline {
  display: inline;
}

.inline-block {
  display: inline-block;
}

.block {
  display: block;
}

.none {
  display: none;
}

.flexbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-row {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row;
  flex-direction: row;
}

.flex-row-rev {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}

.flex-col {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col;
  flex-direction: col;
}

.flex-col-rev {
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: col-reverse;
  flex-direction: col-reverse;
}

.flex-nowrap {
  -ms-flex-wrap: none;
  flex-wrap: nowrap;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-wrap-reverse {
  -ms-flex-wrap: wrap-reverse;
  flex-wrap: wrap-reverse;
}

.flex-justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}

.flex-justify-end {
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}

.flex-justify-center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.flex-justify-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.flex-justify-around {
  -ms-flex-pack: distribute;
  justify-content: space-around;
}

.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-align-end {
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}

.flex-align-center {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.flex-align-baseline {
  -webkit-box-align: baseline;
  -ms-flex-align: baseline;
  align-items: baseline;
}

.flex-item {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
}

.flex-item0 {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}

/***************************

object/utility/_background.scss

***************************/
/***************************

object/utility/_link.scss

***************************/
.link--under-line {
  text-decoration: underline;
}

.link--under-line:hover {
  text-decoration: none;
}

/***************************

object/utility/_text.scss

***************************/
.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.vat {
  vertical-align: top;
}

.vam {
  vertical-align: middle;
}

.vab {
  vertical-align: bottom;
}

.fwb {
  font-weight: bold;
}

.fwm {
  font-weight: 500;
}

.fwn {
  font-weight: normal;
}

.f12 {
  font-size: 1.2rem;
}
@media screen and (max-width: 834px) {
  .f12 {
    font-size: 1.1rem;
  }
}

.f13 {
  font-size: 1.3rem;
}
@media screen and (max-width: 834px) {
  .f13 {
    font-size: 1.2rem;
  }
}

.f14 {
  font-size: 1.4rem;
}
@media screen and (max-width: 834px) {
  .f14 {
    font-size: 1.3rem;
  }
}

.f18 {
  font-size: 1.8rem;
}
@media screen and (max-width: 834px) {
  .f18 {
    font-size: 1.6rem;
  }
}

.f19 {
  font-size: 1.9rem;
}
@media screen and (max-width: 834px) {
  .f19 {
    font-size: 1.7rem;
  }
}

.f21 {
  font-size: 2.1rem;
}
@media screen and (max-width: 834px) {
  .f21 {
    font-size: 1.8rem;
  }
}

.f24 {
  font-size: 2.4rem;
}
@media screen and (max-width: 834px) {
  .f24 {
    font-size: 2rem;
  }
}

.f28 {
  font-size: 2.8rem;
}
@media screen and (max-width: 834px) {
  .f28 {
    font-size: 2.6rem;
  }
}

.f32 {
  font-size: 3.2rem;
}
@media screen and (max-width: 834px) {
  .f32 {
    font-size: 2.8rem;
  }
}

.f42 {
  font-size: 4.2rem;
}
@media screen and (max-width: 834px) {
  .f42 {
    font-size: 3.6rem;
  }
}
@media screen and (max-width: 450px) {
  .f42 {
    font-size: 2.8rem;
  }
}

.f52 {
  font-size: 5.2rem;
}
@media screen and (max-width: 834px) {
  .f52 {
    font-size: 3.2rem;
  }
}
@media screen and (max-width: 450px) {
  .f52 {
    font-size: 2.5rem;
  }
}

.f60 {
  font-size: 6rem;
}
@media screen and (max-width: 834px) {
  .f60 {
    font-size: 5rem;
  }
}
@media screen and (max-width: 450px) {
  .f60 {
    font-size: 3rem;
  }
}

.fc-wht {
  color: #fff;
}

.fc-orange {
  color: #fa6650;
}

.copy {
  display: block;
  text-align: right;
  font-family: "Roboto", serif;
  color: #a8a8a8;
  line-height: 1.5;
}

/***************************

object/utility/spases.scss

***************************/
.m-0 {
  margin: 0;
}

.mt0 {
  margin-top: 0px;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt35 {
  margin-top: 35px;
}

.mt40 {
  margin-top: 40px;
}

.mt45 {
  margin-top: 45px;
}

.mt50 {
  margin-top: 50px;
}

.mt55 {
  margin-top: 55px;
}

.mt60 {
  margin-top: 60px;
}

.mt65 {
  margin-top: 65px;
}

.mt70 {
  margin-top: 70px;
}

.mt75 {
  margin-top: 75px;
}

.mt80 {
  margin-top: 80px;
}

.mt85 {
  margin-top: 85px;
}

.mt90 {
  margin-top: 90px;
}

.mt95 {
  margin-top: 95px;
}

.mt100 {
  margin-top: 100px;
}

.mb0 {
  margin-bottom: 0px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.mb55 {
  margin-bottom: 55px;
}

.mb60 {
  margin-bottom: 60px;
}

.mb65 {
  margin-bottom: 65px;
}

.mb70 {
  margin-bottom: 70px;
}

.mb75 {
  margin-bottom: 75px;
}

.mb80 {
  margin-bottom: 80px;
}

.mb85 {
  margin-bottom: 85px;
}

.mb90 {
  margin-bottom: 90px;
}

.mb95 {
  margin-bottom: 95px;
}

.mb100 {
  margin-bottom: 100px;
}

.mr0 {
  margin-right: 0px;
}

.mr5 {
  margin-right: 5px;
}

.mr10 {
  margin-right: 10px;
}

.mr15 {
  margin-right: 15px;
}

.mr20 {
  margin-right: 20px;
}

.mr25 {
  margin-right: 25px;
}

.mr30 {
  margin-right: 30px;
}

.mr35 {
  margin-right: 35px;
}

.mr40 {
  margin-right: 40px;
}

.mr45 {
  margin-right: 45px;
}

.mr50 {
  margin-right: 50px;
}

.mr55 {
  margin-right: 55px;
}

.mr60 {
  margin-right: 60px;
}

.mr65 {
  margin-right: 65px;
}

.mr70 {
  margin-right: 70px;
}

.mr75 {
  margin-right: 75px;
}

.mr80 {
  margin-right: 80px;
}

.mr85 {
  margin-right: 85px;
}

.mr90 {
  margin-right: 90px;
}

.mr95 {
  margin-right: 95px;
}

.mr100 {
  margin-right: 100px;
}

.ml0 {
  margin-left: 0px;
}

.ml5 {
  margin-left: 5px;
}

.ml10 {
  margin-left: 10px;
}

.ml15 {
  margin-left: 15px;
}

.ml20 {
  margin-left: 20px;
}

.ml25 {
  margin-left: 25px;
}

.ml30 {
  margin-left: 30px;
}

.ml35 {
  margin-left: 35px;
}

.ml40 {
  margin-left: 40px;
}

.ml45 {
  margin-left: 45px;
}

.ml50 {
  margin-left: 50px;
}

.ml55 {
  margin-left: 55px;
}

.ml60 {
  margin-left: 60px;
}

.ml65 {
  margin-left: 65px;
}

.ml70 {
  margin-left: 70px;
}

.ml75 {
  margin-left: 75px;
}

.ml80 {
  margin-left: 80px;
}

.ml85 {
  margin-left: 85px;
}

.ml90 {
  margin-left: 90px;
}

.ml95 {
  margin-left: 95px;
}

.ml100 {
  margin-left: 100px;
}

.p-0 {
  padding: 0;
}

.pt-0 {
  padding-top: 0px;
}

.pt-5 {
  padding-top: 5px;
}

.pt-10 {
  padding-top: 10px;
}

.pt-15 {
  padding-top: 15px;
}

.pt-20 {
  padding-top: 20px;
}

.pt-25 {
  padding-top: 25px;
}

.pt-30 {
  padding-top: 30px;
}

.pt-35 {
  padding-top: 35px;
}

.pt-40 {
  padding-top: 40px;
}

.pt-45 {
  padding-top: 45px;
}

.pt-50 {
  padding-top: 50px;
}

.pt-55 {
  padding-top: 55px;
}

.pt-60 {
  padding-top: 60px;
}

.pt-65 {
  padding-top: 65px;
}

.pt-70 {
  padding-top: 70px;
}

.pt-75 {
  padding-top: 75px;
}

.pt-80 {
  padding-top: 80px;
}

.pt-85 {
  padding-top: 85px;
}

.pt-90 {
  padding-top: 90px;
}

.pt-95 {
  padding-top: 95px;
}

.pt-100 {
  padding-top: 100px;
}

.pb-0 {
  padding-bottom: 0px;
}

.pb-5 {
  padding-bottom: 5px;
}

.pb-10 {
  padding-bottom: 10px;
}

.pb-15 {
  padding-bottom: 15px;
}

.pb-20 {
  padding-bottom: 20px;
}

.pb-25 {
  padding-bottom: 25px;
}

.pb-30 {
  padding-bottom: 30px;
}

.pb-35 {
  padding-bottom: 35px;
}

.pb-40 {
  padding-bottom: 40px;
}

.pb-45 {
  padding-bottom: 45px;
}

.pb-50 {
  padding-bottom: 50px;
}

.pb-55 {
  padding-bottom: 55px;
}

.pb-60 {
  padding-bottom: 60px;
}

.pb-65 {
  padding-bottom: 65px;
}

.pb-70 {
  padding-bottom: 70px;
}

.pb-75 {
  padding-bottom: 75px;
}

.pb-80 {
  padding-bottom: 80px;
}

.pb-85 {
  padding-bottom: 85px;
}

.pb-90 {
  padding-bottom: 90px;
}

.pb-95 {
  padding-bottom: 95px;
}

.pb-100 {
  padding-bottom: 100px;
}

.pr-0 {
  padding-right: 0px;
}

.pr-5 {
  padding-right: 5px;
}

.pr-10 {
  padding-right: 10px;
}

.pr-15 {
  padding-right: 15px;
}

.pr-20 {
  padding-right: 20px;
}

.pr-25 {
  padding-right: 25px;
}

.pr-30 {
  padding-right: 30px;
}

.pr-35 {
  padding-right: 35px;
}

.pr-40 {
  padding-right: 40px;
}

.pr-45 {
  padding-right: 45px;
}

.pr-50 {
  padding-right: 50px;
}

.pr-55 {
  padding-right: 55px;
}

.pr-60 {
  padding-right: 60px;
}

.pr-65 {
  padding-right: 65px;
}

.pr-70 {
  padding-right: 70px;
}

.pr-75 {
  padding-right: 75px;
}

.pr-80 {
  padding-right: 80px;
}

.pr-85 {
  padding-right: 85px;
}

.pr-90 {
  padding-right: 90px;
}

.pr-95 {
  padding-right: 95px;
}

.pr-100 {
  padding-right: 100px;
}

.pl-0 {
  padding-left: 0px;
}

.pl-5 {
  padding-left: 5px;
}

.pl-10 {
  padding-left: 10px;
}

.pl-15 {
  padding-left: 15px;
}

.pl-20 {
  padding-left: 20px;
}

.pl-25 {
  padding-left: 25px;
}

.pl-30 {
  padding-left: 30px;
}

.pl-35 {
  padding-left: 35px;
}

.pl-40 {
  padding-left: 40px;
}

.pl-45 {
  padding-left: 45px;
}

.pl-50 {
  padding-left: 50px;
}

.pl-55 {
  padding-left: 55px;
}

.pl-60 {
  padding-left: 60px;
}

.pl-65 {
  padding-left: 65px;
}

.pl-70 {
  padding-left: 70px;
}

.pl-75 {
  padding-left: 75px;
}

.pl-80 {
  padding-left: 80px;
}

.pl-85 {
  padding-left: 85px;
}

.pl-90 {
  padding-left: 90px;
}

.pl-95 {
  padding-left: 95px;
}

.pl-100 {
  padding-left: 100px;
}

/***************************

object/utility/_font.scss

***************************/
.ff-poppins {
  font-family: "Poppins", serif;
}

.ff-roboto {
  font-family: "Roboto", serif;
}/*# sourceMappingURL=style.css.map */