@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1p:wght@500;700&family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap");
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  box-sizing: border-box;
}

html, body, h1, h2, h3, h4, h5, h6, ul, ol, dl, li, dt, dd, p, div, span, img, a, table, tr, th, td, small, button, time, figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

li, dd {
  list-style-type: none;
}

header, footer, nav, section, article, aside, figure, figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  background-color: #FFFFFF;
  color: #1A1919;
  font-size: 18px;
  letter-spacing: 0.1rem;
}
@media (min-width: 651px) and (max-width:990px) {
  body {
    font-size: 16px;
  }
}
@media screen and (max-width: 650px) {
  body {
    font-size: 14px;
  }
}

img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.inner {
  padding: 0 100px;
  max-width: 1400px;
  min-width: 1200px;
  margin: 0 auto;
}
@media (min-width: 991px) and (max-width:1280px) {
  .inner {
    padding: 0 60px;
    min-width: 800px;
  }
}
@media (min-width: 651px) and (max-width:990px) {
  .inner {
    padding: 0 40px;
    min-width: 600px;
  }
}
@media screen and (max-width: 650px) {
  .inner {
    padding: 0 20px;
    width: 100%;
    min-width: 300px;
  }
}

.pc-none {
  display: none;
}
@media screen and (max-width: 650px) {
  .pc-none {
    display: block;
  }
}

@media screen and (max-width: 650px) {
  .sp-none {
    display: none;
  }
}

.section-title {
  justify-content: center;
  display: flex;
  align-items: end;
}
.section-title .section-title-img {
  width: 80px;
  position: relative;
  z-index: 1;
}
@media (min-width: 651px) and (max-width:990px) {
  .section-title .section-title-img {
    width: 60px;
  }
}
@media screen and (max-width: 650px) {
  .section-title .section-title-img {
    width: 40px;
  }
}
.section-title h2 {
  font-size: 32px;
  color: #3C307C;
  font-weight: 900;
  letter-spacing: 0.3rem;
  padding-left: 10px;
  position: relative;
  z-index: 0;
}
@media (min-width: 651px) and (max-width:990px) {
  .section-title h2 {
    font-size: 28px;
  }
}
@media screen and (max-width: 650px) {
  .section-title h2 {
    font-size: 22px;
    letter-spacing: 0.05rem;
  }
}
.section-title h2::after {
  position: absolute;
  content: "";
  background-color: #FFFFFF;
  width: calc(100% + 80px);
  height: 20px;
  z-index: -1;
  bottom: -10px;
  left: -80px;
}
@media (min-width: 651px) and (max-width:990px) {
  .section-title h2::after {
    width: calc(100% + 60px);
    left: -60px;
  }
}
@media screen and (max-width: 650px) {
  .section-title h2::after {
    left: -40px;
    width: calc(100% + 40px);
    height: 15px;
  }
}

.section-subtitle {
  text-align: center;
  padding: 60px 0 20px 0;
  font-size: 32px;
  font-weight: 900;
  line-height: 1.4;
  position: relative;
}
@media (min-width: 651px) and (max-width:990px) {
  .section-subtitle {
    font-size: 24px;
    padding-top: 40px;
  }
}
@media screen and (max-width: 650px) {
  .section-subtitle {
    font-size: 20px;
    padding-top: 40px;
    line-height: 1.2;
  }
}
.section-subtitle::after {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  background-color: #D58B39;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 650px) {
  .section-subtitle::after {
    width: 100px;
  }
}

.ctn-btn {
  width: 400px;
  height: 80px;
  border-radius: 40px;
  background-color: #D58B39;
  text-align: center;
  margin: 0 auto;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  transition: all 0.8s;
}
.ctn-btn:hover {
  transform: scale(1.05);
}
@media screen and (max-width: 650px) {
  .ctn-btn {
    width: 220px;
    height: 60px;
  }
}
.ctn-btn a {
  width: 100%;
  height: 100%;
  display: inline-block;
  color: #ffffff;
  font-size: 26px;
  font-weight: 700;
  padding-top: 25px;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 650px) {
  .ctn-btn a {
    font-size: 20px;
    padding-top: 18px;
  }
}

.more-btn {
  margin: 0 auto;
  width: 360px;
  height: 70px;
  background-color: #FFFFFF;
  text-align: center;
  border-radius: 35px;
  border: 3px solid #3C307C;
  transition: all 0.8s;
}
.more-btn:hover {
  transform: scale(1.05);
}
@media screen and (max-width: 650px) {
  .more-btn {
    width: 250px;
    height: 55px;
  }
}
.more-btn a {
  width: 100%;
  height: 100%;
  display: inline-block;
  color: #3C307C;
  font-size: 26px;
  padding-top: 18px;
  letter-spacing: 0.2rem;
}
@media screen and (max-width: 650px) {
  .more-btn a {
    font-size: 20px;
    padding-top: 15px;
  }
}

.header-top {
  background-color: #4DA691;
  color: #ffffff;
  padding: 10px 20px;
  font-weight: 700;
  text-align: right;
}

.header-body {
  display: flex;
  align-items: center;
  padding: 20px 40px;
}
@media (min-width: 651px) and (max-width:990px) {
  .header-body {
    padding: 20px;
  }
}
@media screen and (max-width: 650px) {
  .header-body {
    padding: 10px;
  }
}

.header-logo {
  width: 80px;
}
@media screen and (max-width: 650px) {
  .header-logo {
    width: 50px;
  }
}

.header-title {
  color: #3C307C;
  font-weight: 900;
  line-height: 1.4;
  font-size: 20px;
  padding-left: 40px;
}
@media (min-width: 991px) and (max-width:1280px) {
  .header-title {
    font-size: 18px;
  }
}
@media screen and (max-width: 650px) {
  .header-title {
    font-size: 14px;
    padding-left: 20px;
    line-height: 1.2;
    letter-spacing: 0.01rem;
  }
}

.header-nav {
  display: flex;
  margin-left: auto;
}
.header-nav li {
  padding-right: 25px;
}
.header-nav li a {
  color: #1A1919;
  font-weight: 900;
  position: relative;
}
.header-nav li a::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  transform-origin: center;
  width: 100%;
  height: 4px;
  background-color: #4DA691;
  transition: transform 0.4s ease;
}
.header-nav li a:hover::after {
  transform: translateX(-50%) scaleX(1);
}
.header-nav li a.is-active::after {
  transform: translateX(-50%) scaleX(1);
}
@media (min-width: 651px) and (max-width:990px) {
  .header-nav {
    display: none;
  }
}
@media screen and (max-width: 650px) {
  .header-nav {
    display: none;
  }
}

.drawer-icon {
  position: fixed;
  top: 60px;
  right: 16px;
  z-index: 300;
  display: none;
  transition: transform 0.5s ease 0s;
}
@media (min-width: 651px) and (max-width:990px) {
  .drawer-icon {
    display: block;
    top: 80px;
  }
}
@media screen and (max-width: 650px) {
  .drawer-icon {
    display: block;
  }
}
.drawer-icon.is-active {
  top: 30px;
}
.drawer-icon.is-active .drawer-icon-bar1 {
  top: 8px;
  transform: rotate(-45deg);
  background: #4DA691;
}
.drawer-icon.is-active .drawer-icon-bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon-bar3 {
  top: 8px;
  transform: rotate(45deg);
  background: #4DA691;
}

.drawer-logo {
  display: inline-block;
  width: 100px;
  text-align: center;
  margin: 0 auto 40px auto;
}

.drawer-icon-bars {
  width: 26px;
  height: 20px;
  display: block;
  position: relative;
}

.drawer-icon-bar1,
.drawer-icon-bar2,
.drawer-icon-bar3 {
  position: absolute;
  width: 26px;
  height: 4px;
  background: #4DA691;
  top: 0;
  left: 0;
  transition: all 0.4s;
}
.drawer-icon-bar1.is-active,
.drawer-icon-bar2.is-active,
.drawer-icon-bar3.is-active {
  background: #E3E3E3;
  z-index: 299;
}

.drawer-icon-bar1 {
  top: 0px;
}

.drawer-icon-bar2 {
  top: 8px;
}

.drawer-icon-bar3 {
  top: 16px;
}

.drawer-content {
  position: fixed;
  width: 100%;
  height: 100%;
  right: 0;
  top: 0;
  text-align: center;
  box-shadow: 0 0 3px rgba(0, 0, 0, 0.16);
  background: #ffffff;
  z-index: 299;
  transform: translateX(105%);
  transition: transform 0.5s ease 0s;
  padding-top: 100px;
}
.drawer-content.is-active {
  transform: translateX(0);
}

.drawer-content-item {
  padding-bottom: 30px;
}
.drawer-content-item a {
  display: block;
  color: #4DA691;
  text-align: center;
  font-size: 18px;
  text-decoration: none;
  position: relative;
  font-weight: 700;
  transition: all 0.5s;
}
.drawer-content-item a:hover {
  opacity: 0.7;
}

.drawer-contact {
  background-color: #4DA691;
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  font-size: 20px;
}
.drawer-contact::after {
  position: absolute;
  content: "";
  width: 40px;
  height: 1px;
  background-color: #ffffff;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
.drawer-contact a {
  color: #ffffff;
  display: inline-block;
  padding: 30px 20px;
  width: 100%;
  transition: all 0.5s;
}
.drawer-contact a:hover {
  opacity: 0.7;
}
.drawer-contact a span {
  position: absolute;
  top: -15px;
  left: 20px;
  font-family: "Noto Serif JP", serif;
  font-style: italic;
  font-weight: 200;
}
.drawer-contact a img {
  width: 20px;
}

/*==========================

hero

============================*/
.hero {
  background: url(../img/hero.png) no-repeat center center/cover;
  padding: 300px 0;
  position: relative;
}
@media (min-width: 651px) and (max-width:990px) {
  .hero {
    padding: 200px 0;
  }
}
@media (min-width: 991px) and (max-width:1280px) {
  .hero {
    padding: 250px 0;
  }
}
@media screen and (max-width: 650px) {
  .hero {
    padding: 100px 20px;
  }
}

.white-back {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  opacity: 0.3;
}

.voice-flame {
  width: 200px;
  height: 200px;
  background: url(../img/ファーストビュー白いフレーム.png) no-repeat center center/contain;
  position: absolute;
  top: 40px;
  right: 100px;
  text-align: center;
  padding-top: 40px;
  font-weight: 900;
  font-size: 22px;
  letter-spacing: 0.01rem;
  line-height: 1.4;
}
@media (min-width: 651px) and (max-width:990px) {
  .voice-flame {
    width: 140px;
    height: 140px;
    font-size: 16px;
    padding-top: 28px;
    top: 20px;
    right: 20px;
  }
}
@media screen and (max-width: 650px) {
  .voice-flame {
    width: 120px;
    height: 120px;
    font-size: 14px;
    padding-top: 24px;
    top: 10px;
    right: 0;
  }
}
.voice-flame span {
  display: block;
}
.voice-flame .is-big {
  font-size: 36px;
  color: #3C307C;
  position: relative;
  z-index: 0;
}
@media (min-width: 651px) and (max-width:990px) {
  .voice-flame .is-big {
    font-size: 26px;
  }
}
@media screen and (max-width: 650px) {
  .voice-flame .is-big {
    font-size: 20px;
  }
}
.voice-flame .is-big::after {
  position: absolute;
  content: "";
  width: calc(100% - 15px);
  height: 13px;
  opacity: 0.8;
  background-color: #D58B39;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  z-index: -1;
}
.voice-flame .is-normal {
  font-size: 28px;
}
@media (min-width: 651px) and (max-width:990px) {
  .voice-flame .is-normal {
    font-size: 22px;
  }
}
@media screen and (max-width: 650px) {
  .voice-flame .is-normal {
    font-size: 20px;
  }
}

.hero-title {
  margin: 0 auto;
  width: 1100px;
}
@media screen and (max-width: 650px) {
  .hero-title {
    width: auto;
  }
}
@media (min-width: 651px) and (max-width:990px) {
  .hero-title {
    width: 570px;
  }
}
@media (min-width: 991px) and (max-width:1280px) {
  .hero-title {
    width: 900px;
  }
}
.hero-title h1 {
  color: #ffffff;
  font-weight: 700;
  background-color: #3C307C;
  display: inline-block;
  font-size: 52px;
  padding: 10px;
  margin-bottom: 30px;
  transform: skewX(-15deg);
  box-shadow: 0 0 10px rgba(255, 255, 255, 0.8), 0 0 30px rgba(255, 255, 255, 0.6), 0 0 50px rgba(255, 255, 255, 0.4);
}
@media (min-width: 991px) and (max-width:1280px) {
  .hero-title h1 {
    font-size: 42px;
  }
}
@media (min-width: 651px) and (max-width:990px) {
  .hero-title h1 {
    font-size: 25px;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 650px) {
  .hero-title h1 {
    font-size: 24px;
    line-height: 1.2;
    margin-bottom: 10px;
  }
}
.hero-title h1 span {
  display: inline-block;
}

/*==========================

ctn

============================*/
.ctn {
  padding-top: 100px;
}
@media (min-width: 651px) and (max-width:990px) {
  .ctn {
    padding: 80px 0;
  }
}
@media screen and (max-width: 650px) {
  .ctn {
    padding: 60px 0;
  }
}

.ctn-title {
  font-size: 32px;
  width: 950px;
  margin: 0 auto;
  color: #3C307C;
  font-weight: 900;
  letter-spacing: 0.2rem;
  line-height: 1.4;
  position: relative;
  padding-left: 35px;
}
.ctn-title::before {
  position: absolute;
  content: "";
  width: 22px;
  height: 80px;
  background-color: #4DA691;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
@media (min-width: 651px) and (max-width:990px) {
  .ctn-title::before {
    width: 10px;
    height: 70px;
  }
}
@media screen and (max-width: 650px) {
  .ctn-title::before {
    width: 7px;
  }
}
@media (min-width: 651px) and (max-width:990px) {
  .ctn-title {
    font-size: 20px;
    padding-left: 20px;
    letter-spacing: 0.01rem;
  }
}
@media (min-width: 991px) and (max-width:1280px) {
  .ctn-title {
    font-size: 26px;
    width: 800px;
  }
}
@media screen and (max-width: 650px) {
  .ctn-title {
    font-size: 17px;
    width: 100%;
    padding-left: 10px;
    letter-spacing: 0.01rem;
  }
}

.ctn-wrap {
  display: flex;
  justify-content: center;
  padding-top: 60px;
}
@media (min-width: 651px) and (max-width:990px) {
  .ctn-wrap {
    padding-top: 0;
    align-items: end;
  }
}
@media (min-width: 991px) and (max-width:1280px) {
  .ctn-wrap {
    padding-top: 50px;
  }
}
@media screen and (max-width: 650px) {
  .ctn-wrap {
    align-items: end;
    padding-top: 0;
  }
}

.ctn-staff {
  width: 350px;
}
.ctn-staff img {
  height: 100%;
  vertical-align: bottom;
}
@media (min-width: 991px) and (max-width:1280px) {
  .ctn-staff {
    width: 300px;
  }
}
@media screen and (max-width: 650px) {
  .ctn-staff {
    width: 60px;
  }
}

.ctn-btn-wrap {
  margin-top: 60px;
}
.ctn-btn-wrap p {
  text-align: center;
  padding-bottom: 20px;
  font-size: 20px;
}
@media screen and (max-width: 650px) {
  .ctn-btn-wrap p {
    font-size: 16px;
    padding-bottom: 10px;
  }
}

/*==========================

plan

============================*/
.plan {
  padding: 100px 0;
  background: url(../img/green-back.png) no-repeat center center/cover;
}
@media (min-width: 651px) and (max-width:990px) {
  .plan {
    padding: 80px 0;
  }
}
@media screen and (max-width: 650px) {
  .plan {
    padding: 60px 0;
  }
}

.plan-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 15px;
  margin-top: 60px;
  margin-bottom: 60px;
}
@media (min-width: 651px) and (max-width:990px) {
  .plan-wrap {
    margin-top: 40px;
  }
}
@media screen and (max-width: 650px) {
  .plan-wrap {
    margin-top: 40px;
    display: block;
  }
}

.plan-item {
  width: calc((100% - 30px) / 3);
  background-color: #FFFFFF;
  border-radius: 15px;
  padding: 40px 20px;
}
@media (min-width: 651px) and (max-width:990px) {
  .plan-item {
    width: calc((100% - 15px) / 2);
  }
}
@media (min-width: 991px) and (max-width:1280px) {
  .plan-item {
    padding: 30px 15px;
  }
}
@media screen and (max-width: 650px) {
  .plan-item {
    width: 100%;
    margin-bottom: 20px;
    padding: 30px 15px;
  }
}
.plan-item h3 {
  text-align: center;
  padding: 15px 0;
  font-size: 28px;
  font-weight: 700;
}
@media (min-width: 651px) and (max-width:990px) {
  .plan-item h3 {
    font-size: 22px;
  }
}
@media (min-width: 991px) and (max-width:1280px) {
  .plan-item h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 650px) {
  .plan-item h3 {
    font-size: 20px;
  }
}
.plan-item p {
  line-height: 1.6;
}

.plan-item-img {
  width: auto;
  text-align: center;
}
.plan-item-img img {
  height: 180px;
  width: auto;
}
@media (min-width: 651px) and (max-width:990px) {
  .plan-item-img img {
    height: 120px;
  }
}
@media (min-width: 991px) and (max-width:1280px) {
  .plan-item-img img {
    height: 130px;
  }
}
@media screen and (max-width: 650px) {
  .plan-item-img img {
    height: 100px;
  }
}

/*==========================

step

============================*/
.step {
  background-color: #CEE1E9;
  padding: 100px 0;
  margin-top: -5px;
}
@media (min-width: 651px) and (max-width:990px) {
  .step {
    padding: 80px 0;
  }
}
@media screen and (max-width: 650px) {
  .step {
    padding: 60px 0;
  }
}

.step-wrap {
  display: flex;
  margin-top: 100px;
  gap: 15px;
}
@media (min-width: 651px) and (max-width:990px) {
  .step-wrap {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 650px) {
  .step-wrap {
    margin-top: 60px;
    display: block;
  }
}

.step-item {
  background-color: #FFFFFF;
  border-radius: 15px;
  position: relative;
  padding: 50px 20px 40px 20px;
}
@media (min-width: 651px) and (max-width:990px) {
  .step-item {
    margin-bottom: 40px;
  }
}
@media (min-width: 991px) and (max-width:1280px) {
  .step-item {
    padding: 50px 10px 30px 10px;
  }
}
@media screen and (max-width: 650px) {
  .step-item {
    margin-bottom: 30px;
    padding-bottom: 30px;
  }
}
.step-item h3 {
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  padding-bottom: 20px;
}
@media (min-width: 991px) and (max-width:1280px) {
  .step-item h3 {
    font-size: 20px;
  }
}
@media screen and (max-width: 650px) {
  .step-item h3 {
    font-size: 20px;
  }
}
.step-item p {
  padding-top: 30px;
  line-height: 1.6;
}

.step-number {
  background-color: #4DA691;
  display: inline-block;
  padding: 20px 30px;
  font-size: 30px;
  color: #FFFFFF;
  top: -40px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  position: absolute;
}
@media (min-width: 991px) and (max-width:1280px) {
  .step-number {
    font-size: 26px;
    top: -20px;
    padding: 10px 20px;
  }
}
@media screen and (max-width: 650px) {
  .step-number {
    padding: 10px 15px;
    top: -20px;
  }
}

.step-item-img {
  text-align: center;
  height: 130px;
  width: auto;
}
@media (min-width: 991px) and (max-width:1280px) {
  .step-item-img {
    height: 100px;
  }
}
.step-item-img img {
  height: 100%;
  width: auto;
}

/*==========================

works

============================*/
.works {
  padding: 100px 0;
  margin-top: -1px;
  background: url(../img/green-back.png) no-repeat center center/cover;
}
@media (min-width: 651px) and (max-width:990px) {
  .works {
    padding: 80px 0;
  }
}
@media screen and (max-width: 650px) {
  .works {
    padding: 60px 0;
  }
}

.works-wrap {
  display: flex;
  margin-top: 60px;
  gap: 15px;
}
@media (min-width: 651px) and (max-width:990px) {
  .works-wrap {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 650px) {
  .works-wrap {
    display: block;
  }
}

.works-item {
  background-color: #FFFFFF;
  border-radius: 15px;
  padding: 40px 20px;
}
@media screen and (max-width: 650px) {
  .works-item {
    margin-bottom: 20px;
    padding: 20px 10px;
  }
}
.works-item p {
  line-height: 1.8;
  font-size: 16px;
}

.works-item-top {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 25px;
}
@media screen and (max-width: 650px) {
  .works-item-top {
    margin-bottom: 15px;
  }
}

.works-item-icon {
  width: 100px;
}
@media screen and (max-width: 650px) {
  .works-item-icon {
    width: 80px;
  }
}

.works-item-title h3 {
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 0.01rem;
  line-height: 1.4;
  position: relative;
  padding-bottom: 10px;
}
.works-item-title h3::after {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  background-color: #D58B39;
  bottom: 0;
  left: 0;
}
.works-item-title span {
  font-size: 12px;
  padding-top: 10px;
}

/*==========================

service

============================*/
.service {
  padding: 100px 0;
  margin-top: -2px;
  background-color: #ECECEB;
}
@media (min-width: 651px) and (max-width:990px) {
  .service {
    padding: 80px 0;
  }
}
@media screen and (max-width: 650px) {
  .service {
    padding: 60px 0;
  }
}

.service-wrap {
  display: flex;
  margin-top: 80px;
  margin-bottom: 80px;
  gap: 15px;
}
@media (min-width: 651px) and (max-width:990px) {
  .service-wrap {
    flex-wrap: wrap;
  }
}
@media screen and (max-width: 650px) {
  .service-wrap {
    display: block;
    margin-top: 40px;
    margin-bottom: 40px;
  }
}

.service-item {
  background-color: #FFFFFF;
  border-radius: 15px;
  padding: 40px 20px;
}
@media screen and (max-width: 650px) {
  .service-item {
    margin-bottom: 20px;
    padding: 30px 15px;
  }
}
.service-item h3 {
  font-size: 26px;
  font-weight: 700;
  line-height: 1.4;
  text-align: center;
  padding: 20px 0;
}
@media screen and (max-width: 650px) {
  .service-item h3 {
    font-size: 20px;
  }
}
.service-item p {
  line-height: 1.6;
  font-size: 16px;
}

.service-img {
  text-align: center;
  height: 180px;
  width: auto;
}
@media screen and (max-width: 650px) {
  .service-img {
    height: 120px;
  }
}
.service-img img {
  height: 100%;
  width: auto;
}

/*==========================

footer

============================*/
footer {
  border-top: 40px solid #4DA691;
  position: relative;
}

.footer-inner {
  padding: 60px 40px 20px 40px;
}
@media screen and (max-width: 650px) {
  .footer-inner {
    padding: 30px 20px 20px 20px;
  }
}

.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 2px solid #4DA691;
}
@media (min-width: 651px) and (max-width:990px) {
  .footer-top {
    display: block;
  }
}
@media screen and (max-width: 650px) {
  .footer-top {
    display: block;
  }
}

.footer-btn-wrap {
  margin-top: 0;
}
@media screen and (max-width: 650px) {
  .footer-btn-wrap {
    margin-top: 30px;
  }
}
.footer-btn-wrap p {
  font-size: 14px;
  padding-bottom: 10px;
}
.footer-btn-wrap .ctn-btn {
  width: 300px;
  height: 60px;
}
@media screen and (max-width: 650px) {
  .footer-btn-wrap .ctn-btn {
    width: 220px;
    height: 60px;
  }
}
.footer-btn-wrap .ctn-btn a {
  font-size: 18px;
  padding-top: 18px;
}
@media screen and (max-width: 650px) {
  .footer-btn-wrap .ctn-btn a {
    font-size: 20px;
    padding-top: 18px;
  }
}

.footer-logo {
  width: 300px;
}
@media (min-width: 651px) and (max-width:990px) {
  .footer-logo {
    width: 250px;
    margin: 0 auto 30px auto;
  }
}
@media screen and (max-width: 650px) {
  .footer-logo {
    width: 200px;
    margin: 0 auto;
  }
}

.footer-footer {
  font-size: 14px;
}

/*==========================

page-service

============================*/
.page-top {
  background: url(../img/green-back.png) no-repeat center center/cover;
  padding: 80px 0;
}
@media screen and (max-width: 650px) {
  .page-top {
    padding: 40px 0;
  }
}

.page-top-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 650px) {
  .page-top-wrap {
    display: block;
    text-align: center;
  }
}
.page-top-wrap h1 {
  font-size: 36px;
  font-weight: 900;
}
@media (min-width: 651px) and (max-width:990px) {
  .page-top-wrap h1 {
    font-size: 28px;
  }
}
@media screen and (max-width: 650px) {
  .page-top-wrap h1 {
    font-size: 24px;
    margin-bottom: 20px;
  }
}

.page-top-btn {
  height: 60px;
  margin: 0;
}
@media screen and (max-width: 650px) {
  .page-top-btn {
    margin: 0 auto;
  }
}
.page-top-btn a {
  padding-top: 17px;
}

.page-content {
  padding: 100px 0;
  background-color: #CEE1E9;
}
@media screen and (max-width: 650px) {
  .page-content {
    padding: 60px 0;
  }
}

.service-content-item {
  margin-top: 60px;
  width: 100%;
  border-radius: 20px;
  background-color: #FFFFFF;
  padding: 60px;
}
@media screen and (max-width: 650px) {
  .service-content-item {
    margin-top: 40px;
    padding: 40px 15px;
  }
}

.service-content-head {
  display: flex;
  gap: 60px;
}
@media screen and (max-width: 650px) {
  .service-content-head {
    flex-direction: column-reverse;
    gap: 20px;
  }
}
@media (min-width: 651px) and (max-width:990px) {
  .service-content-head {
    gap: 40px;
  }
}

.service-content-title {
  width: 65%;
}
@media screen and (max-width: 650px) {
  .service-content-title {
    width: 100%;
  }
}
.service-content-title .service-subtitle {
  font-weight: 700;
  font-size: 28px;
  white-space: nowrap;
}
@media screen and (max-width: 650px) {
  .service-content-title .service-subtitle {
    font-size: 16px;
    white-space: inherit;
    line-height: 1.2;
  }
}
@media (min-width: 651px) and (max-width:990px) {
  .service-content-title .service-subtitle {
    font-size: 20px;
  }
}
.service-content-title h2 {
  font-weight: 700;
  font-size: 38px;
  padding: 40px 0;
}
@media screen and (max-width: 650px) {
  .service-content-title h2 {
    font-size: 22px;
    padding: 20px 0;
  }
}
@media (min-width: 651px) and (max-width:990px) {
  .service-content-title h2 {
    font-size: 30px;
    padding: 30px 0;
  }
}
.service-content-title p {
  line-height: 2;
  font-size: 20px;
}
@media screen and (max-width: 650px) {
  .service-content-title p {
    font-size: 14px;
    line-height: 1.8;
  }
}
@media (min-width: 651px) and (max-width:990px) {
  .service-content-title p {
    font-size: 18px;
  }
}

.service-content-img {
  width: 35%;
}
@media screen and (max-width: 650px) {
  .service-content-img {
    width: 80%;
    margin: 0 auto;
  }
}
@media (min-width: 651px) and (max-width:990px) {
  .service-content-img {
    margin-top: 40px;
  }
}

.service-content-icons {
  width: 80%;
  margin-top: 20px;
  margin-bottom: 60px;
  display: flex;
  align-items: center;
  gap: 20px;
}
@media screen and (max-width: 650px) {
  .service-content-icons {
    width: 100%;
    margin-bottom: 30px;
    gap: 15px;
    flex-wrap: wrap;
  }
}
@media (min-width: 651px) and (max-width:990px) {
  .service-content-icons {
    width: 100%;
  }
}

.service-content-icon {
  flex: 1;
  text-align: center;
}
@media screen and (max-width: 650px) {
  .service-content-icon {
    width: calc((100% - 30px) / 3);
    flex: auto;
  }
}
.service-content-icon span {
  font-size: 14px;
  letter-spacing: 0.01rem;
}
@media screen and (max-width: 650px) {
  .service-content-icon span {
    font-size: 11px;
  }
}

.content-icons-4 {
  width: 53%;
}
@media screen and (max-width: 650px) {
  .content-icons-4 {
    width: 100%;
  }
  .content-icons-4 .service-content-icon {
    flex: 1;
  }
}

/*==========================

page-company

============================*/
.page-company {
  background-color: #ECECEB;
}

.section-title .title-en {
  font-family: "Montserrat", sans-serif;
  font-size: 40px;
  font-weight: 600;
}
@media screen and (max-width: 650px) {
  .section-title .title-en {
    font-size: 30px;
  }
}

.page-contact-btn {
  background-color: #4DA691;
}

.page-h3 {
  font-size: 36px;
  font-weight: 900;
  text-align: center;
  padding-top: 60px;
  padding-bottom: 30px;
  margin-bottom: 40px;
  position: relative;
  line-height: 1.4;
  padding-bottom: 20px;
}
.page-h3::after {
  position: absolute;
  content: "";
  width: 150px;
  height: 5px;
  background-color: #D58B39;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 650px) {
  .page-h3::after {
    width: 100px;
  }
}
@media (min-width: 651px) and (max-width:990px) {
  .page-h3 {
    font-size: 28px;
  }
}
@media screen and (max-width: 650px) {
  .page-h3 {
    font-size: 24px;
  }
}

.company-slider {
  width: 100%;
  padding-bottom: 60px;
  margin-bottom: 100px;
  position: relative;
  z-index: 0;
}
@media (min-width: 651px) and (max-width:990px) {
  .company-slider {
    margin-bottom: 80px;
  }
}
@media screen and (max-width: 650px) {
  .company-slider {
    margin-bottom: 60px;
  }
}
.company-slider p {
  padding: 60px 0 40px 0;
  width: 70%;
  max-width: 1000px;
  margin: 0 auto;
  line-height: 1.8;
  font-size: 20px;
}
@media (min-width: 651px) and (max-width:990px) {
  .company-slider p {
    font-size: 18px;
    padding-bottom: 30px;
  }
}
@media screen and (max-width: 650px) {
  .company-slider p {
    padding: 30px 0 20px 0;
    width: 80%;
    font-size: 16px;
  }
}

.company-slide-bg {
  width: 80%;
  max-width: 1200px;
  min-width: 900px;
  height: 800px;
  left: 50%;
  transform: translateX(-50%);
  margin: 0 auto;
  background-color: #ffffff;
  border-radius: 20px;
  position: absolute;
  z-index: -1;
}
@media (min-width: 651px) and (max-width:990px) {
  .company-slide-bg {
    min-width: 200px;
  }
}
@media screen and (max-width: 650px) {
  .company-slide-bg {
    width: 92%;
    min-width: 200px;
    height: 700px;
  }
}
@media (min-width: 991px) and (max-width:1280px) {
  .company-slide-bg {
    width: 85%;
    min-width: 700px;
  }
}

.swiper-slide {
  width: 50% !important; /* 中央に1枚、左右に半分ずつ見せるため */
  padding: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media (min-width: 651px) and (max-width:990px) {
  .swiper-slide {
    width: 70% !important;
    padding: 20px;
  }
}
@media screen and (max-width: 650px) {
  .swiper-slide {
    width: 90% !important;
    padding: 10px;
  }
}

.slider-img {
  height: 400px;
}
@media (min-width: 651px) and (max-width:990px) {
  .slider-img {
    height: 300px;
  }
}
@media screen and (max-width: 650px) {
  .slider-img {
    height: 250px;
  }
}
.slider-img img {
  border-radius: 30px;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 40px !important;
}

.swiper-pagination-bullet {
  width: 15px !important;
  height: 15px !important;
  background-color: #4DA691 !important;
}
@media screen and (max-width: 650px) {
  .swiper-pagination-bullet {
    width: 10px !important;
    height: 10px !important;
  }
}

/* 共通スタイル */
.swiper-button-prev,
.swiper-button-next {
  width: 60px !important;
  height: 60px !important;
  background-color: #fff; /* 白い背景 */
  border-radius: 50%; /* 丸く */
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1);
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  cursor: pointer;
}
@media screen and (max-width: 650px) {
  .swiper-button-prev,
  .swiper-button-next {
    width: 40px !important;
    height: 40px !important;
  }
}

/* 矢印アイコンのカスタマイズ */
.swiper-button-prev::after,
.swiper-button-next::after {
  font-size: 24px !important;
  font-weight: bold !important;
  color: #4DA691;
}
@media screen and (max-width: 650px) {
  .swiper-button-prev::after,
  .swiper-button-next::after {
    font-size: 18px !important;
  }
}

.swiper-button-prev,
.swiper-button-next {
  top: 50% !important;
  transform: translateY(-50%);
}

.swiper-button-prev {
  left: 250px !important; /* 中央から左に寄せる：スライド幅に応じて調整 */
}
@media (min-width: 991px) and (max-width:1280px) {
  .swiper-button-prev {
    left: 200px !important;
  }
}
@media screen and (max-width: 650px) {
  .swiper-button-prev {
    left: 10px !important;
  }
}
@media (min-width: 651px) and (max-width:990px) {
  .swiper-button-prev {
    left: 20px !important;
  }
}

.swiper-button-next {
  right: 250px !important; /* 中央から右に寄せる */
}
@media (min-width: 991px) and (max-width:1280px) {
  .swiper-button-next {
    right: 200px !important;
  }
}
@media screen and (max-width: 650px) {
  .swiper-button-next {
    right: 10px !important;
  }
}
@media (min-width: 651px) and (max-width:990px) {
  .swiper-button-next {
    right: 20px !important;
  }
}

.company-box {
  width: 80%;
  max-width: 1200px;
  min-width: 900px;
  margin: 0 auto;
  border-radius: 20px;
  background-color: #ffffff;
  padding: 100px 80px;
}
@media (min-width: 651px) and (max-width:990px) {
  .company-box {
    min-width: 200px;
    padding: 80px 40px;
  }
}
@media screen and (max-width: 650px) {
  .company-box {
    min-width: 200px;
    width: 92%;
    padding: 40px 20px;
  }
}
@media (min-width: 991px) and (max-width:1280px) {
  .company-box {
    padding: 80px 50px;
    width: 85%;
  }
}

.company-row {
  display: flex;
  font-size: 20px;
}
@media (min-width: 651px) and (max-width:990px) {
  .company-row {
    font-size: 16px;
  }
}
@media screen and (max-width: 650px) {
  .company-row {
    display: block;
    font-size: 16px;
  }
}
.company-row:not(:last-child) {
  margin-bottom: 60px;
}
@media screen and (max-width: 650px) {
  .company-row:not(:last-child) {
    margin-bottom: 40px;
  }
}

.company-label {
  font-weight: 700;
  width: 200px;
}
@media (min-width: 651px) and (max-width:990px) {
  .company-label {
    width: 150px;
  }
}
@media screen and (max-width: 650px) {
  .company-label {
    padding-bottom: 10px;
  }
}

@media (min-width: 651px) and (max-width:990px) {
  .company-text {
    width: calc(100% - 150px);
  }
}

.top-btn {
  width: 80px;
  height: 80px;
  position: fixed;
  right: 40px;
  bottom: 60px;
  transition: all 0.6s;
}
.top-btn.is-fixed {
  position: absolute;
  bottom: 200px;
}
@media (min-width: 651px) and (max-width:990px) {
  .top-btn.is-fixed {
    bottom: 300px;
  }
}
@media screen and (max-width: 650px) {
  .top-btn.is-fixed {
    bottom: 140px;
  }
}
.top-btn:hover {
  opacity: 0.7;
}
@media (min-width: 651px) and (max-width:990px) {
  .top-btn {
    width: 60px;
    height: 60px;
  }
}
@media screen and (max-width: 650px) {
  .top-btn {
    width: 50px;
    height: 50px;
    right: 10px;
  }
}

/*==========================

contact

============================*/
.contact-inner {
  width: 700px;
  margin: 0 auto;
}
@media (min-width: 651px) and (max-width:990px) {
  .contact-inner {
    width: 400px;
  }
}
@media screen and (max-width: 650px) {
  .contact-inner {
    width: 100%;
    padding: 0 20px;
  }
}

.contact-form {
  width: 600px;
  margin: 40px auto;
  padding: 40px 20px;
  background-color: #F0F0F0;
  border-radius: 20px;
}
@media (min-width: 651px) and (max-width:990px) {
  .contact-form {
    width: 100%;
  }
}
@media screen and (max-width: 650px) {
  .contact-form {
    width: 100%;
  }
}

.form-row {
  margin-bottom: 30px;
}

.form-label {
  margin-bottom: 10px;
}

.required {
  position: relative;
}
.required::after {
  position: absolute;
  content: "必須";
  width: 40px;
  font-size: 14px;
  color: #ffffff;
  background-color: red;
  padding: 3px 0;
  text-align: center;
  right: -45px;
}

.form-input {
  width: 100%;
}
.form-input [type=text] {
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #d8d8d8;
  width: 100%;
  height: 50px;
  padding: 10px;
  font-size: 18px;
}
.form-input [type=email] {
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #d8d8d8;
  width: 100%;
  height: 50px;
  padding: 10px;
  font-size: 18px;
}

.form-textarea textarea {
  border: none;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  border: 1px solid #d8d8d8;
  width: 100%;
  height: 150px;
  padding: 10px;
  font-size: 18px;
}

.form-submit [type=submit] {
  border: none;
  font-size: 20px;
  width: 200px;
  height: 60px;
  border-radius: 10px;
  background-color: #007BFF;
  color: white;
  cursor: pointer;
  transition: 0.8s ease;
}
.form-submit [type=submit]:hover {
  opacity: 0.6;
}/*# sourceMappingURL=main.css.map */