@charset "UTF-8";
/*==========================================

Global Setting
==========================================*/ 
:root {
  --color-base: #333;
  --color-grey: #555555;
  --color-grey-light: #f2f2f2;
  --color-red: #FF5CAD;
  --color-red-pale: #d6b5b5;
  --color-lemon: #fff785;
  --color-orange-light: #f5bb40;
  --color-orange: #e66e3f;
  --color-orange-saturate: #ff7534;
  --color-gradient: linear-gradient(130deg, var(--color-red) 30%, var(--color-orange-light) 70%);
  --font-noto-sans: "Noto Sans JP", sans-serif;
  --size-header: 8rem;
  --size-content: 110rem;
  --size-block: 10rem;
  --size-inline: 2.4rem;
  --deco-shadow: 0 0.3rem 0.6rem rgba(0 0 0 /16%);
}
html {
  font-size: 62.5%;
  scroll-behavior: smooth;
  scrollbar-gutter: stable;
}
body {
  padding-top: var(--size-header);
  -webkit-text-size-adjust: 100%;
  font-family: var(--font-noto-sans);
  color: var(--color-base);
  font-size: 2rem;
  line-height: 1.67;
  letter-spacing: 0.02em;
  overflow-x: hidden;
}
h1, h2, h3, h4, h5, h6, strong {
  font-weight: bold;
  line-height: 1.3;
}
[id] {
  scroll-margin-top: var(--size-header);
}
.center {
  text-align: center;
}
section {
  padding: 60px 5% 50px;
}
.viewport-wrapper {
  max-width: var(--size-content);
  margin: 0 auto;
}
section h2 {
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
}
section h2 em {
  color: var(--color-red);
}
@media (hover: hover) {
  button, a {
    transition: opacity 0.3s;
  }
  button:hover, a:hover {
    opacity: 0.7;
  }
}
@media (max-width: 1200px) {
  html {
    font-size: 0.833333333333333vw;
  }
}
@media (min-width: 769px) {
  .sp {
    display: none;
  }
}
@media (max-width: 768px) {
  :root {
    --size-block: 6rem;
    --size-inline: 1.6rem;
    --size-header: 6rem;
  }
  html {
    font-size: 2.631578947368421vw;
  }
  body {
    font-size: 1.4rem;
  }
  .pc {
    display: none;
  }
  section h2 {
    font-size: 3rem;
  }
}
/*==========================================

Components
==========================================*/
.c-btn-standard {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 34rem;
  height: 7.8rem;
  border-radius: 999rem;
  border: 2px solid #fff;
  background: var(--color-gradient);
  box-shadow: var(--deco-shadow);
  color: #fff;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1;
  position: relative;
}
.c-btn-standard:after {
  content: "\f054";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-family: "Font Awesome 7 Free";
  font-feature-settings: normal;
  font-style: normal;
  font-synthesis: none;
  font-variant: normal;
  font-weight: 900;
  text-align: center;
  text-rendering: auto;
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
/*==========================================

Header
==========================================*/
.site-header {
  width: 100%;
  height: var(--size-header);
  padding-inline: calc((50% - 120rem / 2) + var(--size-inline));
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 8;
  box-shadow: var(--deco-shadow);
}
.site-header > figure {
  flex: 0 0 25rem;
}
.site-header .menu {
  display: none;
}
.site-header .global-navi {
  flex: 1 1 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0 4rem;
  font-size: 1.6rem;
  font-weight: bold;
}
.site-header .global-navi ul {
  display: flex;
  align-items: center;
  gap: 0 6rem;
}
.site-header .global-navi .c-btn-standard {
  width: 19rem;
  height: 4.4rem;
  font-size: 1.5rem;
  font-weight: normal;
  box-shadow: none;
}
@media (max-width: 768px) {
  .site-header {
    height: 6rem;
    padding-inline: var(--size-inline);
  }
  .site-header > figure {
    flex: 0 0 22rem;
  }
  .site-header .menu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 4.8rem;
    aspect-ratio: 1;
    background: var(--color-gradient);
    opacity: 1 !important;
  }
  .site-header .menu span {
    width: 3rem;
    height: 3px;
    background: #fff;
    position: relative;
    transition: all 0.3s;
  }
  .site-header .menu span:before, .site-header .menu span:after {
    content: "";
    width: inherit;
    height: inherit;
    background: #fff;
    position: absolute;
    left: 50%;
    margin-left: -1.5rem;
    transform-origin: center center;
    transform: rotate(0deg);
    transition: all 0.3s;
  }
  .site-header .menu span:before {
    top: -1rem;
  }
  .site-header .menu span:after {
    bottom: -1rem;
  }
  .site-header .menu.is-activated span {
    background: transparent;
  }
  .site-header .menu.is-activated span:before {
    transform: rotate(45deg);
    top: 0;
  }
  .site-header .menu.is-activated span:after {
    transform: rotate(-45deg);
    bottom: 0;
  }
  .site-header .global-navi {
    background: #fff;
    width: 100%;
    height: calc(100svh - 6rem);
    position: fixed;
    right: -101%;
    top: 6rem;
    display: block;
    padding: 2.4rem;
    z-index: 8;
    font-size: 1.6rem;
    transition: right 0.2s;
  }
  .site-header .global-navi.is-activated {
    right: 0;
  }
  .site-header .global-navi ul {
    flex-direction: column;
    gap: 1.6rem;
  }
  .site-header .global-navi .c-btn-standard {
    margin: 1.6rem auto 0;
    width: 100%;
    height: 5.6rem;
  }
}
/*==========================================

Mainvisual
==========================================*/
.sec-mainvisual {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4rem 0;
  height: 60rem;
  padding-inline: calc((50vw - 120rem / 2) + var(--size-inline));
  background: url(../img/mainvisual-img.png) no-repeat right calc(50vw - 120rem / 2) center / 54.5rem auto, url(../img/mainvisual-bg.jpg) no-repeat center center / cover;
}
.sec-mainvisual h1 {
  max-width: 65rem;
  font-size: 4.5rem;
}
.sec-mainvisual h1 small {
  font-size: 3rem;
  padding: 0.4rem 0.8rem;
  background: var(--color-red);
  color: #fff;
}
.sec-mainvisual p {
  font-size: 3rem;
  font-weight: bold;
}
.sec-mainvisual em {
  color: var(--color-red);
}
@media (max-width: 768px) {
  .sec-mainvisual {
    display: block;
    height: auto;
    padding: 3rem var(--size-inline);
    background: url(../img/mainvisual-img.png) no-repeat center 15rem / 26rem auto, url(../img/mainvisual-bg.jpg) no-repeat 30% center / auto 101%;
  }
  .sec-mainvisual h1 {
    font-size: 2.6rem;
    text-align: center;
    line-height: 1.5;
    white-space: normal;
  }
  .sec-mainvisual h1 em{font-size: 3rem;}
  .sec-mainvisual h1 small {
    font-size: 1.8rem;
    display: block;
    margin-top: 10px;
  }
  .sec-mainvisual p {
    margin: 16rem auto 1rem;
    font-size: 1.8rem;
    text-align: center;
  }
}
/*==========================================

sec-3col-ico
==========================================*/
.sec-3col-ico {background:#ffe2e2;}
#trouble{background:#deb2b2;}
#casestudy{
  background: url(../img/mainvisual-bg.jpg) no-repeat center 90%/ cover;
}
#reason{
  background:#ffe2e2;
}
.sec-3col-ico ul {
  display: flex;
  margin: 20px 0;
}
.sec-3col-ico ul li {
  width: 33%;
  text-align: center;
  padding: 2%;
}
.sec-3col-ico ul li figure{
  height: 200px;
  width: 200px;
  background: #fff;
  display: flex;
  border-radius: 100%;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  }
.sec-3col-ico ul li img {
width: 120px;
}
.sec-3col-ico ul li p {
  font-weight: bold;
  margin: 10px 0;
  font-size: 2rem;
}
.sec-3col-ico ul li span {
  font-size: 1.8rem;
  line-height: 3rem;
  display: block;
}
.sec-3col-img {
  background: #fbfbfb
}
.sec-3col-img ul {
  margin: 50px auto;
  max-width: 900px;
}
.sec-3col-img li {
  display: flex;
  margin: 40px auto;
  align-items: center;
}
.sec-3col-img li img {
  max-width: 350px;
  height: auto;
  object-fit: cover;
  border-radius: 20px;
  width: 100%;
}
.sec-3col-img li:nth-child(even) {
  flex-direction: row-reverse;
}
.sec-3col-img li div {
  margin-left: 4%;
}
.sec-3col-img li:nth-child(even) div {
  margin-right: 4%;
  margin-left: 0;
}
.sec-3col-img li div p {
  font-weight: bold;
  color: var(--color-red);
  margin-bottom: 2%;
  font-size: 2.3rem;
}
@media (max-width: 768px) {
  .sec-3col-ico ul {
    flex-wrap: wrap;
  }
  .sec-3col-ico ul li {
    width: 100%;
  }
  .sec-3col-img ul {
    margin: 40px auto;
  }
  .sec-3col-img ul li {
    flex-wrap: wrap;
    margin: 30px auto 0;
  }
  .sec-3col-img li div {
    margin: 10px 0
  }
  .sec-3col-ico ul li span {
    font-size: 1.5rem;
  }
  .sec-3col-img li div p {
    text-align: center;
  }
}
/*==========================================

Service
==========================================*/
.sec-services {
  padding: var(--size-block) var(--size-inline);
  background: url(../img/mainvisual-bg.jpg) no-repeat center 90%/ cover;
  text-align: center;
}
.sec-services h2 {
  text-align: center;
  font-size: 4rem;
  font-weight: bold;
}
.sec-services ul li{margin:0 10px;width:33%;}
.sec-services ul {
  display: flex;
  margin-top:50px;
}
.sec-services ul figure img{
  height:220px;
  object-fit:cover;
  border:10px solid #fff;
}
.sec-services ul p {
  font-size: 2rem;
  font-weight:bold;
  margin-top: 10px;
}
.sec-services ul p span{
  font-size: 1.7rem;font-weight:normal;
  display:block;
}
@media (max-width: 768px) {

  .sec-services h2 {
    font-size: 3rem;
  }
  .sec-services ul{flex-wrap:wrap;}
  .sec-services ul li{width:100%;margin-bottom: 30px;}
}
/*==========================================

Flow
==========================================*/
.sec-flow {
  background: #ffe2e2;
}
.sec-flow ul {}
.sec-flow ul li i {
  font-style: normal;
  border-radius: 100%;
  background: var(--color-red);
  color: #fff;
  font-weight: bold;
  display: flex;
  width: 35px;
  height: 35px;
  justify-content: center;
  align-items: center;
}
.sec-flow ul li {
  display: flex;
  align-items: center;
  background: #fff;
  border-radius: 20px;
  margin: 40px 0;
  position: relative;
  padding: 0 20px;
}
.sec-flow ul li:after {
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-right: 30px solid transparent;
  border-left: 30px solid transparent;
  border-top: 20px solid #555555;
  border-bottom: 0;
  position: absolute;
  bottom: -32px;
  left: 50%;
  transform: translateX(-50%);
}
.sec-flow ul li:last-child:after {
  display: none;
}
.sec-flow ul img {
  width: 100px;
  padding: 20px;
}
.sec-flow ul p small {
  display: block;
}
@media (max-width: 768px) {
  .sec-flow ul img {
    width: 90px;
  }
  .sec-flow ul p {
    width: 60%;
  }
}
/*==========================================

Services
==========================================*/
.sec-table {
  background: #ffe2e2;
}
.sec-table .viewport-wrapper div{display:flex;}
.sec-table table tr:first-child th{background: #ff86c2;color:#fff;border-radius: 10px 10px 0 0;}
.sec-table table:nth-child(2) tr:first-child th{background: var(--color-red);}
.sec-table table:nth-child(3) tr:first-child th{background: #ffb33e;}
.sec-table table {
  background: #fff;
  border-radius: 20px;
  width: 100%;
  max-width: 800px;
  margin: 30px 10px;
}
.sec-table table th {
  width: 40%;
  padding: 1em;
  text-align: center;
}
.sec-table table td {
  width: 60%;
  padding: 1em;
}
.sec-table table tr:nth-child(even) {
  background: #eee;
}
.sec-table table tr:last-child {
  border-radius: 0 0 20px 20px;
}
.sec-table table tr:last-child th {
  border-radius: 0 0 0 20px;
}
.sec-table table tr:last-child td {
  border-radius: 0 0 20px 0;
}
.sec-table table ul li {
  list-style: inside;
}
@media (max-width: 768px) {
 .sec-table .viewport-wrapper div{flex-wrap:wrap;margin-top: 30px;}
  .sec-table .viewport-wrapper div table{
    margin: 10px 0;
}
}
/*==========================================

Casestudy
==========================================*/
.sec-imgtxt {
  background: #eee;
}
.imgtxt {
  display: flex;
  margin: 50px auto 0;
  align-items: center;
}
.imgtxt img {
  max-width: 350px;
  border-radius: 20px;
  width: 100%;
}
.imgtxt div {
  margin-left: 3%;
}
.imgtxt div p {
  background: #fff;
  border-radius: 20px;
  padding: 20px;
  margin: 20px 0;
  font-weight: bold;
  display: flex;
  align-items: center;
}
.imgtxt div p:before {
  content: '';
  background: url("../img/ico-check.png")no-repeat;
  width: 30px;
  height: 30px;
  background-size: contain;
  display: inline-block;
  margin-right: 10px;
}
.imgtxt div p span {
  width: calc(100% - 40px);
}
@media (max-width: 768px) {
  .imgtxt {
    flex-wrap: wrap;
  }
  .imgtxt div {
    margin-left: 0;
  }
}
/*==========================================

FAQ
==========================================*/
.sec-faq {
  padding: var(--size-block) calc(50vw - (var(--size-content) / 2));
  background: var(--color-grey-light);
}
.sec-faq h2 {
  margin-bottom: 4rem;
  text-align: center;
  font-size: 4rem;
}
.sec-faq .accordion-item .accordion-trigger {
  cursor: pointer;
  position: relative;
  transition: opacity 0.3s;
  padding: 1rem 6rem;
  border-radius: 1rem;
  background: #fff;
  box-shadow: var(--deco-shadow);
  font-weight: bold;
}
.sec-faq .accordion-item + .accordion-item {
  margin-top: 2rem;
}
.sec-faq .accordion-item .accordion-trigger:before {
  content: "Q";
  line-height: 1;
  color: var(--color-red);
  font-size: 3rem;
  font-weight: bold;
  position: absolute;
  left: 2rem;
  top: 0.8rem;
}
.sec-faq .accordion-item .accordion-trigger:not(.disabled):after {
  content: "\f078";
  font-family: "Font Awesome 7 Free";
  font-feature-settings: normal;
  font-style: normal;
  font-synthesis: none;
  font-variant: normal;
  font-weight: 900;
  line-height: 1;
  text-align: center;
  text-rendering: auto;
  width: 1.25em;
  position: absolute;
  right: 1.6rem;
  top: 50%;
  translate: 0 -50%;
  pointer-events: none;
  color: var(--color-red);
}
.sec-faq .accordion-item .accordion-trigger.disabled {
  pointer-events: none;
}
.sec-faq .accordion-item .accordion-trigger:hover {
  opacity: 0.7;
}
.sec-faq .accordion-item .accordion-content {
  position: relative;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.2s;
}
.sec-faq .accordion-item .accordion-content > .wrapper {
  overflow: hidden;
}
.sec-faq .accordion-item.is-activated .accordion-trigger:not(.disabled):after {
  content: "\f077";
}
.sec-faq .accordion-item.is-activated .accordion-content {
  grid-template-rows: 1fr;
}
.sec-faq .accordion-item.is-activated .accordion-content .inner {
  padding: 2rem 2rem 1rem 6rem;
  position: relative;
  font-size: 1.8rem;
}
.sec-faq .accordion-item.is-activated .accordion-content .inner:before {
  content: "A";
  line-height: 1;
  color: var(--color-voilet);
  font-size: 3rem;
  font-weight: bold;
  position: absolute;
  left: 2rem;
  top: 1.8rem;
  pointer-events: none;
}
.sec-faq .accordion-item.is-activated .accordion-content a {
  color: var(--color-orange);
  text-decoration: underline;
}
@media (max-width: 768px) {
  .sec-faq {
    padding: var(--size-block) var(--size-inline);
  }
  .sec-faq h2 {
    margin-bottom: 3rem;
    font-size: 3rem;
  }
  .sec-faq .accordion-item .accordion-trigger {
    padding: 1rem 3rem 1rem 4rem;
  }
  .sec-faq .accordion-item + .accordion-item {
    margin-top: 1.6rem;
  }
  .sec-faq .accordion-item .accordion-trigger:before {
    left: 1rem;
    font-weight: 500;
    top: 0.7rem;
    font-size: 2.6rem;
  }
  .sec-faq .accordion-item .accordion-trigger:not(.disabled):after {
    right: 1rem;
  }
  .sec-faq .accordion-item.is-activated .accordion-content .inner {
    padding: 1rem 1rem 1rem 4rem;
    font-size: 1.3rem;
  }
  .sec-faq .accordion-item.is-activated .accordion-content .inner:before {
    left: 1.2rem;
    font-weight: 500;
    top: 0.8rem;
    font-size: 2.6rem;
  }
}
/*==========================================

Footer
==========================================*/
.area-cta {
  padding: 6rem var(--size-inline);
  background: url(../img/mainvisual-bg.jpg) no-repeat center 90%/cover;
  text-align: center;
}
.area-cta p {
  font-size: 3rem;
  font-weight: 900;
}
.area-cta p em {
  font-size: 4rem;
  color: var(--color-red);
}
.area-cta .btns {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  margin: 3rem auto 0;
}
.area-cta .btns > a {
  flex: 0 0 38rem;
  max-width: 100%;
}
.area-cta .btns a:last-of-type {
  background: var(--color-gradient);
}
.site-footer .copyright {
  padding: var(--size-inline);
  text-align: center;
  font-size: 1.4rem;
}
.site-footer .copyright figure {
  width: 20rem;
  margin: 0 auto 1rem;
}
@media (max-width: 768px) {
  .area-cta {
    background: url(../img/mainvisual-bg.jpg) no-repeat 35% center/cover;
  }
  .area-cta p {
    font-size: 2rem;
    line-height: 1.3;
  }
  .area-cta p em {
    font-size: 3rem;
  }
  .area-cta .btns {
    display: grid;
    grid-auto-columns: 1fr;
    gap: 1.6rem;
  }
  .site-footer .copyright {
    padding: 2.4rem;
    font-size: 1.2rem;
  }
}