@charset "utf-8";
.index_page_head {
  margin-bottom: 10em;
  position: relative;
}
.scroll_text_wrapper {
  position: absolute;
  width: 100%;
  bottom: -2.5em;
}
.scroll_text {
  width: 100%;
  display: flex;
  overflow: hidden;
}
.scroll_text p {
  flex-shrink: 0;
  font-family: var(--font-en);
  width: auto;
  height: auto;
  display: inline-block;
  text-wrap: nowrap;
  white-space: nowrap;
  font-size: 3.5em;
  line-height: 1;
  height: 1.5em;
  padding: 0 1em 0 0;
  color: #e7c492;
  mix-blend-mode: difference;
  animation: anim-text 15s infinite linear 0.1s both;
}
@keyframes anim-text {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@media (min-width: 740px) {
  .scroll_text_wrapper {
    bottom: -3em;
  }
  .scroll_text p {
    font-size: 54px;
  }
}
@media (min-width: 960px) {
  .scroll_text_wrapper {
    bottom: -4em;
  }
  .scroll_text p {
    font-size: 4.5em;
  }
}
.main_image {
  position: relative;
  background: #fff;
}
.main_catch {
  color: var(--black);
}
.main_copy span {
  display: block;
}
@media (max-width: 739px) {
  .main_catch {
    margin: auto;
    padding: 7em 8% 3em;
    background: var(--yellow) url(../images/index_head_bg_sp.png) right top
      no-repeat;
    background-size: cover;
  }
}
@media (min-width: 740px) and (max-width: 959px) {
  .main_catch {
    margin: auto;
    padding: 8em 8% 3em;
    background: var(--yellow) url(../images/index_head_bg.png) right top
      no-repeat;
    background-size: cover;
    display: flex;
    gap: 3em;
  }
  .main_catch .main_copy {
    width: 50%;
  }
  .main_catch .main_read {
    flex: 1;
    padding: 1em 0 0 0;
  }
}
@media (max-width: 959px) {
  .main_copy {
    font-size: min(9.5vw, 42px);
    line-height: 1.8;
    margin: 0 0 0.5em 0;
  }
  .main_read {
    font-size: 0.9375em;
  }
  .main_image {
    position: relative;
    width: 100%;
    overflow: hidden;
  }
  .main_image::after {
    content: "";
    display: block;
    width: 102%;
    height: 50%;
    position: absolute;
    bottom: -2px;
    left: -1%;
    background: url(../images/page_title_curve.svg) center bottom no-repeat;
    background-size: contain;
    pointer-events: none;
  }
}
@media (min-width: 960px) {
  .index_page_head {
    padding-top: 8em;
    margin-bottom: 10em;
    display: flex;
  }
  .index_page_head_bg {
    position: absolute;
    background: var(--yellow) url(../images/index_head_bg.png) no-repeat;
    background-size: contain;
    width: 100%;
    height: 35em;
    top: 0;
    left: 0;
    z-index: -1;
  }
  .index_page_head_bg::after {
    content: "";
    display: block;
    width: 85%;
    height: 25%;
    background: url(../images/page_title_curve.svg) no-repeat left bottom;
    background-size: contain;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  .main_image {
    border-top-left-radius: 3em;
    border-bottom-left-radius: 3em;
    overflow: hidden;
  }
  .main_image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 50% 50%;
  }
  .main_catch {
    flex: 1;
    padding: 0 0 4em 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 3em;
  }
  .main_catch p {
    width: 80%;
    max-width: 446px;
    margin: 0 0 0 auto;
  }
  .main_catch .main_copy {
    font-size: min(4vw, 50px);
    line-height: 1.7;
  }
  .main_catch .main_read {
    padding: 0 3em 0 0;
  }
  .main_image {
    width: 60%;
    height: 40em;
  }
}
h2 {
  position: relative;
}
.service_block h2::before,
.strength_block h2::before {
  content: "";
  display: block;
  width: 18em;
  height: 18em;
  background: url(../images/circle.png) no-repeat;
  background-size: contain;
  position: absolute;
  top: -5em;
  left: -10em;
  z-index: 1;
}
h2 span {
  display: block;
  position: relative;
  z-index: 2;
}
h2 .en {
  font-size: 3.75em;
  font-family: var(--font-en);
  letter-spacing: 0.03em;
  line-height: 1;
  color: #102f66;
}
h2 .jp {
  font-size: 1.25em;
  font-weight: 700;
  padding: 0.3em 0 0 0;
}
.service_block h2 + p,
.strength_block h2 + p {
  padding: 1em 0 3em;
  position: relative;
  z-index: 2;
}
.service_block {
  padding: 0 0 10em 0;
  position: relative;
}
.service_block ul {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  row-gap: 4em;
}
@media (min-width: 740px) {
  .service_block ul {
    grid-template-columns: repeat(2, 1fr);
    column-gap: 3.375em;
    row-gap: 4em;
  }
}
@media (min-width: 960px) {
  .service_block ul {
    grid-template-columns: repeat(3, 1fr);
  }
}
.service_block a {
  display: block;
}
.service_name {
  display: flex;
}
.service_mark {
  width: 5.25em;
}
.service_name h3 {
  flex: 1;
  padding: 0 0.5em 0 1em;
  display: flex;
  flex-direction: column;
}
.service_name h3 {
  flex: 1;
  padding: 0 0.5em 0 1em;
}
.service_name h3 span {
  display: block;
}
.service_name h3 .jp {
  padding: 0.3em 0 0 0;
  font-size: 1.375em;
  line-height: 1.64;
  font-weight: bold;
}
.service_name h3 .en {
  padding: 0.2em 0 0 0;
  font-size: 0.8125em;
  font-family: var(--font-en);
  line-height: 1.5;
  opacity: 0.5;
}
.service_block ul p {
  font-size: 0.9em;
  padding: 1em 0 0 0;
}
.link_mark {
  position: relative;
  width: 1.6em;
}
.link_mark .move_arrow {
  right: 0;
  width: 1.4em;
  height: 1.4em;
  z-index: 2;
}
.link_mark::before {
  content: "";
  width: 1.8em;
  height: 1.8em;
  display: block;
  position: absolute;
  z-index: -1;
  top: calc(50% - 0.9em);
  left: 0;
  border: 1px solid var(--yellow);
  background: transparent;
  border-radius: 50%;
  transition: 0.3s;
}
@media (hover: hover) {
  a:hover .link_mark::before {
    transform: scale(1.3);
    background: var(--yellow);
  }
  a .service_name h3 .jp {
    width: fit-content;
    block-size: fit-content;
    position: relative;
  }
  a .service_name h3 .jp::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--black);
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
  }
  a:hover .service_name h3 .jp::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
.service_block .images {
  position: relative;
  right: 0;
  border-top-left-radius: 1em;
  border-bottom-left-radius: 1em;
  overflow: hidden;
  width: 80%;
  height: 250px;
  margin: 0 0 0 auto;
}
.service_block .images img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
@media (max-width: 739px) {
  .service_block {
    padding-bottom: 2em;
  }
  .service_block .images {
    margin: 7em 0 0 auto;
  }
}
@media (min-width: 740px) {
  .service_block .images {
    position: absolute;
    right: 0;
    top: calc(100% - 10em);
    width: 35%;
    height: 400px;
  }
}
@media (min-width: 740px) and (max-width: 959px) {
  .service_block ul li:nth-child(2n) {
    transition-delay: 200ms;
  }
}
@media (min-width: 960px) {
  .service_block .images {
    right: 0;
    top: 52%;
    width: 24%;
    max-width: 560px;
    height: 520px;
  }
  .service_block .deley_200 {
    transition-delay: 200ms;
  }
  .service_block .deley_400 {
    transition-delay: 400ms;
  }
}
.strength_content {
  padding: 6em 0 8em;
}
.strength_content .list ul li {
  border-top: 1px solid var(--gray);
  padding: 2em 0;
  position: relative;
}
.strength_content .list ul li a {
  display: flex;
}
.strength_content .list ul li .num {
  font-size: var(--text-14);
  font-family: var(--font-en);
  position: absolute;
  top: -0.5em;
  left: 0;
}
.strength_content .list ul li .num span {
  display: block;
  line-height: 1;
  width: 2em;
  background-color: #fff;
}
.strength_content .list ul li .icon {
  width: 4.375em;
}
.strength_content .list ul li .text {
  flex: 1;
  padding: 0 1em 0 0.5em;
}
.strength_content .list ul li h3 {
  font-size: 1.375em;
  font-weight: 700;
  line-height: 1.5;
  padding: 0 0 0.3em 0;
}
.strength_content .list ul li p {
  font-size: 0.9em;
  opacity: 0.75;
}
@media (max-width: 739px) {
  .strength_content .list ul li:last-child {
    border-bottom: 1px solid var(--gray);
  }
}
@media (max-width: 959px) {
  .strength_content {
    margin: auto;
    width: 84%;
    max-width: 1152px;
  }
  .strength_content .list ul li a {
    align-items: flex-start;
  }
}
@media (min-width: 960px) {
  .strength_wrapper {
    display: flex;
  }
  .strength_wrapper > div:first-child {
    width: 39%;
  }
  .strength_wrapper > div.strength_content {
    width: 61%;
  }
  .strength_content > div {
    width: 88%;
    max-width: 740px;
  }
  .strength_content .list ul li:last-child {
    border-bottom: 1px solid var(--gray);
  }
}
@media (min-width: 740px) and (max-width: 959px) {
  .strength_content .list ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 7%;
    border-bottom: none;
  }
  .strength_content .list ul li:nth-child(2n) {
    transition-delay: 200ms;
  }
}
@media (hover: hover) {
  .strength_content .list ul li a h3 span {
    position: relative;
  }
  .strength_content .list ul li a h3 span::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--black);
    bottom: -3px;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
  }
  .strength_content .list ul li a:hover h3 span::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
.strength_block .images {
  position: relative;
  z-index: 3;
}
.strength_block .images > div {
  width: 50%;
  max-width: 580px;
  height: 280px;
  overflow: hidden;
}
.strength_block .images > div img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}
.strength_block .images > div.image_1 {
  border-top-right-radius: 1em;
  border-bottom-right-radius: 1em;
}
.strength_block .images > div.image_2 {
  position: absolute;
  border-radius: 1em;
  right: 8%;
  bottom: -2em;
}
@media (min-width: 740px) {
  .strength_block .images > div {
    width: 33%;
    height: 400px;
  }
  .strength_block .images > div.image_2 {
    right: auto;
    left: 27%;
    bottom: 0em;
  }
}
@media (max-width: 959px) {
  .strength_block .images {
    padding-bottom: 7em;
    position: relative;
    z-index: -1;
  }
}
@media (min-width: 960px) {
  .strength_block .images > div {
    width: 60%;
    height: 520px;
  }
  .strength_block .images > div.image_2 {
    left: 20%;
    top: 400px;
    border-radius: 1em;
  }
  .strength_block .images > div {
    height: 520px;
  }
}
.area_block {
  margin: 0 0 8em 0;
  color: #fff;
  background: #92969b;
}
.area_block h3 {
  font-size: 1.875em;
  font-weight: 700;
  margin: 0 0 0.7em 0;
  line-height: 1.5;
}
@media (max-width: 739px) {
  .area_block .container {
    background: #8f9398 url(../images/area_bg_sp.jpg) no-repeat;
    background-position: right center;
    background-size: cover;
  }
}
@media (min-width: 740px) {
  .area_block .container {
    background: #92969b url(../images/area_bg.jpg) no-repeat;
    background-size: contain;
    background-position: right center;
  }
}
@media (max-width: 959px) {
  .area_block .container {
    margin: 0;
    width: 100%;
    padding: 3em 8%;
  }
}
@media (min-width: 960px) {
  .area_block .container {
    padding: 3em 0;
  }
}
.faq_block h2 {
  padding: 0 0 2em 0;
}
.faq_block h2 .en {
  font-size: 3.375em;
}
.faq_nav {
  padding: 0 0 1em 0;
}
.faq_nav ul {
  display: flex;
  column-gap: 2em;
  font-weight: 700;
  font-size: 0.9375em;
}
.faq_list {
  border-top: 1px solid;
  padding: 1em 0 0 0;
}

.faq_list li a {
  display: inline-block;
  padding: 0.75em 0 0.75em 3em;
  position: relative;
  font-weight: 700;
}
.faq_list li a::before {
  content: "Q";
  display: block;
  font-weight: 700;
  font-family: var(--font-en);
  background: var(--yellow);
  width: 2.5em;
  line-height: 2.5;
  border-radius: 50%;
  text-align: center;
  position: absolute;
  left: 0;
  top: 0.5em;
}
@media (hover: hover) {
  .faq_block a:hover {
    text-decoration: underline;
    text-underline-offset: 5px;
    text-decoration-thickness: 1px;
  }
}
@media (max-width: 739px) {
  .faq_nav ul {
    font-size: 0.8125em;
  }
}
@media (min-width: 740px) {
  .faq_block .container {
    display: flex;
    column-gap: 4em;
  }
  .faq_contents {
    flex: 1;
  }
}
.pickup_block {
  padding:0 0 5em 0;
}
.pickup_contents {
  display: flex;
  column-gap: 5%;
  row-gap: 3em;
}
.pickup_image {
  position: relative;
}
.pickup_image .figure {
  border-radius: 1em;
  overflow: hidden;
}
.pickup_image h2 {
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fff;
  padding: 1em 2em 0 0;
  border-top-right-radius: 1em;
}
.pickup_block h2 .en {
  font-size: 2.5em;
  line-height: 1;
}
.pickup_block h2 .jp {
  font-size: 1em;
  padding: 0.75em 0 0 0;
  line-height: 1;
}
.pickup_image h2::before,
.pickup_image h2::after {
  content: "";
  position: absolute;
  display: block;
  width: 1em;
  height: 1em;
  background-image: url(../images/round_corner.svg);
  background-size: cover;
}
.pickup_image h2::before {
  bottom: 100%;
  left: 0;
}
.pickup_image h2::after {
  bottom: 0;
  left: 100%;
}
@media (max-width: 739px) {
  .pickup_contents {
    flex-direction: column;
  }
}
@media (min-width: 740px) {
  .pickup_contents > div:last-child {
    margin-top: 5em;
  }
}
@media (max-width: 959px) {
  .pickup_image h2 {
    font-size: 0.8em;
  }
}
@media (hover: hover) {
  .pickup_contents a .figure img {
    transition: 2s;
  }
  .pickup_contents a:hover .figure img {
    transform: scale(1.1);
  }
  .pickup_block a h2 .jp {
    position: relative;
    width: fit-content;
    block-size: fit-content;
  }
  .pickup_block a h2 .jp::after {
    position: absolute;
    left: 0;
    content: "";
    width: 100%;
    height: 1px;
    background: var(--black);
    bottom: -5px;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
  }
  .pickup_block a:hover h2 .jp::after {
    transform: scale(1, 1);
    transform-origin: left top;
  }
}
.pickup_block p {
  padding: 1em 0;
}
.link_btn {
  margin: 2em 0 0 0;
}
@media (max-width: 739px) {
  .link_btn {
    text-align: center;
  }
}
.link_btn a {
  display: inline-block;
  position: relative;
  padding: 0.5em 3.5em 0.5em 2em;
  font-weight: 700;
}
.link_btn a::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: var(--yellow);
  border-radius: 5em;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transition: 0.3s;
}
.link_btn a .move_arrow {
  background-color: #fff;
  border-radius: 50%;
  transform: scale(0.8);
  right: 0.7em;
}
@media (hover: hover) {
  .link_btn a:hover {
    text-decoration: none;
  }
  .link_btn a:hover::before {
    transform: scale(1.07);
  }
}
