@charset "UTF-8";
/* CSS INFORMATION =====================================================
File name : base.css
Description : 共通
===================================================================== */
/* ========================================================
    base
======================================================== */
* {
  margin: 0;
  padding: 0;
  font-size: 100%;
  line-height: 1.8;
  box-sizing: border-box;
}

img {
  width: 100%;
  vertical-align: bottom;
  border: none;
}

a {
  text-decoration: none;
  word-break: break-all;
  transition: 0.3s ease;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.7;
  }
}

dt {
  font-weight: 400;
}

em {
  font-style: normal;
}

.sp {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media screen and (min-width: 768px) {
  .pc {
    display: inline-block;
  }
}

.color_red {
  color: #e50012;
}
.color_blue {
  color: #0014d7;
}

.text_align_left {
  text-align: left;
}
.text_align_center {
  text-align: center;
}
.text_align_right {
  text-align: right;
}
.text_indent {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}

/* ========================================================
    layout
======================================================== */
html {
  font-size: 1.3333333333vw;
}
@media screen and (min-width: 768px) {
  html {
    font-size: 0.7692307692vw;
  }
}
@media screen and (min-width: 1300px) {
  html {
    font-size: 10px;
  }
}

body {
  width: 100%;
  color: #000000;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 3rem;
  font-weight: 400;
  text-align: left;
  letter-spacing: 0.04em;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 2.2rem;
  }
}

.wrapper {
  position: relative;
  width: 100%;
  overflow: hidden;
}
.wrapper::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #f0f0f0;
  z-index: -4;
}

.main {
  position: relative;
  width: 100%;
  padding: 0 0 32rem 0;
}
@media screen and (min-width: 768px) {
  .main {
    padding: 0 0 24rem 0;
  }
}

.inner {
  position: relative;
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 7.5rem;
}
@media screen and (min-width: 768px) {
  .inner {
    padding: 0 5rem;
  }
}

/* ========================================================
    header
======================================================== */
.header {
  position: relative;
  width: 100%;
}
.header .headmenu {
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  padding: 6rem 0 0 0;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .header .headmenu {
    padding: 4.5rem 0 0 0;
  }
}
.header .headmenu .inner {
  max-width: 100%;
  padding: 0;
}
.header .headmenu_column {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
}
.header .headmenu_logo {
  position: relative;
  width: 24.6666666667%;
  margin: 0 0 0 5rem;
}
@media screen and (min-width: 768px) {
  .header .headmenu_logo {
    width: 16rem;
  }
}
.header .headmenu_logo > a {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .header .headmenu_logo > a:hover {
    opacity: 1;
  }
}
.header .headmenu_list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex-direction: row;
  flex-wrap: wrap;
  width: 51.3333333333%;
  margin: 0 5rem 0 0;
}
@media screen and (min-width: 768px) {
  .header .headmenu_list {
    width: calc(100% - 34rem);
  }
}
.header .headmenu_list > li {
  width: auto;
  margin: 0 0 0 3rem;
}
.header .headmenu_list > li > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  padding: 0 4.5rem 0 3rem;
  line-height: 1;
  border-radius: 2em;
  background-color: #000000;
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .header .headmenu_list > li > a:hover {
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .header .headmenu_list > li > a:hover::before {
    transform: translateY(-50%) scale(200);
  }
}
.header .headmenu_list > li > a::before {
  content: "";
  position: absolute;
  right: 2rem;
  top: 50%;
  display: block;
  width: 1rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #0014d7;
  transform: translateY(-50%);
  transition: 0.5s ease-in-out;
  z-index: -1;
}
.header .headmenu_list > li > a::after {
  content: "";
  position: absolute;
  right: 2rem;
  top: 50%;
  display: block;
  width: 1rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff300;
  transform: translateY(-50%);
  transition: 0.5s ease-in-out;
  z-index: -1;
}
.header .headmenu_list > li > a > span {
  display: block;
  color: #fff300;
  font-family: "Poppins", sans-serif;
  font-size: 90%;
  font-weight: 600;
  line-height: 2.4;
}

/* ========================================================
    service
======================================================== */
.service {
  position: relative;
  width: 100%;
  padding: 20rem 0 0 0;
}
.service_column {
  position: relative;
  width: 100%;
}
.service_column::before {
  content: "";
  position: absolute;
  right: 0;
  top: 8.5rem;
  display: block;
  width: 12rem;
  aspect-ratio: 141/144;
  background-image: url(../images/common/common_bg01.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .service_column::before {
    right: 3rem;
    top: -12rem;
    width: 14.1rem;
  }
}
.service_ttl {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .service_ttl {
    width: 54.1666666667%;
  }
}
.service_wrap {
  position: relative;
  width: 100%;
  margin-top: 10rem;
}
.service_list {
  position: relative;
  display: flex;
  align-items: stretch;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  margin: -6rem auto 0;
}
@media screen and (min-width: 768px) {
  .service_list {
  width: 60%;
}
}
.service_list > li {
  width: 47.3333333333%;
  margin: 3rem 0 0 5.3333333333%;
  border-radius: 2rem 0 2rem 0;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .service_list > li {
    width: 31%; 
    margin: 3rem 0 0 3% !important;
  }
}
.service_list > li:nth-child(2n+1) {
  margin-left: 0;
}
@media screen and (min-width: 768px) {
  .service_list > li:nth-child(3n+1) {
    margin-left: 0 !important;
  }
}
.service_list > li.is-active > a {
  transform: translate(2.4rem, 2.4rem);
}
.service_list > li.is-active > a .service_item {
  background-color: #ffffff;
}
.service_list > li > a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0 2.4rem 2.4rem 0;
}
@media screen and (min-width: 768px) {
  .service_list > li > a:hover {
    transform: translate(2.4rem, 2.4rem);
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .service_list > li > a:hover .service_item {
    background-color: #ffffff;
  }
}
.service_list > li > a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 2rem 0 2rem 0;
  background-color: #000000;
  clip-path: polygon(0% 0%, calc(100% - 2.4rem) 0%, 100% 2.4rem, 100% 100%, 2.4rem 100%, 0% calc(100% - 2.4rem));
  z-index: -1;
}
.service_item {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 1rem 1rem 2.5rem 1rem;
  border: 0.4rem solid #000000;
  border-radius: 2rem 0 2rem 0;
  background-color: #fff300;
}
.service_item::before {
  content: "";
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  display: block;
  width: 1rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #000000;
}
.service_item > figure {
  display: block;
  width: 100%;
  border-radius: 2rem 0 2rem 0;
  overflow: hidden;
}
.service_item > span {
  display: block;
  width: 100%;
  min-height: 2.8em;
  margin: 0.4em 0;
  padding: 0 0.2em;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0;
}

/* ========================================================
    contact
======================================================== */
.contact {
  position: relative;
  width: 100%;
  padding: 28rem 0 0 0;
}
@media screen and (min-width: 768px) {
  .contact {
    padding: 20rem 0 0 0;
  }
}
.contact_column {
  position: relative;
  width: 100%;
}
.contact_column::before {
  content: "";
  position: absolute;
  left: 9rem;
  top: -20rem;
  display: block;
  width: 13.6rem;
  aspect-ratio: 151/152;
  background-image: url(../images/common/common_bg02.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .contact_column::before {
    left: 8rem;
    top: -12rem;
    width: 15.1rem;
  }
}
.contact_column::after {
  content: "";
  position: absolute;
  right: 52rem;
  bottom: -28rem;
  display: block;
  width: 11rem;
  aspect-ratio: 122/265;
  background-image: url(../images/common/common_bg03.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .contact_column::after {
    right: 9rem;
    bottom: 0rem;
    width: 12.2rem;
  }
}
.contact_wrap {
  position: relative;
  width: 100%;
}
.contact_btn {
  position: relative;
  width: 100%;
  aspect-ratio: 650/165;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .contact_btn {
    width: 54.1666666667%;
  }
}
.contact_btn > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  height: 100%;
  padding: 0 6.1538461538%;
  border-radius: 2rem;
  background-color: #e50012;
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .contact_btn > a:hover {
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .contact_btn > a:hover::before {
    transform: translateY(-50%) scale(200);
  }
}
.contact_btn > a::before {
  content: "";
  position: absolute;
  right: 3.0769230769%;
  top: 50%;
  display: block;
  width: 1rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #ff4070;
  transform: translateY(-50%);
  transition: 0.5s ease-in-out;
  z-index: -1;
}
.contact_btn > a::after {
  content: "";
  position: absolute;
  right: 3.0769230769%;
  top: 50%;
  display: block;
  width: 1rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff300;
  transform: translateY(-50%);
  transition: 0.5s ease-in-out;
  z-index: -1;
}
.contact_btn > a > figure {
  display: block;
  width: 19.298245614%;
  margin-right: 5.2631578947%;
}
.contact_btn > a > span {
  display: block;
  width: auto;
  color: #fff300;
  font-size: 3.6rem;
  font-weight: 700;
  line-height: 1.4;
  transform: translateY(-0.05em);
}

/* ========================================================
    footer
======================================================== */
.footer {
  position: relative;
  width: 100%;
}
.footer .footfix {
  position: fixed;
  right: 0;
  bottom: 60px;
  display: none;
  z-index: 10;
}
.footer .footfix_pagetop {
  position: relative;
  width: auto;
  margin: 0;
}
.footer .footfix_pagetop > a {
  position: relative;
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer .footfix_pagetop > a:hover {
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .footer .footfix_pagetop > a:hover::before {
    top: -13.7rem;
  }
}
.footer .footfix_pagetop > a::before {
  content: "";
  position: absolute;
  left: 46%;
  top: -12.7rem;
  display: block;
  width: 0.8rem;
  aspect-ratio: 8/115;
  background-image: url(../images/common/arrow_bg01.png);
  background-repeat: no-repeat;
  background-position: center center;
  background-size: 100% 100%;
  transform: translateX(-50%);
  transition: 0.3s ease;
}
.footer .footfix_pagetop > a > span {
  display: block;
  font-family: "Poppins", sans-serif;
  font-size: 90%;
  font-weight: 600;
  line-height: 2;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .footer .footfix_pagetop > a > span {
    font-size: 110%;
  }
}
.footer .footfix_home {
  position: relative;
  width: auto;
  margin-top: 4rem;
}
.footer .footfix_home > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  padding: 3rem 0 4.5rem 0;
  line-height: 1;
  border-radius: 2rem 0 0 2rem;
  background-color: #000000;
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .footer .footfix_home > a:hover {
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .footer .footfix_home > a:hover::before {
    transform: translateX(-50%) scale(200);
  }
}
.footer .footfix_home > a::before {
  content: "";
  position: absolute;
  left: 52%;
  bottom: 2rem;
  display: block;
  width: 1rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #0014d7;
  transform: translateX(-50%);
  transition: 0.5s ease-in-out;
  z-index: -1;
}
.footer .footfix_home > a::after {
  content: "";
  position: absolute;
  left: 52%;
  bottom: 2rem;
  display: block;
  width: 1rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff300;
  transform: translateX(-50%);
  transition: 0.5s ease-in-out;
  z-index: -1;
}
.footer .footfix_home > a > span {
  display: block;
  color: #fff300;
  font-family: "Poppins", sans-serif;
  font-size: 90%;
  font-weight: 600;
  line-height: 2;
  writing-mode: vertical-rl;
}
@media screen and (min-width: 768px) {
  .footer .footfix_home > a > span {
    font-size: 110%;
  }
}
.footer .footmenu {
  position: relative;
  width: 100%;
  padding: 6rem 0;
}
@media screen and (min-width: 768px) {
  .footer .footmenu {
    padding: 4.5rem 0;
  }
}
.footer .footmenu::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  display: block;
  width: calc(100% - 15rem);
  max-width: 1200px;
  height: 1px;
  background-color: #000000;
  transform: translateX(-50%);
}
@media screen and (min-width: 768px) {
  .footer .footmenu::before {
    width: calc(100% - 10rem);
  }
}
.footer .footmenu_column {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  flex-direction: column-reverse;
  flex-wrap: wrap;
  width: 100%;
}
@media screen and (min-width: 768px) {
  .footer .footmenu_column {
    flex-direction: row;
  }
}
.footer .footmenu_logo {
  position: relative;
  width: 53.3333333333%;
  margin: 4.8rem auto 0 auto;
}
@media screen and (min-width: 768px) {
  .footer .footmenu_logo {
    width: 20%;
    margin: 0;
  }
}
.footer .footmenu_logo > a {
  display: block;
  width: 100%;
  height: 100%;
}
@media screen and (min-width: 768px) {
  .footer .footmenu_logo > a:hover {
    opacity: 1;
  }
}
.footer .footmenu_list {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: wrap;
  width: 100%;
  margin: 0 0 -2.4rem 0;
}
@media screen and (min-width: 768px) {
  .footer .footmenu_list {
    justify-content: flex-end;
    width: 73.3333333333%;
    margin: 0 0 -1.8rem 0;
  }
}
.footer .footmenu_list > li {
  width: 61.6666666667%;
  margin: 0 auto 2.4rem auto;
}
@media screen and (min-width: 768px) {
  .footer .footmenu_list > li {
    width: auto;
    margin: 0 0 1.8rem 3rem;
  }
}
.footer .footmenu_list > li.tel > a {
  padding: 0 3rem;
  background-color: #fff300;
  box-shadow: 0 0 0 0.2rem #000000 inset;
}
@media screen and (min-width: 768px) {
  .footer .footmenu_list > li.tel > a:hover::before {
    width: 0.1rem;
    transform: translateY(-50%) scale(800);
  }
}
.footer .footmenu_list > li.tel > a::before {
  width: 0;
}
.footer .footmenu_list > li.tel > a::after {
  content: none;
}
.footer .footmenu_list > li.tel > a > span {
  padding-left: 1.2em;
  color: #000000;
  background-image: url(../images/common/icon_tel.png);
  background-repeat: no-repeat;
  background-position: 0 0.5em;
  background-size: auto 1.3em;
}

.footer .footmenu_list > li > a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  flex-wrap: nowrap;
  width: 100%;
  padding: 0 4.5rem 0 3rem;
  line-height: 1;
  border-radius: 2em;
  background-color: #000000;
  overflow: hidden;
  z-index: 1;
}
@media screen and (min-width: 768px) {
  .footer .footmenu_list > li > a:hover {
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .footer .footmenu_list > li > a:hover::before {
    transform: translateY(-50%) scale(200);
  }
}
.footer .footmenu_list > li > a::before {
  content: "";
  position: absolute;
  right: 2rem;
  top: 50%;
  display: block;
  width: 1rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #0014d7;
  transform: translateY(-50%);
  transition: 0.5s ease-in-out;
  z-index: -1;
}
.footer .footmenu_list > li > a::after {
  content: "";
  position: absolute;
  right: 2rem;
  top: 50%;
  display: block;
  width: 1rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: #fff300;
  transform: translateY(-50%);
  transition: 0.5s ease-in-out;
  z-index: -1;
}
.footer .footmenu_list > li > a > span {
  display: block;
  color: #fff300;
  font-family: "Poppins", sans-serif;
  font-size: 90%;
  font-weight: 600;
  line-height: 2.4;
}
.footer .copyright {
  position: relative;
  width: 100%;
  padding: 6rem 0;
}
@media screen and (min-width: 768px) {
  .footer .copyright {
    padding: 4.5rem 0;
  }
}
.footer .copyright_text {
  position: relative;
  width: 100%;
  font-family: "Poppins", sans-serif;
  font-size: 80%;
  text-align: center;
}