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

:root {
  /*------▼基本設定▼------*/
  --color-background: #fff;
  --color-font: #252524;
  --color-primary: #420C6C;
  --color-primary-shade: #252524;
  --color-primary-tint: #AAA;
  --color-secondary: #252524;
  --color-secondary-tint: #E36C54;
  --color-table-border: #CCCCCC;
  --body-font-size: min(calc(1.6rem + (1vw - 1.92rem) * 0.1294), 1.6rem);
  /* 1.6-1.4rem (1920-375) */
  --body-font-family: 'Noto Sans JP', sans-serif;
  --content-max-width: 1400px;
  /*------▼ヘッダー設定▼------*/
  --header-background: #fff;
  --header-color-font: #444;
  --header-color-primary: #420C6C;
  --header-color-primary-shade: #252524;
  --header-color-primary-tint: #AAA;
  /*------▼フッター設定▼------*/
  --footer-background: #000;
  --footer-color-font: #fff;
  --footer-color-primary: ;
  /*------▼フォント設定▼------*/
  --font-family01: ;
  --font-family02: ;
  --font-family03: ;
  --font-family04: ;
}

/*--メディアクエリ--------------------------------------------*/
@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) {}

/*--全体の設定--------------------------------------------*/
html {
  scroll-behavior: smooth;
}

/*--表示の切り替え--------------------------------------------*/
.common-cta {
  display: block;
}

.home .common-cta {
  display: none;
}

/* body:not(.page.home) .top_news,
body:not(.page.home) .top_youtube,
body:not(.page.home) .top_recruit {
  display: none;
} */

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

.widecolor01 {
  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);
  /* 120-80px (1920-375) */
  background-color: rgba(0, 0, 0, 0.05);
}

@media print,
screen and (max-width: 768px) {
  .widecolor {
    padding: min(calc(120px + (1vw - 19.2px) * 2.5890), 120px) 10% min(calc(150px + (1vw - 19.2px) * 3.2362), 150px) 10%;
    /* 120-80px (1920-375) */
  }
}

.post .widecolor>h2:first-child {
  margin-top: 0 !important;
}

.widearea {
  margin-right: calc(((100vw - 100%) / 2)* -1);
  margin-left: calc(((100vw - 100%) / 2)* -1);
}

#content,
body:not(.home) #content.wide {

  margin: 0 auto;
}

@media print,
screen and (max-width: 768px) {

  #content,
  #content.wide {
    width: 100%;
  }

  .content_inner {
    width: 100%;
  }
}

/* ==============================
utility
============================== */
.max_w690 {
  max-width: 690px;
}

/* ==============================
title
============================== */
h1,
h2,
h3,
h4,
h5 {
  /*---------txtstyle01-----------*/

  &.txtstyle01 {
    font-size: var(--rem24);
    font-weight: 600;
    color: #111;
    line-height: 1.4;
    overflow-wrap: break-word;
    padding: 0;
    margin: var(--rem42) auto var(--rem30);
    border: none;
    background: transparent;
  }

  &.txtstyle01:before,
  &.txtstyle01:after {
    content: none;
  }


  /*---------txtstyle04-----------*/
  &.txtstyle04 {
    font-size: var(--rem36);
    font-weight: bold;
    text-align: center;
    color: #111;
    line-height: 1.4;
    overflow-wrap: break-word;
    padding: 0 0 var(--rem14);
    margin: var(--rem42) 0 var(--rem30) 0;
    border: none;
    background: transparent;
    position: relative;

    &::before {
      content: none;
    }

    &:after {
      position: absolute;
      bottom: 0;
      left: 50%;
      display: block;
      width: var(--px80);
      height: 3px;
      margin: 0;
      background: linear-gradient(left, var(--color-primary) 50%, var(--color-primary-tint) 50%);
      background: -ms-linear-gradient(left, var(--color-primary) 50%, var(--color-primary-tint) 50%);
      background: -moz-linear-gradient(left, var(--color-primary) 50%, var(--color-primary-tint) 50%);
      background: -webkit-linear-gradient(left, var(--color-primary) 50%, var(--color-primary-tint) 50%);
      content: "";
      -moz-transform: translateX(-50%);
      -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
      transform: translateX(-50%);
    }

    &.txtstyle04--white {
      color: #fff;
    }

    &.txtstyle04--txt-l {
      text-align: left;

      &::before {
        content: none;
      }

      &::after {
        left: 40px;
      }
    }
  }

  /*---------txtstyle05-----------*/
  &.txtstyle05 {
    font-size: var(--rem24w);
    font-family: var(--font-family01);
    font-weight: 600;
    letter-spacing: .1rem;
    padding: 0 .4em .4em;
    margin: var(--px60) auto var(--px20);
    border-bottom: 2px solid var(--color-primary);
    text-align: left;

    &::before,
    &::after {
      content: none;
    }
  }
}

@media print,
screen and (max-width: 414px) {

  h1,
  h2,
  h3,
  h4,
  h5 {

    /*---------txtstyle04-----------*/
    &.txtstyle04 {
      font-size: var(--rem30);

      &.txtstyle04--txt-l {
        &::after {
          left: 6%;
        }
      }
    }
  }
}

/* ==============================
header
============================== */

#header {
  a:hover img {
    opacity: 0.8;
  }

  .header_contact {
    display: flex;
    height: 80px;
  }

  .header_recruit {
    background: var(--color-primary);

    a {
      display: inline-block;
      width: 100%;
      height: 80px;
      overflow: hidden;
      padding: 0 var(--px30);

      img {
        width: 100%;
        object-fit: contain;
        height: 80px;
      }
    }

  }

  a.head_btn.tel_btn::before {
    content: none;
  }

  span.header_tel {
    display: flex;
    align-items: center;
    font-size: 1.8rem;

    &:before {
      content: '\f095';
      display: inline-block;
      font-family: 'FontAwesome';
      font-size: 1.4rem;
      font-weight: 400;
      line-height: 1;
      margin-bottom: .1em;
      margin-right: 5px;
    }
  }

  a.head_btn.mail_btn::before {
    content: none;
  }

  span.header_mail {
    &:before {
      content: '\f0e0';
      display: inline-block;
      font-family: 'FontAwesome';
      font-size: 1.4rem;
      font-weight: 400;
      line-height: 1;
      margin-bottom: .1em;
      margin-right: 5px;
    }
  }

  /* #menu-item-249 {
    display: none;
  } */
}

@media print,
screen and (max-width: 1023px) {
  #header {
    .header_contact {
      display: none;
    }
  }
}

@media print,
screen and (min-width: 1024px) {

  .home {
    #header-layout {
      display: block;
      position: relative;
      width: 100%;
      max-width: none;
      padding: 0;
    }

    #header .logo {
      display: block;
      line-height: 0;
      position: absolute;
      top: 0;
      left: 0;
      width: 180px;
      height: auto;
      padding: initial;
    }

    #header .header__nav-contact {
      position: absolute;
      top: 0;
      right: 0;
    }

    #header .logo img {
      object-fit: initial;
      width: 128px;
      height: auto;
      max-height: initial;
    }
  }

  #header .logo {
    padding: initial;
  }

  #header .logo img {
    max-height: initial;
  }

  nav#mainNav ul li.current-menu-parent a b {
    color: var(--color-font);
  }

  nav#mainNav ul li ul.sub-menu li a,
  nav#mainNav ul li ul.sub-menu li.current-menu-item a {
    background: #fff;
  }

  nav#mainNav ul li ul.sub-menu li a:hover,
  nav#mainNav ul li ul.sub-menu li.current-menu-item a:hover {
    background-color: #ccc;
  }
}

@media print,
screen and (max-width: 768px) {

  #header {
    #menu-item-249 {
      display: block;
    }

    .header_contact {
      display: none;
    }
  }
}

/* ==============================
footer
============================== */
#content,
body:not(.home) #content.wide {
  padding: var(--px100w) 0 0;
}

/* ==============================
CTA
============================== */
/*---------cta01_col2-----------*/
.cta01 {
  background: #f5f5f5;
  position: relative;
  z-index: 0;

  &::before {
    content: "";
    background-image: url(/wp-content/uploads/cta_bg.jpg);
    background-repeat: no-repeat;
    background-position: bottom center;
    background-size: cover;
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
  }
}

.cta01 .cta01_wrap {
  max-width: 1240px;
  width: 90%;
  margin: 0 auto;
  background: var(--color-background);
  padding: var(--px80);
}

.cta01 .ctabtnlist {
  justify-content: space-between;
  max-width: 880px;
  margin: var(--px50) auto 0 auto;
}

.cta01 .ctabtnlist li {
  width: 50%;
  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(--px30) 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: bold;
  margin-bottom: 1rem;
}

.cta01 .infotxt {
  font-size: var(--rem16);
  font-weight: 400;
}

/*電話ボタン*/

.cta01 .telnum {
  font-size: var(--rem36);
  margin-bottom: 1rem;
}

.cta01 .telbtn .btnttl {
  font-size: var(--rem20);
}

.cta01 a.telbtn {
  background: var(--color-primary);
  color: #fff;
  border-radius: 50em;
}

/*メールボタン*/

.cta01 .mailbtn .btnttl {
  font-size: var(--rem24);
}

.cta01 a.mailbtn {
  background: var(--color-primary-shade);
  color: #fff;
  border-radius: 50em;
}

/*ボタンアイコン*/

.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';
}


/* ==============================
btn
============================== */
.linkBtn,
.post .linkBtn {
  position: relative;
  display: inline-block;
  width: 240px;
  color: #fff;
  line-height: 1.8;
  text-align: center;
  background: var(--color-primary);
  padding: 20px 30px 20px 10px;
  margin: 0 auto;
  border-radius: 5px;
  transition: all .3s;
  border-radius: 50em;

  &.linkBtn--black {
    background: var(--color-primary-shade);
    color: #fff;
  }
}

/* ==============================
fullwide
============================== */
/*---------fullwide03-----------*/
.fullwide03 {
  position: relative;
  background: url(/wp-content/uploads/top_company-bg.png) no-repeat center center / cover;
}

.fullwide03:before {
  content: "";
  background: var(--color-primary-shade);
  width: 100%;
  height: 50%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 0;
}

.fullwide03_wrap {
  background-color: var(--color-background);
  background-image: url(/wp-content/uploads/top_company-bg-logo.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  position: relative;
  z-index: 1;
  max-width: 1400px;
  width: 94%;
  margin: 0 auto;
  padding: var(--px80);
  display: flex;
  justify-content: center;
  align-items: center;
}

.fullwide03_inner {
  max-width: 960px;
}

/* ==============================
column
============================== */
/*---------column_04-----------*/
.sec01 {
  background: #f5f5f5;
  padding-top: 0;
}

.toptxtarea {
  max-width: 960px;
  width: 94%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.column04 {
  position: relative;
  margin: 0;
}

.column04:before {
  content: "";
  background: var(--color-primary-shade);
  width: 100%;
  height: 40%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.column04_wrap {
  position: relative;
  max-width: 1600px;
  width: 94%;
  margin: var(--px60) auto 0;
  z-index: 1;
}

.column04 .txtarea {
  background: #fff;
  align-items: center;
  justify-content: center;
  padding: var(--px40);
  margin: 0;
}

.column04 .txtarea .txtinner {
  max-width: 540px;
}

.column04 .imgarea {
  overflow: hidden;
  line-height: 0;
  margin: 0;
}

.column04 .imgarea img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ==============================
card
============================== */
/*---------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: 49%;
  margin-bottom: 2%;
}

@media print,
screen and (max-width: 414px) {
  .post .col2_list>li {
    width: 100%;
  }

  .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: 32%;
  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: 49%;
  }

  .post .col3_list::before,
  .post .col3_list:after {
    content: none;
  }
}

@media print,
screen and (max-width: 414px) {
  .post .col3_list>li {
    width: 100%;
    margin-top: 40px;
  }

  .post .col3_list>li:last-child {
    margin-bottom: 0;
  }
}

/* ==============================
table
============================== */
/*---------table_style01-----------*/
.post table.table_style01,
.post table.table_style01 th,
.post table.table_style01 td {
  border-width: 1px;
  border-color: var(--color-table-border);
}

.post table.table_style01 {
  margin: min(calc(30px + (1vw - 19.2px) * 0.6472), 30px) auto;
  /* 30-20px (1920-375) */
}

.post table.table_style01 th,
.post table.table_style01 td {
  padding: min(calc(10px + (1vw - 19.2px) * 0.3236), 10px) min(calc(15px + (1vw - 19.2px) * 0.4531), 15px);
  /* 30-20px 15-10px (1920-375) */
}

.post table.table_style01 th {
  width: 25%;
  color: var(--color-background);
  font-weight: 600;
  background: var(--color-primary);
}

.post table.table_style01 td {
  color: var(--color-font);
  background: none;
}

.post table.table_style01:first-child {
  margin-top: 0;
}

.post table.table_style01:last-child {
  margin-bottom: 0;
}

/* ==============================
gallery
============================== */
@media print,
screen and (max-width: 640px) {

  .gallery-columns-3 .gallery-item {
    width: 100% !important;
  }
}

/* ==============================
common
============================== */
.imgarea {
  img {
    width: 100%;
  }
}

/* ==============================
mv
============================== */
#mainImg img {
  height: auto;
}

/* ==============================
TOP
============================== */
/*---------共通-----------*/
.front_contents {
  position: relative;
  padding: var(--px120) 0 var(--px60);
}

@media print,
screen and (max-width: 768px) {
  .front_contents {
    padding: var(--px80) 0 var(--px120);
  }
}


/*---------採用バナー-----------*/
@media print,
screen and (max-width: 768px) {
  .top_bnr-recruit {
    padding-left: 5%;
    padding-right: 5%;
    padding-bottom: var(--px80);
  }
}

/*---------事業内容-----------*/
.top_service {
  .front_contents {
    padding-top: 0;
  }
}


/*---------youtube-----------*/
.top_youtube {
  iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
  }
}

@media print,
screen and (max-width: 768px) {
  .top_youtube {
    padding-left: 5%;
    padding-right: 5%;
  }
}

/*---------採用情報-----------*/
@media print,
screen and (max-width: 768px) {
  .top_recruit {
    &.front_contents {
      padding-left: 5%;
      padding-right: 5%;

      .widearea {
        width: 100%;
        margin-right: 0;
        margin-left: 0;
      }
    }
  }
}

/*---------news-----------*/
.postlist li:last-child {
  border-bottom: 1px solid #ddd;
}

.archive .postlist {
  margin-bottom: 100px;
}

@media print,
screen and (max-width: 768px) {
  .top_news .content_inner {
    padding-left: 5%;
    padding-right: 5%;
  }

  .archive .postlist {
    margin-bottom: 50px;
  }
}



/* ==============================
採用情報
============================== */
.contact_area {
  padding: min(calc(80px + (1vw - 19.2px) * 2.5890), 80px);
  /*80px-40px (1920-375)x*/
  text-align: center;
  background: #ede9f0;
  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;
}

.button_wrap,
.post .button_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.button_wrap>*,
.post .button_wrap>* {
  margin: 10px !important;
}

.contact_area .linkBtn,
.contact_area .post .linkBtn {
  padding: 0;
}

.contact_area .linkBtn a {
  color: #fff;
  padding: 0.8em 1.2em;
  display: block;
}


/* ==============================
お問い合わせ
============================== */
.wpcf7-form {
  .linkBtn {
    padding: 0;
  }

  .must {
    background: var(--color-primary);
  }
}

ul#sitemap_list {
  margin-bottom: 100px;
}

@media print,
screen and (max-width: 768px) {
  ul#sitemap_list {
    margin-bottom: 50px;
  }
}

.thanks_btn {
  text-align: center;
}

@media print, screen and (max-width: 768px) {
    .w40.txtarea .txtinner {
        padding: 5%;
    }
}