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

foundation/base.scss

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

:root {
  --orange: #f4862e;
  --dark-orange: #e95412;
}

html {
  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;
  color: #222;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  height: 100%;
  margin: 0;
  padding: 0;
  line-height: 1;
  width: 100%;
  color: #222;
}

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

a:hover {
  opacity: 0.6;
}

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,
picture {
  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%;
  margin: 0 auto;
  padding: 2rem 3rem;
  background-color: #fff;
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.1);
  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: 3rem;
}
@media screen and (max-width: 1100px) {
  .header {
    padding: 0 0 0 1.5rem;
  }
}
.header-left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 3.5rem;
}
.header-logo {
  max-width: 131px;
}
@media screen and (max-width: 560px) {
  .header-logo {
    max-width: 23vw;
  }
}
@media screen and (max-width: 450px) {
  .header-logo {
    max-width: 20vw;
  }
}
.header-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 6px;
}
@media screen and (max-width: 560px) {
  .header-right .c-btn01,
  .header-right .c-btn02 {
    font-size: 2.4vw;
  }
}
@media screen and (max-width: 450px) {
  .header-right .c-btn01,
  .header-right .c-btn02 {
    padding: 0.8em;
    font-size: 14px;
  }
}
@media screen and (max-width: 390px) {
  .header-right .c-btn01,
  .header-right .c-btn02 {
    font-size: 13px;
  }
}
@media screen and (max-width: 375px) {
  .header-right .c-btn01,
  .header-right .c-btn02 {
    font-size: 12px;
  }
}

/* Hamburger menu */
@media screen and (max-width: 1100px) {
  .gnav {
    position: absolute;
    top: 10rem;
    right: -100%;
    padding: 5rem 0;
    transition: all 0.5s ease-in-out;
    overflow-y: scroll;
    scrollbar-width: none;
    z-index: 11;
  }
  .gnav ::-webkit-scrollbar {
    display: none;
  }
  .gnav.active {
    height: calc(100dvh - 10rem);
    right: 0;
    background-color: #fff;
  }
}
@media screen and (max-width: 834px) {
  .gnav {
    top: 8rem;
  }
  .gnav.active {
    height: calc(100dvh - 8rem);
  }
}
@media screen and (max-width: 560px) {
  .gnav {
    top: 14vw;
    padding: 5vw 0;
  }
  .gnav.active {
    height: calc(100dvh - 14vw);
  }
}
@media screen and (max-width: 450px) {
  .gnav {
    padding: 8vw 0;
  }
}
.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;
  gap: 1em 2em;
  font-size: 1.5rem;
  font-weight: 500;
}
@media screen and (max-width: 1100px) {
  .gnav-list {
    width: 100vw;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
  .gnav-list-item {
    width: 100%;
    text-align: center;
  }
  .gnav-list-item:not(:first-of-type) {
    margin-top: 1.5em;
    padding-top: 1.5em;
    border-top: 1px solid #ddd;
  }
}
@media screen and (max-width: 560px) {
  .gnav-list {
    font-size: 3vw;
  }
}
@media screen and (max-width: 450px) {
  .gnav-list {
    font-size: 1.6rem;
  }
}
.gnav-btn__wrap {
  display: none;
}
@media screen and (max-width: 1100px) {
  .gnav-btn__wrap {
    margin-top: 5rem;
    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: 1rem;
  }
  .gnav-btn__wrap .c-btn01,
  .gnav-btn__wrap .c-btn02 {
    height: 10rem;
    font-size: 2rem;
    box-shadow: 0px 0px 13px rgba(0, 0, 0, 0.34);
  }
}
@media screen and (max-width: 1100px) and (max-width: 834px) {
  .gnav-btn__wrap .c-btn01,
  .gnav-btn__wrap .c-btn02 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1100px) {
  .gnav-btn__wrap .c-btn01 i,
  .gnav-btn__wrap .c-btn02 i {
    display: block;
    max-width: 20px;
    margin: 0 auto 1.5rem;
  }
}
@media screen and (max-width: 560px) {
  .gnav-btn__wrap .c-btn01,
  .gnav-btn__wrap .c-btn02 {
    font-size: 3.6vw;
    height: 18vw;
  }
}
@media screen and (max-width: 450px) {
  .gnav-btn__wrap .c-btn01,
  .gnav-btn__wrap .c-btn02 {
    width: 40%;
    height: 19vw;
  }
  .gnav-btn__wrap .c-btn01 i {
    margin-bottom: 2vw;
  }
  .gnav-btn__wrap .c-btn02 i {
    margin-bottom: 3vw;
  }
}
.gnav .f16 {
  display: none;
}
@media screen and (max-width: 1100px) {
  .gnav .f16 {
    display: block;
  }
}
@media screen and (min-width: 1101px) {
  .gnav .tel-link {
    display: none;
  }
}
@media screen and (max-width: 1100px) {
  .gnav .tel-link {
    margin-top: 4rem;
  }
}
@media screen and (max-width: 560px) {
  .gnav .tel-link {
    margin-top: 5vw;
    font-size: 9vw;
  }
  .gnav .tel-link img {
    max-width: 9vw;
  }
}

/* toggle button */
.toggle {
  display: none;
}
@media screen and (max-width: 1100px) {
  .toggle {
    display: block;
    position: relative;
    width: 100px;
    aspect-ratio: 1/1;
    margin-left: 1.5rem;
    cursor: pointer;
    background: transparent;
    border: none;
    outline: none;
    text-align: center;
    z-index: 10;
    background-color: #3260ed;
  }
  .toggle.active .toggle__bar:nth-child(1) {
    -webkit-transform: translateY(7px) rotate(135deg);
    transform: translateY(7px) rotate(135deg);
  }
  .toggle.active .toggle__bar:nth-child(2) {
    background-color: transparent;
  }
  .toggle.active .toggle__bar:nth-child(3) {
    -webkit-transform: translateY(-7px) rotate(-135deg);
    transform: translateY(-7px) rotate(-135deg);
  }
}
@media screen and (max-width: 834px) {
  .toggle {
    width: 80px;
  }
}
@media screen and (max-width: 560px) {
  .toggle {
    width: 14vw;
  }
}

.toggle__bar {
  position: relative;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  display: block;
  margin: 0 auto;
  width: 30px;
  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.5s;
  transition-duration: 0.5s;
}
@media screen and (max-width: 560px) {
  .toggle__bar {
    width: 6vw;
  }
}
.toggle__bar:nth-of-type(1) {
  top: -6px;
}
.toggle__bar:nth-of-type(3) {
  top: 6px;
}

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

layout/_footer.scss

***************************/
.footer {
  padding: 7rem 0 15rem;
  text-align: center;
}

.copy {
  font-size: 1.3rem;
  color: #aaa;
}

.btm-bnr {
  position: fixed;
  bottom: -13rem;
  left: 0;
  z-index: 100;
  width: 100vw;
  padding: 2rem 0;
  background-color: rgba(24, 54, 151, 0.8);
  transition: all 1s ease-in-out;
}
@media screen and (max-width: 834px) {
  .btm-bnr {
    bottom: -14rem;
    padding: 1rem 0 2rem;
  }
}
.btm-bnr.is-show {
  bottom: 0;
}
.btm-bnr__inner {
  max-width: 1200px;
  width: 90%;
  margin: 0 auto;
  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: 3rem;
}
@media screen and (max-width: 834px) {
  .btm-bnr__inner {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 1.5rem;
  }
}
.btm-bnr__inner .f18 {
  width: 45%;
}
@media screen and (max-width: 834px) {
  .btm-bnr__inner .f18 {
    width: 100%;
    text-align: center;
  }
}
.btm-bnr__link-wrap {
  width: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 2rem;
}
@media screen and (max-width: 834px) {
  .btm-bnr__link-wrap {
    width: 100%;
    gap: 1rem;
  }
}
.btm-bnr__link-wrap .c-btn01,
.btm-bnr__link-wrap .c-btn02 {
  max-width: 290px;
  width: 100%;
  padding: 1.5rem 1rem;
  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: 5px;
  font-size: 2.1rem;
  box-shadow: 0px 0px 13px rgba(0, 14, 38, 0.34);
}
@media screen and (max-width: 834px) {
  .btm-bnr__link-wrap .c-btn01,
  .btm-bnr__link-wrap .c-btn02 {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 450px) {
  .btm-bnr__link-wrap .c-btn01,
  .btm-bnr__link-wrap .c-btn02 {
    font-size: 4.7vw;
  }
}
@media screen and (max-width: 690px) {
  .btm-bnr__link-wrap .c-btn01,
  .btm-bnr__link-wrap .c-btn02 {
    font-size: 4vw;
  }
}
.btm-bnr__link-wrap .c-btn01 i,
.btm-bnr__link-wrap .c-btn02 i {
  display: block;
  max-width: 2.6rem;
}
@media screen and (max-width: 690px) {
  .btm-bnr__link-wrap .c-btn01 i,
  .btm-bnr__link-wrap .c-btn02 i {
    max-width: 4vw;
  }
}
.btm-bnr__close {
  all: unset;
  position: absolute;
  top: 1.5rem;
  right: 3rem;
  font-size: 2.4rem;
  color: #fff;
  cursor: pointer;
}
@media screen and (max-width: 450px) {
  .btm-bnr__close {
    top: 1rem;
    right: 2rem;
    font-size: 2.2rem;
  }
}

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

object/object/project/_mv.scss

***************************/
.sec-mv {
  margin-top: 89px;
  padding-top: 5rem;
  max-height: 100dvh;
  min-height: 76rem;
  background: url(../img/mv/mv-bg.webp) no-repeat center center/cover;
}
@media screen and (max-width: 1360px) {
  .sec-mv {
    min-height: 71rem;
  }
}
@media screen and (max-width: 1100px) {
  .sec-mv {
    margin-top: 100px;
    min-height: 64rem;
  }
}
@media screen and (max-width: 834px) {
  .sec-mv {
    margin-top: 80px;
    padding-bottom: 12vw;
    height: auto;
    min-height: auto;
  }
}
@media screen and (max-width: 560px) {
  .sec-mv {
    margin-top: 14vw;
  }
}
.sec-mv::before, .sec-mv::after {
  position: absolute;
  content: "";
  width: 1462px;
  aspect-ratio: 1462/328;
  background: url(../img/mv/shining-bg.webp) no-repeat center center/cover;
  top: 28%;
  left: 0;
  mix-blend-mode: screen;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 834px) {
  .sec-mv::before, .sec-mv::after {
    top: 32vw;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 834px) {
  .sec-mv::before {
    display: none;
  }
}
.sec-mv::after {
  max-width: 1092px;
  width: 65vw;
  aspect-ratio: 1092/351;
  background: url(../img/mv/shining-pc.webp) no-repeat center center/cover;
  z-index: 3;
  top: 30%;
  left: 7.5%;
  pointer-events: none;
}
@media screen and (max-width: 834px) {
  .sec-mv::after {
    width: 96vw;
    aspect-ratio: 750/374;
    background-image: url(../img/mv/shining-sp.webp);
    top: 30%;
    left: 49%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 590px) {
  .sec-mv::after {
    top: 34vw;
  }
}
@media screen and (max-width: 450px) {
  .sec-mv::after {
    top: 38vw;
  }
}
@media screen and (max-width: 380px) {
  .sec-mv::after {
    top: 40vw;
  }
}
.sec-mv__txt01 {
  position: relative;
  max-width: calc(653px + 24rem);
  margin: 0 auto;
  padding: 0 12rem;
}
@media screen and (max-width: 834px) {
  .sec-mv__txt01 {
    max-width: none;
    width: 84vw;
    padding: 0;
    text-align: center;
  }
  .sec-mv__txt01 img {
    width: 100%;
  }
}
.sec-mv__txt01::before, .sec-mv__txt01::after {
  position: absolute;
  content: "";
  width: 111px;
  height: 2px;
  top: calc(50% - 1px);
  background: url(../img/mv/txt01-ab.webp) no-repeat center center/cover;
  pointer-events: none;
}
@media screen and (max-width: 834px) {
  .sec-mv__txt01::before, .sec-mv__txt01::after {
    width: 100%;
    top: auto;
    bottom: 0;
    background-image: url(../img/mv/txt01-ab_sp.webp);
    background-size: 100% 2px;
  }
}
.sec-mv__txt01::before {
  left: 0;
}
.sec-mv__txt01::after {
  right: 0;
  transform: rotate(180deg);
}
@media screen and (max-width: 834px) {
  .sec-mv__txt01::after {
    display: none;
  }
}
.sec-mv__ttl {
  position: relative;
  z-index: 2;
  max-width: 1367px;
  width: 82vw;
  aspect-ratio: 1367/380;
  margin: 2rem 4% 0 auto;
}
@media screen and (max-width: 834px) {
  .sec-mv__ttl {
    max-width: none;
    margin: 0 auto 0 -5vw;
    width: 96vw;
  }
  .sec-mv__ttl img {
    max-width: none;
    width: 100%;
  }
}
.sec-mv__logo {
  position: relative;
  max-width: 457px;
  width: 28vw;
  margin: -5vw auto 0;
  z-index: 2;
}
@media screen and (max-width: 834px) {
  .sec-mv__logo {
    margin-top: -3vw;
    width: 55vw;
  }
}
.sec-mv__box {
  position: relative;
}
.sec-mv__box::before {
  position: absolute;
  content: "";
  width: 100vw;
  height: 9rem;
  top: calc(58% - 4.5rem);
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(0deg, rgb(30, 0, 168) 0%, rgb(31, 0, 218) 86%);
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 834px) {
  .sec-mv__box::before {
    height: 14vw;
    top: calc(52% - 7vw);
  }
}
@media screen and (max-width: 450px) {
  .sec-mv__box::before {
    height: 20vw;
    top: calc(52% - 10vw);
  }
}
.sec-mv__box::after {
  position: absolute;
  content: "";
  max-width: 416px;
  width: 100%;
  aspect-ratio: 416/171;
  top: 0;
  right: 7%;
  background: url(../img/mv/shining-one.webp) no-repeat center center/cover;
  z-index: 3;
  mix-blend-mode: screen;
  pointer-events: none;
}
@media screen and (max-width: 834px) {
  .sec-mv__box::after {
    display: none;
  }
}
.sec-mv__txt02 {
  position: relative;
  max-width: 706px;
  margin: -2vw auto 0 12vw;
  z-index: 2;
}
@media screen and (max-width: 834px) {
  .sec-mv__txt02 {
    max-width: none;
    margin: 1vw auto 0 -4vw;
    width: 93vw;
  }
  .sec-mv__txt02 img {
    max-width: none;
    width: 100%;
  }
}
.sec-mv__list {
  margin-top: -5%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-column-gap: 2.5rem;
  grid-row-gap: 1rem;
}
@media screen and (max-width: 834px) {
  .sec-mv__list {
    margin-top: -6vw;
    padding-bottom: 7vw;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 1vw;
    grid-row-gap: 4vw;
  }
}
.sec-mv__list-wrap {
  position: relative;
}
@media screen and (max-width: 834px) {
  .sec-mv__list-wrap .inner {
    width: 86vw;
  }
}
.sec-mv__item {
  position: relative;
  padding: 2.5rem 0;
  background-color: #fff;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  background-repeat: no-repeat;
  box-shadow: 0px 2px 7px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 834px) {
  .sec-mv__item {
    padding: 3vw 0;
  }
}
@media screen and (max-width: 450px) {
  .sec-mv__item {
    padding: 5vw 0;
    border-radius: 2vw;
    -webkit-border-radius: 2vw;
  }
}
.sec-mv__item:nth-of-type(1) {
  background-image: url(../img/mv/list01.webp);
  background-size: 102px 131px;
  background-position: bottom -5px right;
}
@media screen and (max-width: 834px) {
  .sec-mv__item:nth-of-type(1) {
    background-size: auto 100%;
    background-position: bottom right;
  }
}
.sec-mv__item:nth-of-type(2) {
  background-image: url(../img/mv/list02.webp);
  background-size: 111px 110px;
  background-position: bottom right -5px;
}
@media screen and (max-width: 834px) {
  .sec-mv__item:nth-of-type(2) {
    background-size: auto 100%;
    background-position: bottom right;
  }
}
.sec-mv__item:nth-of-type(3) {
  background-image: url(../img/mv/list03.webp);
  background-size: 147px 120px;
  background-position: bottom -5px right -18px;
}
@media screen and (max-width: 834px) {
  .sec-mv__item:nth-of-type(3) {
    background-size: auto 100%;
    background-position: bottom right;
  }
}
.sec-mv__item:nth-of-type(4) {
  background-image: url(../img/mv/list04.webp);
  background-size: 100px 128px;
  background-position: bottom right;
}
@media screen and (max-width: 834px) {
  .sec-mv__item:nth-of-type(4) {
    background-size: auto 100%;
    background-position: bottom right;
  }
}
.sec-mv__item::before {
  position: absolute;
  content: "";
  width: calc(100% - 10px);
  height: calc(100% - 10px);
  top: 3px;
  left: 3px;
  border: 2px solid #3260ed;
  border-radius: 7px;
  -webkit-border-radius: 7px;
  pointer-events: none;
}
@media screen and (max-width: 450px) {
  .sec-mv__item::before {
    border-radius: 2vw;
    -webkit-border-radius: 2vw;
  }
}
.sec-mv__item-num {
  position: absolute;
  top: -0.5em;
  left: 1rem;
  font-family: "Albert Sans", sans-serif;
  font-style: italic;
  color: #3260ed;
  font-weight: 600;
  text-shadow: -2px -2px 0 white, 2px -2px 0 white, -2px 2px 0 white, 2px 2px 0 white;
}
@media screen and (min-width: 1681px) {
  .sec-mv__item-num {
    font-size: 6rem;
  }
}
@media screen and (max-width: 1680px) {
  .sec-mv__item-num {
    font-size: 3.6vw;
  }
}
@media screen and (max-width: 834px) {
  .sec-mv__item-num {
    font-size: 7.2vw;
    left: 4vw;
  }
}
.sec-mv__item .f28 {
  line-height: 1.4;
}
@media screen and (min-width: 1681px) {
  .sec-mv__item .f28 {
    font-size: 2.8rem;
  }
}
@media screen and (min-width: 1681px) and (max-width: 450px) {
  .sec-mv__item .f28 {
    font-size: 6vw;
  }
}
@media screen and (max-width: 1680px) {
  .sec-mv__item .f28 {
    font-size: 1.7vw;
  }
}
@media screen and (max-width: 834px) {
  .sec-mv__item .f28 {
    line-height: 1.25;
    font-size: clamp(1.5rem, 4vw, 4.5rem);
    font-weight: 900;
  }
}

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

object/object/project/_pack.scss

***************************/
.sec-pack {
  margin-top: -7rem;
  padding: 15rem 0 10rem;
  background-image: url(../img/pack/bg.webp);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: top center;
  background-color: #f0f4fd;
}
@media screen and (max-width: 834px) {
  .sec-pack {
    margin-top: -37vw;
    padding: 40vw 0 5rem;
  }
}
@media screen and (max-width: 450px) {
  .sec-pack {
    margin-top: -45vw;
    padding-top: 50vw;
  }
}
.sec-pack__hg {
  margin-bottom: 5rem;
}
@media screen and (max-width: 834px) {
  .sec-pack__hg {
    margin-bottom: 3rem;
  }
}
.sec-pack__txt {
  margin-bottom: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media screen and (max-width: 600px) {
  .sec-pack__txt {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .sec-pack__txt ruby {
    margin-top: 1rem;
  }
}
.sec-pack__txt img {
  max-width: 233px;
}
.sec-pack__txt rt {
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 0;
}
.sec-pack__list {
  margin-top: 6rem;
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
}
@media screen and (max-width: 1100px) {
  .sec-pack__list {
    grid-column-gap: 1rem;
    grid-row-gap: 3rem;
  }
}
@media screen and (max-width: 834px) {
  .sec-pack__list {
    margin-top: 4rem;
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 500px) {
  .sec-pack__list {
    grid-template-columns: repeat(1, 1fr);
    grid-row-gap: 2rem;
  }
}
@media screen and (min-width: 835px) {
  .sec-pack__item:nth-of-type(1) {
    grid-column: span 6;
  }
}
@media screen and (max-width: 834px) and (min-width: 501px) {
  .sec-pack__item:nth-of-type(1) {
    grid-column: span 2;
  }
}
.sec-pack__item:nth-of-type(1) .sec-pack__item-img img {
  max-height: 31rem;
}
.sec-pack__item:nth-of-type(1) .sec-pack__item-logo img {
  width: 78.6%;
}
@media screen and (min-width: 835px) {
  .sec-pack__item:nth-of-type(2) {
    grid-column: span 6;
  }
}
@media screen and (max-width: 834px) and (min-width: 501px) {
  .sec-pack__item:nth-of-type(2) {
    grid-column: span 2;
  }
}
.sec-pack__item:nth-of-type(2) .sec-pack__item-logo img {
  width: 71%;
}
@media screen and (min-width: 835px) {
  .sec-pack__item:nth-of-type(3) {
    grid-column: span 4;
  }
}
@media screen and (max-width: 834px) and (min-width: 501px) {
  .sec-pack__item:nth-of-type(3) {
    grid-column: span 2;
  }
}
.sec-pack__item:nth-of-type(3) .sec-pack__item-img img {
  max-height: 16.6rem;
}
.sec-pack__item:nth-of-type(3) .sec-pack__item-logo img {
  width: 86%;
}
@media screen and (min-width: 835px) {
  .sec-pack__item:nth-of-type(4) {
    grid-column: span 4;
  }
}
@media screen and (max-width: 834px) and (min-width: 501px) {
  .sec-pack__item:nth-of-type(4) {
    grid-column: span 2;
  }
}
.sec-pack__item:nth-of-type(4) .sec-pack__item-img img {
  max-height: 14.9rem;
}
.sec-pack__item:nth-of-type(4) .sec-pack__item-logo img {
  width: 71%;
}
@media screen and (min-width: 835px) {
  .sec-pack__item:nth-of-type(5) {
    grid-column: span 4;
  }
}
@media screen and (max-width: 834px) and (min-width: 501px) {
  .sec-pack__item:nth-of-type(5) {
    grid-column: 2/span 2;
  }
}
.sec-pack__item:nth-of-type(5) .sec-pack__item-img img {
  max-height: 18.2rem;
}
.sec-pack__item:nth-of-type(5) .sec-pack__item-logo img {
  width: 51.8%;
}
@media screen and (min-width: 835px) {
  .sec-pack__item:nth-of-type(6) {
    grid-column: span 3;
  }
}
@media screen and (max-width: 834px) and (min-width: 501px) {
  .sec-pack__item:nth-of-type(6) {
    grid-column: span 2;
  }
}
.sec-pack__item:nth-of-type(6) .sec-pack__item-img img {
  max-height: 13.8rem;
}
@media screen and (min-width: 835px) {
  .sec-pack__item:nth-of-type(7) {
    grid-column: span 3;
  }
}
@media screen and (max-width: 834px) and (min-width: 501px) {
  .sec-pack__item:nth-of-type(7) {
    grid-column: span 2;
  }
}
.sec-pack__item:nth-of-type(7) .sec-pack__item-img img {
  max-height: 12.1rem;
}
@media screen and (min-width: 835px) {
  .sec-pack__item:nth-of-type(8) {
    grid-column: span 3;
  }
}
@media screen and (max-width: 834px) and (min-width: 501px) {
  .sec-pack__item:nth-of-type(8) {
    grid-column: span 2;
  }
}
.sec-pack__item:nth-of-type(8) .sec-pack__item-img img {
  max-height: 12.6rem;
}
@media screen and (min-width: 835px) {
  .sec-pack__item:nth-of-type(9) {
    grid-column: span 3;
  }
}
@media screen and (max-width: 834px) and (min-width: 501px) {
  .sec-pack__item:nth-of-type(9) {
    grid-column: span 2;
  }
}
.sec-pack__item:nth-of-type(9) .sec-pack__item-img img {
  max-height: 12.8rem;
}
.sec-pack__item:nth-of-type(1) .sec-pack__item-box, .sec-pack__item:nth-of-type(2) .sec-pack__item-box {
  padding-top: 3rem;
}
.sec-pack__item:nth-of-type(1) .sec-pack__item-img, .sec-pack__item:nth-of-type(2) .sec-pack__item-img {
  min-height: 31rem;
}
@media screen and (max-width: 834px) {
  .sec-pack__item:nth-of-type(1) .sec-pack__item-img, .sec-pack__item:nth-of-type(2) .sec-pack__item-img {
    min-height: 25vw;
  }
}
.sec-pack__item:nth-of-type(3) .sec-pack__item-box, .sec-pack__item:nth-of-type(4) .sec-pack__item-box, .sec-pack__item:nth-of-type(5) .sec-pack__item-box {
  padding-top: 2.5rem;
}
.sec-pack__item:nth-of-type(3) .sec-pack__item-img, .sec-pack__item:nth-of-type(4) .sec-pack__item-img, .sec-pack__item:nth-of-type(5) .sec-pack__item-img {
  min-height: 18.2rem;
}
@media screen and (max-width: 834px) {
  .sec-pack__item:nth-of-type(3) .sec-pack__item-img, .sec-pack__item:nth-of-type(4) .sec-pack__item-img, .sec-pack__item:nth-of-type(5) .sec-pack__item-img {
    min-height: 20vw;
  }
}
.sec-pack__item:nth-of-type(6) .sec-pack__ttl, .sec-pack__item:nth-of-type(7) .sec-pack__ttl, .sec-pack__item:nth-of-type(8) .sec-pack__ttl, .sec-pack__item:nth-of-type(9) .sec-pack__ttl {
  font-size: 2rem;
}
@media screen and (max-width: 834px) {
  .sec-pack__item:nth-of-type(6) .sec-pack__ttl, .sec-pack__item:nth-of-type(7) .sec-pack__ttl, .sec-pack__item:nth-of-type(8) .sec-pack__ttl, .sec-pack__item:nth-of-type(9) .sec-pack__ttl {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 834px) {
  .sec-pack__item:nth-of-type(6) .sec-pack__ttl, .sec-pack__item:nth-of-type(7) .sec-pack__ttl, .sec-pack__item:nth-of-type(8) .sec-pack__ttl, .sec-pack__item:nth-of-type(9) .sec-pack__ttl {
    font-size: 2.2vw;
  }
}
@media screen and (max-width: 500px) {
  .sec-pack__item:nth-of-type(6) .sec-pack__ttl, .sec-pack__item:nth-of-type(7) .sec-pack__ttl, .sec-pack__item:nth-of-type(8) .sec-pack__ttl, .sec-pack__item:nth-of-type(9) .sec-pack__ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 380px) {
  .sec-pack__item:nth-of-type(6) .sec-pack__ttl, .sec-pack__item:nth-of-type(7) .sec-pack__ttl, .sec-pack__item:nth-of-type(8) .sec-pack__ttl, .sec-pack__item:nth-of-type(9) .sec-pack__ttl {
    font-size: 1.8rem;
  }
}
.sec-pack__item:nth-of-type(6) .sec-pack__item-box, .sec-pack__item:nth-of-type(7) .sec-pack__item-box, .sec-pack__item:nth-of-type(8) .sec-pack__item-box, .sec-pack__item:nth-of-type(9) .sec-pack__item-box {
  padding-top: 2rem;
}
.sec-pack__item:nth-of-type(6) .sec-pack__item-img, .sec-pack__item:nth-of-type(7) .sec-pack__item-img, .sec-pack__item:nth-of-type(8) .sec-pack__item-img, .sec-pack__item:nth-of-type(9) .sec-pack__item-img {
  min-height: 13.8rem;
}
@media screen and (max-width: 834px) {
  .sec-pack__item:nth-of-type(6) .sec-pack__item-img, .sec-pack__item:nth-of-type(7) .sec-pack__item-img, .sec-pack__item:nth-of-type(8) .sec-pack__item-img, .sec-pack__item:nth-of-type(9) .sec-pack__item-img {
    min-height: 17vw;
  }
}
.sec-pack__item:nth-of-type(6) .c-txt01, .sec-pack__item:nth-of-type(7) .c-txt01, .sec-pack__item:nth-of-type(8) .c-txt01, .sec-pack__item:nth-of-type(9) .c-txt01 {
  min-height: 7em;
}
@media screen and (max-width: 500px) {
  .sec-pack__item:nth-of-type(6) .c-txt01, .sec-pack__item:nth-of-type(7) .c-txt01, .sec-pack__item:nth-of-type(8) .c-txt01, .sec-pack__item:nth-of-type(9) .c-txt01 {
    min-height: auto;
  }
}
.sec-pack__item-box {
  padding-bottom: 4rem;
  background-color: #fff;
  border-radius: 0 0 1rem 1rem;
  -webkit-border-radius: 0 0 1rem 1rem;
}
.sec-pack__item-img {
  margin: 0 auto;
  max-width: 90%;
  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;
}
.sec-pack__item .c-txt01 {
  max-width: 82%;
  margin: 2rem auto 0;
}
.sec-pack__item-logo {
  max-width: 280px;
  width: 90%;
  aspect-ratio: 280/80;
  margin: 2rem auto 0;
  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: 5px;
  -webkit-border-radius: 5px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
.sec-pack__ttl {
  padding: 1em 1rem;
  color: #fff;
  background-color: #1881fa;
  font-size: 2.4rem;
  text-align: center;
  border-radius: 1rem 1rem 0 0;
  -webkit-border-radius: 1rem 1rem 0 0;
}
@media screen and (max-width: 834px) {
  .sec-pack__ttl {
    font-size: clamp(1.6rem, 2.9vw, 4.5rem);
  }
}
@media screen and (max-width: 834px) {
  .sec-pack__ttl {
    font-size: 2.6vw;
  }
}
@media screen and (max-width: 500px) {
  .sec-pack__ttl {
    font-size: 2rem;
  }
}
@media screen and (max-width: 380px) {
  .sec-pack__ttl {
    font-size: 1.8rem;
  }
}

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

object/object/project/_intro.scss

***************************/
.sec-intro__bg {
  padding: 12rem 0 9rem;
  background-color: #001774;
}
@media screen and (max-width: 834px) {
  .sec-intro__bg {
    padding: 9rem 0 5rem;
  }
}
@media screen and (max-width: 500px) {
  .sec-intro__bg {
    padding: 5rem 0 3rem;
  }
}
.sec-intro__txt {
  max-width: 683px;
  width: 100%;
  margin: 0 auto 4rem;
  padding: 1rem 0;
  border-top: 1px solid #fff;
  border-bottom: 1px solid #fff;
}
.sec-intro__txt img {
  max-width: 281px;
  width: 90%;
}
@media screen and (max-width: 500px) {
  .sec-intro__txt img {
    width: 50%;
  }
}
.sec-intro h2 {
  position: relative;
}
.sec-intro h2 img {
  max-width: 555px;
  width: 90%;
}
.sec-intro__flex {
  margin-top: -5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 3rem;
}
@media screen and (max-width: 834px) {
  .sec-intro__flex {
    margin-top: 6rem;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
@media screen and (max-width: 450px) {
  .sec-intro__flex {
    margin-top: 4rem;
  }
}
.sec-intro__left {
  max-width: 500px;
  width: 42%;
  padding: 4rem 1rem;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  background-color: rgba(255, 255, 255, 0.2);
  color: #fff;
}
@media screen and (max-width: 834px) {
  .sec-intro__left {
    max-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 530px) {
  .sec-intro__left .f21 {
    font-size: 4vw;
  }
}
@media screen and (max-width: 450px) {
  .sec-intro__left .f21 {
    font-size: 4.4vw;
  }
}
.sec-intro__left picture {
  max-width: 350px;
  width: 80%;
  margin: 3rem auto 1rem;
}
.sec-intro__right {
  padding-bottom: 2rem;
  width: 50%;
  color: #fff;
}
@media screen and (max-width: 834px) {
  .sec-intro__right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    width: 100%;
  }
}
.sec-intro__right picture {
  width: 88%;
  margin-left: 3%;
}
@media screen and (max-width: 834px) {
  .sec-intro__right picture {
    margin: -7% auto 0;
    width: 80%;
    order: 3;
  }
}
.sec-intro__right .fc-yellow {
  position: relative;
  margin-top: 2rem;
}
@media screen and (max-width: 450px) {
  .sec-intro__right .fc-yellow.f24 {
    font-size: 1.7rem;
  }
}
.sec-intro__more {
  position: relative;
  margin-top: 5rem;
  padding: 4.5rem 0 4rem;
  color: #fff;
}
@media screen and (max-width: 834px) {
  .sec-intro__more {
    margin-top: -7vw;
    padding: 9vw 0;
  }
}
.sec-intro__more-txt {
  position: absolute;
  top: -20%;
  left: 7%;
  max-width: 202px;
  width: 17%;
}
@media screen and (max-width: 834px) {
  .sec-intro__more-txt {
    width: 28%;
    top: -15%;
    left: 3%;
  }
}
@media screen and (max-width: 834px) {
  .sec-intro__more .f42 {
    line-height: 1.2;
    font-size: 5.8vw;
  }
}
.sec-intro__more .f12 {
  display: block;
  margin-top: 1.5rem;
}
@media screen and (max-width: 834px) {
  .sec-intro__more .f12 {
    line-height: 1.6;
    font-size: 3.4vw;
  }
}
@media screen and (max-width: 450px) {
  .sec-intro__more .f12 {
    font-size: 15px;
  }
}
.sec-intro__conclusion {
  margin-top: -1px;
  padding: 24rem 0 12rem;
  background: url(../img/intro/conclusion-bg.webp) no-repeat top center/cover;
}
@media screen and (max-width: 834px) {
  .sec-intro__conclusion {
    padding: 21vw 0 10vw;
    background-image: url(../img/intro/conclusion-bg_sp.webp);
  }
}
.sec-intro__conclusion-ttl {
  margin-bottom: 7.5rem;
  color: #fff;
}
@media screen and (max-width: 834px) {
  .sec-intro__conclusion-ttl {
    margin-bottom: 3rem;
  }
  .sec-intro__conclusion-ttl.c-txt__undline {
    text-underline-offset: 9px;
  }
}
.sec-intro__conclusion p {
  max-width: 936px;
  width: 90%;
  margin: 0 auto;
}
@media screen and (max-width: 834px) {
  .sec-intro__conclusion p {
    max-width: 580px;
    width: 86%;
  }
}

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

object/object/project/_about.scss

***************************/
.sec-about {
  padding: 9rem 0 11rem;
  background: url(../img/about/bg.webp) no-repeat top 11rem right 3rem/480px auto;
}
@media screen and (max-width: 1100px) {
  .sec-about {
    background-size: 30% auto;
  }
}
@media screen and (max-width: 834px) {
  .sec-about {
    padding: 5rem 0;
  }
}
.sec-about__box {
  padding: 4% 5% 8%;
}
.sec-about__box:nth-of-type(1) {
  position: relative;
  margin-top: 7rem;
}
@media screen and (max-width: 834px) {
  .sec-about__box:nth-of-type(1) {
    margin-top: 4rem;
  }
}
.sec-about__box:nth-of-type(1)::before {
  position: absolute;
  content: "add";
  font-family: "Material Symbols Outlined";
  width: 8rem;
  aspect-ratio: 1/1;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  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-color: #2f5dec;
  font-size: 4rem;
  color: rgba(255, 255, 255, 0.8666666667);
  bottom: -8%;
  left: calc(50% - 4rem);
  z-index: 2;
}
@media screen and (max-width: 834px) {
  .sec-about__box:nth-of-type(1)::before {
    bottom: -9%;
    width: 6rem;
    left: calc(50% - 3rem);
  }
}
@media screen and (max-width: 450px) {
  .sec-about__box:nth-of-type(1)::before {
    bottom: -8%;
    left: calc(50% - 2rem);
    width: 4rem;
    font-size: 3rem;
  }
}
.sec-about__box:nth-of-type(2) {
  margin-top: 3rem;
}
.sec-about__box .f24 {
  margin: 3rem 0 1.5rem;
}
@media screen and (max-width: 834px) {
  .sec-about__box .f24 {
    margin: 2rem 0 1rem;
    line-height: 1.5;
  }
}
.sec-about__img {
  margin-top: 5rem;
}
.sec-about__flex {
  margin-top: 3rem;
  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: 3rem;
}
@media screen and (max-width: 834px) {
  .sec-about__flex {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.sec-about__flex-img {
  width: 50%;
}
@media screen and (max-width: 834px) {
  .sec-about__flex-img {
    width: 100%;
  }
}
.sec-about__flex-cont {
  width: 46.3%;
}
@media screen and (max-width: 834px) {
  .sec-about__flex-cont {
    width: 100%;
  }
}
.sec-about__flex-box {
  margin-top: 3rem;
  padding: 3rem 4.5rem;
}
@media screen and (max-width: 834px) {
  .sec-about__flex-box {
    padding: 2rem 3rem;
  }
}
.sec-about__fig {
  margin-top: 2rem;
  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: 1.5rem;
}
@media screen and (max-width: 450px) {
  .sec-about__fig {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.sec-about__fig-cap {
  max-width: 245px;
  width: 62%;
}
@media screen and (max-width: 834px) {
  .sec-about__fig-cap {
    max-width: none;
  }
}
@media screen and (max-width: 450px) {
  .sec-about__fig-cap {
    max-width: none;
    width: 100%;
  }
}
.sec-about__fig picture {
  width: calc(100% - (61% + 1.5rem));
}

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

object/object/project/_recommend.scss

***************************/
.sec-rec {
  padding-top: 11rem;
  background: url(../img/recommend/bg.webp) no-repeat bottom center/cover;
}
@media screen and (max-width: 834px) {
  .sec-rec {
    padding-top: 5rem;
  }
}
.sec-rec .f42 {
  padding-bottom: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  border-bottom: 2px solid #3260ed;
}
@media screen and (max-width: 1181px) and (min-width: 835px) {
  .sec-rec .f42 {
    font-size: 3.3vw;
  }
}
@media screen and (max-width: 834px) {
  .sec-rec .f42 {
    border-bottom: 0;
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 2px;
    line-height: 1.5;
  }
}
.sec-rec .f42 picture {
  max-width: 121px;
  margin-right: 5px;
  padding-left: 1rem;
}
@media screen and (max-width: 834px) {
  .sec-rec .f42 picture {
    display: none;
  }
}
.sec-rec__list {
  margin-top: 8rem;
  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: 2.5rem;
}
@media screen and (max-width: 834px) {
  .sec-rec__list {
    margin-top: 5rem;
    gap: 1rem;
  }
}
@media screen and (max-width: 450px) {
  .sec-rec__list {
    margin-top: 2rem;
  }
}
.sec-rec__item {
  max-width: 240px;
  width: 23%;
}
.sec-rec__item:nth-of-type(odd) {
  margin-top: 5rem;
}
@media screen and (max-width: 834px) {
  .sec-rec__item:nth-of-type(odd) {
    margin-top: 2rem;
  }
}
.sec-rec__ttl {
  position: relative;
  padding: 2rem 1rem;
}
@media screen and (max-width: 834px) {
  .sec-rec__ttl {
    padding: 2.5rem 1vw 2rem;
  }
}
.sec-rec__ttl::before, .sec-rec__ttl::after {
  position: absolute;
  z-index: 2;
}
.sec-rec__ttl::before {
  content: "check";
  top: 5px;
  left: 5px;
  font-family: "Material Symbols Outlined";
  width: 2.6rem;
  aspect-ratio: 1/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;
  font-size: 2.2rem;
  color: #fff;
  background-color: #3260ed;
  font-weight: 400;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}
@media screen and (max-width: 834px) {
  .sec-rec__ttl::before {
    top: 3px;
    width: 3.3vw;
    font-size: 2.7vw;
  }
}
@media screen and (max-width: 450px) {
  .sec-rec__ttl::before {
    width: 2rem;
    font-size: 1.8rem;
  }
}
.sec-rec__ttl::after {
  content: "";
  width: 14.5px;
  bottom: -12px;
  left: calc(50% - 7.25px);
  aspect-ratio: 1/0.8660254038;
  clip-path: polygon(50% 100%, 100% 0, 0 0);
  background: #fff;
}
@media screen and (max-width: 834px) {
  .sec-rec__ttl.f21 {
    font-size: 2.1vw;
  }
}
@media screen and (max-width: 450px) {
  .sec-rec__ttl.f21 {
    font-size: 1.5rem;
  }
  .sec-rec__ttl.f21 br {
    display: none;
  }
}
.sec-rec__img {
  max-width: 944px;
  width: 90%;
  margin: 3rem auto 0;
}
@media screen and (max-width: 834px) {
  .sec-rec__img {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 450px) {
  .sec-rec__img {
    width: 100%;
  }
}

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

object/object/project/_feature.scss

***************************/
.sec-feature {
  position: relative;
  padding: 10rem 0 7rem;
  background-color: #3260ed;
}
@media screen and (max-width: 834px) {
  .sec-feature {
    padding: 5rem 0;
  }
}
.sec-feature::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 585px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  background: url(../img/feature/bg.webp) no-repeat top center/cover;
}
.sec-feature .inner {
  position: relative;
  z-index: 2;
}
.sec-feature .c-hg__en {
  color: #335de0;
}
.sec-feature__list {
  margin-top: 6rem;
}
.sec-feature__item {
  position: relative;
  padding: 0 4.5% 2% 0;
  background-color: #fff;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  box-shadow: 0 0 6px rgba(0, 14, 38, 0.08);
}
@media screen and (max-width: 1100px) {
  .sec-feature__item {
    padding: 5% 0;
  }
}
.sec-feature__item:not(:first-of-type) {
  margin-top: 7rem;
}
@media screen and (max-width: 1100px) {
  .sec-feature__item:not(:first-of-type) {
    margin-top: 5rem;
  }
}
@media screen and (max-width: 834px) {
  .sec-feature__item:not(:first-of-type) {
    margin-top: 3rem;
  }
}
.sec-feature__item:nth-of-type(even) {
  padding-right: 0;
  padding-left: 4.5%;
}
.sec-feature__item:nth-of-type(even) .sec-feature__num {
  left: auto;
  right: -4.5rem;
}
@media screen and (max-width: 834px) {
  .sec-feature__item:nth-of-type(even) .sec-feature__num {
    right: -3%;
  }
}
.sec-feature__item:nth-of-type(even) .sec-feature__flex {
  -webkit-box-direction: reverse;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
@media screen and (max-width: 1100px) {
  .sec-feature__item:nth-of-type(even) .sec-feature__flex {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.sec-feature__item:nth-of-type(even) .sec-feature__ttl {
  background: linear-gradient(270deg, rgba(50, 96, 237, 0.2) 50%, rgba(50, 96, 237, 0) 100%);
}
.sec-feature__item:nth-of-type(even) .sec-feature__cont .c-txt02 {
  margin-right: auto;
  margin-left: 10%;
}
@media screen and (max-width: 1200px) {
  .sec-feature__item:nth-of-type(even) .sec-feature__cont .c-txt02 {
    margin-left: 5%;
    margin-right: 5%;
  }
}
.sec-feature__num {
  position: absolute;
  top: -2.5rem;
  left: -4.5rem;
  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;
  width: 193px;
  aspect-ratio: 1/1;
  background: linear-gradient(270deg, rgb(3, 127, 243) 50%, rgb(29, 70, 206) 100%);
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  font-weight: 900;
  box-shadow: 0 0 16px rgba(0, 0, 0, 0.1);
}
@media screen and (max-width: 1200px) {
  .sec-feature__num {
    width: 150px;
  }
  .sec-feature__num.f20 {
    font-size: 1.8rem;
  }
  .sec-feature__num .f50 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 834px) {
  .sec-feature__num {
    width: 120px;
    top: -1.5rem;
    left: -3%;
  }
  .sec-feature__num.f20 {
    font-size: 1.6rem;
  }
  .sec-feature__num .f50 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 540px) {
  .sec-feature__num {
    width: 10rem;
  }
  .sec-feature__num.f20 {
    font-size: 1.4rem;
  }
  .sec-feature__num .f50 {
    font-size: 2.4rem;
  }
}
@media screen and (max-width: 430px) {
  .sec-feature__num {
    width: 7rem;
    top: -2.5rem;
  }
  .sec-feature__num.f20 {
    font-size: 1.2rem;
  }
  .sec-feature__num .f50 {
    font-size: 2rem;
  }
}
@media screen and (max-width: 380px) {
  .sec-feature__num {
    width: 6rem;
  }
}
.sec-feature__num span {
  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;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: column;
  flex-direction: column;
  aspect-ratio: 1/1;
  width: 64%;
}
.sec-feature__num .f50 {
  display: block;
}
.sec-feature__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;
}
@media screen and (max-width: 1100px) {
  .sec-feature__flex {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3rem;
  }
}
.sec-feature__cont {
  width: 61%;
}
@media screen and (max-width: 1100px) {
  .sec-feature__cont {
    width: 100%;
  }
}
.sec-feature__cont .c-txt02 {
  max-width: 500px;
  width: 90%;
  margin-right: 10%;
  margin-left: auto;
}
@media screen and (max-width: 1200px) {
  .sec-feature__cont .c-txt02 {
    margin-left: 5%;
    margin-right: 5%;
  }
}
@media screen and (max-width: 1100px) {
  .sec-feature__cont .c-txt02 {
    width: 90%;
    margin-left: auto;
    margin-right: auto;
    max-width: none;
  }
}
.sec-feature__ttl {
  margin-bottom: 2rem;
  padding: 1rem 0;
  line-height: 1.2;
  background: linear-gradient(90deg, rgba(50, 96, 237, 0.2) 0%, rgba(50, 96, 237, 0) 100%);
}
@media screen and (max-width: 1100px) {
  .sec-feature__ttl {
    margin-bottom: 3rem;
  }
}
.sec-feature__ttl .f42 {
  display: block;
}
.sec-feature__img {
  margin-top: -2rem;
  max-width: 400px;
  border: 6px solid #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.48);
}
@media screen and (max-width: 1100px) {
  .sec-feature__img {
    margin-top: 0;
    width: 90%;
  }
}

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

object/object/project/_cta.scss

***************************/
.sec-CTA {
  position: relative;
  padding: 5rem 0 11rem;
  background: url(../img/cta/bg.webp) no-repeat center center/cover;
  overflow: hidden;
}
@media screen and (max-width: 834px) {
  .sec-CTA {
    padding-bottom: 9rem;
    background-image: url(../img/cta/bg_sp.webp);
  }
}
.sec-CTA::before {
  position: absolute;
  content: "";
  max-width: 1153px;
  width: 60vw;
  aspect-ratio: 1153/236;
  background: url(../img/cta/txt02-bg.webp) no-repeat center center/cover;
  bottom: 13%;
  left: 0;
  mix-blend-mode: screen;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 1200px) and (min-width: 835px) {
  .sec-CTA::before {
    bottom: 19%;
    left: -5%;
  }
}
@media screen and (max-width: 834px) {
  .sec-CTA::before {
    bottom: auto;
    width: 120vw;
    top: 44vw;
    left: 50%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 600px) {
  .sec-CTA::before {
    top: 42%;
  }
}
@media screen and (max-width: 450px) {
  .sec-CTA::before {
    top: 44%;
  }
}
.sec-CTA::after {
  position: absolute;
  content: "";
  max-width: 822px;
  width: 49vw;
  aspect-ratio: 822/244;
  background: url(../img/cta/shining.webp) no-repeat center center/cover;
  z-index: 3;
  bottom: 9%;
  left: calc(32% - 25vw);
  mix-blend-mode: screen;
  pointer-events: none;
}
@media screen and (max-width: 1200px) and (min-width: 835px) {
  .sec-CTA::after {
    width: 60vw;
    bottom: 11%;
    left: -3%;
  }
}
@media screen and (max-width: 834px) {
  .sec-CTA::after {
    max-width: none;
    width: 110vw;
    bottom: auto;
    top: 42vw;
    left: 51%;
    transform: translateX(-50%);
  }
}
@media screen and (max-width: 600px) {
  .sec-CTA::after {
    top: 41%;
  }
}
@media screen and (max-width: 450px) {
  .sec-CTA::after {
    top: 43%;
  }
}
.sec-CTA .inner {
  position: relative;
  z-index: 2;
  max-width: 1210px;
}
@media screen and (max-width: 580px) {
  .sec-CTA .f18 {
    font-size: clamp(1.6rem, 3.2vw, 4.5rem);
  }
}
.sec-CTA__logo {
  margin-bottom: 2.5rem;
  text-align: center;
}
.sec-CTA__logo img {
  max-width: 150px;
  width: 90%;
}
.sec-CTA__ttl {
  margin-bottom: 1.5rem;
}
.sec-CTA__flex {
  margin-top: 2.5rem;
  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;
}
@media screen and (max-width: 834px) {
  .sec-CTA__flex {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.sec-CTA__flex picture {
  width: calc(100% - 630px);
}
@media screen and (max-width: 1200px) {
  .sec-CTA__flex picture {
    width: 48%;
  }
}
@media screen and (max-width: 834px) {
  .sec-CTA__flex picture {
    width: 90%;
  }
}
.sec-CTA__cont {
  width: 51%;
}
@media screen and (max-width: 834px) {
  .sec-CTA__cont {
    width: 100%;
  }
}
.sec-CTA__link-wrap {
  margin-right: 6px;
  margin-bottom: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
  gap: 1rem;
}
@media screen and (max-width: 834px) {
  .sec-CTA__link-wrap {
    margin-top: 3vw;
    margin-bottom: 3vw;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.sec-CTA__link-wrap .c-btn01,
.sec-CTA__link-wrap .c-btn02 {
  max-width: 290px;
  width: 100%;
  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: 1rem;
  font-size: 2.1rem;
}
@media screen and (max-width: 834px) {
  .sec-CTA__link-wrap .c-btn01,
  .sec-CTA__link-wrap .c-btn02 {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 450px) {
  .sec-CTA__link-wrap .c-btn01,
  .sec-CTA__link-wrap .c-btn02 {
    font-size: 4.7vw;
  }
}
@media screen and (max-width: 834px) {
  .sec-CTA__link-wrap .c-btn01,
  .sec-CTA__link-wrap .c-btn02 {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    font-size: 3vw;
  }
}
@media screen and (max-width: 450px) {
  .sec-CTA__link-wrap .c-btn01,
  .sec-CTA__link-wrap .c-btn02 {
    font-size: 3.8vw;
  }
}
@media screen and (max-width: 370px) {
  .sec-CTA__link-wrap .c-btn01,
  .sec-CTA__link-wrap .c-btn02 {
    font-size: 3.6vw;
  }
}
.sec-CTA__link-wrap .c-btn01 i,
.sec-CTA__link-wrap .c-btn02 i {
  display: block;
}
.sec-CTA__link-wrap .c-btn01 i {
  max-width: 24px;
}
@media screen and (max-width: 600px) {
  .sec-CTA__link-wrap .c-btn01 i {
    max-width: 3vw;
  }
}
@media screen and (max-width: 450px) {
  .sec-CTA__link-wrap .c-btn01 i {
    max-width: 3.8vw;
  }
}
.sec-CTA__link-wrap .c-btn02 i {
  max-width: 26px;
}
@media screen and (max-width: 834px) {
  .sec-CTA__link-wrap .c-btn02 i {
    min-height: 26px;
  }
}
@media screen and (max-width: 600px) {
  .sec-CTA__link-wrap .c-btn02 i {
    max-width: 3.2vw;
    min-height: 3.2vw;
  }
}
@media screen and (max-width: 450px) {
  .sec-CTA__link-wrap .c-btn02 i {
    max-width: 4vw;
    min-height: 4vw;
  }
}
.sec-CTA__box {
  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: 1rem;
}
@media screen and (max-width: 1200px) {
  .sec-CTA__box {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
  .sec-CTA__box .f14 {
    display: block;
    width: 100%;
    text-align: center;
  }
  .sec-CTA__box .f14 br {
    display: none;
  }
}
@media screen and (max-width: 834px) {
  .sec-CTA__box {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
  }
}
.sec-CTA__box .tel-link {
  white-space: nowrap;
}
@media screen and (max-width: 1200px) {
  .sec-CTA__box .tel-link {
    white-space: wrap;
  }
}
@media screen and (max-width: 570px) {
  .sec-CTA__box .tel-link {
    font-size: 9.6vw;
  }
  .sec-CTA__box .tel-link img {
    width: 8vw;
  }
}

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

object/object/project/_price.scss

***************************/
.sec-price {
  position: relative;
  padding: 10rem 0;
}
.sec-price::before {
  position: absolute;
  content: "";
  width: 523px;
  aspect-ratio: 523/402;
  top: 0;
  right: 0;
  background: url(../img/price/bg-ab.webp) no-repeat top right/cover;
  mix-blend-mode: multiply;
  z-index: 1;
}
@media screen and (max-width: 834px) {
  .sec-price::before {
    width: 40vw;
  }
}
.sec-price .inner {
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 834px) {
  .sec-price {
    padding: 5rem 0;
  }
}
.sec-price__img01 {
  position: relative;
  padding-bottom: 5rem;
  aspect-ratio: 1200/255;
  border-radius: 1rem 1rem 0 0;
  -webkit-border-radius: 1rem 1rem 0 0;
  background: url(../img/price/txt01-bg.webp) no-repeat top left/cover;
}
@media screen and (max-width: 450px) {
  .sec-price__img01 {
    aspect-ratio: 1200/310;
  }
}
.sec-price__img01::before {
  position: absolute;
  content: "";
  max-width: 1153px;
  width: 95%;
  aspect-ratio: 1153/236;
  background: url(../img/price/txt01-bg_shin.webp) no-repeat center center/cover;
  top: 10%;
  left: 0;
  mix-blend-mode: screen;
  z-index: 1;
  pointer-events: none;
}
.sec-price__img01::after {
  position: absolute;
  content: "";
  max-width: 852px;
  width: 70%;
  aspect-ratio: 852/181;
  background: url(../img/price/txt01-shin.webp) no-repeat center center/cover;
  z-index: 3;
  top: 32%;
  left: 11%;
  mix-blend-mode: screen;
  pointer-events: none;
}
.sec-price__img01 img {
  position: absolute;
  z-index: 2;
  display: block;
  max-width: 880px;
  width: 74%;
  top: -1.5rem;
  right: 8%;
}
@media screen and (max-width: 834px) {
  .sec-price__img01 img {
    top: -1vw;
  }
}
@media screen and (max-width: 450px) {
  .sec-price__img01 img {
    width: 96%;
    right: 2%;
  }
}
.sec-price__box {
  margin-bottom: 9rem;
  padding: 4% 4% 5% 4%;
}
@media screen and (max-width: 834px) {
  .sec-price__box {
    margin-bottom: 5rem;
  }
}
@media screen and (max-width: 450px) {
  .sec-price__box {
    margin-bottom: 4rem;
  }
}
@media screen and (max-width: 1100px) {
  .sec-price__box .f42 {
    font-size: 3.82vw;
  }
}
@media screen and (max-width: 450px) {
  .sec-price__box .f42 {
    font-size: 6vw;
    line-height: 1.3;
  }
}
@media screen and (max-width: 1100px) {
  .sec-price__box .f52 {
    font-size: 4.73vw;
  }
}
@media screen and (max-width: 450px) {
  .sec-price__box .f52 {
    font-size: 7vw;
  }
}
.sec-price__box-flex {
  margin-top: 4rem;
  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: 3rem;
}
@media screen and (max-width: 834px) {
  .sec-price__box-flex {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
  }
}
@media screen and (max-width: 450px) {
  .sec-price__box-flex {
    margin-top: 3rem;
  }
}
.sec-price__box-flex picture {
  width: 34.5%;
}
@media screen and (max-width: 834px) {
  .sec-price__box-flex picture {
    max-width: 380px;
    width: 100%;
  }
}
.sec-price__box-cont {
  max-width: 65.1rem;
  width: 59%;
}
@media screen and (max-width: 834px) {
  .sec-price__box-cont {
    max-width: none;
    width: 100%;
  }
}
.sec-price__box-cont .fc-orange {
  display: block;
  line-height: 1.42;
  margin: 1.5rem 0;
}
@media screen and (max-width: 450px) {
  .sec-price__box-cont .fc-orange {
    margin: 1rem 0;
  }
}
.sec-price__box-intro {
  position: relative;
  margin-top: 7rem;
  padding: 5rem 1rem;
  background-color: #f1f5fe;
}
@media screen and (max-width: 834px) {
  .sec-price__box-intro {
    margin-top: 5rem;
    padding-top: 5vw;
    padding-bottom: 5vw;
  }
}
@media screen and (max-width: 450px) {
  .sec-price__box-intro {
    margin-top: 3rem;
  }
}
.sec-price__box-intro__txt {
  position: absolute;
  top: -0.5em;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: calc(16em + 10rem);
  padding: 0 5rem;
}
@media screen and (max-width: 834px) {
  .sec-price__box-intro__txt {
    width: calc(16em + 8vw);
    padding: 0 4vw;
  }
}
.sec-price__box-intro__txt::before, .sec-price__box-intro__txt::after {
  position: absolute;
  content: "";
  width: 35px;
  aspect-ratio: 35/53;
  top: calc(50% - 26.5px);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
}
@media screen and (max-width: 834px) {
  .sec-price__box-intro__txt::before, .sec-price__box-intro__txt::after {
    width: 3.4vw;
    top: calc(50% - 1.7vw);
  }
}
.sec-price__box-intro__txt::before {
  left: 0;
  background-image: url(../img/price/price-box_txt-left.webp);
}
.sec-price__box-intro__txt::after {
  right: 0;
  background-image: url(../img/price/price-box_txt-right.webp);
}
@media screen and (max-width: 834px) {
  .sec-price__box-intro .f32 {
    font-size: 3.4vw;
  }
}
@media screen and (max-width: 450px) {
  .sec-price__box-intro .f32 {
    font-size: 5vw;
  }
  .sec-price__box-intro .f32.c-txt__undline {
    text-decoration-thickness: 1.5px;
  }
}
.sec-price__txt {
  margin-top: 5rem;
}
@media screen and (max-width: 834px) {
  .sec-price__txt {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 450px) {
  .sec-price__txt {
    margin-top: 2rem;
  }
  .sec-price__txt.f24 {
    font-size: 4vw;
  }
}
@media screen and (max-width: 450px) and (max-width: 450px) {
  .sec-price__txt.f24 {
    font-size: 4.5vw;
  }
}
.sec-price__txt img {
  max-width: 180px;
}
@media screen and (max-width: 834px) {
  .sec-price__txt img {
    width: 22vw;
  }
}
@media screen and (max-width: 450px) {
  .sec-price__txt img {
    width: 32vw;
  }
}
.sec-price__txt rt {
  font-size: 1.2rem;
  text-align: center;
  letter-spacing: 0;
}
@media screen and (max-width: 834px) {
  .sec-price__txt rt {
    font-size: 1rem;
  }
}
.sec-price__list {
  margin-top: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
}
@media screen and (max-width: 834px) {
  .sec-price__list {
    margin-top: 4rem;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 3rem;
  }
}
@media screen and (max-width: 450px) {
  .sec-price__list {
    margin-top: 3rem;
    gap: 2rem;
  }
}
.sec-price__item {
  padding: 5rem 3%;
  width: 33.3333333333%;
  background-color: #fff;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  border: 1px solid #eee;
}
@media screen and (max-width: 834px) {
  .sec-price__item {
    padding: 3rem 5%;
    width: 100%;
  }
}
.sec-price__item:nth-of-type(1), .sec-price__item:nth-of-type(3) {
  position: relative;
}
.sec-price__item:nth-of-type(1)::before, .sec-price__item:nth-of-type(3)::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 1.5rem;
  top: 0;
  left: 0;
  border-radius: 1rem 1rem 0 0;
  -webkit-border-radius: 1rem 1rem 0 0;
}
.sec-price__item:nth-of-type(1) {
  padding-bottom: 14.1rem;
}
@media screen and (max-width: 834px) {
  .sec-price__item:nth-of-type(1) {
    padding-bottom: 3rem;
  }
}
.sec-price__item:nth-of-type(1)::before {
  background-color: #3260ed;
}
.sec-price__item:nth-of-type(2) {
  padding-top: 2rem;
  padding-bottom: 9.5rem;
  border-width: 0;
  box-shadow: 0px 0px 21px rgba(0, 0, 0, 0.11);
}
@media screen and (max-width: 834px) {
  .sec-price__item:nth-of-type(2) {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
}
.sec-price__item:nth-of-type(2).bg-blue {
  background-color: #0e3fd5;
}
.sec-price__item:nth-of-type(2) .fc-blue.bg-yellow {
  width: fit-content;
  margin: 0 auto 3rem;
  padding: 1rem 1em;
}
.sec-price__item:nth-of-type(2) .sec-price__item-item:nth-of-type(odd) {
  background-color: #2956e2;
}
.sec-price__item:nth-of-type(2) .sec-price__item-item .bg-dark-blue {
  background-color: #072ea4;
  display: block;
  padding: 5px;
  margin-left: 0.5rem;
  border-radius: 3px;
  -webkit-border-radius: 3px;
}
.sec-price__item:nth-of-type(3)::before {
  background-color: #ff5722;
}
.sec-price__item .fc-orange {
  color: #ff5722;
}
.sec-price__item-price {
  margin-top: 2rem;
}
@media screen and (max-width: 450px) {
  .sec-price__item-price {
    margin-top: 1rem;
  }
}
@media screen and (max-width: 1260px) and (min-width: 835px) {
  .sec-price__item-price .f58 {
    font-size: 4vw;
  }
}
@media screen and (max-width: 1100px) and (min-width: 835px) {
  .sec-price__item-price .f20 {
    font-size: 1.8rem;
  }
}
@media screen and (max-width: 1100px) and (min-width: 835px) {
  .sec-price__item-price .f14 {
    font-size: 1.2rem;
  }
}
.sec-price__item-list {
  margin-top: 1.5rem;
}
.sec-price__item-item {
  padding: 1rem 1rem;
  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: 0.5rem 0;
  font-size: 1.6rem;
}
@media screen and (max-width: 450px) {
  .sec-price__item-item {
    padding: 0.6rem 1rem;
  }
}
.sec-price__item-item:nth-of-type(odd) {
  background-color: #f6f6f6;
}
.sec-price__item-item .bg-gray {
  display: block;
  padding: 5px;
  margin-left: 0.5rem;
  border-radius: 3px;
  -webkit-border-radius: 3px;
}
.sec-price__hg {
  margin-bottom: 1.5rem;
}
.sec-price__hg .f12 {
  margin-top: 5px;
}
@media screen and (max-width: 990px) and (min-width: 835px) {
  .sec-price__hg .f43 {
    font-size: 4vw;
  }
}
.sec-price__dl {
  padding: 1rem 0;
  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-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  border-bottom: 1px solid #ddd;
}
.sec-price__dl:first-of-type {
  margin-top: 2rem;
}
.sec-price__dl:last-of-type {
  margin-bottom: 5rem;
}
@media screen and (max-width: 450px) {
  .sec-price__dl:last-of-type {
    margin-bottom: 3rem;
  }
}
.sec-price__dt {
  font-size: 1.4rem;
  font-weight: 700;
}
.sec-price__dd {
  font-size: 1.4rem;
  font-weight: 700;
}
.sec-price__compa {
  margin-top: 12rem;
  padding: 5%;
  background-color: #dee6f9;
}
@media screen and (max-width: 834px) {
  .sec-price__compa {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 450px) {
  .sec-price__compa {
    margin-top: 3rem;
  }
}
.sec-price__compa .bg-blue {
  padding: 1.4rem 0;
}
.sec-price__compa .f50 {
  margin: 5rem 0 2rem;
}
@media screen and (max-width: 834px) {
  .sec-price__compa .f50 {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 450px) {
  .sec-price__compa .f50 {
    margin: 2rem 0 1rem;
  }
}
.sec-price__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.03fr 1.24fr repeat(3, 1fr);
  width: 100%;
  margin-top: 5rem;
  align-items: end;
}
@media screen and (max-width: 834px) {
  .sec-price__grid {
    display: none;
  }
}
.sec-price__grid::before {
  position: absolute;
  content: "";
  width: 23%;
  height: calc(100% - 6px);
  top: 0;
  left: calc(19% + 6px);
  background-color: rgba(255, 87, 34, 0.1);
  border: 3px solid #ff5722;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  z-index: 1;
  pointer-events: none;
}
@media screen and (max-width: 1000px) {
  .sec-price__grid::before {
    width: 22.5%;
  }
}
.sec-price__th01 {
  margin: 0 auto;
  width: calc(100% - 2px);
  border-radius: 1rem 1rem 0 0;
  -webkit-border-radius: 1rem 1rem 0 0;
  background-color: #c0ceef;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 834px) {
  .sec-price__th01 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1100px) {
  .sec-price__th01 {
    font-size: 1.8rem;
  }
}
.sec-price__th01:not(.bg-orange) {
  height: calc(100% - 1.5rem);
  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;
}
.sec-price__th01.bg-orange {
  padding: 1rem 0;
  border-radius: 1rem 1rem 0 0;
  -webkit-border-radius: 1rem 1rem 0 0;
}
.sec-price__th01.bg-orange img {
  max-width: 139px;
  width: 80%;
}
.sec-price__th02 {
  padding: 2rem;
  height: 100%;
  text-align-last: left;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 450px) {
  .sec-price__th02 {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1100px) {
  .sec-price__th02 {
    font-size: 1.6rem;
    line-height: 1.3;
  }
}
.sec-price__th02.empty {
  background-color: transparent;
  border-width: 0;
}
.sec-price__td {
  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: 0;
  height: 100%;
  text-align: center;
  background-color: #fff;
  border-bottom: 1px solid #ddd;
  color: #ff5722;
  font-size: 2.4rem;
  font-weight: 900;
}
@media screen and (max-width: 834px) {
  .sec-price__td {
    font-size: clamp(1.6rem, 2.9vw, 4.5rem);
  }
}
@media screen and (max-width: 1100px) {
  .sec-price__td {
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
.sec-price__td.f50 {
  margin: 0;
  padding: 1.1rem 0 1.5rem;
}
@media screen and (max-width: 1100px) {
  .sec-price__td.f50 {
    font-size: 4rem;
  }
}
@media screen and (max-width: 834px) {
  .sec-price__td.f50 {
    padding: 0.5rem;
    font-size: 3rem;
  }
}
.sec-price__td.fc-black {
  font-weight: 700;
  font-size: 2rem;
}
@media screen and (max-width: 834px) {
  .sec-price__td.fc-black {
    font-size: 1.6rem;
  }
}
@media screen and (max-width: 1100px) {
  .sec-price__td.fc-black {
    font-size: 1.8rem;
  }
}
.sec-price__td.fc-black .en {
  font-size: 2.5rem;
}
@media screen and (max-width: 1100px) {
  .sec-price__td.fc-black .en {
    font-size: 2.2rem;
  }
}
.sec-price__td.fc-gray {
  color: #888;
  font-size: 2rem;
}
@media screen and (max-width: 834px) {
  .sec-price__td.fc-gray {
    font-size: 1.6rem;
  }
}
.sec-price__td:has(.f46) {
  padding: 1.3rem 0;
}
.sec-price__td .f46 {
  font-weight: 700;
}
@media screen and (max-width: 1100px) {
  .sec-price__td .f46 {
    font-size: 3rem;
  }
}
@media screen and (max-width: 1100px) {
  .sec-price__td .f28 {
    font-size: 2rem;
  }
}
.sec-price__td .f14 {
  position: relative;
  bottom: -7px;
}
@media screen and (max-width: 1100px) {
  .sec-price__td .f14 {
    bottom: -4px;
    font-size: 1.2rem;
  }
}
.sec-price__tb {
  display: none;
}
@media screen and (max-width: 834px) {
  .sec-price__tb {
    margin-top: 3rem;
    display: block;
  }
}
.sec-price__tb-item:not(:first-of-type) {
  margin-top: 3rem;
}
@media screen and (max-width: 450px) {
  .sec-price__tb-item:not(:first-of-type) {
    margin-top: 2rem;
  }
}
.sec-price__tb-item:not(:first-of-type) dd {
  height: 51.8px;
}
@media screen and (max-width: 500px) {
  .sec-price__tb-item:not(:first-of-type) dd {
    height: auto;
  }
}
.sec-price__tb .sec-price__th01 {
  padding: 1rem;
}
.sec-price__tb-dl {
  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: 1rem 0;
}
@media screen and (max-width: 500px) {
  .sec-price__tb-dl {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 0;
  }
}
.sec-price__tb-dl dt,
.sec-price__tb-dl dd {
  padding: 1.5rem;
  width: 50%;
}
@media screen and (max-width: 500px) {
  .sec-price__tb-dl dt,
  .sec-price__tb-dl dd {
    width: 100%;
  }
}
.sec-price__tb-dl .sec-price__td:has(.f46),
.sec-price__tb-dl .sec-price__td.f50 {
  padding: 1rem;
  height: 51.8px;
}
@media screen and (max-width: 500px) {
  .sec-price__tb-dl .sec-price__td:has(.f46),
  .sec-price__tb-dl .sec-price__td.f50 {
    height: auto;
  }
}

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

object/object/project/_flow.scss

***************************/
.sec-flow {
  position: relative;
  padding: 7rem 0 9rem;
  background: linear-gradient(90deg, rgb(199, 218, 254) 0%, rgb(255, 255, 255) 50%, rgb(199, 218, 254) 100%);
}
@media screen and (max-width: 834px) {
  .sec-flow {
    padding: 5rem 0;
  }
}
.sec-flow::before {
  position: absolute;
  content: "";
  width: 480px;
  aspect-ratio: 480/525;
  top: 4rem;
  right: 10rem;
  background: url(../img/flow/bg-ab.webp) no-repeat center center/cover;
}
@media screen and (max-width: 834px) {
  .sec-flow::before {
    top: 2vw;
    right: 2vw;
    width: 50vw;
  }
}
.sec-flow__list {
  margin-top: 8rem;
}
@media screen and (max-width: 834px) {
  .sec-flow__list {
    margin-top: 6rem;
  }
}
@media screen and (max-width: 450px) {
  .sec-flow__list {
    margin-top: 3rem;
  }
}
.sec-flow__item {
  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: 3rem;
}
@media screen and (max-width: 834px) {
  .sec-flow__item {
    padding-bottom: 36vw;
    -webkit-flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 450px) {
  .sec-flow__item {
    padding-bottom: 50vw;
    gap: 2rem;
  }
}
.sec-flow__item:not(:last-of-type) {
  padding-bottom: 7rem;
}
@media screen and (max-width: 834px) {
  .sec-flow__item:not(:last-of-type) {
    padding-bottom: 36vw;
  }
}
@media screen and (max-width: 450px) {
  .sec-flow__item:not(:last-of-type) {
    padding-bottom: 50vw;
  }
}
.sec-flow__item:not(:last-of-type)::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 100%;
  bottom: 0;
  left: calc(7rem - 2.5px);
  z-index: 1;
  background-image: repeating-radial-gradient(circle, #2f5dec 0px, #2f5dec 2.5px, transparent 2.5px, transparent 15px);
  background-repeat: repeat-y;
  background-position: center;
  background-size: 5px 15px;
}
@media screen and (max-width: 834px) {
  .sec-flow__item:not(:last-of-type)::before {
    left: calc(5rem - 2.5px);
  }
}
@media screen and (max-width: 450px) {
  .sec-flow__item:not(:last-of-type)::before {
    left: calc(8.5vw - 2.5px);
  }
}
.sec-flow__i {
  position: relative;
  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;
  width: 14rem;
  aspect-ratio: 1/1;
  z-index: 2;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
  background: linear-gradient(90deg, rgb(3, 127, 243) 50%, rgb(29, 70, 206) 100%);
  box-shadow: 0px 0px 16px rgba(0, 14, 38, 0.1);
}
@media screen and (max-width: 834px) {
  .sec-flow__i {
    width: 10rem;
  }
}
@media screen and (max-width: 450px) {
  .sec-flow__i {
    width: 17vw;
  }
}
.sec-flow__i .bg-wht {
  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;
  width: 71%;
  aspect-ratio: 1/1;
}
.sec-flow__i img {
  max-width: 70%;
  max-height: 70%;
}
.sec-flow__img {
  max-width: 390px;
  width: 33%;
}
@media screen and (max-width: 834px) {
  .sec-flow__img {
    position: absolute;
    bottom: 2vw;
    right: 0;
    width: 50%;
  }
}
@media screen and (max-width: 450px) {
  .sec-flow__img {
    width: calc(100% - 25vw);
  }
}
.sec-flow__cont {
  width: 50%;
}
@media screen and (max-width: 834px) {
  .sec-flow__cont {
    margin: 24px 0 0 auto;
    width: calc(100% - 13rem);
  }
}
@media screen and (max-width: 450px) {
  .sec-flow__cont {
    margin-top: 5vw;
    width: calc(100% - (17vw + 2rem));
  }
}
.sec-flow__cont .f32 {
  margin-bottom: 1.5rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1.5rem;
}
@media screen and (max-width: 834px) {
  .sec-flow__cont .f32 {
    font-size: 2.8rem;
  }
}
@media screen and (max-width: 450px) {
  .sec-flow__cont .f32 {
    font-size: clamp(1.7rem, 4vw, 4.5rem);
    line-height: 1.3;
    gap: 1rem;
  }
}
.sec-flow__cont .f30 {
  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;
  width: 65px;
  aspect-ratio: 1/1;
}
@media screen and (max-width: 834px) {
  .sec-flow__cont .f30 {
    width: 50px;
    font-size: 2.6rem;
  }
}
@media screen and (max-width: 450px) {
  .sec-flow__cont .f30 {
    width: 8vw;
    font-size: 4vw;
  }
}
.sec-flow__link-wrap {
  margin-top: 3rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  gap: 1rem 2rem;
}
@media screen and (max-width: 650px) {
  .sec-flow__link-wrap {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.sec-flow__link-wrap .c-btn02 {
  width: calc((100% - 2rem) / 2);
  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: 1rem;
  box-shadow: 0px 0px 13px rgba(0, 14, 38, 0.34);
  font-size: 1.8rem;
}
@media screen and (max-width: 650px) {
  .sec-flow__link-wrap .c-btn02 {
    width: 100%;
  }
}
.sec-flow__link-wrap .c-btn02 img {
  max-width: 2.6rem;
}
.sec-flow__tel {
  padding: 1.5rem 1rem;
  width: calc((100% - 2rem) / 2);
  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;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: #e4e9f9;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
}
@media screen and (max-width: 650px) {
  .sec-flow__tel {
    width: 100%;
  }
}
.sec-flow__tel .f30 {
  display: block;
  width: fit-content;
  margin-bottom: 5px;
  aspect-ratio: auto;
}

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

object/object/project/_faq.scss

***************************/
.sec-faq {
  padding: 10rem 0 12rem;
  background-color: #cadcfe;
}
@media screen and (max-width: 834px) {
  .sec-faq {
    padding: 5rem 0;
  }
}
.sec-faq__details {
  padding: 3rem 0;
  border-bottom: 1px solid #f8f8f8;
}
@media screen and (max-width: 834px) {
  .sec-faq__details {
    padding: 2rem 0;
  }
}
.sec-faq__box {
  padding: 3.3% 5% 6.6%;
  box-shadow: 0px 0px 21px rgba(0, 14, 38, 0.11);
}
.sec-faq__ttl {
  position: relative;
  padding-right: 25px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 1rem;
  font-size: 2.1rem;
  font-weight: 700;
}
@media screen and (max-width: 834px) {
  .sec-faq__ttl {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 450px) {
  .sec-faq__ttl {
    font-size: 4.7vw;
  }
}
@media screen and (max-width: 834px) {
  .sec-faq__ttl {
    line-height: 1.3;
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 450px) {
  .sec-faq__ttl {
    font-size: 1.7rem;
  }
}
.sec-faq__ttl.close .add-btn::before {
  -ms-transform: rotate(270deg);
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg);
}
.sec-faq__ttl p {
  width: calc(100% - 5rem);
}
@media screen and (max-width: 834px) {
  .sec-faq__ttl p {
    width: calc(100% - 4rem);
  }
}
.sec-faq__en {
  width: 4rem;
  aspect-ratio: 1/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;
  background-color: #2f5dec;
  color: #fff;
  font-size: 1.9rem;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}
@media screen and (max-width: 834px) {
  .sec-faq__en {
    width: 3rem;
    font-size: 1.6rem;
  }
}
.sec-faq__add-box {
  max-height: 0;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  pointer-events: none;
  padding: 0 3rem;
  border-radius: 1rem;
  -webkit-border-radius: 1rem;
  background-color: #f1f5fe;
  font-size: 1.7rem;
  line-height: 2;
}
@media screen and (max-width: 834px) {
  .sec-faq__add-box {
    padding: 0 2rem;
    font-size: 1.6rem;
  }
}
.sec-faq__add-box.open {
  max-height: 100%;
  margin-top: 2.5rem;
  padding: 3rem;
  opacity: 1;
  pointer-events: all;
}
@media screen and (max-width: 834px) {
  .sec-faq__add-box.open {
    margin-top: 2rem;
    padding: 2rem;
  }
}
@media screen and (max-width: 450px) {
  .sec-faq__add-box.open {
    padding: 1.5rem 2rem;
  }
}

.add-btn {
  transition: all 0.3s ease-in-out;
}
.add-btn::before, .add-btn::after {
  position: absolute;
  content: "";
  width: 2px;
  height: 18px;
  top: calc(50% - 9px);
  right: 5px;
  background-color: #2f5dec;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
.add-btn::after {
  -ms-transform: rotate(90deg);
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

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

object/object/project/_company.scss

***************************/
.sec-company {
  padding: 9rem 0 8rem;
}
@media screen and (max-width: 834px) {
  .sec-company {
    padding: 5rem 0;
  }
}
.sec-company__flex {
  margin-top: 6rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  gap: 3rem;
}
@media screen and (max-width: 834px) {
  .sec-company__flex {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.sec-company__flex-box {
  margin-top: 3rem;
  padding: 5%;
  background-color: #f1f5fe;
}
@media screen and (max-width: 834px) {
  .sec-company__flex-box {
    margin-top: 2rem;
  }
}
@media screen and (max-width: 400px) {
  .sec-company__flex-box .f24 {
    font-size: 4vw;
  }
}
.sec-company__flex-list {
  margin-top: 1rem;
  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;
}
.sec-company__flex-item {
  min-width: 11rem;
  width: 30%;
  aspect-ratio: 1/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;
  -webkit-box-direction: normal;
  -webkit-box-orient: horizontal;
  -ms-flex-direction: column;
  flex-direction: column;
  background-color: rgba(47, 93, 236, 0.9);
}
.sec-company__flex-item:not(:first-of-type) {
  margin-left: -3%;
}
@media screen and (max-width: 600px) {
  .sec-company__flex-item {
    min-width: 9rem;
  }
}
.sec-company__flex-item img {
  max-width: 43px;
  max-height: 41px;
}
@media screen and (max-width: 600px) {
  .sec-company__flex-item img {
    max-width: 30px;
    max-height: 430px;
  }
}
.sec-company__flex-item .f16 {
  margin-top: 0.5rem;
}
@media screen and (max-width: 600px) {
  .sec-company__flex-item .f16 {
    font-size: 2.6vw;
  }
}
.sec-company__img {
  max-width: 540px;
  width: 45%;
}
@media screen and (max-width: 834px) {
  .sec-company__img {
    max-width: none;
    width: 100%;
  }
}
.sec-company__cont {
  width: 50%;
}
@media screen and (max-width: 834px) {
  .sec-company__cont {
    max-width: none;
    width: 100%;
  }
}
.sec-company__ttl {
  position: relative;
  padding-left: 1em;
  padding-bottom: 2rem;
  font-size: 3.2rem;
  border-bottom: 1px solid #eee;
}
@media screen and (max-width: 550px) {
  .sec-company__ttl {
    font-size: 5.4vw;
  }
}
.sec-company__ttl::before {
  position: absolute;
  content: "";
  width: 0.25em;
  height: calc(1em + 10px);
  top: -5px;
  left: 9px;
  background-color: #2f5dec;
  border-radius: 10px;
  -webkit-border-radius: 10px;
}
.sec-company__ttl:nth-of-type(1) {
  margin-top: 7rem;
}
.sec-company__ttl:nth-of-type(2) {
  margin-top: 9rem;
}
.sec-company__content {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 4rem;
  grid-row-gap: 6rem;
}
@media screen and (max-width: 834px) {
  .sec-company__content {
    grid-row-gap: 3rem;
  }
}
.sec-company__content-item {
  position: relative;
  padding: 4rem;
  background-color: #f1f5fe;
  border-radius: 10px;
  -webkit-border-radius: 10px;
}
@media screen and (max-width: 1100px) {
  .sec-company__content-item {
    padding: 3rem;
  }
}
@media screen and (max-width: 500px) {
  .sec-company__content-item {
    padding: 2rem;
  }
}
.sec-company__content-item:nth-of-type(1), .sec-company__content-item:nth-of-type(2) {
  grid-column: span 1;
}
@media screen and (max-width: 834px) {
  .sec-company__content-item:nth-of-type(1), .sec-company__content-item:nth-of-type(2) {
    grid-column: span 2;
  }
}
.sec-company__content-item:nth-of-type(3) {
  grid-column: span 2;
}
.sec-company__content-item:nth-of-type(3) .sec-company__content-img {
  margin-bottom: 0;
  width: 50%;
}
@media screen and (max-width: 834px) {
  .sec-company__content-item:nth-of-type(3) .sec-company__content-img {
    width: 100%;
  }
}
.sec-company__content-item:nth-of-type(3) .bg-wht.fc-blue {
  margin-left: 0;
  margin-right: auto;
}
@media screen and (max-width: 834px) {
  .sec-company__content-item:nth-of-type(3) h4, .sec-company__content-item:nth-of-type(3) h5 {
    text-align: center;
  }
  .sec-company__content-item:nth-of-type(3) .bg-wht.fc-blue {
    margin-left: auto;
  }
}
.sec-company__content-i {
  position: absolute;
  top: -1%;
  left: -2%;
  z-index: 2;
  width: 10rem;
  aspect-ratio: 1/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;
  background-color: #2f5dec;
}
@media screen and (max-width: 500px) {
  .sec-company__content-i {
    width: 16vw;
  }
}
.sec-company__content-i img {
  max-width: 40%;
  max-height: 40%;
}
.sec-company__content-img {
  margin-bottom: 2rem;
}
.sec-company__content .f32 {
  margin: 1rem 0;
}
.sec-company__content .bg-wht.fc-blue {
  margin: 2rem auto;
  padding: 1rem 1em;
  width: fit-content;
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}
@media screen and (max-width: 450px) {
  .sec-company__content .bg-wht.fc-blue {
    margin: 1rem auto;
    line-height: 1.3;
  }
}
.sec-company__content-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: 3rem;
}
@media screen and (max-width: 834px) {
  .sec-company__content-flex {
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    gap: 2rem;
  }
}
.sec-company__content-cont {
  max-width: 500px;
  width: 45%;
}
@media screen and (max-width: 834px) {
  .sec-company__content-cont {
    max-width: none;
    width: 100%;
  }
}
.sec-company__content-box {
  margin-top: 4rem;
  padding: 5.8% 2.6%;
  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: 3rem;
  background-color: #dee6f9;
  background-image: url(../img/company/conent-box_bg.webp);
  background-repeat: no-repeat;
  background-size: 300px auto;
  background-position: top right;
  border-radius: 10px;
  -webkit-border-radius: 10px;
}
@media screen and (max-width: 834px) {
  .sec-company__content-box {
    margin-top: 3rem;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
    background-size: 30% auto;
  }
}
.sec-company__content-box picture {
  max-width: 270px;
  width: 26%;
}
@media screen and (max-width: 834px) {
  .sec-company__content-box picture {
    width: 50%;
  }
}
.sec-company__content-box__cont {
  max-width: 682px;
  width: 65%;
  line-height: 1.3;
}
@media screen and (max-width: 834px) {
  .sec-company__content-box__cont {
    max-width: none;
    width: 100%;
  }
}
.sec-company__content-box__cont .c-txt01 {
  margin-top: 1.5rem;
}
.sec-company__outline {
  margin-top: 8rem;
  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: 3rem;
}
@media screen and (max-width: 834px) {
  .sec-company__outline {
    margin-top: 5rem;
    -webkit-box-direction: normal;
    -webkit-box-orient: horizontal;
    -ms-flex-direction: column;
    flex-direction: column;
  }
}
.sec-company__outline-left {
  max-width: 540px;
  width: 45%;
}
@media screen and (max-width: 834px) {
  .sec-company__outline-left {
    max-width: none;
    width: 100%;
  }
}
.sec-company__outline-left picture:not(:first-of-type) {
  margin: 4rem auto 0;
  width: 80%;
}
.sec-company__outline-list {
  width: 50%;
}
@media screen and (max-width: 834px) {
  .sec-company__outline-list {
    width: 100%;
  }
}
.sec-company__outline-item {
  padding: 2rem 1.5rem;
  border-bottom: 1px solid #ddd;
}
@media screen and (max-width: 450px) {
  .sec-company__outline-item {
    padding: 1.5rem 1rem;
  }
  .sec-company__outline-item:has(br) {
    line-height: 1.3;
  }
}
.sec-company__outline-item:first-of-type {
  padding-top: 0;
}
.sec-company__outline-item p {
  margin-top: 1em;
}
.sec-company__outline-item .c-txt__undline {
  text-underline-offset: 7px;
  text-decoration-thickness: 1px;
}

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

object/component/_heading.scss

***************************/
.c-hg {
  position: relative;
  display: block;
  margin-bottom: 3rem;
  text-align: center;
}
.c-hg__en {
  font-family: "Albert Sans", sans-serif;
  font-weight: 900;
  font-size: 15rem;
  color: rgba(47, 93, 236, 0.1);
}
@media screen and (max-width: 834px) {
  .c-hg__en {
    font-size: 16vw;
  }
}
.c-hg__ja {
  position: absolute;
  top: 6.45rem;
  left: 50%;
  transform: translateX(-50%);
  font-size: 2.1rem;
  color: #3668f4;
}
@media screen and (max-width: 834px) {
  .c-hg__ja {
    font-size: 1.9rem;
  }
}
@media screen and (max-width: 450px) {
  .c-hg__ja {
    font-size: 4.7vw;
  }
}
@media screen and (max-width: 834px) {
  .c-hg__ja {
    top: calc(9vw - 1.05rem);
  }
}
@media screen and (max-width: 600px) {
  .c-hg__ja {
    top: 7.2vw;
    font-size: 3.6vw;
  }
}
.c-hg__txt {
  margin-top: 4rem;
  font-size: 5rem;
  font-weight: 900;
  line-height: 1.28;
}
@media screen and (max-width: 834px) {
  .c-hg__txt {
    margin-top: 3rem;
    font-size: 5.4vw;
  }
}
.c-hg__txt small {
  font-size: 3.2rem;
  display: block;
}
@media screen and (max-width: 834px) {
  .c-hg__txt small {
    font-size: 3.8vw;
  }
}
@media screen and (max-width: 450px) {
  .c-hg__txt.f24 {
    font-size: clamp(1.6rem, 3.9vw, 4.5rem);
  }
}

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

object/component/_box.scss

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

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

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

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

.radius10 {
  border-radius: 10px;
  -webkit-border-radius: 10px;
}

.radius20 {
  border-radius: 20px;
  -webkit-border-radius: 20px;
}

.radius60 {
  border-radius: 60px;
  -webkit-border-radius: 60px;
}
@media screen and (max-width: 500px) {
  .radius60 {
    border-radius: 30px;
    -webkit-border-radius: 30px;
  }
}

.radius100vmax {
  border-radius: 100vmax;
  -webkit-border-radius: 100vmax;
}

.w83 {
  width: 83%;
  margin-left: auto;
  margin-right: auto;
}
@media screen and (max-width: 450px) {
  .w83 {
    width: 100%;
  }
}

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

fade

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

.fadeUp {
  opacity: 1;
  animation: fadeUpAnime 0.5s ease-in-out;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/***************************

object/component/_button.scss

***************************/
.c-btn01 {
  display: block;
  padding: 1em 1.4em;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  color: #fff;
  background-color: #f4862e;
  font-weight: 700;
  text-align: center;
  font-size: 1.4rem;
}

.c-btn02 {
  display: block;
  padding: 1em 1.4em;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  color: #fff;
  background-color: #e95412;
  font-weight: 700;
  text-align: center;
  font-size: 1.4rem;
}

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

object/utility/_background.scss

***************************/
.bg-wht {
  background-color: #fff;
}

.bg-orange {
  background-color: #ff6010;
}

.bg-cyan {
  background-color: #f1f5fe;
}

.bg-blue {
  background-color: #2f5dec;
}

.bg-yellow {
  background-color: #fcff00;
}

.bg-gray {
  background-color: #6b6b6b;
}

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

object/utility/_link.scss

***************************/
.tel-link {
  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: 5px;
  font-size: 6rem;
  font-weight: 700;
  font-family: "Albert Sans", sans-serif;
}
.tel-link img {
  display: block;
  max-width: 4.2rem;
  aspect-ratio: 1/1;
  height: fit-content;
}

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

object/utility/_text.scss

***************************/
.c-txt01 {
  font-size: 1.6rem;
  line-height: 1.75;
}

.c-txt02 {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 834px) {
  .c-txt02 {
    font-size: 1.6rem;
  }
}

.c-txt__undline {
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-thickness: 2px;
}

.c-txt__round {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding: 1rem 1em;
}

.c-txt__marker {
  position: relative;
  z-index: 2;
}
.c-txt__marker::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0.4em;
  bottom: 0;
  left: 0;
  background-color: #fcff00;
  z-index: -1;
}

.txt-ellipsis {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.txt-ellipsis02 {
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2; /* ← 最大2行まで */
  max-height: 3em; /* 2行分の高さ */
  white-space: normal;
  text-overflow: ellipsis;
}

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.fwb {
  font-weight: 700;
}

.fwn {
  font-weight: normal;
}

.fwm {
  font-weight: 500;
}

.fwbl {
  font-weight: 900;
}

.f12 {
  font-size: 1.2rem;
}

.f13 {
  font-size: 1.3rem;
}

.f14 {
  font-size: 1.4rem;
}

.f15 {
  font-size: 1.5rem;
}

.f16 {
  font-size: 1.6rem;
}

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

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

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

.f24 {
  font-size: 2.4rem;
}
@media screen and (max-width: 834px) {
  .f24 {
    font-size: clamp(1.6rem, 2.9vw, 4.5rem);
  }
}

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

.f30 {
  font-size: 3rem;
}
@media screen and (max-width: 600px) {
  .f30 {
    font-size: 5vw;
  }
}

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

.f38 {
  font-size: 3.8rem;
}
@media screen and (max-width: 834px) {
  .f38 {
    font-size: 4vw;
  }
}

.f40 {
  font-size: 4rem;
}
@media screen and (max-width: 600px) {
  .f40 {
    font-size: 6.6vw;
  }
}

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

.f43 {
  font-size: 4.3rem;
}
@media screen and (max-width: 450px) {
  .f43 {
    font-size: 10vw;
  }
}

.f46 {
  font-size: 4.6rem;
}

.f48 {
  font-size: 4.8rem;
}
@media screen and (max-width: 500px) {
  .f48 {
    font-size: 7vw;
  }
}

.f50 {
  font-size: 5rem;
}
@media screen and (max-width: 834px) {
  .f50 {
    font-size: 5.5vw;
  }
}

.f52 {
  font-size: 5.2rem;
}
@media screen and (max-width: 600px) {
  .f52 {
    font-size: 8.7vw;
  }
}

.f56 {
  font-size: 5.6rem;
}
@media screen and (max-width: 450px) {
  .f56 {
    font-size: 12vw;
  }
}

.f58 {
  font-size: 5.8rem;
}
@media screen and (max-width: 450px) {
  .f58 {
    font-size: 14vw;
  }
}

.f80 {
  font-size: 8rem;
}
@media screen and (max-width: 500px) {
  .f80 {
    font-size: 16vw;
  }
}

.f120 {
  font-size: 12rem;
}
@media screen and (max-width: 834px) {
  .f120 {
    font-size: 14.4vw;
  }
}

.fc-blue {
  color: #3260ed;
}

.fc-wht {
  color: #fff;
}

.fc-orange {
  color: #ea5a1a;
}

.fc-yellow {
  color: #fcff00;
}

.fc-black {
  color: #222;
}

.lh-1_2 {
  line-height: 1.2;
}

.lh-1_3 {
  line-height: 1.3;
}

.lh-1_4 {
  line-height: 1.4;
}

.lh-1_5 {
  line-height: 1.5;
}

.lh-1_6 {
  line-height: 1.6;
}

.lh-1_7 {
  line-height: 1.7;
}

.lh-1_8 {
  line-height: 1.8;
}

.lh-2_5 {
  line-height: 2.5;
}
@media screen and (max-width: 450px) {
  .lh-2_5 {
    line-height: 1.8;
  }
}

.lh-2_7 {
  line-height: 2.7;
}
@media screen and (max-width: 450px) {
  .lh-2_7 {
    line-height: 2;
  }
}

.txt-underline {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 10px;
}

.w-50em {
  display: inline-block;
  width: 0.5em;
}

.wm-rl {
  writing-mode: vertical-rl;
}

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

object/utility/_font.scss

***************************/
.en {
  font-family: "Albert Sans", sans-serif;
}