@charset "UTF-8";
/* ======================================================
# common - 全体に共通するスタイル
======================================================= */
html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  color: #333;
  line-height: 1.7;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-family: "Sawarabi Gothic", sans-serif;
}
@media screen and (min-width: 600px) {
  body {
    font-size: 1.6rem;
  }
}

img {
  width: 100%;
}

.inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 600px) {
  .inner {
    padding-inline: 40px;
  }
}

/* ======================================================
section
======================================================= */
.section {
  padding: 60px 0;
}

.section-title {
  text-align: center;
  position: relative;
  margin-bottom: 32px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
}
.section-title::after {
  position: absolute;
  content: "";
  background: url(../img/title_icon.png) no-repeat;
  background-size: contain;
  width: 30px;
  height: 100%;
  top: 0;
  right: -40px;
}

.section-title-ja {
  display: block;
  font-size: 2.4rem;
}

.section-title-en {
  display: block;
  color: #7ed824;
  font-size: 1.2rem;
}

/* ======================================================
util-button
======================================================= */
.util-button {
  background-color: #ffc934;
  color: #fff;
  padding: 10px 40px;
  border-radius: 50px;
  position: relative;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
.util-button::after {
  content: "";
  position: absolute;
  background: url(../img/icon_arrow-right.svg);
  height: 14px;
  right: 16px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 8px;
}
@media screen and (min-width: 768px) {
  .util-button:hover {
    opacity: 0.7;
  }
}

/* ======================================================
first-view
======================================================= */
.first-view {
  height: 150px;
  position: relative;
}
@media screen and (min-width: 900px) {
  .first-view {
    height: 200px;
  }
}

.first-view-heading {
  position: absolute;
  content: "";
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  padding: 10px 0;
  border: 1px solid #7ed824;
  text-align: center;
  width: 200px;
}
@media screen and (min-width: 600px) {
  .first-view-heading {
    width: 300px;
  }
}

.first-view-title-ja {
  display: block;
  font-size: 1.6rem;
}
@media screen and (min-width: 768px) {
  .first-view-title-ja {
    font-size: 2.4rem;
  }
}

.first-view-title-en {
  display: block;
}

.first-view-image {
  height: 100%;
}
.first-view-image img {
  display: block;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

/* ======================================================
breadcrumb
======================================================= */
.breadcrumb {
  max-width: 1100px;
  margin-top: 24px;
  padding-inline: 40px;
  margin-inline: auto;
}

.breadcrumb-item {
  font-size: 1.4rem;
}
.breadcrumb-item a {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .breadcrumb-item a:hover {
    color: #7ed824;
  }
}

/* ======================================================
br
======================================================= */
@media screen and (min-width: 600px) {
  .is-sm {
    display: none;
  }
}

/* ======================================================
header
======================================================= */
.header {
  height: 100px;
}

.header-inner {
  padding: 20px 20px 0;
}
@media screen and (min-width: 600px) {
  .header-inner {
    padding: 20px 40px 0;
  }
}

.header-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-right: 20px;
}
@media screen and (min-width: 900px) {
  .header-top {
    margin-right: 0;
  }
}

.header-logo {
  width: 400px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  margin-right: 40px;
}
@media screen and (min-width: 768px) {
  .header-logo:hover {
    opacity: 0.7;
  }
}
@media screen and (min-width: 900px) {
  .header-logo {
    margin-right: 0;
  }
}

.header-right {
  display: none;
}
@media screen and (min-width: 900px) {
  .header-right {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -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;
  }
}

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

.header-tel-number {
  color: #ffc934;
  font-weight: bold;
  font-size: 2.4rem;
  position: relative;
  border-bottom: 1px solid #999;
}
.header-tel-number a {
  text-decoration: none;
}
.header-tel-number::before {
  position: absolute;
  content: "";
  background: url(../img/phone_icon.png) no-repeat;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 32px;
  height: 24px;
  left: -30px;
  background-size: contain;
}

.header-contact .util-button {
  padding-left: 60px;
}
.header-contact .util-button::before {
  content: "";
  position: absolute;
  background: url(../img/mail_icon.png) no-repeat;
  width: 32px;
  height: 24px;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-size: contain;
}

.header-nav {
  display: none;
}
@media screen and (min-width: 900px) {
  .header-nav {
    display: block;
    border: 1px solid #7ed824;
    background-color: #fff;
    border-radius: 50px;
    width: 800px;
    margin: 0 auto;
    position: sticky;
    z-index: 100;
    top: 10px;
    -webkit-filter: drop-shadow(0px 0px 11px rgba(117, 164, 27, 0.34));
            filter: drop-shadow(0px 0px 11px rgba(117, 164, 27, 0.34));
  }
}

.header-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.header-nav-item {
  position: relative;
}
.header-nav-item:not(:first-child)::before {
  content: "";
  position: absolute;
  width: 1px;
  height: 15px;
  top: 50%;
  left: -8px;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #7ed824;
}

.header-nav-link {
  display: inline-block;
  padding: 10px 20px;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
@media screen and (min-width: 768px) {
  .header-nav-link:hover {
    color: #7ed824;
  }
}

.drawer-button {
  background-color: #7ed824;
  width: 50px;
  height: 50px;
  position: relative;
  z-index: 200;
  position: fixed;
  right: 20px;
  border-radius: 3px;
}
@media screen and (min-width: 600px) {
  .drawer-button {
    right: 40px;
  }
}
@media screen and (min-width: 900px) {
  .drawer-button {
    display: none;
  }
}
.drawer-button.is-active .drawer-button-bar:nth-child(1) {
  top: 16px;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
.drawer-button.is-active .drawer-button-bar:nth-child(2) {
  display: none;
}
.drawer-button.is-active .drawer-button-bar:nth-child(3) {
  top: 16px;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.drawer-button.is-active .drawer-button-text-close {
  display: block;
}
.drawer-button.is-active .drawer-button-text-open {
  display: none;
}

.drawer-button-bar {
  position: absolute;
  width: 30px;
  height: 2px;
  background-color: #fff;
  left: 10px;
  -webkit-transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, -webkit-transform 0.4s;
  transition: top 0.4s, transform 0.4s;
  transition: top 0.4s, transform 0.4s, -webkit-transform 0.4s;
}
.drawer-button-bar:nth-child(1) {
  top: 8px;
}
.drawer-button-bar:nth-child(2) {
  top: 16px;
}
.drawer-button-bar:nth-child(3) {
  top: 24px;
}

.drawer-button-text {
  position: absolute;
  font-size: 1rem;
  left: 10px;
  bottom: 0;
  color: #fff;
  letter-spacing: 0.2em;
}

.drawer-button-text-close {
  display: none;
}

.drawer-content {
  right: -107%;
  background-color: #f6fdef;
  position: fixed;
  top: 0;
  z-index: 100;
  width: 100%;
  height: 100%;
  padding: 30px 15px;
  -webkit-transition: right 0.4s;
  transition: right 0.4s;
}
@media screen and (min-width: 600px) {
  .drawer-content {
    width: 400px;
  }
}
.drawer-content.is-active {
  right: 0;
}
.drawer-content .header-tel {
  width: 170px;
  margin-inline: auto;
  margin-top: 40px;
}
.drawer-content .header-contact {
  margin-top: 24px;
  text-align: center;
}

.drawer-content-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  margin-top: 40px;
}

.drawer-content-nav-item {
  padding-bottom: 12px;
  position: relative;
}
.drawer-content-nav-item::after {
  content: "";
  position: absolute;
  width: 100px;
  height: 1px;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  background-color: #7ed824;
}

/* ======================================================
footer
======================================================= */
.footer {
  margin-top: 40px;
}

.footer-inner {
  padding-inline: 40px;
}

.footer-top {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .footer-top {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.footer-left {
  width: 80%;
}
@media screen and (min-width: 768px) {
  .footer-left {
    -webkit-box-flex: 0;
        -ms-flex: 0 1 35.45%;
            flex: 0 1 35.45%;
  }
}

.footer-logo {
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  .footer-logo:hover {
    opacity: 0.7;
  }
}

.footer-address {
  font-size: 1.4rem;
  margin-top: 24px;
}

.footer-map {
  height: 100%;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 58.18%;
          flex: 0 0 58.18%;
  margin-top: 24px;
}
@media screen and (min-width: 768px) {
  .footer-map {
    margin-top: 0;
  }
}
.footer-map iframe {
  aspect-ratio: 5/2;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

.footer-nav {
  margin-top: 40px;
}

.footer-nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 900px) {
  .footer-nav-list {
    gap: 20px;
  }
}

.footer-nav-item {
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
  position: relative;
  width: 50%;
}
@media screen and (min-width: 900px) {
  .footer-nav-item {
    width: auto;
  }
  .footer-nav-item:not(:first-child)::before {
    content: "";
    position: absolute;
    width: 1px;
    height: 15px;
    top: 50%;
    left: -25%;
    -webkit-transform: translate(-50%, -50%);
            transform: translate(-50%, -50%);
    background-color: #7ed824;
  }
}
@media screen and (min-width: 768px) {
  .footer-nav-item:hover {
    color: #7ed824;
  }
}

.footer-nav-link {
  display: inline-block;
  padding: 10px 20px;
}

.footer-copy {
  background-color: #7ed824;
  text-align: center;
  color: #fff;
  padding: 20px 0;
  margin-top: 40px;
}

.footer-pagetop {
  position: fixed;
  bottom: 60px;
  right: 20px;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  z-index: 20;
}
@media screen and (min-width: 768px) {
  .footer-pagetop:hover {
    opacity: 0.5;
  }
}

/* main-visual
--------------------------------------------------------*/
.main {
  overflow: hidden;
}

.main-visual {
  position: relative;
}
@media screen and (min-width: 600px) {
  .main-visual {
    width: 80%;
    margin-left: auto;
  }
}
.main-visual::before {
  background-color: #f6fdef;
  bottom: -60px;
  content: "";
  height: 500px;
  position: absolute;
  left: -50vw;
  width: 100vw;
  z-index: -1;
}

.main-visual-swiper {
  height: 100%;
  position: relative;
}

.swiper-wrapper {
  height: 100%;
}

.main-visual-slide {
  overflow: hidden;
}

.main-visual-picture {
  display: block;
}
.main-visual-picture img {
  display: block;
  height: calc(100vh - 100px - 49px);
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-slide-active .main-visual-picture,
.swiper-slide-duplicate-active .main-visual-picture,
.swiper-slide-prev .main-visual-picture {
  -webkit-animation: zoomUp 12s linear 0s;
          animation: zoomUp 12s linear 0s;
  -webkit-animation-fill-mode: both;
          animation-fill-mode: both;
}

@-webkit-keyframes zoomUp {
  0% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}

@keyframes zoomUp {
  0% {
    -webkit-transform: scale(1.15);
            transform: scale(1.15);
  }
  100% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
/* swiperページネーション
--------------------------------------------------------*/
.swiper-pagination {
  line-height: 1;
  text-align: left;
}

.swiper-container .swiper-pagination-bullets {
  bottom: 18px;
  left: 12px;
}

.swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background-color: #7ed824;
  opacity: 1;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin-left: 8px;
  margin-right: 8px;
}

.main-visual-circle {
  position: absolute;
  background-color: #7ed824;
  color: #fff;
  top: 20px;
  left: 10px;
  padding: 80px;
  border-radius: 50%;
  z-index: 20;
}
@media screen and (min-width: 600px) {
  .main-visual-circle {
    padding: 120px;
    left: -140px;
  }
}

.main-visual-text {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-10%, -50%);
          transform: translate(-10%, -50%);
  font-size: 2.4em;
  width: calc(100% + 100px);
  font-weight: bold;
  text-shadow: 10px 5px 25px #000;
}
@media screen and (min-width: 768px) {
  .main-visual-text {
    font-size: 3.6rem;
  }
}

/* news
--------------------------------------------------------*/
.news {
  padding-top: 120px;
}

.news-inner {
  max-width: 980px;
}

.news-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 12px;
  border-bottom: 1px solid #7ed824;
  gap: 10px;
  margin-top: 24px;
}
@media screen and (min-width: 600px) {
  .news-item {
    -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: 20px;
    margin-top: 0;
  }
}

.news-item-date {
  width: 100px;
  font-weight: normal;
  background-color: #7ed824;
  color: #fff;
  text-align: center;
  font-size: 1.2rem;
}
@media screen and (min-width: 600px) {
  .news-item-date {
    font-size: 1.4rem;
  }
}

.news-footer {
  margin-top: 32px;
  text-align: center;
}

/* greet
--------------------------------------------------------*/
.greet {
  background-color: #f6fdef;
}

.greet-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .greet-content {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
        -ms-flex-direction: row-reverse;
            flex-direction: row-reverse;
    gap: 60px;
  }
}

.greet-content-body {
  -webkit-box-flex: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}

.greet-content-text {
  text-align: justify;
}

.greet-content-footer {
  text-align: center;
  margin-top: 40px;
}

.greet-content-image {
  height: 100%;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  -webkit-box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.5);
          box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.5);
}
@media screen and (min-width: 768px) {
  .greet-content-image {
    width: 50%;
  }
}
.greet-content-image img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* service
--------------------------------------------------------*/
.service-title {
  margin-bottom: 50px;
}

.service-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 60px;
}
@media screen and (min-width: 768px) {
  .service-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
}
@media screen and (min-width: 900px) {
  .service-list {
    gap: 30px;
  }
}

.service-item {
  border: 1px solid #7ed824;
  border-radius: 10px;
  width: 100%;
  padding: 50px 0 60px;
  position: relative;
  -webkit-box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.5);
          box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.5);
}

.service-item-title {
  font-size: 1.6rem;
  border: 1px solid #7ed824;
  position: absolute;
  left: 50%;
  top: 0;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  background-color: #fff;
  border-radius: 50px;
  padding: 10px 30px;
  display: inline-block;
  width: 60%;
  text-align: center;
}
@media screen and (min-width: 900px) {
  .service-item-title {
    font-size: 2rem;
  }
}

.service-item-image {
  width: 100px;
  margin: 0 auto;
}

.service-item-list {
  padding: 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
@media screen and (min-width: 768px) {
  .service-item-list {
    display: block;
  }
}
@media screen and (min-width: 900px) {
  .service-item-list {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

.service-item-text {
  margin-top: 12px;
  -webkit-box-flex: 0;
      -ms-flex: 0 0 50%;
          flex: 0 0 50%;
}
.service-item-footer {
  margin-top: 32px;
  text-align: center;
  position: absolute;
  bottom: 24px;
  width: 100%;
}

/* feature
--------------------------------------------------------*/
.feature {
  background-color: #f6fdef;
}

.feature-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 40px;
}
@media screen and (min-width: 768px) {
  .feature-list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 10px;
  }
}
@media screen and (min-width: 900px) {
  .feature-list {
    gap: 30px;
  }
}

.feature-item {
  border: 1px solid #7ed824;
  border-radius: 10px;
  width: 100%;
  -webkit-box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.5);
          box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.5);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .feature-item:hover .feature-item-image img {
    -webkit-transform: scale(1.1);
            transform: scale(1.1);
  }
}

.feature-item-image {
  overflow: hidden;
}
.feature-item-image img {
  height: auto;
  aspect-ratio: 300/200;
  -webkit-transition: -webkit-transform 0.5s;
  transition: -webkit-transform 0.5s;
  transition: transform 0.5s;
  transition: transform 0.5s, -webkit-transform 0.5s;
}

.feature-item-body {
  padding: 20px;
  background-color: #fff;
  height: 100%;
}

.feature-item-title {
  text-align: center;
  font-size: 1.6rem;
  font-weight: bold;
}

.feature-item-text {
  margin-top: 20px;
  text-align: justify;
  font-size: 1.4rem;
}

/* counsel
--------------------------------------------------------*/
.counsel {
  margin-top: 80px;
}

.counsel-box {
  border: 1px solid #7ed824;
  border-radius: 10px;
}

.counsel-title {
  background-color: #7ed824;
  color: #fff;
  text-align: center;
  padding-block: 20px;
  font-size: 1.6rem;
  border-radius: 10px 10px 0 0;
  letter-spacing: 0.2em;
}
@media screen and (min-width: 600px) {
  .counsel-title {
    font-size: 2.4rem;
  }
}
.counsel-title span {
  font-size: 3.2rem;
}

.counsel-body {
  padding-block: 20px;
}

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

.counsel-body-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 200px;
  margin: 0 auto;
  gap: 40px;
  margin-top: 40px;
}
@media screen and (min-width: 600px) {
  .counsel-body-wrap {
    width: 100%;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    margin-top: 20px;
  }
}

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

.counsel-tel-number {
  color: #ffc934;
  font-weight: bold;
  font-size: 2.4rem;
  position: relative;
  border-bottom: 1px solid #999;
  padding-left: 32px;
}
.counsel-tel-number::before {
  position: absolute;
  content: "";
  background: url(../img/phone_icon.png) no-repeat;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 32px;
  height: 24px;
  left: 0;
  background-size: contain;
}

.counsel-tel-time {
  display: block;
  text-align: center;
}

.counsel-mail .util-button {
  display: block;
  margin-top: 10px;
  padding-left: 60px;
}
.counsel-mail .util-button::before {
  content: "";
  position: absolute;
  background: url(../img/mail_icon.png) no-repeat;
  width: 32px;
  height: 24px;
  left: 20px;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  background-size: contain;
}

.counsel-mail-text {
  margin-left: 0.5em;
}

/* gallery
--------------------------------------------------------*/
.gallery-swiper .swiper-wrapper {
  /* スライドの動きを等速にする */
  -webkit-transition-timing-function: linear;
          transition-timing-function: linear;
}
.gallery-swiper .swiper-slide {
  overflow: hidden;
  border-radius: 12px;
  margin-block: 80px 40px;
}
.gallery-swiper .swiper-slide img {
  aspect-ratio: 300/200;
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}

/* service
--------------------------------------------------------*/
.service-inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 600px) {
  .service-inner {
    padding-inline: 40px;
  }
}

.service-copy {
  margin-top: 40px;
}

.service-copy-title {
  text-align: center;
  font-size: 2rem;
  line-height: 2;
}
@media screen and (min-width: 768px) {
  .service-copy-title {
    font-size: 2.4rem;
  }
}

.service-copy-detail {
  margin-top: 40px;
  text-align: center;
}

.service-sections {
  margin-top: 40px;
  background-color: #f6fdef;
  padding-block: 80px;
}

.service-section:not(:first-child) {
  margin-top: 80px;
}

.service-section-title {
  font-size: 2.4rem;
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  padding-left: 2.5em;
}
.tax .service-section-title::before {
  background: url(../img/paper.png) no-repeat;
}
.account .service-section-title::before {
  background: url(../img/calculator.png) no-repeat;
}
.labor .service-section-title::before {
  background: url(../img/employee.png) no-repeat;
}
.tax .service-section-title::before, .account .service-section-title::before, .labor .service-section-title::before {
  position: absolute;
  content: "";
  background-size: contain;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

.service-section-description {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 40px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .service-section-description {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.service-section-image {
  -webkit-box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.5);
          box-shadow: 3px 3px 15px 0px rgba(96, 96, 96, 0.5);
}
.service-section-image img {
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
@media screen and (min-width: 768px) {
  .service-section-image {
    width: 33.3333333333%;
    -ms-flex-negative: 0;
        flex-shrink: 0;
  }
}

.service-section-text {
  -ms-flex-negative: 1;
      flex-shrink: 1;
}

.service-section-content {
  margin-top: 40px;
}

.service-section-ceontent-title {
  text-align: center;
  font-size: 2rem;
  background-color: #7ed824;
  color: #fff;
}

.service-section-content-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 20px;
  padding: 40px;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .service-section-content-list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
  }
}

.service-section-content-item {
  border-bottom: 1px solid #7ed824;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .service-section-content-item {
    width: 40%;
  }
  .service-section-content-item:nth-child(1), .service-section-content-item:nth-child(2) {
    margin-top: 0;
  }
}

/* contact
--------------------------------------------------------*/
.contact {
  background-color: #f6fdef;
  padding-bottom: 40px;
}

.contact-inner {
  max-width: 880px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 600px) {
  .contact-inner {
    padding-inline: 40px;
  }
}

.contact-telbox {
  background-color: #7ed824;
  color: #fff;
  text-align: center;
  padding: 10px 40px;
  margin-top: 40px;
  max-width: 260px;
  margin-inline: auto;
  border-radius: 10px;
}
@media screen and (min-width: 600px) {
  .contact-telbox {
    padding: 10px 100px;
    max-width: 400px;
  }
}

.contact-telbox-head {
  font-size: 1.2rem;
}
@media screen and (min-width: 600px) {
  .contact-telbox-head {
    font-size: 1.6rem;
  }
}

.contact-telbox-number {
  font-size: 2rem;
  font-weight: bold;
  position: relative;
  padding-left: 32px;
}
@media screen and (min-width: 600px) {
  .contact-telbox-number {
    font-size: 2.4rem;
  }
}
.contact-telbox-number a {
  text-decoration: none;
}
.contact-telbox-number::before {
  position: absolute;
  content: "";
  background: url(../img/phone_icon_white.png) no-repeat;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 32px;
  height: 24px;
  left: 0;
  background-size: contain;
}

.contact-telbox-foot {
  font-size: 1.2rem;
}
@media screen and (min-width: 600px) {
  .contact-telbox-foot {
    font-size: 1.6rem;
  }
}

.contact-lead {
  margin-top: 40px;
  font-size: 1.4rem;
  text-align: center;
}

.form {
  margin-top: 40px;
  background-color: #fff;
  padding: 40px 20px;
}
@media screen and (min-width: 600px) {
  .form {
    padding: 40px;
  }
}

.form-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .form-item {
    -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;
  }
}
.form-item:not(:first-child) {
  margin-top: 40px;
}

.form-title {
  font-weight: normal;
}
@media screen and (min-width: 768px) {
  .form-title {
    -webkit-box-flex: 0;
        -ms-flex: 0 0 200px;
            flex: 0 0 200px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.form-title-inline {
  background-color: #f07317;
  border-radius: 2px;
  color: #fff;
  font-size: 1.2rem;
  padding: 2px 8px;
  margin-left: 1em;
}

.form-input {
  -webkit-box-flex: 0;
      -ms-flex: 0 1 100%;
          flex: 0 1 100%;
  margin-top: 12px;
}
@media screen and (min-width: 768px) {
  .form-input {
    margin-left: 40px;
  }
}
.form-input input[type=text],
.form-input input[type=email],
.form-input textarea {
  background-color: #fff;
  border: 1px solid #382620;
  border-radius: 6px;
  padding: 12px 16px;
  width: 100%;
}
.form-input input[type=text]:focus,
.form-input input[type=email]:focus,
.form-input textarea:focus {
  outline: #7ed824 auto 1px;
}
.form-input textarea {
  height: 300px;
  resize: vertical;
}

.radio-label {
  display: block;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.radio-label:not(:first-child) {
  margin-top: 12px;
}

.radio-input:checked + .radio-text::after {
  content: "";
  position: absolute;
  width: 14px;
  height: 14px;
  background: url(../img/check_icon.png) no-repeat;
  background-size: contain;
  left: 5px;
  top: 5px;
}

.radio-text {
  padding-left: 50px;
  position: relative;
}
.radio-text::before {
  content: "";
  position: absolute;
  background-color: #fff;
  border: 1px solid #382620;
  height: 24px;
  width: 24px;
  top: 0;
  left: 0;
}

.form-footer {
  margin-top: 40px;
}

.form-caution {
  font-size: 1.4rem;
}

.form-submit {
  margin-top: 40px;
  text-align: center;
}

/* about
--------------------------------------------------------*/
.about-inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 600px) {
  .about-inner {
    padding-inline: 40px;
  }
}

/* price
--------------------------------------------------------*/
.price-inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 600px) {
  .price-inner {
    padding-inline: 40px;
  }
}

/* voice
--------------------------------------------------------*/
.voice-inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 600px) {
  .voice-inner {
    padding-inline: 40px;
  }
}

/* faq
--------------------------------------------------------*/
.faq-inner {
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: 20px;
}
@media screen and (min-width: 600px) {
  .faq-inner {
    padding-inline: 40px;
  }
}

/* ======================================================
sorry
======================================================= */
.sorry {
  padding-block: 40px;
  text-align: center;
}

.sorry-image {
  margin-inline: auto;
  width: 200px;
}
@media screen and (min-width: 600px) {
  .sorry-image {
    width: 300px;
  }
}

.sorry-text {
  margin-top: 24px;
}
@media screen and (min-width: 600px) {
  .sorry-text {
    font-size: 2rem;
  }
}