/* --------------------------------------------------------------------------------
 * web fonts
-------------------------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Geist:wght@100..900&display=swap');

:root {
  --color-text: #2A2A2A;
  --color-blue: #133072;
  --linear-brown: linear-gradient(94deg, #DEC57B 9.63%, #49391E 94.07%);
  --linear-blue: linear-gradient(112deg, #315ABC 14.56%, #0D3185 99.45%);
  --linear-blue-light: linear-gradient(90deg, #319DBC 12.86%, #0F7795 89.67%);

  --font-jp: 'Noto Sans JP', sans-serif;
  --font-geist: 'Geist', 'Noto Sans JP', sans-serif;
}

/* ----------------------------------------------------------------------
 reset (exculding 'sup')
---------------------------------------------------------------------- */
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

input, textarea {
  margin: 0;
  padding: 0;
}

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption, th {
  text-align: left;
}

img {
  vertical-align: middle;
}

/* ----------------------------------------------------------------------
 basic setting
---------------------------------------------------------------------- */
body {
  font-family: "Noto Sans JP", sans-serif;
  color: var(--color-text);
  font-feature-settings: 'palt' on;
  line-height: 1.7;
  /*
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  */
}
body.is-fixed {
  overflow: hidden;
}

body * {
  -webkit-text-size-adjust: 100%;
  box-sizing: border-box;
}

input, button, textarea, select {
  color: var(--color-text);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 16px;
}

textarea {
  vertical-align: top;
}

*:focus {
  outline: none;
}

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

a:hover {
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}

/* ----------------------------------------------------------------------
 common class
---------------------------------------------------------------------- */
@media only screen and (min-width: 1081px) {
  .pc-non {
    display: none !important;
  }
}
@media only screen and (max-width: 1080px) {
  .sp-non {
    display: none !important;
  }
}
.mb0 {
  margin-bottom: 0;
}

.t-center {
  text-align: center;
}
.t-center-pc {
  @media screen and (min-width: 1081px){
    text-align: center;
  }
}

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

.link-tel {
  color: inherit;
  text-decoration: none;
}
@media only screen and (min-width: 1081px) {
  .link-tel {
    pointer-events: none;
  }
}


.hover {
  transition: 0.3s;
}
@media only screen and (min-width: 1081px) {
  .hover:hover {
    opacity: 0.7;
  }
}

.color-blue {
  color: var(--color-blue);
}
.color-white {
  color: #fff;
}
.color-blue-grad {
  background: var(--linear-blue);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.title-primary {
  .en {
    font-family: var(--font-geist);
    font-weight: bold;
    font-size: 20px;
    letter-spacing: -0.03em;
    display: block;
    padding-left: 28px;
    position: relative;
    @media screen and (max-width: 1080px){
      font-size: 15px;
    }
    &:before {
      content: "";
      position: absolute;
      top: 8px;
      left: 0px;
      width: 18px;
      height: 18px;
      background: var(--linear-blue);
      border-radius: 50%;
      @media screen and (max-width: 1080px){
        top: 4px;
      }
    }
    &:after {
      content: "";
      position: absolute;
      top: 12px;
      left: 4px;
      width: 10px;
      height: 10px;
      background: #fff;
      border-radius: 50%;
      @media screen and (max-width: 1080px){
        top: 8px;
      }
    }
  }
  .ja {
    display: block;
    font-size: 72px;
    font-weight: 900;
    line-height: 1.25;
    margin-top: 15px;
    @media screen and (max-width: 1080px){
      font-size: 40px;
      margin-top: 8px;
    }
  }
}
.title-primary--white {
  color: #fff;
  .en {
    &:before {
      background: none;
      border: 4px solid #fff;
      width: 10px;
      height: 10px;
    }
    &:after {
      display: none;
    }
  }
}
.title-primary--center {
  text-align: center;
  .en {
    display: inline-block;
  }
}
.title-primary--center-pc {
  @media screen and (min-width: 1081px){
    text-align: center;
    .en {
      display: inline-block;
    }  
  }
}

.text-subtitle {
  font-size: 20px;
  font-weight: bold;
  margin-top: 25px;
  letter-spacing: 0.04em;
  line-height: 1;
  @media screen and (max-width: 1080px){
    font-size: 13px;
    margin-top: 12px;
  }
}

/* ----------------------------------------------------------------------
 Layout
---------------------------------------------------------------------- */
.l-header {
  position: absolute;
  z-index: 1000;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 80px;
  @media screen and (max-width: 1360px){
    position: relative;
    height: 50px;
  }
}
.l-header__inner {
  position: fixed;
  z-index: 1000;
  top: 0px;
  left: 0px;
  width: 100%;
  padding: 18px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  @media screen and (max-width: 1360px){
    padding: 0 20px;
    height: 50px;
    background-color: #fff;
  }
  &:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 168px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.50) 0%, rgba(0, 0, 0, 0.00) 95.55%);
    backdrop-filter: blur(0px);
    pointer-events: none;
    @media screen and (max-width: 1360px){
      display: none;
    }
  }
}
.l-header__logo {
  display: flex;
  align-items: center;
  img {
    width: 84px;
    @media screen and (max-width: 1360px){
      width: 52px;
    }
  }
}
.l-header__name {
  font-size: 22px;
  font-weight: bold;
  color: #fff;
  margin-left: 0.6em;
  @media screen and (max-width: 1440px){
    font-size: 20px;
  }
  @media screen and (max-width: 1360px){
    font-size: 14px;
    color: var(--color-text);
  }
}
.l-header__right {
  display: flex;
  align-items: center;
  @media screen and (max-width: 1360px){
    display: none;
  }
}
.l-header__menu {
  @media screen and (min-width: 1361px){
    display: none;
  }
}
.l-header__nav {
  display: flex;
  gap: 30px;
  align-items: center;
  @media screen and (max-width: 1440px){
    gap: 20px;
  }
  li {
    a {
      color: #FFF;
      font-size: 15px;
      font-style: normal;
      font-weight: 500;
      letter-spacing: .02em;
      text-decoration: none;
      &:hover {
        text-decoration: underline;
      }
    }
  }
}
.l-header__buttons {
  display: flex;
  margin-left: 24px;
  gap: 15px;
}
.l-header__entry {
  border-radius: 50vh;
  background: var(--linear-brown);
  display: inline-flex;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  height: 48px;
  padding: 0 15px 0 28px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  &:after {
    content: "";
    width: 18px;
    height: 20px;
    background: url(../img/icon_arrow_brown.svg) no-repeat center / contain;
    margin-left: 15px;
  }
}
.l-header__contact {
  border-radius: 50vh;
  background: var(--linear-blue-light);
  display: inline-flex;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  padding: 0 15px 0 28px;
  height: 48px;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  &:after {
    content: "";
    width: 18px;
    height: 20px;
    background: url(../img/icon_arrow_blue.svg) no-repeat center / contain;
    margin-left: 15px;
  }
}
.spMenu {
  @media screen and (min-width: 1361px){
    display: none !important;
  }
  display: none;
  position: fixed;
  z-index: 1001;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: linear-gradient(175deg, #315ABC 7.2%, #0D3185 98.22%);
}
.spMenu__close {
  position: absolute;
  top: 18px;
  right: 20px;
}
.spMenu__inner {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.spMenu__navi {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 35px;
  li {
    a {
      font-size: 17px;
      font-weight: 500;
      color: #fff;
      text-decoration: none;
    }
  }
}
.spMenu__buttons {
  margin-top: 60px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.spMenu__entry {
  border-radius: 50vh;
  background: var(--linear-brown);
  display: flex;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  width: 260px;
  height: 58px;
  padding: 0 20px 0 0;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: relative;
  &:after {
    content: "";
    width: 18px;
    height: 20px;
    background: url(../img/icon_arrow_brown.svg) no-repeat center / contain;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
}
.spMenu__contact {
  border-radius: 50vh;
  background: var(--linear-blue-light);
  display: flex;
  color: #fff;
  font-size: 17px;
  font-weight: bold;
  width: 260px;
  height: 58px;
  padding: 0 20px 0 0;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  position: relative;
  &:after {
    content: "";
    width: 18px;
    height: 20px;
    background: url(../img/icon_arrow_blue.svg) no-repeat center / contain;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
  }
}


.fv {
  position: relative;
}
.fv__btn {
  position: absolute;
  bottom: 4.9vw;
  left: 3.3vw;
  @media screen and (max-width: 750px){
    bottom: 12.7vw;
    left: 15.5vw;
  }
  a {
    display: inline-flex;
    border-radius: 50vh;
    background: var(--linear-brown);
    box-shadow: 8.845px 8.845px 14.742px 0 rgba(0, 0, 0, 0.35);
    color: #fff;
    font-size: 1.6vw;
    font-weight: bold;
    padding: 1.2vw 2.3vw 1.2vw 5.2vw;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border: 2px solid #fff;
    line-height: 1.7;
    @media screen and (max-width: 750px){
      width: 69.3vw;
      height: 16.2vw;
      padding: 0;
      font-size: 4.8vw;
    }
    &:after {
      content: "";
      width: 1.7vw;
      height: 2vw;
      background: url(../img/icon_arrow_brown.svg) no-repeat center / contain;
      margin-left: 4vw;
      @media screen and (max-width: 750px){
        width: 5.3vw;
        height: 6vw;
        position: absolute;
        top: 50%;
        right: 5.3vw;
        transform: translateY(-50%);
        margin: 0;
      }
    }
  }
}
.concept {
  padding-top: 120px;
  background-color: #F9F9FC;
  @media screen and (max-width: 1080px){
    padding: 80px 20px 0;
  }
}
.concept__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  @media screen and (max-width: 1080px){
    display: block;
  }
}
.concept__left {
  width: 47.8%;
  @media screen and (max-width: 1080px){
    width: 100%;
  }
}
.concept__right {
  width: 47.8%;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px;
  @media screen and (max-width: 1080px){
    width: 100%;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 20px;
  }
}
.concept__title {
  font-size: 26px;
  font-weight: 900;
  padding-left: 27px;
  position: relative;
  @media screen and (max-width: 1080px){
    font-size: 18px;
  }
  &:before {
    content: "";
    border: 4px solid #133072;
    width: 10px;
    height: 10px;
    position: absolute;
    top: 14px;
    left: 0px;
    border-radius: 50%;
    @media screen and (max-width: 1080px){
      top: 6px;
    }
  }
}
.concept__subtitle {
  padding-left: 27px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  @media screen and (max-width: 1080px){
    font-size: 12px;
  }
}
.concept__h3 {
  font-size: 76px;
  font-weight: 900;
  line-height: 1.25;
  margin-top: 28px;
  @media screen and (max-width: 1080px){
    font-size: 40px;
    margin-top: 12px;
  }
}
.concept__text {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.8;
  margin-top: 28px;
  @media screen and (max-width: 1080px){
    font-size: 14px;
    margin-top: 18px;
  }
}
.concept-block--block01 {
  grid-column: 1;
  grid-row: 1;
}
.concept-block--block02 {
  grid-column: 2;
  grid-row: 1;
}
.concept-block--block03 {
  grid-column: 1 / 3;
  grid-row: 2;
  display: flex;
  justify-content: space-between;
  @media screen and (max-width: 1080px){
    flex-direction: column;
  }
}
.concept-block {
  background: var(--linear-blue);
  color: #fff;
  padding: 25px;
  border-radius: 10px;
  @media screen and (max-width: 1080px){
    padding: 20px;
  }
}
.concept-block__tag {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  @media screen and (max-width: 1080px){
    font-size: 18px;
  }
}
.concept-block__num {
  text-align: right;
  font-size: 59px;
  font-weight: bold;
  letter-spacing: -0.03em;
  font-family: var(--font-geist);
  white-space: nowrap;
  line-height: 1;
  margin-top: 30px;
  _res
  .__year {
    font-size: 44px;
    font-weight: 900;
  }
  .__larger {
    font-size: 22px;
    font-weight: 900;
    writing-mode: vertical-rl;
    line-height: 1;
  }
}
.concept-block__text {
  font-size: 14px;
  font-weight: 500;
  text-align: right;
  margin-top: 5px;
}
.concept-office {
  margin-left: 33px;
  flex: 1;
  @media screen and (max-width: 1080px){
    margin: 20px 0 0;
  }
}
.concept-office__list {
  border-bottom: 1px dashed #fff;
  padding-bottom: 15px;
  margin-bottom: 15px;
  &:last-child {
    border-bottom: none;
    padding-bottom: 0px;
    margin-bottom: 0px;
  }
  dt {
    font-size: 30px;
    font-weight: 900;
    line-height: 1;
  }
  dd {
    font-weight: 500;
    font-size: 14px;
    line-height: 1;
    margin-top: 10px;
  }
}
.concept-gallery {
  margin-top: 100px;
  @media screen and (max-width: 1080px){
    margin-top: 40px;
  }
}
.concept-gallery__item {
  padding: 0 20px;
  img {
    width: 372px;
  }
  @media screen and (max-width: 1080px){
    padding: 0 13px;
    img {
      width: 60vw;
    }
  }
  .is-even {
    padding-top: 48px;
    @media screen and (max-width: 1080px){
      padding-top: 30px;
    }
  }
}
.works {
  padding-top: 30px;
  padding-bottom: 120px;
  background-color: #F9F9FC;
  position: relative;
  overflow: hidden;
  z-index: 1;
  @media screen and (max-width: 1080px){
    padding: 50px 0 0;
  }
  &:after {
    content: "";
    width: 1003px;
    aspect-ratio: 1003 / 650;
    background: url(../img/bg_works.png) no-repeat center bottom / contain;
    position: absolute;
    bottom: 0px;
    right: calc(50% - 1066px);
    z-index: -1;
    @media screen and (max-width: 1080px){
      display: block;
      position: static;
      background: url(../img/bg_works_sp.png) no-repeat center bottom / cover;
      height: 85.8vw;
      width: 100%;
      margin-top: 10px;
    }
  }
}
.works__inner {
  max-width: 1160px;
  margin: 0 auto;
  @media screen and (max-width: 1080px){
    padding: 0 20px;
  }
}
.works__header {
  display: flex;
  justify-content: space-between;
  @media screen and (max-width: 1080px){
    flex-direction: column;
  }
}
.works-introduction {
  width: 53.2%;
  @media screen and (max-width: 1080px){
    width: 100%;
    margin-top: 30px;
  }
}
.works-introduction__title {
  font-size: 24px;
  font-weight: bold;
  letter-spacing: 0.04em;
  padding-left: 18px;
  position: relative;
  @media screen and (max-width: 1080px){
    font-size: 20px;
  }
  &:before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 0px;
    left: 0px;
    width: 5px;
    height: 100%;
    background: linear-gradient(179deg, #315ABC 6.5%, #0D3185 98.11%);
  }
}
.works-introduction__text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 12px;
  @media screen and (max-width: 1080px){
    font-size: 14px;
  }
}
.works-list {
  display: flex;
  justify-content: space-between;
  gap: 29px;
  margin-top: 60px;
  @media screen and (max-width: 1080px){
    flex-direction: column;
    gap: 12px;
  }
}
.works-list__item {
  flex: 1;
  border-radius: 10px;
  background: #FFF;
  box-shadow: 20px 20px 25px 0 rgba(33, 42, 89, 0.05);
  padding: 30px;
  position: relative;
  @media screen and (max-width: 1080px){
    padding: 20px;
  }
}
.works-list__icon {
  width: 48px;
  @media screen and (max-width: 1080px){
    
  }
}
.works-list__num {
  position: absolute;
  top: 30px;
  right: 30px;
  font-size: 12px;
  font-weight: bold;
  color: #CDD1DA;
}
.works-list__title {
  margin-top: 40px;
  line-height: 1;
  letter-spacing: 0.04em;
  font-size: 24px;
  font-weight: 900;
  @media screen and (max-width: 1080px){
    margin-top: 25px;
  }
}
.works-list__text {
  margin-top: 15px;
  line-height: 1.8;
  font-weight: 500;
}
.works-content {
  margin-top: 60px;
  @media screen and (max-width: 1080px){
    margin-top: 40px;
  }
}
.works-content__title {
  font-size: 36px;
  font-weight: 900;
  line-height: 1.35;
  @media screen and (max-width: 1080px){
    font-size: 28px;
  }
}
.works-content__text {
  padding-top: 25px;
  margin-top: 25px;
  border-top: 1px dashed #9C9C9C;
  position: relative;
  font-size: 15px;
  line-height: 1.8;
  font-weight: 500;
  max-width: 596px;
  @media screen and (max-width: 1080px){
    padding-top: 20px;
    margin-top: 20px;
  }
  &:before {
    content: "";
    position: absolute;
    top: -5px;
    left: 0px;
    width: 8px;
    height: 9px;
    background: #9C9C9C;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
  }
  &:after {
    content: "";
    position: absolute;
    top: -5px;
    right: 0px;
    width: 8px;
    height: 9px;
    background: #9C9C9C;
    clip-path: polygon(0 50%, 100% 0%, 100% 100%);
  }
}
.works-content__note {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 15px;
}
.benefit {
  padding-top: 120px;
  @media screen and (max-width: 1080px){
    padding-top: 50px;
  }
}
.benefit__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  @media screen and (max-width: 1080px){
    padding: 0 20px;
    display: block;
  }
}
.benefit__left {
  @media screen and (max-width: 1080px){
    margin-top: 25px;
  }
}
.benefit__thumb {
  width: 698px;
  margin-top: 114px;
  margin-left: -232px;
  position: relative;
  @media screen and (max-width: 1080px){
    width: auto;
    margin: 25px 0 0;
  }
  &:after {
    content: "";
    position: absolute;
    bottom: -59px;
    left: -54px;
    width: 557px;
    height: 109px;
    border-radius: 10px;
    background: linear-gradient(90deg, rgba(49, 90, 188, 0.00) -0.9%, #001851 100%);
    @media screen and (max-width: 1080px){
      width: 259px;
      height: 51px;
      bottom: -24px;
      left: -91px;
    }
  }
}
.benefit__right {
  width: 53.2%;
  @media screen and (max-width: 1080px){
    width: auto;
    margin-top: 60px;
  }
}
.title-benefit {
  display: flex;
  align-items: center;
}
.title-benefit__icon {
  width: 48px;
  margin-right: 12px;
  @media screen and (max-width: 1080px){
    width: 33px;
  }
}
.title-benefit__text {
  font-size: 40px;
  font-weight: 900;
  letter-spacing: 0.04em;
  @media screen and (max-width: 1080px){
    font-size: 25px;
  }
  .__small {
    font-size: 14px;
    font-weight: 500;
    @media screen and (max-width: 1080px){
      font-size: 12px;
    }
  }
}
.benefit-fee__large {
  line-height: 1;
  font-size: 72px;
  font-weight: 900;
  @media screen and (max-width: 1080px){
    font-size: 32px;
  }
  .__large {
    font-family: var(--font-geist);
    font-size: 110px;font-weight: bold;
    letter-spacing: -0.03em;
    @media screen and (max-width: 1080px){
      font-size: 60px;
    }
  }
  .__small {
    font-size: 52px;
    @media screen and (max-width: 1080px){
      font-size: 22px;
    }
  }
}
.benefit-fee__small {
  font-size: 14px;
  @media screen and (max-width: 1080px){
    font-size: 12px;
  }
}
.benefit-fee__medium {
  margin-top: 20px;
  font-size: 37px;
  font-weight: 900;
  line-height: 1;
  @media screen and (max-width: 1080px){
    font-size: 22px;
  }
  .__large {
    font-size: 70px;
    font-family: var(--font-geist);
    letter-spacing: -0.03em;
    @media screen and (max-width: 1080px){
      font-size: 42px;
    }
  }
}
.benefit__block {
  position: relative;
  + .benefit__block {
    padding-top: 50px;
    margin-top: 50px;
    border-top: 1px dashed #9c9c9c; 
    @media screen and (max-width: 1080px){
      padding-top: 30px;
      margin-top: 30px;
    }
    &:before {
      content: "";
      position: absolute;
      top: -5px;
      left: 0px;
      width: 8px;
      height: 9px;
      background: #9C9C9C;
      clip-path: polygon(0 0, 100% 50%, 0 100%);
    }
    &:after {
      content: "";
      position: absolute;
      top: -5px;
      right: 0px;
      width: 8px;
      height: 9px;
      background: #9C9C9C;
      clip-path: polygon(0 50%, 100% 0%, 100% 100%);
    }
  }
}
.model-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 30px;
  @media screen and (max-width: 1080px){
    gap: 10px;
    margin-top: 20px;
  }
}
.model-list__item {
  border-radius: 10px;
  background: #F4F4F8;
  padding: 16px 20px;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  @media screen and (max-width: 1080px){
    flex-direction: column;
  }
}
.model-list__name {
  font-size: 21px;
  font-weight: bold;
  line-height: 1.5;
  @media screen and (max-width: 1080px){
    font-size: 16px;
    width: 100%;
  }
}
.model-list__salary {
  font-size: 25px;
  font-weight: 900;
  line-height: 1;
  @media screen and (max-width: 1080px){
    font-size: 20px;
    margin-top: 15px;
  }
  .__large {
    font-size: 48px;
    font-family: var(--font-geist);
    letter-spacing: -0.01em;
    font-weight: bold;
    display: inline-block;
    width: 5em;
    text-align: right;
    @media screen and (max-width: 1080px){
      font-size: 38px;
    }
  }
}
.benefit-holiday__text {
  margin-top: 20px;
  padding-left: 26px;
  position: relative;
  font-size: 21px;
  font-weight: bold;
  @media screen and (max-width: 1080px){
    font-size: 16px;
    margin-top: 15px;
  }
  &:before {
    content: "";
    position: absolute;
    top: 17px;
    left: 0px;
    width: 16px;
    height: 2px;
    background: var(--linear-blue);
    @media screen and (max-width: 1080px){
      top: 13px;
    }
  }
}
.welfare-list {
  display: flex;
  flex-wrap: wrap;
  gap: 17px;
  margin-top: 25px;
  @media screen and (max-width: 1080px){
    gap: 10px;
  }
}
.welfare-list__item {
  padding: 25px;
  border-radius: 10px;
  background: #F4F4F8;
  width: calc(50% - 8.5px);
  @media screen and (max-width: 1080px){
    width: 100%;
  }
}
.welfare-list__title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  position: relative;
  &:before {
    content: "";
    position: absolute;
    top: 0px;
    left: -25px;
    width: 3px;
    height: 100%;
    background: var(--color-blue);
    border-radius: 0 2px 2px 0;
  }
}
.welfare-list__text {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  margin-top: 15px;
}
.schedule {
  margin-top: 95px;
  padding: 120px 0;
  background: url(../img/bg_schedule.png) no-repeat center top / contain, var(--linear-blue);
  @media screen and (max-width: 1080px){
    margin-top: 50px;
    padding: 45px 20px 40px;
  }
}
.schedule__inner {
  max-width: 1160px;
  margin: 0 auto;
  color: #fff;
}
.schedule__content {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  @media screen and (max-width: 1080px){
    flex-direction: column;
    gap: 20px;
  }
}
.schedule-block {
  width: calc(50% - 15px);
  border-radius: 10px;
  background: rgba(244, 244, 248, 0.10);
  backdrop-filter: blur(32px);
  padding: 40px;
  @media screen and (max-width: 1080px){
    width: 100%;
    padding: 20px;
  }
}
.schedule-block__title {
  padding-bottom: 30px;
  position: relative;
  font-size: 30px;
  display: flex;
  align-items: center;
  font-weight: bold;
  line-height: 1.25;
  @media screen and (max-width: 1080px){
    font-size: 20px;
    padding-bottom: 20px;
  }
  &:after {
    content: "";
    width: 100%;
    height: 1px;
    background: #fff;
    position: absolute;
    bottom: 0px;
    left: 0px;
    opacity: 0.2;
  }
  .__tag {
    display: inline-flex;
    padding: 7px 15px;
    justify-content: center;
    align-items: center;
    gap: 10px;
    border-radius: 50vh;
    background: #1741A1;
    font-size: 16px;
    font-weight: 600;
    font-family: var(--font-geist);
    margin-left: 14px;
    @media screen and (max-width: 1080px){
      font-size: 13px;
    }
  }
}
.schedule-table {
  display: none;
  margin-top: 35px;
  @media screen and (max-width: 1080px){
    margin-top: 15px;
  }
  &.is-active {
    display: block;
  }
}
.schedule-table__item {
  display: flex;
  dt {
    width: 100px;
    font-size: 23px;
    font-weight: 600;
    line-height: 1;
    font-family: var(--font-geist);
    border-right: 1px dashed #fff;
    position: relative;
    @media screen and (max-width: 1080px){
      font-size: 15px;
    }
    &:after {
      content: "";
      background: url(../img/circle_schedule.svg) no-repeat center / contain;
      width: 28px;
      aspect-ratio: 1 / 1;
      position: absolute;
      right: -14px;
      top: -2px;
      @media screen and (max-width: 1080px){
        width: 20px;
        right: -10px;
      }
    }
  }
  dd {
    padding-left: 30px;
    flex: 1;
    font-size: 20px;
    font-weight: bold;
    line-height: 1.25;
    padding-bottom: 40px;
    @media screen and (max-width: 1080px){
      font-size: 15px;
      padding-bottom: 15px;
    }
    small {
      font-size: 13px;
      line-height: 1.4;
      letter-spacing: 0.04em;
      margin-top: 0.4em;
      @media screen and (max-width: 1080px){
        font-size: 12px;
      }
    }
  }
  &:last-child {
    dd {
      padding-bottom: 0px;
    }
  }
}
.schedule__free {
  display: flex;
  margin-top: 30px;
  font-size: 17px;
  line-height: 1.25;
  @media screen and (max-width: 1080px){
    flex-direction: column;
    align-items: flex-start;
    margin-top: 20px;
  }
  dt {
    font-size: 16px;
    margin-right: 38px;
    position: relative;
    @media screen and (max-width: 1080px){
      font-size: 14px;
    }
    &:after {
      content: "/";
      position: absolute;
      top: 0px;
      right: -20px;
      font-size: 16px;
    }
  }
  dd {
    font-size: 17px;
    @media screen and (max-width: 1080px){
      font-size: 14px;
    }
  }
}
.schedule__content {
  margin-top: 30px;
  @media screen and (max-width: 1080px){
    margin-top: 20px;
  }
}
.schedule-navi {
  display: flex;
  overflow: hidden;
  margin-top: -18px;
  position: relative;
  z-index: 2;
  @media screen and (max-width: 1080px){
    width: 100%;
    margin-top: -10px;
  }
  li {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 104px;
    height: 36px;
    font-size: 15px;
    font-weight: bold;
    color: #fff;
    cursor: pointer;
    background-color: #95AADA;
    &.is-active {
      background-color: var(--color-blue);
    }
    &:first-child {
      border-radius: 5px 0px 0px 5px;
    }
    &:last-child {
      border-radius: 0px 5px 5px 0px;
    }
    @media screen and (max-width: 1080px){
      width: 50%;
      height: 29px;
      font-size: 12px;
    }
  }
}
.schedule-calendar {
  margin-top: 30px;
  display: flex;
  background-color: rgba(244,244,248,0.1);
  border-radius: 10px;
  overflow: hidden;
  @media screen and (max-width: 1080px){
    margin-top: 25px;
  }
}
.schedule-calendar__row {
  flex: 1;
  &:nth-child(even) {
    background-color: rgba(255,255,255,0.05);
  } 
}
.schedule-calendar__head {
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  font-family: var(--font-geist);
  @media screen and (max-width: 1080px){
    height: 37px;
    font-size: 13px;
  }
}
.schedule-calendar__body {
  padding: 15px 10px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  @media screen and (max-width: 1080px){
    padding: 5px 8px 12px;
  }
}
.schedule-calendar__item {
  width: 100%;
  height: 43px;
  border-radius: 4px;
  color: #fff;
  background-color: #498CFF;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.04em;
  display: flex;
  align-items: center;
  justify-content: center;
  @media screen and (max-width: 1080px){
    font-size: 13px;
    height: 57px;
    writing-mode: vertical-rl;
    .num {
      text-orientation: upright;
    }
  }
}
.schedule-calendar__item.-holiday {
  background-color: #0E255B;
}
.schedule-notice {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 25px;
  @media screen and (max-width: 1080px){
    flex-direction: column;
    gap: 8px;
    margin-top: 15px;
  }
}
.schedule-notice__list {
  display: flex;
  align-items: center;
  gap: 8px;
  dt {
    font-size: 14px;
    font-weight: 500;
    border-radius: 4px;
    border: 1px solid #FFF;
    padding: 6px 8px 7px 8px;
    line-height: 1;
    @media screen and (max-width: 1080px){
      font-size: 12px;
    }
  }
  dd {
    font-size: 16px;
    font-weight: 500;
    @media screen and (max-width: 1080px){
      font-size: 14px;
    }
  }
}

.appeal {
  padding-top: 120px;
  overflow: hidden;
  z-index: 1;
  position: relative;
  @media screen and (max-width: 1080px){
    padding: 50px 20px;
  }
  &:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 120px;
    right: calc(50% - 1311px);
    width: 1062px;
    aspect-ratio: 1 / 1;
    background: url(../img/deco_appeal_01.png) no-repeat center / contain;
    @media screen and (max-width: 1080px){
      display: none;
    }
  }
  &:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 580px;
    left: calc(50% - 1090px);
    width: 772px;
    aspect-ratio: 1 / 1;
    background: url(../img/deco_appeal_02.png) no-repeat center / contain;
    @media screen and (max-width: 1080px){
      display: none;
    }
  }
}
.appeal__inner {
  max-width: 1160px;
  margin: 0 auto;
}
.appeal__content {
  margin-top: 30px;
  @media screen and (max-width: 1080px){
    margin-top: 20px;
  }
}
.appeal-block {
  display: flex;
  justify-content: space-between;
  align-items: center;  
  padding: 10px 10px 10px 50px;
  border-radius: 18px;
  background-color: #F4F4F8;
  @media screen and (max-width: 1080px){
    flex-direction: column-reverse;
    padding: 10px 10px 30px;

  }
  + .appeal-block {
    margin-top: 20px;
    @media screen and (max-width: 1080px){
      margin-top: 12px;
    }
  }
}
.appeal-block__left {
  width: 40.8%;
  @media screen and (max-width: 1080px){
    width: 100%;
    margin-top: 12px;
  }
}
.appeal-block__right {
  width: 54.8%;
  @media screen and (max-width: 1080px){
    width: 100%;
  }
}
.appeal-block__title {
  font-size: 32px;
  font-weight: 900;
  line-height: 1.4;
  padding-bottom: 15px;
  margin-bottom: 15px;
  border-bottom: 1px dashed #9C9C9C;
  position: relative;
  @media screen and (max-width: 1080px){
    font-size: 20px;
    padding-bottom: 12px;
    margin-bottom: 0;
  }
  &:before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0px;
    width: 8px;
    height: 9px;
    background: #9C9C9C;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
  }
  &:after {
    content: "";
    position: absolute;
    bottom: -5px;
    right: 0px;
    width: 8px;
    height: 9px;
    background: #9C9C9C;
    clip-path: polygon(0 50%, 100% 0%, 100% 100%);
  }
}
.appeal-block__text {
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  @media screen and (max-width: 1080px){
    font-size: 14px;
    margin-top: 12px;
  }
}
.appeal-block__list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
  @media screen and (max-width: 1080px){
    margin-top: 8px;
    gap: 8px;
  }
  li {
    padding-left: 28px;
    font-size: 18px;
    font-weight: 900;
    line-height: 1.35;
    position: relative;
    @media screen and (max-width: 1080px){
      font-size: 14px;
    }
    &:before {
      content: "";
      background: url(../img/icon_check.svg) no-repeat center / contain;
      width: 20px;
      height: 20px;
      position: absolute;
      left: 0px;
      top: 2px;
      @media screen and (max-width: 1080px){
        width: 18px;
        height: 18px;
        top: 0px;
      }
    }
  }
}
.appeal-block--gold {
  background: var(--linear-brown);
  color: #fff;
  .appeal-block__title {
    border-color: #fff;
    &:before,
    &:after {
      background: #fff;
    }
  }
  .appeal-block__list li {
    &:before {
      background: url(../img/icon_check_black.svg) no-repeat center / contain;
    }
  }
}
.cars {
  padding-top: 80px;
  @media screen and (max-width: 1080px){
    padding-top: 50px;
  }
}
.cars__title {
  font-size: 40px;
  font-weight: 900;
  line-height: 1.4;
  text-align: center;
  position: relative;
  padding-bottom: 20px;
  @media screen and (max-width: 1080px){
    font-size: 30px;
    padding-bottom: 12px;
  }
  &:after {
    content: "";
    width: 90px;
    height: 4px;
    background: var(--linear-blue);
    position: absolute;
    bottom: 0px;
    left: calc(50% - 45px);
    @media screen and (max-width: 1080px){
      width: 66px;
      letf: calc(50% - 33px);
    }
  }
}
.cars-list {
  margin-top: 35px;
  display: flex;
  gap: 30px;
  @media screen and (max-width: 1080px){
    margin-top: 22px;
    gap: 12px;
    flex-direction: column;
  }
}
.cars-list__item {
  border-radius: 10px;
  background: linear-gradient(150deg, #7C7C7C 13.15%, #2E2E2E 70.61%);
  padding: 10px 10px 25px 10px;
  color: #fff;
  text-align: center;
  flex: 1;
  @media screen and (max-width: 1080px){
    padding: 10px 10px 15px 10px;
  }
}
.cars-list__name {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.4;
  margin-top: 20px;
  @media screen and (max-width: 1080px){
    font-size: 20px;
    margin-top: 10px;
  }
}
.cars-note {
  margin-top: 30px;
  text-align: center;
  font-size: 20px;
  font-weight: bold;
  @media screen and (max-width: 1080px){
    margin-top: 12px;
    font-size: 16px;
  }
}
.interview {
  padding: 120px 0;
  overflow: hidden;
  position: relative;
  z-index: 1;
  @media screen and (max-width: 1080px){
    padding: 50px 20px;
  }
  &:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: 108px;
    right: calc(50% - 954px);
    width: 654px;
    aspect-ratio: 1 / 1;
    background: url(../img/deco_interview_01.png) no-repeat center / contain;
    @media screen and (max-width: 1080px){
      display: none;
    }
  }
  &:after {
    content: "";
    position: absolute;
    z-index: -1;
    top: 486px;
    left: calc(50% - 859px);
    width: 692px;
    aspect-ratio: 1384 / 1086;
    background: url(../img/deco_interview_02.png) no-repeat center / contain;
    @media screen and (max-width: 1080px){
      display: none;
    }
  }
}
.interview__inner {
  max-width: 1160px;
  margin: 0 auto;
}
.interview-list {
  display: flex;
  gap: 30px;
  margin-top: 35px;
  @media screen and (max-width: 1080px){
    flex-direction: column;
  }
}
.interview-list__item {
  flex: 1;
}
.interview-list__thumb {
  position: relative;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
  &:after {
    content: "";
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.00) 52.48%, rgba(0, 0, 0, 0.60) 100%);
    z-index: 1;
  }
  @media screen and (max-width: 1080px){
    img {
      aspect-ratio: 1 / 1;
      object-fit: cover;
      object-position: center top;
    }
  }
}
.interview-list__catch {
  position: absolute;
  padding: 0 20px;
  width: 100%;
  bottom: 20px;
  left: 0px;
  font-size: 20px;
  font-weight: bold;
  color: #fff;
  line-height: 1.5;
  z-index: 2;
  @media screen and (max-width: 1080px){
    font-size: 18px;
  }
}
.interview-list__name {
  margin-top: 18px;
  font-size: 20px;
  font-weight: bold;
  @media screen and (max-width: 1080px){
    margin-top: 12px;
  }
  span {
    font-size: 24px;
    margin-right: 0.5em;
  }
}
.interview-list__history {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.16em;
  color: #909090;
  margin-top: 8px;
}
.interview-list__btn {
  margin-top: 15px;
  &:before {
    content: "";
    width: 18px;
    height: 18px;
    background: url(../img/icon_tri_right.svg) no-repeat center / contain;
    display: inline-block;
    margin-right: 8px;
    vertical-align: -4px;
  }
  a {
    color: inherit;
    font-size: 13px;
    font-weight: bold;
  }
}
.award {
  padding: 120px 0;
  background: url(../img/bg_award.jpg) no-repeat center top / cover;
  @media screen and (max-width: 1080px){
    padding: 50px 20px;
  }
}
.award__inner {
  max-width: 1160px;
  margin: 0 auto;
}
.award-list {
  margin-top: 30px;
  display: flex;
  gap: 30px;
  @media screen and (max-width: 1080px){
    margin-top: 20px;
    flex-direction: column;
    gap: 12px;
  }
}
.award-list__item {
  flex: 1;
  border-radius: 10px;
  background: #fff;
  padding: 30px;
  box-shadow: 20px 20px 25px 0 rgba(33, 42, 89, 0.05);
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  @media screen and (max-width: 1080px){
    padding: 20px;
    position: relative;
  }
}
.award-list__left {
  width: 320px;
  @media screen and (max-width: 1080px){
    width: 100%;
  }
}
.award-list__right {
  width: 155px;
  @media screen and (max-width: 1080px){
    position: absolute;
    width: 110px;
    bottom: 20px;
    right: 20px;
  }
}
.award-list__title{
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-size: 28px;
  font-weight: 900;
  line-height: 1.4;
  @media screen and (max-width: 1080px){
    font-size: 22px;
  }
  &:before {
    content: "";
    width: 48px;
    height: 48px;
    background: url(../img/icon_award.svg) no-repeat center / contain;
    display: inline-block;
    margin-right: 12px;
    @media screen and (max-width: 1080px){
      width: 36px;
      height: 36px;
    }
  }
}
.award-list__tag {
  margin-top: 30px;
  display: inline-block;
  color: #fff;
  padding: 5px 10px 7px 10px;
  line-height: 1;
  font-size: 16px;
  font-weight: 500;
  border-radius: 10px;
  background: var(--linear-brown);
  @media screen and (max-width: 1080px){
    margin-top: 18px;
    font-size: 14px;
  }
}
.award-list__text {
  margin-top: 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.02em;
  @media screen and (max-width: 1080px){
    font-size: 13px;
    width: calc(100% - 122px);
  }
}
.person {
  padding: 120px 0;
  @media screen and (max-width: 1080px){
    padding: 55px 20px;
  }
}
.person__inner {
  max-width: 1160px;
  margin: 0 auto;
}
.person-list {
  display: flex;
  margin-top: 50px;
  @media screen and (max-width: 1080px){
    flex-direction: column;
    margin-top: 10px;
  }
}
.person-list__item {
  flex: 1;
  text-align: center;
  border-right: 1px dashed #B1B1B1;
  @media screen and (max-width: 1080px){
    border-right-style: none;
    border-bottom: 1px dashed #B1B1B1;
    position: relative;
    text-align: left;
    padding: 20px 0 20px 62px;
  }
}
.person-list__item:last-child {
  border-right: none;
}
.person-list__icon {
  @media screen and (max-width: 1080px){
    position: absolute;
    top: 20px;
    left: 0px;
    width: 48px;
  }
}
.person-list__title {
  margin-top: 30px;
  font-size: 20px;
  font-weight: 900;
  line-height: 1.4;
  @media screen and (max-width: 1080px){
    font-size: 20px;
    margin: 0;
  }
}
.person-list__text {
  margin-top: 15px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
.flow {
  padding: 120px 0;
  background-color: #F9F9FC;
  @media screen and (max-width: 1080px){
    padding: 50px 20px;
  }
}
.flow__inner {
  max-width: 1160px;
  margin: 0 auto;
}
.flow-list {
  margin-top: 45px;
  display: flex;
  gap: 28px;
  @media screen and (max-width: 1080px){
    margin-top: 25px;
    flex-direction: column;
    gap: 10px;
  }
}
.flow-list__item {
  flex: 1;
  border-radius: 10px;
  background: #F0F0F5;
  padding: 35px 30px 30px;
  text-align: center;
  @media screen and (max-width: 1080px){
    position: relative;
    padding: 24px 18px 20px 104px;
  }
}
.flow-list__icon {
  @media screen and (max-width: 1080px){
    position: absolute;
    top: 20px;
    left: 20px;
    width: 68px;
  }
}
.flow-list__title {
  margin-top: 25px;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.02em;
  @media screen and (max-width: 1080px){
    margin: 0;
    font-size: 24px;
    text-align: left;
  }
}
.flow-list__subtitle {
  font-size: 16px;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0.02em;
  margin-top: 20px;
  @media screen and (max-width: 1080px){
    text-align: left;
    margin-top: 11px;
  }
}
.flow-list__text {
  margin-top: 10px;
  text-align: left;
  line-height: 1.6;
  font-size: 13px;
  font-weight: 500;
  @media screen and (max-width: 1080px){
    margin-top: 8px;
    text-align: left;
  }
}
.selection {
  margin-top: 60px;
  @media screen and (max-width: 1080px){
    margin-top: 35px;
  }
}
.selection__title {
  font-size: 35px;
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
  @media screen and (max-width: 1080px){
    font-size: 22px;
  }
}
.selection-list {
  margin-top: 27px;
  display: flex;
  gap: 28px;
  @media screen and (max-width: 1080px){
    flex-direction: column;
    gap: 10px;
    margin-top: 18px;
  }
}
.selection-list__item {
  flex: 1;
  border-radius: 10px;
  border: 5px solid #F0F0F5;
  background: #fff;
  padding: 35px 30px;
  text-align: center;
  @media screen and (max-width: 1080px){
    padding: 30px;
  }
}
.selection-list__title {
  text-align: center;
  color: var(--color-blue);
  line-height: 1.4;
  font-size: 25px;
  font-weight: bold;
  border-bottom: 1px dashed #9C9C9C;
  padding-bottom: 20px;
  position: relative;
  @media screen and (max-width: 1080px){
    font-size: 18px;
    padding-bottom: 18px;
  }
  &:before {
    content: "";
    position: absolute;
    bottom: -5px;
    left: 0px;
    width: 8px;
    height: 9px;
    background: #9C9C9C;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
  }
  &:after {    content: "";
    position: absolute;
    bottom: -5px;
    right: 0px;
    width: 8px;
    height: 9px;
    background: #9C9C9C;
    clip-path: polygon(0 50%, 100% 0%, 100% 100%);
  }
}
.selection-list__text {
  margin-top: 20px;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.02em;
  text-align: left;
  @media screen and (max-width: 1080px){
    margin-top: 15px;
    font-size: 14px;
  }
}
.faq {
  padding: 120px 0 140px;
  position: relative;
  overflow: hidden;
  z-index: 1;
  @media screen and (max-width: 1080px){
    padding: 50px 20px;
  }
  &:before {
    content: "";
    position: absolute;
    z-index: -1;
    top: -60px;
    right: calc(50% - 1050px);
    width: 661px;
    aspect-ratio: 1 / 1;
    background: url(../img/deco_faq_01.png) no-repeat center / contain;
    @media screen and (max-width: 1080px){
      width: 220px;
      top: 34px;
      right: -123px;
    }
  }
  &:after {
    content: "";
    position: absolute;
    z-index: -1;
    bottom: 0px;
    left: calc(50% - 859px);
    width: 692px;
    aspect-ratio: 1384 / 1086;
    background: url(../img/deco_faq_02.png) no-repeat center / contain;
    @media screen and (max-width: 1080px){
      left: -85px;
      width: 390px;
    }
  }
}
.faq__inner {
  max-width: 1160px;
  margin: 0 auto;
}
.faq-list {
  margin-top: 50px;
  @media screen and (max-width: 1080px){
    margin-top: 20px;
  }
}
.faq-list__item {
  border-radius: 15px;
  background: #F9F9FC;
  padding: 20px 30px;
  position: relative;
  cursor: pointer;
  @media screen and (max-width: 1080px){
    padding: 15px;
  }
  + .faq-list__item {
    margin-top: 15px;
    @media screen and (max-width: 1080px){
      margin-top: 10px;
    }
  }
  &:after {
    content: "＋";
    position: absolute;
    top: 26px;
    right: 30px;
    font-size: 20px;
    font-weight: bold;
    color: var(--color-blue);
    line-height: 1;
    @media screen and (max-width: 1080px){
      top: 17px;
      right: 20px;
    }
  }
  &.is-open {
    &:after {
      content: "－";
    }
  }
}
.faq-list__title {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  padding: 0 16px 0 30px;
  position: relative;
  @media screen and (max-width: 1080px){
    font-size: 16px;
  }
  &:before {
    content: "Q";
    color: var(--color-blue);
    font-size: 24px;
    font-weight: 600;
    font-family: var(--font-geist);
    position: absolute;
    top: -2px;
    left: 0px;
    @media screen and (max-width: 1080px){
      top: -5px;
    }
  }
}
.faq-list__content {
  font-size: 16px;
  font-weight: 500;
  line-height: 1.6;
  padding: 1em 16px 0 30px;
  position: relative;
  display: none;
  @media screen and (max-width: 1080px){
    font-size: 14px;
  }
  &:before {
    content: "A";
    color: var(--color-blue);
    font-size: 24px;
    font-weight: 600;
    font-family: var(--font-geist);
    position: absolute;
    top: 10px;
    left: 0px;
  }
}
.faq-bottom {
  margin-top: 50px;
  text-align: center;
  @media screen and (max-width: 1080px){
    margin-top: 35px;
  }
}
.faq-bottom__title {
  font-size: 25px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0.04em; 
  @media screen and (max-width: 1080px){
    font-size: 20px;
  }
}
.faq-bottom__text {
  margin-top: 18px;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 1.8;
  @media screen and (max-width: 1080px){
    font-size: 14px;
  }
}
.taxi {
  padding: 120px 0;
  background: url(../img/bg_taxi.jpg) no-repeat center top / cover;
  text-align: center;
  color: #fff;
  @media screen and (max-width: 1080px){
    padding: 50px 18px;
  }
}
.taxi__title {
  font-size: 58px;
  line-height: 1.25;
  font-weight: 900;
  @media screen and (max-width: 1080px){
    font-size: 32px;
  }
}
.taxi__text {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-top: 25px;
  @media screen and (max-width: 1080px){
    font-size: 14px;
    margin-top: 18px;
    text-align: left;
    font-weight: 500;
    line-height: 1.8;
  }
}
.taxi__btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 40px;
  a {
    display: flex;
    border-radius: 50vh;
    background: var(--linear-brown);
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    width: 552px;
    height: 82px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    border: 2px solid #fff;
    padding-left: 20px;
    @media screen and (max-width: 1080px){
      height: 61px;
      width: 100%;
      font-size: 18px;
    }
    &:after {
      content: "";
      width: 28px;
      height: 32px;
      background: url(../img/icon_arrow_brown.svg) no-repeat center / contain;
      margin-left: 60px;
      @media screen and (max-width: 1080px){
        width: 20px;
        height: 22px;
        margin-left: 10px;
      }
    }
  }
}
.cv {
  padding: 110px 0 80px;
  background-color: #F9F9FC;
  text-align: center;
  @media screen and (max-width: 1080px){
    padding: 50px 0;
  }
}
.cv-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  @media screen and (max-width: 1080px){
    padding: 0 18px;
    gap: 12px;
    flex-direction: column;
  }
}
.cv-buttons__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 434px;
  height: 82px;
  border-radius: 50vh;
  background-color: var(--color-blue);
  color: #fff;
  font-size: 24px;
  font-weight: bold;
  text-decoration: none;
  padding-right: 20px;
  position: relative;
  @media screen and (max-width: 1080px){
    height: 61px;
    width: 100%;
    font-size: 18px;
  }
  &:after {
    content: "";
    width: 28px;
    height: 32px;
    background: url(../img/icon_arrow_blue.svg) no-repeat center / contain;
    position: absolute;
    top: 50%;
    right: 35px;
    transform: translateY(-50%);
    @media screen and (max-width: 1080px){
      width: 20px;
      height: 22px;
      right: 20px;
    }
  }
}
.cv-buttons__btn--green {
  background-color: #107896;
  &:after {
    background: url(../img/icon_arrow_green.svg) no-repeat center / contain;
  }
}
.cv-tel {
  margin-top: 35px;
  @media screen and (max-width: 1080px){
    margin-top: 20px;
  }
}
.cv-tel__title {
  text-align: center;
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.04em;
  @media screen and (max-width: 1080px){
    margin-top: 15px;
  }
}
.cv-tel__tel {
  font-size: 22px;
  font-weight: bold;
  @media screen and (max-width: 1080px){
    font-size: 18px;
    text-align: center;
    margin-top: 15px;
  }
  a {
    font-size: 38px;
    font-family: var(--font-geist);
    margin-left: 0.2em;
    @media screen and (max-width: 1080px){
      display: block;
      text-align: center;
      line-height: 1;
      margin-top: 6px;
    }
  }
}
.cv-tel__time {
  margin-top: 5px;
  line-height: 1.6;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #797979;
  @media screen and (max-width: 1080px){
    margin-top: 8px;
  }
}
.cv-email {
  font-size: 18px;
  font-weight: bold;
  font-family: var(--font-geist);
  margin-top: 10px;
  @media screen and (max-width: 1080px){
    font-size: 16px;
  }
  a {
    color: inherit;
  }
}
.cv__notice {
  margin-top: 15px;
  font-size: 12px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.04em;
  @media screen and (max-width: 1080px){
    font-size: 12px;
    margin-top: 6px;
  }
}

.float-cv {
  @media screen and (min-width: 1081px) {
    display: none !important;
  }
  position: fixed;
  bottom: 0px;
  left: 0px;
  z-index: 100;
  width: 100%;
  padding: 10px 0;
  background-color: rgba(255, 255, 255, 0.8);
  display: flex;
  justify-content: center;
  a {
    border-radius: 50vh;
    background: var(--linear-brown);
    display: flex;
    color: #fff;
    font-size: 14px;
    font-weight: bold;
    width: 240px;
    height: 36px;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    position: relative;
    &:after {
      content: "";
      width: 18px;
      height: 20px;
      background: url(../img/icon_arrow_brown.svg) no-repeat center / contain;
      position: absolute;
      right: 15px;
      top: 50%;
      transform: translateY(-50%);
    }
  }
}

.l-footer {
  padding: 70px 0;
  background-color: #2A2A2A;
  color: #fff;
  @media screen and (max-width: 1080px){
    padding: 50px 20px 20px;
  }
}
.l-footer__inner {
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  @media screen and (max-width: 1080px){
    flex-direction: column;
  }
}
.l-footer__left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  @media screen and (max-width: 1080px){
    display: contents;
  }
}
.l-footer__logo {
  display: flex;
  gap: 18px;
  @media screen and (max-width: 1080px){
    order: 1;
    img {
      width: 74px;
    }
  }
  .__text {
    font-size: 30px;
    font-weight: 900;
    line-height: 1.25;
    @media screen and (max-width: 1080px){
      font-size: 20px;
    }
  }
}
.l-footer__address {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
  margin-top: 15px;
}
.l-footer__nav {
  display: flex;
  gap: 20px;
  li {
    a {
      color: #888888;
      font-size: 12px;
      font-weight: 500;
      letter-spacing: 0.04em;
      line-height: 1.6;
      text-decoration: none;
      &:hover {
        text-decoration: underline;
      }
    }
  }
}
.l-footer__copyright {
  margin-top: 9px;
  color: #888888;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  line-height: 1.6;
}
.l-footer__right {
  display: grid;
  gap: 30px 70px; 
  @media screen and (max-width: 1080px){
    display: contents;
  }
}
.l-footer__block1 {
  @media screen and (max-width: 1080px){
    order: 1;
  }
}
.l-footer__block2 {
  @media screen and (max-width: 1080px){
    order: 5;
    margin-top: 35px;
  }
}
.l-footer__block3 {
  grid-column: 1;
  grid-row: 1;
  @media screen and (max-width: 1080px){
    order: 2;
    margin-top: 35px;
  }
}
.l-footer__block4 {
  grid-column: 1;
  grid-row: 2;
  @media screen and (max-width: 1080px){
    order: 4;
    margin-top: 35px;
  }
}
.l-footer__block5 {
  grid-column: 2;
  grid-row: 1 / 3;
  @media screen and (max-width: 1080px){
    order: 3;
    margin-top: 35px;
  }
}
.l-footer__tag {
  font-size: 18px;
  font-weight: bold;
  line-height: 1.6;
  letter-spacing: 0.04em;
  margin-bottom: 12px;
}
.l-footer__text {
  font-size: 14px;
  line-height: 1.6;
  letter-spacing: 0.04em;
}
.l-footer__office {
  + .l-footer__office {
    margin-top: 13px;
  }
  dt {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.6;
    letter-spacing: 0.04em;
  }
  dd {
    color: #888888;
    font-size: 12px;
    line-height: 1.6;
    letter-spacing: 0.04em;
    margin-top: 3px;
  }
}