@charset "UTF-8";
:root {
  --pen: "vdl-penletter", sans-serif;
  --serif: "Noto Serif JP", serif;
  --sans: "Noto Sans JP", sans-serif;
  --text-black: #3d2301;
  --title-brown01: #643900;
  --navy01: #262d6e;
  --green01: #04c755;
  --green02: #5da271;
  --white01: #f2f0ed;
  --shadow01: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 1px 3px 1px rgba(0, 0, 0, 0.15);
  --shadow-lebel2: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
  --radius: 8px;
}

* {
  margin: 0;
  padding: 0;
}

*,
::before,
::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  -ms-scroll-chaining: none;
  overscroll-behavior: none;
}

body {
  font-family: var(--sans);
  font-size: clamp(10px, 0.8333333333vw, 16px);
  line-height: 1.4;
  font-weight: 400;
  color: var(--text-black);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: auto;
}
@media screen and (max-width: 768px) {
  body {
    font-size: clamp(10px, 2.6666666667vw, 16px);
  }
}

@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.fade {
  opacity: 0;
  animation-name: fade;
  animation-duration: 1.8s;
  animation-timing-function: ease;
  animation-delay: 0.2s;
  animation-fill-mode: forwards;
}

main {
  overflow: hidden;
  background: var(--white01);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}

a {
  color: var(--text-black);
  text-decoration: none;
  transition: all 0.3s ease-in-out;
  opacity: 1;
}

a:hover {
  opacity: 0.7;
}

ul,
li {
  list-style: none;
}

table {
  border-collapse: collapse;
}

table thead th,
table thead td {
  background-color: #f2f2f2;
}

table th,
table td {
  border-collapse: collapse;
}

table th {
  text-align: left;
}

img {
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}

button {
  background-color: transparent;
  border: none;
  cursor: pointer;
  outline: none;
  padding: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.is-pc {
  display: block;
}

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

@media screen and (max-width: 768px) {
  .is-sp {
    display: block;
  }
}
a[href^=tel] {
  text-decoration: none;
  color: inherit;
}

.en {
  font-family: var(--en);
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 71.7423133236%;
}
@media screen and (max-width: 768px) {
  .inner {
    width: 85.8139534884%;
  }
}

.bold {
  font-weight: 700;
}

.flex {
  display: flex;
}

.en {
  font-family: var(--en);
}

@-webkit-keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.6);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
}
@keyframes pulse {
  0% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0.6);
  }
  70% {
    transform: scale(1.05);
    box-shadow: 0 0 20px rgba(255, 255, 255, 0.6);
  }
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 rgba(255, 255, 255, 0);
  }
}
section {
  padding: 96px 0;
}
@media screen and (max-width: 768px) {
  section {
    padding: 40px 0;
  }
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  width: 87.8477306003%;
}

.header {
  background: var(--white01);
  width: 100%;
  height: 108px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .header {
    height: 56px;
  }
}
.header .header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 95%;
  margin: 0 auto;
}
.header h1 {
  width: 107px;
}
@media screen and (max-width: 768px) {
  .header h1 {
    width: 74px;
  }
}
.header .header-link-list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  -moz-column-gap: 8px;
  column-gap: 8px;
}
.header .header-link-list a {
  color: white;
  font-weight: 700;
  font-size: clamp(14px, 1.0416666667vw, 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: var(--radius);
  box-shadow: 0px 1px 2px rgba(0, 0, 0, 0.3), 0px 2px 6px 2px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 768px) {
  .header .header-link-list a {
    padding: 8px 16px;
    height: 40px;
    width: 53px;
  }
}
.header .header-link-list a::before {
  content: "";
  margin-right: 0.3em;
  width: 1em;
  height: 1em;
  display: block;
}
@media screen and (max-width: 768px) {
  .header .header-link-list a::before {
    margin-right: 0;
    width: 24px;
    height: 24px;
  }
}
.header .btn-tel {
  background: var(--text-black);
}
.header .btn-tel::before {
  background: url(../../assets/images/icon-tel.svg) no-repeat center/contain;
}
.header .btn-line {
  background-color: var(--green01);
}
.header .btn-line::before {
  background: url(../../assets/images/icon-line.svg) no-repeat center/contain;
}
.header .btn-contact {
  background: var(--navy01);
}
.header .btn-contact::before {
  background: url(../../assets/images/icon-mail.svg) no-repeat center/contain;
}

.mv {
  position: relative;
  width: 100%;
}
.mv .mv-content-box {
  position: absolute;
  width: 100%;
  top: 50%;
  left: 0;
  right: 0;
  transform: translateY(-50%);
}
.mv .mv-content-box .catch {
  display: flex;
  justify-content: center;
  align-items: center;
  height: clamp(53px, 8.3333333333vw, 160px);
  margin-bottom: 2.5vw;
  background: linear-gradient(90deg, rgba(61, 35, 1, 0) 0%, rgba(61, 35, 1, 0.7) 49.94%, rgba(61, 35, 1, 0) 100%);
}
.mv .mv-content-box .catch .pen {
  color: white;
  font-family: var(--pen);
  font-weight: 500;
  font-size: clamp(20px, 3.3333333333vw, 64px);
}
.mv .mv-content-box .catch img {
  display: inline-block;
  width: clamp(79px, 13.75vw, 264px);
}
.mv .mv-content-box .lead .text {
  font-weight: 700;
  font-size: clamp(10px, 1.25vw, 24px);
  line-height: 150%;
  text-shadow: 4px 4px 10px #3d2301;
}
.mv .mv-line-btn {
  position: absolute;
  left: 50%;
  bottom: 7.03125vw;
  transform: translateX(-50%);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  -webkit-animation: floatUpDown 2.5s ease-in-out infinite;
  animation: floatUpDown 2.5s ease-in-out infinite;
}
@media screen and (max-width: 768px) {
  .mv .mv-line-btn {
    display: none;
  }
}
.mv .mv-line-btn:hover {
  transform: translateX(-50%) 1.05;
  box-shadow: 0px 12px 20px rgba(0, 0, 0, 0.3);
}

@-webkit-keyframes floatUpDown {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}
@keyframes floatUpDown {
  0%, 100% {
    transform: translateX(-50%) translateY(0);
  }
  50% {
    transform: translateX(-50%) translateY(-8px);
  }
}
.btn-line {
  background-color: var(--green01);
  color: white;
  font-weight: 700;
  font-size: 2rem;
  justify-content: center;
  align-items: center;
  display: flex;
  padding: 12px 24px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  border-radius: var(--radius);
}
.btn-line::before {
  content: "";
  background: url(../../assets/images/icon-line.svg) no-repeat center/contain;
  width: 24px;
  height: 28px;
  display: inline-block;
}

.logo-intext {
  position: relative;
  width: 4em;
  display: inline-block;
}
.logo-intext img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -71%);
  display: inline-block;
  width: 4em;
  height: 2em;
  -o-object-position: center;
  object-position: center;
  -o-object-fit: contain;
  object-fit: contain;
}

.color-white {
  color: white;
}

.color-yellow {
  color: var(--yellow01);
}

.black {
  font-weight: 900;
}

.ta-c {
  text-align: center;
}

.desc .text:not(:last-child) {
  margin-bottom: 1em;
}

.fadein {
  opacity: 0;
}

.inner-wide {
  max-width: 1600px;
  width: 83.3333333333%;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .inner-wide {
    width: 91.4666666667%;
  }
}

.serif {
  font-family: var(--serif);
}

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

h2 {
  margin-bottom: 48px;
  font-size: clamp(18px, 1.875vw, 36px);
  line-height: 1.6;
  color: var(--title-brown01);
}
@media screen and (max-width: 768px) {
  h2 {
    margin-bottom: 16px;
  }
}

.sans {
  font-family: var(--sans);
}

.desc p:not(:last-of-type) {
  margin-bottom: 16px;
}

.inner {
  max-width: 1360px;
  margin: 0 auto;
  width: 91.4666666667%;
}

.intro h2 {
  font-size: clamp(18px, 1.6666666667vw, 32px);
}
.intro .inner-wide {
  -moz-column-gap: 1%;
  column-gap: 1%;
}
@media screen and (max-width: 768px) {
  .intro .inner-wide {
    flex-direction: column-reverse;
  }
}
.intro .text-wrapper {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .intro .text-wrapper {
    margin-bottom: 16px;
  }
}
.intro .img-wrapper {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 784/356;
  width: 49%;
}
@media screen and (max-width: 768px) {
  .intro .img-wrapper {
    width: 100%;
  }
}
.intro .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.worry {
  position: relative;
  background: url(../../assets/images/worry-bg.png) no-repeat center/cover;
  padding-bottom: 0;
}
@media screen and (max-width: 768px) {
  .worry {
    padding-bottom: 40px;
  }
}
.worry .border {
  position: absolute;
  background-color: var(--text-black);
  height: 3px;
  width: 46.1979166667%;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .worry .border {
    display: none;
  }
}
.worry .border.left {
  left: 0;
}
.worry .border.right {
  right: 0;
}
.worry .border.right::after {
  content: "";
  width: 5.3645833333vw;
  height: 3px;
  background: var(--text-black);
  right: 100%;
  transform: rotate(-45deg);
  position: absolute;
  top: 0;
  transform-origin: right top;
}
.worry .worry-list {
  display: flex;
  justify-content: space-between;
  margin-bottom: 56px;
}
@media screen and (max-width: 768px) {
  .worry .worry-list {
    flex-direction: column;
    margin-bottom: 32px;
  }
}
.worry .worry-list li {
  width: 30.5882352941%;
}
@media screen and (max-width: 768px) {
  .worry .worry-list li {
    width: 100%;
    margin-bottom: 32px;
  }
  .worry .worry-list li:last-of-type {
    margin-bottom: 0;
  }
}
.worry .worry-list li .img-wrapper {
  width: 100%;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .worry .worry-list li .img-wrapper {
    width: 68%;
    margin: 0 auto 16px;
  }
}
.worry .worry-list li .text-wrapper h4 {
  color: var(--title-brown01);
  line-height: 1.5;
  font-size: clamp(16px, 1.25vw, 24px);
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .worry .worry-list li .text-wrapper h4 {
    margin-bottom: 8px;
  }
}
.worry .worry-middle {
  max-width: 1005px;
  margin: 0 auto;
  width: 100%;
  margin-bottom: 56px;
  font-size: clamp(10px, 1.0416666667vw, 20px);
}
@media screen and (max-width: 768px) {
  .worry .worry-middle {
    margin-bottom: 16px;
  }
}
.worry .worry-middle .message-list {
  font-weight: 500;
  font-size: clamp(10px, 1.0416666667vw, 20px);
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .worry .worry-middle .message-list {
    font-weight: 500;
  }
}
.worry .worry-middle .message-list li {
  display: flex;
  align-items: center;
}
.worry .worry-middle .message-list li:not(:last-of-type) {
  margin-bottom: 8px;
}
.worry .worry-middle .message-list li::before {
  content: "";
  background: url(../../assets/images/icon-attention.svg) no-repeat center/contain;
  width: 24px;
  height: 24px;
  display: inline-block;
  margin-right: 0.1em;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .worry .worry-middle .message-list li::before {
    width: 20px;
    height: 18px;
  }
}
.worry .worry-bottom {
  max-width: 1005px;
  margin: 0 auto;
  width: 100%;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .worry .worry-bottom {
    flex-direction: column;
  }
}
.worry .worry-bottom .img-wrapper {
  width: 44.5771144279%;
}
@media screen and (max-width: 768px) {
  .worry .worry-bottom .img-wrapper {
    width: 26.2390670554%;
    margin: 0 auto 16px;
  }
}
.worry .worry-bottom .text-wrapper {
  width: 73%;
}
@media screen and (max-width: 768px) {
  .worry .worry-bottom .text-wrapper {
    width: 100%;
  }
}
.worry .worry-bottom .text-wrapper .text {
  font-size: clamp(10px, 1.0416666667vw, 20px);
}
.worry .worry-bottom .text-wrapper ul {
  margin: 32px 0;
}
.worry .worry-bottom .text-wrapper ul li {
  display: flex;
  align-items: center;
  font-size: clamp(10px, 1.0416666667vw, 20px);
  font-weight: 500;
}
.worry .worry-bottom .text-wrapper ul li:not(:last-of-type) {
  margin-bottom: 8px;
}
.worry .worry-bottom .text-wrapper ul li::before {
  content: "";
  background: url(../../assets/images/icon-fukidashi.png) no-repeat center/contain;
  width: 1em;
  height: 1em;
}

.cta {
  background: url(../../assets/images/cta-bg-pc.jpg) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .cta {
    background: url(../../assets/images/cta-bg-sp.png) no-repeat center/cover;
  }
}
.cta hgroup p {
  font-size: clamp(10px, 1.25vw, 24px);
  margin-bottom: 16px;
}
.cta hgroup h2 {
  font-size: clamp(16px, 1.875vw, 36px);
}
.cta .lead {
  font-size: clamp(10px, 1.25vw, 24px);
}
.cta .point-list {
  margin-top: 48px;
  margin-bottom: 48px;
  font-size: clamp(10px, 1.25vw, 24px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .cta .point-list {
    margin-bottom: 28px;
    margin-top: 16px;
  }
}
.cta .point-list li {
  margin-bottom: 8px;
}
.cta .point-list li::before {
  content: "◎";
  margin-right: 0.2em;
  font-weight: 700;
}
.cta .bottom-text {
  font-size: clamp(10px, 1.25vw, 24px);
  margin-bottom: 80px;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .cta .bottom-text {
    margin-bottom: 32px;
  }
}
.cta .bottom-text::after {
  content: "";
  background: url(../../assets/images/icon-ok.svg) no-repeat center/contain;
  width: 1.1em;
  height: 1.1em;
  margin-left: 0.3em;
  display: inline;
}
.cta-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: 32px;
  column-gap: 32px;
  align-items: stretch;
}
.cta-list li a {
  color: white;
  font-weight: 700;
  font-size: 2rem;
  justify-content: center;
  align-items: center;
  display: flex;
  padding: 14px 24px;
  -moz-column-gap: 8px;
  column-gap: 8px;
  border-radius: var(--radius);
  height: 100%;
}
@media screen and (max-width: 768px) {
  .cta-list li a {
    flex-direction: column;
    font-size: 1.2rem;
    padding: 9px 6px;
    text-align: center;
  }
}
.cta-list li a.btn-contact {
  background: var(--navy01);
}
.cta-list li a.btn-contact::before {
  content: "";
  width: 24px;
  height: 28px;
  display: inline-block;
  background: url(../../assets/images/icon-mail.svg) no-repeat center/contain;
}
.cta-list li a.btn-line {
  background-color: var(--green01);
}
.cta-list li a.btn-tel {
  background-color: var(--text-black);
}
.cta-list li a.btn-tel::before {
  content: "";
  background: url(../../assets/images/icon-tel.svg) no-repeat center/contain;
  width: 24px;
  height: 28px;
  display: inline-block;
}

.btn-contact {
  background: var(--navy01);
  padding: 12px 24px;
  color: white;
  border: 8px;
  display: flex;
  justify-content: center;
}

.difference h2 {
  font-size: clamp(16px, 1.875vw, 36px);
}
.difference .difference-container .head-ttl {
  width: 100%;
}
.difference .difference-container .head-ttl .box {
  width: 50%;
  height: 184px;
  border-radius: 8px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--text-black);
}
@media screen and (max-width: 768px) {
  .difference .difference-container .head-ttl .box {
    height: 103px;
  }
}
.difference .difference-container .head-ttl .box.other .img-wrapper {
  width: 82px;
}
@media screen and (max-width: 768px) {
  .difference .difference-container .head-ttl .box.other .img-wrapper {
    width: 46px;
  }
}
.difference .difference-container .head-ttl .box.reforma {
  background: rgba(93, 162, 113, 0.2);
}
.difference .difference-container .head-ttl .box.reforma h3 {
  width: 123px;
  margin-bottom: 0;
}
@media screen and (max-width: 768px) {
  .difference .difference-container .head-ttl .box.reforma h3 {
    width: 56px;
  }
}
.difference .difference-container .head-ttl .box.reforma .img-wrapper {
  width: 166px;
}
@media screen and (max-width: 768px) {
  .difference .difference-container .head-ttl .box.reforma .img-wrapper {
    width: 94px;
  }
}
.difference .difference-container .head-ttl .box h3 {
  font-size: clamp(16px, 1.25vw, 24px);
  font-weight: 500;
  text-align: center;
  margin-bottom: 8px;
}
.difference .difference-container .head-ttl .box h3 .small {
  display: block;
  font-size: 1.6rem;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .difference .difference-container .head-ttl .box h3 .small {
    font-size: 1.2rem;
  }
}
.difference .difference-container ul li {
  background: white;
  border-radius: 8px;
  border: 1px solid var(--text-black);
  margin-top: 16px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .difference .difference-container ul li {
    margin-top: 8px;
  }
}
.difference .difference-container ul li::after {
  content: "";
  background: var(--text-black);
  width: 10px;
  height: 20px;
  -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.difference .difference-container ul li .box {
  font-size: 2rem;
  font-weight: 400;
  text-align: center;
  padding: 20px;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .difference .difference-container ul li .box {
    font-size: 1rem;
    text-align: left;
    padding: 16px 8px;
    justify-content: flex-start;
  }
}
.difference .difference-container ul li .box.right {
  color: var(--green02);
  font-weight: 700;
}
.difference .difference-container ul li.half {
  width: 50%;
  margin-left: auto;
}
.difference .difference-container ul li.half::after {
  content: none;
}
.difference .difference-container ul li.half .box {
  width: 100%;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  color: var(--green02);
  font-weight: 700;
}
.difference .difference-container ul li.half .box span {
  font-size: 2rem;
  font-weight: 400;
  color: var(--text-black);
}
@media screen and (max-width: 768px) {
  .difference .difference-container ul li.half .box span {
    font-size: 1rem;
  }
}

.reason .reason-list .item {
  position: relative;
  background: white;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2), 0px 1px 2px rgba(0, 0, 0, 0.14);
  display: flex;
  padding: 24px 24px 24px 48px;
  border-radius: 8px;
  align-items: center;
  justify-content: flex-start;
}
@media screen and (max-width: 768px) {
  .reason .reason-list .item {
    flex-direction: column;
    padding: 16px;
  }
}
.reason .reason-list .item:not(:last-child) {
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .reason .reason-list .item:not(:last-child) {
    margin-bottom: 16px;
  }
}
.reason .reason-list .item .img-wrapper {
  width: 220px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .reason .reason-list .item .img-wrapper {
    width: 91px;
  }
}
.reason .reason-list .item .text-wrapper h3 {
  font-size: clamp(16px, 1.25vw, 24px);
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .reason .reason-list .item .text-wrapper h3 {
    margin-bottom: 8px;
  }
}
.reason .reason-list .item .text-wrapper .text {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .reason .reason-list .item .text-wrapper .text {
    font-size: 1rem;
  }
}
.reason .reason-list .item .number {
  position: absolute;
  left: 0;
  top: 0;
  width: 90px;
}

.menu {
  background: url(../../assets/images/menu-bg-pc.jpg) no-repeat center/cover;
}
.menu .menu-list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  row-gap: 40px;
}
@media screen and (max-width: 768px) {
  .menu .menu-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.menu .menu-list .img-wrapper {
  margin: 0 auto 32px;
  max-width: 180px;
  max-height: 180px;
  aspect-ratio: 1/1;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .menu .menu-list .img-wrapper {
    width: 104px;
    height: 104px;
    margin-bottom: 8px;
  }
}
.menu .menu-list .img-wrapper img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}
.menu .menu-list .item h3 {
  font-size: clamp(14px, 1.4583333333vw, 28px);
  text-align: center;
}

.works .nav-flex {
  margin-bottom: 24px;
}
@media screen and (max-width: 768px) {
  .works .nav-flex {
    display: none;
  }
}
.works .nav-flex li {
  width: 50%;
  text-align: center;
  margin: 0 auto;
}
.works .nav-flex li p {
  width: 256px;
  height: 64px;
  background-color: white;
  border-radius: 35px;
  display: grid;
  place-content: center;
  margin: 0 auto;
  font-size: 2.8rem;
  font-weight: 700;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2), 0px 1px 2px rgba(0, 0, 0, 0.14);
}
.works .works-list {
  margin-bottom: 128px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .works .works-list {
    margin-bottom: 40px;
  }
}
.works .works-list .item {
  flex-wrap: wrap;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2), 0px 1px 2px rgba(0, 0, 0, 0.14);
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .works .works-list .item {
    margin-bottom: 16px;
  }
}
.works .works-list .item:not(:last-child) .img-wrapper:nth-child(2)::after {
  content: "リアル・スタイル案件";
  font-size: 1rem;
  font-weight: 500;
  position: absolute;
  bottom: 0.5em;
  right: 0.5em;
  color: white;
}
.works .works-list .img-wrapper {
  width: 50%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .works .works-list .img-wrapper {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .works .works-list .img-wrapper:nth-child(1)::before {
    content: "Before";
    font-size: 1.6rem;
    font-weight: 700;
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: white;
    border-radius: 30px;
  }
}
@media screen and (max-width: 768px) {
  .works .works-list .img-wrapper:nth-child(2)::before {
    content: "After";
    font-size: 1.6rem;
    font-weight: 700;
    padding: 10px;
    position: absolute;
    top: 0;
    left: 0;
    background-color: white;
    border-radius: 30px;
  }
}
.works .works-list .text-wrapper {
  width: 100%;
  padding: 24px;
  background-color: white;
}
@media screen and (max-width: 768px) {
  .works .works-list .text-wrapper {
    padding: 16px;
  }
}
.works .works-list .text-wrapper .text {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
}
@media screen and (max-width: 768px) {
  .works .works-list .text-wrapper .text {
    font-size: 1rem;
    line-height: 1.3;
  }
}

.benefit {
  background: url(../../assets/images/benefit-bg-pc.png) no-repeat center/cover;
}
.benefit .img-wrapper.ribbon {
  margin: 0 auto;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .benefit .img-wrapper.ribbon {
    margin-bottom: 16px;
  }
}
.benefit .grad-text {
  background: linear-gradient(to top, #f2d163 0%, #a96a1b 44%, #f2d163 70%, #a96a1b 92%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  text-fill-color: transparent;
  line-height: 1.2083333333;
  font-weight: 900;
  font-size: 48px;
  /* M3/Elevation Light/1 */
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 768px) {
  .benefit .grad-text {
    font-size: 1.6rem;
  }
}
.benefit .benefit-list {
  background-color: white;
  border-radius: 16px;
  overflow: hidden;
  padding: 32px;
  margin-bottom: 32px;
}
@media screen and (max-width: 768px) {
  .benefit .benefit-list {
    padding: 16px;
    margin-bottom: 16px;
  }
}
.benefit .benefit-list .item {
  display: flex;
}
.benefit .benefit-list .item .number-wrapper {
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .benefit .benefit-list .item {
    flex-direction: column;
  }
}
.benefit .benefit-list .item:nth-child(1) {
  padding-bottom: 32px;
  border-bottom: 1px solid var(--text-black);
}
@media screen and (max-width: 768px) {
  .benefit .benefit-list .item:nth-child(1) {
    padding-bottom: 16px;
  }
}
.benefit .benefit-list .item:nth-child(1) .text-wrapper .img-wrapper {
  max-width: 235px;
  width: 100%;
}
.benefit .benefit-list .item:nth-child(2) {
  padding-top: 32px;
}
@media screen and (max-width: 768px) {
  .benefit .benefit-list .item:nth-child(2) {
    padding-top: 16px;
  }
}
.benefit .benefit-list .item:nth-child(2) .text-wrapper .img-wrapper {
  max-width: 197px;
  width: 100%;
}
.benefit .benefit-list .item .ttl-text {
  font-size: clamp(16px, 1.6666666667vw, 32px);
  font-weight: 700;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .benefit .benefit-list .item .ttl-text {
    margin-bottom: 8px;
  }
}
.benefit .benefit-list .item .ttl-text .big {
  font-size: 150%;
}
.benefit .benefit-list .item .ttl-text .small {
  font-size: 75%;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .benefit .benefit-list .item .ttl-text .small {
    font-size: 1.4rem;
  }
}
.benefit .benefit-list .item .text {
  font-size: 2rem;
}
@media screen and (max-width: 768px) {
  .benefit .benefit-list .item .text {
    font-size: 1rem;
  }
}
.benefit .benefit-list .item .ttl {
  font-size: 2rem;
  font-weight: 400;
}
.benefit .benefit-list .item .img-wrapper.num {
  width: 155px;
  margin-right: 16px;
}
@media screen and (max-width: 768px) {
  .benefit .benefit-list .item .img-wrapper.num {
    width: 60px;
  }
}
.benefit .benefit-list .item .img-wrapper.benefit-goods {
  width: 80px;
}
.benefit .benefit-list .item .text-wrapper {
  justify-content: space-between;
  width: 100%;
}
.benefit .list-bottom-text {
  margin-bottom: 48px;
  font-weight: 500;
  font-size: clamp(10px, 1.25vw, 24px);
}
@media screen and (max-width: 768px) {
  .benefit .list-bottom-text {
    margin-bottom: 32px;
  }
}

.road {
  padding-bottom: 0;
}
.road .lead {
  font-size: clamp(14px, 1.25vw, 24px);
  font-weight: 500;
  margin-bottom: 48px;
}
@media screen and (max-width: 768px) {
  .road .lead {
    margin-bottom: 16px;
  }
}
.road .section-middle {
  background: url(../../assets/images/road-middle.png) no-repeat center/cover;
  position: relative;
}
.road .section-middle::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .road .section-middle {
    background: url(../../assets/images/road-bg-sp.jpg) no-repeat center/cover;
  }
  .road .section-middle::after {
    content: "";
    background: rgba(0, 0, 0, 0.4);
    position: absolute;
    top: 0;
    height: 50%;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .road .section-middle .inner.flex {
    flex-direction: column;
  }
}
.road .section-middle .box {
  width: 50%;
  padding: 96px 0 96px 5vw;
}
@media screen and (max-width: 768px) {
  .road .section-middle .box {
    width: 100%;
    padding: 40px 0 8px;
  }
}
.road .section-middle .box h3 {
  font-size: clamp(14px, 1.25vw, 24px);
  font-weight: 700;
  margin-bottom: 24px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .road .section-middle .box h3 {
    text-align: center;
    margin-bottom: 16px;
  }
}
.road .section-middle .box ul {
  font-size: 2rem;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 768px) {
  .road .section-middle .box ul {
    font-size: 1rem;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.road .section-middle .box ul li {
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .road .section-middle .box ul li {
    margin-bottom: 8px;
  }
}
.road .section-middle .box .img-wrapper {
  height: 204px;
  width: auto;
  margin: 0 auto;
  text-align: center;
  position: relative;
  z-index: 2;
}
.road .section-middle .box .img-wrapper img {
  -o-object-fit: contain;
  object-fit: contain;
  width: 100%;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .road .section-middle .box .img-wrapper {
    height: 64px;
  }
}
.road .section-middle .left-box {
  color: white;
  position: relative;
  padding: 96px 5vw 96px 0;
}
@media screen and (max-width: 768px) {
  .road .section-middle .left-box {
    padding: 40px 0 8px;
  }
}
.road .section-middle .left-box ul li {
  display: flex;
}
.road .section-middle .left-box ul li::before {
  content: "";
  background: url(../../assets/images/icon-attention-white.png) no-repeat center/contain;
  width: 1em;
  height: 1em;
  display: block;
  margin-right: 0.3em;
  margin-top: 4px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .road .section-middle .left-box ul li::before {
    width: 12px;
    height: 12px;
  }
}
@media screen and (max-width: 768px) {
  .road .section-middle .right-box {
    position: relative;
  }
  .road .section-middle .right-box::after {
    content: "";
    background-color: rgba(255, 255, 255, 0.8);
    width: calc(100% + (50vw - 50%) * 2);
    height: 100%;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    position: absolute;
  }
}
.road .section-middle .right-box ul li {
  display: flex;
}
.road .section-middle .right-box ul li::before {
  content: "";
  background: url(../../assets/images/icon-heart.png) no-repeat center/contain;
  width: 1em;
  height: 1em;
  display: block;
  margin-right: 0.3em;
  margin-top: 4px;
  flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  .road .section-middle .right-box ul li::before {
    width: 12px;
    height: 12px;
  }
}
.road .section-bottom {
  background: url(../../assets/images/road-bottom-bg-pc.png) no-repeat center/cover;
  position: relative;
  padding: 76px 0;
}
@media screen and (max-width: 768px) {
  .road .section-bottom {
    padding: 40px 0;
  }
}
.road .section-bottom::after {
  content: "";
  background: url(../../assets/images/road-bottom-gra.png) no-repeat center/cover;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateY(-50%);
  width: 100%;
  height: 10vw;
}
.road .section-bottom .text-wrapper {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto 96px;
}
@media screen and (max-width: 768px) {
  .road .section-bottom .text-wrapper {
    margin-bottom: 56px;
  }
}
.road .section-bottom .text-wrapper p {
  margin-bottom: 1em;
  font-size: 2rem;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  .road .section-bottom .text-wrapper p {
    font-size: 1rem;
  }
}

.page-security .cta {
  background: url(../../assets/images/cta-bg-sec.jpg) no-repeat center/cover;
}
.page-security .cta .bottom-text::after {
  content: none;
}
.page-security .menu {
  background: url(../../assets/images/menu-bg-sec.png) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .page-security .menu {
    background-position: left center;
  }
}
.page-security .road .section-bottom {
  background: url(../../assets/images/road-sec-bottom-sec.png) no-repeat center/cover;
}
.page-security .about {
  background: url(../../assets/images/about-bg.png) no-repeat center/cover;
}
.page-security .about h2 {
  color: white;
  margin-bottom: 16px;
}
@media screen and (max-width: 768px) {
  .page-security .about h2 {
    margin-bottom: 8px;
  }
}
.page-security .about .lead {
  color: white;
  margin-bottom: 48px;
  font-size: clamp(14px, 1.25vw, 24px);
}
@media screen and (max-width: 768px) {
  .page-security .about .lead {
    margin-bottom: 24px;
  }
}
.page-security .about .about-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
@media screen and (max-width: 768px) {
  .page-security .about .about-list {
    grid-template-columns: 1fr;
    gap: 16px;
    width: fit-content;
    margin: auto;
  }
}
.page-security .about .about-list li {
  padding: 4.4791666667vw;
  background: #f8ecdc;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  row-gap: 16px;
  align-items: center;
  aspect-ratio: 1/1;
  max-width: 520px;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  .page-security .about .about-list li {
    padding: 64px;
    row-gap: 8px;
    max-width: 380px;
  }
}
.page-security .about .about-list li .img-wrapper {
  height: 80px;
  text-align: center;
}
.page-security .about .about-list li .img-wrapper img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
@media screen and (max-width: 768px) {
  .page-security .about .about-list li .img-wrapper {
    height: 60px;
  }
}
.page-security .about .about-list li h3 {
  font-size: clamp(14px, 1.0416666667vw, 20px);
  font-weight: 700;
}
.page-security .about .about-list li .desc {
  font-size: clamp(10px, 0.8333333333vw, 16px);
  text-align: justify;
}
.page-security .about .text-wrapper {
  color: white;
  margin: 48px 0 64px;
  font-size: clamp(14px, 1.25vw, 24px);
}
.page-security .about .text-wrapper .text:first-child {
  margin-bottom: 1em;
}
.page-security .about .text-wrapper .text:nth-child(2) {
  font-size: clamp(16px, 1.25vw, 24px);
}
.page-security .catch-ja {
  font-size: clamp(13px, 3.3333333333vw, 40px);
  color: white;
  font-weight: 600;
}
.page-security .mv .mv-content-box .catch {
  height: clamp(53px, 12.5vw, 240px);
}
.page-security .mv .mv-content-box .catch .pen {
  font-size: clamp(16px, 3.3333333333vw, 64px);
}
.page-security .menu .menu-list {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  row-gap: 40px;
}
@media screen and (max-width: 768px) {
  .page-security .menu .menu-list {
    grid-template-columns: repeat(3, 1fr);
  }
}
.page-security .menu .menu-list .img-wrapper {
  margin: 0 auto 32px;
}
@media screen and (max-width: 768px) {
  .page-security .menu .menu-list .img-wrapper {
    margin-bottom: 8px;
  }
}
.page-security .worry {
  background: url(../../assets/images/worry-sec.png) no-repeat center/cover;
}
@media screen and (max-width: 768px) {
  .page-security .worry .worry-list li .img-wrapper {
    height: 133px;
  }
  .page-security .worry .worry-list li .img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
}
.page-security .difference .difference-container .head-ttl .box.other .img-wrapper {
  width: 51px;
}
@media screen and (max-width: 768px) {
  .page-security .difference .difference-container .head-ttl .box.other .img-wrapper {
    width: 36px;
  }
}
.page-security .difference .difference-container .head-ttl .box.reforma .img-wrapper {
  width: 90px;
}
@media screen and (max-width: 768px) {
  .page-security .difference .difference-container .head-ttl .box.reforma .img-wrapper {
    width: 50px;
  }
}
.page-security .about .inner-wide {
  width: 98%;
}

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