@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&family=Oswald:wght@200..700&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
  /*------▼基本設定▼------*/
  --color-background: #fff;
  --color-font: #333;
  --color-primary: #2E3091;
  --color-primary-shade: ;
  --color-primary-tint: ;
  --color-secondary: #00AEEF;
  --color-secondary-tint: ;
  --color-table-border: #CCC;
  --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: 1240px;
  /*------▼ヘッダー設定▼------*/
  --header-background: #fff;
  --header-color-font: #444;
  --header-color-primary: #2E3091;
  --header-secondary: #00AEEF;
  --header-color-primary-shade: ;
  --header-color-primary-tint: ;
  /*------▼フッター設定▼------*/
  --footer-background: #00AEEF;
  --footer-color-font: #fff;
  --footer-color-primary: ;
  /*------▼フォント設定▼------*/
  --font-family01: 'Noto Sans JP', sans-serif;
  --font-family02: "Poppins", sans-serif;
  --font-family03: "Oswald", sans-serif;
  --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;
  scroll-padding-top: 80px;
}

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

/*--アンカーリンク--------------------------------------------*/
.anchor-link_contents {
  margin-top: -80px !important;
  padding-top: 80px !important;
}

.anchor-link {
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  font-weight: bold;
  color: var(--color-primary-shade);
  max-width: 370px;
  width: 100%;
  border-radius: 50em;
  padding: var(--px20) var(--px40);
  position: relative;
  border: 1px solid var(--color-primary-shade);

  &::before,
  &::after {
    content: "";
    position: absolute;
    bottom: calc(50% - 7px);
    right: 30px;
    width: 2px;
    height: 14px;
    border-radius: 9999px;
    background-color: var(--color-primary-shade);
    transform-origin: 50% calc(100% - 1px);
  }

  &::before {
    transform: rotate(45deg);
  }

  &::after {
    transform: rotate(-45deg);
  }

  &:hover {
    background-color: var(--color-primary-tint);
    color: var(--color-primary-shade);
  }

  &.anchor-link--special {
    max-width: 540px;
    width: 100%;
    background: var(--color-primary);
    border: 1px solid var(--color-primary);
    color: #fff;

    &::before,
    &::after {
      background-color: #fff;
    }

    &:hover {
      background: var(--color-primary-tint);
      color: var(--color-primary);

      &::before,
      &::after {
        background-color: var(--color-primary);
      }
    }
  }
}

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

    &::before,
    &::after {
      content: "";
      position: absolute;
      bottom: calc(50% - 5px);
      right: 20px;
      width: 2px;
      height: 10px;
      border-radius: 9999px;
      transform-origin: 50% calc(100% - 1px);
    }
  }
}

/*--表示の切り替え--------------------------------------------*/

body:not(.page.home) .top-news {
  display: none;
}

/*--お知らせ　下線--------------------------------------------*/
.postlist li {
  border-top: 1px solid #ddd;
}

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

/*--fvの比率調整--------------------------------------------*/
#mainImg img {
  width: 100% !important;
  height: auto;
}

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

.widecolor--bg-gray {
  margin-right: calc(((100vw - 100%) / 2)* -1);
  margin-left: calc(((100vw - 100%) / 2)* -1);
  background-color: #F5F5F5;
}

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

  .widecolor--bg-primary-shade {
    padding: min(calc(120px + (1vw - 19.2px) * 2.5890), 120px) 0 min(calc(150px + (1vw - 19.2px) * 3.2362), 150px) 0;
    /* 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;
}

body.page.page-id-6199 #content.wide {
  padding: 0;
}

body.page.page-id-6199 #breadcrumb {
  background: #fdf9ea;
}

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

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

  .content_inner {
    width: 100%;
  }
}


/*----------------------------------------------
  utility
----------------------------------------------*/
/*---------コンテンツ幅-----------*/
.max_w600 {
  max-width: 600px;
}

.max_w1650 {
  max-width: 1650px;
}

.w100 {
  width: 100%;
}

/*---------背景-----------*/
.bg_white {
  background: var(--color-background) !important;
}

.bg_primary {
  background: var(--color-primary) !important;
}

.bg_secondary {
  background: var(--color-secondary) !important;
}

.bubble-box {
  background-image: url(/wp-content/uploads/bg_bubble.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}

.bubble-box02 {
  background-image: url(/wp-content/uploads/bg_bubble02.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.bubble-box03 {
  background-image: url(/wp-content/uploads/bg_bubble03.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top center;
}

.bubble-box--left {
  background-image: url(/wp-content/uploads/bg_bubble-left.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: left top;
}

.bg_tertiary {
  background: url(/wp-content/uploads/bg01.png) no-repeat center / cover;
}

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

  .bubble-box02,
  .bubble-box03 {
    background-position: left center;
  }
}

/*---------文字色-----------*/
.fc_primary {
  color: var(--color-primary) !important;
}

.fc_secondary {
  color: var(--color-secondary) !important;
}

.fc_light-blue {
  color: #4BA5FF;
}

.fc_orange {
  color: #EF796B;
}

.fc_purple {
  color: #BE89E8;
}

/*---------文字-----------*/
.ff_mincho {
  font-family: var(--font-family02) !important;
}

/*---------フォントサイズ-----------*/
.fz14 {
  font-size: 14px !important;
}

.fz18 {
  font-size: var(--rem18) !important;
}

.fz28 {
  font-size: var(--rem28);
  line-height: 1.2;
}

.fz20 {
  font-size: var(--rem20);
}

.fz30 {
  font-size: var(--rem30);
}

.fz48 {
  font-size: var(--rem48);
}

.fz40 {
  font-size: var(--rem40);
}

.fz60 {
  font-size: var(--rem60);
}

@media screen and (max-width: 450px) {
  .sp-fz48 {
    font-size: var(--rem48) !important;
  }
}

/*---------リンク-----------*/
.txc_link {
  color: #1EB3EA;
  font-weight: bold;
}

/*---------gap-----------*/
.gap1 {
  gap: 1%;
}

/*---------border-radius-----------*/
.r-120 {
  border-radius: var(--rem120);
}

/*---------line-height-----------*/
.lh1 {
  line-height: 1;
}


/*---------sp表示-----------*/
@media screen and (max-width: 450px) {
  .sp-txt_l {
    text-align: left !important;
  }

  .sp-txt_c {
    text-align: center !important;
  }
}

/*----------------------------------------------
  title
----------------------------------------------*/
h1.title,
.post h1,
header#h1Header h1.title {
  font-size: var(--rem48);
}

#thumbImg::before,
header#h1Header::before {
  background: transparent;
}

.post h3 {
  font-size: var(--rem24);
  border-bottom: 1px solid #CECECE;
}

.post h1,
h1,
.post h2,
h2,
.post h3,
h3,
.post h4,
h4,
.post h5,
h5,
p,
div,
span {

  /*---------top-main-title-----------*/
  &.top-main-title {
    font-family: var(--font-family02);
    font-size: var(--rem60);
    font-weight: bold;
    text-align: center;
    color: var(--color-font);
    line-height: 1.4;
    overflow-wrap: break-word;
    padding: 0 0 var(--rem20);
    margin: var(--rem42) auto var(--rem30);
    border: none;
    background: transparent;
    position: relative;

    .subtxt {
      font-family: var(--font-family01);
      display: block;
      font-size: var(--rem30);
      color: var(--color-font);
      font-weight: bold;
      padding: 0;
      margin: 0;
      border: none;
      background: transparent;
    }

    &::before {
      content: none;
    }

    &::after {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: var(--px80);
      border-bottom: 3px solid var(--color-font);
      content: "";
      background: none;
    }

    &.top-main-title--left {
      text-align: left;

      .subtxt {
        text-align: left;
      }

      &::after {
        left: 0;
        transform: unset;
      }
    }

    &.top-main-title--white {
      color: var(--color-background);

      .subtxt {
        color: var(--color-background);
      }

      &::after {
        border-bottom: 3px solid var(--color-background);
      }
    }
  }

  /*---------top-secondary-title-----------*/
  &.top-secondary-title {
    font-size: var(--rem24);
    margin-bottom: var(--rem20);
    border: none;
    text-align: left;
    color: var(--color-font);
    font-weight: bold;

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

  /*---------page-main-title-----------*/
  &.page-main-title {
    font-family: var(--font-family02);
    font-size: var(--rem40);
    font-weight: bold;
    text-align: center;
    color: var(--color-font);
    line-height: 1.4;
    overflow-wrap: break-word;
    padding: 0 0 var(--rem20);
    margin: 0 auto var(--rem20);
    border: none;
    background: transparent;

    .subtxt {
      font-family: var(--font-family01);
      display: block;
      font-size: var(--rem30);
      color: var(--color-font);
      font-weight: bold;
      padding: 0;
      margin: 0;
      border: none;
      background: transparent;
    }

    &::before {
      content: none;
    }

    &::after {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: var(--px80);
      border-bottom: 3px solid var(--color-font);
      content: "";
      background: none;
    }

    &.top-main-title--left {
      text-align: left;

      .subtxt {
        text-align: left;
      }

      &::after {
        left: 0;
        transform: unset;
      }
    }

    &.top-main-title--white {
      color: var(--color-background);

      .subtxt {
        color: var(--color-background);
      }

      &::after {
        border-bottom: 3px solid var(--color-background);
      }
    }
  }

}


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

  .post h1,
  h1,
  .post h2,
  h2,
  .post h3,
  h3,
  .post h4,
  h4,
  .post h5,
  h5,
  p,
  div,
  span {}
}

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

  .post h1,
  h1,
  .post h2,
  h2,
  .post h3,
  h3,
  .post h4,
  h4,
  .post h5,
  h5,
  p,
  div,
  span {}
}

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

  .post h1,
  h1,
  .post h2,
  h2,
  .post h3,
  h3,
  .post h4,
  h4,
  .post h5,
  h5,
  p {

    /*---------txtstyle01-----------*/
  }
}

/*----------------------------------------------
  read_txt
----------------------------------------------*/
.read_txt {
  font-size: var(--rem24);
  text-align: center;
  letter-spacing: .1rem;
  line-height: 2;
  margin: 0;
}

/*----------------------------------------------
  cta
----------------------------------------------*/
.cta01 {
  background: url(/wp-content/uploads/cta-bg.jpg) no-repeat center center / cover;
  position: relative;
  z-index: 0;
}

.cta01 .cta01_wrap {
  max-width: 1240px;
  width: 100%;
  margin: 0 auto;
  background: transparent;
  padding: 0;
}

.cta01 .ctabtnlist {
  justify-content: space-between;
  max-width: 960px;
  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-secondary);
  color: #fff;
  border-radius: 50em;
  border: 2px solid var(--color-secondary);

  &:hover {
    background: var(--color-background);
    color: var(--color-secondary);
  }
}

/*メールボタン*/

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

.cta01 a.mailbtn {
  background: var(--color-primary);
  color: var(--color-background);
  border: 2px solid var(--color-primary);
  border-radius: 50em;

  &:hover {
    background: var(--color-background);
    color: var(--color-primary);
  }
}

/*ボタンアイコン*/

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

/*----------------------------------------------
  fullwide
----------------------------------------------*/
/*---------fullwide01_max1240-----------*/
.fullwide01 {
  position: relative;
  background: url(/wp-content/uploads/top-about-bg.jpg) no-repeat center / cover;
}

.fullwide01_wrap {
  background: rgba(255, 255, 255, 0.9);
  max-width: 1240px;
  width: 94%;
  margin: 0 auto;
  padding: var(--px80);
  display: flex;
  justify-content: center;
  align-items: center;
}

.fullwide01_inner {
  max-width: 960px;
}

@media print,
screen and (max-width: 768px) {
  .fullwide01_wrap {
    padding: var(--px80) 5%;
  }
}

/*----------------------------------------------
  table
----------------------------------------------*/
.post table th {
  background: var(--color-secondary);
  color: var(--color-background);
}

.post table td {
  background: #fff;
}

/*----------------------------------------------
  teleco_v1
----------------------------------------------*/
.teleco_v1 h3 {
  width: 100%;
}

.teleco_v1 .w50.image_box {
  position: relative;
  overflow: hidden;
}

.teleco_v1 .w50.image_box::before {
  content: '';
  display: block;
}

.teleco_v1 .w50.image_box img {
  position: absolute;
  width: 100%;
  height: auto;
  max-width: none;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.teleco_v1 .w50.text_box {
  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-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  background: transparent;
  padding: 0;
  /* 120-65px (1920-375) */
}

@media print,
screen and (min-width: 769px) {
  .teleco_v1 .w50.image_box::before {
    padding-top: calc(550px + (1vw - 19.2px) * 17.3762);
  }

  .teleco_v1 .w50.image_box img {
    width: 100%;
  }
}

.flexinnerBtn {
  align-self: normal;
}

@media print,
screen and (max-width: 768px) {
  .teleco_v1 .w50.image_box {
    margin-bottom: 0;
  }

  .teleco_v1 .w50.image_box::before {
    padding-top: calc(350px + (1vw - 7.68px) * 27.9898);
  }

  .teleco_v1 .w50.text_box {
    padding: 20px;
    margin-bottom: 0;
  }
}

/*----------------------------------------------
  header
----------------------------------------------*/
#header {

  a.head_btn.tel_btn {
    display: flex;
    align-items: center;
    font-size: 2.2rem;
    background: none;
    color: #fff;
    background-color: var(--color-secondary);

    &::before {
      content: none;
    }

    &:hover {
      opacity: 0.8;
    }
  }

  a.head_btn .header_tel {
    &: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 .header_time {
    &::before {
      content: none;
    }
  }

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

    >span {
      &: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;
      }
    }
  }

  /* nav#mainNav ul li a span,
  nav#mainNav ul li.current-menu-item a span {
    color: var(--color-primary);
  } */

  nav#mainNav ul li a:active span,
  nav#mainNav ul li a:hover span,
  nav#mainNav ul li.current-menu-item a span,
  nav#mainNav ul li.current-menu-parent a span {
    color: var(--color-primary);
  }
}

.spmenu #menu p {
  transform: translateX(-50%);
  left: 50%;
  white-space: nowrap;
}

@media print,
screen and (min-width: 1024px) {
  nav#mainNav ul li a {
    padding: var(--px20) var(--px12);

    &:hover {
      opacity: 0.6;
    }
  }

  #header a.head_btn.mail_btn {
    background: var(--color-primary);
    color: #fff;

    &:hover {
      background: var(--color-primary);
      color: #fff;
      opacity: 0.8;
    }
  }
}

@media print,
screen and (min-width: 1024px) {
  nav#mainNav ul li li {
    background: var(--color-background);
  }
}

/*----------------------------------------------
  footer
----------------------------------------------*/
#footer .footer__logo img {
  max-height: var(--px120);
}

/*----------------------------------------------
  column
----------------------------------------------*/
/*---------column_05-----------*/
.column05 {
  position: relative;
  margin: var(--px60) 0 0;
}

.column05_wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  z-index: 20;
}

.column05_wrap+.column05_wrap {
  margin-top: calc(100px + 70px);
}

.column05 .imgarea {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  width: 50%;
}

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

.column05 .txtarea {
  position: relative;
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: var(--px80) var(--px40);
  margin: 0;
  z-index: 10;
}

.column05 .txtarea .txtinner {
  max-width: 770px;
}

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

  /*左右反転*/
  .column05_wrap+.column05_wrap {
    margin-top: calc(100px + 70px);
  }

  .column05_wrap.rev {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .column05_wrap.rev .txtarea {
    margin: 0 -5% -70px auto;
  }
}

@media print,
screen and (max-width: 1023px) {
  .column05_wrap+.column05_wrap {
    margin-top: calc(100px + (1vw - 10.23px) * 7.7160);
  }

  .column05_wrap.rev {
    flex-direction: row;
  }

  .column05 .imgarea,
  .column05 .txtarea {
    width: 100%;
  }

  .column05 .txtarea {
    margin: 0;
  }
}

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

/*---------column_06-----------*/
.column06 {
  position: relative;
  margin: var(--px60) 0 0;
}

.column06_wrap {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: center;
  z-index: 20;
}

.column06 .rev .imgarea {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  width: 60%;
  border-radius: 20% 0 0 20%;
}

.column06 .imgarea {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  width: 60%;
  border-radius: 0 20% 20% 0;
}

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

.column06 .txtarea {
  position: relative;
  width: 45%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  padding: var(--px80) var(--px40);
  margin: 0 auto 0 -5%;
  z-index: 10;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.08);
  border-radius: 8% 0 0 8%;
}

.column06 .txtarea .txtinner {
  max-width: 620px;
}

.column06_wrap+.column06_wrap {
  margin-top: var(--px80);
}

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

  /*左右反転*/
  .column06_wrap.rev {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: reverse;
    -ms-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }

  .column06_wrap.rev .txtarea {
    margin: 0 -5% 0 auto;
  }
}

@media print,
screen and (max-width: 1023px) {
  .column06_wrap.rev {
    flex-direction: row;
    justify-content: end;
  }

  .column06 .imgarea,
  .column06 .rev .imgarea,
  .column06 .txtarea {
    width: 90%;
  }

  .column06 .txtarea {
    margin: calc(-60px + (1vw - 10.23px) * -3.8580) 0 0 auto;
  }

  .column06 .rev .txtarea {
    margin: calc(-60px + (1vw - 10.23px) * -3.8580) auto 0 0;
  }
}

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

/*----------------------------------------------
  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%;
    margin-bottom: 10%;
  }

  .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%;
    margin-bottom: 10%;
  }

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

/*---------col4-----------*/

.post .col4_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 .col4_list>li {
  width: 24%;
  margin-bottom: 1.5%
}

.post .col4_list::before {
  content: "";
  display: block;
  width: 24%;
  height: 0;
  order: 1;
}

.post .col4_list:after {
  content: "";
  display: block;
  width: 24%;
  height: 0;
}

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

  .post .col4_list>li,
  .post .col4_list::before,
  .post .col4_list:after {
    width: 32%;
    margin-bottom: 2%;
  }
}

@media print,
screen and (max-width: 768px) {
  .post .col4_list>li {
    width: 49%;
  }

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

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

  .post .col4_list>li:last-child {
    margin-bottom: 0;
  } */
}

/*----------------------------------------------
  cardstyle
----------------------------------------------*/

/*---------style04-------------*/
.card01_list.cardstyle04>li {
  padding: 16px;
  background: #fff;
  border: solid 1px var(--color-primary);
}


/*----------------------------------------------
  btn
----------------------------------------------*/
/*---------btn_-------------*/
.linkBtn,
.post .linkBtn,
a.linkBtn,
.post .subimitarea .linkBtn input[type="submit"] {
  position: relative;
  display: inline-block;
  width: 260px;
  font-size: var(--rem20);
  color: #fff;
  line-height: 1.8;
  text-align: center;
  background: var(--color-primary);
  font-weight: 600;
  padding: var(--rem14) 30px var(--rem14) 20px;
  margin: var(--px40) auto 0;
  border: solid 2px var(--color-primary);
  border-radius: 50vh;
  transition: all .3s;
}

.post .linkBtn::after,
.linkBtn::after,
a.linkBtn::after {
  border-color: #fff;
}

.post .linkBtn:hover,
.linkBtn:hover,
a.linkBtn:hover,
.post .subimitarea .linkBtn input[type="submit"]:hover {
  color: var(--color-primary);
  background: var(--color-background);
  border-color: var(--color-primary);
}

.post .linkBtn:hover::after,
.linkBtn:hover::after,
a.linkBtn:hover::after {
  border-color: var(--color-primary);
}

.subimitarea>.linkBtn {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

.post .subimitarea .linkBtn input[type="submit"] {
  margin-top: 0;
}

/*---------btn_secondary-------------*/
.linkBtn--secondary,
.post .linkBtn--secondary,
a.linkBtn--secondary,
.post .subimitarea .linkBtn--secondary input[type="submit"] {
  position: relative;
  display: inline-block;
  width: 240px;
  font-size: var(--rem16);
  color: var(--color-background);
  line-height: 1.8;
  text-align: center;
  background: var(--color-secondary);
  font-weight: 600;
  padding: var(--rem20) 30px var(--rem20) 20px;
  margin: var(--px40) auto 0;
  border: solid 2px;
  border-radius: 50vh;
  transition: all .3s;
  border: 2px solid var(--color-secondary);

}

.post .linkBtn--secondary::after,
.linkBtn--secondary::after,
a.linkBtn--secondary::after {
  border-color: var(--color-secondary);
}

.post .linkBtn--secondary:hover,
.linkBtn--secondary:hover,
a.linkBtn--secondary:hover,
.post .subimitarea .linkBtn--secondary input[type="submit"]:hover {
  color: var(--color-secondary);
  background: var(--color-background);
  border-color: var(--color-secondary);
}

.post .linkBtn--secondary:hover::after,
.linkBtn--secondary:hover::after,
a.linkBtn--secondary:hover::after {
  border-color: var(--color-secondary);
}

.subimitarea>.linkBtn--secondary {
  background: transparent !important;
  padding: 0 !important;
  margin: 0 !important;
  border: none !important;
}

.post .subimitarea .linkBtn--secondary input[type="submit"] {
  margin-top: 0;
}

.linkBtn--secondary::after,
input.linkBtn--secondary::after,
.post .linkBtn--secondary::after {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right: 20px;
  width: 6px;
  height: 6px;
  border-right: 1px solid var(--color-background);
  border-bottom: 1px solid var(--color-background);
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top: -3px;
  transition: all .3s;
}


/*---------btn_large-------------*/
.btn_large,
.post .btn_large,
a.btn_large,
.post .subimitarea .btn_large input[type="submit"] {
  width: 100%;
  max-width: 500px;
}


/*---------btn-tel-------------*/
.btn-tel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 360px;
  padding: var(--px16) 0;
  text-align: center;
  box-sizing: border-box;
  transition: all ease .15s;
  background: var(--color-secondary);
  color: #fff;
  border-radius: 50em;
  border: 2px solid var(--color-secondary);
  line-height: 1;
  row-gap: 5px;

  .btnttl {
    font-size: var(--rem14);
  }

  .telnum {
    font-size: var(--rem24);
    list-style: 1;

    &::before {
      content: '\f3cd';
      display: inline-block;
      font-family: 'Font Awesome 5 Free';
      font-weight: 900;
      margin-right: 1rem;
    }
  }

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

  &:hover {
    background: var(--color-background);
    color: var(--color-secondary);
  }
}

@media print,
screen and (max-width: 768px) {
  .btn-tel {
    margin-bottom: var(--rem20);
  }
}

@media print,
screen and (max-width: 450px) {
  .btn-tel {
    width: 100%;
    padding: 10px;
  }
}


.btn-mail {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 360px;
  padding: var(--px16) 0;
  text-align: center;
  box-sizing: border-box;
  transition: all ease .15s;
  background: var(--color-primary);
  color: #fff;
  border-radius: 50em;
  border: 2px solid var(--color-primary);
  line-height: 1;
  row-gap: 5px;

  .btnttl {
    font-size: var(--rem18);
    display: block;
    font-weight: bold;
    margin-bottom: 1rem;

    &::before {
      content: '\f0e0';
      display: inline-block;
      font-family: 'Font Awesome 5 Free';
      font-weight: 900;
      margin-right: 1rem;
    }
  }

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

  &:hover {
    background: var(--color-background);
    color: var(--color-primary);
  }
}


@media print,
screen and (max-width: 450px) {
  .btn-mail {
    width: 100%;
    padding: 10px;
  }
}


/*----------------------------------------------
  googlemap
----------------------------------------------*/
.googlemap {
  padding-bottom: 45%;
  margin: var(--px20) auto;
}

/*----------------------------------------------
  ナンバリング
----------------------------------------------*/
.num_list02 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  counter-reset: number;
  /*数字をリセット*/
  list-style-type: none !important;
  /*数字を一旦消す*/
}

.num_list02>li {
  position: relative;
  width: 100%;
  margin-top: var(--px40w);
  padding: var(--px80) var(--px40) var(--px60);
  border: 2px solid var(--color-secondary);
  border-radius: 15px;
  background: #fff;
}

.num_list02>li::before {
  content: counter(number, decimal-leading-zero);
  counter-increment: number;
  position: absolute;
  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;
  width: var(--px80);
  height: var(--px80);
  color: var(--color-background);
  background: var(--color-secondary);
  font-size: var(--px30);
  font-family: var(--font-family03);
  border-radius: 50%;
  border: 2px solid;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.num_list02 .num_listttl {
  background: none;
  font-size: var(--rem20w);
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  padding: 0;
  margin: 0 auto var(--rem12);
  border: none;
}

.num_list02 .num_listttl::before {
  display: block;
  position: static;
  color: var(--color-font);
  font-size: var(--px80);
  font-weight: normal;
  font-family: 'FontAwesome';
  line-height: 1;
  margin: 0 auto var(--px20);
  max-width: 232px;
  width: 100%;
  height: 164px;
}

.num_list02 .num01::before {
  content: '';
  background: url(/wp-content/uploads/strength01.png) no-repeat center / contain;
}

.num_list02 .num02::before {
  content: '';
  background: url(/wp-content/uploads/strength02.png) no-repeat center / contain;
}

.num_list02 .num03::before {
  content: '';
  background: url(/wp-content/uploads/strength03.png) no-repeat center / contain;
}

.num_list02 .num04::before {
  content: '';
  background: url(/wp-content/uploads/strength04.png) no-repeat center / contain;
}

/*---------col4-----------*/

.post .col4_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 .col4_list>li {
  width: 24%;
  margin-bottom: 1.5%
}

.post .col4_list::before {
  content: "";
  display: block;
  width: 24%;
  height: 0;
  order: 1;
}

.post .col4_list:after {
  content: "";
  display: block;
  width: 24%;
  height: 0;
}

@media print,
screen and (max-width: 768px) {
  .post .col4_list>li {
    width: 49%;
  }

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

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

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


/*================================
  TOP
================================*/
.top-about {
  .dic-txt {
    line-height: 2.2;
  }
}

.top-service {
  background: linear-gradient(180deg, #fff 0%, #fff 33.3%, var(--color-primary) 33%, var(--color-primary) 66.6%, #F5F5F5 66.6%, #F5F5F5 100%);
}

.top-strength {
  background: linear-gradient(180deg, #fff 0%, #fff 50%, var(--color-secondary) 50%, var(--color-secondary) 100%);
}

.link-img {
  display: block;
  position: relative;
  padding-top: calc((440 / 1920) *100vw);

  .link-img__inner-content {
    position: absolute;
    top: 50%;
    left: 50px;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
  }

  &.link-img01 {
    background: url(/wp-content/uploads/link01_02.jpg) no-repeat center /cover;
  }

  &.link-img02 {
    background: url(/wp-content/uploads/link02_02.jpg) no-repeat center /cover;
  }
}

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

  .link-img {
    padding-top: calc((440 / 1000) * 100vw);
  }
}

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

  .top-service,
  .top-instagram,
  .top-strength,
  .top-link,
  .cta01 .cta01_wrap,
  .top-news {
    padding-left: 5%;
    padding-right: 5%;
  }

  .link-img {
    padding-top: calc((440 / 768) * 100vw);
  }
}

/*================================
  ご依頼の流れ
================================*/
.flowlist02 {
  padding-left: 5rem;
  position: relative;
}

.flowlist02::before {
  content: "";
  width: 15px;
  height: 100%;
  background: #eee;
  margin-left: -8px;
  display: block;
  position: absolute;
  top: 0;
  left: 5rem;
}

.flowlist02>li {
  position: relative;
}

.flowlist02>li:not(:last-child) {
  margin-bottom: 8vh;
}

.flowlist02>li .icon {
  font-size: var(--body-font-size);
  width: 5rem;
  height: 5rem;
  color: #fff;
  font-weight: bold;
  background: var(--color-primary);
  padding: 0.8rem 2rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: absolute;
  top: 0;
  left: -2.5rem;
  z-index: 100;
  border-radius: 50vh;
  white-space: nowrap;
}

.flowlist02>li .icon::after {
  content: none;
}

.flowlist02>li dl {
  padding-left: 7rem;
  position: relative;
  padding-top: 0.7rem;
}

.flowlist02>li dl::before {
  content: none;
}

.flowlist02>li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 20px;
}

.flowlist02>li dl::after {
  width: 50px;
  border-bottom: 1px dashed #999;
  position: absolute;
  left: 5px;
  top: 23px;
}

.flowlist02>li dd {
  padding-bottom: 10px;
}

.flowlist02>li dl dt {
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: var(--rem24);
  border-bottom: 1px solid #C3C3C3;
}

@media (max-width: 768px) {
  .flowlist02 {
    padding-left: 2rem;
  }

  .flowlist02>li .icon {
    left: -3.5rem;
  }

  .flowlist02::before {
    left: 1rem;
  }

  .flowlist02>li dl {
    padding-left: 4.5rem;
  }

  .flowlist02>li dl::after {
    width: 30px;
  }

  .flowlist02>li dl dt {
    font-size: 1.4rem;
  }
}

/*================================
  お問い合わせ
================================*/
.sec-contact {
  table th {
    color: var(--color-font);
    background: var(--color-background);
    border: none;
  }

  table,
  table td {
    border: none;
  }

  table tr {
    border-bottom: 1px solid var(--color-table-border);
  }
}

.wpcf7-form .must {
  background: #E80303;
}