@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700&display=swap");
/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.css */
/* Reset box-model and set borders */
/* ============================================ */
*,
::before,
::after {
  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 {
  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 */
}

/**
 * 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
 */
[type=number] {
  -moz-appearance: textfield;
}

/**
 * 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 {
  -webkit-appearance: none;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 8rem;
  word-break: break-all;
  font-size: 10px;
}
@media (max-width: 1260px) and (min-width: 768px) {
  html {
    font-size: 0.7936507937vw;
  }
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 6rem;
    font-size: min(1.3333333333vw, 6.6666666667px);
  }
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 500;
  line-height: 1.5;
  padding-top: 16rem;
  color: #575757;
}
@media (max-width: 767px) {
  body {
    padding-top: 90px;
  }
}

/* PC、SPの非表示 */
@media (max-width: 767px) {
  .pc {
    display: none !important;
  }
}
@media (min-width: 768px) {
  .sp {
    display: none !important;
  }
}
img {
  width: 100%;
  height: auto;
}

button,
a {
  transition: all 0.4s;
}
button:hover,
a:hover {
  opacity: 0.7;
}

#container {
  width: 100%;
  overflow: hidden;
}

.inner {
  width: 120rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .inner {
    width: 72rem;
  }
}

h2,
h3,
h4 {
  font-weight: 700;
}

section > .head:first-child {
  position: relative;
  color: #fff;
  font-weight: bold;
  text-align: center;
  line-height: 1.3;
  padding: 40px 0;
  font-size: 40px;
}

@media (max-width: 1440px) {
  section > .head:first-child {
    padding: 2.777777vw 0;
    font-size: 2.777777vw;
  }
}
@media (max-width: 750px) {
  section > .head:first-child {
    padding: 20px;
    font-size: 20px;
  }
}
section > .head:first-child::after {
  position: absolute;
  left: 50%;
  display: block;
  content: "";
  transform: translateX(-50%) rotate(45deg);
  bottom: -20px;
  width: 40px;
  height: 40px;
}

@media (max-width: 1440px) {
  section > .head:first-child::after {
    bottom: -1.388888vw;
    width: 2.777777vw;
    height: 2.777777vw;
  }
}
@media (max-width: 750px) {
  section > .head:first-child::after {
    bottom: -10px;
    width: 20px;
    height: 20px;
  }
}
.color-red {
  color: #f00;
}

.animate__animated.animate__fadeInUp {
  --animate-duration: 2s;
}

.animate__animated.fadeIn-original {
  --animate-duration: 2s;
}

@keyframes fadeIn-original {
  from {
    opacity: 0;
    transform: translate3d(0, 10rem, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.fadeIn-original {
  animation-name: fadeIn-original;
}

.page-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  border-top: 1.4rem solid #179787;
  height: 16rem;
  background: #fff;
  padding: 0 4.1666666667vw;
  display: flex;
  align-items: center;
}
@media (max-width: 767px) {
  .page-header {
    height: 90px;
    justify-content: center;
    padding: 0 1rem;
  }
}
.page-header .freecall {
  height: 100%;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding-bottom: 1.5rem;
}
@media (min-width: 1700px) {
  .page-header .freecall {
    flex-direction: row;
    justify-content: flex-start;
    align-items: flex-end;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
.page-header .freecall__image:nth-of-type(1) {
  width: 28.2rem;
}
.page-header .freecall__image:nth-of-type(2) {
  width: 23.5rem;
}
.page-header .logo {
  width: 41.6rem;
}
@media (max-width: 767px) {
  .page-header .logo {
    width: 345px;
  }
}
.page-header .button {
  height: 100%;
  flex: 1;
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  flex-direction: column;
  row-gap: 1rem;
  padding-bottom: 1.5rem;
}
@media (min-width: 1600px) {
  .page-header .button {
    flex-direction: row;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}
.page-header .button a {
  display: block;
  width: 21.3rem;
}
.page-footer {
  padding: 3rem 0;
}
@media (max-width: 767px) {
  .page-footer {
    padding: 30px 0 calc(12.0026666667vw + 30px);
  }
}
.page-footer .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1100px) {
  .page-footer .inner {
    flex-direction: column;
    row-gap: 30px;
  }
}
@media (max-width: 767px) {
  .page-footer .inner {
    width: 71rem;
  }
}
.page-footer ul {
  display: flex;
}
@media (max-width: 767px) {
  .page-footer ul {
    flex-wrap: wrap;
    justify-content: center;
  }
}
.page-footer ul li a {
  display: block;
  color: #219c8d;
  font-size: 14px;
  line-height: 2;
}
.page-footer ul li:not(:last-of-type) a::after {
  margin: 0 20px;
  content: "|";
  color: #219c8d;
}
.page-footer .copyright {
  color: #219c8d;
  font-size: 12px;
  font-feature-settings: "palt" 1;
}
@media (max-width: 767px) {
  .page-footer .copyright {
    font-size: 10px;
  }
}

@media (max-width: 767px) {
  .pctop_banner {
    display: none;
  }
  .sp_contact_btn {
    position: fixed;
    bottom: 0;
    display: flex;
    flex-wrap: nowrap;
    justify-content: center;
    width: 100%;
    max-width: 750px;
    height: 16.933vw;
    height: 12.0026666667vw;
    z-index: 9998;
  }
  .sp_contact_btn a.mitsumori_banner {
    position: absolute;
    left: 0;
    bottom: 0;
    display: block;
    width: 66.66%;
  }
  .sp_contact_btn a.mitsumori_banner img {
    width: 100%;
    vertical-align: middle;
  }
  .sp_contact_btn a.sp_contact_tel img {
    margin: 0;
    position: absolute;
    right: 0;
    bottom: 0;
    display: block;
    width: 33.33%;
  }
}
/* fv */
.fv {
  position: relative;
}
@media (max-width: 767px) {
  .fv__bg-image {
    height: 70rem;
  }
}
@media (max-width: 767px) {
  .fv__bg-image img {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -o-object-position: 70% 50%;
       object-position: 70% 50%;
  }
}
.fv__contents {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: linear-gradient(60deg, rgba(255, 0, 0, 0.5), rgba(0, 0, 255, 0.5));
  /* background: #f00; */
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 8rem;
  animation: gradation-bg 10s linear infinite;
}
@media (max-width: 767px) {
  .fv__contents {
    padding-top: 6rem;
  }
}
.fv__contents h2 {
  width: 54.9048316252vw;
  animation: fadeIn 2s ease 1s both;
}
@media (max-width: 767px) {
  .fv__contents h2 {
    width: 88vw;
  }
}

@keyframes gradation-bg {
  0% {
    filter: hue-rotate(0deg);
  }
  100% {
    filter: hue-rotate(360deg);
  }
}
@keyframes fadeIn {
  0% {
    opacity: 0;
    transform: translateY(100%);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}
.common-btn01 {
  width: 59rem;
  height: 16rem;
  background: #ff8a00;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  color: #fff;
}
@media (max-width: 767px) {
  .common-btn01 {
    margin: 0 auto;
    width: 45.4rem;
    height: 11.8rem;
    -moz-column-gap: 1.5rem;
         column-gap: 1.5rem;
  }
}
.common-btn01 .link-content {
  display: flex;
  align-items: center;
  line-height: 1.2;
  -moz-column-gap: 1.2rem;
       column-gap: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.common-btn01 .link-content .link-icon {
  width: 5.3rem;
}
@media (max-width: 767px) {
  .common-btn01 .link-content .link-icon {
    width: 5rem;
  }
}
.common-btn01 .link-content p {
  font-size: 4.8rem;
}
@media (max-width: 767px) {
  .common-btn01 .link-content p {
    font-size: 3.6rem;
  }
}
.common-btn01 .link-content p span {
  display: inline-block;
  margin-left: 1rem;
  color: #fff600;
}
.common-btn01 .link-arrow {
  width: 1.5rem;
  margin-bottom: 1rem;
}

.common-btn02 {
  width: 59rem;
  height: 16rem;
  background: #4595e0;
  display: flex;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 2rem;
       column-gap: 2rem;
  color: #fff;
}
@media (max-width: 767px) {
  .common-btn02 {
    margin: 0 auto;
    width: 45.4rem;
    height: 11.8rem;
  }
}
.common-btn02 .link-content {
  display: flex;
  align-items: center;
  line-height: 1.2;
  -moz-column-gap: 1.2rem;
       column-gap: 1.2rem;
  font-weight: 500;
  letter-spacing: 0.1em;
}
.common-btn02 .link-content .link-icon {
  width: 6.6rem;
}
@media (max-width: 767px) {
  .common-btn02 .link-content .link-icon {
    width: 6.2rem;
  }
}
.common-btn02 .link-content p {
  font-size: 4.4rem;
}
@media (max-width: 767px) {
  .common-btn02 .link-content p {
    font-size: 3.6rem;
  }
}
.common-btn02 .link-arrow {
  width: 1.5rem;
  margin-bottom: 1rem;
}

.fv {
  padding: 0 4.1666666667vw;
}
@media (max-width: 767px) {
  .fv {
    padding: 0;
  }
}

.intro__title {
  width: 100%;
  height: 40rem;
  background: #179787;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: flex-end;
  padding: 7rem 0;
  position: relative;
}
@media (max-width: 767px) {
  .intro__title {
    height: 16.4rem;
    align-items: center;
  }
}
.intro__title::before {
  content: "";
  width: 4.8rem;
  height: 3.2rem;
  background: #179787;
  position: absolute;
  bottom: -3.1rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.intro__title h2 {
  font-size: 5.93rem;
  color: #fff;
  line-height: 1.2478920742;
}
@media (max-width: 767px) {
  .intro__title h2 {
    font-size: 3.6rem;
    line-height: 1.3333333333;
  }
}
.intro__links {
  width: 120rem;
  display: flex;
  justify-content: space-between;
  position: absolute;
  top: -4rem;
  left: 50%;
  transform: translateX(-50%);
}
.intro__contents {
  padding: 6rem 0 7.5rem;
  background: linear-gradient(0deg, #f9ffb2, transparent 85%, transparent 100%);
}
@media (max-width: 767px) {
  .intro__contents .inner {
    width: 68rem;
  }
}
.intro__contents ul {
  padding: 5rem 6rem 7rem;
  background: #fff;
  border: 0.4rem solid #969696;
  border-radius: 2rem;
}
@media (max-width: 767px) {
  .intro__contents ul {
    padding: 3.5rem 3.5rem 13rem;
  }
}
.intro__contents ul li {
  display: flex;
  -moz-column-gap: 1.5rem;
       column-gap: 1.5rem;
}
.intro__contents ul li:not(:first-of-type) {
  margin-top: 1rem;
}
.intro__contents ul li .check-icon {
  width: 3.8rem;
  margin-top: 1.4rem;
}
@media (max-width: 767px) {
  .intro__contents ul li .check-icon {
    margin-top: 0.3rem;
  }
}
.intro__contents ul li .list-text {
  flex: 1;
}
.intro__contents ul li .list-text p {
  font-size: 4.2rem;
  letter-spacing: 0.075em;
}
@media (max-width: 767px) {
  .intro__contents ul li .list-text p {
    font-size: 3rem;
  }
}
.intro__bottom-image {
  width: 68.6rem;
  margin: 0 auto;
  margin-top: -5rem;
}
@media (max-width: 767px) {
  .intro__bottom-image {
    width: 100%;
    margin-top: -10rem;
  }
}

.sec01 {
  padding: 11rem 0 14.8rem;
}
@media (max-width: 767px) {
  .sec01 {
    padding: 9rem 0 13rem;
  }
}
@media (max-width: 767px) {
  .sec01 .inner {
    width: 68rem;
  }
}
.sec01__title {
  margin-bottom: 7.4rem;
}
@media (max-width: 767px) {
  .sec01__title {
    margin-bottom: 6.7rem;
  }
}
.sec01__title h2 {
  width: 46.3rem;
  margin: 0 auto 3.5rem;
}
@media (max-width: 767px) {
  .sec01__title h2 {
    width: 32rem;
    margin-bottom: 3rem;
  }
}
.sec01__title p {
  width: 33rem;
  height: 7.8rem;
  background: #0e670a;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4.8rem;
  color: #fff;
  margin: 0 auto;
  -webkit-clip-path: polygon(2.3rem 0, 100% 0, calc(100% - 2.3rem) 100%, 0 100%);
          clip-path: polygon(2.3rem 0, 100% 0, calc(100% - 2.3rem) 100%, 0 100%);
}
@media (max-width: 767px) {
  .sec01__title p {
    width: 22.6rem;
    height: 5.6rem;
    font-size: 3.3rem;
  }
}
.sec01__items {
  margin-bottom: 9rem;
}
@media (max-width: 767px) {
  .sec01__items {
    margin-bottom: 7.4rem;
  }
}
.sec01 .sec01-item:not(:first-of-type) {
  margin-top: 5.5rem;
}
.sec01 .sec01-item__title {
  display: flex;
  align-items: center;
  -moz-column-gap: 3rem;
       column-gap: 3rem;
  margin-bottom: 1.5rem;
}
.sec01 .sec01-item__title .title-num {
  width: 9.6rem;
  height: 9.6rem;
  background: #0e670a;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4.8rem;
  position: relative;
  border-radius: 50%;
}
.sec01 .sec01-item__title .title-num::before {
  content: "";
  width: 50%;
  height: 50%;
  position: absolute;
  bottom: -0.06rem;
  left: 0;
  background: #0e670a;
  -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 100%, 0 100%);
}
.sec01 .sec01-item__title h3 {
  flex: 1;
  font-size: 4.8rem;
  line-height: 1.25;
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .sec01 .sec01-item__title h3 {
    font-size: 3.4rem;
    line-height: 1.7647058824;
  }
}
.sec01 .sec01-item__title h3 span {
  display: inline-block;
  font-size: 5.8rem;
  color: #b71221;
  background: linear-gradient(0deg, #fff600 15%, transparent 15%, transparent 100%);
}
@media (max-width: 767px) {
  .sec01 .sec01-item__title h3 span {
    font-size: 4.2rem;
    line-height: 1.1;
    background: linear-gradient(0deg, #fff600 30%, transparent 30%, transparent 100%);
  }
}
.sec01 .sec01-item__text p {
  font-size: 2.3rem;
}
@media (max-width: 767px) {
  .sec01 .sec01-item__text p {
    font-size: 2.4rem;
  }
}
.sec01__link button {
  display: block;
  width: 73.4rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .sec01__link button {
    width: 64.6rem;
  }
}
.sec01 .modal-block {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  padding: 5rem;
  display: none;
}
@media (max-width: 767px) {
  .sec01 .modal-block {
    padding: 3rem;
  }
}
.sec01 .modal-block .modal-bg {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
  position: absolute;
  top: 0;
  left: 0;
}
.sec01 .modal-block .modal-content {
  position: relative;
  width: 100%;
  height: 100%;
  overflow-y: scroll;
  padding: 4rem 3rem;
  background: #fff;
}
@media (max-width: 767px) {
  .sec01 .modal-block .modal-content {
    padding: 3rem 0;
  }
}
.sec01 .modal-block .modal-content .close-btn {
  width: 3rem;
  height: 3rem;
  background: #0e670a;
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  cursor: pointer;
}
.sec01 .modal-block .modal-content .close-btn span {
  width: 3.8rem;
  height: 0.2rem;
  background: #fff;
  position: absolute;
  top: 50%;
  left: 50%;
}
.sec01 .modal-block .modal-content .close-btn span:nth-of-type(1) {
  transform: translate(-50%, -50%) rotate(45deg);
}
.sec01 .modal-block .modal-content .close-btn span:nth-of-type(2) {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.consultation-sec__title {
  width: 100%;
  height: 13rem;
  background: #ff8a00;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
@media (max-width: 767px) {
  .consultation-sec__title {
    height: 17rem;
    text-align: center;
  }
}
.consultation-sec__title::before {
  content: "";
  width: 4.8rem;
  height: 3.2rem;
  background: #ff8a00;
  position: absolute;
  bottom: -3.1rem;
  left: 50%;
  transform: translateX(-50%);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.consultation-sec__title h2 {
  color: #fff;
  font-size: 4rem;
  font-weight: 700;
  letter-spacing: 0.075em;
}
@media (max-width: 767px) {
  .consultation-sec__title h2 {
    font-size: 3.2rem;
    line-height: 1.4;
  }
}
.consultation-sec__title h2 span {
  font-size: 6rem;
}
@media (max-width: 767px) {
  .consultation-sec__title h2 span {
    font-size: 5.6rem;
  }
}
.consultation-sec__contents {
  padding: 7rem 0 6rem;
  background: #f8efe5;
}
@media (max-width: 767px) {
  .consultation-sec__contents {
    padding: 4rem 0 10rem;
  }
}
.consultation-sec__items {
  margin-bottom: 6rem;
  display: flex;
  justify-content: center;
}
@media (max-width: 767px) {
  .consultation-sec__items {
    flex-direction: column;
    row-gap: 3.6rem;
  }
}
.consultation-sec .consultation-sec-item {
  width: 59rem;
  font-weight: 700;
  line-height: 1;
}
@media (max-width: 767px) {
  .consultation-sec .consultation-sec-item {
    width: 100%;
  }
}
.consultation-sec .consultation-sec-item:first-of-type {
  display: flex;
  justify-content: center;
}
.consultation-sec .consultation-sec-item .freecall p {
  font-size: 2.44rem;
  color: #ff8a00;
  letter-spacing: 0.05em;
}
@media (max-width: 767px) {
  .consultation-sec .consultation-sec-item .freecall p {
    font-size: 2.6rem;
    line-height: 1.2;
  }
}
.consultation-sec .consultation-sec-item .tel p {
  font-size: 6.94rem;
  color: #ff8a00;
  letter-spacing: 0.09em;
}
@media (max-width: 767px) {
  .consultation-sec .consultation-sec-item .tel p {
    font-size: 7.2rem;
  }
}
.consultation-sec .consultation-sec-item .note p {
  font-size: 3.22rem;
  line-height: 1.2;
}
.consultation-sec .consultation-sec-item .note p span {
  font-size: 5.36rem;
  color: #ff8a00;
  letter-spacing: 0.1em;
  line-height: 1.4;
}
.consultation-sec .consultation-sec-item .address {
  text-align: center;
  margin-bottom: 2rem;
}
@media (max-width: 767px) {
  .consultation-sec .consultation-sec-item .address {
    margin-bottom: 3rem;
  }
}
.consultation-sec .consultation-sec-item .address address {
  font-weight: 500;
}
@media (max-width: 767px) {
  .consultation-sec .consultation-sec-item .address address {
    font-size: 2.6rem;
  }
}
.consultation-sec .consultation-sec-item .logo {
  width: 40.5rem;
  margin: 0 auto 2rem;
}
@media (max-width: 767px) {
  .consultation-sec .consultation-sec-item .logo {
    width: 56rem;
    margin-bottom: 3rem;
  }
}
.consultation-sec .consultation-sec-item .link a {
  display: block;
  width: 19.1rem;
  margin: 0 auto;
}
@media (max-width: 767px) {
  .consultation-sec .consultation-sec-item .link a {
    width: 38rem;
  }
}
.consultation-sec__links {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .consultation-sec__links {
    flex-direction: column;
    row-gap: 4rem;
  }
}

.sec02 {
  padding-top: 22.6rem;
  margin-bottom: 11.3rem;
}
@media (max-width: 767px) {
  .sec02 {
    padding-top: 14.5rem;
  }
}
.sec02__head {
  display: flex;
  -moz-column-gap: 4rem;
       column-gap: 4rem;
  margin-bottom: 5rem;
}
@media (max-width: 767px) {
  .sec02__head {
    flex-direction: column-reverse;
    row-gap: 4.5rem;
  }
}
.sec02__head-content {
  flex: 1;
  padding-top: 7rem;
}
@media (max-width: 767px) {
  .sec02__head-content {
    padding: 0 2.4rem;
  }
}
.sec02__head-content .head-title h2 {
  font-size: 7.2rem;
  line-height: 1.3888888889;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.sec02__head-content .head-ua p {
  font-size: 4.8rem;
  line-height: 2.0833333333;
  color: #f00;
  letter-spacing: 0.1em;
  font-weight: 700;
}
.sec02__head-image-area {
  width: 49rem;
  height: 67.4rem;
  background: #ff6;
  position: relative;
}
@media (max-width: 767px) {
  .sec02__head-image-area {
    width: calc(100% - 2.4rem);
    margin-left: auto;
    height: 56.4rem;
  }
}
.sec02__head-image {
  width: calc(50vw - 11rem);
  height: 100%;
  background: #f66;
  position: absolute;
  top: 0;
  left: 0;
}
@media (max-width: 767px) {
  .sec02__head-image {
    width: 70.9rem;
  }
}
.sec02__head-image::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: #0e670a;
  top: 2.4rem;
  right: 2.4rem;
}
.sec02__head-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  position: relative;
}
.sec02__energy-graph {
  margin-bottom: 7.4rem;
}
@media (max-width: 767px) {
  .sec02 .inner-special {
    width: 100%;
  }
}
.sec02__do-you-know {
  background: #fff1e0;
  padding: 4.4rem 5.2rem 1.5rem;
  position: relative;
  margin-bottom: 13rem;
}
@media (max-width: 767px) {
  .sec02__do-you-know {
    padding: 12rem 1.5rem 7rem;
  }
}
.sec02__do-you-know .do-you-know-title {
  position: absolute;
  top: -3.8rem;
  left: 0;
}
@media (max-width: 767px) {
  .sec02__do-you-know .do-you-know-title {
    top: -3rem;
    left: 1.5rem;
  }
}
.sec02__do-you-know .do-you-know-title h3 {
  width: 26rem;
}
@media (max-width: 767px) {
  .sec02__do-you-know .do-you-know-title h3 {
    width: 34rem;
  }
}
.sec02__do-you-know .do-you-know-block {
  display: flex;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
  padding: 3.6rem 0;
}
@media (max-width: 767px) {
  .sec02__do-you-know .do-you-know-block {
    flex-direction: column;
    row-gap: 2.5rem;
  }
}
.sec02__do-you-know .do-you-know-block:not(:first-of-type) {
  border-top: 0.1rem solid #824b24;
}
.sec02__do-you-know .do-you-know-item01 {
  flex: 1;
}
.sec02__do-you-know .do-you-know-item01__title {
  margin-bottom: 1.5rem;
}
.sec02__do-you-know .do-you-know-item01__title h4 {
  font-size: 2.8rem;
  line-height: 1.6;
  color: #824b24;
}
@media (max-width: 767px) {
  .sec02__do-you-know .do-you-know-item01__title h4 {
    font-size: 3rem;
  }
}
@media (max-width: 767px) {
  .sec02__do-you-know .do-you-know-item01__text-image {
    width: 59.6rem;
    margin: 0 auto;
  }
}
.sec02__do-you-know .do-you-know-item02 {
  width: 52rem;
}
@media (max-width: 767px) {
  .sec02__do-you-know .do-you-know-item02 {
    width: 100%;
  }
}
.sec02__do-you-know .do-you-know-item02__image-items {
  display: flex;
  -moz-column-gap: 1.2rem;
       column-gap: 1.2rem;
}
.sec02__do-you-know .do-you-know-item02__image-item {
  flex: 1;
  text-align: center;
}
@media (max-width: 767px) {
  .sec02__do-you-know .do-you-know-item02__image-item {
    text-align: left;
  }
}
.sec02__do-you-know .do-you-know-item02__image-item img {
  width: 100%;
  aspect-ratio: 242/194;
}
.sec02__do-you-know .do-you-know-item02__image-item p {
  font-size: 1.3rem;
  line-height: 2;
  letter-spacing: -0.01em;
}
.sec02__do-you-know .do-you-know-item02__text {
  margin-top: 1rem;
}
@media (max-width: 767px) {
  .sec02__do-you-know .do-you-know-item02__text {
    margin-top: 2rem;
  }
}
.sec02__do-you-know .do-you-know-item02__anno {
  margin-top: 1rem;
}
.sec02__do-you-know .do-you-know-item02__anno p {
  font-size: 1.6rem;
  line-height: 1.5;
}
.sec02__block-title {
  margin-bottom: 3rem;
}
.sec02__block-title h3 {
  font-size: 2.8rem;
  padding-bottom: 0.8rem;
  border-bottom: 0.1rem solid #0e670a;
  color: #0e670a;
}
@media (max-width: 767px) {
  .sec02__block-title h3 {
    font-size: 3rem;
    line-height: 1.2;
  }
}
.sec02__block-title h3 span {
  font-size: 2.4rem;
}
.sec02 .sec02-block01 {
  margin-bottom: 10.5rem;
}
.sec02 .sec02-block01__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  -moz-column-gap: 2.5rem;
       column-gap: 2.5rem;
  row-gap: 6.7rem;
  margin-bottom: 5rem;
  padding-top: 2rem;
}
@media (max-width: 767px) {
  .sec02 .sec02-block01__items {
    flex-direction: column;
    row-gap: 4rem;
  }
}
.sec02 .sec02-block01 .sec02-block01-item {
  width: 81.5rem;
}
@media (max-width: 767px) {
  .sec02 .sec02-block01 .sec02-block01-item {
    width: 100%;
  }
}
.sec02 .sec02-block01 .sec02-block01-item:nth-of-type(2) {
  width: 36rem;
}
@media (max-width: 767px) {
  .sec02 .sec02-block01 .sec02-block01-item:nth-of-type(2) {
    width: 100%;
    display: flex;
    align-items: center;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
  }
}
@media (max-width: 767px) {
  .sec02 .sec02-block01 .sec02-block01-item:nth-of-type(2) .sec02-block01-item__image {
    width: 45rem;
  }
}
@media (max-width: 767px) {
  .sec02 .sec02-block01 .sec02-block01-item:nth-of-type(2) .sec02-block01-item__text {
    flex: 1;
  }
}
.sec02 .sec02-block01 .sec02-block01-item__image {
  width: 100%;
}
.sec02 .sec02-block01 .sec02-block01-item__image p {
  width: 31rem;
  position: absolute;
  bottom: 6rem;
  left: 4rem;
  font-size: 1.8rem;
  line-height: 1.3333333333;
}
@media (max-width: 767px) {
  .sec02 .sec02-block01 .sec02-block01-item__image p {
    bottom: 8rem;
    width: 35rem;
  }
}
.sec02 .sec02-block01 .sec02-block01-item__text {
  margin-top: 2rem;
}
.sec02 .sec02-block01 .sec02-block01-item__text p {
  font-size: 1.8rem;
  line-height: 1.3333333333;
}
.sec02 .sec02-block02 {
  margin-bottom: 10.5rem;
}
.sec02 .sec02-block02__contents {
  padding-top: 2rem;
}
.sec02 .sec02-block02__text {
  margin-bottom: 6rem;
}
@media (max-width: 767px) {
  .sec02 .sec02-block02__text {
    margin-bottom: 3.5rem;
  }
}
.sec02 .sec02-block02__items {
  display: grid;
  grid-template-columns: repeat(2, 53.5rem);
  justify-content: center;
  -moz-column-gap: 2.4rem;
       column-gap: 2.4rem;
  row-gap: 7.7rem;
}
@media (max-width: 767px) {
  .sec02 .sec02-block02__items {
    grid-template-columns: repeat(1, 1fr);
    row-gap: 9.6rem;
    justify-content: initial;
  }
}
.sec02 .sec02-block02 .sec02-block02-item {
  width: 100%;
}
.sec02 .sec02-block02 .sec02-block02-item__title {
  width: 44rem;
  height: 5rem;
  border: 0.1rem solid #333;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 0 auto 3.4rem;
}
.sec02 .sec02-block02 .sec02-block02-item__title h4 {
  font-size: 2rem;
  line-height: 1.2;
}
.sec02 .sec02-block02 .sec02-block02-item__image {
  margin-bottom: 1rem;
}
@media (max-width: 767px) {
  .sec02 .sec02-block02 .sec02-block02-item__image {
    width: 53.5rem;
    margin: 0 auto;
  }
}
.sec02 .sec02-block02 .sec02-block02-item__caption p {
  font-size: 1.8rem;
  line-height: 1.3333333333;
}
.sec02 .sec02-block02 .sec02-block02-item:first-of-type {
  grid-column: span 2;
}
@media (max-width: 767px) {
  .sec02 .sec02-block02 .sec02-block02-item:first-of-type {
    grid-column: initial;
  }
}
.sec02 .sec02-block02 .sec02-block02-item:first-of-type .sec02-block02-item__title {
  width: 55.5rem;
}
.sec02 .sec02-block02 .sec02-block02-item:first-of-type .sec02-block02-item__images {
  display: flex;
  justify-content: center;
  -moz-column-gap: 7rem;
       column-gap: 7rem;
  position: relative;
}
@media (max-width: 767px) {
  .sec02 .sec02-block02 .sec02-block02-item:first-of-type .sec02-block02-item__images {
    -moz-column-gap: 4.8rem;
         column-gap: 4.8rem;
  }
}
.sec02 .sec02-block02 .sec02-block02-item:first-of-type .sec02-block02-item__images::before {
  content: "";
  width: 3.3rem;
  height: 11.6rem;
  background: #ffcfae;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media (max-width: 767px) {
  .sec02 .sec02-block02 .sec02-block02-item:first-of-type .sec02-block02-item__images::before {
    width: 3rem;
    height: 10rem;
  }
}
.sec02 .sec02-block02 .sec02-block02-item:first-of-type .sec02-block02-item__image {
  width: 44.6rem;
}
@media (max-width: 767px) {
  .sec02 .sec02-block02 .sec02-block02-item:first-of-type .sec02-block02-item__image {
    width: 33.4rem;
  }
}
.sec02 .sec02-block02 .sec02-block02-item:first-of-type .sec02-block02-item__image p {
  width: 100%;
  height: 5rem;
  background: #3c3c3c;
  font-size: 2rem;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}
.sec02 .sec02-block02 .sec02-block02-item:first-of-type .sec02-block02-item__image p.bg-orange {
  background: #ff8a00;
}
.sec02 .sec02-block03 ul {
  margin-top: 6.5rem;
  margin-bottom: 7rem;
}
.sec02 .sec02-block03 ul li {
  display: flex;
  align-items: center;
  -moz-column-gap: 2.4rem;
       column-gap: 2.4rem;
}
.sec02 .sec02-block03 ul li:not(:first-of-type) {
  margin-top: 4rem;
}
.sec02 .sec02-block03 ul li .secret-icon {
  filter: drop-shadow(0.5rem 0.5rem 0.3rem #aaa);
}
.sec02 .sec02-block03 ul li .secret-icon p {
  width: 11rem;
  height: 5.2rem;
  background: #e24a23;
  background: linear-gradient(0deg, #e24a23, #e79746);
  font-size: 2.35rem;
  letter-spacing: 0.1em;
  color: #fff;
  display: flex;
  padding-left: 1.2rem;
  align-items: center;
  -webkit-clip-path: polygon(0 0, 100% 0, calc(100% - 1.5rem) 50%, 100% 100%, 0 100%);
          clip-path: polygon(0 0, 100% 0, calc(100% - 1.5rem) 50%, 100% 100%, 0 100%);
}
.sec02 .sec02-block03 ul li .list-text {
  flex: 1;
}
.sec02 .sec02-block03 ul li .list-text p {
  font-size: 3.46rem;
  color: #ff8a00;
}
.sec02 .sec02-block03 ul li .list-text p span {
  background: linear-gradient(0deg, #fffcb7 30%, transparent 30%, transparent 100%);
}
.sec02 .sec02-block03 .sec02-block03-item {
  display: flex;
  -moz-column-gap: 3.6rem;
       column-gap: 3.6rem;
}
@media (max-width: 767px) {
  .sec02 .sec02-block03 .sec02-block03-item {
    flex-direction: column;
    row-gap: 3rem;
  }
}
.sec02 .sec02-block03 .sec02-block03-item__image {
  width: 68rem;
}
@media (max-width: 767px) {
  .sec02 .sec02-block03 .sec02-block03-item__image {
    width: 100%;
  }
}
.sec02 .sec02-block03 .sec02-block03-item__image p {
  margin-bottom: 0.5rem;
}
.sec02 .sec02-block03 .sec02-block03-item__content {
  flex: 1;
  padding-top: 4rem;
  padding-left: 3rem;
}
@media (max-width: 767px) {
  .sec02 .sec02-block03 .sec02-block03-item__content {
    padding: 0;
  }
}
.sec02 .sec02-block03 .sec02-block03-item__text {
  margin-bottom: 1rem;
}
.sec02 .sec02-block03 .sec02-block03-item__text p {
  font-size: 3rem;
  line-height: 1.6;
}
.sec02 .sec02-block03 .sec02-block03-item__anno p {
  font-size: 1.8rem;
}

.sec03 {
  margin-bottom: 15rem;
}
@media (max-width: 767px) {
  .sec03 {
    margin-bottom: 10rem;
  }
}
.sec03__title {
  text-align: center;
  margin-bottom: 9rem;
}
@media (max-width: 767px) {
  .sec03__title {
    margin-bottom: 7rem;
  }
}
.sec03__title h2 {
  font-size: 4.8rem;
  color: #0e670a;
  border-bottom: 0.7rem solid #0e670a;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .sec03__title h2 {
    font-size: 3.6rem;
  }
}
.sec03 .sec03-block:first-of-type {
  margin-bottom: 6rem;
}
.sec03 .sec03-block__title {
  margin-bottom: 5.5rem;
}
.sec03 .sec03-block__title h3 {
  font-size: 2.8rem;
  color: #0e670a;
  border-bottom: 0.1rem solid #0e670a;
}
.sec03 .sec03-block01 .sec03-block01-item {
  display: flex;
  justify-content: center;
  -moz-column-gap: 8.5rem;
       column-gap: 8.5rem;
  margin-bottom: 4rem;
  position: relative;
}
@media (max-width: 767px) {
  .sec03 .sec03-block01 .sec03-block01-item {
    flex-direction: column;
    row-gap: 7.4rem;
  }
}
.sec03 .sec03-block01 .sec03-block01-item::before {
  content: "";
  width: 3.3rem;
  height: 11.6rem;
  background: #e25022;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
          clip-path: polygon(0 0, 100% 50%, 0 100%);
}
@media (max-width: 767px) {
  .sec03 .sec03-block01 .sec03-block01-item::before {
    width: 11rem;
    height: 3.4rem;
    -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
            clip-path: polygon(0 0, 100% 0, 50% 100%);
  }
}
.sec03 .sec03-block01 .sec03-block01-item__image {
  width: 51.6rem;
  height: 32.8rem;
}
@media (max-width: 767px) {
  .sec03 .sec03-block01 .sec03-block01-item__image {
    margin: 0 auto;
  }
}
.sec03 .sec03-block01 .sec03-block01-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec03 .sec03-block02__items {
  display: flex;
  justify-content: space-between;
  margin-bottom: 3rem;
}
@media (max-width: 767px) {
  .sec03 .sec03-block02__items {
    flex-wrap: wrap;
    justify-content: center;
    -moz-column-gap: 2rem;
         column-gap: 2rem;
    row-gap: 4rem;
  }
}
.sec03 .sec03-block02 .sec03-block02-item {
  width: 29rem;
}
.sec03 .sec03-block02 .sec03-block02-item__image {
  width: 100%;
  height: 43.8rem;
}
.sec03 .sec03-block02 .sec03-block02-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.sec03 .sec03-block02 .sec03-block02-item__capture {
  text-align: center;
}
.sec03 .sec03-block02 .sec03-block02-item__capture p {
  font-size: 1.8rem;
}

.sec04 {
  margin-bottom: 19rem;
}
@media (max-width: 767px) {
  .sec04 {
    margin-bottom: 9.4rem;
  }
}
.sec04__title {
  text-align: center;
  margin-bottom: 9rem;
}
@media (max-width: 767px) {
  .sec04__title {
    margin-bottom: 7rem;
  }
}
.sec04__title h2 {
  font-size: 4.8rem;
  color: #0e670a;
  border-bottom: 0.7rem solid #0e670a;
  padding-bottom: 0.5rem;
}
@media (max-width: 767px) {
  .sec04__title h2 {
    font-size: 3.6rem;
  }
}
.sec04 .sec04-block:first-of-type {
  margin-bottom: 6rem;
}
.sec04 .sec04-block__title {
  margin-bottom: 5.5rem;
}
.sec04 .sec04-block__title h3 {
  font-size: 2.8rem;
  color: #0e670a;
  border-bottom: 0.1rem solid #0e670a;
}
.sec04 .sec04-block__items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  row-gap: 7rem;
}
@media (max-width: 767px) {
  .sec04 .sec04-block__items {
    justify-content: center;
  }
}
.sec04 .sec04-block .sec04-block-item {
  width: 58rem;
}
.sec04 .sec04-block .sec04-block-item__title {
  margin-bottom: 0.5rem;
}
.sec04 .sec04-block .sec04-block-item__title h4 {
  font-size: 3rem;
}
.sec04 .sec04-block .sec04-block-item__title h4 span {
  font-size: 1.8rem;
  display: inline-block;
}
.sec04 .sec04-block .sec04-block-item__image {
  width: 100%;
  height: 57rem;
  margin-bottom: 1rem;
}
.sec04 .sec04-block .sec04-block-item__image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}/*# sourceMappingURL=style.css.map */