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

/* Remove default padding */
button,
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

body.fixed {
  overflow: hidden;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  height: auto;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

html {
  font-size: 62.5%;
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
  pointer-events: none;
}
@media (min-width: 900px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  transition: all 0.4s ease;
}
a * {
  transition: all 0.4s ease;
}
a:before, a:after {
  transition: all 0.4s ease;
}

a:hover {
  opacity: 0.6;
}

/* img */
/*
-----------------------------------
共通
-----------------------------------
*/
body {
  font-family: "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  line-height: 1.8;
  font-size: 18px;
  font-weight: 500;
  color: #4E3630;
}

.inner {
  max-width: 1040px;
  margin: 0 auto;
  padding: 0 20px;
}
@media (max-width: 900px) {
  .inner {
    padding: 0 5.2631578947vw;
  }
}

@media (max-width: 900px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media (max-width: 900px) {
  .sp {
    display: block;
  }
}

.flex {
  display: flex;
}

.flex.one {
  justify-content: center;
}

/*アニメーション*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.--delay200 {
  animation-delay: 0.2s;
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.js-fadeUp {
  opacity: 0;
}

.poyo {
  animation: poyopoyo 1.5s alternate ease-in-out infinite;
}

@keyframes poyopoyo {
  0%, 40%, 60%, 80% {
    transform: scale(1);
  }
  50%, 70% {
    transform: scale(0.95);
  }
}
.--plus {
  position: relative;
}
.--plus::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
  width: 17px;
  height: 17px;
  background: no-repeat center/contain url(../img/plus.png);
}
@media (max-width: 900px) {
  .--plus::after {
    width: 4.7368421053vw;
    height: 4.7368421053vw;
    top: auto;
    bottom: 0;
    left: 0;
    margin: auto;
    transform: none;
  }
}

.appeal {
  position: relative;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 1em;
  margin: auto;
  font-weight: bold;
}

.appeal::before,
.appeal::after {
  display: block;
  content: "";
  position: absolute;
  bottom: -0.2rem;
  width: 1px;
  height: 1.8em;
  background-color: #fff;
}

.appeal::before {
  left: 0;
  transform: rotate(-30deg);
}

.appeal::after {
  right: 0;
  transform: rotate(30deg);
}

.attention {
  color: #8c8c8c;
}

.flex__item {
  width: 100%;
}

.flex__img {
  aspect-ratio: 158/158;
  border-radius: 10px;
  margin-bottom: 10px;
}

.flex__name {
  font-size: 0.75rem;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 10px;
}

.flex__name span {
  font-size: 0.625rem;
}

.flex__item .attention {
  font-size: 0.625rem;
  text-align: center;
  margin-bottom: 10px;
}

.flex__detail {
  font-size: 0.625rem;
  line-height: 2;
}

.bigImg {
  aspect-ratio: 375/250;
}

span.green {
  color: #189cbe;
}

a.green {
  color: #189cbe;
  text-decoration: underline;
}

/*
-----------------------------------
LP本体
-----------------------------------
*/
main {
  display: flex;
  position: relative;
  z-index: 1;
}
main::before {
  display: block;
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: -1;
}

/*
-----------------------------------
コンテンツ
-----------------------------------
*/
.main__content {
  width: 100%;
  margin: auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.main__content--inner {
  max-width: 100rem;
  margin: 0 auto;
  padding: 2.5rem 0;
  position: relative;
  z-index: 100;
}
@media (max-width: 900px) {
  .main__content--inner {
    max-width: 100%;
  }
}
.main__content--frame {
  position: fixed;
  top: 0;
  left: 0;
  margin: auto;
  right: 0;
  width: 50%;
  height: 100%;
  z-index: 100;
  pointer-events: none;
}

@media (max-width: 900px) {
  .main__content {
    width: 100%;
    min-width: auto;
    margin: 0;
    overflow-x: hidden;
  }
  .main__content--frame {
    width: 100%;
  }
  .main__content--frame:before, .main__content--frame:after {
    display: none;
  }
}
.loop--text {
  display: flex;
}
.loop--text span {
  flex-shrink: 0;
  white-space: nowrap;
  font-size: 6.4rem;
  line-height: 1;
  padding-right: 0.4em;
}
.loop--text span:nth-child(odd) {
  animation: loop 24s -12s infinite linear;
}
.loop--text span:nth-child(even) {
  animation: loop2 24s infinite linear;
}

@keyframes loop {
  from {
    transform: translateX(100%);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-200%);
  }
}
/*
-----------------------------------
mv
-----------------------------------
*/
.mv {
  overflow: hidden;
  position: relative;
}
.mv h1 {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  top: 3.125vw;
  z-index: 10;
}
.mv h1 img {
  width: 39.8567708333vw;
  height: auto;
}
.mv .mv-slider * {
  font-size: 0;
}
.mv > .ribbon {
  background: #D94217;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 130px;
}
.mv .sections-inner {
  background: #FCE9D8;
  padding: 60px 0 80px;
}
.mv .sections-inner > * {
  margin: 0 auto;
}
.mv .sections-inner .catch {
  background: url(../img/mv-catch.png) no-repeat center;
  background-size: contain;
  text-align: center;
  font-size: 28px;
  font-weight: bold;
  margin-bottom: 50px;
  width: 1048px;
  height: 380px;
  line-height: 2.2;
  padding-top: 30px;
}
.mv .sections-inner .catch .orange {
  line-height: 1;
  font-size: 40px;
}
.mv .sections-inner .catch .orange .large {
  padding-left: 10px;
  font-size: 60px;
}
.mv .sections-inner .box {
  max-width: 840px;
  padding: 40px;
  background: #fff;
  border-radius: 20px;
}
.mv .sections-inner .box h2 {
  font-size: 20px;
  text-align: center;
  margin-bottom: 30px;
}
.mv .sections-inner .box h2 .ribbon {
  margin: 10px auto 0;
  color: #fff;
  text-align: center;
  font-size: 26px;
  justify-content: center;
  align-items: center;
  height: 57px;
}
.mv .sections-inner .box h2 .ribbon.ribbon-1 {
  background: url(../img/ribbon-1.png) no-repeat;
  background-size: contain;
  width: 570px;
}
.mv .sections-inner .box h2 .ribbon.ribbon-2 {
  background: url(../img/ribbon-2.png) no-repeat;
  background-size: contain;
  width: 370px;
}
.mv .sections-inner .box .flex {
  justify-content: flex-start;
  gap: 45px;
}
.mv .sections-inner .box .flex .txt p {
  text-align: center;
  font-weight: bold;
  font-size: 26px;
}
.mv .sections-inner .box + .box {
  margin-top: 40px;
}
.mv .sections-inner .js-open-button {
  margin-top: 40px;
  background: #EBD7C5;
  width: 460px;
  height: 80px;
  color: #4E3630;
  font-size: 20px;
  justify-content: flex-start;
  padding-left: 140px;
}
.mv .sections-inner .js-open-button:before {
  background: #4E3630 url(../img/exclamation.svg) no-repeat center;
  right: unset;
  left: 100px;
  width: 30px;
  height: 30px;
}
.mv .sections-inner .js-open-button:hover {
  background: #4E3630;
  color: #EBD7C5;
}
.mv .sections-inner .js-open-button:hover:before {
  background: #EBD7C5 url(../img/exclamation_hover.svg) no-repeat;
  background-position: center;
}
.mv .sections-inner .js-open-button:hover span {
  color: #EBD7C5;
}
@media (max-width: 900px) {
  .mv h1 {
    width: 100%;
    top: 17.8947368421vw;
  }
  .mv h1 img {
    width: 102.45vw;
    height: 88.6631578947vw;
  }
  .mv .mv-slider {
    display: none;
  }
  .mv > .ribbon {
    height: 51.5789473684vw;
  }
  .mv .sections-inner {
    background: #FCE9D8;
    padding: 60px 0;
  }
  .mv .sections-inner > * {
    margin: 0 auto;
  }
  .mv .sections-inner .catch {
    background: url(../img/mv-catch@sp.png) no-repeat center 45px;
    background-size: contain;
    font-size: 18px;
    margin-bottom: 60px;
    width: 100%;
    height: auto;
    padding-top: 0;
  }
  .mv .sections-inner .catch .orange {
    font-size: 30px;
  }
  .mv .sections-inner .catch .orange .large {
    padding-left: 5px;
    font-size: 50px;
  }
  .mv .sections-inner .box {
    max-width: calc(100% - 10.5263157895vw);
    padding: 7.8947368421vw 5.2631578947vw 10.5263157895vw;
  }
  .mv .sections-inner .box picture {
    display: block;
  }
  .mv .sections-inner .box h2 {
    font-size: 4.2105263158vw;
    margin-bottom: 0;
  }
  .mv .sections-inner .box h2 + picture {
    margin-top: 2.6315789474vw;
  }
  .mv .sections-inner .box h2 .ribbon {
    font-size: 3.6842105263vw;
    height: 13.1578947368vw;
  }
  .mv .sections-inner .box h2 .ribbon.ribbon-1 {
    background: url(../img/ribbon-1@sp.png) no-repeat;
    background-size: contain;
    width: 100%;
    margin-top: 1.3157894737vw;
  }
  .mv .sections-inner .box h2 .ribbon.ribbon-2 {
    background: url(../img/ribbon-1@sp.png) no-repeat;
    background-size: contain;
    width: 100%;
  }
  .mv .sections-inner .box .flex .txt p {
    font-size: 5.2631578947vw;
  }
  .mv .sections-inner .box + .box {
    margin-top: 7.8947368421vw;
  }
  .mv .sections-inner .box + .box .flex {
    display: block;
  }
  .mv .sections-inner .box + .box .flex * {
    width: 100%;
  }
  .mv .sections-inner .box + .box h2 .ribbon {
    font-size: 4.2105263158vw;
    display: flex;
  }
  .mv .sections-inner .box + .box h2 + picture {
    margin-top: 5.2631578947vw;
    margin-bottom: 5.2631578947vw;
  }
  .mv .sections-inner .js-open-button {
    margin-top: 10.5263157895vw;
    width: 100%;
    height: 15.7894736842vw;
    font-size: 4.2105263158vw;
    padding-left: 21.5789473684vw;
    max-width: 78.9473684211vw;
    border-radius: 7.8947368421vw;
  }
  .mv .sections-inner .js-open-button:before {
    left: 11.0526315789vw;
    width: 7.8947368421vw;
    height: 7.8947368421vw;
  }
}

/*
-----------------------------------
special
-----------------------------------
*/
.special {
  color: #fff;
  position: relative;
  padding: 130px 0;
  background: repeat center/1000px 1000px url(../images/blue_bg.png);
}
@media (max-width: 900px) {
  .special {
    padding: 15.7894736842vw 0 21.0526315789vw;
  }
}
.special .special__catch {
  max-width: 44rem;
  margin: 0 auto 7rem;
}
@media (max-width: 900px) {
  .special .special__catch {
    max-width: 69.4736842105vw;
    margin: 0 auto 10.5263157895vw;
  }
}
.special .special__lead {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 10rem;
}
@media (max-width: 900px) {
  .special .special__lead {
    font-size: 4.2105263158vw;
    margin-bottom: 13.1578947368vw;
  }
}
.special .special__title {
  max-width: 76rem;
  margin: 0 auto 2rem;
  position: relative;
}
@media (max-width: 900px) {
  .special .special__title {
    max-width: 100%;
    margin: 0 auto 7.8947368421vw;
  }
}
.special .special__title .illust {
  position: absolute;
}
.special .special__title .illust.--left {
  width: 11.6rem;
  top: 0;
  left: -5rem;
}
.special .special__title .illust.--right {
  width: 17rem;
  bottom: 0;
  right: -6rem;
}
.special .special__box--top {
  font-size: 2.4rem;
  text-align: center;
  margin-bottom: 6rem;
}
@media (max-width: 900px) {
  .special .special__box--top {
    font-size: 4.2105263158vw;
    margin-bottom: 14.4736842105vw;
  }
}
.special .special__box--wrapper {
  display: flex;
  background-color: #fff;
  border-radius: 4rem;
  padding: 3rem 4rem;
  margin-bottom: 4rem;
}
@media (max-width: 900px) {
  .special .special__box--wrapper {
    flex-direction: column;
    background-color: transparent;
    padding: 0;
    margin-bottom: 0;
  }
}
.special .special__box {
  background-color: #fff;
}
@media (max-width: 900px) {
  .special .special__box {
    border-radius: 5.2631578947vw;
    padding: 10.5263157895vw 2.6315789474vw 7.8947368421vw !important;
    margin-bottom: 7.8947368421vw;
  }
}
.special .special__box.--01 {
  width: 100%;
  padding-right: 4rem;
  position: relative;
}
@media (max-width: 900px) {
  .special .special__box.--01 {
    padding-right: 0;
    margin-bottom: 14.4736842105vw;
  }
}
.special .special__box.--01::after {
  display: block;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 2px;
  height: 100%;
  background-image: linear-gradient(to bottom, #d2d2d2 5px, #fff 0 9px);
  background-size: 100% 9px;
}
@media (max-width: 900px) {
  .special .special__box.--01::after {
    display: none;
  }
}
.special .special__box.--02 {
  width: 100%;
  padding-left: 4rem;
}
@media (max-width: 900px) {
  .special .special__box.--02 {
    padding-inline: 5.2631578947vw;
  }
}
.special .special__box.--02 .special__box--image {
  margin-bottom: 2rem;
}
@media (max-width: 900px) {
  .special .special__box.--02 .special__box--image {
    margin-bottom: 5.2631578947vw;
  }
}
.special .special__box--item.--01 {
  margin: 0 auto 38px;
  position: relative;
  z-index: 1;
}
@media (max-width: 900px) {
  .special .special__box--item.--01 {
    margin: 0 auto 7.8947368421vw;
  }
}
.special .special__box--item.--02 {
  margin: 0 auto 30px;
}
@media (max-width: 900px) {
  .special .special__box--item.--02 {
    margin: 0 auto 5.2631578947vw;
  }
}
.special .special__box--title {
  font-size: 2.6rem;
  font-weight: 700;
  text-align: center;
  line-height: 1;
  min-height: 8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: -58px;
  margin-bottom: 4rem;
  background: no-repeat center/contain url(../images/special-title_bg.png);
}
@media (max-width: 900px) {
  .special .special__box--title {
    font-size: 4.2105263158vw;
    min-height: 13.1578947368vw;
    margin-top: -17vw;
    margin-bottom: 6vw;
    background: no-repeat center/contain url(../images/special-title_bg_sp.png);
  }
}
.special .special__box--text {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin: 0 auto;
  color: #303433;
}
@media (max-width: 900px) {
  .special .special__box--text {
    font-size: 4.2105263158vw;
  }
}
.special .special__box--text span {
  color: #005083;
}
.special .modal_text li {
  list-style: none;
  padding-left: 1em;
  text-indent: -1em;
}

/*
-----------------------------------
契約
-----------------------------------
*/
.contruct {
  padding: 0 0 6rem;
  background: #FCE9D8;
  overflow: hidden;
}
@media (max-width: 900px) {
  .contruct {
    padding-bottom: 0;
  }
}
.contruct .contruct-slider * {
  font-size: 0;
}
.contruct__title {
  position: relative;
  margin: 0 auto 4rem;
  display: flex;
  justify-content: center;
  padding-top: 111px;
}
.contruct__title .fukidashi {
  font-size: 24px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  width: 460px;
  height: 98px;
  background: url(../img/fukidashi.svg) no-repeat center;
  background-size: contain;
  top: -20px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 17px;
}
.contruct__title .main {
  font-size: 70px;
  line-height: 1;
}
.contruct__title + p {
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 75px;
  background: url(../img/contruct_h2.png) no-repeat;
  background-size: 889px;
  background-position: center bottom;
  height: 159px;
}
@media (max-width: 900px) {
  .contruct__title {
    margin: 0 auto 7.8947368421vw;
    padding-top: 19.7368421053vw;
    text-align: center;
    background: url(../img/contruct_h2@sp.png) no-repeat;
    background-size: 89.4736842105vw 21.0526315789vw;
    background-position: center 14.4736842105vw;
  }
  .contruct__title .fukidashi {
    top: -5.2631578947vw;
    font-size: 4.2105263158vw;
    width: 71.0526315789vw;
    height: 17.1710526316vw;
    padding-top: 3.6842105263vw;
  }
  .contruct__title .main {
    font-size: 13.1578947368vw;
    line-height: 1.4;
  }
  .contruct__title + p {
    font-size: 4.2105263158vw;
    margin-bottom: 21.0526315789vw;
    background: unset;
    height: auto;
  }
}
.contruct__catch {
  font-size: 4rem;
  line-height: 1.8;
  font-weight: bold;
  margin-bottom: 3rem;
  text-align: center;
}
.contruct__lead {
  font-size: 2.4rem;
  margin-bottom: 5rem;
  text-align: center;
}
@media (max-width: 900px) {
  .contruct__lead {
    font-size: 4.2105263158vw;
    margin-bottom: 10.5263157895vw;
  }
}
.contruct .main_text {
  transform: translateY(-9px);
}
.contruct .main_text h3 {
  text-align: center;
}
.contruct .main_text h3 * {
  text-align: center;
}
.contruct .main_text h3 .main {
  font-size: 32px;
  line-height: 1;
  margin-top: 20px;
  display: block;
  color: #4E3630;
}
.contruct .main_text h3 + p {
  text-align: center;
  line-height: 1;
  font-size: 13px;
  margin: 20px auto;
  color: #4E3630;
}
.contruct .main_text.orange .contruct__topic {
  color: #D94217;
}
.contruct .main_text.orange .contruct__topic .en {
  background: #D94217;
}
.contruct .main_text.red .contruct__topic {
  color: #C24438;
}
.contruct .main_text.red .contruct__topic .en {
  background: #C24438;
}
.contruct .main_text.red ~ .contruct__items .contruct__item:after {
  background: no-repeat center/contain url(../img/plus-red.png);
}
.contruct .main_text.brown .contruct__topic {
  color: #C48600;
}
.contruct .main_text.brown .contruct__topic .en {
  background: #C48600;
}
.contruct .main_text.brown ~ .contruct__items .contruct__item:after {
  background: no-repeat center/contain url(../img/plus-brown.png);
}
.contruct .main_text.brown ~ .contruct__items .contruct__item.--gx .contruct__item--desc {
  flex-wrap: wrap;
  width: 100%;
  height: 70px;
  text-align: center;
  font-size: 22px;
}
@media (max-width: 900px) {
  .contruct .main_text {
    transform: translateY(-2.3684210526vw);
  }
  .contruct .main_text h3 .main {
    font-size: 7.3684210526vw;
    margin-top: 20px;
  }
  .contruct .main_text h3 + p {
    line-height: 1.8;
    font-size: 3.1578947368vw;
    margin: 3.9473684211vw auto;
  }
  .contruct .main_text.brown ~ .contruct__items .contruct__item.--gx .contruct__item--desc {
    flex-wrap: wrap;
    width: 100%;
    height: 70px;
    text-align: center;
    font-size: 22px;
  }
}
.contruct__topic {
  font-size: 3rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 4.4rem;
  gap: 9px;
}
@media (max-width: 900px) {
  .contruct__topic {
    font-size: 6.3157894737vw;
    min-height: unset;
  }
}
.contruct__topic .en {
  font-size: 3rem;
  color: #fff;
  font-weight: bold;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  line-height: 1;
  width: 44px;
  height: 44px;
  letter-spacing: 0;
}
@media (max-width: 900px) {
  .contruct__topic .en {
    font-size: 6.3157894737vw;
    width: 8.9473684211vw;
    height: 8.9473684211vw;
  }
}
.contruct .contruct__items-wrapper {
  padding: 0 4rem 4rem;
  border-radius: 2rem;
  background-color: #fff;
  margin-bottom: 9rem;
  position: relative;
}
.contruct .contruct__items-wrapper:before {
  position: absolute;
  content: "";
  left: 50%;
  transform: translateX(-50%);
  top: -50px;
  background: url(../img/contruct__items-wrapper_bg.png) no-repeat center top;
  background-size: contain;
  width: 216px;
  height: 50px;
}
@media (max-width: 900px) {
  .contruct .contruct__items-wrapper {
    border-radius: 20px;
    padding: 0vw 5.2631578947vw 7.8947368421vw;
    margin-bottom: 23.6842105263vw;
  }
  .contruct .contruct__items-wrapper:before {
    top: -12.8947368421vw;
    background: url(../img/contruct__items-wrapper_bg@sp.png) no-repeat center top;
    background-size: contain;
    width: 56.8421052632vw;
    height: 13.1578947368vw;
  }
}
.contruct .contruct__items {
  display: flex;
  justify-content: center;
  gap: 4rem;
  margin-bottom: 4rem;
}
@media (max-width: 900px) {
  .contruct .contruct__items {
    flex-direction: column;
    gap: 10.5263157895vw;
    margin-bottom: 7.8947368421vw;
  }
}
.contruct .contruct__item {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  max-width: 28rem;
}
@media (max-width: 900px) {
  .contruct .contruct__item {
    max-width: 100%;
  }
}
.contruct .contruct__item.--plus::after {
  top: 64%;
  right: -27px;
}
@media (max-width: 900px) {
  .contruct .contruct__item.--plus::after {
    top: auto;
    right: 0;
    bottom: -8vw;
  }
}
.contruct .contruct__item--image {
  margin-top: auto;
}
.contruct .contruct__item--image img {
  border-radius: 10px;
  aspect-ratio: 340/225;
  height: auto;
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 900px) {
  .contruct .contruct__item--image img {
    -o-object-fit: cover;
       object-fit: cover;
    border-radius: 2.6315789474vw;
  }
}
.contruct .contruct__item--image.--border {
  border: 1px solid #e5e5e5;
  border-radius: 10px;
}
.contruct .contruct__item--desc {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 900px) {
  .contruct .contruct__item--desc {
    font-size: 6.3157894737vw;
  }
  .contruct .contruct__item--desc *:not(.free) + .small {
    margin-left: 1.3157894737vw;
  }
  .contruct .contruct__item--desc + .contruct__item--image {
    margin-top: 2.6315789474vw;
  }
}
.contruct .contruct__item--desc span.free {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  line-height: 1;
  width: 5rem;
  height: 4rem;
  font-size: 1.6rem;
  line-height: 1;
  font-weight: bold;
  display: flex;
  margin-right: 10px;
  background-color: #189CBE;
  color: #fff;
  border-radius: 5px;
}
@media (max-width: 900px) {
  .contruct .contruct__item--desc span.free {
    margin-right: 2.6315789474vw;
    width: 13.1578947368vw;
    height: 10.5263157895vw;
    font-size: 4.2105263158vw;
  }
}
.contruct .contruct__item--desc span.small {
  font-size: 1.2rem;
  margin-right: 0.3rem;
  padding-top: 8px;
}
@media (max-width: 900px) {
  .contruct .contruct__item--desc span.small {
    font-size: 3.1578947368vw;
    margin-right: 1.3157894737vw;
    padding-top: 0;
  }
}
.contruct .contruct__item--sub {
  line-height: 1;
  text-align: center;
  font-size: 1.3rem;
  margin: 10px 0 15px;
}
@media (max-width: 900px) {
  .contruct .contruct__item--sub {
    font-size: 3.4210526316vw;
    text-align: center;
  }
}
.contruct .contruct__item .contruct__box {
  background-color: #fff;
}
.contruct .contruct__item .contruct__box--title {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 10px;
  letter-spacing: 0.1em;
}
.contruct .contruct__item .contruct__box--text {
  font-size: 1.4rem;
  line-height: 2;
  letter-spacing: 0.1em;
}
.contruct .contruct__item .contruct__box--sub {
  color: #8c8c8c;
  line-height: 2;
  text-align: left;
  margin: 10px 0 0;
  letter-spacing: 0.1em;
}
.contruct .btn {
  width: 460px;
  height: 80px;
  font-size: 20px;
}
.contruct .btn:before {
  width: 34px;
  height: 34px;
  background-size: 12px 24px !important;
}
@media (max-width: 900px) {
  .contruct .btn {
    width: 100%;
    height: 15.7894736842vw;
    font-size: 3.9473684211vw;
  }
  .contruct .btn:before {
    width: 8.9473684211vw;
    height: 8.9473684211vw;
    background-size: 3.1578947368vw 6.3157894737vw !important;
  }
}
.contruct .modal-contact-content {
  padding: 20px 35px 0px;
}
@media (max-width: 900px) {
  .contruct .modal-contact-content {
    padding: 7.8947368421vw 5.2631578947vw 10.5263157895vw;
  }
}
.contruct .item {
  padding-bottom: 40px;
}
.contruct .item .modal_catch {
  text-align: left;
  font-size: 24px;
}
.contruct .item + .item {
  padding-top: 40px;
  border-top: 1px solid #e0e0e0;
}
@media (max-width: 900px) {
  .contruct .item .modal_catch {
    font-size: 3.4210526316vw;
    margin-bottom: 2.6315789474vw;
  }
}
.contruct .item .modal__column {
  margin-bottom: 4rem;
}
.contruct .item .modal__column .contruct__item--image img {
  aspect-ratio: 340/225;
  -o-object-position: top;
     object-position: top;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (max-width: 900px) {
  .contruct .item .modal__column {
    flex-direction: column-reverse;
    margin-bottom: 5.2631578947vw;
  }
}
.contruct .item.--battery .contruct__box--text {
  flex: 1;
  max-width: 478px;
  width: 100%;
}
.contruct .item.--battery .contruct__item--image {
  width: 200px;
}
.contruct .item.--battery .contruct__item--image img {
  height: 225px;
  transform: translateY(-40px);
  -o-object-fit: contain;
     object-fit: contain;
}
@media (max-width: 900px) {
  .contruct .item.--battery .contruct__item--image {
    width: 100%;
  }
  .contruct .item.--battery .contruct__item--image img {
    height: auto;
    transform: translateY(0);
  }
}
.contruct .modal_title {
  font-size: 32px;
  margin-bottom: 10px;
  line-height: 1.8;
}
@media (max-width: 900px) {
  .contruct .modal_title {
    font-size: 4.7368421053vw;
    margin-bottom: 2.6315789474vw;
  }
}
.contruct .modal_title .small {
  font-size: 1.4rem;
  margin-left: 0.5em;
}
@media (max-width: 900px) {
  .contruct .modal_title .small {
    font-size: 10;
  }
}
.contruct .modal_sub {
  line-height: 1;
  font-size: 16px;
  margin-bottom: 30px;
  font-weight: bold;
}
.contruct .modal_sub.small {
  font-size: 14px;
  margin-bottom: 20px;
}
@media (max-width: 900px) {
  .contruct .modal_sub {
    font-size: 3.4210526316vw;
    font-size: 2.6315789474vw;
    margin-bottom: 5.2631578947vw;
  }
}
.contruct .modal_catch {
  font-weight: bold;
  margin-bottom: 30px;
}
.contruct .modal_catch + .contruct__box--text {
  margin-top: -10px;
}
@media (max-width: 900px) {
  .contruct .modal_catch {
    font-size: 3.4210526316vw;
    text-align: left;
  }
  .contruct .modal_catch + .contruct__box--text {
    font-size: 3.4210526316vw;
    margin-top: 0;
  }
}
.contruct .modal__column .contruct__box--text {
  width: 338px;
}
.contruct .modal__column .contruct__item--image {
  width: 340px;
}
.contruct .modal__column + .contruct__box--sub {
  margin-top: -20px;
}
@media (max-width: 900px) {
  .contruct .modal__column {
    flex-direction: column;
  }
  .contruct .modal__column .contruct__box--text {
    width: 100%;
  }
  .contruct .modal__column .contruct__box--text + .contruct__item--image {
    margin-bottom: 2.6315789474vw;
  }
  .contruct .modal__column .contruct__item--image {
    width: 100%;
  }
  .contruct .modal__column .contruct__item--image.sp_order-10 {
    order: 1;
  }
  .contruct .modal__column .contruct__item--image.sp_order-20 {
    order: 2;
  }
}
.contruct .contruct__box--text {
  font-size: 18px;
  margin-bottom: 20px;
}
.contruct .contruct__box--text sup {
  font-size: 10px;
}
@media (max-width: 900px) {
  .contruct .contruct__box--text {
    font-size: 3.4210526316vw;
  }
}
.contruct .contruct__box--sub {
  display: block;
  font-size: 1.4rem;
  line-height: 1.8;
}
@media (max-width: 900px) {
  .contruct .contruct__box--sub {
    font-size: 3.4210526316vw;
  }
}

/*
-----------------------------------
voice
-----------------------------------
*/
.voice {
  padding: 13rem 0 0;
  overflow: hidden;
}
@media (max-width: 900px) {
  .voice {
    padding: 21.0526315789vw 0 0;
  }
}
.voice .voice-title {
  margin: 0 auto 40px;
}
@media (max-width: 900px) {
  .voice .voice-title {
    width: 69.4736842105vw;
    margin: 0 auto 5.2631578947vw;
  }
}
.voice .voice__lead {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 900px) {
  .voice .voice__lead {
    font-size: 4.2105263158vw;
    margin-bottom: 10.5263157895vw;
  }
}
.voice .voice__items {
  display: flex;
  gap: 4rem;
}
@media (max-width: 900px) {
  .voice .voice__items {
    flex-direction: column;
    gap: 7.8947368421vw;
  }
}
.voice .voice__item {
  width: 100%;
  min-height: 68rem;
  display: flex;
  flex-direction: column;
}
@media (max-width: 900px) {
  .voice .voice__item {
    min-height: auto;
  }
}
.voice .voice__item--image {
  position: relative;
}
.voice .voice__item--image img {
  aspect-ratio: 480/340;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 2rem 2rem 0 0;
}
@media (max-width: 900px) {
  .voice .voice__item--image img {
    border-radius: 5.2631578947vw 5.2631578947vw 0 0;
  }
}
.voice .voice__item--text {
  flex: 1;
  padding: 3rem 3rem;
  background-color: #FBFBFB;
  border-radius: 0 0 2rem 2rem;
}
@media (max-width: 900px) {
  .voice .voice__item--text {
    padding: 5.2631578947vw 5.2631578947vw 7.8947368421vw;
    border-radius: 0 0 5.2631578947vw 5.2631578947vw;
  }
}
.voice .voice__item--catch {
  margin-bottom: 2rem;
}
@media (max-width: 900px) {
  .voice .voice__item--catch {
    margin-bottom: 2.6315789474vw;
  }
}
.voice .voice__item--catch .text {
  font-size: 2rem;
  line-height: 1.8;
  font-weight: bold;
  color: #D94217;
}
@media (max-width: 900px) {
  .voice .voice__item--catch .text {
    font-size: 4.7368421053vw;
  }
}
.voice .voice__item--desc {
  font-size: 1.8rem;
}
@media (max-width: 900px) {
  .voice .voice__item--desc {
    font-size: 3.9473684211vw;
  }
}

.blue-gradation {
  background: linear-gradient(to bottom, #ffffff 0%, #e5f3f8 100%);
}

/*
-----------------------------------
modelhouse
-----------------------------------
*/
.modelhouse {
  padding: 13rem 0 0;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
@media (max-width: 900px) {
  .modelhouse {
    padding: 21.0526315789vw 0 0;
  }
}
.modelhouse-top {
  margin: 0 auto 40px;
}
@media (max-width: 900px) {
  .modelhouse-top {
    width: 78.9473684211vw;
    margin: 0 auto 5.2631578947vw;
  }
}
.modelhouse .modelhouse__lead {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 900px) {
  .modelhouse .modelhouse__lead {
    font-size: 4.2105263158vw;
    margin-bottom: 10.5263157895vw;
  }
}
.modelhouse .modelhouse__lead .small {
  font-size: 1.8rem;
}
@media (max-width: 900px) {
  .modelhouse .modelhouse__lead .small {
    font-size: 4.2105263158vw;
  }
}
.modelhouse--title {
  font-size: 3.2rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 3rem;
}
@media (max-width: 900px) {
  .modelhouse--title {
    font-size: 6.3157894737vw;
    margin-bottom: 5.2631578947vw;
  }
}
.modelhouse .movie {
  position: relative;
  max-width: 77rem;
  margin: 0 auto 30px;
}
@media (max-width: 900px) {
  .modelhouse .movie {
    max-width: 89.4736842105vw;
    margin: 0 auto 10.5263157895vw;
  }
}
.modelhouse .movie iframe {
  aspect-ratio: 770/430;
  width: 100%;
  height: auto;
}

.modelhouse__list--wrapper {
  border-radius: 4rem;
  padding: 6.4rem 2rem 5rem;
  margin-bottom: 4rem;
  background: #FBFBFB;
}
@media (max-width: 900px) {
  .modelhouse__list--wrapper {
    border-radius: 5.2631578947vw;
    padding: 7.8947368421vw 2.6315789474vw;
    margin-bottom: 10.5263157895vw;
  }
}

.modelhouse__list {
  display: grid;
  justify-content: center;
  gap: 10px;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  max-width: 83rem;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .modelhouse__list {
    grid-template-columns: repeat(2, 1fr);
    gap: 2.6315789474vw;
    max-width: 100%;
  }
}
.modelhouse__list li a {
  display: block;
  background-color: #fff;
  border: 2px solid #bfbfbf;
  padding: 12px;
  border-radius: 1rem;
  font-size: 1.8rem;
  line-height: 1.6;
  font-weight: bold;
  text-align: center;
  min-height: 58px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 900px) {
  .modelhouse__list li a {
    border-radius: 2.6315789474vw;
    padding: 2.6315789474vw;
    font-size: 3.9473684211vw;
    min-height: 21.0526315789vw;
  }
}
.modelhouse__list li a:hover {
  opacity: 1;
  background-color: #D94217;
  color: #fff;
  border: none;
}

.modelhouse__new {
  display: flex;
  gap: 4rem;
}
@media (max-width: 900px) {
  .modelhouse__new {
    flex-direction: column;
    gap: 5.2631578947vw;
  }
}
.modelhouse__new .img {
  width: 48%;
  margin: 0 auto;
}
@media (max-width: 900px) {
  .modelhouse__new .img {
    width: 100%;
    margin: 0;
  }
}
.modelhouse__new .img img {
  border-radius: 1rem;
}
.modelhouse__new--text {
  flex: 1;
}
.modelhouse__new .title-sub {
  font-size: 2rem;
  line-height: 1;
  font-weight: 700;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 20px;
  position: relative;
}
@media (max-width: 900px) {
  .modelhouse__new .title-sub {
    font-size: 5.2631578947vw;
    margin: 0 auto 5.2631578947vw;
  }
}
.modelhouse__new .title-sub::before, .modelhouse__new .title-sub::after {
  display: block;
  content: "";
  position: absolute;
  top: -4px;
  width: 2px;
  height: 130%;
  background-color: #bfbfbf;
}
@media (max-width: 900px) {
  .modelhouse__new .title-sub::before, .modelhouse__new .title-sub::after {
    top: -0.5vw;
    width: 0.4vw;
  }
}
.modelhouse__new .title-sub::after {
  right: -11px;
  transform: rotate(30deg);
}
@media (max-width: 900px) {
  .modelhouse__new .title-sub::after {
    right: -3vw;
  }
}
.modelhouse__new .title-sub::before {
  left: -19px;
  transform: rotate(-30deg);
}
@media (max-width: 900px) {
  .modelhouse__new .title-sub::before {
    left: -5vw;
  }
}
.modelhouse__new .title {
  font-size: 3.2rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: bold;
  margin-bottom: 3rem;
  text-align: center;
}
@media (max-width: 900px) {
  .modelhouse__new .title {
    font-size: 6.3157894737vw;
    margin-bottom: 5.2631578947vw;
  }
}
.modelhouse__new .desc {
  font-size: 1.8rem;
  line-height: 1.8;
  margin: 0 auto 2rem;
}
@media (max-width: 900px) {
  .modelhouse__new .desc {
    font-size: 3.9473684211vw;
    margin: 0 auto 7.8947368421vw;
  }
}

/*
-----------------------------------
works
-----------------------------------
*/
.works {
  padding: 10rem 0 0;
}
@media (max-width: 900px) {
  .works {
    padding: 80px 0 0;
  }
}
.works .inner {
  max-width: 100%;
  padding: 0;
}
.works .works__title {
  margin: 0 auto 40px;
}
@media (max-width: 900px) {
  .works .works__title {
    width: 78.9473684211vw;
    margin: 0 auto 5.2631578947vw;
  }
}
.works .works_item {
  margin-bottom: 6rem;
}
@media (max-width: 900px) {
  .works .works_item {
    margin-bottom: 10.5263157895vw;
  }
}
.works .works__lead {
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  margin-bottom: 6rem;
}
@media (max-width: 900px) {
  .works .works__lead {
    font-size: 4.2105263158vw;
    margin-bottom: 7.8947368421vw;
  }
}
.works .works_catch {
  font-size: 3.2rem;
  line-height: 1;
  font-weight: bold;
  text-align: center;
  margin-bottom: 4rem;
}
@media (max-width: 900px) {
  .works .works_catch {
    font-size: 6.3157894737vw;
    line-height: 1.8;
    margin-bottom: 5.2631578947vw;
  }
}
.works .works_img img {
  border-radius: 1rem;
}
@media (max-width: 900px) {
  .works .works_img img {
    border-radius: 2.6315789474vw;
  }
}
.works .works-slider .swiper-wrapper {
  transition-timing-function: linear;
}

/*
-----------------------------------
modal
-----------------------------------
*/
.modal-contact {
  position: fixed;
  z-index: 20;
  width: 100%;
  max-width: 800px;
  height: 700px;
  background: #fff;
  bottom: 0;
  left: 50%;
  opacity: 0;
  visibility: hidden;
  border-radius: 20px;
  transition: all 0.4s linear;
  transform: translate(-50%, 100%);
}
@media (max-width: 900px) {
  .modal-contact {
    max-width: 78.9473684211vw;
    height: 80vh;
  }
}

.modal-contact.open {
  top: 45%;
  bottom: auto;
  opacity: 1;
  visibility: visible;
  transition: all 0.4s linear;
  transform: translate(-50%, -50%);
}

.modal-contact-head {
  height: 70px;
  display: grid;
  place-items: center;
  border-bottom: 1px solid #e0e0e0;
  position: relative;
}
@media (max-width: 900px) {
  .modal-contact-head {
    height: 18.4210526316vw;
  }
}
.modal-contact-head .modal-contact-head_text {
  font-size: 24px;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: bold;
}
@media (max-width: 900px) {
  .modal-contact-head .modal-contact-head_text {
    font-size: 4.2105263158vw;
  }
}

.modal-contact-button {
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 21px;
  width: 21px;
  height: 21px;
  transition: all 0.4s linear;
}
@media (max-width: 900px) {
  .modal-contact-button {
    right: 5.5263157895vw;
    width: 5.5263157895vw;
    height: 5.5263157895vw;
  }
}

.modal-contact-button:hover {
  transform: rotate(180deg);
}

.modal-contact-button a {
  display: inline-block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.modal-contact-content {
  padding: 40px 35px 40px;
  overflow-y: scroll;
  height: calc(100% - 70px);
  overflow-y: scroll;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
}
@media (max-width: 900px) {
  .modal-contact-content {
    padding: 10.5263157895vw 5.2631578947vw;
  }
}

.modal-contact-content_inner {
  height: 100%;
}
.modal-contact-content_inner .item .contruct__item--image {
  margin-top: 0;
}
.modal-contact-content_inner .item .contruct__box--sub {
  font-weight: normal;
}
.modal-contact-content_inner .item.--gx .contruct__box--sub {
  margin-top: 2rem;
}

.modal_title {
  font-size: 2.4rem;
  line-height: 1;
  font-weight: bold;
  margin-bottom: 30px;
}
@media (max-width: 900px) {
  .modal_title {
    font-size: 3.9473684211vw;
    line-height: 1.8;
    margin-bottom: 2.6315789474vw;
  }
}

.modal_title span.blue {
  color: #005083;
}

.modal__column {
  display: flex;
  gap: 2.8rem;
}
@media (max-width: 900px) {
  .modal__column {
    gap: 2.6315789474vw;
  }
}

.modal_text {
  font-size: 1.8rem;
  line-height: 2;
  padding-bottom: 50px;
}
.modal_text li {
  list-style: decimal;
  margin-left: 2.6rem;
}
.modal_text.list-desc li {
  list-style-type: disc;
  margin-left: 2.6rem;
}
.modal_text.list-none li {
  list-style: none;
  margin-left: 0;
}
.modal_text + .modal_text {
  margin-top: -30px;
}
@media (max-width: 900px) {
  .modal_text {
    font-size: 3.4210526316vw;
    padding-bottom: 10.5263157895vw;
  }
  .modal_text li {
    margin-left: 1.7rem;
  }
  .modal_text .list-desc li {
    margin-left: 1.7rem;
  }
}

.modal_img {
  margin: 20px 0;
}

.modal-contact-background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  max-width: 100% !important;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 10;
  opacity: 0;
  visibility: hidden;
}

.modal-contact-background.open {
  opacity: 1;
  visibility: visible;
}

.floating {
  display: block;
  height: 60px;
  margin: 0 auto;
  position: absolute;
  right: 0;
  left: 0;
  bottom: 3.4375rem;
  margin: auto;
  z-index: 10;
  opacity: 0;
  transition: all 0.6s;
}
@media (max-width: 900px) {
  .floating {
    width: 100%;
    bottom: 0px;
    left: 0%;
    right: 0;
  }
}
.floating.active {
  opacity: 1;
}

/*------------------------
history
------------------------*/
.history {
  padding: 4rem 0 5rem;
}
@media (max-width: 900px) {
  .history {
    padding: 10.5263157895vw 0 21.0526315789vw;
  }
}
.history .history__logo {
  max-width: 40rem;
  margin: 0 auto 4rem;
}
@media (max-width: 900px) {
  .history .history__logo {
    max-width: 52.6315789474vw;
    margin: 0 auto 2.6315789474vw;
  }
}
.history .history__title {
  margin: 0 auto 3rem;
}
.history .history__title img {
  margin: 0 auto;
}
@media (max-width: 900px) {
  .history .history__title {
    max-width: 85vw;
    margin: 0 0 5.2631578947vw -1vw;
  }
}
.history .history__top {
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: 0.05em;
  font-weight: bold;
  text-align: center;
  margin-bottom: 5rem;
}
@media (max-width: 900px) {
  .history .history__top {
    font-size: 6.3157894737vw;
    margin-bottom: 7.8947368421vw;
  }
}
.history .history__wrapper {
  padding-top: 5rem;
  padding-left: 11%;
}
@media (max-width: 900px) {
  .history .history__wrapper {
    padding-top: 0vw;
    padding-left: 0;
  }
}
.history .history__item {
  display: flex;
  gap: 19.5rem;
  min-height: 13rem;
  margin-bottom: 5rem;
  position: relative;
}
@media (max-width: 900px) {
  .history .history__item {
    flex-direction: column;
    gap: 5.2631578947vw;
    padding-left: 10.5263157895vw;
    padding-bottom: 10.5263157895vw;
    margin-bottom: 0;
  }
  .history .history__item::before {
    display: block;
    content: "";
    position: absolute;
    top: 0;
    left: 2vw;
    width: 0.6vw;
    height: 101%;
    border-radius: 2vw;
    background-color: #189cbe;
  }
}
@media (max-width: 900px) {
  .history .history__item:nth-child(6) {
    padding-bottom: 0;
  }
  .history .history__item:nth-child(6)::before {
    height: 10vw;
  }
}
.history .history__item:nth-child(6) .history__item--text::before {
  height: 12rem;
}
.history .history__item--year {
  line-height: 1;
  position: relative;
  width: 30rem;
  text-align: center;
}
@media (max-width: 900px) {
  .history .history__item--year {
    width: auto;
    height: 60px;
    text-align: left;
  }
  .history .history__item--year img {
    width: auto;
    height: 60px;
  }
}
.history .history__item--year span {
  display: inline-block;
  margin-inline: auto;
}
.history .history__item--year::before, .history .history__item--year::after {
  display: block;
  content: "";
  position: absolute;
}
.history .history__item--year::before {
  top: 5.5rem;
  right: -10.5rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #189cbe;
}
@media (max-width: 900px) {
  .history .history__item--year::before {
    top: 6.5vw;
    right: auto;
    left: -10.9vw;
    width: 5.2631578947vw;
    height: 5.2631578947vw;
  }
}
.history .history__item--year::after {
  top: 6.5rem;
  right: -18rem;
  width: 17rem;
  height: 1px;
  background-color: #189cbe;
  opacity: 0.3;
}
@media (max-width: 900px) {
  .history .history__item--year::after {
    top: 9vw;
    right: auto;
    left: -8.5vw;
    width: 6.5789473684vw;
  }
}
.history .history__item--text {
  position: relative;
  padding-top: 2rem;
  flex: 1;
}
@media (max-width: 900px) {
  .history .history__item--text {
    padding-top: 0;
  }
}
.history .history__item--text::before {
  display: block;
  content: "";
  position: absolute;
  top: -5rem;
  left: -10.1rem;
  width: 3px;
  height: calc(100% + 100px);
  border-radius: 1rem;
  background-color: #189cbe;
}
@media (max-width: 900px) {
  .history .history__item--text::before {
    display: none;
  }
}
.history .history__item--topic {
  font-size: 3.2rem;
  line-height: 1.5;
  font-weight: bold;
  margin-bottom: 2rem;
}
@media (max-width: 900px) {
  .history .history__item--topic {
    font-size: 5.2631578947vw;
    margin-bottom: 5.2631578947vw;
  }
}
.history .history__item--desc {
  font-size: 1.8rem;
  letter-spacing: normal;
}
@media (max-width: 900px) {
  .history .history__item--desc {
    font-size: 3.9473684211vw;
  }
}
.history .history__item--desc li {
  font-size: 1.8rem;
  line-height: 1.8;
  letter-spacing: normal;
  padding-left: 1em;
  position: relative;
}
@media (max-width: 900px) {
  .history .history__item--desc li {
    font-size: 3.9473684211vw;
    padding-left: 3.9473684211vw;
  }
}
.history .history__item--desc li::before {
  display: block;
  content: "・";
  position: absolute;
  top: 0;
  left: -0.1em;
}
@media (max-width: 900px) {
  .history .history__item--desc li::before {
    left: -0.5vw;
  }
}

/*
-----------------------------------
footer
-----------------------------------
*/
#footer {
  background-color: #fff;
}
#footer .f-con-Box {
  text-align: center;
  padding: 50px 0;
  background: #f1f9fb;
  font-family: "Noto Sans JP", serif !important;
}
@media (max-width: 900px) {
  #footer .f-con-Box {
    padding: 13.1578947368vw;
  }
}
#footer .f-con-Box .f-logo {
  width: 20rem;
  margin: 0 auto 30px;
}
@media (max-width: 900px) {
  #footer .f-con-Box .f-logo {
    width: 40vw;
    margin: 0 auto 5.9vw;
  }
}
#footer .f-con-Box .f-ttl {
  letter-spacing: 0.2vw;
  font-weight: 700;
  margin-bottom: 0.3vw;
  font-size: 1.5rem;
}
@media (max-width: 900px) {
  #footer .f-con-Box .f-ttl {
    letter-spacing: 0.5vw;
    font-size: 3.9473684211vw;
    margin-bottom: 1vw;
  }
}
#footer .f-con-Box .f-ttl1 {
  font-size: 1rem;
  letter-spacing: 0.2vw;
  line-height: 1.5;
  font-weight: bold;
}
@media (max-width: 900px) {
  #footer .f-con-Box .f-ttl1 {
    font-size: 2.6315789474vw;
  }
}
#footer .copyright {
  font-family: "Noto Sans JP", serif !important;
  font-size: 1.2rem;
  text-align: center;
  padding: 40px 0 90px;
}
@media (max-width: 900px) {
  #footer .copyright {
    font-size: 3.1578947368vw;
    padding: 23.6842105263vw 0;
  }
}

/*------------------------
pc-float
------------------------*/
.pc-float {
  position: fixed;
  top: 0;
  left: 4rem;
  z-index: 10;
}

.pc-float__items {
  display: flex;
  gap: 1rem;
}

.pc-float__item {
  display: block;
  width: 10rem;
  height: 11rem;
}
.pc-float__item img {
  -o-object-fit: contain;
     object-fit: contain;
}/*# sourceMappingURL=styles.css.map */