@charset "UTF-8";
/** @format */
/** @format */
/** @format */
body {
  color: #333;
  background-color: #FFFCF6;
}

.container {
  max-width: 1000px;
  margin: auto;
  width: 90%;
}

p {
  line-height: 2;
}

main {
  padding-top: clamp(8.25rem, -4.375rem + 24vw, 10.625rem);
}

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

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

.pankuzu {
  color: #777;
}

/* アニメーション */
.fade-in-item {
  opacity: 0;
  -webkit-transform: translateY(20px);
          transform: translateY(20px);
  -webkit-transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, -webkit-transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out;
  transition: opacity 0.5s ease-out, transform 0.5s ease-out, -webkit-transform 0.5s ease-out;
}

.is-shown {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

/*! destyle.css v3.0.2 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-style: solid;
  border-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 {
  -webkit-box-sizing: content-box;
          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] {
  -webkit-text-decoration: underline dotted;
          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 */
  -moz-appearance: none;
       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 */
}

/**
 * Reset radio and checkbox appearance to preserve their look in iOS.
 */
[type=checkbox] {
  -webkit-appearance: checkbox;
  -moz-appearance: checkbox;
       appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
  -moz-appearance: radio;
       appearance: radio;
}

/**
 * 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;
}

/**
 * 1. 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 */
}

/**
 * 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;
}

img {
  width: 100%;
}

main {
  overflow: hidden;
}

.fv__wrap {
  max-width: 1000px;
  margin: 0 auto;
}

.fv {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media (max-width: 1023px) {
  .fv {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.fv img {
  max-width: 596px;
}

.fv-left {
  padding: 0 30px;
}
.fv-left h1 img {
  max-width: 385px;
}

.sub-title {
  text-align: center;
  margin-top: 37px;
  font-family: "M PLUS 1", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.works__wrap {
  position: relative;
  overflow: hidden;
  padding-bottom: 150px;
}
.works__wrap::before {
  position: absolute;
  content: "";
  background-color: #FFDD6D;
  width: 100%;
  height: 530px;
  z-index: -1;
  top: -100px;
}
.works__wrap::after {
  position: absolute;
  content: "";
  background-image: url(../img/common/bg-sunflower.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
  width: 1000px;
  height: 1000px;
  z-index: -2;
  right: -109px;
  bottom: -170px;
  -webkit-transform: scale(-1, 1);
          transform: scale(-1, 1);
}

.works-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
@media (max-width: 1023px) {
  .works-grid {
    grid-template-columns: 1fr;
  }
}

.button-area.more-button-area {
  margin-top: 80px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.work-card-image {
  background-color: #FFFFFF;
  border-radius: 30px;
  -webkit-box-shadow: inset 5px 5px 5px 1px rgba(17, 17, 26, 0.08);
          box-shadow: inset 5px 5px 5px 1px rgba(17, 17, 26, 0.08);
  text-align: center;
}
.work-card-image img {
  width: 90%;
}

.work-card-content {
  margin: 10px 15px;
}

span.meta-type {
  background-color: #CFE9F9;
  border-radius: 60px;
  padding: 5px 10px;
}

.work-meta-info span, .work-meta-info_2 span {
  margin-right: 20px;
  font-size: 12px;
}

p.work-card-title {
  font-size: 24px;
}

.service__wrap {
  background-color: #FFDD6D;
  padding: 1px 0 100px;
  position: relative;
}
.service__wrap::before {
  position: absolute;
  content: "";
  top: -8px;
  left: -30px;
  width: 150%;
  height: 500px;
  background-color: #B5DEFF;
  -webkit-transform: rotate(4deg);
          transform: rotate(4deg);
  z-index: -1;
}
.service__wrap::after {
  position: absolute;
  content: "";
  bottom: -80px;
  left: 0;
  width: 100%;
  height: 80px;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #FFDD6D;
  z-index: -1;
}

p.service-sentence {
  text-align: center;
  margin-top: -50px;
}

.service-grid {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 51px;
  margin-top: 50px;
}
@media (max-width: 1023px) {
  .service-grid {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.service-item {
  background-color: #FFFFFF;
  border-radius: 30px;
  padding: 10px 20px 20px;
  display: grid;
	    align-items: center;
  grid-template-rows: 50px 140px 200px;
  width: 30%;
}
@media (max-width: 1023px) {
  .service-item {
    width: 400px;
    margin: 0 auto;
	grid-template-rows: 50px 140px 150px;
  }
}
@media (max-width: 700px) {
  .service-item {
    width: 300px;
    margin: 0 auto;
  grid-template-rows: 50px 140px 200px;
  }
}
.service-item h3 {
  text-align: center;
  font-size: clamp(1.5rem, 1.227rem + 1.36vw, 2.25rem);
  position: relative;
}
.service-item h3::after {
  position: absolute;
  content: "";
  width: 129px;
  height: 5px;
  border-radius: 10px;
  background-color: #B5DEFF;
  bottom: -13px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
}
.service-item img {
  width: auto;
  height: 75%;
  display: block;
  margin: 20px auto 0;
}

.flow__wrap {
  margin-top: 200px;
  padding-bottom: 100px;
  background-image: url(../img/common/bg-sunflower.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: bottom;
  background-color: rgba(255, 255, 255, 0.5);
  background-blend-mode: lighten;
}

.flow-sentence {
  text-align: center;
  margin-top: -50px;
  margin-bottom: 50px;
}

ol.flow-item__wrap {
  display: grid;
  gap: 70px;
  counter-reset: listnum;
}

li.flow-item {
  display: grid;
  grid-template-columns: 1fr 3fr;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  background-color: #FFFFFF;
  padding: 30px;
  -webkit-box-shadow: 0px 0px 5px 5px rgba(17, 17, 26, 0.08);
          box-shadow: 0px 0px 5px 5px rgba(17, 17, 26, 0.08);
  position: relative;
}
li.flow-item::before {
  position: absolute;
  counter-increment: listnum;
  content: "0" counter(listnum);
  font-size: 96px;
  color: #B5DEFF;
  opacity: 0.3;
  font-family: "Allerta Stencil", sans-serif;
  font-weight: 400;
  font-style: normal;
}
@media (max-width: 1023px) {
  li.flow-item::before {
    top: -7px;
  }
}
li.flow-item::after {
  position: absolute;
  content: "";
  width: 103px;
  height: 28px;
  background-color: #B5DEFF;
  bottom: -53px;
  left: 50%;
  -webkit-transform: translate(-50%);
          transform: translate(-50%);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
li.flow-item:last-child::after {
  display: none;
}
@media (max-width: 1023px) {
  li.flow-item {
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

p.flow-item__title {
  font-size: 24px;
  font-weight: bold;
  z-index: 10;
}

.about {
  background-color: #FFDD6D;
  border-radius: 0 clamp(6.25rem, 2.5rem + 16vw, 12.5rem) clamp(0.625rem, -0.875rem + 6.4vw, 3.125rem) clamp(3.125rem, 1.25rem + 8vw, 6.25rem);
  border: 1px solid;
  padding: 0 clamp(1.25rem, 0.125rem + 4.8vw, 3.125rem) 100px;
  position: relative;
}
.about::before {
  position: absolute;
  content: "";
  background-image: url(../img/common/beansprouts.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 603px;
  height: 603px;
}
.about a {
  display: block;
  width: 150px;
  margin-left: auto;
  font-size: 24px;
  position: relative;
  font-family: "Bad Script", cursive;
  font-weight: 400;
  font-style: normal;
}
.about a:before {
  position: absolute;
  content: "";
  background-image: url(../img/common/leaf.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: clamp(6.25rem, 2.5rem + 16vw, 12.5rem);
  height: clamp(6.25rem, 2.5rem + 16vw, 12.5rem);
  top: -77px;
  left: 0;
}
.about a::after {
  position: absolute;
  content: "";
  background-image: url(../img/common/Arrow.png);
  background-repeat: no-repeat;
  background-size: contain;
  width: 140px;
  height: 13px;
  bottom: -17px;
  left: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
@media (max-width: 1023px) {
  .about-grid {
    grid-template-columns: 1fr;
  }
}
.about-grid img {
  z-index: 1;
}

dl.me dt {
  font-size: 24px;
  font-weight: normal;
  margin-bottom: 50px;
}
dl.me dt span {
  font-size: 16px;
  color: #847100;
  margin-left: 30px;
}
@media (max-width: 1023px) {
  dl.me dt span {
    margin-left: 0;
  }
}
@media (max-width: 1023px) {
  dl.me dt {
    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;
  }
}
dl.me dd p {
  margin-top: 50px;
}