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

body,
h1,
h2,
h3,
h4,
p,
figure,
blockquote,
dl,
dd,
ul,
ol {
  margin: 0;
  padding: 0;
}

ul:not([role=list]),
ol:not([role=list]) {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
}

body {
  color: #000000;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro", "Yu Gothic Medium", "游ゴシック Medium", YuGothic, "游ゴシック体", "メイリオ", sans-serif;
}

#splash {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100%;
  background: white;
  z-index: 999;
}

a {
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  cursor: pointer;
}
@media (any-hover: hover) {
  a:hover {
    opacity: 0.8;
  }
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  image-rendering: -webkit-optimize-contrast;
  vertical-align: bottom;
}

iframe {
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
}

button {
  border: none;
}

p {
  font-size: 15px;
  font-size: 0.78125vw;
  line-height: 1.8;
}
@media only screen and (max-width: 859px) {
  p {
    font-size: 14px;
    line-height: 22px;
  }
}

main {
  position: relative;
}
@media only screen and (max-width: 859px) {
  main {
    max-width: 414px;
    width: 100%;
    margin: 0 auto;
  }
}

.btn {
  position: relative;
  display: block;
  width: 100%;
  text-align: center;
  cursor: pointer;
}
.btn.arrow_right::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  right: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
}
@media only screen and (max-width: 859px) {
  .btn.arrow_right::before {
    width: 8px;
    height: 8px;
  }
}
@media only screen and (max-width: 859px) {
  .btn.arrow_left {
    text-align: center;
  }
}
.btn.arrow_left::before {
  position: absolute;
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  left: 20px;
  top: 50%;
  transform: translateY(-50%) rotate(-135deg);
}
@media only screen and (max-width: 859px) {
  .btn.arrow_left::before {
    width: 8px;
    height: 8px;
  }
}
.btn.icon::after {
  background: url(../img/external_link_line.svg) no-repeat center center/cover;
  position: absolute;
  content: "";
  width: 20px;
  height: 20px;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
}
@media only screen and (max-width: 960px) {
  .btn.icon::after {
    right: 12px;
  }
}
@media only screen and (max-width: 859px) {
  .btn.icon::after {
    right: 10px;
  }
}

.menu_link {
  position: relative;
  overflow: hidden;
}
.menu_link__text {
  position: relative;
  display: inline-block;
  height: 28px;
  height: 1.4583333333vw;
  line-height: 28px;
  line-height: 1.4583333333vw;
  overflow: hidden;
}
@media only screen and (max-width: 859px) {
  .menu_link__text {
    height: auto;
    line-height: normal;
  }
}
.menu_link__text--first, .menu_link__text--second {
  display: block;
  transition: none;
  will-change: transform, opacity;
}
.menu_link__text--first {
  transform: translateY(0%);
  opacity: 1;
}
.menu_link__text--second {
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(105%);
  opacity: 0;
}
@media (any-hover: hover) {
  .menu_link:hover {
    opacity: 1;
  }
  .menu_link:hover .menu_link__text--first {
    animation: menuLinkOut 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  }
  .menu_link:hover .menu_link__text--second {
    animation: menuLinkIn 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
  }
}

@keyframes menuLinkOut {
  from {
    transform: translateY(0%);
    opacity: 1;
  }
  to {
    transform: translateY(-105%);
    opacity: 0;
  }
}
@keyframes menuLinkIn {
  from {
    transform: translateY(105%);
    opacity: 0;
  }
  to {
    transform: translateY(0%);
    opacity: 1;
  }
}
header {
  background-color: transparent;
  position: fixed;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 10;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 859px) {
  header {
    max-width: 100%;
    height: auto;
  }
}
header .inner {
  padding: 35px 80px 0px;
  padding: 1.8229166667vw 4.1666666667vw 0vw;
}
@media only screen and (max-width: 859px) {
  header .inner {
    padding: 15px 20px;
  }
}
header .header_items {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
header .header_item.logo {
  width: 250px;
  width: 13.0208333333vw;
}
@media only screen and (max-width: 859px) {
  header .header_item.logo {
    width: 130px;
  }
}
header .header_item.menu_items {
  display: flex;
  align-items: center;
  gap: 58px;
  gap: 3.0208333333vw;
}
header .header_item.menu_items .menu_link {
  font-size: 20px;
  font-size: 1.0416666667vw;
  font-weight: 500;
  text-box-trim: trim-both;
}
@media only screen and (max-width: 859px) {
  header .header_item.menu_items .menu_link {
    display: none;
  }
}
header .header_item.menu_items .header_btn_items {
  display: flex;
  align-items: center;
  gap: 12px;
  gap: 0.625vw;
}
@media only screen and (max-width: 859px) {
  header .header_item.menu_items .header_btn_items {
    gap: 10px;
    gap: 2.6666666667vw;
  }
}
header .header_item.menu_items .header_btn {
  display: grid;
  place-content: center;
  width: 240px;
  width: 12.5vw;
  padding: 15px 0px;
  padding: 0.78125vw 0vw;
  border-radius: 100vmax;
}
@media only screen and (max-width: 859px) {
  header .header_item.menu_items .header_btn {
    width: 105px;
    width: 28vw;
    padding: 10px 0px;
    padding: 2.6666666667vw 0vw;
  }
}
header .header_item.menu_items .header_btn.contact {
  position: relative;
  background-color: #3c397f;
  font-family: "Albert Sans", sans-serif;
  color: white;
  font-size: 22px;
  font-size: 1.1458333333vw;
  font-weight: 500;
}
@media only screen and (max-width: 859px) {
  header .header_item.menu_items .header_btn.contact {
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}
@media (any-hover: hover) {
  header .header_item.menu_items .header_btn.contact:hover img {
    top: 43%;
    right: 30px;
    right: 1.5625vw;
  }
}
header .header_item.menu_items .header_btn.contact img {
  position: absolute;
  top: 50%;
  right: 35px;
  right: 1.8229166667vw;
  transform: translateY(-50%);
  width: 20px;
  width: 1.0416666667vw;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 859px) {
  header .header_item.menu_items .header_btn.contact img {
    display: none;
  }
}
header .open_btn {
  display: none;
}
@media only screen and (max-width: 859px) {
  header .open_btn {
    display: block;
    box-shadow: rgba(0, 0, 0, 0.16) 0px 2px 4px;
    border-radius: 100vmax;
  }
}

nav {
  display: none;
}
@media only screen and (max-width: 859px) {
  nav {
    display: block;
    background-color: #3c397f;
    position: fixed;
    top: 0;
    right: 0;
    width: 77%;
    height: 100lvh;
    transition: all 0.3s ease;
    z-index: 99;
    transform: translateX(100%);
  }
}
nav .inner {
  padding: 55px 30px;
  padding: 14.6666666667vw 8vw;
}
nav .link_items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  gap: 13.3333333333vw;
  margin-top: 60px;
  margin-top: 16vw;
}
nav h3 {
  color: white;
  font-size: 14px;
  font-size: 3.7333333333vw;
  font-weight: bold;
  line-height: 1.4285714286;
  letter-spacing: 0em;
}
nav h3::before {
  content: attr(data-en);
  display: block;
  font-family: "Albert Sans", sans-serif;
  color: white;
  font-size: 28px;
  font-size: 7.4666666667vw;
  font-weight: bold;
  line-height: 1.2142857143;
  letter-spacing: 0.1em;
}
nav ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  gap: 2.6666666667vw;
  margin-top: 20px;
  margin-top: 5.3333333333vw;
  padding-left: 20px;
  padding-left: 5.3333333333vw;
}
nav li a {
  color: white;
  font-size: 16px;
  font-size: 4.2666666667vw;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0em;
  text-decoration: none;
}
nav .btn_area {
  display: grid;
  place-content: center;
  margin-top: 60px;
  margin-top: 16vw;
}
nav .btn_area a {
  background: linear-gradient(90deg, rgb(251, 205, 206) 0%, rgb(225, 73, 92) 20%, rgb(15, 0, 78) 45%, rgb(15, 0, 78) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  gap: 2.6666666667vw;
  width: 225px;
  width: 60vw;
  height: 60px;
  height: 16vw;
  font-family: "Albert Sans", sans-serif;
  color: white;
  font-size: 18px;
  font-size: 4.8vw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  border-radius: 10px;
}
nav .btn_area a img {
  width: 17px;
  width: 4.5333333333vw;
  margin-bottom: 5px;
  margin-bottom: 1.3333333333vw;
}

.open {
  transform: translateX(0%);
}

.close {
  position: absolute;
  top: 20px;
  top: 5.3333333333vw;
  right: 20px;
  right: 5.3333333333vw;
  width: 40px;
  width: 10.6666666667vw;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 2px 4px;
  border-radius: 100vmax;
}

#contact {
  position: relative;
  background-color: white;
  overflow: hidden;
}
#contact .inner {
  position: relative;
  padding: 100px 250px 300px;
  padding: 5.2083333333vw 13.0208333333vw 15.625vw;
}
@media only screen and (max-width: 859px) {
  #contact .inner {
    padding: 100px 20px;
  }
}
#contact .text {
  background: url(../img/footer/contact.webp) no-repeat center center/cover;
  display: block;
  width: 1420px;
  width: 73.9583333333vw;
  height: 420px;
  height: 21.875vw;
  padding: 115px 100px 95px;
  padding: 5.9895833333vw 5.2083333333vw 4.9479166667vw;
  border-radius: 10px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 20px;
}
@media only screen and (max-width: 859px) {
  #contact .text {
    background: url(../img/footer/contact_sp.webp) no-repeat center center/cover;
    width: 335px;
    width: 89.3333333333vw;
    width: 100%;
    height: 295px;
    height: 78.6666666667vw;
    padding: 25px 25px 100px;
    padding: 6.6666666667vw 6.6666666667vw 26.6666666667vw;
    border-radius: 20px;
  }
}
@media (any-hover: hover) {
  #contact .text:hover {
    opacity: 1;
    background: url(../img/footer/contact_hover.webp) no-repeat center center/cover;
  }
  #contact .text:hover::before {
    background: url(../img/arrow_btn.svg) no-repeat center center/cover #3c397f;
    background-size: 16px 9px;
    background-size: 0.8333333333vw 0.46875vw;
    right: 15px;
    right: 0.78125vw;
    width: 35px;
    width: 1.8229166667vw;
    height: 35px;
    height: 1.8229166667vw;
  }
}
#contact h2 {
  font-size: 28px;
  font-size: 1.4583333333vw;
  font-weight: 500;
  line-height: 1.6;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 859px) {
  #contact h2 {
    font-size: 14px;
    font-size: 3.7333333333vw;
    line-height: 2.1428571429;
    letter-spacing: 0.02em;
  }
}
#contact h2::before {
  content: attr(data-en);
  display: block;
  font-family: "anisette-std", sans-serif;
  font-size: 80px;
  font-size: 4.1666666667vw;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 859px) {
  #contact h2::before {
    font-size: 42px;
    font-size: 11.2vw;
  }
}
#contact p {
  font-size: 20px;
  font-size: 1.0416666667vw;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.02em;
  margin-top: 30px;
  margin-top: 1.5625vw;
}
@media only screen and (max-width: 859px) {
  #contact p {
    font-size: 16px;
    font-size: 4.2666666667vw;
    line-height: 1.5625;
    letter-spacing: 0em;
    margin-top: 30px;
    margin-top: 8vw;
  }
}

footer {
  position: relative;
  background: url(../img/footer/path.svg) no-repeat center top/cover white;
  background-size: contain;
}
@media only screen and (max-width: 859px) {
  footer {
    background: url(../img/footer/path_sp.svg) no-repeat center top/cover white;
    background-size: contain;
  }
}
footer .inner {
  padding: 115px 250px 40px;
  padding: 5.9895833333vw 13.0208333333vw 2.0833333333vw;
}
@media only screen and (max-width: 859px) {
  footer .inner {
    padding: 40px 20px;
  }
}
footer .footer_items {
  display: grid;
  grid-template-columns: 1fr;
}
footer .footer_item.logo {
  display: grid;
  place-content: center;
}
@media only screen and (max-width: 859px) {
  footer .footer_item.logo {
    display: none;
  }
}
footer .footer_item.logo img {
  width: 247px;
  width: 12.8645833333vw;
}
@media only screen and (max-width: 859px) {
  footer .footer_item.logo img {
    width: 154px;
    width: 41.0666666667vw;
  }
}
footer .footer_item.logo_sp {
  display: none;
}
@media only screen and (max-width: 859px) {
  footer .footer_item.logo_sp {
    display: block;
    margin-top: 40px;
    margin-top: 10.6666666667vw;
  }
}
footer .footer_item.logo_sp img {
  width: 247px;
  width: 12.8645833333vw;
}
@media only screen and (max-width: 859px) {
  footer .footer_item.logo_sp img {
    width: 154px;
    width: 41.0666666667vw;
  }
}
footer .footer_item.title {
  margin-top: 15px;
  margin-top: 0.78125vw;
}
@media only screen and (max-width: 859px) {
  footer .footer_item.title {
    margin-top: 0;
  }
}
footer .footer_item.title h2 {
  font-size: 30px;
  font-size: 1.5625vw;
  font-weight: 600;
  text-align: center;
  line-height: 1.3333333333;
  letter-spacing: 0em;
}
@media only screen and (max-width: 859px) {
  footer .footer_item.title h2 {
    font-size: 24px;
    font-size: 6.4vw;
    line-height: 1.4583333333;
    letter-spacing: 0em;
  }
}
footer .footer_item.link {
  display: grid;
  place-content: center;
  margin-top: 45px;
  margin-top: 2.34375vw;
}
@media only screen and (max-width: 859px) {
  footer .footer_item.link {
    margin-top: 60px;
    margin-top: 16vw;
  }
}
footer .footer_item.link .link_items {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 75px;
  gap: 3.90625vw;
}
footer .footer_item.link h3 {
  font-size: 14px;
  font-size: 0.7291666667vw;
  font-weight: bold;
  line-height: 1.4285714286;
  letter-spacing: 0em;
}
@media only screen and (max-width: 859px) {
  footer .footer_item.link h3 {
    font-size: 14px;
    font-size: 3.7333333333vw;
    line-height: 1.4285714286;
    letter-spacing: 0em;
  }
}
footer .footer_item.link h3::before {
  content: attr(data-en);
  display: block;
  font-family: "Albert Sans", sans-serif;
  color: #3c397f;
  font-size: 28px;
  font-size: 1.4583333333vw;
  font-weight: bold;
  line-height: 1.2142857143;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 859px) {
  footer .footer_item.link h3::before {
    font-size: 28px;
    font-size: 7.4666666667vw;
  }
}
footer .footer_item.link ul {
  display: grid;
  grid-template-columns: 1fr;
  gap: 5px;
  gap: 0.2604166667vw;
  margin-top: 20px;
  margin-top: 1.0416666667vw;
  padding-left: 10px;
  padding-left: 0.5208333333vw;
}
@media only screen and (max-width: 859px) {
  footer .footer_item.link ul {
    gap: 5px;
    gap: 1.3333333333vw;
    margin-top: 10px;
    margin-top: 2.6666666667vw;
    padding-left: 10px;
    padding-left: 2.6666666667vw;
  }
}
footer .footer_item.link li a {
  color: #939393;
  font-size: 16px;
  font-size: 0.8333333333vw;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0em;
  text-decoration: none;
}
@media only screen and (max-width: 859px) {
  footer .footer_item.link li a {
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}
footer .footer_item.btn_area {
  display: grid;
  place-content: center;
  margin-top: 60px;
  margin-top: 3.125vw;
}
@media only screen and (max-width: 859px) {
  footer .footer_item.btn_area {
    margin-top: 60px;
    margin-top: 16vw;
  }
}
footer .footer_item.btn_area a {
  background: linear-gradient(90deg, rgb(251, 205, 206) 0%, rgb(225, 73, 92) 20%, rgb(15, 0, 78) 45%, rgb(15, 0, 78) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  gap: 0.625vw;
  width: 370px;
  width: 19.2708333333vw;
  height: 70px;
  height: 3.6458333333vw;
  font-family: "Albert Sans", sans-serif;
  color: white;
  font-size: 22px;
  font-size: 1.1458333333vw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0em;
  border-radius: 10px;
}
@media only screen and (max-width: 859px) {
  footer .footer_item.btn_area a {
    gap: 10px;
    gap: 2.6666666667vw;
    width: 309px;
    width: 82.4vw;
    height: 60px;
    height: 16vw;
    font-size: 18px;
    font-size: 4.8vw;
    line-height: 1;
  }
}
footer .footer_item.btn_area a img {
  width: 20px;
  width: 1.0416666667vw;
}
@media only screen and (max-width: 859px) {
  footer .footer_item.btn_area a img {
    width: 17px;
    width: 4.5333333333vw;
    margin-bottom: 5px;
    margin-bottom: 1.3333333333vw;
  }
}
@media (any-hover: hover) {
  footer .footer_item.btn_area a:hover {
    opacity: 1;
  }
  footer .footer_item.btn_area a:hover::before {
    background: url(../img/arrow_btn.svg) no-repeat center center/cover #3c397f;
    background-size: 16px 9px;
    background-size: 0.8333333333vw 0.46875vw;
    right: 15px;
    right: 0.78125vw;
    width: 35px;
    width: 1.8229166667vw;
    height: 35px;
    height: 1.8229166667vw;
  }
}
footer .footer_item.info {
  display: grid;
  place-content: center;
  margin-top: 90px;
  margin-top: 4.6875vw;
}
@media only screen and (max-width: 859px) {
  footer .footer_item.info {
    place-content: flex-start;
    margin-top: 10px;
    margin-top: 2.6666666667vw;
  }
}
footer .footer_item.info p {
  color: #939393;
  font-size: 14px;
  font-size: 0.7291666667vw;
  font-weight: 500;
  line-height: 1.4285714286;
  letter-spacing: 0em;
}
@media only screen and (max-width: 859px) {
  footer .footer_item.info p {
    font-size: 14px;
    font-size: 3.7333333333vw;
    line-height: 1.4285714286;
    letter-spacing: 0em;
  }
}

.pc {
  display: block !important;
}
@media only screen and (max-width: 859px) {
  .pc {
    display: none !important;
  }
}

.tablet {
  display: none !important;
}
@media only screen and (max-width: 960px) {
  .tablet {
    display: block !important;
  }
}

.sp {
  display: none !important;
}
@media only screen and (max-width: 859px) {
  .sp {
    display: block !important;
  }
}

.gradation {
  background: linear-gradient(90deg, rgb(225, 73, 92) 0%, rgb(255, 240, 241) 50%, rgb(251, 205, 206) 100%);
  display: grid;
  place-content: center;
  width: 248px;
  width: 12.9166666667vw;
  height: 66px;
  height: 3.4375vw;
  border-radius: 100vmax;
}
@media only screen and (max-width: 859px) {
  .gradation {
    width: 248px;
    width: 66.1333333333vw;
    height: 66px;
    height: 17.6vw;
  }
}

.btn.main {
  background-color: white;
  display: grid;
  place-content: center;
  width: 238px;
  width: 12.3958333333vw;
  height: 58px;
  height: 3.0208333333vw;
  color: #3c397f;
  font-size: 18px;
  font-size: 0.9375vw;
  font-weight: 600;
  line-height: 1.4444444444;
  letter-spacing: 0em;
  border-radius: 100vmax;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 2px 2px;
}
@media only screen and (max-width: 859px) {
  .btn.main {
    width: 238px;
    width: 63.4666666667vw;
    height: 58px;
    height: 15.4666666667vw;
    font-size: 16px;
    font-size: 4.2666666667vw;
  }
}
@media (any-hover: hover) {
  .btn.main:hover {
    opacity: 1;
  }
  .btn.main:hover::before {
    background: url(../img/arrow_btn.svg) no-repeat center center/cover #3c397f;
    background-size: 16px 9px;
    background-size: 0.8333333333vw 0.46875vw;
    right: 15px;
    right: 0.78125vw;
    width: 35px;
    width: 1.8229166667vw;
    height: 35px;
    height: 1.8229166667vw;
  }
}
.btn.main::before {
  content: "";
  background: #3c397f;
  position: absolute;
  top: 50%;
  right: 35px;
  right: 1.8229166667vw;
  transform: translateY(-50%);
  width: 6px;
  width: 0.3125vw;
  height: 6px;
  height: 0.3125vw;
  border-radius: 100vmax;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 859px) {
  .btn.main::before {
    width: 6px;
    width: 1.6vw;
    height: 6px;
    height: 1.6vw;
    right: 35px;
    right: 9.3333333333vw;
  }
}

#top_fv {
  position: relative;
  margin-top: 60px;
  margin-top: 3.125vw;
}
@media only screen and (max-width: 859px) {
  #top_fv {
    margin-top: 0;
  }
}
#top_fv .fv_bg_anim {
  position: absolute;
  inset: 0;
  background: url(../img/top/fv_bg.webp) no-repeat center center/cover;
  z-index: 1;
  will-change: top, left, width, height, opacity, transform;
}
@media only screen and (max-width: 859px) {
  #top_fv .fv_bg_anim {
    display: none;
  }
}
#top_fv .inner {
  position: relative;
  padding: 240px 80px 40px;
  padding: 12.5vw 4.1666666667vw 2.0833333333vw;
  z-index: 2;
}
@media only screen and (max-width: 859px) {
  #top_fv .inner {
    padding: 0;
  }
}
#top_fv .img {
  width: 1190px;
  width: 61.9791666667vw;
  margin: 0 auto;
  margin-bottom: 20px;
  margin-bottom: 1.0416666667vw;
}
@media only screen and (max-width: 859px) {
  #top_fv .img {
    width: 100%;
    margin: 0;
  }
}
#top_fv .img_text {
  width: 1040px;
  width: 54.1666666667vw;
  margin-top: 37px;
  margin-top: 1.9270833333vw;
}
@media only screen and (max-width: 859px) {
  #top_fv .img_text {
    width: 333px;
    width: 88.8vw;
    margin-top: 17px;
    margin-top: 4.5333333333vw;
  }
}
#top_fv .text_area {
  position: relative;
}
@media only screen and (max-width: 859px) {
  #top_fv .text_area {
    position: absolute;
    top: 200px;
    top: 53.3333333333vw;
    left: 20px;
    left: 5.3333333333vw;
  }
}
#top_fv h2 {
  font-size: 38px;
  font-size: 1.9791666667vw;
  font-weight: 600;
  line-height: 1.3947368421;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 859px) {
  #top_fv h2 {
    font-size: 22px;
    font-size: 5.8666666667vw;
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
}
#top_fv .scroll_down {
  position: absolute;
  right: 80px;
  right: 4.1666666667vw;
  bottom: 50px;
  bottom: 2.6041666667vw;
  width: 20px;
  width: 1.0416666667vw;
}
@media only screen and (max-width: 859px) {
  #top_fv .scroll_down {
    left: 10px;
    right: auto;
    width: 20px;
    width: 5.3333333333vw;
  }
}
#top_fv .scroll_down::before {
  content: "";
  background: #e1495c;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  width: 0.5208333333vw;
  height: 10px;
  height: 0.5208333333vw;
  border-radius: 50%;
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
@media only screen and (max-width: 859px) {
  #top_fv .scroll_down::before {
    width: 10px;
    width: 2.6666666667vw;
    height: 10px;
    height: 2.6666666667vw;
  }
}
#top_fv .scroll_down p {
  font-family: "Albert Sans", sans-serif;
  font-size: 20px;
  font-size: 1.0416666667vw;
  font-weight: 500;
  line-height: 1;
  margin-bottom: 30px;
  margin-bottom: 1.5625vw;
  writing-mode: vertical-lr;
}
@media only screen and (max-width: 859px) {
  #top_fv .scroll_down p {
    font-size: 18px;
    font-size: 4.8vw;
    margin-bottom: 20px;
    margin-bottom: 5.3333333333vw;
    transform: rotate(180deg);
  }
}
@keyframes circlemove {
  0% {
    bottom: 100px;
  }
  100% {
    bottom: 0px;
  }
}
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}

#top_message {
  position: relative;
  background-color: #f7f7fd;
  -webkit-mask-image: url("../img/top/message_bg.svg");
          mask-image: url("../img/top/message_bg.svg");
  -webkit-mask-size: cover;
          mask-size: cover;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: top center;
          mask-position: top center;
}
@media only screen and (max-width: 859px) {
  #top_message {
    -webkit-mask-image: url("../img/top/message_bg_sp.svg");
            mask-image: url("../img/top/message_bg_sp.svg");
  }
}
#top_message::after {
  content: "";
  background: linear-gradient(0deg, rgb(255, 255, 255) 20%, rgb(247, 247, 253) 100%);
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  height: 5.2083333333vw;
}
@media only screen and (max-width: 859px) {
  #top_message::after {
    height: 50px;
    bottom: 60px;
  }
}
#top_message .inner {
  position: relative;
  padding: 265px 250px 300px;
  padding: 13.8020833333vw 13.0208333333vw 15.625vw;
  z-index: 2;
}
@media only screen and (max-width: 859px) {
  #top_message .inner {
    padding: 260px 20px 120px;
  }
}
#top_message .img01 {
  position: absolute;
  top: 195px;
  top: 10.15625vw;
}
@media only screen and (max-width: 859px) {
  #top_message .img01 {
    top: 60px;
    top: 16vw;
  }
}
#top_message .sub_title {
  display: flex;
  align-items: center;
  gap: 15px;
  gap: 0.78125vw;
  margin-bottom: 20px;
  margin-bottom: 1.0416666667vw;
}
@media only screen and (max-width: 859px) {
  #top_message .sub_title {
    gap: 15px;
    gap: 4vw;
    margin-bottom: 20px;
    margin-bottom: 5.3333333333vw;
  }
}
#top_message .sub_title img {
  width: 90px;
  width: 4.6875vw;
}
@media only screen and (max-width: 859px) {
  #top_message .sub_title img {
    width: 90px;
    width: 24vw;
  }
}
#top_message .sub_title p {
  font-family: "anisette-std", sans-serif;
  color: #e1495c;
  font-size: 28px;
  font-size: 1.4583333333vw;
  font-weight: 500;
  line-height: 1.3214285714;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 859px) {
  #top_message .sub_title p {
    font-size: 22px;
    font-size: 5.8666666667vw;
    line-height: 1.3636363636;
    letter-spacing: 0.03em;
  }
}
#top_message .text_area {
  width: 545px;
  width: 28.3854166667vw;
}
@media only screen and (max-width: 859px) {
  #top_message .text_area {
    width: 100%;
  }
}
#top_message h2 {
  font-size: 44px;
  font-size: 2.2916666667vw;
  font-weight: 600;
  line-height: 1.5909090909;
  letter-spacing: 0em;
  margin-bottom: 40px;
  margin-bottom: 2.0833333333vw;
}
@media only screen and (max-width: 859px) {
  #top_message h2 {
    font-size: 28px;
    font-size: 7.4666666667vw;
    line-height: 1.4285714286;
    letter-spacing: 0.02em;
    margin-bottom: 20px;
    margin-bottom: 5.3333333333vw;
  }
}
#top_message p {
  font-size: 20px;
  font-size: 1.0416666667vw;
  font-weight: 500;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 859px) {
  #top_message p {
    font-size: 16px;
    font-size: 4.2666666667vw;
    line-height: 1.875;
    letter-spacing: 0.02em;
  }
}
#top_message .btn_area {
  display: flex;
  justify-content: end;
  margin-top: 60px;
  margin-top: 3.125vw;
}
@media only screen and (max-width: 859px) {
  #top_message .btn_area {
    justify-content: center;
    margin-top: 50px;
    margin-top: 13.3333333333vw;
  }
}

#top_movie {
  position: relative;
}
#top_movie .inner {
  padding: 0px 250px;
  padding: 0vw 13.0208333333vw;
}
@media only screen and (max-width: 859px) {
  #top_movie .inner {
    padding: 0;
    height: 310px;
    height: 82.6666666667vw;
  }
}
#top_movie .movie_area {
  width: 1143px;
  width: 59.53125vw;
  margin: 0 auto;
}
@media only screen and (max-width: 859px) {
  #top_movie .movie_area {
    display: grid;
    place-content: center;
    width: 100%;
    margin-top: -20%;
    overflow-x: hidden;
  }
}
#top_movie img,
#top_movie video {
  width: 1143px;
  width: 59.53125vw;
  margin: 0 auto;
}
@media only screen and (max-width: 859px) {
  #top_movie img,
  #top_movie video {
    max-width: none;
    width: 500px;
    width: 133.3333333333vw;
  }
}

#top_service {
  position: relative;
}
#top_service .inner {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr;
  gap: 60px 0px;
  gap: 3.125vw 0vw;
  grid-template-areas: ". btn_area" "service_items service_items";
  padding: 100px 250px 300px;
  padding: 5.2083333333vw 13.0208333333vw 15.625vw;
}
@media only screen and (max-width: 859px) {
  #top_service .inner {
    grid-template-columns: 1fr;
    grid-template-areas: "." "service_items" "btn_area";
    gap: 35px;
    gap: 9.3333333333vw;
    padding: 40px 20px 100px;
  }
}
#top_service .title_items {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media only screen and (max-width: 859px) {
  #top_service .title_items {
    flex-direction: column;
  }
}
#top_service .title_item.title {
  display: flex;
  align-items: center;
  gap: 30px;
  gap: 1.5625vw;
}
@media only screen and (max-width: 859px) {
  #top_service .title_item.title {
    flex-direction: column;
    align-items: flex-start;
  }
}
#top_service .title_item p {
  font-size: 20px;
  font-size: 1.0416666667vw;
  font-weight: 500;
  line-height: 1.7;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 859px) {
  #top_service .title_item p {
    font-size: 16px;
    font-size: 4.2666666667vw;
    line-height: 1.875;
    letter-spacing: 0.02em;
  }
}
#top_service .btn_area {
  grid-area: btn_area;
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 859px) {
  #top_service .btn_area {
    justify-content: center;
  }
}
#top_service .sub_title {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
  gap: 1.0416666667vw;
}
@media only screen and (max-width: 859px) {
  #top_service .sub_title {
    gap: 15px;
    gap: 4vw;
    margin-bottom: 20px;
    margin-bottom: 5.3333333333vw;
  }
}
#top_service .sub_title img {
  width: 90px;
  width: 4.6875vw;
}
@media only screen and (max-width: 859px) {
  #top_service .sub_title img {
    width: 90px;
    width: 24vw;
  }
}
#top_service .sub_title h2 {
  font-size: 28px;
  font-size: 1.4583333333vw;
  font-weight: 500;
  line-height: 2.1428571429;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 859px) {
  #top_service .sub_title h2 {
    font-size: 20px;
    font-size: 5.3333333333vw;
    line-height: 1.75;
    letter-spacing: 0.02em;
  }
}
#top_service .sub_title h2::before {
  content: attr(data-en);
  display: block;
  font-family: "anisette-std", sans-serif;
  color: #e1495c;
  font-size: 80px;
  font-size: 4.1666666667vw;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 859px) {
  #top_service .sub_title h2::before {
    font-size: 44px;
    font-size: 11.7333333333vw;
  }
}
#top_service .service_items {
  grid-area: service_items;
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 20px;
  gap: 1.0416666667vw;
}
@media only screen and (max-width: 859px) {
  #top_service .service_items {
    grid-template-columns: 1fr;
    gap: 15px;
    gap: 4vw;
  }
}
#top_service .service_item {
  position: relative;
  color: white;
  border-radius: 15px;
  border-radius: 0.78125vw;
  overflow: hidden;
  transition: all 0.3s ease;
}
@media only screen and (max-width: 859px) {
  #top_service .service_item {
    border-radius: 15px;
  }
}
#top_service .service_item::before {
  content: "";
  background-color: rgb(145, 145, 145);
  mix-blend-mode: multiply;
  position: absolute;
  inset: 0;
  border-radius: 15px;
  border-radius: 0.78125vw;
  transition: all 0.3s ease;
}
@media (any-hover: hover) {
  #top_service .service_item:hover {
    opacity: 1;
  }
  #top_service .service_item:hover.item01, #top_service .service_item:hover.item02, #top_service .service_item:hover.item03 {
    background-size: 120%;
  }
  #top_service .service_item:hover::before {
    background-color: rgba(145, 145, 145, 0);
  }
  #top_service .service_item:hover .btn_area .btn.main::before {
    background: url(../img/arrow_btn.svg) no-repeat center center/cover #3c397f;
    background-size: 16px 9px;
    background-size: 0.8333333333vw 0.46875vw;
    right: 10px;
    right: 0.5208333333vw;
    width: 30px;
    width: 1.5625vw;
    height: 30px;
    height: 1.5625vw;
  }
}
#top_service .service_item .item_inner {
  position: relative;
  padding: 55px 40px;
  padding: 2.8645833333vw 2.0833333333vw;
  z-index: 2;
}
@media only screen and (max-width: 859px) {
  #top_service .service_item .item_inner {
    display: grid;
    grid-template-columns: 1fr auto;
    grid-template-rows: 1fr auto;
    grid-template-areas: "item_title item_title" ". btn_area";
    padding: 20px;
    height: 230px;
    height: 61.3333333333vw;
  }
}
#top_service .service_item.item01 {
  background: url(../img/top/service_img01.webp) no-repeat center center/cover;
  background-size: 105%;
}
@media only screen and (max-width: 859px) {
  #top_service .service_item.item01 {
    background: url(../img/top/service_img01_sp.webp) no-repeat center center/cover;
  }
}
#top_service .service_item.item02 {
  background: url(../img/top/service_img02.webp) no-repeat center center/cover;
  background-size: 105%;
}
@media only screen and (max-width: 859px) {
  #top_service .service_item.item02 {
    background: url(../img/top/service_img02_sp.webp) no-repeat center center/cover;
  }
}
#top_service .service_item.item03 {
  background: url(../img/top/service_img03.webp) no-repeat center center/cover;
  background-size: 105%;
}
@media only screen and (max-width: 859px) {
  #top_service .service_item.item03 {
    background: url(../img/top/service_img03_sp.webp) no-repeat center center/cover;
  }
}
#top_service .service_item.item03 .item_title {
  margin-bottom: 310px;
  margin-bottom: 16.1458333333vw;
}
@media only screen and (max-width: 859px) {
  #top_service .service_item.item03 .item_title {
    margin-bottom: 0;
  }
}
#top_service .service_item .item_title {
  display: flex;
  gap: 10px;
  gap: 0.5208333333vw;
  margin-bottom: 343px;
  margin-bottom: 17.8645833333vw;
}
@media only screen and (max-width: 859px) {
  #top_service .service_item .item_title {
    grid-area: item_title;
    gap: 10px;
    gap: 2.6666666667vw;
    margin-bottom: 0;
  }
}
#top_service .service_item .item_title p {
  font-family: "Albert Sans", sans-serif;
  font-size: 28px;
  font-size: 1.4583333333vw;
  font-weight: 500;
  line-height: 1.2142857143;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 859px) {
  #top_service .service_item .item_title p {
    font-size: 18px;
    font-size: 4.8vw;
    line-height: 1.2222222222;
    letter-spacing: 0.1em;
  }
}
#top_service .service_item h2 {
  font-size: 26px;
  font-size: 1.3541666667vw;
  font-weight: bold;
  line-height: 1.4230769231;
  letter-spacing: 0.03em;
  margin-bottom: 15px;
  margin-bottom: 0.78125vw;
}
@media only screen and (max-width: 859px) {
  #top_service .service_item h2 {
    font-size: 22px;
    font-size: 5.8666666667vw;
    line-height: 2;
    letter-spacing: 0.03em;
    margin-bottom: 0;
  }
}
#top_service .service_item p.item_text {
  font-size: 16px;
  font-size: 0.8333333333vw;
  font-weight: 500;
  line-height: 1.5625;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 859px) {
  #top_service .service_item p.item_text {
    display: none;
  }
}
#top_service .service_item .btn_area {
  display: flex;
  justify-content: end;
  margin-top: 45px;
  margin-top: 2.34375vw;
}
@media only screen and (max-width: 859px) {
  #top_service .service_item .btn_area {
    margin-top: 0;
  }
}
#top_service .service_item .btn_area .gradation {
  width: 190px;
  width: 9.8958333333vw;
  height: 50px;
  height: 2.6041666667vw;
}
@media only screen and (max-width: 859px) {
  #top_service .service_item .btn_area .gradation {
    display: none;
  }
}
#top_service .service_item .btn_area .btn.main {
  width: 184px;
  width: 9.5833333333vw;
  height: 44px;
  height: 2.2916666667vw;
}
#top_service .service_item .btn_area .btn.main::before {
  right: 20px;
  right: 1.0416666667vw;
}

#top_retail {
  position: relative;
  margin-bottom: 360px;
  margin-bottom: 18.75vw;
}
#top_retail .retail_items {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
}
@media only screen and (max-width: 859px) {
  #top_retail .retail_items {
    grid-template-columns: 1fr;
  }
}
#top_retail .retail_item.text {
  background: url(../img/top/retail_img02.webp) no-repeat center center/cover;
  padding: 190px 50px 120px;
  padding: 9.8958333333vw 2.6041666667vw 6.25vw;
}
@media only screen and (max-width: 859px) {
  #top_retail .retail_item.text {
    background: url(../img/top/retail_img02_sp.webp) no-repeat center center/cover;
    padding: 45px 20px 90px;
  }
}
#top_retail .retail_item h2 {
  font-family: "anisette-std", sans-serif;
  color: white;
  font-size: 80px;
  font-size: 4.1666666667vw;
  font-weight: 500;
  line-height: 1.125;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 859px) {
  #top_retail .retail_item h2 {
    font-size: 44px;
    font-size: 11.7333333333vw;
    line-height: 1.1363636364;
    letter-spacing: 0.03em;
  }
}
#top_retail .retail_item h2::after {
  content: attr(data-ja);
  display: block;
  color: white;
  font-size: 28px;
  font-size: 1.4583333333vw;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.02em;
  margin-top: 10px;
  margin-top: 0.5208333333vw;
}
@media only screen and (max-width: 859px) {
  #top_retail .retail_item h2::after {
    font-size: 20px;
    font-size: 5.3333333333vw;
    margin-top: 10px;
    margin-top: 2.6666666667vw;
  }
}
#top_retail .retail_item p {
  color: white;
  font-size: 20px;
  font-size: 1.0416666667vw;
  font-weight: 500;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.02em;
  margin-top: 160px;
  margin-top: 8.3333333333vw;
}
@media only screen and (max-width: 859px) {
  #top_retail .retail_item p {
    font-size: 16px;
    font-size: 4.2666666667vw;
    text-align: left;
    line-height: 1.875;
    letter-spacing: 0.02em;
    margin-top: 45px;
    margin-top: 12vw;
  }
}
#top_retail .retail_item .btn_area {
  display: flex;
  justify-content: center;
  margin-top: 55px;
  margin-top: 2.8645833333vw;
}
@media only screen and (max-width: 859px) {
  #top_retail .retail_item .btn_area {
    margin-top: 45px;
    margin-top: 12vw;
  }
}

.line_area {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100vh;
  overflow-x: hidden;
  z-index: 2;
}

.page_line {
  position: absolute;
  top: -40px;
  right: -10%;
}
@media only screen and (max-width: 859px) {
  .page_line {
    top: -1%;
    right: -45%;
    transform: rotate(15deg);
  }
}
.page_line svg {
  width: 1100px;
  width: 57.2916666667vw;
}
@media only screen and (max-width: 859px) {
  .page_line svg {
    width: 470px;
    width: 125.3333333333vw;
  }
}

.page_bg {
  background-color: white;
  position: fixed;
  inset: 0;
}
.page_bg .page_bg_wrap {
  width: 100%;
  height: 100%;
  border-radius: 0;
}
.page_bg img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 859px) {
  .page_bg img {
    height: 100lvh;
  }
}
@media (min-height: 1414px) {
  .page_bg img {
    height: 100vh;
  }
}

#page_fv {
  position: relative;
  height: 100vh;
  z-index: 2;
}
@media (min-width: 1920px) {
  #page_fv {
    height: 100%;
  }
}
@media (max-height: 935px) {
  #page_fv {
    height: 100%;
  }
}
@media only screen and (max-width: 859px) {
  #page_fv {
    min-height: 100lvh;
  }
}
#page_fv .inner {
  padding: 175px 250px 240px;
  padding: 9.1145833333vw 13.0208333333vw 12.5vw;
}
@media only screen and (max-width: 859px) {
  #page_fv .inner {
    padding: 125px 20px 0px;
  }
}
#page_fv .fv_items {
  display: grid;
  grid-template-columns: 1fr auto;
}
@media only screen and (max-width: 859px) {
  #page_fv .fv_items {
    grid-template-columns: 1fr;
  }
}
#page_fv .fv_item.text {
  width: 560px;
  width: 29.1666666667vw;
  margin-top: 325px;
  margin-top: 16.9270833333vw;
}
@media only screen and (max-width: 859px) {
  #page_fv .fv_item.text {
    width: 100%;
    margin-top: 70px;
    margin-top: 18.6666666667vw;
  }
}
#page_fv h2 {
  font-size: 28px;
  font-size: 1.4583333333vw;
  font-weight: 500;
  line-height: 2.1428571429;
  letter-spacing: 0em;
}
@media only screen and (max-width: 859px) {
  #page_fv h2 {
    font-size: 20px;
    font-size: 5.3333333333vw;
    line-height: 1;
    letter-spacing: 0.02em;
  }
}
#page_fv h2::after {
  content: attr(data-en);
  display: block;
  font-family: "anisette-std", sans-serif;
  font-size: 80px;
  font-size: 4.1666666667vw;
  font-weight: 500;
  line-height: 1.125;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 859px) {
  #page_fv h2::after {
    font-size: 44px;
    font-size: 11.7333333333vw;
    line-height: 1.1363636364;
    letter-spacing: 0.03em;
    margin-top: 15px;
    margin-top: 4vw;
  }
}
#page_fv h3 {
  color: white;
  font-size: 44px;
  font-size: 2.2916666667vw;
  font-weight: 600;
  line-height: 1.5909090909;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 859px) {
  #page_fv h3 {
    font-size: 28px;
    font-size: 7.4666666667vw;
    line-height: 1.3571428571;
    letter-spacing: 0.02em;
  }
}
#page_fv p.title_en {
  font-family: "Albert Sans", sans-serif;
  color: white;
  font-size: 20px;
  font-size: 1.0416666667vw;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0.08em;
  margin-top: 15px;
  margin-top: 0.78125vw;
}
@media only screen and (max-width: 859px) {
  #page_fv p.title_en {
    font-size: 16px;
    font-size: 4.2666666667vw;
    line-height: 1.1875;
    letter-spacing: 0.08em;
  }
}
#page_fv p.lead_text {
  color: white;
  font-size: 24px;
  font-size: 1.25vw;
  font-weight: 500;
  line-height: 1.875;
  letter-spacing: 0em;
  height: 450px;
  height: 23.4375vw;
  margin-top: 80px;
  margin-top: 4.1666666667vw;
}
@media only screen and (max-width: 859px) {
  #page_fv p.lead_text {
    font-size: 17px;
    font-size: 4.5333333333vw;
    line-height: 2.0588235294;
    letter-spacing: 0.02em;
    height: 100%;
    min-height: 450px;
    min-height: 120vw;
  }
}

#delivery-service {
  position: relative;
  background-color: white;
  padding-bottom: 260px;
  padding-bottom: 13.5416666667vw;
}
@media only screen and (max-width: 859px) {
  #delivery-service {
    padding-bottom: 0px;
    padding-bottom: 0vw;
  }
}
#delivery-service .inner {
  padding: 60px 60px 0px;
  padding: 3.125vw 3.125vw 0vw;
}
@media only screen and (max-width: 859px) {
  #delivery-service .inner {
    padding: 35px 20px 0;
  }
}
#delivery-service .delivery_items {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 40px;
  gap: 2.0833333333vw;
}
@media only screen and (max-width: 859px) {
  #delivery-service .delivery_items {
    grid-template-columns: 1fr;
    gap: 15px;
    gap: 4vw;
  }
}
@media only screen and (max-width: 859px) {
  #delivery-service .delivery_item.info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 60px;
    gap: 16vw;
  }
}
#delivery-service .delivery_gradation {
  position: sticky;
  top: 180px;
  top: 9.375vw;
  background: url(../img/delivery-service/gradation.svg) no-repeat center center/cover;
  width: 810px;
  width: 42.1875vw;
  height: 900px;
  height: 46.875vw;
}
@media only screen and (max-width: 859px) {
  #delivery-service .delivery_gradation {
    position: static;
    background: url(../img/delivery-service/gradation_sp.svg) no-repeat center top/cover;
    background-size: contain;
    width: 335px;
    width: 89.3333333333vw;
    width: 100%;
    height: 246px;
    margin-bottom: 15px;
    margin-bottom: 4vw;
  }
}
#delivery-service .delivery_gradation .text_area {
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  padding: 0px 65px;
  padding: 0vw 3.3854166667vw;
}
@media only screen and (max-width: 859px) {
  #delivery-service .delivery_gradation .text_area {
    padding: 0px 30px;
    padding: 0vw 8vw;
  }
}
#delivery-service p.number {
  font-family: "Albert Sans", sans-serif;
  font-size: 80px;
  font-size: 4.1666666667vw;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: 0em;
}
@media only screen and (max-width: 859px) {
  #delivery-service p.number {
    font-size: 40px;
    font-size: 10.6666666667vw;
    line-height: 1.25;
    letter-spacing: 0em;
  }
}
#delivery-service p.title_en {
  font-family: "anisette-std", sans-serif;
  font-size: 60px;
  font-size: 3.125vw;
  font-weight: 500;
  line-height: 1.3333333333;
  letter-spacing: 0.08em;
  margin-top: 7px;
  margin-top: 0.3645833333vw;
}
@media only screen and (max-width: 859px) {
  #delivery-service p.title_en {
    font-size: 24px;
    font-size: 6.4vw;
    line-height: 1.1666666667;
    letter-spacing: 0.03em;
  }
}
#delivery-service p.title_ja {
  font-size: 28px;
  font-size: 1.4583333333vw;
  font-weight: 500;
  line-height: 2.1428571429;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 859px) {
  #delivery-service p.title_ja {
    font-size: 20px;
    font-size: 5.3333333333vw;
    line-height: 1.5;
    letter-spacing: 0.02em;
    margin-top: 7px;
    margin-top: 1.8666666667vw;
  }
}
#delivery-service .info_inner {
  background-color: #f0f0f0;
  padding: 100px 75px;
  padding: 5.2083333333vw 3.90625vw;
  border-radius: 10px;
}
@media only screen and (max-width: 859px) {
  #delivery-service .info_inner {
    padding: 40px 17px;
    padding: 10.6666666667vw 4.5333333333vw;
  }
}
#delivery-service .info01 .info_inner {
  border-radius: 10px 10px 0 0;
}
@media only screen and (max-width: 859px) {
  #delivery-service .info01 .info_inner {
    padding: 40px 17px;
    padding: 10.6666666667vw 4.5333333333vw;
    border-radius: 5px;
  }
}
#delivery-service .info01 h2 {
  font-size: 44px;
  font-size: 2.2916666667vw;
  font-weight: 600;
  line-height: 1.5909090909;
  letter-spacing: 0.02em;
  margin-top: 50px;
  margin-top: 2.6041666667vw;
}
@media only screen and (max-width: 859px) {
  #delivery-service .info01 h2 {
    font-size: 22px;
    font-size: 5.8666666667vw;
    line-height: 1.4545454545;
    letter-spacing: 0.02em;
    margin-top: 30px;
    margin-top: 8vw;
  }
}
#delivery-service .info01 .car_items {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 30px;
  gap: 1.5625vw;
}
@media only screen and (max-width: 859px) {
  #delivery-service .info01 .car_items {
    grid-template-columns: 1fr;
    gap: 20px;
    gap: 5.3333333333vw;
    margin-top: 10px;
    margin-top: 2.6666666667vw;
  }
}
#delivery-service .info01 p.cars {
  font-size: 28px;
  font-size: 1.4583333333vw;
  font-weight: bold;
  line-height: 2.1428571429;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 859px) {
  #delivery-service .info01 p.cars {
    font-size: 22px;
    font-size: 5.8666666667vw;
    text-align: center;
    line-height: 1;
    letter-spacing: 0.02em;
  }
}
#delivery-service .info01 span.emphasis {
  font-family: "Albert Sans", sans-serif;
  color: #e1495c;
  font-size: 147px;
  font-size: 7.65625vw;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
}
@media only screen and (max-width: 859px) {
  #delivery-service .info01 span.emphasis {
    font-size: 120px;
    font-size: 32vw;
    line-height: 1;
    letter-spacing: 0em;
  }
}
#delivery-service .info01 span.ls {
  font-size: 50px;
  font-size: 2.6041666667vw;
  font-weight: bold;
  line-height: 1;
  letter-spacing: 0em;
}
@media only screen and (max-width: 859px) {
  #delivery-service .info01 span.ls {
    font-size: 44px;
    font-size: 11.7333333333vw;
    line-height: 1;
    letter-spacing: 0.03em;
  }
}
#delivery-service .info01 p.car_text {
  font-size: 20px;
  font-size: 1.0416666667vw;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.02em;
  margin-top: 30px;
  margin-top: 1.5625vw;
}
@media only screen and (max-width: 859px) {
  #delivery-service .info01 p.car_text {
    font-size: 16px;
    font-size: 4.2666666667vw;
    line-height: 1.875;
    letter-spacing: 0.02em;
  }
}
#delivery-service .info01 .icon_items {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 15px;
  gap: 0.78125vw;
  margin-top: 35px;
  margin-top: 1.8229166667vw;
}
@media only screen and (max-width: 859px) {
  #delivery-service .info01 .icon_items {
    gap: 10px;
    gap: 2.6666666667vw;
    margin-top: 35px;
    margin-top: 9.3333333333vw;
  }
}
#delivery-service .info01 .icon_item {
  background-color: white;
  display: grid;
  place-content: center;
  border-radius: 15px;
  height: 190px;
  height: 9.8958333333vw;
}
@media only screen and (max-width: 859px) {
  #delivery-service .info01 .icon_item {
    height: 80px;
    height: 21.3333333333vw;
    border-radius: 5px;
  }
}
#delivery-service .info01 .icon_item img {
  width: 115px;
  width: 5.9895833333vw;
  margin: 0 auto;
}
@media only screen and (max-width: 859px) {
  #delivery-service .info01 .icon_item img {
    width: 53px;
    width: 14.1333333333vw;
  }
}
#delivery-service .info01 .icon_item p {
  color: #e1495c;
  font-size: 18px;
  font-size: 0.9375vw;
  font-weight: 600;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.2em;
  margin-top: 20px;
  margin-top: 1.0416666667vw;
}
@media only screen and (max-width: 859px) {
  #delivery-service .info01 .icon_item p {
    font-size: 12px;
    font-size: 3.2vw;
    line-height: 1;
    letter-spacing: 0.2em;
    margin-top: 10px;
    margin-top: 2.6666666667vw;
  }
}
#delivery-service .info02 .info_inner {
  background-color: #f0f0f0;
  padding: 50px 75px 100px;
  padding: 2.6041666667vw 3.90625vw 5.2083333333vw;
  border-radius: 0px;
  border-top: 1px solid #d6d6d6;
}
@media only screen and (max-width: 859px) {
  #delivery-service .info02 .info_inner {
    padding: 40px 17px;
    padding: 10.6666666667vw 4.5333333333vw;
    border-top: none;
    border-radius: 5px;
  }
}
#delivery-service .info02 h2 {
  font-size: 46px;
  font-size: 2.3958333333vw;
  font-weight: 600;
  line-height: 1.5217391304;
  letter-spacing: 0.02em;
  margin-top: -10px;
  margin-top: -0.5208333333vw;
}
@media only screen and (max-width: 859px) {
  #delivery-service .info02 h2 {
    font-size: 22px;
    font-size: 5.8666666667vw;
    line-height: 1.4545454545;
    letter-spacing: 0.02em;
    margin-top: 30px;
    margin-top: 8vw;
  }
}
#delivery-service .info02 p.lead_text {
  font-size: 20px;
  font-size: 1.0416666667vw;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.02em;
  margin-top: 40px;
  margin-top: 2.0833333333vw;
}
@media only screen and (max-width: 859px) {
  #delivery-service .info02 p.lead_text {
    font-size: 16px;
    font-size: 4.2666666667vw;
    line-height: 1.875;
    letter-spacing: 0.02em;
    margin-top: 20px;
    margin-top: 5.3333333333vw;
  }
}
#delivery-service .info03 .info_inner {
  padding: 95px 75px;
  padding: 4.9479166667vw 3.90625vw;
  border-top: 1px solid #d6d6d6;
  border-radius: 0 0 10px 10px;
}
@media only screen and (max-width: 859px) {
  #delivery-service .info03 .info_inner {
    padding: 40px 17px;
    padding: 10.6666666667vw 4.5333333333vw;
    border-top: none;
    border-radius: 5px;
  }
}
#delivery-service .info03 h2 {
  font-size: 46px;
  font-size: 2.3958333333vw;
  font-weight: 600;
  line-height: 1.5217391304;
  letter-spacing: 0.02em;
  margin-top: 50px;
  margin-top: 2.6041666667vw;
}
@media only screen and (max-width: 859px) {
  #delivery-service .info03 h2 {
    font-size: 22px;
    font-size: 5.8666666667vw;
    line-height: 1.4545454545;
    letter-spacing: 0.02em;
    margin-top: 30px;
    margin-top: 8vw;
  }
}
#delivery-service .info03 p.lead_text {
  font-size: 20px;
  font-size: 1.0416666667vw;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.02em;
  margin-top: 40px;
  margin-top: 2.0833333333vw;
}
@media only screen and (max-width: 859px) {
  #delivery-service .info03 p.lead_text {
    font-size: 16px;
    font-size: 4.2666666667vw;
    line-height: 1.875;
    letter-spacing: 0.02em;
    margin-top: 20px;
    margin-top: 5.3333333333vw;
  }
}

#retail-service {
  position: relative;
  background-color: white;
  padding-bottom: 260px;
  padding-bottom: 13.5416666667vw;
  overflow: hidden;
}
@media only screen and (max-width: 859px) {
  #retail-service {
    padding-bottom: 0px;
    padding-bottom: 0vw;
  }
}
#retail-service .retail_line {
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
@media only screen and (max-width: 859px) {
  #retail-service .retail_line {
    top: 5%;
    transform: translateY(0);
  }
}
#retail-service .retail_line svg {
  width: 450px;
  width: 23.4375vw;
}
@media only screen and (max-width: 859px) {
  #retail-service .retail_line svg {
    width: 250px;
    width: 66.6666666667vw;
  }
}
#retail-service .inner {
  position: relative;
  padding: 100px 250px 0px;
  padding: 5.2083333333vw 13.0208333333vw 0vw;
  z-index: 2;
}
@media only screen and (max-width: 859px) {
  #retail-service .inner {
    padding: 55px 20px 0;
  }
}
#retail-service .retail_items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 190px;
  gap: 9.8958333333vw;
}
@media only screen and (max-width: 859px) {
  #retail-service .retail_items {
    grid-template-columns: 1fr;
    gap: 45px;
    gap: 12vw;
  }
}
#retail-service .retail_item {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-areas: "title title" ". .";
  gap: 40px 100px;
  gap: 2.0833333333vw 5.2083333333vw;
}
@media only screen and (max-width: 859px) {
  #retail-service .retail_item {
    grid-template-columns: 1fr;
    grid-template-areas: "title" "." ".";
    gap: 25px;
    gap: 6.6666666667vw;
  }
}
#retail-service .title {
  grid-area: title;
}
#retail-service .title h2 {
  font-size: 44px;
  font-size: 2.2916666667vw;
  font-weight: 600;
  line-height: 1.3636363636;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 859px) {
  #retail-service .title h2 {
    font-size: 30px;
    font-size: 8vw;
    line-height: 1.4333333333;
    letter-spacing: 0.02em;
  }
}
#retail-service .title p.title_en {
  font-family: "Albert Sans", sans-serif;
  color: #e1495c;
  font-size: 28px;
  font-size: 1.4583333333vw;
  font-weight: 500;
  line-height: 0.8571428571;
  letter-spacing: 0.08em;
  margin-bottom: 15px;
  margin-bottom: 0.78125vw;
}
@media only screen and (max-width: 859px) {
  #retail-service .title p.title_en {
    font-size: 22px;
    font-size: 5.8666666667vw;
    line-height: 1.2272727273;
    letter-spacing: 0.1em;
  }
}
#retail-service .title p.title_en span {
  font-family: "Albert Sans", sans-serif;
  font-size: 80px;
  font-size: 4.1666666667vw;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0em;
}
@media only screen and (max-width: 859px) {
  #retail-service .title p.title_en span {
    font-size: 50px;
    font-size: 13.3333333333vw;
    line-height: 1;
    letter-spacing: 0em;
  }
}
#retail-service .img img {
  width: 735px;
  width: 38.28125vw;
}
@media only screen and (max-width: 859px) {
  #retail-service .img img {
    width: 100%;
  }
}
#retail-service .text {
  display: grid;
  align-items: center;
}
#retail-service .text h3 {
  font-size: 36px;
  font-size: 1.875vw;
  font-weight: 600;
  line-height: 1.3888888889;
  letter-spacing: 0em;
}
@media only screen and (max-width: 859px) {
  #retail-service .text h3 {
    font-size: 22px;
    font-size: 5.8666666667vw;
    line-height: 1.4545454545;
    letter-spacing: 0.02em;
  }
}
#retail-service .text p.lead_text {
  font-size: 20px;
  font-size: 1.0416666667vw;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.02em;
  margin-top: 20px;
  margin-top: 1.0416666667vw;
}
@media only screen and (max-width: 859px) {
  #retail-service .text p.lead_text {
    font-size: 16px;
    font-size: 4.2666666667vw;
    line-height: 1.875;
    letter-spacing: 0.02em;
    margin-top: 20px;
    margin-top: 5.3333333333vw;
  }
}

#company_message {
  position: relative;
  background-color: white;
  padding-bottom: 150px;
  padding-bottom: 7.8125vw;
}
@media only screen and (max-width: 859px) {
  #company_message {
    padding-bottom: 80px;
    padding-bottom: 21.3333333333vw;
  }
}
#company_message .inner {
  position: relative;
  padding: 220px 250px 0px;
  padding: 11.4583333333vw 13.0208333333vw 0vw;
  z-index: 2;
}
@media only screen and (max-width: 859px) {
  #company_message .inner {
    padding: 260px 20px 0;
  }
}
#company_message .img01 {
  position: absolute;
  top: 260px;
  top: 13.5416666667vw;
}
@media only screen and (max-width: 859px) {
  #company_message .img01 {
    top: 60px;
    top: 16vw;
  }
}
#company_message .sub_title {
  display: flex;
  align-items: center;
  gap: 15px;
  gap: 0.78125vw;
  margin-bottom: 20px;
  margin-bottom: 1.0416666667vw;
}
@media only screen and (max-width: 859px) {
  #company_message .sub_title {
    gap: 15px;
    gap: 4vw;
    margin-bottom: 20px;
    margin-bottom: 5.3333333333vw;
  }
}
#company_message .sub_title img {
  width: 90px;
  width: 4.6875vw;
}
@media only screen and (max-width: 859px) {
  #company_message .sub_title img {
    width: 90px;
    width: 24vw;
  }
}
#company_message .sub_title p {
  font-family: "anisette-std", sans-serif;
  color: #e1495c;
  font-size: 28px;
  font-size: 1.4583333333vw;
  font-weight: 500;
  line-height: 1.3214285714;
  letter-spacing: 0.1em;
}
@media only screen and (max-width: 859px) {
  #company_message .sub_title p {
    font-size: 22px;
    font-size: 5.8666666667vw;
    line-height: 1.3636363636;
    letter-spacing: 0.03em;
  }
}
#company_message .text_area {
  width: 545px;
  width: 28.3854166667vw;
  margin-left: auto;
}
@media only screen and (max-width: 859px) {
  #company_message .text_area {
    width: 100%;
  }
}
#company_message h2 {
  font-size: 44px;
  font-size: 2.2916666667vw;
  font-weight: 600;
  line-height: 1.5909090909;
  letter-spacing: 0em;
  margin-bottom: 20px;
  margin-bottom: 1.0416666667vw;
}
@media only screen and (max-width: 859px) {
  #company_message h2 {
    font-size: 26px;
    font-size: 6.9333333333vw;
    line-height: 1.4615384615;
    letter-spacing: 0.02em;
    margin-bottom: 15px;
    margin-bottom: 4vw;
  }
}
#company_message p {
  font-size: 20px;
  font-size: 1.0416666667vw;
  font-weight: 400;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 859px) {
  #company_message p {
    font-size: 16px;
    font-size: 4.2666666667vw;
    line-height: 1.875;
    letter-spacing: 0.02em;
  }
}
#company_message p.name {
  font-size: 16px;
  font-size: 0.8333333333vw;
  font-weight: 500;
  text-align: right;
  line-height: 1;
  letter-spacing: 0em;
  margin-top: 30px;
  margin-top: 1.5625vw;
}
@media only screen and (max-width: 859px) {
  #company_message p.name {
    font-size: 16px;
    font-size: 4.2666666667vw;
    line-height: 1.875;
    letter-spacing: 0.02em;
    margin-top: 30px;
    margin-top: 8vw;
  }
}
#company_message p.history {
  font-size: 16px;
  font-size: 0.8333333333vw;
  font-weight: 300;
  line-height: 1.75;
  letter-spacing: 0.02em;
  margin-top: 30px;
  margin-top: 1.5625vw;
}
@media only screen and (max-width: 859px) {
  #company_message p.history {
    font-size: 14px;
    font-size: 3.7333333333vw;
    line-height: 1.7857142857;
    letter-spacing: 0.02em;
    margin-top: 30px;
    margin-top: 8vw;
  }
}

#company_overview {
  position: relative;
  background-color: white;
  padding-top: 130px;
  padding-top: 6.7708333333vw;
  padding-bottom: 360px;
  padding-bottom: 18.75vw;
}
@media only screen and (max-width: 859px) {
  #company_overview {
    padding-bottom: 0px;
    padding-bottom: 0vw;
  }
}
#company_overview .inner {
  position: relative;
  padding: 0px 250px;
  padding: 0vw 13.0208333333vw;
  z-index: 2;
}
@media only screen and (max-width: 859px) {
  #company_overview .inner {
    padding: 0 20px;
  }
}
#company_overview h2 {
  font-size: 28px;
  font-size: 1.4583333333vw;
  font-weight: 500;
  line-height: 2.1428571429;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 859px) {
  #company_overview h2 {
    font-size: 20px;
    font-size: 5.3333333333vw;
    line-height: 1.75;
    letter-spacing: 0.02em;
  }
}
#company_overview h2::before {
  content: attr(data-en);
  display: block;
  font-family: "anisette-std", sans-serif;
  color: #e1495c;
  font-size: 80px;
  font-size: 4.1666666667vw;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 859px) {
  #company_overview h2::before {
    font-size: 42px;
    font-size: 11.2vw;
  }
}
#company_overview .overview_items {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  width: 850px;
  width: 44.2708333333vw;
  margin: 0 auto;
  margin-top: 60px;
  margin-top: 3.125vw;
}
@media only screen and (max-width: 859px) {
  #company_overview .overview_items {
    width: 100%;
    margin-top: 30px;
    margin-top: 8vw;
  }
}
#company_overview .overview_items::before {
  content: "";
  background: linear-gradient(180deg, rgb(251, 205, 206) 0%, rgb(225, 73, 92) 25%, rgb(15, 0, 78) 50%, rgb(15, 0, 78) 100%);
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 8px;
  width: 0.4166666667vw;
  height: 100%;
}
@media only screen and (max-width: 859px) {
  #company_overview .overview_items::before {
    width: 8px;
    width: 2.1333333333vw;
  }
}
#company_overview .overview_item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 20px;
  gap: 1.0416666667vw;
}
@media only screen and (max-width: 859px) {
  #company_overview .overview_item {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    gap: 5.3333333333vw;
  }
}
#company_overview .overview_item:last-child h3 {
  border-bottom: 1px solid #d6d6d6;
}
#company_overview .overview_item:last-child p {
  border-bottom: 1px solid #d6d6d6;
}
#company_overview h3 {
  width: 220px;
  width: 11.4583333333vw;
  font-size: 18px;
  font-size: 0.9375vw;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  padding: 50px 45px;
  padding: 2.6041666667vw 2.34375vw;
  border-top: 1px solid #d6d6d6;
  border-left: 0;
  border-right: 0;
}
@media only screen and (max-width: 859px) {
  #company_overview h3 {
    width: 100%;
    padding: 20px 0px 20px 25px;
    padding: 5.3333333333vw 0vw 5.3333333333vw 6.6666666667vw;
  }
}
@media only screen and (max-width: 859px) {
  #company_overview h3 {
    font-size: 14px;
    font-size: 3.7333333333vw;
    line-height: 1.7857142857;
    letter-spacing: 0.02em;
  }
}
#company_overview p {
  font-size: 18px;
  font-size: 0.9375vw;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.02em;
  padding: 50px 35px;
  padding: 2.6041666667vw 1.8229166667vw;
  border-top: 1px solid #d6d6d6;
  border-left: 0;
  border-right: 0;
}
@media only screen and (max-width: 859px) {
  #company_overview p {
    padding: 20px 0px 20px 20px;
    padding: 5.3333333333vw 0vw 5.3333333333vw 5.3333333333vw;
  }
}
@media only screen and (max-width: 859px) {
  #company_overview p {
    font-size: 14px;
    font-size: 3.7333333333vw;
    line-height: 1.7857142857;
    letter-spacing: 0em;
  }
}

body.contact {
  background: url(../img/contact/bg.webp) no-repeat center top/cover;
}
@media only screen and (max-width: 859px) {
  body.contact {
    background: url(../img/contact/bg_sp.webp) no-repeat center top/cover;
  }
}
body.contact header {
  position: absolute;
}
body.contact header .header_item.menu_items .menu_link {
  color: white;
}
body.contact header .header_item.menu_items .header_btn.contact {
  background-color: white;
  color: #3c397f;
}
body.contact main {
  position: relative;
  overflow-x: hidden;
}
@media only screen and (max-width: 960px) {
  body.contact main {
    max-width: 414px;
    width: 100%;
    margin: 0 auto;
  }
  body.contact main .block_left,
  body.contact main .block_right {
    background-color: white;
    position: fixed;
    top: 0;
    width: calc((100% - 414px) / 2);
    height: 100vh;
  }
  body.contact main .block_left {
    left: 0;
  }
  body.contact main .block_right {
    right: 0;
  }
}
body.contact footer {
  background: url(../img/footer/path_contact.svg) no-repeat center top/cover white;
  background-size: contain;
}
body.contact #page_fv {
  min-height: auto;
  height: auto;
}
body.contact #page_fv .inner {
  padding: 175px 250px 0px;
  padding: 9.1145833333vw 13.0208333333vw 0vw;
}
@media only screen and (max-width: 859px) {
  body.contact #page_fv .inner {
    padding: 125px 20px 0px;
  }
}
body.contact #page_fv h2 {
  color: white;
}

#page_contact {
  position: relative;
  background: url(../img/contact/inner_bg.svg) no-repeat center top/cover;
  padding-top: 180px;
  padding-top: 9.375vw;
  padding-bottom: 180px;
  padding-bottom: 9.375vw;
  z-index: 2;
}
@media only screen and (max-width: 859px) {
  #page_contact {
    background: url(../img/contact/inner_bg_sp.svg) no-repeat center top/cover;
    padding-top: 80px;
    padding-top: 21.3333333333vw;
    padding-bottom: 80px;
    padding-bottom: 21.3333333333vw;
  }
}
#page_contact .inner {
  padding: 0px 450px;
  padding: 0vw 23.4375vw;
}
@media only screen and (max-width: 859px) {
  #page_contact .inner {
    padding: 0px 20px;
  }
}
#page_contact h2 {
  font-size: 28px;
  font-size: 1.4583333333vw;
  font-weight: 500;
  text-align: center;
  line-height: 2.1428571429;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 859px) {
  #page_contact h2 {
    font-size: 20px;
    font-size: 5.3333333333vw;
    line-height: 1.5;
    letter-spacing: 0.02em;
  }
}
#page_contact p {
  font-size: 16px;
  font-size: 0.8333333333vw;
  font-weight: 400;
  line-height: 1.5625;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 859px) {
  #page_contact p {
    font-size: 14px;
    font-size: 3.7333333333vw;
    line-height: 1.7857142857;
    letter-spacing: 0em;
  }
}
#page_contact .contact_items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  gap: 2.0833333333vw;
  margin-top: 50px;
  margin-top: 2.6041666667vw;
}
@media only screen and (max-width: 859px) {
  #page_contact .contact_items {
    margin-top: 50px;
    margin-top: 13.3333333333vw;
  }
}
#page_contact .required {
  background-color: #e1495c;
  color: white;
  font-size: 13px;
  font-size: 0.6770833333vw;
  padding: 0px 10px;
  padding: 0vw 0.5208333333vw;
  margin-left: 10px;
  margin-left: 0.5208333333vw;
  border-radius: 100vmax;
}
@media only screen and (max-width: 859px) {
  #page_contact .required {
    font-size: 12px;
    font-size: 3.2vw;
    padding: 0px 10px;
    padding: 0vw 2.6666666667vw;
    margin-left: 10px;
    margin-left: 2.6666666667vw;
  }
}
#page_contact .contact_item {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  gap: 2.0833333333vw;
}
@media only screen and (max-width: 859px) {
  #page_contact .contact_item {
    gap: 20px;
    gap: 5.3333333333vw;
  }
}
#page_contact .input_items {
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  gap: 20px;
  gap: 1.0416666667vw;
}
@media only screen and (max-width: 859px) {
  #page_contact .input_items {
    grid-template-columns: 1fr;
    gap: 20px;
    gap: 5.3333333333vw;
  }
}
#page_contact .input_items .input_item {
  width: 250px;
  width: 13.0208333333vw;
}
@media only screen and (max-width: 859px) {
  #page_contact .input_items .input_item {
    width: 100%;
  }
}
#page_contact .input_items label {
  display: block;
  width: 100%;
  font-size: 18px;
  font-size: 0.9375vw;
  line-height: 1;
}
@media only screen and (max-width: 859px) {
  #page_contact .input_items label {
    font-size: 14px;
    font-size: 3.7333333333vw;
    line-height: 1.2;
  }
}
#page_contact .input_items input,
#page_contact .input_items select,
#page_contact .input_items textarea {
  height: 70px;
  height: 3.6458333333vw;
  font-size: 18px;
  font-size: 0.9375vw;
  padding: 20px;
  padding: 1.0416666667vw;
  border: 1px solid #d6d6d6;
  border-radius: 15px;
  border-radius: 0.78125vw;
}
#page_contact .input_items input[type=checkbox],
#page_contact .input_items select[type=checkbox],
#page_contact .input_items textarea[type=checkbox] {
  height: auto;
}
@media only screen and (max-width: 859px) {
  #page_contact .input_items input,
  #page_contact .input_items select,
  #page_contact .input_items textarea {
    width: 100%;
    font-size: 16px;
    font-size: 4.2666666667vw;
    padding: 10px;
    padding: 2.6666666667vw;
    border-radius: 10px;
    border-radius: 2.6666666667vw;
  }
  #page_contact .input_items input:not([type=radio], textarea),
  #page_contact .input_items select:not([type=radio], textarea),
  #page_contact .input_items textarea:not([type=radio], textarea) {
    width: 100%;
    height: 53px;
  }
}
#page_contact .input_items textarea {
  height: 204px;
  height: 10.625vw;
}
@media only screen and (max-width: 859px) {
  #page_contact .input_items textarea {
    width: 100%;
    height: 235px;
  }
}
#page_contact .input_items select {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
#page_contact .input_items .selectbox {
  position: relative;
}
#page_contact .input_items .selectbox::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  width: 15px;
  width: 0.78125vw;
  height: 10px;
  height: 0.5208333333vw;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #000000;
  pointer-events: none;
}
@media only screen and (max-width: 859px) {
  #page_contact .input_items .selectbox::before {
    width: 15px;
    width: 4vw;
    height: 10px;
    height: 2.6666666667vw;
  }
}
#page_contact .input_items .selectbox .form-select {
  width: 100%;
}
#page_contact .confirm_area {
  background-color: white;
  padding: 20px;
  padding: 1.0416666667vw;
  border: 1px solid #d6d6d6;
  border-radius: 15px;
  border-radius: 0.78125vw;
}
@media only screen and (max-width: 859px) {
  #page_contact .confirm_area {
    padding: 10px;
    padding: 2.6666666667vw;
    border-radius: 10px;
    border-radius: 2.6666666667vw;
  }
}
#page_contact .confirm_area p {
  font-size: 18px;
  font-size: 0.9375vw;
}
@media only screen and (max-width: 859px) {
  #page_contact .confirm_area p {
    font-size: 14px;
    font-size: 3.7333333333vw;
  }
}
#page_contact .checkbox_area {
  display: grid;
  place-content: center;
}
#page_contact .checkbox_area label {
  display: block;
  width: 100%;
  font-size: 18px;
  font-size: 0.9375vw;
  line-height: 1;
}
@media only screen and (max-width: 859px) {
  #page_contact .checkbox_area label {
    font-size: 14px;
    font-size: 3.7333333333vw;
    line-height: 1.2;
  }
}
#page_contact .accordion {
  background-color: white;
  padding: 30px 70px;
  padding: 1.5625vw 3.6458333333vw;
}
#page_contact .accordion p.lead {
  color: #939393;
  font-size: 16px;
  font-size: 0.8333333333vw;
  font-weight: 400;
  text-align: center;
  line-height: 1.5625;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 859px) {
  #page_contact .accordion p.lead {
    font-size: 14px;
    font-size: 3.7333333333vw;
    line-height: 1.6428571429;
    letter-spacing: 0em;
  }
}
#page_contact .accordion .accordion_body {
  display: none;
  margin-top: 30px;
  margin-top: 1.5625vw;
}
@media only screen and (max-width: 859px) {
  #page_contact .accordion .accordion_body {
    margin-top: 20px;
    margin-top: 5.3333333333vw;
  }
}
#page_contact .text_area {
  text-align: center;
}
#page_contact .btn_area {
  display: grid;
  place-content: center;
}
#page_contact .btn_area .gradation {
  width: 279px;
  width: 14.53125vw;
}
@media only screen and (max-width: 859px) {
  #page_contact .btn_area .gradation {
    width: 279px;
    width: 74.4vw;
  }
}
#page_contact .btn_area .btn.main {
  width: 268px;
  width: 13.9583333333vw;
}
@media only screen and (max-width: 859px) {
  #page_contact .btn_area .btn.main {
    width: 268px;
    width: 71.4666666667vw;
  }
}
#page_contact .btn_area .btn.main::before {
  right: 20px;
  right: 1.0416666667vw;
}
@media only screen and (max-width: 859px) {
  #page_contact .btn_area .btn.main::before {
    right: 20px;
    right: 5.3333333333vw;
  }
}
@media (any-hover: hover) {
  #page_contact .btn_area .btn.main:hover::before {
    right: 10px;
    right: 0.5208333333vw;
  }
}

#thanks {
  background: url(../img/contact/inner_bg.svg) no-repeat center top/cover;
  padding-top: 180px;
  padding-top: 9.375vw;
  padding-bottom: 180px;
  padding-bottom: 9.375vw;
  z-index: 2;
}
@media only screen and (max-width: 859px) {
  #thanks {
    background: url(../img/contact/inner_bg_sp.svg) no-repeat center top/cover;
    padding-top: 80px;
    padding-top: 21.3333333333vw;
    padding-bottom: 80px;
    padding-bottom: 21.3333333333vw;
  }
}
#thanks .inner {
  padding: 0px 450px;
  padding: 0vw 23.4375vw;
}
@media only screen and (max-width: 859px) {
  #thanks .inner {
    padding: 0px 20px;
  }
}
#thanks .thanks_items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  gap: 2.0833333333vw;
  margin-top: 80px;
  margin-top: 4.1666666667vw;
}
@media only screen and (max-width: 859px) {
  #thanks .thanks_items {
    gap: 40px;
    gap: 10.6666666667vw;
    margin-top: 80px;
    margin-top: 21.3333333333vw;
  }
}
#thanks .thanks_item h2 {
  font-family: "anisette-std", sans-serif;
  color: #e1495c;
  font-size: 80px;
  font-size: 4.1666666667vw;
  font-weight: 500;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.05em;
}
@media only screen and (max-width: 859px) {
  #thanks .thanks_item h2 {
    font-size: 42px;
    font-size: 11.2vw;
    line-height: 1.1904761905;
    letter-spacing: 0.03em;
  }
}
#thanks .thanks_item p {
  font-size: 20px;
  font-size: 1.0416666667vw;
  font-weight: 400;
  text-align: center;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media only screen and (max-width: 859px) {
  #thanks .thanks_item p {
    font-size: 14px;
    font-size: 3.7333333333vw;
    line-height: 2.1428571429;
    letter-spacing: 0em;
  }
}