@charset "UTF-8";
* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

html, body {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  font-weight: 400;
  font-family: "Zen Maru Gothic", sans-serif;
  color: rgb(62, 58, 57);
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  html, body {
    font-size: 14.4px;
  }
}
@media screen and (max-width: 374px) {
  html, body {
    font-size: 12.8px;
  }
}

h1, h2, h3, h4, h5, h6 {
  font-weight: 400;
  font-size: 1rem;
}

h1, h2, h3, h4, h5, h6, p {
  margin: 0;
  padding: 0;
}

.select-wrap {
  position: relative;
}
.select-wrap::after {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  z-index: 2;
  width: 15px;
  height: 10px;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  pointer-events: none;
}

input[type=submit],
button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}

select {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  border: none;
  outline: none;
  border: 1px solid rgb(190, 190, 190);
  padding: 10px;
  border-radius: 5px;
}

section {
  padding: 100px 0;
}
section.section-bottom {
  padding-bottom: 0;
}

.contents-wrapper {
  width: calc(100% - 100px);
  max-width: 1120px;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .contents-wrapper {
    width: calc(100% - 40px);
  }
}
.contents-wrapper.big {
  width: 100%;
  max-width: 1500px;
}
.contents-wrapper.mini {
  max-width: 925px;
}

.ipad-block {
  display: none;
}
@media (max-width: 1023px) {
  .ipad-block {
    display: block;
  }
}

@media (max-width: 1023px) {
  .ipad-none {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }
}
.main-contents {
  text-align: left;
  word-wrap: break-word;
  line-height: 200%;
}
.main-contents p:not(:last-child) {
  margin-bottom: 15px;
}
.main-contents img:not(.emoji) {
  width: 50% !important;
  height: auto !important;
  -o-object-fit: cover;
     object-fit: cover;
  margin-bottom: 30px;
}
@media (max-width: 767px) {
  .main-contents img:not(.emoji) {
    width: 100% !important;
  }
}

.left-float {
  float: left;
}

.right-float {
  float: right;
}

.clear {
  clear: both;
}

img, iframe {
  display: block;
  width: 100%;
  height: auto;
  margin: 0 auto;
}

a {
  text-decoration: none;
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

a:hover {
  transition: 0.5s;
  -webkit-transition: 0.5s;
  -moz-transition: 0.5s;
  -ms-transition: 0.5s;
  -o-transition: 0.5s;
}

.text-center {
  text-align: center;
}

.text-left {
  text-align: left;
}

.text-right {
  text-align: right;
}

.color-black {
  color: rgb(0, 0, 0);
}

.color-white {
  color: rgb(255, 255, 255);
}

table {
  width: 100%;
  margin: 0 auto;
  border-collapse: collapse;
  border-spacing: 0;
}

.block-item {
  display: block;
}

.inlineblock-item {
  display: inline-block;
}

.inline-item {
  display: inline;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style-type: none;
}

.right-flex {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}

.white-space {
  white-space: nowrap;
}

figure {
  margin: 0;
  padding: 0;
}

.top-blue-title {
  margin-bottom: 50px;
  font-size: 2.1rem;
  font-weight: 700;
  color: rgb(22, 165, 177);
  text-align: center;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .top-blue-title {
    letter-spacing: 0;
  }
}
.top-blue-title.mini {
  margin-bottom: 15px;
  font-size: 1.1rem;
}
.top-blue-title.white {
  color: rgb(255, 255, 255);
}
.top-blue-title .small {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .top-blue-title .small {
    font-size: 1.4rem;
  }
}
.top-blue-title .small + span {
  display: block;
  margin-top: 10px;
}
.top-blue-title .big {
  font-size: 3rem;
}
@media (max-width: 1100px) {
  .top-blue-title .big {
    font-size: 2.8rem;
  }
}
@media (max-width: 1023px) {
  .top-blue-title .big {
    font-size: 2.3rem;
  }
}
.top-blue-title .number {
  font-family: "Candal", sans-serif;
  font-size: 3.5rem;
}

.service-page-title {
  margin-bottom: 30px;
  position: relative;
  background-color: rgb(22, 165, 177);
  border-radius: 10px;
  padding: 10px 30px 10px 200px;
}
@media (max-width: 1023px) {
  .service-page-title {
    padding-left: 150px;
  }
}
@media (max-width: 767px) {
  .service-page-title {
    padding-left: 100px;
  }
}
.service-page-title img {
  position: absolute;
  left: 10px;
  bottom: 0;
  width: 160px;
}
@media (max-width: 1023px) {
  .service-page-title img {
    width: 130px;
  }
}
@media (max-width: 767px) {
  .service-page-title img {
    width: 80px;
    bottom: 15px;
  }
}
.service-page-title span {
  font-size: 1.8rem;
  font-weight: 700;
  color: rgb(22, 165, 177);
  text-shadow: 1px 1px 0 rgb(255, 255, 255), -1px -1px 0 rgb(255, 255, 255), -1px 1px 0 rgb(255, 255, 255), 1px -1px 0 rgb(255, 255, 255), 0px 1px 0 rgb(255, 255, 255), -1px 0 rgb(255, 255, 255), -1px 0 0 rgb(255, 255, 255), 1px 0 0 rgb(255, 255, 255);
}
@media (max-width: 767px) {
  .service-page-title span {
    font-size: 1.4rem;
  }
}

.tel-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 15px;
  font-size: 2.2rem;
}
@media (max-width: 767px) {
  .tel-link {
    font-size: 1.8rem;
  }
}
.tel-link img {
  width: 42px;
}
.tel-link span {
  font-family: "Candal", sans-serif;
  color: rgb(22, 165, 177);
}

.link-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: 10px 25px;
}
.link-wrapper .time {
  font-size: 0.8rem;
  margin-left: 57px;
}
.link-wrapper .time span {
  margin-right: 15px;
}
.link-wrapper .btn-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 25px;
}
@media (max-width: 767px) {
  .link-wrapper .btn-menu {
    gap: 10px;
  }
}
.link-wrapper .btn-menu a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 5px 20px;
  gap: 5px;
  font-size: 0.9rem;
  color: rgb(255, 255, 255);
  border-radius: 30px;
  border: 1px solid;
}
.link-wrapper .btn-menu a img, .link-wrapper .btn-menu a svg {
  width: 15px;
  margin: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.link-wrapper .btn-menu a.green {
  background-color: rgb(6, 199, 85);
  border-color: rgb(6, 199, 85);
}
.link-wrapper .btn-menu a.green:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(6, 199, 85);
}
.link-wrapper .btn-menu a.red {
  border-color: rgb(241, 97, 78);
  background-color: rgb(241, 97, 78);
}
.link-wrapper .btn-menu a.red:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(241, 97, 78);
}
.link-wrapper .btn-menu a.red:hover svg path {
  stroke: rgb(241, 97, 78);
}

.top-blue-link {
  position: relative;
  margin: 50px auto 0;
  padding: 10px 30px 10px 20px;
  display: block;
  text-align: center;
  width: 100%;
  max-width: 195px;
  border-radius: 30px;
  color: rgb(255, 255, 255);
  background-color: rgb(22, 165, 177);
  border: 2px solid rgb(22, 165, 177);
}
.top-blue-link .arrow {
  position: absolute;
  top: 50%;
  right: 10px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 23px;
  background-color: rgb(255, 255, 255);
  aspect-ratio: 1/1;
  border-radius: 50%;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.top-blue-link .arrow::before {
  width: 16px;
  content: "";
  aspect-ratio: 11/11;
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-position: center;
          mask-position: center;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  background-color: rgb(22, 165, 177);
  -webkit-mask-image: url("../../images/arrow.svg");
          mask-image: url("../../images/arrow.svg");
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.top-blue-link:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(22, 165, 177);
}
.top-blue-link:hover .arrow {
  background-color: rgb(22, 165, 177);
}
.top-blue-link:hover .arrow::before {
  background-color: rgb(255, 255, 255);
}
.top-blue-link.whtie {
  border-color: rgb(255, 255, 255);
  background-color: rgb(255, 255, 255);
  color: rgb(22, 165, 177);
}
.top-blue-link.whtie .arrow {
  background-color: rgb(22, 165, 177);
}
.top-blue-link.whtie .arrow::before {
  background-color: rgb(255, 255, 255);
}
.top-blue-link.whtie:hover {
  background-color: rgb(61, 194, 205);
  color: rgb(255, 255, 255);
}
.top-blue-link.whtie:hover .arrow {
  background-color: rgb(255, 255, 255);
}
.top-blue-link.whtie:hover .arrow::before {
  background-color: rgb(61, 194, 205);
}

.menu-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 30px;
  font-size: 0.9rem;
}
.menu-list a {
  color: rgb(62, 58, 57);
}
.menu-list a:hover {
  color: rgb(22, 165, 177);
}

.sp-navigation {
  display: none;
}
@media (max-width: 1023px) {
  .sp-navigation {
    display: block;
  }
}

.drawer--right .drawer-hamburger {
  top: 20px;
}
@media (max-width: 767px) {
  .drawer--right .drawer-hamburger {
    top: 15px;
    padding: 10px 5px 15px;
  }
}
.drawer--right .drawer-nav {
  padding: 100px 30px;
  background-color: rgb(191, 233, 237);
}
@media (max-width: 767px) {
  .drawer--right .drawer-nav {
    padding: 75px 30px;
  }
}
.drawer--right .drawer-nav img {
  margin-bottom: 30px;
}
.drawer--right .drawer-nav .menu-list li {
  width: 100%;
  text-align: center;
}
.drawer--right .drawer-nav .menu-list a:hover {
  color: rgb(22, 165, 177);
}
.drawer--right .drawer-nav .item {
  position: absolute;
  width: 50%;
  z-index: -1;
}
@media (max-width: 767px) {
  .drawer--right .drawer-nav .item {
    width: 40%;
  }
}
.drawer--right .drawer-nav .item.one {
  bottom: 50px;
  right: 10px;
}
.drawer--right .drawer-nav .item.two {
  right: 10px;
}
.drawer--right .drawer-nav .item.three {
  top: 50%;
  left: 10px;
}
.drawer--right.drawer-open button.drawer-hamburger {
  right: 0;
}

.hidden-area {
  overflow: hidden;
}

header {
  padding: 10px 25px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100000;
}
@media (max-width: 1023px) {
  header {
    padding: 10px 70px 10px 25px;
  }
}
@media (max-width: 767px) {
  header {
    padding: 10px;
  }
}
header .contents-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  header .contents-wrapper {
    gap: 10px;
  }
}

.header-logo {
  width: 250px;
}
@media (max-width: 767px) {
  .header-logo {
    width: 150px;
  }
}

.header-menu-wrapper .menu-list {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  margin-top: 5px;
}
@media (max-width: 1023px) {
  .header-menu-wrapper .menu-list {
    display: none;
  }
}
.header-menu-wrapper .menu-list .home {
  display: none;
}
.header-menu-wrapper .link-wrapper {
  gap: 5px 25px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1023px) {
  .header-menu-wrapper .link-wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
@media (max-width: 767px) {
  .header-menu-wrapper .link-wrapper {
    margin-right: 35px;
  }
}
.header-menu-wrapper .link-wrapper .time {
  display: none;
}
.header-menu-wrapper .tel-link {
  font-size: 1.8rem;
}
@media (max-width: 767px) {
  .header-menu-wrapper .tel-link {
    gap: 3px;
    font-size: 1rem;
  }
  .header-menu-wrapper .tel-link img {
    width: 25px;
  }
}
@media (max-width: 767px) {
  .header-menu-wrapper .btn-menu {
    position: fixed;
    bottom: 0;
    left: 0;
    gap: 0;
    width: 100%;
  }
  .header-menu-wrapper .btn-menu a {
    border-radius: 0;
    width: 50%;
  }
}

footer {
  margin-top: 100px;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(25%, rgb(255, 255, 255)), color-stop(25%, rgb(22, 165, 177)));
  background: linear-gradient(to bottom, rgb(255, 255, 255) 25%, rgb(22, 165, 177) 25%);
}
@media (max-width: 1023px) {
  footer {
    margin-top: 0;
  }
}

.footer-contact-wrapper {
  position: relative;
  border: 3px solid rgb(22, 165, 177);
  border-radius: 20px;
  background-color: rgb(255, 255, 255);
  padding: 30px 50px 30px 100px;
}
@media (max-width: 767px) {
  .footer-contact-wrapper {
    padding: 30px 20px;
  }
}
.footer-contact-wrapper .inner-box {
  position: relative;
  z-index: 2;
}
.footer-contact-wrapper .footer-area {
  position: absolute;
  left: 0;
  bottom: -15%;
  -webkit-transform: translateX(-20%);
          transform: translateX(-20%);
  max-width: 335px;
}
@media (max-width: 1100px) {
  .footer-contact-wrapper .footer-area {
    max-width: 265px;
    bottom: -12%;
  }
}
@media (max-width: 1023px) {
  .footer-contact-wrapper .footer-area {
    max-width: 225px;
    bottom: -7%;
  }
}
.footer-contact-wrapper .footer-aocyan {
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(30%, 30%);
          transform: translate(30%, 30%);
  width: 150px;
}
@media (max-width: 767px) {
  .footer-contact-wrapper .footer-aocyan {
    bottom: auto;
    top: 0;
    width: 110px;
    -webkit-transform: translate(30%, -70%);
            transform: translate(30%, -70%);
  }
}
.footer-contact-wrapper .top-blue-title {
  margin-bottom: 25px;
}
.footer-contact-wrapper .link-wrapper {
  margin-bottom: 25px;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.footer-contact-wrapper .btn-menu {
  margin-top: 10px;
}
@media (max-width: 767px) {
  .footer-contact-wrapper .sp-bold {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    margin-bottom: 5px;
  }
}
.footer-contact-wrapper .footer-contact-text {
  text-align: center;
  font-size: 0.9rem;
}

.footer-menu-wrapper {
  padding: 90px 0 70px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
}
@media (max-width: 767px) {
  .footer-menu-wrapper {
    padding: 50px 0;
  }
}
.footer-menu-wrapper .footer-logo {
  width: 220px;
  margin: 0;
}
@media (max-width: 1023px) {
  .footer-menu-wrapper .menu-list {
    margin-left: auto;
  }
}
@media (max-width: 767px) {
  .footer-menu-wrapper .menu-list {
    gap: 5px 20px;
    -webkit-box-pack: end;
        -ms-flex-pack: end;
            justify-content: flex-end;
  }
}
.footer-menu-wrapper .menu-list .home {
  display: none;
}
.footer-menu-wrapper .menu-list a {
  color: rgb(255, 255, 255);
}

.copy-right {
  padding: 10px;
  text-align: center;
  color: rgb(255, 255, 255);
  font-size: 0.8rem;
  background-color: rgb(31, 141, 150);
}
@media (max-width: 767px) {
  .copy-right {
    padding-bottom: 40px;
  }
}
.copy-right span {
  margin-right: 30px;
}
.copy-right a {
  color: rgb(255, 255, 255);
  border-bottom: 1px solid transparent;
}
.copy-right a:hover {
  border-color: rgb(255, 255, 255);
}

.link-contents {
  max-width: 946px;
  margin: 0 auto;
  border-radius: 90px;
  border: 4px solid rgb(22, 165, 177);
  background-color: rgb(255, 255, 255);
  padding: 35px;
}
@media (max-width: 1023px) {
  .link-contents {
    padding: 30px 20px;
  }
}
@media (max-width: 767px) {
  .link-contents {
    border-radius: 20px;
  }
}
.link-contents .link-contants-text {
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.1em;
}
@media (max-width: 767px) {
  .link-contents .link-contants-text {
    letter-spacing: 0;
  }
}
.link-contents .link-wrapper {
  margin-top: 0;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
@media (max-width: 1023px) {
  .link-contents .tel-link {
    font-size: 1.8rem;
  }
}

.fv-section {
  padding-top: 180px;
  padding-bottom: 0;
  background-image: url("../../images/fv-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-position: bottom;
}
@media (max-width: 1023px) {
  .fv-section {
    margin-bottom: 50px;
  }
}
@media (max-width: 767px) {
  .fv-section {
    padding-top: 100px;
  }
}

.fv-image-wrapper img {
  position: absolute;
  width: 15%;
}
.fv-image-wrapper img.one {
  max-width: 90px;
  top: 30%;
  left: 5%;
}
@media (max-width: 767px) {
  .fv-image-wrapper img.one {
    top: 40%;
  }
}
.fv-image-wrapper img.two {
  top: 12%;
  right: 5%;
  max-width: 135px;
}
@media (max-width: 767px) {
  .fv-image-wrapper img.two {
    width: 25%;
    top: 6%;
  }
}
.fv-image-wrapper img.three {
  top: 25%;
  right: 7%;
  max-width: 120px;
}
@media (max-width: 767px) {
  .fv-image-wrapper img.three {
    width: 25%;
    right: 0%;
    top: 40%;
  }
}
.fv-image-wrapper img.four {
  top: 8%;
  left: 10%;
  max-width: 130px;
}
.fv-image-wrapper img.five {
  top: 18%;
  right: 20%;
  max-width: 110px;
}
@media (max-width: 767px) {
  .fv-image-wrapper img.five {
    right: 5%;
    top: 23%;
  }
}
.fv-image-wrapper img.six {
  top: 15%;
  left: 25%;
  max-width: 160px;
}
@media (max-width: 1023px) {
  .fv-image-wrapper img.six {
    left: 15%;
    top: 20%;
  }
}
@media (max-width: 767px) {
  .fv-image-wrapper img.six {
    width: 35%;
  }
}

.fv-title {
  position: relative;
  z-index: 2;
  margin-bottom: 45px;
}
@media (max-width: 767px) {
  .fv-title {
    margin-bottom: 10px;
  }
}

.speech-bubble-box {
  position: relative;
  width: 325px;
  margin: 0 auto 30px;
  font-size: 2.1rem;
  font-weight: 700;
  color: rgb(22, 165, 177);
}
@media (max-width: 767px) {
  .speech-bubble-box {
    margin-bottom: 5px;
    font-size: 1.8rem;
    max-width: 250px;
  }
}
.speech-bubble-box span {
  position: absolute;
  top: 14px;
  left: 0;
  padding-left: 5px;
  text-align: center;
  width: 100%;
  z-index: 1;
}
@media (max-width: 767px) {
  .speech-bubble-box span {
    top: 9px;
  }
}
.speech-bubble-box .text-image {
  position: absolute;
  bottom: 0;
  right: 0;
  -webkit-transform: translate(60%, 10%);
          transform: translate(60%, 10%);
  width: 120px;
}
@media (max-width: 767px) {
  .speech-bubble-box .text-image {
    width: 100px;
  }
}

.fv-text {
  display: block;
  font-size: 2rem;
  text-align: center;
}
@media (max-width: 1023px) {
  .fv-text {
    font-size: 1.5rem;
  }
}
.fv-text .big {
  font-size: 3rem;
}
@media (max-width: 1023px) {
  .fv-text .big {
    font-size: 2.5rem;
  }
}
.fv-text img {
  display: inline-block;
  width: 270px;
  margin: 0;
}
@media (max-width: 1023px) {
  .fv-text img {
    width: 210px;
  }
}
@media (max-width: 767px) {
  .fv-text img {
    margin-top: 7px;
  }
}

.fv-point-wrapper {
  position: relative;
  z-index: 2;
  max-width: 420px;
  margin: 0 auto 120px;
  gap: 25px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 25px 1fr 25px 1fr;
  grid-template-columns: repeat(3, 1fr);
}
@media (max-width: 767px) {
  .fv-point-wrapper {
    gap: 10px;
    width: 80%;
    margin-bottom: 50px;
  }
}

.fv-link-wrapper {
  position: relative;
  margin: auto;
  width: calc(100% - 50px);
  max-width: 946px;
}
@media (max-width: 1023px) {
  .fv-link-wrapper {
    -webkit-transform: translateY(50px);
            transform: translateY(50px);
  }
}
@media (max-width: 767px) {
  .fv-link-wrapper {
    width: calc(100% - 30px);
  }
}
.fv-link-wrapper .lady {
  position: absolute;
  top: 0;
  left: 0;
  width: 30%;
  max-width: 240px;
  -webkit-transform: translate(-20%, -85%);
          transform: translate(-20%, -85%);
}
.fv-link-wrapper .link-contents {
  position: relative;
  z-index: 0;
}
.fv-link-wrapper .track {
  position: absolute;
  pointer-events: none;
  width: 60%;
  max-width: 450px;
  right: 0;
  -webkit-transform: translate(70%, -80%);
          transform: translate(70%, -80%);
  z-index: 2;
}
@media (max-width: 767px) {
  .fv-link-wrapper .track {
    max-width: 280px;
    -webkit-transform: translate(30%, -80%);
            transform: translate(30%, -80%);
  }
}

.reason-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 60px;
  counter-reset: number 0;
}
@media (max-width: 1023px) {
  .reason-wrapper {
    gap: 10px;
  }
}

.reason-box {
  margin-top: 60px;
  position: relative;
  width: calc((100% - 120px) / 3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  counter-increment: number 1;
}
@media (max-width: 1023px) {
  .reason-box {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (max-width: 767px) {
  .reason-box {
    margin-top: 30px;
  }
}
.reason-box::before {
  position: absolute;
  top: 0;
  left: 0;
  -webkit-transform: translate(-25px, -60px);
          transform: translate(-25px, -60px);
  width: 100px;
  aspect-ratio: 1/1;
  background-image: url("../../images/number-bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  content: counter(number, decimal-leading-zero);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 2.4rem;
  color: rgb(233, 204, 0);
  font-family: "Candal", sans-serif;
  font-weight: 400;
}
@media (max-width: 767px) {
  .reason-box::before {
    width: 70px;
    font-size: 2rem;
    -webkit-transform: translate(-5px, -30px);
            transform: translate(-5px, -30px);
  }
}
.reason-box img {
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
  border-radius: 20px 20px 0 0;
}
@media (max-width: 1023px) {
  .reason-box img {
    width: 50%;
    border-radius: 20px 0 0 20px;
  }
}
@media (max-width: 767px) {
  .reason-box img {
    width: 45%;
  }
}
.reason-box .text-box {
  padding: 30px 20px;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  border-radius: 0 0 20px 20px;
  border: 2px solid rgb(22, 165, 177);
  border-top: none;
}
@media (max-width: 1023px) {
  .reason-box .text-box {
    width: 50%;
    border-left: none;
    border-radius: 0 20px 20px 0;
    border-top: 2px solid rgb(22, 165, 177);
  }
}
@media (max-width: 767px) {
  .reason-box .text-box {
    width: 55%;
    padding: 30px 10px;
  }
}

.bg-blue {
  overflow: hidden;
  background-color: rgb(220, 240, 242);
}

.service-section {
  position: relative;
}
.service-section .contents-wrapper {
  position: relative;
  z-index: 2;
}

.service-deco {
  position: absolute;
}
.service-deco.white {
  top: 20%;
  left: 5%;
  width: 120px;
}
@media (max-width: 1100px) {
  .service-deco.white {
    top: 13%;
  }
}
@media (max-width: 767px) {
  .service-deco.white {
    width: 80px;
  }
}
.service-deco.aochan {
  top: 0;
  right: 10%;
  width: 170px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}
@media (max-width: 1023px) {
  .service-deco.aochan {
    right: 0;
  }
}
@media (max-width: 767px) {
  .service-deco.aochan {
    width: 120px;
  }
}

.service-wrapper {
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 1fr 44px 1fr 44px 1fr;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px 44px;
}
@media (max-width: 1023px) {
  .service-wrapper {
    gap: 20px 10px;
  }
}
@media (max-width: 767px) {
  .service-wrapper {
    gap: 10px 5px;
    -ms-grid-columns: 1fr 5px 1fr;
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-box {
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
  padding: 30px;
}
@media (max-width: 1023px) {
  .service-box {
    padding: 30px 20px;
    font-size: 0.8rem;
  }
}
@media (max-width: 767px) {
  .service-box {
    padding: 20px 10px;
  }
}
.service-box img {
  margin-bottom: 15px;
  max-width: 160px;
  width: 80%;
}

.top-link-wrapper {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px 30px;
}
.top-link-wrapper .top-blue-link {
  margin: 0;
}

.voice-section {
  position: relative;
  margin-top: 50px;
  padding-top: 0;
  background-image: url("../../images/bg-voice.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-position: top;
}
.voice-section .voice-deco-blue {
  position: absolute;
  top: 0;
  left: 5%;
  width: 20%;
  max-width: 140px;
}
@media (max-width: 1200px) {
  .voice-section .voice-deco-blue {
    top: -100px;
    left: 0;
  }
}
.voice-section .voice-deco-white {
  position: absolute;
  top: 5%;
  right: 3%;
  width: 20%;
  max-width: 140px;
}
@media (max-width: 1200px) {
  .voice-section .voice-deco-white {
    top: 100px;
  }
}
.voice-section .swiper.voice-swiper {
  overflow: visible;
}
.voice-section .link-contents {
  z-index: 1;
  -webkit-transform: translateY(-50px);
          transform: translateY(-50px);
  margin-bottom: 65px;
}

.case-section .top-blue-title {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.case-section .top-blue-title img {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(-100%, -50%) rotate(-25deg);
          transform: translate(-100%, -50%) rotate(-25deg);
  width: 120px;
}

.faq-box {
  overflow: hidden;
  border-radius: 15px;
  background-color: rgb(220, 240, 242);
}
.faq-box:not(:last-child) {
  margin-bottom: 15px;
}
.faq-box .q-box {
  position: relative;
  padding: 20px 55px 20px 80px;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
@media (max-width: 1023px) {
  .faq-box .q-box {
    padding: 20px 45px 20px 60px;
  }
}
@media (max-width: 767px) {
  .faq-box .q-box {
    padding: 20px 40px 20px 45px;
  }
}
.faq-box .q-box .q-inner {
  pointer-events: none;
}
.faq-box .q-box::before, .faq-box .q-box::after {
  pointer-events: none;
  position: absolute;
  top: 50%;
  left: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: block;
  width: 39px;
  aspect-ratio: 1/1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("../../images/q-close.svg");
}
@media (max-width: 1023px) {
  .faq-box .q-box::before, .faq-box .q-box::after {
    left: 10px;
  }
}
@media (max-width: 767px) {
  .faq-box .q-box::before, .faq-box .q-box::after {
    width: 25px;
  }
}
.faq-box .q-box::after {
  opacity: 0;
  -webkit-transition: 0.5s;
  transition: 0.5s;
  background-image: url("../../images/q-open.svg");
}
.faq-box .q-box.is-open {
  background-color: rgb(22, 165, 177);
  color: rgb(255, 255, 255);
}
.faq-box .q-box.is-open::after {
  opacity: 1;
}
.faq-box .q-box.is-open .plus::after, .faq-box .q-box.is-open .plus::before {
  background-color: rgb(255, 255, 255);
}
.faq-box .q-box.is-open .plus::after {
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
}
.faq-box .plus {
  pointer-events: none;
  position: absolute;
  top: 50%;
  right: 30px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
}
@media (max-width: 1023px) {
  .faq-box .plus {
    right: 20px;
  }
}
@media (max-width: 767px) {
  .faq-box .plus {
    width: 15px;
    right: 15px;
  }
}
.faq-box .plus::before, .faq-box .plus::after {
  content: "";
  width: 100%;
  height: 3px;
  display: block;
  background-color: rgb(22, 165, 177);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.faq-box .plus::after {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(90deg);
          transform: translate(-50%, -50%) rotate(90deg);
}
.faq-box .a-box {
  -webkit-transition: max-height 0.5s;
  transition: max-height 0.5s;
  overflow: hidden;
  max-height: 0;
  padding: 0 55px 0 80px;
}
@media (max-width: 1023px) {
  .faq-box .a-box {
    padding-inline: 20px;
  }
}
.faq-box .a-box.is-open {
  -webkit-transition: max-height 0.5s;
  transition: max-height 0.5s;
  max-height: var(--max-height);
  opacity: 1;
}
.faq-box .a-box .a-inner {
  padding: 20px 0;
}

.mv-section {
  padding-top: 150px;
  padding-bottom: 0;
  background-image: url("../../images/mv/bg.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-position: bottom;
}
@media (max-width: 767px) {
  .mv-section {
    padding-bottom: 50px;
  }
}
.mv-section .contents-wrapper {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 30px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.mv-section .fv-image {
  width: 50%;
  max-width: 400px;
  margin: 0;
}
@media (max-width: 1023px) {
  .mv-section .fv-image {
    width: 35%;
  }
}
@media (max-width: 767px) {
  .mv-section .fv-image {
    width: 50%;
    position: absolute;
    bottom: 0;
    right: 0;
    display: none;
  }
}
.mv-section .top-blue-title {
  position: relative;
  z-index: 2;
}
.mv-section .mv-item {
  position: absolute;
  width: 20%;
}
@media (max-width: 767px) {
  .mv-section .mv-item {
    width: 25%;
  }
}
.mv-section .mv-item.one {
  bottom: 30%;
  left: 20%;
  max-width: 105px;
}
@media (max-width: 1023px) {
  .mv-section .mv-item.one {
    left: 25%;
  }
}
@media (max-width: 767px) {
  .mv-section .mv-item.one {
    left: auto;
    right: 5%;
  }
}
.mv-section .mv-item.two {
  top: 20%;
  left: 30%;
  max-width: 120px;
}
@media (max-width: 1023px) {
  .mv-section .mv-item.two {
    top: -10%;
    left: 40%;
  }
}
@media (max-width: 767px) {
  .mv-section .mv-item.two {
    top: -60%;
  }
}

.service-page-section {
  position: relative;
}
.service-page-section .service-page-deco {
  position: absolute;
  left: -30px;
  top: 100px;
  width: 140px;
}
@media (max-width: 1023px) {
  .service-page-section .service-page-deco {
    width: 100px;
  }
}

.service-page-wrapper {
  position: relative;
}
.service-page-wrapper .service-page-aochan {
  position: absolute;
  bottom: -100px;
  right: -150px;
  width: 230px;
}
@media (max-width: 1340px) {
  .service-page-wrapper .service-page-aochan {
    right: -70px;
  }
}
@media (max-width: 1023px) {
  .service-page-wrapper .service-page-aochan {
    width: 120px;
    right: -30px;
    bottom: -50px;
  }
}
@media (max-width: 767px) {
  .service-page-wrapper .service-page-aochan {
    bottom: -100px;
    z-index: -1;
  }
}

.service-page-box:not(:last-child) {
  margin-bottom: 100px;
}
.service-page-box .inner-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 70px;
}
@media (max-width: 1023px) {
  .service-page-box .inner-box {
    gap: 20px;
  }
}
.service-page-box .image-box {
  width: 390px;
}
@media (max-width: 1023px) {
  .service-page-box .image-box {
    width: calc(40% - 20px);
  }
}
@media (max-width: 767px) {
  .service-page-box .image-box {
    width: 100%;
  }
}
.service-page-box .text-box {
  width: calc(100% - 390px - 70px);
}
@media (max-width: 1023px) {
  .service-page-box .text-box {
    width: 60%;
  }
}
@media (max-width: 767px) {
  .service-page-box .text-box {
    width: 100%;
  }
}
.service-page-box .inner-title {
  margin-bottom: 20px;
  font-weight: 700;
  font-size: 1.1rem;
}

.flow-section {
  position: relative;
}
.flow-section .top-blue-title:not(.mini) {
  margin-bottom: 80px;
}
.flow-section .flow-page-deco {
  position: absolute;
  left: 0;
  top: 100px;
  width: 140px;
}
@media (max-width: 1023px) {
  .flow-section .flow-page-deco {
    width: 100px;
  }
}
@media (max-width: 767px) {
  .flow-section .flow-page-deco {
    display: none;
  }
}

.flow-box {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  padding-bottom: 35px;
}
@media (max-width: 767px) {
  .flow-box {
    margin-bottom: 30px;
  }
}
.flow-box:last-child {
  padding-bottom: 0;
}
.flow-box:last-child::after {
  display: none;
}
.flow-box::after {
  position: absolute;
  left: 34px;
  top: 50%;
  content: "";
  display: block;
  width: 3px;
  height: 100%;
  background-color: rgb(233, 204, 0);
}
@media (max-width: 767px) {
  .flow-box::after {
    display: none;
  }
}
.flow-box .step {
  position: relative;
  font-size: 1.9rem;
  font-family: "Candal", sans-serif;
  color: rgb(22, 165, 177);
  padding-left: 34px;
}
@media (max-width: 767px) {
  .flow-box .step {
    position: absolute;
    top: 0;
    left: 10px;
    -webkit-transform: translateY(-82%);
            transform: translateY(-82%);
  }
}
.flow-box .step::before {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  z-index: -1;
  content: "";
  display: block;
  border-radius: 50%;
  width: 70px;
  aspect-ratio: 1/1;
  background-color: rgb(233, 204, 0);
}
.flow-box .top-blue-title {
  text-align: left;
}
@media (max-width: 1023px) {
  .flow-box .top-blue-title {
    text-align: center;
  }
}
.flow-box .text-box {
  padding: 10px 50px;
  width: calc(100% - 135px - 30px);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  border-radius: 20px;
  border: 2px solid rgb(22, 165, 177);
  gap: 10px 40px;
}
@media (max-width: 1023px) {
  .flow-box .text-box {
    padding: 10px 30px;
  }
}
@media (max-width: 767px) {
  .flow-box .text-box {
    width: 100%;
  }
}
.flow-box .text-box img {
  width: 160px;
}
.flow-box .text-box .inner-box {
  width: calc(100% - 160px - 40px);
}
@media (max-width: 1023px) {
  .flow-box .text-box .inner-box {
    width: 100%;
  }
}

@media (max-width: 1160px) {
  .price-section .service-wrapper {
    gap: 10px;
  }
}
@media (max-width: 1023px) {
  .price-section .service-wrapper {
    -ms-grid-columns: (1fr)[2];
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 767px) {
  .price-section .service-wrapper {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}
.price-section .service-box {
  border: 2px solid rgb(22, 165, 177);
  border-radius: 20px;
  text-align: center;
}
@media (max-width: 1160px) {
  .price-section .service-box {
    padding: 30px 10px;
  }
}
@media (max-width: 767px) {
  .price-section .service-box {
    width: 100%;
    max-width: 300px;
  }
}
@media (max-width: 1160px) {
  .price-section .top-blue-title .mini {
    font-size: 1.4rem;
  }
}
.price-section .price {
  margin-top: 20px;
  color: rgb(241, 97, 78);
  font-family: "Candal", sans-serif;
  font-size: 1.5rem;
  text-align: center;
}
.price-section .price.ja {
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 700;
}

.price-link-wrapper {
  margin-top: 120px;
  position: relative;
  background-color: rgb(220, 240, 242);
  padding: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px 100px;
  border-radius: 20px;
}
@media (max-width: 1023px) {
  .price-link-wrapper {
    padding: 50px 20px;
  }
}
@media (max-width: 767px) {
  .price-link-wrapper {
    gap: 30px;
    margin-top: 80px;
  }
}
.price-link-wrapper .price-aocyan {
  pointer-events: none;
  position: absolute;
  bottom: 0;
  left: 0;
  -webkit-transform: translate(-20%, 20%) rotate(-25deg);
          transform: translate(-20%, 20%) rotate(-25deg);
  width: 180px;
}
@media (max-width: 767px) {
  .price-link-wrapper .price-aocyan {
    width: 100px;
  }
}
.price-link-wrapper .top-blue-link {
  margin-top: 0;
}

.comapny-box {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  font-weight: 700;
  color: rgb(22, 165, 177);
}
.comapny-box:not(:last-child) {
  margin-bottom: 25px;
}
.comapny-box .title {
  width: 170px;
  padding: 10px;
  text-align: center;
  background-color: rgb(220, 240, 242);
  border: 1px solid rgb(220, 240, 242);
  border-radius: 15px 0 0 15px;
}
@media (max-width: 767px) {
  .comapny-box .title {
    width: 100%;
    border-radius: 10px 10px 0 0;
    border-color: rgb(22, 165, 177);
    border-bottom: none;
  }
}
.comapny-box .contents {
  width: calc(100% - 170px);
  border: 1px solid rgb(22, 165, 177);
  border-left: none;
  padding: 10px 30px;
  border-radius: 0 15px 15px 0;
}
@media (max-width: 767px) {
  .comapny-box .contents {
    width: 100%;
    border-radius: 0 0 10px 10px;
    border-left: 1px solid rgb(22, 165, 177);
    border-top: none;
  }
}

.contact-page-link-wrapper {
  position: relative;
}
.contact-page-link-wrapper .page-contact-aochan {
  position: absolute;
  pointer-events: none;
  left: 0;
  bottom: 20px;
  -webkit-transform: translateX(-35%) rotate(-20deg);
          transform: translateX(-35%) rotate(-20deg);
  width: 130px;
}
@media (max-width: 1023px) {
  .contact-page-link-wrapper .page-contact-aochan {
    width: 100px;
  }
}
.contact-page-link-wrapper .link-contents {
  border-radius: 20px;
}
.contact-page-link-wrapper .link-contents .btn-menu {
  margin-top: 15px;
}
.contact-page-link-wrapper .link-contents .btn-menu .red {
  display: none;
}

.contact-form-wrapper {
  background-color: rgb(220, 240, 242);
  padding: 80px 40px;
  border-radius: 20px;
}
@media (max-width: 767px) {
  .contact-form-wrapper {
    padding: 50px 20px;
  }
}
.contact-form-wrapper .contact-box:not(:last-child) {
  margin-bottom: 30px;
}
.contact-form-wrapper .title {
  margin-bottom: 10px;
}
.contact-form-wrapper .title.must span::after {
  content: "*必須";
  font-size: 0.7rem;
  color: rgb(255, 0, 0);
}
.contact-form-wrapper .text-common {
  display: block;
  width: 100%;
  padding: 15px 20px;
  border: none;
  outline: none;
  border-radius: 10px;
}
.contact-form-wrapper .text-common::-webkit-input-placeholder {
  color: rgb(127, 127, 127);
}
.contact-form-wrapper .text-common::-moz-placeholder {
  color: rgb(127, 127, 127);
}
.contact-form-wrapper .text-common:-ms-input-placeholder {
  color: rgb(127, 127, 127);
}
.contact-form-wrapper .text-common::-ms-input-placeholder {
  color: rgb(127, 127, 127);
}
.contact-form-wrapper .text-common::placeholder {
  color: rgb(127, 127, 127);
}
.contact-form-wrapper a {
  color: rgb(62, 58, 57);
  border-bottom: 1px solid rgb(62, 58, 57);
}
.contact-form-wrapper a:hover {
  border-color: transparent;
}
.contact-form-wrapper .top-blue-link.button-submit {
  border-color: rgb(233, 204, 0);
  background-color: rgb(233, 204, 0);
  opacity: 0.5;
  color: rgb(255, 255, 255);
  -webkit-transition: 0.5s;
  transition: 0.5s;
}
.contact-form-wrapper .top-blue-link.button-submit.active {
  opacity: 1;
}
.contact-form-wrapper .top-blue-link.button-submit.active:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(233, 204, 0);
}
.contact-form-wrapper .top-blue-link.button-submit.active:hover .arrow {
  background-color: rgb(233, 204, 0);
}
.contact-form-wrapper .top-blue-link.button-submit.active:hover .arrow::before {
  background-color: rgb(255, 255, 255);
}
.contact-form-wrapper .top-blue-link.button-submit .arrow {
  background-color: rgb(255, 255, 255);
}
.contact-form-wrapper .top-blue-link.button-submit .arrow::before {
  background-color: rgb(233, 204, 0);
}

.policy-wrapper:not(:last-child) {
  margin-bottom: 50px;
}
.policy-wrapper .service-page-title {
  padding-left: 30px;
}
.policy-wrapper .service-page-title span {
  font-size: 1.1rem;
}
.policy-wrapper p:not(:last-child) {
  margin-bottom: 15px;
}
.policy-wrapper a {
  color: rgb(62, 58, 57);
  border-bottom: 1px solid rgb(22, 165, 177);
}

.voice-list.swiper-wrapper .swiper-slide {
  height: auto;
}
.voice-list.swiper-wrapper .swiper-slide a {
  height: 100%;
}
.voice-list.swiper-wrapper .name {
  display: none;
}
.voice-list.archive li:not(:last-child) {
  margin-bottom: 40px;
}
.voice-list.archive a {
  border: 2px solid rgb(22, 165, 177);
}
.voice-list a {
  padding: 20px 30px;
  display: block;
  background-color: rgb(255, 255, 255);
  border-radius: 20px;
}
.voice-list a:hover {
  -webkit-box-shadow: 2px 2px 5px rgba(62, 58, 57, 0.5);
          box-shadow: 2px 2px 5px rgba(62, 58, 57, 0.5);
}

.post-day {
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: rgb(149, 149, 149);
}
.post-day span:not(:last-child) {
  margin-right: 10px;
}

.category-wrapper {
  margin-bottom: 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px 20px;
}
@media (max-width: 767px) {
  .category-wrapper {
    gap: 5px 10px;
  }
}
.category-wrapper .category {
  font-size: 0.9rem;
  color: rgb(255, 255, 255);
  border-radius: 32px;
  width: 50%;
  padding: 3px;
  max-width: 140px;
  text-align: center;
  border: 1px solid;
}
.category-wrapper .category.all {
  background-color: rgb(220, 240, 242);
  color: rgb(22, 165, 177);
  border-color: rgb(220, 240, 242);
}
.category-wrapper .category.buy {
  background-color: rgb(241, 97, 78);
}
.category-wrapper .category.unwanted-items {
  background-color: rgb(22, 165, 177);
}
.category-wrapper.category-link {
  margin-bottom: 50px;
}
.category-wrapper.category-link .category:hover.all {
  border-color: rgb(22, 165, 177);
}
.category-wrapper.category-link .category:hover.buy {
  color: rgb(241, 97, 78);
  background-color: rgb(255, 255, 255);
}
.category-wrapper.category-link .category:hover.unwanted-items {
  color: rgb(22, 165, 177);
  background-color: rgb(255, 255, 255);
}
.category-wrapper .post-day {
  margin-bottom: 0;
}

.archive-title {
  margin-bottom: 15px;
  color: rgb(62, 58, 57);
  font-weight: 700;
}
.archive-title span {
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.archive-contents {
  font-size: 0.9rem;
  color: rgb(62, 58, 57);
}
.archive-contents span {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  -webkit-line-clamp: 2;
}

.more-text {
  margin-top: 10px;
  color: rgb(22, 165, 177);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px;
}
.more-text::after {
  content: "";
  display: block;
  width: 13px;
  aspect-ratio: 1/1;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
  background-image: url("../../images/arrow.svg");
}

.star5_rating {
  position: relative;
  z-index: 0;
  display: inline-block;
  white-space: nowrap;
  color: rgb(217, 217, 217);
}

.star5_rating:before, .star5_rating:after {
  content: "★★★★★";
}

.star5_rating:after {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  overflow: hidden;
  white-space: nowrap;
  color: rgb(233, 204, 0);
}

.star5_rating[data-rate="5"]:after {
  width: 100%;
}

.star5_rating[data-rate="4"]:after {
  width: 80%;
}

.star5_rating[data-rate="3"]:after {
  width: 60%;
}

.star5_rating[data-rate="2"]:after {
  width: 40%;
}

.star5_rating[data-rate="1"]:after {
  width: 20%;
}

.star5_rating[data-rate="0"]:after {
  width: 0%;
}

.wp-pagenavi {
  margin-top: 50px;
  text-align: center;
}
.wp-pagenavi a, .wp-pagenavi span {
  padding: 0;
  margin: 0;
  display: inline-block;
  border: none;
  outline: none;
  color: rgb(22, 165, 177);
}
.wp-pagenavi a:not(:last-child), .wp-pagenavi span:not(:last-child) {
  margin-right: 10px;
}
.wp-pagenavi a.current, .wp-pagenavi span.current {
  text-align: center;
  width: 25px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  background-color: rgb(220, 240, 242);
}

.single-title-wrapper {
  margin-bottom: 50px;
  padding: 30px 40px;
  border-radius: 20px;
  border: 2px solid rgb(22, 165, 177);
}
@media (max-width: 767px) {
  .single-title-wrapper {
    padding: 30px 20px;
  }
}
.single-title-wrapper .single-title {
  font-weight: 700;
  font-size: 1.1rem;
}

.single-star-wrapper {
  margin-bottom: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px 40px;
}
@media (max-width: 767px) {
  .single-star-wrapper .star-inner {
    width: 100%;
  }
}

.single-text {
  width: 90%;
  margin: auto;
}
@media (max-width: 1023px) {
  .single-text {
    width: 100%;
  }
}

.single-pager {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 50px;
}
@media (max-width: 1023px) {
  .single-pager {
    gap: 30px;
  }
}
.single-pager .single-summary {
  display: block;
  width: 195px;
  padding: 10px;
  color: rgb(255, 255, 255);
  background-color: rgb(22, 165, 177);
  border: 1px solid rgb(22, 165, 177);
  border-radius: 50px;
  text-align: center;
}
.single-pager .single-summary:hover {
  background-color: rgb(255, 255, 255);
  color: rgb(22, 165, 177);
}
.single-pager .pager-box {
  width: 23px;
}
.single-pager .pager-box a {
  width: 100%;
  aspect-ratio: 1/1;
  background-color: rgb(220, 240, 242);
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.single-pager .pager-box a:hover {
  -webkit-transform: scale(1.5);
          transform: scale(1.5);
}
.single-pager .pager-box .arrow-button {
  display: block;
  width: 12px;
  aspect-ratio: 1/1;
  background-image: url("../../images/arrow.svg");
}
.single-pager .pager-box .arrow-button.left {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}

.case-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 60px;
}
@media (max-width: 1100px) {
  .case-list {
    gap: 50px 30px;
  }
}
@media (max-width: 1023px) {
  .case-list.top li {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .case-list.top a {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}
@media (max-width: 1023px) {
  .case-list.top .image-box,
  .case-list.top .before-image-box {
    width: 50%;
  }
}
@media (max-width: 767px) {
  .case-list.top .image-box,
  .case-list.top .before-image-box {
    width: 100%;
  }
}
@media (max-width: 1023px) {
  .case-list.top .text-box {
    width: 50%;
    border-radius: 0 20px 20px 0;
    border-top: 2px solid rgb(22, 165, 177);
    border-left: none;
  }
}
@media (max-width: 767px) {
  .case-list.top .text-box {
    width: 100%;
    border-left: 2px solid rgb(22, 165, 177);
    border-top: none;
    border-radius: 0 0 20px 20px;
  }
}
@media (max-width: 1023px) {
  .case-list.archive li {
    width: calc((100% - 30px) / 2);
  }
}
@media (max-width: 767px) {
  .case-list.archive li {
    width: 100%;
  }
}
.case-list li {
  width: calc((100% - 120px) / 3);
}
@media (max-width: 1100px) {
  .case-list li {
    width: calc((100% - 60px) / 3);
  }
}
.case-list a {
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.case-list a:hover {
  -webkit-box-shadow: 2px 2px 5px rgba(62, 58, 57, 0.5);
          box-shadow: 2px 2px 5px rgba(62, 58, 57, 0.5);
}
.case-list .before-image-box {
  aspect-ratio: 333/231;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
}
.case-list .before-image-box > div {
  height: 100%;
  width: 50%;
}
.case-list .image-box {
  aspect-ratio: 333/231;
}
.case-list .image-box img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}
.case-list .text-box {
  padding: 20px;
  -webkit-box-flex: 2;
      -ms-flex-positive: 2;
          flex-grow: 2;
  border: 2px solid rgb(22, 165, 177);
  border-radius: 0 0 20px 20px;
  border-top: none;
}

.before-image-box > div {
  position: relative;
}
.before-image-box > div::before {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 80px;
  text-align: center;
  padding: 5px;
  font-size: 0.8rem;
  color: rgb(255, 255, 255);
}
.before-image-box > div.before::before {
  content: "before";
  background-color: rgb(22, 165, 177);
}
.before-image-box > div.after::before {
  content: "after";
  background-color: rgb(241, 97, 78);
}
.before-image-box > div img {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
}

.category-case {
  font-size: 0.8rem;
}
.category-case::before {
  content: "";
  display: inline-block;
  width: 10px;
  aspect-ratio: 1/1;
  border-radius: 50%;
  vertical-align: middle;
  margin-right: 5px;
}
.category-case span {
  vertical-align: middle;
}
.category-case.buy {
  color: rgb(241, 97, 78);
}
.category-case.buy::before {
  background-color: rgb(241, 97, 78);
}
.category-case.unwanted-items {
  color: rgb(22, 165, 177);
}
.category-case.unwanted-items::before {
  background-color: rgb(22, 165, 177);
}

@media (max-width: 767px) {
  .case-single .single-title-wrapper {
    border: none;
    padding: 0;
  }
}
.case-single .single-title {
  margin-bottom: 30px;
  padding-bottom: 10px;
  border-bottom: 2px solid rgb(22, 165, 177);
}
.case-single .case-date-wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  gap: 10px 50px;
}
.case-single .case-date-wrapper:not(:last-child) {
  margin-bottom: 50px;
}
@media (max-width: 767px) {
  .case-single .case-date-wrapper .case-date-inner {
    width: 100%;
  }
}

.case-image-wrapper {
  position: relative;
  padding: 0 50px;
}
@media (max-width: 1023px) {
  .case-image-wrapper {
    padding: 0;
  }
}
.case-image-wrapper img {
  -o-object-fit: cover;
     object-fit: cover;
  height: auto;
  aspect-ratio: 434/346;
}
.case-image-wrapper .swiper-button-next,
.case-image-wrapper .swiper-button-prev {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 35px;
  height: 35px;
  border: 1px solid rgb(22, 165, 177);
  border-radius: 50%;
}
@media (max-width: 767px) {
  .case-image-wrapper .swiper-button-next,
  .case-image-wrapper .swiper-button-prev {
    display: none;
  }
}
.case-image-wrapper .swiper-button-next::after,
.case-image-wrapper .swiper-button-prev::after {
  content: "";
  display: block;
  width: 70%;
  height: 70%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  background-image: url("../../images/arrow.svg");
}
.case-image-wrapper .swiper-button-prev {
  -webkit-transform: rotate(180deg);
          transform: rotate(180deg);
}
@media (max-width: 1023px) {
  .case-image-wrapper .swiper-button-prev {
    -webkit-transform: translateX(-100%) rotate(180deg);
            transform: translateX(-100%) rotate(180deg);
  }
}
@media (max-width: 1023px) {
  .case-image-wrapper .swiper-button-next {
    -webkit-transform: translateX(100%);
            transform: translateX(100%);
  }
}
/*# sourceMappingURL=main.css.map */