@charset "UTF-8";
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
  min-width: 0;
}

/* Document */
/* ============================================ */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in iOS.
 * 3. Remove gray overlay on links for iOS.
 */
html {
  line-height: 1.15; /* 1 */
  -webkit-text-size-adjust: 100%; /* 2 */
  -webkit-tap-highlight-color: transparent; /* 3*/
}

/* Sections */
/* ============================================ */
/**
 * Remove the margin in all browsers.
 */
body {
  margin: 0;
}

/**
 * Render the `main` element consistently in IE.
 */
main {
  display: block;
}

/* Vertical rhythm */
/* ============================================ */
p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

/* Headings */
/* ============================================ */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

/* Lists (enumeration) */
/* ============================================ */
ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

/* Lists (definition) */
/* ============================================ */
dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

/* Grouping content */
/* ============================================ */
/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box; /* 1 */
  height: 0; /* 1 */
  overflow: visible; /* 2 */
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

address {
  font-style: inherit;
}

/* Text-level semantics */
/* ============================================ */
/**
 * Remove the gray background on active links in IE 10.
 */
a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

/**
 * 1. Remove the bottom border in Chrome 57-
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  text-decoration: underline dotted; /* 2 */
}

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder;
}

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace; /* 1 */
  font-size: inherit; /* 2 */
}

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%;
}

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

/* Replaced content */
/* ============================================ */
/**
 * Prevent vertical alignment issues.
 */
svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

/* Forms */
/* ============================================ */
/**
 * Reset form fields to make them styleable.
 * 1. Make form elements stylable across systems iOS especially.
 * 2. Inherit text-transform from parent.
 */
button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none; /* 1 */
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit; /* 2 */
}

/**
 * Correct cursors for clickable elements.
 */
button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
}

button:disabled,
[type=button]:disabled,
[type=reset]:disabled,
[type=submit]:disabled {
  cursor: default;
}

/**
 * Improve outlines for Firefox and unify style with input elements & buttons.
 */
:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

/**
 * Remove padding
 */
option {
  padding: 0;
}

/**
 * Reset to invisible
 */
fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

/**
 * Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  vertical-align: baseline;
}

/**
 * Remove the default vertical scrollbar in IE 10+.
 */
textarea {
  overflow: auto;
}

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

/**
 * Correct the outline style in Safari.
 */
[type=search] {
  outline-offset: -2px; /* 1 */
}

/**
 * Remove the inner padding in Chrome and Safari on macOS.
 */
[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Fix font inheritance.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button; /* 1 */
  font: inherit; /* 2 */
}

/**
 * Fix appearance for Firefox
 */
/**
 * Clickable labels
 */
label[for] {
  cursor: pointer;
}

/* Interactive */
/* ============================================ */
/*
 * Add the correct display in Edge, IE 10+, and Firefox.
 */
details {
  display: block;
}

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item;
}

/*
 * Remove outline for editable content.
 */
[contenteditable]:focus {
  outline: auto;
}

/* Tables */
/* ============================================ */
/**
1. Correct table border color inheritance in all Chrome and Safari.
*/
table {
  border-color: inherit; /* 1 */
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

html {
  font-size: 10px !important;
}

body {
  font-size: 1.6rem;
  line-height: 1;
  letter-spacing: 0;
  background-color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: <weight>;
  font-style: normal;

  color: #7a7a7a;
}

img {
  width: 100%;
  height: 100%;
}

p {
  font-size: 15px;
}

h2 {
  font-size: 30px;
  color: #6eb92c;
  text-align: center;
  font-weight: bold;
  margin-bottom: 30px;
}
@media (width <= 750px) {
  h2 {
    font-size: 25px;
  }
}

.pc {
  display: none;
}
@media (width <= 1200px) {
  .pc {
    display: block;
  }
}

.sp {
  display: none;
}
@media (width <= 750px) {
  .sp {
    display: block;
  }
}

@media (width <= 750px) {
  .text-left {
    text-align: left;
    padding-left: 10px;
  }
}

.header {
  padding: 20px 0;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1140px;
  margin: 0 auto;
}



.header__logo a {
  display: block;
width: 175px;
  height: 55px;
}
@media (width <= 750px) {
  .header__logo a {
width: 128px;
    height: 40px;
  }
}
@media (width <= 1200px) {
  .header__logo {
    margin-left: 20px;
  }
}
.header .g-nav-list .pc-nav {
  display: flex;
}
@media (width <= 1200px) {
  .header .g-nav-list .pc-nav {
    display: none;
  }
}
.header .g-nav-list .pc-nav li a {
  color: #7a7a7a;
  padding: 13px 20px;
  font-size: 15px;
}
.header .g-nav-list .pc-nav li .fast {
  color: #6eb92c;
  border-bottom: 3px solid #6eb92c;
}
.header .g-nav-list .pc-nav li a:hover {
  color: #6eb92c;
  border-bottom: 3px solid #6eb92c;
}
@media (width <= 1200px) {
  .header {
    /*アコーディオン全体*/
    /*==================================================
    　5-2-1 3本線が×に
    ===================================*/
    /*ボタン外側※レイアウトによってpositionや形状は適宜変更してください*/
    /*ボタン内側*/
    /*activeクラスが付与されると線が回転して×に*/
    /*アコーディオンで現れるエリア*/
  }
  .header .accordion-area {
    list-style: none;
    margin: 0 auto;
  }
  .header .accordion-area li {
    margin: 10px 0;
  }
  .header .openbtn {
    /*ボタン内側の基点となるためrelativeを指定。
    追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
    position: relative;
    background: rgba(0, 0, 0, 0.05);
    cursor: pointer;
    width: 50px;
    height: 50px;
    border-radius: 5px;
    margin-left: auto;
    margin-right: 20px;
  }
  .header .openbtn span {
    display: inline-block;
    transition: all 0.4s; /*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 3px;
    border-radius: 2px;
    background: #494c4f;
    width: 45%;
  }
  .header .openbtn span:nth-of-type(1) {
    top: 15px;
  }
  .header .openbtn span:nth-of-type(2) {
    top: 23px;
  }
  .header .openbtn span:nth-of-type(3) {
    top: 31px;
  }
  .header .openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    transform: translateY(6px) rotate(-45deg);
    width: 30%;
  }
  .header .openbtn.active span:nth-of-type(2) {
    opacity: 0; /*真ん中の線は透過*/
  }
  .header .openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    transform: translateY(-6px) rotate(45deg);
    width: 30%;
  }
  .header .box {
    width: 482px;
    display: none; /*はじめは非表示*/
    background: #fff;
  }
}
@media (width <= 1200px) and (width <= 750px) {
  .header .box {
    width: 185px;
    margin-right: 20px;
  }
}
@media (width <= 1200px) {
  .header .box a {
    display: block;
    color: #494c4f;
    padding: 10px 20px;
    font-size: 13px;
  }
}
@media (width <= 1200px) and (width <= 1200px) {
  .header .box .fast {
    color: #fff;
    border-bottom: inherit;
    background: #55595c;
  }
}

.fv__inner {
  position: relative;
  background: url(../img/fv.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 474px;
}
@media (width <= 750px) {
  .fv__inner {
    min-height: 350px;
  }
}
.fv .mask {
  background-color: #000000;
  opacity: 0.5;
  min-height: 474px;
}
@media (width <= 750px) {
  .fv .mask {
    min-height: 350px;
  }
}
.fv h1 {
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translateY(-50%) translateX(-50%);
  -webkit-transform: translateY(-50%) translateX(-50%);
  text-align: center;
  color: #ffffff;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.5;
}
@media (width <= 750px) {
  .fv h1 {
    font-size: 37px;
  }
}
.fv h1 span {
  display: block;
  margin-bottom: 48px;
}

.coment {
  margin-top: 60px;
}
@media (width <= 750px) {
  .coment {
    margin-top: 70px;
  }
}
.coment__text {
  font-size: 15px;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 28px;
  line-height: 1.85;
}
@media (width <= 750px) {
  .coment__text {
    text-align: left;
    padding: 10px;
  }
}
.coment__text:last-child {
  margin-top: 30px;
  margin-bottom: 0;
}
@media (width <= 750px) {
  .coment__text:last-child {
    margin-top: 25px;
  }
}

.project {
  margin-top: 60px;
}
.project__inner {
  max-width: 1140px;
  margin: 0 auto;
}
.project__flex {
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
@media (width <= 750px) {
  .project__flex {
    display: block;
  }
}
.project__flex .imgarea-1 {
  background: url(../img/item_1.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.project__flex .imgarea-2 {
  background: url(../img/item_2.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.project__flex .imgarea-3 {
  background: url(../img/item_3.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}
.project__flex--imgarea {
  width: 48.25%;
  margin: 10px;
}
@media (width <= 750px) {
  .project__flex--imgarea {
    width: 100%;
    height: 254px;
    margin: 0;
  }
}
.project__flex--box {
  width: 48.25%;
  background: #6eb92c;
  padding: 9%;
  margin: 10px;
}
@media (width <= 750px) {
  .project__flex--box {
    width: 100%;
    margin: 0;
    padding: 10.5%;
  }
}
.project__flex--box h3 {
  font-weight: bold;
  color: #fff;
  font-size: 25px;
  text-align: center;
  margin-bottom: 20px;
}
@media (width <= 750px) {
  .project__flex--box h3 {
    font-size: 20px;
  }
}
.project__flex--box-text {
  font-size: 15px;
  color: #fff;
  line-height: 1.4;
}
.project .row-reverse {
  flex-direction: row-reverse;
}

.about__inner {
  margin: 60px auto 0 auto;
  max-width: 1140px;
}
.about__img {
  margin: 30px 0 42px 0;
}
.about__img figure img {
  display: block;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  margin: 0 auto;
}
.about__img figure figcaption {
  text-align: center;
  margin-top: 12px;
}
.about-table__inner {
  width: 750px;
  margin: 0 auto;
}
@media (width <= 750px) {
  .about-table__inner {
    width: 100%;
  }
}
.about-table__body {
  border-top: 1px solid #d8d8d8;
}
.about-table__row {
  border-bottom: 1px solid #d8d8d8;
}
.about-table__header {
  width: 50%;
  padding: 15px 0;
  font-size: 15px;
}
@media (width <= 750px) {
  .about-table__header {
    padding: 15px 15px 0 15px;
    width: 100%;
    display: block;
  }
}
.about-table__text {
  width: 50%;
  padding: 15px 0;
  font-size: 15px;
  line-height: 1.5;
}
@media (width <= 750px) {
  .about-table__text {
    width: 100%;
    display: block;
    padding: 9px 15px 15px 15px;
  }
}

.contact {
  margin: 60px 0 110px 0;
}
.contact .form {
  width: 750px;
  margin: 0 auto;
}
@media (width <= 750px) {
  .contact .form {
    width: 100%;
    padding: 0 10px;
  }
}
.contact .form-item {
  margin-bottom: 20px;
}
.contact .form-item-label {
  line-height: 1.8;
}
.contact .form-item-input {
  width: 100%;
  border: 1px solid #818a91;
  padding: 11.25px;
}
.contact .form-item-textarea {
  width: 100%;
  height: 96px;
  padding: 11.25px 14px;
  border: 1px solid #818a91;
  line-height: 1.6;
}
.contact .form-btn {
  width: 100%;
  margin-bottom: 20px;
  background: #6eb92c;
  font-size: 15px;
  color: #fff;
  text-align: center;
  padding: 12.5px 0;
}
.contact .form-message {
  text-align: center;
  margin-top: 20px;
  padding: 20px 24px;
  color: #6eb92c;
  font-size: 15px;
  line-height: 1.8;
  background-color: #f5faf0;
  border: 1px solid #6eb92c;
  border-radius: 4px;
}
.contact .form-message--error {
  color: #c00;
  background-color: #fff5f5;
  border-color: #c00;
}

.footer__inner {
  padding: 10px 0;
  background: #6eb92c;
}
.footer__text {
  color: #fff;
  text-align: center;
}

#l-g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 1000;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 36.45%;
  height: 100vh; /*ナビの高さ*/
  background: #198b7d;
  /*動き*/
  transition: all 0.6s;
}
@media (width <= 750px) {
  #l-g-nav {
    width: 100%;
  }
}
#l-g-nav ul {
  /*ナビゲーション天地中央揃え*/
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 999;
}
@media (width <= 750px) {
  #l-g-nav ul {
    top: 237px;
    left: 50%;
    transform: translate(-50%, 0);
  }
}
#l-g-nav li {
  list-style: none;
  text-align: center;
  line-height: 1;
  margin-bottom: 33.6%;
  padding-bottom: 7px;
}
@media (width <= 750px) {
  #l-g-nav li {
    margin-bottom: 50px;
  }
}
#l-g-nav li a {
  font-size: clamp(20px, 2.12vw, 29px);
  font-family: "Noto Sans JP", sans-serif;
  color: #d4aa38;
  text-decoration: none;
  display: block;
  text-transform: uppercase;
}
@media (width <= 750px) {
  #l-g-nav li a {
    font-size: 50px;
  }
}
#l-g-nav :last-child {
  margin-bottom: 0;
}

.l-g-nav__icon {
  width: 26%;
  aspect-ratio: 1/1;
  margin: 0 auto;
}

.l-g-nav__back-img {
  position: absolute;
  bottom: 0;
  left: 5.5%;
  width: 15.7%;
  aspect-ratio: 1/2.35;
}

/*アクティブクラスがついたら位置を0に*/
#l-g-nav.panelactive {
  right: 0;
}
#l-g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh; /*表示する高さ*/
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}

/*========= ボタンのためのCSS ===============*/
.l-openbtn {
  position: fixed;
  z-index: 9999; /*ボタンを最前面に*/
  top: 28.5px;
  right: 6.5%;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
.l-openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background-color: #198b7d;
  width: 45%;
}
.l-openbtn :nth-of-type(1) {
  top: 15px;
}
.l-openbtn :nth-of-type(2) {
  top: 23px;
}
.l-openbtn :nth-of-type(3) {
  top: 31px;
}

.l-openbtn.active span {
  display: block;
  background-color: #d4aa38;
}
.l-openbtn.active :nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.l-openbtn.active :nth-of-type(2) {
  opacity: 0;
}
.l-openbtn.active :nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.burger-musk {
  display: none;
  height: 100vh;
  width: 100vw;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(112, 112, 112, 0.7);
  z-index: 998;
}

body.noscroll {
  overflow: hidden;
}

.l-footer {
  background: #198b7d;
}
.l-footer__inner {
  width: 84.92%;
  margin: 0 auto;
}
.l-footer__copy {
  padding: 3.221vw 0;
  font-size: clamp(10px, 1.46vw, 30px);
  color: #d4aa38;
  text-align: center;
}

.l-fv {
  background: #f4f4f4;
  aspect-ratio: 1/0.5622254758;
}
@media (width <= 750px) {
  .l-fv {
    aspect-ratio: 1/1.0773;
    overflow: hidden;
  }
}
.l-fv__inner {
  position: relative;
  width: 84.92%;
  height: 100%;
  margin: 0 auto;
  padding: 0 5.9%;
}
@media (width <= 750px) {
  .l-fv__inner {
    width: 100%;
  }
}
.l-fv__slider {
  position: absolute;
  width: 69.5%;
  aspect-ratio: 1/0.687;
  top: 13%;
  right: 6.9%;
}
@media (width <= 750px) {
  .l-fv__slider {
    width: 90%;
    aspect-ratio: 1/0.84;
    top: 137px;
    right: -191px;
  }
}
.l-fv__textarea {
  position: absolute;
  width: 41.8%;
  aspect-ratio: 1.5035971223/1;
  position: relative;
  z-index: 999;
  top: 21%;
}
@media (width <= 750px) {
  .l-fv__textarea {
    width: 81%;
  }
}
.l-fv__textarea--text {
  color: #198b7d;
  font-size: clamp(20px, 2.34vw, 32px);
  text-align: center;
  padding-top: 52px;
}
@media (width <= 750px) {
  .l-fv__textarea--text {
    font-size: 42px;
  }
}
.l-fv__textarea--subtext {
  color: #d4aa38;
  display: block;
  font-size: 11px;
}
@media (width <= 750px) {
  .l-fv__textarea--subtext {
    font-size: 20px;
  }
}
.l-fv__textarea--decortation {
  color: #198b7d;
  font-size: clamp(20px, 8.85vw, 121px);
  line-height: 1;
}
@media (width <= 750px) {
  .l-fv__textarea--decortation {
    font-size: 100px;
  }
}
.l-fv__textarea .decortation-left {
  position: absolute;
  top: 0;
  left: 0;
}
.l-fv__textarea .decortation-right {
  position: absolute;
  bottom: 0;
  right: 0;
}
.l-fv__decoration {
  position: absolute;
  width: 10.1%;
  aspect-ratio: 1/2.0341880342;
  top: 47%;
  left: 14.7%;
}
@media (width <= 750px) {
  .l-fv__decoration {
    display: none;
  }
}

.l-about__inner {
  position: relative;
  width: 84.92%;
  margin: 0 auto;
  padding: 9.297vw 5.86% 8.784vw 5.86%;
}
@media (width <= 750px) {
  .l-about__inner {
    width: 100%;
    padding: 143px 40px 0 40px;
  }
}
.l-about__ttl {
  text-align: left;
}
.l-about__flex {
  position: relative;
  display: flex;
  margin-top: 33px;
}
@media (width <= 750px) {
  .l-about__flex {
    display: block;
    margin-top: 116px;
  }
}
.l-about__flex--img {
  position: absolute;
  width: 50%;
  aspect-ratio: 1/0.75;
  top: 4.612vw;
}
@media (width <= 750px) {
  .l-about__flex--img {
    position: static;
    width: 100%;
    top: inherit;
  }
}
.l-about__flex--textarea {
  width: 53.8%;
  aspect-ratio: 1/0.918;
  background: #f4f4f4;
  margin: 0 0 0 auto;
}
@media (width <= 750px) {
  .l-about__flex--textarea {
    width: 100%;
    background: #fff;
  }
}
.l-about__flex--textarea .l-about__textarea--name {
  padding: 18.2% 0 6.7% 16%;
  font-size: clamp(20px, 2.92vw, 40px);
  color: #198b7d;
  line-height: 1;
}
@media (width <= 750px) {
  .l-about__flex--textarea .l-about__textarea--name {
    font-size: 45px;
    padding: 56px 0 0 0;
  }
}
.l-about__flex--textarea .l-about__textarea--text {
  font-size: clamp(10px, 1.1vw, 30px);
  line-height: 2.66;
  padding: 5.1% 9.1% 0 16%;
}
@media (width <= 750px) {
  .l-about__flex--textarea .l-about__textarea--text {
    font-size: 30px;
    padding: 30px 0 0 0;
  }
}
.l-about__decoration {
  position: absolute;
  width: 8.85vw;
  aspect-ratio: 1/2.347;
  right: -0.8%;
  bottom: 18%;
  z-index: -1;
}
@media (width <= 750px) {
  .l-about__decoration {
    display: none;
  }
}

.l-service {
  background: #f4f4f4;
}
.l-service__inner {
  position: relative;
  width: 84.92%;
  margin: 0 auto;
  padding: 9.297vw 5.86% 12.07vw 5.86%;
}
@media (width <= 750px) {
  .l-service__inner {
    width: 100%;
    padding: 143px 40px 0 40px;
  }
}
.l-service__ttl {
  text-align: right;
}
.l-service__content {
  display: flex;
  margin-top: 6.95vw;
}
@media (width <= 750px) {
  .l-service__content {
    display: block;
    margin-top: 116px;
  }
}
.l-service__content--item {
  position: relative;
  width: 33.33333%; /* 未対応ブラウザ用フォールバック */
  width: -webkit-calc(100% / 3);
  width: 33.3333333333%;
  aspect-ratio: 1/1.591;
  padding: 0 1.464vw;
  box-shadow: 0 3px 6px rgba(112, 112, 112, 0.3);
  background: #ffffff;
}
@media (width <= 750px) {
  .l-service__content--item {
    width: 100%;
  }
}
.l-service__content--item .l-service__item--ttl {
  font-size: clamp(10px, 1.46vw, 30px);
  color: #198b7d;
  text-align: center;
  font-weight: bold;
  padding: 13.8% 0 9.3% 0;
}
@media (width <= 750px) {
  .l-service__content--item .l-service__item--ttl {
    font-size: 38px;
    padding: 87px 0 84px 0;
  }
}
.l-service__content--item .l-service__item--img1 {
  width: 35%;
  aspect-ratio: 1/0.96;
  margin: 0 auto;
}
.l-service__content--item .l-service__item--img2 {
  width: 34%;
  aspect-ratio: 1/1;
  margin: 0 auto;
}
.l-service__content--item .l-service__item--img3 {
  width: 42%;
  aspect-ratio: 1/0.691;
  margin: 0 auto;
}
.l-service__content--item .l-service__item--text {
  width: 88%;
  position: absolute;
  top: 51.5%;
  font-size: clamp(10px, 1.1vw, 30px);
  color: #707070;
  font-family: "Noto Sans JP", sans-serif;
  line-height: 2;
}
@media (width <= 750px) {
  .l-service__content--item .l-service__item--text {
    font-size: 30px;
  }
}
.l-service__content .bg-glay {
  background: #f2f4f5;
}

.l-features__inner {
  position: relative;
  width: 84.92%;
  margin: 0 auto;
  padding: 9.224vw 5.715% 8.784vw 5.715%;
}
.l-features__content {
  margin-top: 7.174vw;
}
.l-features__flex {
  display: flex;
}
.l-features__flex--textarea {
  background: #fff;
  width: 50%;
  padding: 7.4% 6% 0 6%;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.l-features__flex--imgarea {
  width: 50%;
  aspect-ratio: 1.333/1;
}
.l-features__textarea--ttl {
  font-size: clamp(10px, 2.196vw, 50px);
  color: #198b7d;
}
.l-features__textarea--text {
  font-size: clamp(10px, 1.1vw, 30px);
  color: #707070;
  margin-top: 4.685vw;
  letter-spacing: 0.1em;
}
.l-features__decoration {
  position: absolute;
  z-index: -1;
  top: 26%;
  right: -8%;
  width: 21.75%;
  aspect-ratio: 1/0.94;
}

.l-work {
  background: #f4f4f4;
}
.l-work__inner {
  position: relative;
  width: 84.92%;
  margin: 0 auto;
  padding: 9.224vw 5.715% 11.63vw 5.715%;
  z-index: 1;
}
.l-work__ttl {
  text-align: right;
}
.l-work__content {
  margin-top: 7.247vw;
  display: grid;
  gap: 3.66vw;
  grid-template-columns: repeat(2, 1fr);
}
.l-work__content--item {
  width: calc(100% - 25px);
  aspect-ratio: 1.869/1;
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}
.l-work__decoration {
  position: absolute;
  width: 24.2%;
  aspect-ratio: 1/1.153;
  top: 6%;
  left: 0;
  z-index: -1;
}

.l-contact__inner {
  position: relative;
  width: 84.92%;
  margin: 0 auto;
  padding: 11.27vw 5.715% 11.34vw 5.715%;
}
.l-contact__ttl {
  text-align: center;
}
.l-contact__text {
  text-align: center;
  font-size: clamp(10px, 1.46vw, 30px);
  color: #707070;
  margin: 7.54vw 0 7.906vw 0;
}
.l-contact__btn a {
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  width: 203px;
  height: 51px;
  text-decoration: none;
  font-size: clamp(10px, 1.46vw, 30px);
  color: #d4aa38;
  background-color: #198b7d;
  margin: 0 auto;
  transition: 0.3s;
}
.l-contact a:hover {
  background-color: #fff;
  border: 2px solid #d4aa38;
}
.l-contact a::before {
  content: "";
  position: absolute;
  top: calc(50% - 5px);
  right: -35px;
  transform: rotate(30deg);
  width: 12px;
  height: 2px;
  background: #d4aa38;
}
.l-contact a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -35px;
  transform: translateY(-50%);
  width: 60px;
  height: 2px;
  background: #d4aa38;
}
.l-contact__decoration--right {
  position: absolute;
  top: 35px;
  right: -11%;
  width: 21.2%;
  aspect-ratio: 1/0.922;
}
.l-contact__decoration--left {
  position: absolute;
  width: 13.8%;
  aspect-ratio: 1/2;
  left: -13%;
  bottom: -4%;
}

/*スクロールダウン全体の場所*/
.c-scrolldown {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
}
.c-scrolldown span {
  /*描画位置*/
  position: absolute;
  left: -12px;
  bottom: 94px;
  /*テキストの形状*/
  color: #198b7d;
  font-size: 1.3rem;
  letter-spacing: 0.05em;
  /*縦書き設定*/
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
}
.c-scrolldown :before {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: 0;
  left: -82%;
  /*丸の形状*/
  width: 57px;
  height: 57px;
  border-radius: 50%;
  border: solid 5px #e6ff00;
  /*丸の動き1.6秒かけて透過し、永遠にループ*/
  animation: circlemove 1.6s ease-in-out infinite, cirlemovehide 1.6s ease-out infinite;
}
.c-scrolldown :after {
  content: "";
  /*描画位置*/
  position: absolute;
  bottom: -187px;
  left: 50%;
  /*線の形状*/
  width: 2px;
  height: 180px;
  background: #198b7d;
}

.right {
  bottom: 0;
  right: 0;
}

.left {
  left: 0;
  bottom: 0;
}

/*下からの距離が変化して丸の全体が上から下に動く*/
@keyframes circlemove {
  0% {
    bottom: 0;
  }
  100% {
    bottom: -180px;
  }
}
/*上から下にかけて丸が透過→不透明→透過する*/
@keyframes cirlemovehide {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  80% {
    opacity: 0.9;
  }
  100% {
    opacity: 0;
  }
}
.c-section__ttl {
  font-size: clamp(10px, 1.46vw, 30px);
  color: #d4aa38;
}
@media (width <= 750px) {
  .c-section__ttl {
    font-size: 28px;
  }
}
.c-section__ttl span {
  display: block;
  color: #198b7d;
  font-size: clamp(20px, 3.73vw, 51px);
  line-height: 1;
  padding-top: 10px;
}
@media (width <= 750px) {
  .c-section__ttl span {
    font-size: 70px;
  }
}

/*# sourceMappingURL=style.css.map */