@charset "UTF-8";

/* リセット
---------------------------------------------------------- */
html,
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
p,
table,
th,
td,
button,
a,
span {
  margin: 0;
  padding: 0;
  font-size: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

ol,
ul {
  list-style: none;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
main,
nav,
section,
summary {
  display: block;
  margin: 0;
  padding: 0;
  font-size: 100%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  position: relative;
}

address {
  font-style: normal;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  appearance: none;
}

/* layout
---------------------------------------------------------- */
html {
  font-size: 10px;
  height: 100%;
  scroll-padding-top: 8rem;
}

@media only screen and (max-width: 768px) {
  html {
    font-size: 2.6666667vw;
    scroll-padding-top: 5.3rem;
  }
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  color: #212121;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.55;
}

body.is-drawer-open {
  overflow: hidden;
}

@media only screen and (max-width: 768px) {
  body {
    font-size: 1.4rem;
  }
}

main {
  overflow: hidden;
}

figure,
picture {
  display: block;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

a {
  color: #212121;
  text-decoration: none;
}

.en {
  font-family: "Poppins", sans-serif;
}

.is-pc {
  display: block;
}

.is-sp {
  display: none;
}

.js-fadein {
  opacity: 0;
  transition: all 0.6s ease;
}

.js-fadein.is-view {
  opacity: 1;
}

@media only screen and (max-width: 768px) {
  .is-pc {
    display: none;
  }

  .is-sp {
    display: block;
  }
}

/*
// header
 */
.header {
  width: 100%;
  padding: 0 5rem;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}

.header_inner {
  height: 8rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}

.header_logo {
  display: flex;
  flex-flow: row wrap;
  gap: 0 1.6rem;
}

.header_logo .duskin {
  width: 13.4rem;
}

.header_logo .rent {
  width: 10.5rem;
}

.header_logo a {
  transition: opacity 0.3s ease;
}

@media (hover: hover) {
  .header_logo a:hover {
    opacity: 0.75;
  }
}

.header_nav {
  margin: 0 2.4rem 0 auto;
}

.header_nav ul {
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  flex-flow: row wrap;
  gap: 0 2rem;
}

.header_contact {
  width: 15.4rem;
  height: 4.9rem;
  border-radius: 99rem;
  background: linear-gradient(to right, #ff6e2e 0%, #ff3b00 100%);
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.16);
  border: 0.1rem solid #FF3B00;
  color: #fff;
  font-size: 1.4rem;
  font-weight: 700;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
}

@media (hover: hover) {
  .header_contact:hover {
    background: #fff;
    color: #FF3B00;
  }

  .header_contact:hover::before {
    background: url("/eve-full/img/common/button_icon_orange.svg") no-repeat center;
  }
}

.header_contact::before {
  content: "";
  display: block;
  width: 1.4rem;
  height: 1.4rem;
  border-radius: 99rem;
  background: url("/eve-full/img/common/button_icon.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 1.1rem;
  transform: translate(0, -50%);
}

.header_menu {
  width: 3rem;
  height: 3rem;
  display: none;
  flex-flow: column;
  justify-content: space-between;
}

.header_menu_icon {
  display: flex;
  flex-flow: column;
  gap: 0.6rem 0;
}

.header_menu_icon span {
  display: block;
  width: 100%;
  height: 0.3rem;
  background: #1D1D1D;
  position: relative;
  top: 0;
  transition: all 0.3s ease-in-out;
}

.is-drawer-open .header_menu_icon span:nth-child(1) {
  transform: rotate(15deg);
  top: 0.6rem;
}

.is-drawer-open .header_menu_icon span:nth-child(2) {
  transform: rotate(-15deg);
  top: -0.3rem;
}

.header_menu p {
  font-size: 1rem;
  line-height: 1;
  text-align: center;
}

@media only screen and (max-width: 1200px) {
  .header_nav {
    display: none;
  }

  .header_menu {
    display: flex;
  }

  .header_contact {
    margin: 0 2rem 0 auto;
  }
}

@media only screen and (max-width: 768px) {
  .header {
    padding: 0 1rem;
  }

  .header_inner {
    height: 5.3rem;
  }

  .header_logo {
    display: flex;
    flex-flow: row wrap;
    gap: 0 1.1rem;
  }

  .header_logo .duskin {
    width: 9.6rem;
  }

  .header_logo .rent {
    width: 7.5rem;
  }

  .header_contact {
    margin: 0;
    width: 9.6rem;
    height: 3.1rem;
    font-size: 1.1rem;
  }

  .header_contact span {
    margin-right: 1rem;
  }

  .header_contact::before {
    width: 1rem;
    height: 1rem;
    right: 0.7rem;
  }
}

/*
// drawer
 */
.drawer-menu {
  width: 40rem;
  background: #fff;
  position: fixed;
  top: 8rem;
  left: 0;
  z-index: 100;
  transform: translateX(-100%);
  transition: all 0.3s ease-in-out;
  display: none;
  pointer-events: none;
}

.drawer-menu_inner {
  height: 100%;
  overflow: scroll;
  padding-bottom: 3rem;
  position: relative;
  z-index: 2;
  background: #fff;
}

.drawer-menu_list {
  margin-bottom: 2.4rem;
  font-size: 1.6rem;
  font-weight: 500;
  flex-flow: column;
  gap: 0;
}

.drawer-menu_list li {
  border-bottom: 0.1rem solid #707070;
}

.drawer-menu_list li a {
  padding: 2.4rem 1.9rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}

.drawer-menu_list li a::after {
  content: "";
  display: block;
  width: 1.9rem;
  height: 1.3rem;
  background: url("/eve-full/img/common/drawer_nav_arrow.svg") no-repeat center;
  background-size: contain;
}

.drawer-menu_buttons {
  margin-bottom: 4rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  gap: 0 1.4rem;
}

.drawer-menu_buttons a {
  margin-bottom: 0;
  width: 25.5rem;
  height: 5.5rem;
  border-radius: 99rem;
  color: #1D1D1D;
  font-size: 1.4rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  line-height: 1.18;
}

.drawer-menu_buttons a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0.8rem;
  transform: translate(0, -50%);
}

.drawer-menu_buttons a::after {
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  background: url("/eve-full/img/common/footer_btn_icon_arrow.png") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 1.6rem;
  transform: translate(0, -50%);
}

.drawer-menu_buttons a.contact {
  background: linear-gradient(to right, #ff6e2e 0%, #ff3b00 100%);
  color: #fff;
}

.drawer-menu_buttons a.contact::before {
  width: 2.4rem;
  height: 2.4rem;
  background: url("/eve-full/img/common/footer_btn_icon_send.png") no-repeat center;
  background-size: contain;
}

.drawer-menu_buttons a.request {
  outline: 0.1rem solid #1D1D1D;
  outline-offset: -0.1rem;
}

.drawer-menu_buttons a.request::before {
  width: 1.7rem;
  height: 2.3rem;
  background: url("/eve-full/img/common/footer_btn_icon_catalog.png") no-repeat center;
  background-size: contain;
}

.drawer-menu_logo {
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  gap: 0 1.1rem;
}

.drawer-menu_logo a {
  display: block;
}

.drawer-menu_logo a.duskin {
  width: 9.6rem;
}

.drawer-menu_logo a.rent {
  width: 7.5rem;
}

@media only screen and (max-width: 1200px) {
  .drawer-menu {
    width: 100vw;
    top: 8rem;
    display: block;
    pointer-events: auto;
  }

  .drawer-menu::before {
    content: "";
    display: block;
    width: 100vw;
    height: 100vh;
    position: absolute;
    top: 0;
    left: 0;
    background: #1D1D1D;
    opacity: 0.37;
    z-index: 1;
  }

  .is-drawer-open .drawer-menu {
    transform: translateX(0);
  }
}

@media only screen and (max-width: 768px) {
  .drawer-menu {
    height: calc(100vh - 5.3rem);
    height: calc(100dvh - 5.3rem);
    top: 5.3rem;
  }
}

/*
// footer
 */
.footer {
  background: #071439;
  padding: 6rem 5rem 2rem;
  color: #fff;
}

.footer_inner {
  max-width: 130rem;
  margin: 0 auto;
}

.footer_head {
  margin-bottom: 5.2rem;
  padding-bottom: 5.5rem;
  border-bottom: 0.1rem solid #fff;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-between;
  align-items: center;
}

.footer_logo {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0 3.4rem;
}

.footer_logo a {
  display: block;
  transition: opacity 0.3s ease;
}

@media (hover: hover) {
  .footer_logo a:hover {
    opacity: 0.75;
  }
}

.footer_logo a.duskin {
  width: 16.2rem;
}

.footer_logo a.rent {
  width: 15.3rem;
}

.footer_buttons {
  display: flex;
  flex-flow: row wrap;
  gap: 0 1.4rem;
}

.footer_buttons a {
  margin-bottom: 0;
  width: 22rem;
  height: 6rem;
  border-radius: 99rem;
  color: #fff;
  font-size: 1.6rem;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  line-height: 1.18;
  transition: all 0.3s ease;
}

@media (hover: hover) {
  .footer_buttons a:hover {
    opacity: 0.75;
  }
}

.footer_buttons a::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 1.6rem;
  transform: translate(0, -50%);
}

.footer_buttons a::after {
  content: "";
  display: block;
  width: 0.7rem;
  height: 0.7rem;
  background: url("/eve-full/img/common/footer_btn_icon_arrow.png") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 1.6rem;
  transform: translate(0, -50%);
}

.footer_buttons a.contact {
  background: linear-gradient(to right, #ff6e2e 0%, #ff3b00 100%);
  transition: opacity 0.3s ease;
}

@media (hover: hover) {
  .footer_buttons a.contact:hover {
    background: #fff;
    color: #FF3B00;
    outline: 0.3rem solid #FF3B00;
    outline-offset: -0.3rem;
    opacity: 1;
  }

  .footer_buttons a.contact:hover::before {
    background: url("/eve-full/img/common/footer_btn_icon_send_hover.png") no-repeat center;
    background-size: contain;
  }

  .footer_buttons a.contact:hover::after {
    background: url("/eve-full/img/common/footer_btn_icon_arrow_hover.png") no-repeat center;
    background-size: contain;
  }
}

.footer_buttons a.contact::before {
  width: 2.4rem;
  height: 2.4rem;
  background: url("/eve-full/img/common/footer_btn_icon_send.png") no-repeat center;
  background-size: contain;
}

.footer_buttons a.request {
  outline: 0.1rem solid #fff;
  outline-offset: -0.1rem;
}

.footer_buttons a.request::before {
  width: 1.7rem;
  height: 2.3rem;
  background: url("/eve-full/img/common/footer_btn_icon_catalog.png") no-repeat center;
  background-size: contain;
}

.footer_nav {
  margin-bottom: 5.2rem;
  padding-bottom: 5.5rem;
  border-bottom: 0.1rem solid #fff;
  display: flex;
  flex-flow: row wrap;
  align-items: flex-start;
}

.footer_nav-item {
  display: flex;
  flex-flow: row wrap;
}

.footer_nav-item:nth-child(1) {
  flex: 3;
}

.footer_nav-item:nth-child(1) .footer_nav-list {
  width: 33.33%;
}

.footer_nav-item:nth-child(2) {
  flex: 1;
}

.footer_nav-title {
  width: 100%;
  margin-bottom: 3.4rem;
  font-size: 2.4rem;
  font-weight: 700;
}

.footer_nav-list {
  width: 100%;
  display: flex;
  flex-flow: column;
  gap: 1rem 0;
}

.footer_nav-list li {
  width: 100%;
}

.footer_nav-list li a {
  color: #fff;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0.3rem;
  transition: opacity 0.3s ease;
}

@media (hover: hover) {
  .footer_nav-list li a:hover {
    opacity: 0.75;
  }
}

.footer_nav-list li a::before {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1rem;
  background: url("/eve-full/img/common/footer_nav_arrow.svg") no-repeat center;
  background-size: contain;
}

.footer_nav-list li a span {
  display: block;
  width: calc(100% - 1.3rem - 0.3rem);
}

.footer_nav-list li a.is-blank::before {
  content: "";
  display: block;
  width: 1.3rem;
  height: 0.9rem;
  background: url("/eve-full/img/common/icon_black.png") no-repeat center;
  background-size: contain;
}

.footer_nav-list.is-relation li {
  width: 100%;
}

.footer_nav-list.is-relation li a::before {
  content: "";
  display: block;
  width: 1.3rem;
  height: 0.9rem;
  background: url("/eve-full/img/common/icon_black.png") no-repeat center;
  background-size: contain;
}

.footer_search {
  margin-bottom: 2rem;
  border-bottom: 0.1rem solid #fff;
  display: flex;
  flex-flow: column;
  gap: 2rem 0;
}

.footer_search-title {
  margin-bottom: 1.4rem;
  font-size: 1.6rem;
  font-weight: 700;
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0 0.6rem;
}

.footer_search-title::after {
  content: "";
  display: block;
  width: 0.8rem;
  height: 1rem;
  background: url("/eve-full/img/common/footer_acc_arrow.svg") no-repeat center;
  background-size: contain;
  transition: all 0.3s linear;
}

.footer_search-title.is-active::after {
  transform: rotate(180deg);
}

.footer_search-content {
  padding: 0 1.6rem;
  border-radius: 0.4rem;
  background: #fff;
  max-height: 0;
  overflow: hidden;
  transition: all 0.3s linear;
}

.footer_search-content.is-open {
  padding: 1.9rem 1.6rem;
  max-height: fit-content;
}

.footer_search-list {
  display: flex;
  flex-flow: row wrap;
  gap: 0.8rem 0;
}

.footer_search-list li {
  width: 25%;
  font-size: 1.4rem;
  font-weight: 400;
}

.footer_search-list li a {
  color: #5C5C5C;
  text-decoration: underline;
  transition: opacity 0.3s ease;
}

@media (hover: hover) {
  .footer_search-list li a:hover {
    opacity: 0.75;
  }
}

.footer_search-list+ul {
  margin-top: 0.8rem;
}

.footer_copy {
  text-align: center;
}

.footer_copy .text {
  margin-bottom: 0.8rem;
  font-size: 1.4rem;
}

.footer_copy .copy {
  color: #808080;
  font-size: 1rem;
}

@media only screen and (max-width: 960px) {
  .footer {
    background: #071439;
    padding: 6rem 5rem;
    color: #fff;
  }

  .footer_logo {
    margin-bottom: 3.4rem;
    width: 100%;
    justify-content: center;
    gap: 0 3.4rem;
  }

  .footer_buttons {
    margin: 0 auto;
    gap: 0 0.9rem;
  }
}

@media only screen and (max-width: 768px) {
  .footer {
    padding: 3.2rem 2rem 2rem;
  }

  .footer_head {
    margin-bottom: 3.6rem;
    padding-bottom: 3.6rem;
  }

  .footer_logo {
    gap: 0 1.1rem;
  }

  .footer_logo a {
    display: block;
  }

  .footer_logo a.duskin {
    width: 9.6rem;
  }

  .footer_logo a.rent {
    width: 7.5rem;
  }

  .footer_buttons {
    gap: 0 0.9rem;
  }

  .footer_buttons a {
    width: 16.3rem;
    height: 4.5rem;
    font-size: 1.1rem;
    line-height: 1.27;
  }

  .footer_buttons a::after {
    width: 0.5rem;
    height: 0.5rem;
    right: 1.2rem;
  }

  .footer_buttons a.contact::before {
    width: 1.8rem;
    height: 1.8rem;
  }

  .footer_buttons a.request::before {
    width: 1.3rem;
    height: 1.8rem;
  }

  .footer_nav {
    margin-bottom: 3.6rem;
    padding-bottom: 3.6rem;
    flex-flow: column;
    gap: 3.2rem;
  }

  .footer_nav-list {
    width: 100%;
    flex-flow: row wrap;
    gap: 1rem 0;
  }

  .footer_nav-list li {
    width: 50%;
  }

  .footer_nav-list.is-relation li {
    width: 50%;
  }

  .footer_nav-item:nth-child(1) {
    gap: 1rem 0;
    flex: auto;
  }

  .footer_nav-item:nth-child(1) .footer_nav-list {
    width: 100%;
  }

  .footer_nav-item:nth-child(2) {
    flex: auto;
  }

  .footer_nav-title {
    margin-bottom: 1.6rem;
    font-size: 1.6rem;
  }

  .footer_search {
    margin-bottom: 4.6rem;
    gap: 1.6rem 0;
  }

  .footer_search-title {
    margin-bottom: 1.2rem;
    font-size: 1.4rem;
  }

  .footer_search-content.is-open {
    padding: 1.6em 1.6rem;
    max-height: 1000px;
  }

  .footer_search-list {
    display: flex;
    flex-flow: row wrap;
    gap: 0.8rem 0;
  }

  .footer_search-list li {
    width: 500%;
    font-size: 1.2rem;
  }

  .footer_search-list+ul {
    margin-top: 1.6rem;
  }

  .footer_search-list+ul li {
    width: 50%;
  }

  .footer_copy .text {
    font-size: 1.2rem;
  }
}

/* page
---------------------------------------------------------- */
.page {
  padding-top: 14.2rem;
  position: relative;
}

.page::before {
  content: "";
  display: block;
  width: 44rem;
  height: 26.3rem;
  background: url("/eve-full/img/common/page_bg_item.png") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 3rem;
  right: 3.2rem;
}

@media only screen and (max-width: 768px) {
  .page {
    padding-top: 8.1rem;
  }

  .page::before {
    width: 14.4rem;
    height: 8.6rem;
    top: 5.2rem;
    right: 0;
  }
}

/* archive
---------------------------------------------------------- */
.archive {
  padding-top: 8rem;
}

@media only screen and (max-width: 768px) {
  .archive {
    padding-top: 5.2rem;
  }
}

/* contact
---------------------------------------------------------- */
.contact {
  margin-bottom: 15rem;
}

.contact_inner {
  max-width: 120rem;
  margin: 0 auto;
}

@media only screen and (max-width: 768px) {
  .contact {
    margin-bottom: 5.2rem;
    padding: 0 2rem;
  }
}

/* flow
---------------------------------------------------------- */
.flow {
  margin-bottom: 15rem;
  padding: 0 5rem;
}

.flow_inner {
  max-width: 120rem;
  margin: 0 auto;
}

.flow_list {
  display: flex;
  flex-flow: row wrap;
  gap: 0 3.3rem;
}

.flow_list-item {
  padding: 1.6rem;
  width: calc(25% - 2.475rem);
  background: #F5F5F5;
  display: flex;
  flex-flow: column;
  position: relative;
}

.flow_list-item:not(:last-child)::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-top: 2.5rem solid transparent;
  border-bottom: 2.5rem solid transparent;
  border-left: 2.3rem solid #1F5495;
  border-right: 0;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translate(100%, -50%);
}

.flow_list-item_image {
  margin-bottom: 2rem;
}

.flow_list-item_image:nth-of-type(1) {
  max-width: 21.4rem;
}

.flow_list-item_image:nth-of-type(2) {
  max-width: 22.2rem;
}

.flow_list-item_image:nth-of-type(3) {
  max-width: 20.3rem;
}

.flow_list-item_image:nth-of-type(4) {
  max-width: 23rem;
}

.flow_list-item_text {
  margin: auto;
  color: #21429D;
  font-weight: 700;
  text-align: center;
}

@media only screen and (max-width: 980px) {
  .flow_list {
    gap: 3.3rem;
  }

  .flow_list-item {
    width: calc(50% - 1.65rem);
  }
}

@media only screen and (max-width: 768px) {
  .flow {
    margin-bottom: 5.2rem;
    padding: 0 2rem;
  }

  .flow_list {
    flex-flow: column;
    gap: 2.8rem 0;
  }

  .flow_list-item {
    padding: 0;
    width: 100%;
    height: 14rem;
    flex-flow: row wrap;
  }

  .flow_list-item:not(:last-child)::before {
    border-style: solid;
    border-right: 1.4rem solid transparent;
    border-left: 1.4rem solid transparent;
    border-top: 1.4rem solid #1F5495;
    border-bottom: 0;
    position: absolute;
    top: auto;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 100%);
  }

  .flow_list-item_image {
    margin-bottom: 0;
    position: absolute;
    top: 0.6rem;
    left: 0.5rem;
  }

  .flow_list-item_image:nth-of-type(1) {
    max-width: 12.5rem;
  }

  .flow_list-item_image:nth-of-type(2) {
    max-width: 12.7rem;
  }

  .flow_list-item_image:nth-of-type(3) {
    max-width: 1.9rem;
  }

  .flow_list-item_image:nth-of-type(4) {
    max-width: 13.8rem;
  }

  .flow_list-item_text {
    margin: auto 0 auto 14rem;
    text-align: left;
  }
}

/* cta
---------------------------------------------------------- */
.cta {
  padding: 9rem 5rem;
  background: linear-gradient(to right, #40afaa 0%, #399cdf 35.96%, #2d80c8 70.44%, #6059a8 100%);
  display: flex;
  flex-flow: column;
  align-items: center;
  line-height: 1;
  color: #fff;
}

.cta_title {
  font-size: 9rem;
  font-weight: 700;
}

.cta_lead {
  margin-bottom: 4rem;
}

.cta_text {
  margin-bottom: 3.4rem;
  line-height: 1.55;
  text-align: center;
}

.cta_fukidashi {
  margin-bottom: 1.8rem;
  padding: 0.5rem 0.6rem 0.7rem;
  background: #000;
  border-radius: 0.4rem;
  position: relative;
}

.cta_fukidashi::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 0.5rem solid transparent;
  border-left: 0.5rem solid transparent;
  border-top: 1rem solid #000;
  border-bottom: 0;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 50%);
}

.cta .button01 {
  width: 39.5rem;
}

@media only screen and (max-width: 768px) {
  .cta {
    padding: 3.2rem 1.6rem;
  }

  .cta_title {
    margin-bottom: 1rem;
    font-size: 5rem;
  }

  .cta_lead {
    margin-bottom: 2.8rem;
  }

  .cta_text {
    margin-bottom: 4.7rem;
    line-height: 1.57;
  }

  .cta_fukidashi {
    margin-bottom: 1.1rem;
    font-size: 1.1rem;
    padding: 0.5rem 0.6rem 0.6rem;
  }

  .cta .button01 {
    width: 25.5rem;
  }
}

/* back
---------------------------------------------------------- */
.back {
  margin-bottom: 15rem;
}

.back .button01 {
  margin: 0 auto;
  max-width: 39.5rem;
}

@media only screen and (max-width: 768px) {
  .back {
    margin-bottom: 5.2rem;
  }

  .back .button01 {
    margin: 0 auto;
    max-width: 23.5rem;
  }
}

/* parts
---------------------------------------------------------- */
.heading01 {
  margin-bottom: 4rem;
  font-weight: 700;
  line-height: 1;

  .en {
    margin-bottom: 1rem;
    width: fit-content;
    font-size: 9rem;
    color: #21429D;
    background: linear-gradient(to right, #40afaa 0%, #399cdf 35.96%, #2d80c8 70.44%, #6059a8 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
  }
}

/* .heading01 h1, */
.heading01 h2 {
  margin-bottom: 1rem;
  width: fit-content;
  font-size: 9rem;
  color: #21429D;
  background: linear-gradient(to right, #40afaa 0%, #399cdf 35.96%, #2d80c8 70.44%, #6059a8 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.heading01 p {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0 0.4rem;
}

.heading01 p::before {
  content: "";
  width: 0.6rem;
  height: 2rem;
  background-color: #C90033;
  transform: skewX(-15deg);
}

@media only screen and (max-width: 768px) {
  .heading01 {
    margin-bottom: 2.8rem;
  }

  .heading01 h2 {
    margin-bottom: 0.6rem;
    font-size: 5rem;
  }

  .heading01 p {
    font-size: 1.4rem;
    gap: 0 0.3rem;
  }

  .heading01 p::before {
    width: 0.4rem;
    height: 1.6rem;
  }
}

.button01 {
  width: 100%;
  height: 8.3rem;
  background: #1D1D1D;
  border-radius: 99rem;
  color: #fff;
  display: flex;
  flex-flow: row wrap;
  justify-content: center;
  align-items: center;
  position: relative;
  box-shadow: 0 0 0.3rem rgba(0, 0, 0, 0.16);
  transition: all 0.3s ease;
}

@media (hover: hover) {
  .button01:hover {
    background: #fff;
    color: #1D1D1D;
    outline: 0.3rem solid #1D1D1D;
    outline-offset: -0.3rem;
  }

  .button01:hover::before {
    background: url("/eve-full/img/common/button01_icon_black.svg") no-repeat center;
  }
}

.button01::before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 99rem;
  background: url("/eve-full/img/common/button01_icon.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 2rem;
  transform: translate(0, -50%);
  transition: all 0.3s ease;
}

.button01.is-gradient {
  background: linear-gradient(to right, #ff6e2e 0%, #ff3b00 100%);
}

@media (hover: hover) {
  .button01.is-gradient:hover {
    background: #fff;
    color: #FF3B00;
    outline: 0.3rem solid #FF3B00;
    outline-offset: -0.3rem;
  }

  .button01.is-gradient:hover::before {
    background: url("/eve-full/img/common/button01_icon_orange.svg") no-repeat center;
  }
}

.button01.is-back-top::before {
  content: "";
  display: block;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 99rem;
  background: url("/eve-full/img/common/button01_icon.svg") no-repeat center;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 2rem;
  right: auto;
  transform: translate(0, -50%) scale(-1, -1);
  transition: all 0.3s ease;
}

@media only screen and (max-width: 768px) {
  .button01 {
    height: 5.5rem;
  }

  .button01::before {
    width: 1.6rem;
    height: 1.6rem;
    right: 1.2rem;
  }

  .button01.is-back-top::before {
    width: 1.6rem;
    height: 1.6rem;
    left: 1.2rem;
  }
}

.voice_h1 {
  display: flex;
  flex-flow: row wrap;
  align-items: center;
  gap: 0 0.4rem;
}

.voice_h1::before {
  content: "";
  width: 0.6rem;
  height: 2rem;
  background-color: #C90033;
  transform: skewX(-15deg);
}

@media only screen and (max-width: 768px) {
  .voice_title {
    margin-bottom: 0.6rem !important;
    font-size: 5rem !important;
  }
}

/*# sourceMappingURL=common.css.map */