@charset "utf-8";
/*
Theme Name:mrp-child
Template:mrp
Version: 1.0.0
*/
/*
DesignCode CSS: ver 0.01
*/
/*------------------------------------------------------
Theme Material
------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=League+Spartan:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Gantari:wght@100..900&display=swap');

:root {
  /*------▼基本設定▼------*/
  --color-font: #333;
  --color-primary: #3C513D;       /* rgb(60 81 61) */
  --color-primary-shade: #5E745A; /* rgb(94 116 90) */
  --color-primary-tint: #5E745A;
  --color-secondary: #433F3F;     /* rgb(67 63 63) */
  /*------▼ヘッダー設定▼------*/
  --header-background: #F4F3F2;
  --header-color-font: #000;
  --header-color-primary: #3C513D;
  --header-color-primary-tint:#5E745A;
  /*------▼フッター設定▼------*/
  --footer-background: #3C513D;
  /*------▼フォント設定▼------*/
  --font-family03: 'League Spartan','Noto Sans JP',sans-serif;
  --font-family04: 'Gantari','Noto Sans JP',sans-serif;

  --rem32: min(calc(3.2rem + (1vw - 1.92rem) * 0.6472), 3.2rem);/*3.2rem-2.2rem (1920-375)*/
}

/*---------coln02-----------*/
  
.post .col2_list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}
.post .col2_list > li {
  width: 48%;
  margin-bottom: 2%;
}
@media print, screen and (max-width: 768px) {
  .post .col2_list > li {
    width: 100%;
    margin-bottom: 5%;
  }
  .post .col2_list > li:last-child {
    margin-bottom: 0;
  }
}

/*---------col03-----------*/

.post .col3_list {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  flex-wrap: wrap;
}
.post .col3_list > li {
  width: 31%;
  margin-bottom: 2%;
}
.post .col3_list::before {
  content: "";
  display: block;
  width: 32%;
  height: 0;
  order: 1;
}
.post .col3_list:after {
  content: "";
  display: block;
  width: 32%;
  height: 0;
}
@media print, screen and (max-width: 768px) {
  .post .col3_list > li {
    width: 90%;
    margin: var(--px40) auto;
  }
  .post .col3_list::before, .post .col3_list:after {
    content: none;
  }
}
@media print, screen and (max-width: 414px) {
  .post .col3_list > li {
    width: 100%;
  }
  .post .col3_list > li:last-child {
    margin-bottom: 0;
  }
}


/*--メディアクエリ--------------------------------------------*/
@media print, screen and (min-width: 1024px) {}
@media print, screen and (max-width: 1023px) {}
@media print, screen and (min-width: 769px) {}
@media print, screen and (max-width: 768px) {}

h1.title.front-post {
  display: none;
}

.post h2 {
  font-size: var(--rem30);
  font-weight: 400;
  color: var(--color-font);
}
.post h2::after {
  width: 3em;
  height: 2px;
  margin: 1.2em auto 0;
}

h1.title.top-loop, h1.title.bottom-loop,
.cta01 h2, h2.clr_pri {
  font-family: var(--font-family03);
  font-weight: 300;
  font-size: var(--rem40);
  letter-spacing: .1em;
  color: var(--color-primary);
}
h1.title.top-loop::after,
h1.title.bottom-loop::after,
.cta01 h2::after, h2.clr_pri::after {
  content: '';
  position: relative;
  visibility: visible;
  display: block;
  width: 3.6em;
  height: 2px;
  background: var(--color-primary-shade);
  margin: 0.3em auto 0;
}

.post h3 {
  font-size: var(--rem20);
  font-weight: 400;
  color: var(--color-font);
  border-bottom: 1px solid var(--color-primary);
}

.post p {
  line-height: 2;
}

/* btn */
.linkBtn, .post .linkBtn {
  max-width: 380px;
  text-align: left;
  letter-spacing: 1px;
  background: var(--color-secondary);
  padding: 20px 40px 20px 50px;
  border-radius: 0;
}
.linkBtn::after, input.linkBtn::after, .post .linkBtn::after {
  right: 36px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
}
.linkBtn:hover, .post .linkBtn:hover {
  background: rgb(67 63 63 / 0.6);
}

.linkBtn.clr_pri {
  background: var(--color-primary);
}
.linkBtn.clr_pri:hover {
  background: var(--color-primary-tint);
}

/* table */
.post table th {
  font-size: var(--rem16);
  font-weight: 700;
  background: #f2f2f2;
}
.post table td {
  font-size: var(--rem16);
}

/*---table_style04-------------------------------------*/

.post table.table_style04 th {
  background-color: transparent;
}
.post table.table_style04, .post table.table_style04 th, .post table.table_style04 td{
  border: none;
}
table.table_style04 tr:first-child {
  border-top: 1px solid #ababab;
}
table.table_style04 tr:last-child {
  border-bottom: 1px solid #ababab;
}
table.table_style04 tr {
  border-top: 1px dashed #ababab;
  letter-spacing: 1px;
}
table.table_style04 th, table.table_style04 td {
  padding: 50px 24px;
}
table.table_style04 th {
  position: relative;
  z-index: 0;
}
table.table_style04 th:before {
  position: absolute;
  content: "";
  background: rgb(250 250 250 / 0.5);
  top: 7px;
  left: 0;
  bottom: 7px;
  width: 100%;
  height: auto;
  z-index: -1;
}

@media print, screen and (max-width: 768px) {
  table.table_style04 th, table.table_style04 td {
    padding: 35px 10px;
    font-size: 1.4rem;
    vertical-align: middle;
  }
  table.table_style04 th {
    width: 32%;
  }
  table.table_style04 td {
    width: 68%;
  }
}

/* area */
.widearea {
  margin-left: calc(((100vw - 100%) / 2) * -1);
  margin-right: calc(((100vw - 100%) / 2) * -1);
}
.widearea .content {
  width: 90%;
  max-width: var(--content-max-width);
  margin: 0 auto;
}

/* header */
@media print,screen and (min-width: 1024px) {
  nav#mainNav ul li a:active,nav#mainNav ul li a:hover,nav#mainNav ul li.current-menu-ancestor a,nav#mainNav ul li.current-menu-item a,nav#mainNav ul li.current-menu-parent a {
    background: transparent;
  }
  nav#mainNav ul li.current-menu-item a b, nav#mainNav ul li a:hover b, nav#mainNav ul li a:active b, nav#mainNav ul li.current-menu-parent a b {
    color: rgb(60 81 61 / 0.9);
  }
  nav#mainNav ul li a b, nav#mainNav ul li a span {
    font-weight: 500;
  }

  #header a.head_btn {
    flex-direction: row;
    padding: min(calc(10px + (1vw - 19.2px) * 0.2232), 10px) min(calc(40px + (1vw - 19.2px) * 0.5580), 40px);
    font-weight: 700;
    font-size: var(--rem14);
  }
  #header a.head_btn::before {
    margin: 0 .5em 0 0;
  }
}

header#h1Header {
  height: 200px;
}
header#h1Header::before {
  opacity: 0;
}
header#h1Header h1.title, header#h1Header h1.title span {
  font-size: var(--rem40);
  font-family: var(--font-family03);
  font-weight: 200;
}
header#h1Header h1.title span.sub_ttl:not(:empty) + span {
  display: none;
}

@media print, screen and (min-width: 769px) {
  #metaslider-id-205,
  #metaslider-id-205 + div:has(.ms-edit-frontend) {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #metaslider-id-98,
  #metaslider-id-98 + div:has(.ms-edit-frontend) {
    display: none;
  }
}

/* footer */
#footer {
  padding: var(--px80) 0 var(--px60);
}
#footer .footer__logo img {
  max-width: 420px;
}
#footer .footer__logo:not(:last-child) {
  margin-bottom: var(--px50);
}
#footer .footnav:not(:last-child) {
    margin-bottom: 20px;
}
#copyright {
  margin: 10px auto 0;
}

#front_top_content, #front_bottom_content {
  background: transparent;
}

/* top */
.top01 .flexbox {
  align-items: flex-end;
}
.top01 .imgarea {
  position: relative;
}
.top01 .imgarea::after {
  content: '';
  background: url(/wp-content/uploads/top02.jpg) no-repeat center/cover;
  width: 45%;
  height: 50%;
  position: absolute;
  bottom: -80px;
  left: -100px;
}
.top01 .txtinner {
  background: #f2f2f2;
  padding: var(--px100) var(--px200) var(--px120) var(--px160);
}

@media print, screen and (max-width: 768px) {
  .top01 .imgarea {
    margin-bottom: 0;
  }
  .top01 .imgarea::after {
    bottom: -40px;
    left: -0;
  }
  .top01 .txtinner {
    padding: var(--px80);
  }
}

/*------------------------------------------------------------
 ナンバリング01
------------------------------------------------------------*/
.top02 .num_list01 {
  counter-reset:number; /*数字をリセット*/
  list-style-type: none!important; /*数字を一旦消す*/
}
.top02 .num_list01 .imgarea {
  position: relative;
  margin-bottom: var(--px20);
}
.top02 .num_list01 .imgarea:before{
  /* 以下数字をつける */
  position: absolute;
  counter-increment: number;
  content: "0" counter(number);
  display: inline-block;
  background: #ffffff;
  color: var(--color-primary);
  font-family: var(--font-family04);
  letter-spacing: 1px;
  font-weight: 500;
  font-size: var(--rem20);
  border-radius: 50%;
  left: 50%;
  width: 50px;
  height: 50px;
  line-height: 54px;
  text-align: center;
  bottom: -25px;
  transform: translateX(-50%);
  box-shadow: 0px 0px 10px rgb(0 0 0 / 0.25);
}
.top02 .num_list01 .num_listttl {
  text-align: center;
  font-weight: 400;
  font-size: var(--rem24w);
  padding: 24px 0 10px;
  position: relative;
}

.top03 .imgarea {
  width: 65%;
}
.top03 .txtarea {
  width: 35%;
  background: #f2f2f2;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: var(--px80);
}
.top03 .txtinner {
  width: 94%;
}
@media screen and (max-width: 768px) {
  .top03 .imgarea, .top03 .txtarea {
    width: 100%;
  }
}

.top04 .card03_wrap {
  position: relative;
  margin: var(--px60) 0 0;
}
.top04 .card03_list > li {
  position: relative;
}
.top04 .card03_list .txtarea {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: var(--px80) var(--px30);
  min-height: 400px;
}
.top04 .card03_list.cardstyle02 .txtinner {
  position: relative;
  color: #fff;
  z-index: 1;
}

.top04 .card03_list.cardstyle02 .imgarea {
  width: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  line-height: 0;
  z-index: -1;
}
.top04 .card03_list.cardstyle02 .imgarea img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s all;
}
.top04 .card03_list.cardstyle02 > li:hover .imgarea img {
  transform: scale(1.04);
}
.top04 .card03_list.cardstyle02 > li:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgb(67 63 63 / 0.8);
  z-index: 1;
}

.top04 .card03_list.cardstyle02 a.filllink {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}
.top04 .card03_list.cardstyle02 a.filllink:hover {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 3;
}
body#editor-style .card03_list.cardstyle02 a.filllink {
  position: static;
  display: block;
  background: #111;
  height: 30px;
}
body#editor-style .card03_list.cardstyle02 a.filllink::before {
  content: "ダブルクリックでリンク設定";
  color: #fff;
  font-size: 10px;
  white-space: nowrap;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  z-index: -10;
}
body#editor-style .card03_list.cardstyle02 > li:before {
  z-index: -1;
}
body#editor-style .card03_list.cardstyle02 .imgarea {
  position: static;
}

.top04 .card03_list .ttl {
  font-weight: 400;
  font-size: var(--rem32);
  text-align: center;
  line-height: 2.2;
  margin: 0 auto var(--rem24);
}

.top04 .linkBtn {
  position: relative;
  display: block;
  width: 100%;
  max-width: 210px;
  font-size: var(--rem16);
  font-weight: 500;
  color: #FFF;
  line-height: 1.8;
  text-align: left;
  background: transparent;
  padding: min(calc(10px + (1vw - 19.2px) * 0.5178), 10px) min(calc(65px + (1vw - 19.2px) * 1.6181), 65px) min(calc(10px + (1vw - 19.2px) * 0.5178), 10px) 10px;
  margin: var(--px20) auto 0;
  border-radius: 0;
  border-bottom: solid 2px #FFF;
  transition: all .3s;
}
.top04 .linkBtn::after {
  content: none;
}
.top04 .linkBtn .arw {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: absolute;
  width: var(--px40);
  height: var(--px40);
  border: 2px solid;
  border-radius: 50%;
  right: 3%;
  top: 48%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  -webkit-transition: .4s;
  transition: .4s;
  background: #FFF;
}
.top04 .linkBtn .arw::after {
  content: '';
  position: absolute;
  width: min(calc(8px + (1vw - 19.2px) * 0.2589), 8px);
  height: min(calc(8px + (1vw - 19.2px) * 0.2589), 8px);
  border-style: solid;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-70%, -50%) rotate(45deg);
  transform: translate(-70%, -50%) rotate(45deg);
  -webkit-transition: .4s;
  transition: .4s;
  background: #FFF;
  border-width: 2px 2px 0 0;
  border-color: var(--color-font);
}
.top04 .linkBtn .arw::after {
  background: transparent;
}
.top04 .card03_list.cardstyle02 > li:hover .linkBtn .arw {
  background: transparent;
}
.top04 .card03_list.cardstyle02 > li:hover .linkBtn .arw::after {
  border-color: #FFF;
}

/*-----------------------------
cta01_col2
------------------------------*/
.home .dn, .page-contact .dn, .page-thanks .dn, .page-sitemap .dn {
  display: none;
}
.cta01 {
  background: url(/wp-content/uploads/cta01.jpg) no-repeat center/cover;
  position: relative;
  padding: var(--px100) 0;
  z-index: 0;
}
.cta01 .cta01_wrap {
  max-width: var(--content-max-width);
  width: 90%;
  margin: 0 auto;
  background: rgb(255 255 255 / 0.6);
  padding: var(--px100);
}
.cta01 .ctabtnlist {
  justify-content: center;
  max-width: 380px;
  margin: var(--px50) auto 0 auto;
}
.cta01 .ctabtnlist li {
  width: 100%;
  margin: 0;
  padding: 0;
  line-height: 1;
  display: flex;
}
.cta01 a.item {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: var(--px40) 0;
  text-align: center;
  box-sizing: border-box;
  color: #111;
  border-radius: 0;
  transition: all ease .15s;
}
.cta01 a.item:hover{
  opacity: 0.8;
}
@media print, screen and (max-width: 768px) {
  .cta01 .ctabtnlist li, .cta01 .ctabtnlist a.item {
    width: 100%;
  }
  .cta01 .ctabtnlist li + li {
    margin-top: 1rem;
  }
}

/*ボタン共通パーツ*/
.cta01 .btnttl {
  display: block;
  font-weight: 400;
  margin-bottom: 0.6em;
}
.cta01 .infotxt {
  font-size: var(--rem18);  
  font-weight: 400;
}

/*電話ボタン*/
.cta01 .telnum {
  font-size: var(--rem36);
  margin-bottom: 1rem;
}
.cta01 .telbtn .btnttl {
  font-size: var(--rem20);
}
.cta01 a.telbtn {
  background: #111;
  color: #fff;
}

/*メールボタン*/
.cta01 .mailbtn .btnttl {
  font-size: var(--rem20);
  letter-spacing: 1px;
}
.cta01 a.mailbtn {
  background: var(--color-primary);
  color: #FFF;
}

/*ボタンアイコン*/
.cta01 .mailbtn .btnttl::before, .cta01 .telnum::before {
  content: '';
  display: inline-block;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 1rem;
}
.cta01 .mailbtn .btnttl::before {
  content: '\f0e0';
}
.cta01 .telnum::before {
  content: '\f3cd';
}

/* news */
.postlist li:first-child {
  border-top: 1px solid #CCC;;
}
.postlist li {
  border-bottom: 1px solid #CCC;;
}
.postlist .post_text {
  padding: 20px 0;
  color: #CCC;
}
.postlist .date, .postlist .ttls a {
  font-size: var(--rem16);
}
.postlist .date {
  color: #000;
}
.postlist .ttls a {
  color: #111;
}

/* service */
.service .flexbox + .flexbox {
  margin-top: var(--px100);
}
.service h3 {
  font-size: var(--rem40);
  font-weight: 400;
  color: var(--color-primary);
  border: none;
  line-height: 1.5;
}
.service h3 span {
  font-family: var(--font-family03);
  font-weight: 300;
  font-size: var(--rem60);
  display: block;
}
.service .flexbox p {
  font-weight: 500;
  line-height: 2em;
}

/* company */
.company {
  max-width: 1180px;
  margin: 0 auto;
}

/*================================================
        　採用情報 recruit
================================================*/

.post .lead_en {
  font-size: min(calc(1.8rem + (1vw - 19.2px) * 0.3236), 1.8rem);
  font-weight: 300;
  /* -- 1920 1.8rem 375 1.3rem -- */
  color: var(--color-primary);
  letter-spacing: 0.8rem;
}

/*--幅フル100%背景色--------------------------------------------*/

.widecolor {
  margin-right: calc(((100vw - 100%) / 2) * -1);
  margin-left: calc(((100vw - 100%) / 2) * -1);
  padding: min(calc(120px + (1vw - 19.2px) * 2.5890), 120px) calc((100vw - 100%) / 2) min(calc(150px + (1vw - 19.2px) * 3.2362), 150px); 
  margin-top: min(calc(120px + (1vw - 19.2px) * 2.5890), 120px);/* 120-80px (1920-375) */
  background: #fafafa;
}
.post .widecolor > h2:first-child {
  margin-top: 0 !important;
}


.recruit p.square {
  margin: var(--rem48) 0 var(--rem12);
}
.recruit p.square::before {
  content: '';
  width: 1em;
  height: 1em;
  background: var(--color-primary);
  margin: 0 0.5em;
  display: inline-block;
}

.recruit ul.disc {
  list-style: disc;
  margin-left: 1.8em;
}

.recruit ul.diamond {
  list-style: none;
  padding: 0;
  margin: 0;
}

.recruit ul.diamond li {
  position: relative;
  padding-left: 1.2em;
  margin: 0.4em 0;
}

.recruit ul.diamond li::before {
  content: "";
  width: 0.8em;
  height: 0.8em;
  background: var(--color-font);
  position: absolute;
  left: 0;
  top: 0.6em;
  transform: rotate(45deg);
}

.recruit .note {
  font-size: 1.3rem;
  margin-top: var(--rem30);
}


/*--contact_area-------------------------------------*/

.contact_area {
  padding: min(calc(80px + (1vw - 19.2px) * 2.5890), 80px);/*80px-40px (1920-375)x*/
  text-align: center;
  background: #f7f7f7;
  margin-top: min(calc(120px + (1vw - 19.2px) * 2.5890), 120px);
}
.post .contact_ttl {
  font-size: min(calc(2.8rem + (1vw - 19.2px) * 0.4531), 2.8rem); /* 2.8-2.1rem (1920-375) */
  font-weight: 600;
  text-align: center;
  letter-spacing: .2rem;
  padding: 0;
  margin: min(calc(120px + (1vw - 19.2px) * 3.5599), 120px) auto min(calc(50px + (1vw - 19.2px) * 0.9709), 50px); /* 120-65px auto 50-35px (1920-375) */
}
.post .contact_ttl::before {
  content: none;
  position: relative;
  width: auto;
  height: auto;
  top: auto;
  left: auto;
}
.post .contact_ttl::after {
  content: '';
  position: relative;
  visibility: visible;
  display: block;
  width: 2.2em;
  height: 3px;
  background: var(--color-primary);
  margin: 0.6em auto 0;
}
.contact_read {
  margin: 0 0 min(calc(30px + (1vw - 19.2px) * 0.9709), 30px);/*30px-15px (1920-375)*/
  text-align: center;
}
.contact_read p {
  font-weight: 700;

}
.button_wrap,
.post .button_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.button_wrap > *,
.post .button_wrap > * {
  margin: 10px !important;
}
.contact_area .linkBtn {
  padding: 0;
  background: var(--color-primary-shade);
  border-radius: 6px;
}
.contact_area .linkBtn::after {
  content: none;
}
.contact_area .linkBtn:hover {
  background: rgb(94 116 90 / 0.8);
}
.contact_area .linkBtn a {
  color: #fff;
  padding: 0.8em 1.2em;
  display: block;
  text-align: center;
}

.recruit .recruit02 h3 {
  border: none;
  font-size: var(--rem30);
  padding: var(--px24) 0;
}
.recruit .recruit02 p {
  font-weight: 500;
}

/* contact */
.wpcf7-form .linkBtn {
  padding: 0;
}
.wpcf7-form .linkBtn input[type="submit"] {
  width: 100%;
  padding: 20px 0;
}
.wpcf7-spinner {
  display: none;
}
/*20251120 header adjust*/
@media print, screen and (min-width: 1024px) {
	body.mobile #header .logo img{
		max-width:200px;
	}
	body.mobile {
	    margin-top: 0px;
	}
	.spmenu #menu {
	    display: none !important;
	}
}