@charset "UTF-8";
html, body, div, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, img, dl, dt, dd, ol, ul, li, form, label, legend, table, tbody, tr, th, td, article, embed, footer, header, hgroup, nav, section, time {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
main, article, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  vertical-align: bottom;
  max-width: 100%;
}

* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
  color: #444;
  line-height: 1.7;
  background: #F9F8F4;
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", sans-serif;
  font-weight: 400;
  word-break: break-all;
  letter-spacing: 0.05em;
  -webkit-text-size-adjust: 100%;
  padding-top: 80px;
}
@media screen and (min-width:960px) {
  body {
    font-size: 1.6rem;
    /* min-width: 1040px;
    overflow: auto; */
  }
}

:focus {
  outline: none;
}

a {
  color: #444;
  transition: all 0.3s;
  text-decoration: none;
}

input {
  font-family: inherit;
}

button,
input[type=submit] {
  cursor: pointer;
  font-family: inherit;
  font-size: initial;
}

select {
  cursor: pointer;
  font-family: inherit;
}

label {
  /* cursor: pointer; */
  font-family: inherit;
}

textarea {
  font-family: inherit;
}

strong span {
  font-weight: bold;
}

/*----------
layout
----------*/
/*l-header*/
.l-header {
  transition: all 0.3s;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}
.l-header.fixed {
  background: #fff;
  box-shadow: 0 0 6px rgba(68, 68, 68, 0.15);
}
.l-header__inner {
  height: 80px;
  padding: 0 15px;
  display: flex;
  align-items: center;
}
.fixed .l-header__inner {
  height: 60px;
}
.l-header__logo {
  display: flex;
  align-items: center;
}
.l-header__logo a {
  width: 125px;
  flex: 0 0 auto;
  margin: 0 10px 0 0;
}
.fixed .l-header__logo a {
  width: 120px;
}
.l-header__logo span {
  font-size: 1rem;
  font-family: "Zen Maru Gothic";
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.5;
}
@media screen and (min-width:960px) {
  .l-header__inner {
    height: 120px;
    padding: 0 20px;
    justify-content: space-between;
  }
  .fixed .l-header__inner {
    height: 100px;
  }
  .l-header__logo {
    flex: 0 0 auto;
    margin: 0 40px 0 0;
  }
  .l-header__logo a {
    width: 200px;
    margin: 0 20px 0 0;
  }
  .fixed .l-header__logo a {
    width: 160px;
  }
  .l-header__logo span {
    font-size: 1.4rem;
  }
}

/*l-nav*/
.l-nav {
  position: fixed;
  top: 60px;
  right: 0;
  z-index: 11;
  width: 100%;
  height: calc(100vh - 60px);
  height: calc(100dvh - 60px);
  overflow: hidden;
  display: none;
}
.l-nav__btn {
  position: absolute;
  z-index: 1;
  top: 50%;
  right: 10px;
  width: 50px;
  height: 50px;
  color: #40B041;
  transform: translateY(-50%);
  transition: none;
}
.l-nav__btn span {
  line-height: 1;
  font-size: 1rem;
  letter-spacing: 0.1em;
  position: absolute;
  bottom: 10px;
  left: calc(50% + 0.05em);
  transform: translateX(-50%);
  font-weight: 700;
  white-space: nowrap;
  font-family: "Zen Maru Gothic";
}
.l-nav__btn::before, .l-nav__btn::after {
  content: "";
  width: 24px;
  height: 3px;
  background: #40B041;
  border-radius: 30px;
  position: absolute;
  top: 12px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
}
.l-nav__btn::after {
  top: 20px;
}
.l-nav__btn.active::before, .l-nav__btn.active::after {
  content: "";
  top: 16px;
  transform: translateX(-50%) rotate(30deg);
}
.l-nav__btn.active::after {
  top: 16px;
  transform: translateX(-50%) rotate(-30deg);
}
.l-nav__overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(68, 68, 68, 0.2);
}
.l-nav__body {
  position: absolute;
  background-color: #fff;
  top: 0;
  right: 0;
  width: fit-content;
  height: 100%;
  overflow: auto;
  padding: 20px 30px 30px;
  transform: translateX(100%);
  transition: all 0.3s;
}
.active .l-nav__body {
  transform: translateX(0);
}
.l-nav__body__menu li {
  padding: 10px 0;
}
.l-nav__body__menu a {
  display: block;
  font-size: 1.5rem;
  font-weight: 700;
  font-family: "Zen Maru Gothic";
}
.l-nav__body__cta {
  margin: 20px 0 0;
}
.l-nav__body__cta .c-btn1 {
  width: auto;
  letter-spacing: 0.05em;
  font-size: 1.6rem;
}
@media screen and (min-width:960px) {
  .l-nav {
    position: static;
    width: auto;
    height: auto;
    display: block !important;
  }
  .l-nav__btn {
    display: none;
  }
  .l-nav__overlay {
    display: none;
  }
  .l-nav__body {
    position: static;
    background: none;
    height: 100%;
    padding: 0;
    transform: none !important;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .l-nav__body__menu li {
    padding: 5px;
    display: inline-block;
    line-height: 1;
  }
  .l-nav__body__menu a {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    font-family: "Zen Maru Gothic";
  }
  .l-nav__body__cta {
    margin: 0 0 0 20px;
    flex: 0 0 auto;
  }
  .l-nav__body__cta .c-btn1 {
    font-size: 1.4rem;
    height: 36px;
  }
  .l-nav__body__cta .c-btn1 span {
    display: none;
  }
}

/*l-footer*/
.l-footer {
  text-align: center;
  padding: 20px 0;
}
.l-footer__logo {
  width: 125px;
  margin: 0 auto;
}
.l-footer__address {
  margin: 20px 0;
}
.l-footer__address__item:not(:first-of-type) {
  margin-top: 20px;
  padding-top: 15px;
  border-top: 1px solid #ccc;
}
.l-footer__address__item .map {
  position: relative;
  padding-top: 70%;
  margin: 5px 0 0;
}
.l-footer__address__item .map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.l-footer__company {
  font-size: 1.1rem;
}
@media screen and (min-width:580px) {
  .l-footer {
    text-align: center;
    padding: 30px 0;
  }
  .l-footer__logo {
    width: 160px;
  }
  .l-footer__address {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
  }
  .l-footer__address__item {
    width: 49%;
    margin: 0 0 2% !important;
    border: 1px solid #ccc !important;
    border-radius: 6px;
    padding: 15px !important;
  }
  .l-footer__company {
    font-size: 1.2rem;
  }
}

/*----------
project
----------*/
/*p-mv*/
.p-mv {
  padding: 5px 0 60px;
}
.p-mv__catch {
  font-size: 2.5rem;
  font-family: "Zen Maru Gothic";
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.4;
  margin: 0 0 20px;
  max-width: 70%;
}
.p-mv__img {
  position: relative;
  width: calc(100% + 15px);
  margin: 0 0 25px;
}
.p-mv__img__welcome {
  width: 28%;
  max-width: 100px;
  transform: rotate(-15deg);
  position: absolute;
  right: 15px;
  bottom: calc(100% + 10px);
  z-index: 1;
}
.p-mv__img__txt {
  position: absolute;
  width: 46%;
  bottom: 20px;
  left: 0;
  z-index: 1;
}
.p-mv__img__bg {
  height: calc((100vw - 15px) * 0.556);
  width: 100%;
  object-fit: cover;
  object-position: 0 0;
  border-radius: 30px 0 0 30px;
}
.p-mv__desc {
  font-size: 1.6rem;
  line-height: 1.8;
  margin: 0 0 30px;
}
.p-mv__cta .c-btn1 {
  letter-spacing: 0.05em;
}
@media screen and (min-width:580px) {
  .p-mv {
    padding: 5px 0 60px;
  }
  .p-mv__catch {
    max-width: 100%;
  }
  .p-mv__img__welcome {
    max-width: 160px;
    bottom: 10px;
    right: 20px;
  }
  .p-mv__img__txt {
    max-width: 280px;
    top: initial;
    bottom: 20px;
    transform: none;
  }
}
@media screen and (min-width:960px) {
  .p-mv {
    padding: 40px 0 80px;
  }
  .p-mv__inner {
    position: relative;
    height: 660px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }
  .p-mv__catch {
    font-size: 4rem;
    margin: 0 0 40px;
    max-width: 360px;
  }
  .p-mv__img {
    position: absolute;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    width: calc(100% - 430px);
    margin: 0;
    height: 580px;
    overflow: hidden;
    border-radius: 30px;
  }
  .p-mv__img__welcome {
    width: 180px;
    right: 20px;
    bottom: 20px;
  }
  .p-mv__img__txt {
    max-width: initial;
    width: 340px;
    top: 70px;
    bottom: initial;
  }
  .p-mv__img__bg {
    border-radius: 0;
    object-fit: initial;
    max-width: initial;
    width: initial;
    height: 580px;
    position: absolute;
    left: 50%;
    transform: translateX(-48%);
  }
  .p-mv__desc {
    font-size: 1.8rem;
    margin: 0 0 50px;
    width: 360px;
  }
  .p-mv__cta {
    width: 360px;
  }
}

/*p-merit*/
.p-merit .c-tit1 .en {
  color: #E57C14;
}
.p-merit__block {
  margin: 0 0 50px;
}
.p-merit__block:last-of-type {
  margin: 0;
}
.p-merit__block__img {
  margin: 0 0 20px;
}
.p-merit__block__img img {
  width: 100%;
  height: calc((100vw - 30px) * 0.5);
  object-fit: cover;
  border-radius: 30px;
}
.p-merit__block__txt__tit .mark {
  display: block;
  background: #E57C14;
  color: #fff;
  font-size: 1rem;
  letter-spacing: 0;
  width: fit-content;
  padding: 0 5px;
  transform: rotate(-6deg);
  margin: 0 0 5px;
}
.p-merit__block__txt p:not(:first-of-type) {
  margin: 1.5em 0 0;
}
@media screen and (min-width:580px) {
  .p-merit__block {
    margin: 0 0 50px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .p-merit__block:last-of-type {
    margin: 0;
  }
  .p-merit__block:nth-of-type(odd) .p-merit__block__img {
    order: 2;
  }
  .p-merit__block:nth-of-type(odd) .p-merit__block__txt {
    order: 1;
  }
  .p-merit__block__img {
    margin: 0;
    width: 50%;
  }
  .p-merit__block__img img {
    height: 400px;
  }
  .p-merit__block__txt {
    width: calc(50% - 30px);
  }
}
@media screen and (min-width:960px) {
  .p-merit__block {
    margin: 0 0 100px;
  }
  .p-merit__block__txt {
    width: calc(50% - 50px);
  }
  .p-merit__block__txt__tit .mark {
    font-size: 1.2rem;
  }
}

/*p-about*/
.p-about .c-tit1 .en {
  color: #40B041;
}
.p-about__block {
  margin: 0 0 50px;
}
.p-about__block__img {
  margin: 0 0 20px;
}
.p-about__block__img img {
  width: 100%;
  height: calc((100vw - 30px) * 0.5);
  max-height: 400px;
  object-fit: cover;
  border-radius: 30px;
}
.p-about__block p:not(:first-of-type) {
  margin: 1.5em 0 0;
}
@media screen and (min-width:960px) {
  .p-about__block {
    margin: 0 0 80px;
  }
  .p-about__block__img {
    margin: 0 0 50px;
  }
}
.p-about__num .c-tit2 {
  text-align: center;
  margin-bottom: 10px;
}
.p-about__num__list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.p-about__num__list li {
  font-family: "Zen Maru Gothic";
  font-weight: 700;
  background: #fff;
  border-radius: 10px;
  width: calc((100% - 15px) / 2);
  margin: 15px 0 0;
  padding: 10px;
  display: flex;
  align-items: center;
  text-align: center;
  line-height: 1;
}
.p-about__num__list li .list-name {
  width: 50%;
}
.p-about__num__list li .list-name img {
  width: 40px;
  margin: 0 0 2px;
}
.p-about__num__list li .list-name h3 {
  font-size: 1.2rem;
}
.p-about__num__list li .list-cont {
  width: 50%;
  font-size: 1.5rem;
}
.p-about__num__list li .list-cont strong {
  font-size: 2.5rem;
}
@media screen and (min-width:580px) {
  .p-about__num__list li {
    width: calc((100% - 30px) / 3);
  }
}
@media screen and (min-width:960px) {
  .p-about__num .c-tit2 {
    text-align: left;
  }
  .p-about__num__list li {
    border-radius: 10px;
    width: calc((100% - 60px) / 3);
    margin: 30px 0 0;
    padding: 20px 30px;
  }
  .p-about__num__list li .list-name img {
    width: 80px;
    margin: 0 0 5px;
  }
  .p-about__num__list li .list-name h3 {
    font-size: 2rem;
  }
  .p-about__num__list li .list-cont {
    font-size: 2.8rem;
  }
  .p-about__num__list li .list-cont strong {
    font-size: 4.6rem;
  }
}

/*p-greeting*/
.p-greeting .c-tit1 .en {
  color: #448BC9;
}
.p-greeting__block__img {
  margin: 0 0 30px;
  text-align: center;
}
.p-greeting__block__img img {
  width: 200px;
  border-radius: 100%;
}
.p-greeting__block__img h3 {
  margin: 15px 0 0;
  font-family: "Zen Maru Gothic";
  font-weight: 700;
}
.p-greeting__block p:not(:first-of-type) {
  margin: 1.5em 0 0;
}
@media screen and (min-width:580px) {
  .p-greeting__block__img {
    float: right;
    width: 30%;
    margin: 0 0 20px 20px;
  }
  .p-greeting__block__img img {
    width: 100%;
  }
  .p-greeting__block__img h3 {
    margin: 15px 0 0;
  }
}
@media screen and (min-width:960px) {
  .p-greeting__block__img {
    margin: 0 0 30px 30px;
  }
}

/*p-service*/
.p-service .c-tit1 .en {
  color: #C31920;
}
.p-service__block__item {
  margin: 0 0 40px;
}
.p-service__block__item:last-of-type {
  margin: 0;
}
.p-service__block__item__img {
  margin: 0 0 20px;
}
.p-service__block__item__img img {
  width: 100%;
  height: calc((100vw - 30px) * 0.5);
  object-fit: cover;
  border-radius: 30px;
}
.p-service__block__item p:not(:first-of-type) {
  margin: 1.5em 0 0;
}
@media screen and (min-width:580px) {
  .p-service__block {
    display: flex;
    justify-content: space-between;
  }
  .p-service__block__item {
    width: 49%;
    margin: 0;
  }
  .p-service__block__item__img img {
    height: 240px;
  }
}
@media screen and (min-width:960px) {
  .p-service__block__item {
    width: calc(50% - 20px);
  }
  .p-service__block__item__img {
    margin: 0 0 30px;
  }
  .p-service__block__item__img img {
    height: 300px;
  }
  .p-service__block__item .c-tit2 {
    font-size: 2.4rem;
    margin: 0 0 20px;
  }
}

/*p-voice*/
.p-voice .c-tit1 .en {
  color: #494599;
}
.p-voice__block {
  margin: 0 0 40px;
  padding: 0 0 30px;
  border-bottom: 1px solid #ccc;
}
.p-voice__block:last-of-type {
  margin: 0;
  padding: 0;
  border: none;
}
.p-voice__block__img {
  width: 150px;
  float: right;
  margin: 0 0 15px 15px;
}
.p-voice__block__img img {
  width: 150px;
  height: 150px;
  object-fit: cover;
  border-radius: 30px;
}
.p-voice__block__name {
  margin: 10px 0 0;
  font-family: "Zen Maru Gothic";
  text-align: center;
}
.p-voice__block__name .mark {
  background: #494599;
  color: #fff;
  display: block;
  line-height: 1;
  padding: 0.5em 1em;
  font-size: 0.9rem;
  margin: 0 auto 2px;
  width: fit-content;
}
.p-voice__block__name h2 {
  font-size: 1.5rem;
  font-weight: 700;
}
.p-voice__block__txt__tit {
  color: #494599;
  margin: 0 0 10px !important;
  font-size: 2rem !important;
}
.p-voice__block__txt__tit:not(:first-of-type) {
  margin: 30px 0 10px !important;
}
.p-voice__block__txt__q {
  margin: 0 0 10px !important;
  padding: 0 0 0 1.6em;
  position: relative;
  font-weight: 700;
  font-size: 1.6rem;
  line-height: 1.5;
  font-family: "Zen Maru Gothic";
}
.p-voice__block__txt__q::before {
  content: "Q";
  background: #494599;
  width: 2rem;
  height: 2rem;
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: absolute;
  z-index: 1;
  top: 0.25em;
  left: 0;
  border-radius: 100%;
}
.p-voice__block__txt__q:not(:first-of-type) {
  margin: 20px 0 10px !important;
}
.p-voice__block__txt p + p {
  margin: 1.5em 0 0;
}
@media screen and (min-width:580px) {
  .p-voice__block__img {
    width: 40%;
  }
  .p-voice__block__img img {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width:960px) {
  .p-voice__block {
    margin: 0 0 80px;
    padding: 0 0 60px;
  }
  .p-voice__block__img {
    margin: 0 0 30px 30px;
  }
  .p-voice__block__name {
    margin: 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .p-voice__block__name .mark {
    padding: 0.5em 1em;
    font-size: 1.2rem;
    margin: 0 10px 0 0;
  }
  .p-voice__block__name h2 {
    font-size: 1.8rem;
  }
  .p-voice__block__txt__tit {
    margin: 0 0 0.8em !important;
    font-size: 2.8rem !important;
  }
  .p-voice__block__txt__tit:not(:first-of-type) {
    margin: 1.5em 0 0.8em !important;
  }
  .p-voice__block__txt__q {
    margin: 0 0 0.8em !important;
    padding: 0 0 0 1.6em;
    font-size: 2rem;
  }
  .p-voice__block__txt__q::before {
    width: 2.4rem;
    height: 2.4rem;
    font-size: 1.6rem;
  }
  .p-voice__block__txt__q:not(:first-of-type) {
    margin: 2em 0 1em !important;
  }
}

/*p-faq*/
.p-faq .c-tit1 .en {
  color: #494599;
}
.p-faq__block {
  width: fit-content;
  margin: 0 auto;
}
.p-faq__block dl:not(:first-of-type) {
  margin-top: 30px;
}
.p-faq__block dl dt {
  padding: 0 0 0 30px;
  position: relative;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.5;
  font-family: "Zen Maru Gothic";
}
.p-faq__block dl dt::before {
  content: "Q";
  background: #494599;
  border: 1px solid #494599;
  width: 2rem;
  height: 2rem;
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  position: absolute;
  z-index: 1;
  top: 0.25em;
  left: 0;
  border-radius: 100%;
}
.p-faq__block dl dd {
  margin: 10px 0 0;
  padding: 0 0 0 30px;
  position: relative;
}
.p-faq__block dl dd::before {
  content: "A";
  background: #fff;
  border: 1px solid #494599;
  width: 2rem;
  height: 2rem;
  font-size: 1.2rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #494599;
  position: absolute;
  font-weight: 700;
  z-index: 1;
  top: 0;
  left: 0;
  border-radius: 100%;
}
@media screen and (min-width:960px) {
  .p-faq dd::before {
    top: 0.25em !important;
  }
}

/*p-flow*/
.p-flow .c-tit1 .en {
  color: #E57C14;
}
.p-flow__block__item {
  background: #fff;
  border-radius: 10px;
  margin: 0 0 25px;
  padding: 15px;
  position: relative;
}
.p-flow__block__item::after {
  content: "";
  border-style: solid;
  border-width: 8px 9px 0 9px;
  border-color: #E57C14 transparent transparent transparent;
  position: absolute;
  bottom: -17px;
  left: 50%;
  transform: translateX(-50%);
}
.p-flow__block__item:last-of-type {
  margin: 0;
}
.p-flow__block__item:last-of-type::after {
  display: none;
}
.p-flow__block__item .c-tit2 {
  font-size: 1.5rem;
  margin: 0 0 5px;
}
.p-flow__block__item p {
  font-size: 1.3rem;
}
@media screen and (min-width:960px) {
  .p-flow__block {
    display: flex;
    justify-content: space-between;
  }
  .p-flow__block__item {
    width: calc((100% - 90px) / 4);
    margin: 0;
    padding: 20px;
  }
  .p-flow__block__item::after {
    bottom: 50%;
    left: calc(100% + 7px);
    transform: translateY(50%) rotate(-90deg);
  }
  .p-flow__block__item .c-tit2 {
    font-size: 1.8rem;
    margin: 0 0 10px;
  }
  .p-flow__block__item p {
    font-size: 1.4rem;
  }
}

/*p-job*/
.p-job .c-tit1 .en {
  color: #448BC9;
}
.p-job__block {
  max-width: 800px;
  margin: 0 auto;
}
.p-job__block__item {
  border-top: 1px solid #448BC9;
  padding: 20px 10px;
}
.p-job__block__item:last-of-type {
  padding-bottom: 0;
}
.p-job__block__item dt {
  font-weight: bold;
  margin: 0 0 10px;
  font-size: 1.6rem;
}
.p-job__block__item dd p:not(:first-of-type) {
  margin: 1em 0 0;
}
@media screen and (min-width:960px) {
  .p-job__block__item {
    padding: 30px;
    display: flex;
  }
  .p-job__block__item dt {
    margin: 0;
    width: 200px;
  }
  .p-job__block__item dd {
    width: calc(100% - 200px);
  }
}

/*p-other*/
.p-other {
  background: #f5f5f5;
}
.p-other__block__item {
  padding: 15px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 0 0 6px rgba(68, 68, 68, 0.15);
}
.p-other__block__item:nth-of-type(n+2) {
  margin: 20px 0 0;
}
.p-other__block__item__img {
  overflow: hidden;
  border-radius: 8px;
  display: block;
}
.p-other__block__item__tit {
  font-weight: bold;
  font-size: 1.6rem;
  margin: 10px 0 5px;
}
.p-other__block__item__price {
  margin: 5px 0 0;
  display: flex;
  align-items: center;
}
.p-other__block__item__price .job-type {
  background: rgba(68, 139, 201, 0.2);
  padding: 0.1em 1em;
  font-size: 1.2rem;
  border-radius: 4px;
  margin: 0 10px 0 0;
}
.p-other__block__item__link {
  margin: 20px 0 0;
}
.p-other__block__item__link a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 50px;
  padding: 0 2em;
  background: #448BC9;
  color: #fff;
  font-size: 1.8rem;
  font-weight: bold;
  margin: 0 auto;
  border-radius: 30px;
}
@media screen and (min-width:960px) {
  .p-other {
    padding: 60px 0 !important;
  }
  .p-other__block {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    margin: 0 10px;
  }
  .p-other__block__item {
    width: calc((100% - 60px) / 3);
    padding: 15px;
    margin: 0 10px;
  }
  .p-other__block__item:nth-of-type(n+2) {
    margin: 0 10px;
  }
  .p-other__block__item:nth-of-type(n+4) {
    margin-top: 20px;
  }
  .p-other__block__item__area {
    font-size: 1.4rem;
  }
  .p-other__block__item__price {
    display: block;
    font-size: 1.4rem;
  }
  .p-other__block__item__price .job-type {
    display: block;
    width: fit-content;
    margin: 0 0 5px;
  }
}

/*p-entry*/
.p-entry {
  background: url(../img/cta-line.svg) repeat-x top left/auto 4px, url(../img/cta-line.svg) repeat-x bottom left/auto 4px;
}
.p-entry .c-tit1 .en {
  color: #40B041;
}
.p-entry__bnr {
  margin: 10px auto 20px;
}
@media screen and (min-width:960px) {
  .p-entry__bnr {
    margin: 0 auto 40px;
  }
}
.p-entry__form {
  background: #fff;
  border-radius: 30px;
  padding: 10px 20px 20px;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width:959px) {
  .p-entry__form table,
  .p-entry__form tbody,
  .p-entry__form tr,
  .p-entry__form th,
  .p-entry__form td {
    display: block;
  }
}
.p-entry__form table {
  width: 100%;
}
.p-entry__form table th {
  text-align: left;
  padding: 0 0 10px;
  font-weight: bold;
  white-space: nowrap;
}
.p-entry__form table th.hissu::before, .p-entry__form table th.any::before {
  content: "必須";
  background: #C31920;
  color: #fff;
  font-size: 1.1rem;
  display: inline-block;
  padding: 5px;
  border-radius: 4px;
  line-height: 1;
  margin: 0 10px 0 0;
  vertical-align: middle;
}
.p-entry__form table th.any::before {
  background: #999999;
  content: "任意";
}
.p-entry__form table td {
  padding: 0 0 20px;
}
.p-entry__form table p.notice {
  font-size: 90%;
  margin: 0.8em 0 0;
  line-height: 1.5;
}
@media screen and (min-width:960px) {
  .p-entry__form {
    padding: 40px;
  }
  .p-entry__form table th {
    text-align: left;
    padding: 10px 0;
  }
  .p-entry__form table td {
    padding: 10px 0 10px 20px;
  }
}
.p-entry .mfp_element_text,
.p-entry .mfp_element_email,
.p-entry .mfp_element_tel,
.p-entry .mfp_element_textarea {
  width: 100% !important;
  max-width: inherit;
  border: none;
  border-radius: 4px;
  font-size: 1.6rem;
  padding: 5px 10px;
  font-family: inherit;
  box-shadow: none;
  border: 1px solid #ccc;
  margin: 0;
}
.p-entry .mfp_element_text.input-min {
  width: 5em !important;
}
.p-entry div.mfp_err {
  color: #C31920;
  padding: 5px 0 0;
  font-weight: bold;
  background: none;
}
.p-entry .input-radio label.mfp_not_checked {
  padding: 5px 10px !important;
}
.p-entry .input-radio label.mfp_checked {
  border: 1px solid #448bc9 !important;
  padding: 5px 10px !important;
  background-color: rgba(68, 139, 201, 0.2) !important;
  box-shadow: none !important;
}
.p-entry .input-select select {
  border-radius: 4px;
  font-size: 1.6rem;
  padding: 5px 10px;
  font-family: inherit;
  box-shadow: none;
  border: 1px solid #ccc;
  margin: 2px 0;
}
.p-entry__check {
  text-align: center;
  margin: 0 0 15px;
}
.p-entry__check label.mfp_not_checked {
  border: none !important;
  padding: 5px 10px !important;
}
.p-entry__check label.mfp_checked {
  border: none !important;
  padding: 5px 10px !important;
  background-color: rgba(68, 139, 201, 0.2) !important;
  box-shadow: none !important;
}
.p-entry .mfp_element_submit.c-btn1 {
  border: none;
  text-shadow: none;
  transition: all 0.3s;
}
.p-entry .mfp_element_submit.c-btn1:hover {
  background: #40B041;
  box-shadow: none;
}

/* .p-contact-form table {
  width: 100%;
}
.p-contact-form th {
  width: 280px;
  padding: 15px 0 15px;
}
.p-contact-form td {
  padding: 15px 0 15px 40px;
} */
/*p-privacy*/
.p-privacy {
  margin: 15px 0;
}
.p-privacy__inner {
  height: 180px;
  font-size: 1.2rem;
  padding: 15px;
  overflow-y: auto;
  background: #f5f5f5;
}
.p-privacy__tit {
  font-size: 1.6rem;
  font-weight: bold;
  margin: 0 0 1em;
  text-align: center;
}
.p-privacy__subtit {
  font-size: 1.4rem;
  font-weight: bold;
  border-left: 4px solid #ccc;
  padding: 0 0 0 10px;
  margin: 2em 0 1em;
}
.p-privacy__body ul {
  list-style: disc;
  padding-left: 1.5em;
  margin: 1em 0 0;
}
@media screen and (min-width:960px) {
  .p-privacy__inner {
    height: 240px;
    overflow-y: auto;
    font-size: 1.4rem;
    border: 1px solid #ccc;
    padding: 20px;
    margin: 0 0 30px;
  }
  .p-privacy__subtit {
    font-size: 1.6rem;
  }
}

/*確認画面*/
div#mfp_overlay_inner {
  border-radius: 30px;
  padding: 20px 15px;
}
div#mfp_overlay_inner h4 {
  font-weight: bold;
  margin: 0 0 5px;
  text-align: center;
}

table#mfp_confirm_table tr.mfp_colored {
  background: rgba(64, 176, 65, 0.1);
}

table#mfp_confirm_table tr td {
  line-height: 1.5em;
  word-break: break-all;
}

table#mfp_confirm_table tr th,
table#mfp_confirm_table tr td {
  border: none;
}

div.mfp_buttons button#mfp_button_send,
div.mfp_buttons button#mfp_button_cancel {
  border: none;
  text-shadow: none;
  font-family: inherit;
  background: rgba(204, 204, 204, 0.4);
}

div.mfp_buttons button#mfp_button_send {
  background: #40B041;
  color: #fff;
}

/* p-thanks */
.p-thanks {
  padding: 0 !important;
}
.p-thanks__cta {
  margin: 30px 0 0;
}
@media screen and (min-width:580px) {
  .p-thanks__txt {
    text-align: center;
  }
}

/*----------
compornent
----------*/
.c-inner {
  padding: 0 15px;
}
@media screen and (min-width:960px) {
  .c-inner {
    padding: 0 20px;
    max-width: 1040px;
    margin: 0 auto;
  }
}

.c-section {
  padding: 40px 0 60px;
}
@media screen and (min-width:960px) {
  .c-section {
    padding: 80px 0 120px;
  }
}

.c-bg {
  background: #fff;
}

.c-tit1 {
  letter-spacing: 0.1em;
  font-family: "Zen Maru Gothic";
  text-align: center;
  margin: 0 0 30px;
}
.c-tit1 .en {
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  color: #40B041;
  line-height: 1;
  margin: 0 0 5px;
}
.c-tit1 .jp {
  font-weight: 700;
  font-size: 2rem;
  line-height: 1.4;
}
@media screen and (min-width:960px) {
  .c-tit1 {
    margin: 0 0 60px;
  }
  .c-tit1 .en {
    font-size: 2rem;
    margin: 0 0 5px;
  }
  .c-tit1 .jp {
    font-size: 3.6rem;
  }
}

.c-tit2 {
  font-size: 1.8rem;
  line-height: 1.5;
  font-weight: 700;
  font-family: "Zen Maru Gothic";
  margin: 0 0 15px;
}
@media screen and (min-width:960px) {
  .c-tit2 {
    font-size: 2.8rem;
    margin: 0 0 30px;
  }
}

.c-btn1 {
  background: #40B041;
  border-radius: 30px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 2rem;
  font-family: "Zen Maru Gothic";
  font-weight: 700;
  letter-spacing: 0.25em;
  width: 460px;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (min-width:960px) {
  .c-btn1:hover {
    background: #5ec55f;
  }
}

.c-btn-s {
  height: 50px;
  font-size: 1.8rem;
  padding: 0 1.5em;
  letter-spacing: 0.15em;
}

.c-cta {
  background: url(../img/cta-line.svg) repeat-x top left/auto 4px, url(../img/cta-line.svg) repeat-x bottom left/auto 4px, #D9ECDA;
  padding: 25px 0;
}
.c-cta__inner {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  align-items: center;
  max-width: 460px;
  margin: 0 auto;
}
.c-cta__img {
  flex: 0 0 auto;
  padding: 0 10px 0 20px;
}
.c-cta__img img {
  width: 140px;
}
.c-cta__txt {
  font-weight: 700;
  font-family: "Zen Maru Gothic";
  font-size: 1.7rem;
  line-height: 1.3;
  flex: 1;
  letter-spacing: 0.1em;
}
.c-cta__txt br {
  display: none;
}
.c-cta__btn {
  width: 100%;
}
.c-cta__btn .c-btn1 {
  letter-spacing: 0.1em;
}
@media screen and (min-width:960px) {
  .c-cta {
    padding: 50px 0;
  }
  .c-cta__inner {
    display: block;
    margin: 0 auto;
    position: relative;
    max-width: 1000px;
    text-align: center;
  }
  .c-cta__img {
    padding: 0;
    position: absolute;
    left: -20px;
    bottom: -46px;
  }
  .c-cta__img img {
    width: 240px;
  }
  .c-cta__txt {
    font-size: 3rem;
    padding: 0 0 20px;
    line-height: 1.5;
  }
  .c-cta__txt br {
    display: inline;
  }
}

/*----------
utility
----------*/
.u-dis__ib {
  display: inline-block;
}

.u-indent {
  text-indent: -1em;
  padding-left: 1em;
}

@media screen and (max-width:579px) {
  .u-pc {
    display: none;
  }
}
@media screen and (min-width:580px) {
  .u-sp {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */