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

共通

======================================================= */
* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5% !important;
  min-height: 100%;
}

body {
  font-size: 1.5rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #222;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  position: relative;
}
@media (max-width: 450px) {
  body {
    font-size: 1.3rem;
  }
}

p {
  line-height: 1.8em;
}

img {
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
  line-height: 1em;
}

a {
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}

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

br.tab {
  display: none;
}
@media (max-width: 820px) {
  br.tab {
    display: block;
  }
}

br.sp {
  display: none;
}
@media (max-width: 450px) {
  br.sp {
    display: block;
  }
}

.main {
  overflow: hidden;
  padding-top: 80px;
  min-height: 75vh;
}
@media (max-width: 450px) {
  .main {
    padding-top: 60px;
    min-height: 60vh;
  }
}

/* h ============================================== */
.h2--cmn {
  font-size: 3.6rem;
  font-weight: bold;
  padding-bottom: 0.8em;
  position: relative;
  line-height: 1.6em;
  text-align: center;
}
@media (max-width: 450px) {
  .h2--cmn {
    font-size: 2.2rem;
  }
}
.h2--cmn::before {
  position: absolute;
  content: "";
  top: 100%;
  left: calc(50% - 30px);
  width: 60px;
  height: 6px;
  background: #1EB068;
  z-index: 1;
}

.h3--cmn {
  font-size: 2.8rem;
  line-height: 1.8em;
  font-weight: bold;
}
@media (max-width: 450px) {
  .h3--cmn {
    font-size: 1.8rem;
  }
}

/* text ============================================== */
.text--green {
  color: #1EB068;
}

.text--blue-green {
  color: #19A29D;
}

.text--orange {
  color: #ED813E;
}

.text--pink {
  color: #DE4D7A;
}

/* container ============================================== */
.container {
  max-width: 1090px;
  padding: 0 30px;
  margin: 0 auto;
}
@media (max-width: 450px) {
  .container {
    padding: 0 20px;
  }
}

.container--large {
  max-width: calc(100% - 80px);
  width: 100%;
  margin: 0 auto;
}
@media (max-width: 820px) {
  .container--large {
    max-width: calc(100% - 60px);
  }
}
@media (max-width: 450px) {
  .container--large {
    max-width: calc(100% - 40px);
  }
}

.col2__outer {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 820px) {
  .col2__outer {
    flex-direction: column !important;
  }
}

.col2__head {
  width: 300px;
}
@media (max-width: 820px) {
  .col2__head {
    width: 100%;
  }
}
.col2__head .h2--cmn {
  text-align: left;
}
@media (max-width: 820px) {
  .col2__head .h2--cmn {
    margin-bottom: 30px;
  }
}
.col2__head .h2--cmn::before {
  left: 0;
}

.col2__content {
  width: calc(100% - 350px);
}
@media (max-width: 820px) {
  .col2__content {
    width: 100%;
  }
}

/* fadein ============================================== */
.fadeup {
  opacity: 0;
  transition-delay: 0.3s;
  transition-property: opacity, transform;
  transform: translate(0, 30px);
}
.fadeup.is-active {
  transition: 0.8s;
  transform: translate(0, 0);
  opacity: 1;
}

.fade-in-left {
  opacity: 0;
  transition-delay: 0.3s;
  transition-property: opacity, transform;
  transform: translate(-30px, 0);
}
.fade-in-left.is-active {
  transition: 0.8s;
  transform: translate(0, 0);
  opacity: 1;
}

.fade-in-right {
  opacity: 0;
  transition-delay: 0.3s;
  transition-property: opacity, transform;
  transform: translate(30px, 0);
}
.fade-in-right.is-active {
  transition: 0.8s;
  transform: translate(0, 0);
  opacity: 1;
}

/* =======================================================

header

======================================================= */
header {
  position: fixed;
  z-index: 9999;
  background: #fff;
  box-shadow: 0px 0px 12px rgba(10, 124, 89, 0.2);
  padding: 15px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  height: 80px;
}
@media (max-width: 450px) {
  header {
    padding: 12px 20px;
    height: 60px;
  }
}

@media (max-width: 450px) {
  .header__logo img {
    width: 180px;
  }
}

.header__nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.header__gnav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px 30px;
}
@media (max-width: 820px) {
  .header__gnav {
    display: none;
  }
}
.header__gnav li a {
  transition: ease 0.3s;
  font-weight: bold;
}
.header__gnav li a:hover {
  color: #1EB068;
}

.header__contact {
  padding: 0.7em 1.5em;
  border-radius: 30px;
  background: #1EB068;
  color: #fff;
  font-weight: bold;
  color: #fff;
  text-wrap: nowrap;
}

/* =======================================================

MV

======================================================= */
.mv {
  background: url(../imgs/mv--bg.svg) no-repeat center top -80px;
  background-size: auto 820px;
  height: 750px;
}
@media (max-width: 820px) {
  .mv {
    padding-bottom: 500px;
    background-position: bottom right -50px;
    background-size: 200% auto;
    height: unset;
  }
}
@media (max-width: 450px) {
  .mv {
    padding-bottom: 260px;
    background-size: 230% auto;
  }
}

.mv__container {
  max-width: 1260px;
  width: 100%;
  margin: 0 auto;
}

.mv__txts {
  padding-top: 40px;
  max-width: 900px;
  margin-right: auto;
}
@media (max-width: 450px) {
  .mv__txts {
    padding-top: 20px;
  }
}

.mv__eng {
  margin-right: auto;
  margin-bottom: 10px;
}

.mv__copy {
  margin-right: auto;
  margin-bottom: 50px;
  margin-left: 40px;
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 450px) {
  .mv__copy {
    margin-left: 3vw;
    gap: 10px 0;
    margin-bottom: 25px;
  }
}
.mv__copy > span {
  background: #333;
  color: #fff;
  font-size: 2.6rem;
  line-height: 1em;
  font-weight: bold;
  padding: 5px;
  display: inline-block;
  transition-delay: 0.3s !important;
}
@media (max-width: 450px) {
  .mv__copy > span {
    font-size: 1.8rem;
    display: inline;
  }
}

.mv__points {
  display: flex;
  gap: 20px;
  padding: 0 20px;
  max-width: 740px;
  margin: 0 auto;
  transition-delay: 0.5s !important;
}
@media (max-width: 450px) {
  .mv__points {
    gap: 5px;
    padding: 0 12px;
  }
}
.mv__points li {
  width: 33.33%;
  aspect-ratio: 1/1;
  background-repeat: no-repeat;
  background-size: contain;
}
.mv__points li:nth-child(1) {
  background-image: url(../imgs/mv--point01.svg);
}
.mv__points li:nth-child(2) {
  background-image: url(../imgs/mv--point02.svg);
}
.mv__points li:nth-child(3) {
  background-image: url(../imgs/mv--point03.svg);
}
.mv__points li p {
  font-weight: bold;
  text-align: center;
  font-size: 1.8rem;
  line-height: 1.2em;
  margin-top: 2em;
  min-height: 2.4em;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 450px) {
  .mv__points li p {
    font-size: 1.1rem;
    margin-top: 1.8em;
  }
}

/* =======================================================

困りごと

======================================================= */
.sec--worries {
  background: #F2F8F7;
  padding: 70px 0;
  position: relative;
}
@media (max-width: 820px) {
  .sec--worries {
    margin-top: -100px;
    padding: 50px 0;
  }
}
@media (max-width: 450px) {
  .sec--worries {
    margin-top: -50px;
    padding: 40px 0;
  }
}
.sec--worries::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 40px 80px 0 80px;
  border-color: #F2F8F7 transparent transparent transparent;
  top: 100%;
  left: calc(50% - 80px);
}
@media (max-width: 450px) {
  .sec--worries::before {
    border-width: 35px 60px 0 60px;
    left: calc(50% - 60px);
  }
}

.worries__head {
  text-align: center;
  margin-bottom: 50px;
}
@media (max-width: 450px) {
  .worries__head {
    margin-bottom: 20px;
  }
}

.worries__list {
  max-width: 900px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 30px 0;
}
@media (max-width: 820px) {
  .worries__list {
    max-width: 400px;
    gap: 20px 0;
  }
}
.worries__list li {
  width: 50%;
  font-size: 1.8rem;
  font-weight: bold;
  display: flex;
  align-items: flex-start;
}
@media (max-width: 820px) {
  .worries__list li {
    width: 100%;
  }
}
@media (max-width: 450px) {
  .worries__list li {
    font-size: 1.4rem;
  }
}
@media (max-width: 450px) {
  .worries__list li img {
    width: 20px;
  }
}

/* =======================================================

提供する価値

======================================================= */
.sec--value {
  padding-top: 100px;
}
@media (max-width: 450px) {
  .sec--value {
    padding-top: 60px;
  }
}

.value__bg {
  position: relative;
}
.value__bg::before {
  position: absolute;
  content: "";
  background: url(../imgs/value__bg01.svg) no-repeat center;
  background-size: contain;
  width: 320px;
  height: 300px;
  right: -350px;
  top: 7%;
  z-index: -2;
}
@media (max-width: 820px) {
  .value__bg::before {
    right: -180px;
  }
}
@media (max-width: 450px) {
  .value__bg::before {
    right: -60px;
    top: 10%;
    width: 140px;
    height: 140px;
  }
}
.value__bg::after {
  position: absolute;
  content: "";
  background: url(../imgs/value__bg02.svg) no-repeat center;
  background-size: contain;
  width: 370px;
  height: 370px;
  left: -500px;
  bottom: 25%;
  z-index: -2;
}
@media (max-width: 820px) {
  .value__bg::after {
    left: -220px;
  }
}
@media (max-width: 450px) {
  .value__bg::after {
    bottom: 40%;
    left: -80px;
    width: 140px;
    height: 140px;
  }
}

.value__logo {
  margin: 0 auto;
  max-width: 80px;
  text-align: center;
  margin-bottom: 20px;
}
@media (max-width: 450px) {
  .value__logo {
    max-width: 50px;
  }
}

.value__item {
  display: flex;
  justify-content: space-between;
  padding: 80px 20px;
  border-bottom: #E2EAE9 2px solid;
  align-items: center;
}
@media (max-width: 820px) {
  .value__item {
    flex-direction: column !important;
    gap: 40px;
  }
}
@media (max-width: 450px) {
  .value__item {
    padding: 40px 0;
  }
}

.value__item__txts {
  width: 44%;
}
@media (max-width: 820px) {
  .value__item__txts {
    width: 100%;
  }
}

.value__item__imgs {
  width: 50%;
  text-align: center;
}
@media (max-width: 820px) {
  .value__item__imgs {
    width: 100%;
  }
}
@media (max-width: 450px) {
  .value__item__imgs img {
    width: auto;
    max-height: 240px;
  }
}

.value__item01__head {
  display: inline-block;
  background: #333;
  color: #fff;
  font-weight: bold;
  font-size: 2.2rem;
  padding: 0.4em 1.5em;
  margin-right: auto;
  margin-bottom: 30px;
}
@media (max-width: 450px) {
  .value__item01__head {
    font-size: 1.6rem;
    margin-bottom: 20px;
  }
}

.value__item01__list {
  font-weight: bold;
}
.value__item01__list li {
  font-size: 2.2rem;
  font-weight: bold;
  line-height: 1.6em;
  position: relative;
  padding-left: 35px;
}
@media (max-width: 450px) {
  .value__item01__list li {
    font-size: 1.6rem;
    padding-left: 25px;
  }
}
.value__item01__list li img {
  position: absolute;
  left: 0;
  top: 5px;
}
@media (max-width: 450px) {
  .value__item01__list li img {
    width: 20px;
    top: 10px;
  }
}
.value__item01__list li:not(:last-child) {
  margin-bottom: 25px;
}
@media (max-width: 450px) {
  .value__item01__list li:not(:last-child) {
    margin-bottom: 15px;
  }
}
.value__item01__list li .underline {
  background: linear-gradient(transparent 65%, #E4F4F1 0%);
}

.value__item02 {
  flex-direction: row-reverse;
}

.value__item02__head {
  margin-bottom: 20px;
}

/* =======================================================

広告運用における課題

======================================================= */
.sec--assignment {
  padding: 80px 0;
}
@media (max-width: 450px) {
  .sec--assignment {
    padding: 40px 0;
  }
}

.assignment__bg {
  position: relative;
}
.assignment__bg::before {
  position: absolute;
  content: "";
  background: url(../imgs/value__bg03.svg) no-repeat center;
  background-size: contain;
  width: 370px;
  height: 410px;
  right: -400px;
  bottom: -100px;
  z-index: -2;
}
@media (max-width: 820px) {
  .assignment__bg::before {
    right: -180px;
  }
}
@media (max-width: 450px) {
  .assignment__bg::before {
    right: -60px;
    width: 140px;
    height: 140px;
  }
}

.assignment__head {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 40px;
}
.assignment__head img {
  margin-right: 0.5em;
}
@media (max-width: 450px) {
  .assignment__head {
    margin-bottom: 20px;
  }
}

.assignment__graphs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 1fr;
  margin-bottom: 80px;
  position: relative;
}
@media (max-width: 820px) {
  .assignment__graphs {
    display: flex;
    flex-direction: column;
  }
}
@media (max-width: 450px) {
  .assignment__graphs {
    margin-bottom: 50px;
  }
}
.assignment__graphs::before {
  position: absolute;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 24px 40px 0 40px;
  border-color: #1EB068 transparent transparent transparent;
  top: calc(100% + 30px);
  left: calc(50% - 40px);
}
@media (max-width: 450px) {
  .assignment__graphs::before {
    transform: scale(0.7);
    top: calc(100% + 15px);
  }
}

.assignment__graphs__img {
  grid-area: 1/2/2/3;
  text-align: center;
}
@media (max-width: 820px) {
  .assignment__graphs__img {
    order: 2;
    padding-top: 10px;
  }
}
@media (max-width: 450px) {
  .assignment__graphs__img img {
    max-width: 260px;
  }
}

.assignment__graphs__txt {
  padding-top: 20px;
}
@media (max-width: 820px) {
  .assignment__graphs__txt {
    order: 1;
    margin-bottom: 15px;
    padding-top: 0;
  }
}
.assignment__graphs__txt span {
  background: #333;
  color: #fff;
  font-weight: bold;
  padding: 20px;
  display: flex;
  align-items: flex-start;
  line-height: 1.6em;
  gap: 10px;
  position: relative;
}
@media (max-width: 820px) {
  .assignment__graphs__txt span {
    max-width: 550px;
    margin: 0 auto;
  }
}
@media (max-width: 450px) {
  .assignment__graphs__txt span {
    padding: 15px;
  }
  .assignment__graphs__txt span img {
    width: 20px;
  }
}
.assignment__graphs__txt span::before {
  position: absolute;
  content: "";
  width: 50px;
  height: 70px;
  background: url(../imgs/assignment--baloon.png) no-repeat center;
  background-size: contain;
  top: calc(100% - 25px);
}
@media (max-width: 820px) {
  .assignment__graphs__txt span::before {
    width: 30px;
    height: 50px;
  }
}
.assignment__graphs__txt.txt01 {
  grid-area: 1/1/2/2;
}
.assignment__graphs__txt.txt01 span::before {
  left: 70%;
  transform: scale(-1, 1);
}
@media (max-width: 820px) {
  .assignment__graphs__txt.txt01 span::before {
    left: unset;
    right: 70%;
  }
}
.assignment__graphs__txt.txt02 {
  grid-area: 1/3/2/4;
}
.assignment__graphs__txt.txt02 span::before {
  right: 70%;
}
@media (max-width: 820px) {
  .assignment__graphs__txt.txt02 span::before {
    transform: scale(-1, 1);
  }
}

.assignment__copy {
  text-align: center;
  font-weight: bold;
  font-size: 1.8rem;
  line-height: 1.8em;
}
@media (max-width: 450px) {
  .assignment__copy {
    font-size: 1.4rem;
  }
}
.assignment__copy .text-l {
  font-size: 3.2rem;
  line-height: 1.8em;
}
@media (max-width: 450px) {
  .assignment__copy .text-l {
    font-size: 2rem;
  }
}

/* =======================================================

実績

======================================================= */
.works__grd {
  position: relative;
}
.works__grd::before {
  position: absolute;
  content: "";
  z-index: -2;
  left: 0;
  top: 0;
  width: 70%;
  height: 700px;
  background: transparent linear-gradient(180deg, #EAF4F2 0%, #FFFFFF 100%);
}
@media (max-width: 820px) {
  .works__grd::before {
    width: 90%;
  }
}

/* マーケティング支援実績====================================*/
.sec--support-work {
  padding: 100px 0 120px;
}
@media (max-width: 450px) {
  .sec--support-work {
    padding: 60px 0;
  }
}
.sec--support-work .col2__outer {
  flex-direction: row-reverse;
}

.support-work__keizoku {
  max-width: 270px;
  aspect-ratio: 1/1;
  background: url(../imgs/support--img01.png) no-repeat center;
  background-size: contain;
  margin: 0 auto;
  margin-bottom: 30px;
}
@media (max-width: 450px) {
  .support-work__keizoku {
    max-width: 200px;
  }
}
.support-work__keizoku p {
  text-align: center;
  font-weight: bold;
  font-size: 2rem;
  padding-top: 60px;
  line-height: 1.4em;
}
@media (max-width: 450px) {
  .support-work__keizoku p {
    font-size: 1.5rem;
    padding-top: 40px;
  }
}

.support-work__annotation {
  font-size: 1.3rem;
}

.support-work__h3 {
  font-size: 2.2rem;
  font-weight: bold;
  margin: 30px 0;
  line-height: 1.7em;
}
@media (max-width: 450px) {
  .support-work__h3 {
    font-size: 1.7rem;
  }
}

.support-work__list {
  padding: 20px;
  display: flex;
  flex-wrap: wrap;
  background: #E2EAE9;
  gap: 10px;
}
@media (max-width: 450px) {
  .support-work__list {
    gap: 5px;
  }
}
.support-work__list li {
  width: calc(50% - 5px);
  background: #333;
  color: #fff;
  font-weight: bold;
  padding: 10px;
  min-height: 70px;
  position: relative;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding-left: 50px;
  font-size: 1.8rem;
  line-height: 1.4em;
}
@media (max-width: 450px) {
  .support-work__list li {
    width: 100%;
    font-size: 1.4rem;
    min-height: unset;
    padding: 15px;
    padding-left: 45px;
  }
}
.support-work__list li img {
  position: absolute;
  left: 15px;
  top: calc(50% - 15px);
}
@media (max-width: 450px) {
  .support-work__list li img {
    width: 20px;
    top: calc(50% - 10px);
  }
}
.support-work__list li .small {
  font-size: 0.8em;
  display: block;
  width: 100%;
}
@media (max-width: 450px) {
  .support-work__list li .small {
    display: inline;
    width: unset;
  }
}

/* マーケティング改善実績====================================*/
.sec--improvement-work {
  padding: 100px 0;
}
@media (max-width: 450px) {
  .sec--improvement-work {
    padding: 60px 0;
  }
}
.sec--improvement-work.works__grd::before {
  left: unset;
  right: 0;
}

.improvement__items {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 50px;
}
@media (max-width: 820px) {
  .improvement__items {
    align-items: center;
  }
}
@media (max-width: 450px) {
  .improvement__items {
    gap: 30px;
    width: calc(100% + 15px);
    margin-right: -15px;
  }
}
.improvement__items h3 {
  margin-bottom: -10px;
}
@media (max-width: 450px) {
  .improvement__items h3 {
    margin-bottom: 0;
  }
}

/* =======================================================

サービス

======================================================= */
.sec--service .container {
  padding-top: 100px;
  padding-bottom: 40px;
  border-top: #E2EAE9 2px solid;
}
@media (max-width: 450px) {
  .sec--service .container {
    padding-bottom: 20px;
    padding-top: 60px;
  }
}

.services__all-graph {
  display: grid;
  grid-template-columns: 1fr 460px 1fr;
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 30px;
  margin-top: 70px;
  margin-bottom: 50px;
}
@media (max-width: 820px) {
  .services__all-graph {
    display: flex;
    flex-direction: column;
    grid-gap: unset;
  }
}
@media (max-width: 450px) {
  .services__all-graph {
    margin-top: 30px;
    margin-bottom: 40px;
  }
}

@media (max-width: 820px) {
  .all-graph__txt {
    padding: 20px 0 !important;
    border-bottom: #E2EAE9 1px solid !important;
  }
}
.all-graph__txt.top {
  padding-bottom: 30px;
  padding-top: 10px;
  border-bottom: #E2EAE9 1px solid;
}
@media (max-width: 820px) {
  .all-graph__txt.top {
    padding: unset;
    border-bottom: unset;
  }
}
.all-graph__txt.btm {
  padding-top: 30px;
}
@media (max-width: 820px) {
  .all-graph__txt.btm {
    padding: unset;
  }
}
.all-graph__txt.txt01 {
  grid-area: 1/1/2/2;
}
@media (max-width: 820px) {
  .all-graph__txt.txt01 {
    order: 2;
  }
}
.all-graph__txt.txt02 {
  grid-area: 2/1/3/2;
}
@media (max-width: 820px) {
  .all-graph__txt.txt02 {
    order: 2;
  }
}
.all-graph__txt.txt03 {
  grid-area: 1/3/2/4;
}
@media (max-width: 820px) {
  .all-graph__txt.txt03 {
    order: 2;
  }
}
.all-graph__txt.txt04 {
  grid-area: 2/3/3/4;
}
@media (max-width: 820px) {
  .all-graph__txt.txt04 {
    order: 2;
  }
}

.all-graph__img {
  grid-area: 1/2/3/3;
  text-align: center;
}
@media (max-width: 820px) {
  .all-graph__img {
    order: 1;
  }
}
@media (max-width: 450px) {
  .all-graph__img {
    max-width: 300px;
    margin: 0 auto;
  }
}

.all-graph__ttl {
  font-size: 2.2rem;
  font-weight: bold;
  margin-bottom: 0.8em;
}
@media (max-width: 450px) {
  .all-graph__ttl {
    font-size: 1.5rem;
    margin-bottom: 0.5em;
  }
}

.services__btm-copy {
  text-align: center;
  font-weight: bold;
  font-size: 2.2rem;
  margin-bottom: 80px;
}
@media (max-width: 450px) {
  .services__btm-copy {
    font-size: 1.8rem;
    margin-bottom: 40px;
  }
}

.service-list__head {
  text-align: center;
  font-size: 2.8rem;
  font-weight: bold;
  color: #fff;
  background: #19A29D;
  padding: 10px;
  margin-bottom: 50px;
}
@media (max-width: 450px) {
  .service-list__head {
    font-size: 2rem;
    margin-bottom: 30px;
  }
}

.service-list__item {
  padding-left: 40px;
  margin-bottom: 60px;
  border-left-width: 14px;
  border-style: solid;
}
@media (max-width: 450px) {
  .service-list__item {
    padding-left: 0;
    border-left-width: 0;
    margin-bottom: 30px;
  }
}

.service-list__item__ttl {
  font-size: 2.8rem;
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: bold;
  margin-bottom: 0.8em;
}
@media (max-width: 450px) {
  .service-list__item__ttl {
    font-size: 1.8rem;
    padding-left: 10px;
  }
  .service-list__item__ttl img {
    width: 25px;
  }
}

.service-list__item__disc {
  font-size: 1.7rem;
  margin-bottom: 20px;
}
@media (max-width: 450px) {
  .service-list__item__disc {
    font-size: 1.4rem;
  }
}

.service-list__detail {
  padding: 30px;
  background: #F2F8F7;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
@media (max-width: 450px) {
  .service-list__detail {
    padding: 25px 15px;
  }
}

.service-list__detail__ttl {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 15px;
}
@media (max-width: 450px) {
  .service-list__detail__ttl {
    font-size: 1.6rem;
  }
}

.service-list__detail__content {
  background: #fff;
  padding: 25px;
  width: 100%;
  margin-top: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 20px;
}
@media (max-width: 450px) {
  .service-list__detail__content {
    padding: 10px;
  }
}

.service-list__detail__txt {
  margin-bottom: 15px;
}

.service-list__item.service01 {
  border-color: #DE4D7A;
}
.service-list__item.service01 .service-list__item__ttl {
  color: #DE4D7A;
}
@media (max-width: 450px) {
  .service-list__item.service01 .service-list__item__ttl {
    border-left: #DE4D7A 5px solid;
  }
}

.service-list__item.service02 {
  border-color: #1EB068;
}
.service-list__item.service02 .service-list__item__ttl {
  color: #1EB068;
}
@media (max-width: 450px) {
  .service-list__item.service02 .service-list__item__ttl {
    border-left: #1EB068 5px solid;
  }
}

.service-list__item.service03 {
  border-color: #ED813E;
}
.service-list__item.service03 .service-list__item__ttl {
  color: #ED813E;
}
@media (max-width: 450px) {
  .service-list__item.service03 .service-list__item__ttl {
    border-left: #ED813E 5px solid;
  }
}

.service03__details {
  display: flex;
  gap: 30px;
}
@media (max-width: 820px) {
  .service03__details {
    flex-direction: column;
  }
}
@media (max-width: 450px) {
  .service03__details {
    gap: 20px;
  }
}
.service03__details .service-list__detail {
  flex: 1;
}
@media (max-width: 450px) {
  .service03__details img {
    max-height: 170px;
    width: auto;
  }
}

/* =======================================================

会社情報

======================================================= */
.sec--company {
  background: #444;
  padding: 80px 0;
  margin-bottom: 50px;
}
@media (max-width: 450px) {
  .sec--company {
    padding: 60px 0;
    margin-bottom: 0;
    max-width: calc(100% + 40px);
  }
}
.sec--company .h2--cmn {
  color: #fff;
}

.company__item {
  padding: 40px 0;
}
.company__item:first-child {
  padding-top: 0;
  border-bottom: rgba(226, 234, 233, 0.2) 1px solid;
}
.company__item:last-child {
  padding-bottom: 0;
}

.company__h3 {
  color: #1EB068;
  margin-bottom: 1em;
}

.company__ceo {
  font-size: 2.2rem;
  font-weight: bold;
  color: #fff;
  margin-bottom: 20px;
}
@media (max-width: 450px) {
  .company__ceo {
    font-size: 1.6rem;
  }
}
.company__ceo .name {
  font-size: 1.3em;
}
.company__ceo .eng {
  font-size: 0.8em;
  font-weight: normal;
}

.company__ceo--disc {
  color: #fff;
}

.company__info {
  display: flex;
  color: #fff;
  font-size: 1.7rem;
}
@media (max-width: 450px) {
  .company__info {
    font-size: 1.4rem;
    flex-wrap: wrap;
  }
}
.company__info dt {
  font-weight: bold;
  min-width: 150px;
}
@media (max-width: 450px) {
  .company__info dt {
    min-width: 100%;
    margin-bottom: 10px;
  }
}
.company__info:not(:last-child) {
  margin-bottom: 30px;
}
@media (max-width: 450px) {
  .company__info:not(:last-child) {
    margin-bottom: 20px;
  }
}

/* =======================================================

お問い合わせ

======================================================= */
.sec--contact {
  background: #F2F8F7;
  padding: 80px 0;
  margin-bottom: 50px;
}
@media (max-width: 450px) {
  .sec--contact {
    padding: 60px 0;
    margin-bottom: 0;
    max-width: calc(100% + 40px);
  }
}

.sec--contact__head-txt {
  margin-top: 40px;
  font-weight: bold;
  margin-bottom: 20px;
}

.form__item {
  margin-bottom: 35px;
}
@media (max-width: 450px) {
  .form__item {
    margin-bottom: 20px;
  }
}

.form__item__head {
  font-weight: bold;
  font-size: 1.7rem !important;
  margin-bottom: 0.8em !important;
  border: 0 !important;
  padding: 0 !important;
}
@media (max-width: 450px) {
  .form__item__head {
    font-size: 1.4rem !important;
  }
}

.form__item__input {
  border: 0 !important;
  padding: 0 !important;
}

input[type=text],
input[type=email],
input[type=tel],
textarea {
  width: 100% !important;
  padding: 0.8em;
  border: #fff 1px solid;
  border-bottom: #E2EAE9 1px solid;
  background: #fff;
  font-size: 1.6rem !important;
  font: status-bar !important;
  height: unset !important;
}
input[type=text]::-moz-placeholder, input[type=email]::-moz-placeholder, input[type=tel]::-moz-placeholder, textarea::-moz-placeholder {
  color: #AFB7B6;
}
input[type=text]::placeholder,
input[type=email]::placeholder,
input[type=tel]::placeholder,
textarea::placeholder {
  color: #AFB7B6;
}
input[type=text]:focus,
input[type=email]:focus,
input[type=tel]:focus,
textarea:focus {
  border: #1EB068 1px solid;
  outline: rgba(30, 176, 104, 0.1) 5px solid;
}

.ico--required {
  font-size: 0.8em;
  padding: 0.4em;
  background: #DE4D7A;
  color: #fff;
  font-weight: bold;
  margin-right: 10px;
  display: inline-block;
}

.form__link-toPrivacy {
  text-align: center;
  font-weight: bold;
  text-decoration: underline;
  display: block;
  margin-bottom: 40px;
}

.form__btns {
  display: flex;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 450px) {
  .form__btns {
    gap: 10px;
  }
}

.form__btn {
  width: 250px;
  padding: 20px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  border-radius: 30px;
}
@media (max-width: 450px) {
  .form__btn {
    padding: 15px 10px;
    font-size: 1.6rem;
  }
}
.form__btn.reset {
  background-color: #E2EAE9;
  color: #aaa;
}
.form__btn.submit {
  background: linear-gradient(113deg, #1DAF67 0%, #DEE66C 100%);
  color: #fff;
}

div#mfp_overlay_inner {
  padding: 30px !important;
  border-radius: 20px !important;
}
@media (max-width: 450px) {
  div#mfp_overlay_inner {
    padding: 30px 20px !important;
  }
}
div#mfp_overlay_inner h4 {
  font-weight: bold;
  text-align: center;
  margin-bottom: 30px;
  font-size: 2rem;
}

table#mfp_confirm_table tr th,
table#mfp_confirm_table tr td {
  padding: 20px 0;
  font-size: 1.5rem !important;
  border-top: unset !important;
  border-bottom: #E2EAE9 1px solid !important;
  line-height: 1.5em !important;
}

.mfp_buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  padding-top: 30px !important;
}
@media (max-width: 450px) {
  .mfp_buttons {
    gap: 10px;
  }
}

#mfp_button_send {
  width: 200px;
  padding: 20px;
  font-size: 1.8rem;
  font-weight: bold;
  text-align: center;
  border-radius: 30px;
  background: linear-gradient(113deg, #1DAF67 0%, #DEE66C 100%);
  color: #fff;
}
@media (max-width: 450px) {
  #mfp_button_send {
    padding: 15px 10px;
    font-size: 1.6rem;
  }
}

#mfp_button_cancel {
  font-size: 1.8rem;
  color: #aaa;
  width: 100px;
  font-weight: bold;
  text-align: center;
}

/* =======================================================

footer

======================================================= */
.footer {
  background: #1EB068;
  padding: 40px 0;
}
@media (max-width: 450px) {
  .footer {
    padding-bottom: 20px;
  }
}

.footer__logo {
  text-align: center;
  margin-bottom: 30px;
}
@media (max-width: 450px) {
  .footer__logo {
    margin-bottom: 20px;
  }
  .footer__logo img {
    width: 260px;
  }
}

.footer__nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 20px 40px;
  margin-bottom: 40px;
}
@media (max-width: 450px) {
  .footer__nav {
    flex-direction: column;
    align-items: center;
  }
}
.footer__nav li {
  font-weight: bold;
  color: #fff;
  font-size: 1.6rem;
}
@media (max-width: 450px) {
  .footer__nav li {
    font-size: 1.4rem;
  }
}

.footer__address {
  text-align: center;
  color: #fff;
}

/* =======================================================

サブページ

======================================================= */
.sec-privacy,
.sec-thanks {
  padding: 80px 0;
}
@media (max-width: 450px) {
  .sec-privacy,
  .sec-thanks {
    padding: 40px 0;
  }
}

.privacy__content,
.thanks__content {
  padding-top: 60px;
}
.privacy__content ol,
.thanks__content ol {
  list-style-type: decimal;
}
.privacy__content ol li,
.thanks__content ol li {
  padding-top: 1.2em;
  margin-bottom: 0.6em;
  margin-left: 1.5em;
}

.thanks__txt {
  text-align: center;
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: 30px;
}
@media (max-width: 450px) {
  .thanks__txt {
    font-size: 1.6rem;
  }
}

.thanks__link {
  text-align: center;
  display: block;
  font-size: 1.6rem;
  font-weight: bold;
  color: #1EB068;
  text-decoration: underline;
}