@charset "UTF-8";
.js-parallax {
  background: pink;
  overflow: hidden;
}
.js-parallax img {
  display: block;
  height: 120%;
  width: 120%;
  max-width: unset;
}

.js-recommend-img {
  position: relative;
  overflow: hidden;
}
.js-recommend-img img {
  display: block;
  -webkit-transform: scale(1.2);
          transform: scale(1.2);
  -webkit-transition: -webkit-transform 1.4s ease-out;
  transition: -webkit-transform 1.4s ease-out;
  transition: transform 1.4s ease-out;
  transition: transform 1.4s ease-out, -webkit-transform 1.4s ease-out;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}
.js-recommend-img::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: block;
  width: 100%;
  height: 100%;
  background: #000;
  -webkit-clip-path: inset(0% 0% 0% 0%);
          clip-path: inset(0% 0% 0% 0%);
  -webkit-transition: -webkit-clip-path 0.5s ease-in-out;
  transition: -webkit-clip-path 0.5s ease-in-out;
  transition: clip-path 0.5s ease-in-out;
  transition: clip-path 0.5s ease-in-out, -webkit-clip-path 0.5s ease-in-out;
  -webkit-transition-delay: 0.3s;
          transition-delay: 0.3s;
}

.js-recommend-img.is-visible img {
  -webkit-transform: scale(1);
          transform: scale(1);
}
.js-recommend-img.is-visible::after {
  -webkit-clip-path: inset(0% 0% 100% 0%);
          clip-path: inset(0% 0% 100% 0%);
}

.js-text {
  overflow: hidden;
}
.js-text span {
  display: inline-block;
}

.js-rotate span {
  display: inline-block;
}

.js-fadeIn2 span {
  --blur:0px;
  -webkit-filter: blur(var(--blur));
          filter: blur(var(--blur));
  display: inline-block;
}

.js-image {
  overflow: hidden;
}
.js-image img {
  display: inline-block;
}

.js-parallax2 {
  overflow: hidden;
}
.js-parallax2 img {
  height: 120%;
  max-width: unset;
}

/* リキッドレイアウト対応 */
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  color: #1a1a1a;
  letter-spacing: 0.03em;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
}

@media only screen and (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
@media only screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
}
/* pcの電話番号発信対応 */
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

a {
  text-decoration: none;
  color: inherit;
}

img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

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

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

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

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

/* 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]) {
  text-decoration-skip-ink: auto;
}

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

/* 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 */
/* フォームリセット */
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;
}

footer {
  padding: 96px 0 0 !important;
  padding: 6rem 0 0 !important;
}
@media screen and (max-width: 768px) {
  footer {
    padding: 2rem 0 0 !important;
  }
}

.footer__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .footer__box {
    display: block;
  }
}
.footer__right img {
  width: 300px;
}
@media screen and (max-width: 768px) {
  .footer__right img {
    margin-top: 1.5rem;
    width: 260px;
  }
}
.footer__logo {
  width: 320px;
  margin-bottom: 40px;
  margin-bottom: 2.5rem;
}
@media screen and (max-width: 768px) {
  .footer__logo {
    width: 200px;
    margin-bottom: 1rem;
  }
}
@media screen and (max-width: 768px) {
  .footer__add {
    font-size: 14px;
  }
}
.footer__copy {
  background: #e5edf6;
  text-align: right;
  font-size: 12px;
  font-family: "Oswald", sans-serif;
  font-weight: 400;
  padding: 10px;
  margin-top: 48px;
  margin-top: 3rem;
}
@media screen and (max-width: 768px) {
  .footer__copy {
    padding: 5px;
    margin-top: 1.5rem;
  }
}
.footer__copy p {
  display: block;
  max-width: 1400px;
  margin: 0 auto;
}

.js-hamburger.is-open .hamburger__line {
  top: 50%;
}
.js-hamburger.is-open .hamburger__line:nth-of-type(1) {
  -webkit-transform: rotate(20deg);
          transform: rotate(20deg);
}
.js-hamburger.is-open .hamburger__line:nth-of-type(2) {
  -webkit-transform: rotate(-20deg);
          transform: rotate(-20deg);
}

.hamburger {
  cursor: pointer;
  width: 93px;
  width: 5.8125rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 15px;
  gap: 0.9375rem;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  .hamburger {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.5rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
  }
}
.hamburger__text {
  font-size: 18px;
  font-size: 1.125rem;
  color: #f2f2e9;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .hamburger__text {
    font-size: 0.875rem;
  }
}
.hamburger__lines {
  width: 40px;
  width: 2.5rem;
  height: 10px;
  height: 0.625rem;
  position: relative;
}
@media screen and (max-width: 768px) {
  .hamburger__lines {
    width: 2.3125rem;
    height: 0.4375rem;
  }
}
.hamburger__line {
  position: absolute;
  width: 100%;
  height: 1px;
  background: #f2f2e9;
  left: 0;
  -webkit-transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out, -webkit-transform 0.3s ease-in-out;
}
@media screen and (max-width: 768px) {
  .hamburger__line {
    height: 2px;
  }
}
.hamburger__line:nth-of-type(1) {
  top: 0;
}
@media screen and (max-width: 768px) {
  .hamburger__line:nth-of-type(1) {
    top: -1px;
  }
}
.hamburger__line:nth-of-type(2) {
  top: 100%;
}
@media screen and (max-width: 768px) {
  .hamburger__line:nth-of-type(2) {
    bottom: -1px;
  }
}

header {
  z-index: 9999;
  position: relative;
}
header .header {
  position: fixed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 16px 0 16px 5vw;
  padding: 1rem 0 1rem 5vw;
}
@media screen and (max-width: 768px) {
  header .header {
    height: 64px;
    padding: 1rem;
  }
}
header .header__logo {
  width: 245px;
}
@media screen and (max-width: 768px) {
  header .header__logo {
    width: 150px;
  }
}
header .header nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 26.4px;
  gap: 1.65rem;
}
@media screen and (max-width: 768px) {
  header .header nav {
    display: block;
  }
}
header .header__inner--menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 26.4px;
  gap: 1.65rem;
}
@media screen and (max-width: 768px) {
  header .header__inner--menu {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 1rem;
  }
}
header .header__btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (max-width: 768px) {
  header .header__btn {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
header .header__btn .btn {
  border-radius: 0;
  padding: 16px 30.4px;
  padding: 1rem 1.9rem;
}
@media screen and (max-width: 768px) {
  header .header__btn .btn {
    padding: 23px 20px;
    border-radius: 8px;
  }
}
header .header__btn .btn::before, header .header__btn .btn::after {
  display: none;
}
@media screen and (max-width: 768px) {
  header .header__btn .btn::before, header .header__btn .btn::after {
    display: block;
  }
}
header .header__btn .menu {
  background: #c96e03;
}
@media screen and (min-width: 769px) {
  header .nav__btn,
  header .sp_nav__item,
  header .header__sns {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  header .nav__btn {
    background: #fd8d0c;
    position: absolute;
    top: 0;
    right: 0;
    width: 55px;
    height: 55px;
    z-index: 200;
  }
  header .nav__btn:hover {
    cursor: pointer;
  }
  header .nav__btn span {
    font-family: "Oswald", sans-serif;
    position: relative;
    display: block;
    text-align: center;
    color: #fff;
    font-size: 9px;
    width: 100%;
    top: 12px;
    left: 50%;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    border-radius: 10px;
    -webkit-transition: ease-out 0.3s;
    transition: ease-out 0.3s;
  }
  header .nav__btn span::before, header .nav__btn span::after {
    content: "";
    display: block;
    height: 2.5px;
    background: #fff;
    position: absolute;
    -webkit-transition: ease-out 0.3s;
    transition: ease-out 0.3s;
    left: 50%;
    width: 30px;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
    -webkit-transform-origin: 0;
            transform-origin: 0;
  }
  header .nav__btn span::before {
    bottom: -7px;
  }
  header .nav__btn span::after {
    bottom: -14px;
  }
  header .nav__btn .hmb.open {
    background: transparent;
  }
  header .nav__btn .hmb.open::before {
    -webkit-transform: rotate(20deg);
            transform: rotate(20deg);
    opacity: 1;
  }
  header .nav__btn .hmb.open::after {
    -webkit-transform: rotate(-20deg);
            transform: rotate(-20deg);
    opacity: 1;
  }
  header nav {
    background: #fd8c0d;
    position: fixed;
    left: 50%;
    top: 0;
    width: 100%;
    height: 100vh;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
    gap: 30px;
    padding: 80px 20px 2rem;
    z-index: 100;
    -webkit-transition: ease-out 0.3s;
    transition: ease-out 0.3s;
    opacity: 1;
    overflow-y: scroll;
    -webkit-transform: translate(-50%, 0);
            transform: translate(-50%, 0);
  }
  header nav::-webkit-scrollbar {
    display: none;
  }
  header nav ul {
    margin-bottom: 3rem;
  }
  header nav li {
    color: #fff;
    padding-bottom: 1rem;
    border-bottom: solid 1px #fff;
  }
  header nav .icon {
    width: 26px;
  }
  header nav .btn {
    border: solid 1px #fff;
  }
  header nav .header__btn {
    margin-top: 1.75rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    gap: 1rem;
  }
  header nav .menu {
    background: #954b00;
  }
  header nav.hide {
    left: 200%;
    opacity: 0;
  }
}

.inner {
  max-width: 1400px;
  padding: 0 16px;
  padding: 0 1rem;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .inner {
    max-width: unset;
    padding-right: 18px;
    padding-left: 18px;
  }
}

.more {
  display: block;
  position: relative;
  font-size: 21px;
  font-size: 1.3125rem;
  color: #1a1a1a;
  line-height: 1;
  padding: 43px 30px;
  padding: 2.6875rem 1.875rem;
}
@media screen and (max-width: 768px) {
  .more {
    font-size: 1rem;
    padding: 1.25rem;
  }
}
.more::after {
  position: absolute;
  display: block;
  content: "";
  right: 30px;
  right: 1.875rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  aspect-ratio: 42/12;
  width: 42px;
  width: 2.625rem;
  background-image: url("./images/common/arrow.svg");
  background-repeat: no-repeat;
  background-size: contain;
}
@media screen and (max-width: 768px) {
  .more::after {
    right: 0.75rem;
    width: 1.75rem;
  }
}

.section-ttl {
  font-size: 46px;
  font-size: 2.875rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .section-ttl {
    font-size: 2rem;
  }
}

.sns-links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 95px;
  width: 5.9375rem;
}
.sns-links__item {
  font-size: 21px;
  font-size: 1.3125rem;
}

main.archive {
  background-color: #f2f2e9;
}
main.archive ul.news li {
  padding: 8px;
  padding: 0.5rem;
  border-bottom: solid 1px #f5f5f5;
}
main.archive ul.news li h3 {
  font-size: 16px;
  font-weight: normal;
}
main.archive ul.other {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  main.archive ul.other {
    display: block;
  }
}
main.archive ul.other .item {
  -ms-flex-preferred-size: 31%;
      flex-basis: 31%;
  margin-right: 2.33%;
  background: #fff;
  margin-bottom: 48px;
  margin-bottom: 3rem;
}
main.archive ul.other .item:nth-child(3n) {
  margin-right: 0;
}
@media screen and (max-width: 768px) {
  main.archive ul.other .item {
    margin-right: 0;
  }
}
@media screen and (min-width: 768px) {
  main.archive ul.other .item__inner:hover {
    opacity: 0.5;
    -webkit-transition-duration: 0.3s;
            transition-duration: 0.3s;
  }
}
main.archive ul.other .item__inner-img img {
  aspect-ratio: 1.5;
  -o-object-fit: cover;
     object-fit: cover;
}
main.archive ul.other .item__inner-text {
  padding: 16px;
  padding: 1rem;
}
main.archive ul.other .item__inner-text h3 {
  font-size: 20px;
  margin: 0 0 10px 0;
  font-weight: normal;
}
main.archive ul.other .item__inner-text p {
  font-size: 16px;
  margin: 0;
}
main.archive .wp-pagenavi {
  text-align: center;
}
main.archive .wp-pagenavi span.pages {
  display: block;
}
main.archive .wp-pagenavi span {
  padding: 2px 4px;
  margin: 0 4px;
}
main.archive .wp-pagenavi a {
  border-bottom: solid 1px #333;
}

.pageheader {
  background: url(./img/pageheader.jpg) no-repeat center center/cover;
  padding-top: 100px;
}
.pageheader__inner {
  padding: 140px 0 170px;
  width: 92%;
  max-width: 1440px;
  margin: 0 auto;
}
.pageheader__inner p {
  color: #fff;
  margin-bottom: 2em;
  text-transform: uppercase;
}
.pageheader__inner h1 {
  color: #fff;
  font-size: 3em;
  font-weight: normal;
}

.lower {
  width: 92%;
  max-width: 960px;
  margin: 0 auto;
  padding: 80px 0;
  padding: 5rem 0;
}

.page {
  background-color: #f2f2e9;
}
.page h2,
.page h3,
.page h4,
.page h5 {
  margin: 1.25em 0 0.75em;
  font-weight: normal;
  color: #344057;
}
.page h2 {
  font-size: 1.75em;
  border-left: #344057 solid 3px;
  padding-left: 0.375em;
}
@media screen and (max-width: 768px) {
  .page h2 {
    font-size: 1.5em;
  }
}
.page h3 {
  position: relative;
  padding-bottom: 0.25em;
  font-size: 1.5em;
}
@media screen and (max-width: 768px) {
  .page h3 {
    font-size: 1.25em;
  }
}
.page h3::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 2em;
  border-bottom: solid 2px #344057;
}
.page h4 {
  font-size: 1.25em;
}
@media screen and (max-width: 768px) {
  .page h4 {
    font-size: 1.125em;
  }
}
.page h5 {
  font-weight: normal;
  font-size: 1.25em;
}
.page p {
  margin: 0 0 24px;
  margin: 0 0 1.5rem;
  font-size: 16px;
}
.page img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  max-width: 840px !important;
  margin: 0 auto 24px;
  margin: 0 auto 1.5rem;
}
.page a {
  text-decoration: underline;
}
.page a:hover {
  opacity: 0.7;
  -webkit-transition-duration: 0.5s;
          transition-duration: 0.5s;
}
.page iframe {
  max-width: 100%;
  margin: 0 auto;
  display: block;
}
.page .wp-block-button__link {
  display: inline-block;
  padding: 0.5em 2em;
  background-color: #344057;
  color: #fff;
  text-decoration: none;
  text-transform: uppercase;
  font-size: 18px;
  border-radius: 5rem;
}

.breadcrumbs {
  padding: 16px;
  padding: 1rem;
  background-color: #f2f2e9;
}
.breadcrumbs * {
  font-size: 14px;
}
.breadcrumbs a {
  text-decoration: underline;
}

.en {
  color: #014ea2;
  font-family: "Oswald", sans-serif;
  font-size: 1.125em;
  font-weight: normal;
  letter-spacing: 1px;
}

h2 {
  color: #014ea2;
  font-size: clamp(24px, 14.48px + 2.54vw, 50px);
  font-size: clamp(1.5rem, 0.905rem + 2.54vw, 3.125rem);
  font-weight: normal;
  letter-spacing: 3px;
  line-height: 1.7;
  margin-bottom: 48px;
  margin-bottom: 3rem;
}
@media screen and (max-width: 768px) {
  h2 {
    font-size: 1.3em;
    letter-spacing: 2px;
    margin-bottom: 1.5rem;
  }
}

.h2-small {
  font-size: clamp(16px, 14.544px + 0.39vw, 20px);
  font-size: clamp(1rem, 0.909rem + 0.39vw, 1.25rem);
  margin-bottom: 0;
}

.section__ttl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  gap: clamp(20px, 13.408px + 1.76vw, 38px);
  gap: clamp(1.25rem, 0.838rem + 1.76vw, 2.375rem);
  padding-bottom: clamp(18px, 11.408px + 1.76vw, 36px);
  padding-bottom: clamp(1.125rem, 0.713rem + 1.76vw, 2.25rem);
  border-bottom: solid 1px #b2c8e3;
  margin-bottom: clamp(32px, 18.096px + 3.71vw, 70px);
  margin-bottom: clamp(2rem, 1.131rem + 3.71vw, 4.375rem);
}
.section__ttl .en {
  font-size: clamp(24px, 10.832px + 3.51vw, 60px);
  font-size: clamp(1.5rem, 0.677rem + 3.51vw, 3.75rem);
}
.section__ttl h2 {
  margin-bottom: 1%;
}

.slider {
  position: relative;
}
.slider__item img {
  aspect-ratio: 5/4;
  border-radius: clamp(0.625rem, 0.168rem + 1.95vw, 1.875rem);
}

ul .slick-dots {
  bottom: 24px !important;
}

.mv {
  height: 100vh;
  margin-bottom: 64px;
  margin-bottom: 4rem;
}
@media screen and (max-width: 1000px) {
  .mv {
    height: 85vh;
  }
}
@media screen and (max-width: 720px) {
  .mv {
    height: 70vh;
    margin-bottom: 2rem;
  }
}
.mv__bg {
  position: relative;
  display: block;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background: #efefef;
  background-image: linear-gradient(#f5f5f5 2px, transparent 0), linear-gradient(90deg, #f5f5f5 2px, transparent 0);
  background-size: 25px 25px;
  padding: clamp(50px, 24.544px + 7.95vw, 120px) 0;
  padding: clamp(3.125rem, 1.534rem + 7.95vw, 7.5rem) 0;
  border-radius: 0 0 clamp(2.5rem, 1.585rem + 3.9vw, 5rem) 0;
  z-index: -2;
}
.mv .slick {
  position: absolute;
  top: 0;
  right: 0;
  width: 85%;
  margin: 0 auto;
}
.mv .slick img {
  width: 100%;
  height: 85vh;
  border-radius: 0 0 0 clamp(2.5rem, 1.585rem + 3.9vw, 5rem);
}
@media screen and (max-width: 1000px) {
  .mv .slick img {
    height: 70vh;
  }
}
@media screen and (max-width: 720px) {
  .mv .slick img {
    height: 63vh;
  }
}
.mv .slick2 {
  position: absolute;
  top: 45%;
  left: 5vw;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 40%;
}
@media screen and (max-width: 1000px) {
  .mv .slick2 {
    width: 50%;
    top: 40%;
  }
}
@media screen and (max-width: 720px) {
  .mv .slick2 {
    width: 250px !important;
    top: 37%;
  }
}
.mv .slick3 {
  position: absolute;
  bottom: 5%;
  left: 5vw;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 20%;
}
@media screen and (max-width: 1000px) {
  .mv .slick3 {
    top: 65%;
    bottom: inherit;
  }
}
@media screen and (max-width: 720px) {
  .mv .slick3 {
    width: 200px !important;
    top: 62%;
    bottom: inherit;
  }
}
.mv .slider-dots {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: center;
  list-style: none;
  margin-top: 50px;
}
@media screen and (max-width: 800px) {
  .mv .slider-dots {
    margin-top: 2rem;
  }
}
.mv .slider-dots li {
  position: relative;
  display: inline-block;
  width: 50px;
  margin-right: 32px;
  margin-right: 2rem;
  counter-increment: count;
}
@media screen and (max-width: 800px) {
  .mv .slider-dots li {
    width: 45px;
  }
}
.mv .slider-dots li::before {
  content: counter(count);
  position: absolute;
  font-family: "Oswald", sans-serif;
  top: 7px;
  left: -16px;
  left: -1rem;
  font-size: 14px;
}
.mv .slider-dots button {
  position: relative;
  width: 100%;
  height: 1px;
  border: 0;
  background-color: #dbdbdb;
  font-size: 0;
}
.mv .slider-dots button:after {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  display: block;
  width: 0%;
  height: 100%;
}
.mv .slider-dots .slick-active button:after {
  background-color: #014ea2;
  -webkit-animation: progress 3.5s linear forwards;
          animation: progress 3.5s linear forwards;
}
.mv .slider-dots .slick-next {
  top: inherit;
  bottom: 0 !important;
}
@-webkit-keyframes progress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}
@keyframes progress {
  from {
    width: 0%;
  }
  to {
    width: 100%;
  }
}

.cv {
  position: relative;
}
.cv__loop {
  overflow: hidden;
  width: 100%;
}
.cv__loopbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}
.cv__loopbox--item {
  font-family: "Oswald", sans-serif;
  color: #e5edf6;
  font-size: clamp(24px, -25.76px + 13.27vw, 160px);
  font-size: clamp(1.5rem, -1.61rem + 13.27vw, 10rem);
  letter-spacing: 5px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
  padding-right: 25px;
  padding-left: 25px;
  overflow: hidden;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .cv__loopbox--item {
    font-size: 3em;
  }
}
.cv__loopbox--item:nth-child(odd) {
  -webkit-animation: loop 50s -25s linear infinite;
          animation: loop 50s -25s linear infinite;
}
.cv__loopbox--item:nth-child(even) {
  -webkit-animation: loop2 50s linear infinite;
          animation: loop2 50s linear infinite;
}
@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@-webkit-keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
            transform: translateX(-200%);
  }
}
.cv__btn {
  display: block;
  width: 50%;
  max-width: 700px;
  margin: -112px auto 0;
  margin: -7rem auto 0;
}
@media screen and (max-width: 1200px) {
  .cv__btn {
    width: 60%;
    margin: -4rem auto 0;
  }
}
@media screen and (max-width: 768px) {
  .cv__btn {
    width: 80%;
    margin: -2.5rem auto 0;
  }
}
.cv__btn:hover {
  -webkit-transition: ease-in 0.3s !important;
  transition: ease-in 0.3s !important;
  -webkit-transform: translateY(-6px) !important;
          transform: translateY(-6px) !important;
}
.cv a:nth-of-type(2) .cv__btn {
  margin: 16px auto 0;
  margin: 1rem auto 0;
}

.top-btn {
  position: fixed;
  bottom: 32px;
  bottom: 2rem;
  right: 32px;
  right: 2rem;
  width: 77px;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .top-btn {
    bottom: 1rem;
    right: 1rem;
    width: 60px;
  }
}

.about {
  margin: clamp(50px, 12.32px + 10.05vw, 153.008px) auto;
  margin: clamp(3.125rem, 0.77rem + 10.05vw, 9.563rem) auto;
}
.about__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .about__wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.about__wrap-item {
  width: 60%;
}
@media screen and (max-width: 768px) {
  .about__wrap-item {
    width: 100%;
  }
}
.about__wrap-item h2 .marker {
  width: 0;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(0%, #e2ff00));
  background: linear-gradient(transparent 80%, #e2ff00 0%);
  padding-left: 3px;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
.about__wrap-item p {
  display: inline;
  background-image: linear-gradient(to right, #b2c8e3 2px, transparent 2px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
  font-size: clamp(16px, 14.544px + 0.39vw, 20px);
  font-size: clamp(1rem, 0.909rem + 0.39vw, 1.25rem);
  line-height: 3;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .about__wrap-item p {
    font-size: 0.75em;
  }
}
.about__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .about__image {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: 1rem;
    margin-top: 1rem;
  }
}
.about__image img {
  border-radius: 300px;
}
.about__image .image01 {
  height: 40vh;
  width: 45%;
  margin-top: auto;
  margin-bottom: -32px;
  margin-bottom: -2rem;
}
.about__image .image02 {
  height: 50vh;
  width: 50%;
}
.about__loop {
  overflow: hidden;
  width: 100%;
  top: 0;
  z-index: 1;
  margin-top: -200px;
  margin-bottom: -48px;
  margin-bottom: -3rem;
}
@media screen and (max-width: 768px) {
  .about__loop {
    margin-bottom: 0;
  }
}
.about__loopbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  padding-top: 10px;
  padding-bottom: 10px;
}
.about__loopbox--item {
  font-family: "Oswald", sans-serif;
  color: #faf8f5;
  font-size: 7.5em;
  font-weight: bold;
  letter-spacing: 2px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 auto;
          flex: 0 0 auto;
  white-space: nowrap;
  padding-right: 25px;
  padding-left: 25px;
  overflow: hidden;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .about__loopbox--item {
    font-size: 3em;
  }
}
.about__loopbox--item:nth-child(odd) {
  -webkit-animation: loop 50s -25s linear infinite;
          animation: loop 50s -25s linear infinite;
}
.about__loopbox--item:nth-child(even) {
  -webkit-animation: loop2 50s linear infinite;
          animation: loop2 50s linear infinite;
}

.point {
  background: #e5edf6;
  padding: clamp(36px, 16.239px + 5.27vw, 90px) 5vw;
  padding: clamp(2.25rem, 1.015rem + 5.27vw, 5.625rem) 5vw;
  margin: 0 2vw clamp(50px, 12.32px + 10.05vw, 153.008px);
  margin: 0 2vw clamp(3.125rem, 0.77rem + 10.05vw, 9.563rem);
  border-radius: clamp(0.625rem, 0.168rem + 1.95vw, 1.875rem);
}
@media screen and (max-width: 768px) {
  .point {
    padding: 3rem 0;
  }
}
.point__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.point__wrap-item {
  -ms-flex-preferred-size: 32%;
      flex-basis: 32%;
  background: #fff;
  border-radius: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: clamp(20px, 9.024px + 2.93vw, 50px) clamp(18px, 7.76px + 2.73vw, 46px) 40px;
  padding: clamp(1.25rem, 0.564rem + 2.93vw, 3.125rem) clamp(1.125rem, 0.485rem + 2.73vw, 2.875rem) 2.5rem;
  margin-bottom: clamp(24px, 21.072px + 0.78vw, 32px);
  margin-bottom: clamp(1.5rem, 1.317rem + 0.78vw, 2rem);
}
@media screen and (max-width: 1200px) {
  .point__wrap-item {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
  }
}
@media screen and (max-width: 600px) {
  .point__wrap-item {
    -ms-flex-preferred-size: 100%;
        flex-basis: 100%;
  }
}
.point__wrap-item img {
  width: 95%;
  height: 230px;
}
@media screen and (max-width: 1200px) {
  .point__wrap-item img {
    height: 200px;
  }
}
@media screen and (max-width: 600px) {
  .point__wrap-item img {
    height: 200px;
  }
}
.point__wrap-item h3 {
  width: 100%;
  background-image: linear-gradient(to right, #b2c8e3 2px, transparent 2px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
  color: #014ea2;
  font-size: clamp(18px, 17.264px + 0.2vw, 20px);
  font-size: clamp(1.125rem, 1.079rem + 0.2vw, 1.25rem);
  font-weight: normal;
  text-align: center;
  padding-bottom: clamp(16px, 13.072px + 0.78vw, 24px);
  padding-bottom: clamp(1rem, 0.817rem + 0.78vw, 1.5rem);
}
.point__wrap-item p {
  font-size: 15px;
  text-align: center;
  line-height: 1.7;
}
.point__btn {
  width: 32%;
  margin: 32px auto;
  margin: 2rem auto;
}
@media screen and (max-width: 768px) {
  .point__btn {
    width: 100%;
    margin: 0 auto;
  }
}
.point__btn:hover {
  -webkit-transition: ease-in 0.3s !important;
  transition: ease-in 0.3s !important;
  -webkit-transform: translateY(-6px) !important;
          transform: translateY(-6px) !important;
}

.furniture {
  position: relative;
}
.furniture__cnt {
  position: absolute;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  top: 50%;
  left: 5vw;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  aspect-ratio: 3/2;
  background: #014ea2;
  width: 30%;
  max-width: 450px;
  height: 620px;
  padding: 32px clamp(18px, 6.288px + 3.12vw, 50px);
  padding: 2rem clamp(1.125rem, 0.393rem + 3.12vw, 3.125rem);
  border-radius: 300px;
  overflow: inherit !important;
  z-index: 1;
}
@media screen and (max-width: 1000px) {
  .furniture__cnt {
    width: 40%;
    max-width: 370px;
    max-height: 500px;
    height: 120%;
  }
}
@media screen and (max-width: 480px) {
  .furniture__cnt {
    width: 58%;
    max-width: 260px;
    height: 300px;
    left: 1rem;
  }
}
.furniture__cnt * {
  text-align: center;
  color: #fff;
}
.furniture__cnt h2 {
  font-size: clamp(18px, 9.952px + 2.15vw, 36.8px);
  font-size: clamp(1.125rem, 0.622rem + 2.15vw, 2.3rem);
  line-height: 2.2;
}
@media screen and (max-width: 768px) {
  .furniture__cnt h2 {
    max-width: 230px;
    font-size: 18px;
  }
}
.furniture__cnt h2 span {
  display: inline;
  background-image: linear-gradient(to right, #fff 2px, transparent 2px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
  padding-bottom: 14px;
}
@media screen and (max-width: 768px) {
  .furniture__cnt h2 span {
    padding-bottom: 10px;
  }
}
.furniture__cnt p {
  font-size: clamp(16px, 14.544px + 0.39vw, 20px);
  font-size: clamp(1rem, 0.909rem + 0.39vw, 1.25rem);
  line-height: 1.8;
}
@media screen and (max-width: 1000px) {
  .furniture__cnt p {
    font-size: 16px;
  }
}
@media screen and (max-width: 480px) {
  .furniture__cnt p {
    font-size: 14px;
  }
}
.furniture .slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  padding: 36.8px 0;
  padding: 2.3rem 0;
}
.furniture .slide__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 24px;
  gap: 1.5rem;
  -webkit-animation: loop-list 60s linear infinite;
          animation: loop-list 60s linear infinite;
}
.furniture .slide__item {
  width: 50vw;
  display: block;
}
@media screen and (max-width: 480px) {
  .furniture .slide__item {
    width: 83.3333333333vw;
  }
}
.furniture .slide__item img {
  width: 100%;
  border-radius: clamp(0.625rem, 0.168rem + 1.95vw, 1.875rem);
  aspect-ratio: 3/2;
}
@-webkit-keyframes loop-list {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}
@keyframes loop-list {
  from {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-100%);
            transform: translateX(-100%);
  }
}

.worries {
  position: relative;
  background: #efefef;
  background-image: linear-gradient(#f5f5f5 2px, transparent 0), linear-gradient(90deg, #f5f5f5 2px, transparent 0);
  background-size: 25px 25px;
  padding: clamp(50px, 24.544px + 7.95vw, 120px) 0;
  padding: clamp(3.125rem, 1.534rem + 7.95vw, 7.5rem) 0;
  margin-top: clamp(50px, 12.32px + 10.05vw, 153.008px);
  margin-top: clamp(3.125rem, 0.77rem + 10.05vw, 9.563rem);
  z-index: -2;
}
.worries h2 {
  text-align: center;
}
.worries__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.worries__box-item {
  position: relative;
  -ms-flex-preferred-size: 21%;
      flex-basis: 21%;
  background: #fff;
  color: #014ea2;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: clamp(16px, 14.544px + 0.39vw, 20px);
  font-size: clamp(1rem, 0.909rem + 0.39vw, 1.25rem);
  line-height: 1.7;
  aspect-ratio: 1/1;
  border-radius: 50%;
  text-align: center;
  padding: 8px;
  padding: 0.5rem;
  margin-bottom: auto;
}
@media screen and (max-width: 768px) {
  .worries__box-item {
    -ms-flex-preferred-size: 48%;
        flex-basis: 48%;
    font-size: 14px;
    padding: 0;
  }
}
.worries__box-item::after {
  content: "";
  position: absolute;
  background: #e2ff00;
  width: 100%;
  height: 100%;
  right: -20px;
  bottom: -10px;
  border-radius: 50%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .worries__box-item::after {
    right: -10px;
    bottom: -5px;
  }
}
.worries__box-item:nth-child(2), .worries__box-item:nth-child(4) {
  margin-top: clamp(60px, 30.736px + 7.8vw, 140px);
  margin-top: clamp(3.75rem, 1.921rem + 7.8vw, 8.75rem);
  margin-bottom: auto;
}
@media screen and (max-width: 768px) {
  .worries__box-item:nth-child(3) {
    margin-top: 0 !important;
  }
}
.worries__box-item img {
  position: absolute;
  bottom: -32px;
  bottom: -2rem;
  left: 50%;
  -webkit-transform: translate(-50%, 0);
          transform: translate(-50%, 0);
  width: 80%;
}
@media screen and (max-width: 768px) {
  .worries__box-item img {
    bottom: -1rem;
  }
}
.worries__box-item:nth-of-type(2) img, .worries__box-item:nth-of-type(4) img {
  top: -64px;
  top: -4rem;
  bottom: inherit;
  width: 65%;
}
@media screen and (max-width: 768px) {
  .worries__box-item:nth-of-type(2) img, .worries__box-item:nth-of-type(4) img {
    top: -3rem;
  }
}
.worries__box-item:nth-of-type(2) img {
  width: 55%;
  top: -48px;
  top: -3rem;
}
@media screen and (max-width: 768px) {
  .worries__box-item:nth-of-type(2) img {
    top: -2rem;
  }
}
.worries__box-item:nth-of-type(3) img {
  bottom: -64px;
  bottom: -4rem;
}
@media screen and (max-width: 768px) {
  .worries__box-item:nth-of-type(3) img {
    bottom: -2rem;
  }
}
.worries__closing {
  text-align: center;
  font-size: clamp(18px, 9.952px + 2.15vw, 40px);
  font-size: clamp(1.125rem, 0.622rem + 2.15vw, 2.5rem);
  line-height: 3;
  margin-top: clamp(24px, 4.24px + 5.27vw, 78px);
  margin-top: clamp(1.5rem, 0.265rem + 5.27vw, 4.875rem);
}
.worries__closing span {
  position: relative;
  background: #014ea2;
  color: #fff;
  padding: 19.2px 48px;
  padding: 1.2rem 3rem;
  border-radius: 60px;
}
@media screen and (max-width: 768px) {
  .worries__closing span {
    padding: 0.5rem 1rem;
  }
}
.worries__closing span::after {
  content: "";
  position: absolute;
  background: #c9d8ea;
  width: 100%;
  height: 100%;
  right: -10px;
  bottom: -10px;
  border-radius: 60px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .worries__closing span::after {
    right: -5px;
    bottom: -5x;
  }
}

.case {
  margin: clamp(50px, 12.32px + 10.05vw, 153.008px) auto clamp(48px, 32.64px + 4.1vw, 90px);
  margin: clamp(3.125rem, 0.77rem + 10.05vw, 9.563rem) auto clamp(3rem, 2.04rem + 4.1vw, 5.625rem);
}
@media screen and (max-width: 768px) {
  .case {
    margin-bottom: 0;
  }
}
.case__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.case__box-item {
  width: 48%;
  margin-bottom: clamp(48px, 24px + 3.71vw, 70px);
  margin-bottom: clamp(3rem, 1.5rem + 3.71vw, 4.375rem);
}
@media screen and (max-width: 768px) {
  .case__box-item {
    width: 100%;
  }
}
.case__box-item h3 {
  width: 100%;
  color: #014ea2;
  background-image: linear-gradient(to right, #b2c8e3 3px, transparent 3px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
  font-size: clamp(18px, 17.264px + 0.2vw, 20px);
  font-size: clamp(1.125rem, 1.079rem + 0.2vw, 1.25rem);
  font-weight: normal;
  padding-bottom: clamp(16px, 13.072px + 0.78vw, 24px);
  padding-bottom: clamp(1rem, 0.817rem + 0.78vw, 1.5rem);
  margin-bottom: clamp(16px, 13.072px + 0.78vw, 24px);
  margin-bottom: clamp(1rem, 0.817rem + 0.78vw, 1.5rem);
}
.case .slider__item img {
  aspect-ratio: 3/2;
}
.case .accordion {
  width: 100%;
  margin: 0 auto;
}
.case .accordion .accordion_ttl {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #014ea2;
  color: #fff;
  font-size: 1.4em;
  padding: 24px 16px;
  padding: 1.5rem 1rem;
  border-radius: 60px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .case .accordion .accordion_ttl {
    font-size: 1.2em;
    padding: 1rem;
  }
}
.case .accordion .accordion_ttl:before, .case .accordion .accordion_ttl:after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  right: 32px;
  right: 2rem;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  width: 20px;
  height: 2px;
  background: #fff;
  -webkit-transition: 0.2s ease transform;
  transition: 0.2s ease transform;
}
.case .accordion .accordion_ttl:after {
  -webkit-transform: translate(0, -50%) rotate(-90deg);
          transform: translate(0, -50%) rotate(-90deg);
}
.case .accordion .accordion_ttl.active:after {
  -webkit-transform: translate(0, -50%) rotate(0deg);
          transform: translate(0, -50%) rotate(0deg);
}
.case .accordion .accordion_cnt {
  margin-top: 48px;
  margin-top: 3rem;
  max-height: 0;
  overflow: hidden;
  -webkit-transition: 1s ease max-height;
  transition: 1s ease max-height;
}

.voice {
  background: #efefef;
  padding: clamp(36px, 16.239px + 5.27vw, 90px) 0;
  padding: clamp(2.25rem, 1.015rem + 5.27vw, 5.625rem) 0;
  margin: clamp(50px, 12.32px + 10.05vw, 153.008px) 2vw;
  margin: clamp(3.125rem, 0.77rem + 10.05vw, 9.563rem) 2vw;
  border-radius: clamp(0.625rem, 0.168rem + 1.95vw, 1.875rem);
}
.voice__left {
  width: 25%;
}
@media screen and (max-width: 1000px) {
  .voice__left {
    width: 100%;
    margin-bottom: 2rem;
  }
}
.voice__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 70%;
}
@media screen and (max-width: 1000px) {
  .voice__right {
    display: block;
    width: 100%;
  }
}
.voice__box {
  background: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 16px;
  gap: 1rem;
  padding: clamp(18px, 6.288px + 3.12vw, 50px);
  padding: clamp(1.125rem, 0.393rem + 3.12vw, 3.125rem);
  margin-bottom: clamp(24px, 19.616px + 1.17vw, 36px);
  margin-bottom: clamp(1.5rem, 1.226rem + 1.17vw, 2.25rem);
  border-radius: clamp(0.938rem, 0.595rem + 1.46vw, 1.875rem);
}
@media screen and (max-width: 1000px) {
  .voice__box {
    display: block;
  }
}
.voice__box .slider {
  width: 48%;
  margin-bottom: 0 !important;
}
@media screen and (max-width: 1000px) {
  .voice__box .slider {
    width: 100%;
  }
}
.voice__box .slider::after {
  content: "";
  position: absolute;
  background-image: url(./images/before.svg);
  top: -30px;
  left: -20px;
  width: 70px;
  height: 70px;
}
@media screen and (max-width: 1000px) {
  .voice__box .slider::after {
    background-size: contain;
    width: 50px;
    height: 50px;
    top: -15px;
    left: -10px;
  }
}
.voice__box .slider:last-child::after {
  background-image: url(./images/after.svg);
}
.voice__box .slider__item {
  margin-bottom: 16px;
  margin-bottom: 1rem;
}
.voice__box .slider img {
  border-radius: 10px;
}
.voice__box .slider span {
  position: absolute;
}
.voice__box__cnt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background-image: linear-gradient(to right, #b2c8e3 3px, transparent 3px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
  padding-bottom: clamp(16px, 13.072px + 0.78vw, 24px);
  padding-bottom: clamp(1rem, 0.817rem + 0.78vw, 1.5rem);
  margin-bottom: clamp(16px, 13.072px + 0.78vw, 24px);
  margin-bottom: clamp(1rem, 0.817rem + 0.78vw, 1.5rem);
}
.voice__box__cnt img {
  width: 35%;
  aspect-ratio: 5/4;
  margin-right: 24px;
  border-radius: 10px;
}
.voice__box__cnt-name {
  font-weight: 400;
  line-height: 2;
}
@media screen and (max-width: 1000px) {
  .voice__box__cnt-name {
    font-size: 0.8em;
  }
}
.voice__box__cnt-name span {
  font-size: 1.2em;
}
.voice__box p {
  line-height: 1.8;
}
.voice__box-btn {
  display: block;
  margin: clamp(20px, 10.48px + 2.54vw, 46px) auto 0;
  margin: clamp(1.25rem, 0.655rem + 2.54vw, 2.875rem) auto 0;
  -webkit-transition: ease-in 0.3s !important;
  transition: ease-in 0.3s !important;
}
@media screen and (max-width: 1000px) {
  .voice__box-btn {
    max-width: 375px;
  }
}
.voice__box-btn:hover {
  -webkit-transform: translateY(-6px) !important;
          transform: translateY(-6px) !important;
  cursor: pointer;
}

.none {
  display: none;
}

.grid {
  display: grid !important;
}

.modal {
  width: 100%;
  height: 100vh;
  position: fixed;
  left: 0;
  top: 0;
  background-color: rgba(0, 0, 0, .5);
  padding: 32px;
  padding: 2rem;
  z-index: 9999999;
}
@media screen and (max-width: 768px) {
  .modal {
    padding: 1rem;
  }
}
.modal__inner {
  position: relative;
  width: 100%;
  max-width: 1216px;
  background: #fff;
  -webkit-box-shadow: 0 3px 10px rgba(0, 0, 0, .062745098);
          box-shadow: 0 3px 10px rgba(0, 0, 0, .062745098);
  border-radius: 30px;
  margin: 32px auto;
  margin: 2rem auto;
  padding: 80px;
  padding: 5rem;
  overflow-y: scroll;
}
.modal__inner::-webkit-scrollbar {
  border-radius: 15px;
  display: none;
}
@media screen and (max-width: 768px) {
  .modal__inner {
    margin: 20px auto;
    padding: 4rem 1.5rem 2rem;
  }
}
.modal__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 64px;
  gap: 4rem;
}
@media screen and (max-width: 768px) {
  .modal__box {
    display: block;
  }
}
.modal__box-left {
  width: 30%;
}
@media screen and (max-width: 768px) {
  .modal__box-left {
    width: 100%;
  }
}
.modal__box-left img {
  border-radius: 10px;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
.modal__box-left-name {
  line-height: 2;
  background-image: linear-gradient(to right, #b2c8e3 2px, transparent 2px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
  padding-bottom: 24px;
  padding-bottom: 1.5rem;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
}
@media screen and (max-width: 768px) {
  .modal__box-left-name {
    line-height: 1.8;
    padding-bottom: 1rem;
    margin-bottom: 1rem;
  }
}
.modal__box-left-name span {
  font-size: 1.125em;
}
.modal__box-right {
  width: 55%;
}
@media screen and (max-width: 768px) {
  .modal__box-right {
    width: 100%;
  }
}
.modal__box-right h3 {
  color: #014ea2;
  margin: 48px auto 24px;
  margin: 3rem auto 1.5rem;
}
@media screen and (max-width: 768px) {
  .modal__box-right h3 {
    margin: 2rem auto 1rem;
  }
}
.modal__box-right p {
  line-height: 2;
}
.modal__box .close {
  position: absolute;
  top: 60px;
  right: 50px;
  width: 68px;
  height: 68px;
}
@media screen and (max-width: 768px) {
  .modal__box .close {
    width: 40px;
    top: 40px;
    right: 30px;
  }
}
.modal__box .close:hover {
  cursor: pointer;
}
.modal__box .close::before, .modal__box .close::after {
  position: absolute;
  content: "";
  background: #d9d9d9;
  width: 68px;
  height: 2px;
  border-radius: 3px;
}
@media screen and (max-width: 768px) {
  .modal__box .close::before, .modal__box .close::after {
    width: 48px;
  }
}
.modal__box .close::before {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.modal__box .close::after {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.modal__box-btn {
  display: block;
  width: 30%;
  margin: 48px auto;
  margin: 3rem auto;
}
@media screen and (max-width: 768px) {
  .modal__box-btn {
    width: 50%;
    margin: 1.5rem auto 2rem;
  }
}
@media screen and (max-width: 480px) {
  .modal__box-btn {
    width: 80%;
  }
}
.modal__box-btn:hover {
  cursor: pointer;
}

.green {
  position: relative;
  background: #edf2f7;
  background-image: linear-gradient(#e7edf4 2px, transparent 0), linear-gradient(90deg, #e7edf4 2px, transparent 0);
  background-size: 25px 25px;
  padding: clamp(50px, 24.544px + 7.95vw, 120px) 0 288px;
  padding: clamp(3.125rem, 1.534rem + 7.95vw, 7.5rem) 0 18rem;
  margin-top: clamp(50px, 12.32px + 10.05vw, 153.008px);
  margin-top: clamp(3.125rem, 0.77rem + 10.05vw, 9.563rem);
}
@media screen and (max-width: 768px) {
  .green {
    padding-bottom: 8rem;
  }
}
.green h2 {
  text-align: center;
  margin-bottom: clamp(48px, 32.64px + 4.1vw, 90px);
  margin-bottom: clamp(3rem, 2.04rem + 4.1vw, 5.625rem);
}
.green h2 .marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(0%, #e2ff00));
  background: linear-gradient(transparent 80%, #e2ff00 0%);
  padding-left: 3px;
}
.green__image {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px;
  gap: 2rem;
}
@media screen and (max-width: 768px) {
  .green__image {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    gap: inherit;
  }
}
.green__image img {
  width: 40%;
  height: 100%;
  border-radius: 300px;
}
@media screen and (max-width: 768px) {
  .green__image img {
    width: 48%;
  }
}
.green__image .image02 {
  margin-top: auto;
  margin-bottom: -32px;
  margin-bottom: -2rem;
}
.green__wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .green__wrap {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
}
.green__wrap-item {
  width: 43%;
}
@media screen and (max-width: 768px) {
  .green__wrap-item {
    width: 100%;
    margin-top: 3rem;
    margin-bottom: 2rem;
  }
}
.green__wrap-item h3 {
  color: #014ea2;
  font-size: clamp(18px, 13.616px + 1.17vw, 30px);
  font-size: clamp(1.125rem, 0.851rem + 1.17vw, 1.875rem);
  font-weight: normal;
  line-height: 2.1;
  margin-bottom: clamp(16px, 15.216px + 2vw, 32px);
  margin-bottom: clamp(1rem, 0.951rem + 2vw, 2rem);
}
@media screen and (max-width: 768px) {
  .green__wrap-item h3 {
    padding: 3px 5px;
  }
}
.green__wrap-item h3 span {
  background: #fff;
  padding: 5px;
}
@media screen and (max-width: 768px) {
  .green__wrap-item h3 span {
    padding: 3px 5px;
  }
}
.green__wrap-item p {
  line-height: 2.2;
  padding-bottom: 10px;
}
.green__wrap-item-melit {
  background: #fff;
  line-height: 2;
  padding: 16px 24px;
  padding: 1rem 1.5rem;
  margin-top: clamp(18px, 15.808px + 0.59vw, 24px);
  margin-top: clamp(1.125rem, 0.988rem + 0.59vw, 1.5rem);
  border: solid 1px #014ea2;
  border-radius: 10px;
}
@media screen and (max-width: 768px) {
  .green__wrap-item-melit {
    font-size: 15px;
    padding: 0.5rem 1.5rem;
  }
}
.green__wrap-item-melit span {
  color: #014ea2;
}

.green_slide {
  margin-top: -220px;
}
@media screen and (max-width: 768px) {
  .green_slide {
    margin-top: -140px;
  }
}
.green_slide .slide {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  overflow: hidden;
  padding: 36.8px 0;
  padding: 2.3rem 0;
}
@media screen and (max-width: 768px) {
  .green_slide .slide {
    padding-bottom: 0;
  }
}
.green_slide .slide__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-animation: loop-list 60s linear infinite;
          animation: loop-list 60s linear infinite;
}
.green_slide .slide__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 440px;
}
@media screen and (max-width: 768px) {
  .green_slide .slide__item {
    width: 280px;
  }
}
.green_slide .slide__item:nth-of-type(2n) img {
  width: 380px;
}
@media screen and (max-width: 768px) {
  .green_slide .slide__item:nth-of-type(2n) img {
    width: 240px;
  }
}
.green_slide .slide__item img {
  border-radius: clamp(0.625rem, 0.168rem + 1.95vw, 1.875rem);
  aspect-ratio: 5/4;
}

.proposal {
  margin-top: clamp(60px, 38.048px + 5.85vw, 120px);
  margin-top: clamp(3.75rem, 2.378rem + 5.85vw, 7.5rem);
}
.proposal__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.proposal__box-item {
  width: 18%;
  border: solid 1px #014ea2;
  border-radius: clamp(0.938rem, 0.595rem + 1.46vw, 1.875rem);
}
@media screen and (max-width: 768px) {
  .proposal__box-item {
    width: 48%;
    margin-bottom: 1.5rem;
  }
}
@media screen and (max-width: 480px) {
  .proposal__box-item {
    width: 100%;
    margin-bottom: 1.5rem;
  }
}
.proposal__box-item img {
  aspect-ratio: 5/4;
  border-radius: clamp(0.938rem, 0.595rem + 1.46vw, 1.875rem) clamp(0.938rem, 0.595rem + 1.46vw, 1.875rem) 0 0;
}
.proposal__box-item h3 {
  color: #014ea2;
  font-size: clamp(18px, 17.264px + 0.2vw, 20px);
  font-size: clamp(1.125rem, 1.079rem + 0.2vw, 1.25rem);
  font-weight: normal;
  text-align: center;
  background-image: linear-gradient(to right, #b2c8e3 3px, transparent 3px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
  background-image: linear-gradient(to right, #b2c8e3 3px, transparent 3px);
  background-size: 8px 2px;
  background-repeat: repeat-x;
  background-position: left bottom;
  padding-bottom: clamp(18px, 15.808px + 0.59vw, 24px);
  padding-bottom: clamp(1.125rem, 0.988rem + 0.59vw, 1.5rem);
  margin: clamp(18px, 15.808px + 0.59vw, 24px) 16px;
  margin: clamp(1.125rem, 0.988rem + 0.59vw, 1.5rem) 1rem;
}
.proposal__box-item p {
  line-height: 1.7;
  margin: 0 16px clamp(20px, 15.616px + 1.17vw, 32px);
  margin: 0 1rem clamp(1.25rem, 0.976rem + 1.17vw, 2rem);
}

.another {
  background-image: linear-gradient(#e7edf4 2px, transparent 0), linear-gradient(90deg, #e7edf4 2px, transparent 0);
  background-size: 25px 25px;
  padding: clamp(50px, 24.544px + 7.95vw, 120px) 0;
  padding: clamp(3.125rem, 1.534rem + 7.95vw, 7.5rem) 0;
  margin: clamp(50px, 12.32px + 10.05vw, 153.008px) auto;
  margin: clamp(3.125rem, 0.77rem + 10.05vw, 9.563rem) auto;
}
.another h2 {
  text-align: center;
}
.another h2 .marker {
  background: -webkit-gradient(linear, left top, left bottom, color-stop(80%, transparent), color-stop(0%, #e2ff00));
  background: linear-gradient(transparent 80%, #e2ff00 0%);
  padding-left: 3px;
}
.another__box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.another__box-item {
  background: #f6f1ed;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
  gap: 1.5rem;
  width: 32%;
  height: 164px;
  padding: clamp(24px, 16.096px + 2.11vw, 45.6px) clamp(20px, 15.616px + 1.15vw, 28.8px);
  padding: clamp(1.5rem, 1.006rem + 2.11vw, 2.85rem) clamp(1.25rem, 0.976rem + 1.15vw, 1.8rem);
  margin-bottom: clamp(20px, 15.616px + 1.17vw, 32px);
  margin-bottom: clamp(1.25rem, 0.976rem + 1.17vw, 2rem);
  border: solid 5px #fff;
  border-radius: 100px;
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, .1490196078);
          box-shadow: 0 3px 6px rgba(0, 0, 0, .1490196078);
}
@media screen and (max-width: 1000px) {
  .another__box-item {
    width: 48%;
    gap: 2rem;
  }
}
@media screen and (max-width: 600px) {
  .another__box-item {
    width: 100%;
    height: 130px;
  }
}
.another__box-item img {
  width: 30%;
}
.another__box-item p {
  color: #014ea2;
  font-size: clamp(18px, 15.808px + 0.59vw, 24px);
  font-size: clamp(1.125rem, 0.988rem + 0.59vw, 1.5rem);
  font-weight: bold;
  text-align: center;
}
.another__box #box-item02 {
  background: #ecf5ed;
}
.another__box #box-item03 {
  background: #eeedf6;
}
.another__box #box-item04 {
  background: #f2f6ed;
}
.another__box #box-item05 {
  background: #ecf1f5;
}
.another__box #box-item06 {
  background: #f6edf6;
}
@media screen and (max-width: 600px) {
  .another__box #box-item06 {
    gap: 1.6rem;
  }
}
.another__etc {
  text-align: right;
}

.greeting {
  margin-top: clamp(60px, 38.048px + 5.85vw, 120px);
  margin-top: clamp(3.75rem, 2.378rem + 5.85vw, 7.5rem);
}
.greeting__content p {
  width: 90%;
  max-width: 840px;
  margin: 0 auto;
  line-height: 2;
  padding-bottom: 10px;
}
.greeting__content p span {
  display: block;
  font-size: 1.25em;
  text-align: center;
  margin-bottom: 2em;
}
/*# sourceMappingURL=style.css.map */
