@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=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap');

:root {
  /*------▼基本設定▼------*/
  --color-background: #fff;
  --color-font: #333;
  --color-primary: #248CFF;
  --color-primary-shade: #F3F9FF;
  --color-primary-tint: ;
  --color-secondary: ;
  --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: #333;
  --header-color-primary: #248CFF;
  --header-secondary: ;
  --header-color-primary-shade: ;
  --header-color-primary-tint: #66AFFF;
  /*------▼フッター設定▼------*/
  --footer-background: #F0F0F0;
  --footer-color-font: #333;
  --footer-color-primary: ;
  /*------▼フォント設定▼------*/
  --font-family01: "Noto Sans JP", sans-serif;
  --font-family02: "Noto Serif JP", serif;
  --font-family03: "Montserrat", 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;
}

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

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

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

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

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

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

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

body:not(.home)::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: url(/wp-content/uploads/page-bg-1.jpg);
  background-size: cover;
  background-position: top;
  background-repeat: no-repeat;
  z-index: -1;
  pointer-events: none;
}

#content,
body:not(.home) #content.wide {
  padding: var(--px100w) 0 var(--px80);
  margin: 0 auto;
}


/*--お知らせ　下線--------------------------------------------*/
.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--primary-shade {
  margin-right: calc(((100vw - 100%) / 2)* -1);
  margin-left: calc(((100vw - 100%) / 2)* -1);
  background-color: var(--color-primary-shade);
}

.widecolor--white {
  margin-right: calc(((100vw - 100%) / 2)* -1);
  margin-left: calc(((100vw - 100%) / 2)* -1);
  background-color: var(--color-background) !important;
}


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

  .widecolor--primary,
  .widecolor--white {
    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);
}

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

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

  .content_inner {
    width: 100%;
  }
}


/*----------------------------------------------
  utility
----------------------------------------------*/
/*---------コンテンツ幅-----------*/
.max_w340 {
  max-width: 340px !important;
}

.max_w600 {
  max-width: 600px;
}

.max_w800 {
  max-width: 800px;
}

.max_w880 {
  max-width: 880px;
}

.max_w1070 {
  max-width: 1070px;
}

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

.bg_gray {
  background: url(/wp-content/uploads/top-slider-bg02.jpg) no-repeat center /cover !important;
}

.bg_blue {
  background: #66AFFF !important;
}

.bg_green {
  background: #E0F6EB !important;
}

.bg_cream {
  background: #FAF2D4 !important;
}

.bg_pink {
  background: #FFB5B9 !important;
}

.bg_light-blue {
  background: #E6F4FF !important;
}

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

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

.fc_black {
  color: var(--color-font) !important;
}

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

.fc_white {
  color: #fff !important;
}

.fc_blue {
  color: #66afff !important;
}

.fc_green {
  color: #4DB983 !important;
}

.fc_yellow {
  color: #FBB74C !important;
}

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

.ff_02 {
  font-family: var(--font-family02) !important;
}

.post p {
  line-height: 2;
}

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

.fz16 {
  font-size: var(--rem16);
}

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

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

.fz24 {
  font-size: var(--rem24);
}

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

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

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

.fz72 {
  font-size: var(--rem72);
}


/*---------フォント太さ-----------*/
.fw-mid {
  font-weight: 600;
}

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

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

/*---------flex-----------*/
.flex_g1 {
  flex-grow: 1;
}

/*---------行間-----------*/
.lh100 {
  line-height: 1 !important;
}

.lh140 {
  line-height: 1.4 !important;
}

/*--------box-----------*/
.colorbox-white {
  background: var(--color-background);
  padding: var(--rem40) var(--rem48);
  border-radius: var(--rem40);
}

/*---------border-----------*/
.border-b1 {
  border-bottom: 1px solid var(--color-table-border) !important;
}

/*---------tab表示-----------*/
@media screen and (max-width: 768px) {
  .tab_w60 {
    width: 60% !important;
  }

  .sp-txt_l {
    text-align: left !important;
  }
}

/*---------sp表示-----------*/
@media screen and (max-width: 450px) {


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

/*----------------------------------------------
  title
----------------------------------------------*/
header#h1Header {
  background: var(--color-primary);
}

header#h1Header h1.title {
  display: none;
}

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

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

  #thumbImg,
  header#h1Header {
    height: calc(150px + (1vw - 10.24px) * 9.2450);
  }

  header#h1Header h1.title {
    font-size: var(--rem30);
  }
}

.post h2 {
  font-size: var(--rem24w) !important;
  letter-spacing: initial !important;
}

.post h2::after {
  margin: 0.4em auto 0;
  background: #248cff !important;
}

.post h3 {
  font-size: var(--rem20);
  margin-bottom: var(--rem40);
}

.post h3::after {
  background: var(--color-primary) !important;
}

.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(--rem30) !important;
    font-weight: 500;
    text-align: center;
    color: var(--color-font);
    line-height: 1.4;
    overflow-wrap: break-word;
    padding: 0;
    margin: 0 auto var(--rem40);
    border: none;
    background: transparent;
    position: relative;

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

    .subtxt {
      font-family: var(--font-family03);
      display: block;
      font-size: var(--rem20);
      color: var(--color-primary);
      font-weight: 500;
      padding: 0;
      margin: 0;
      border: none;
      background: transparent;
    }

  }

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

    &:before {
      content: none;
    }

    &::after {
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: var(--px80);
      content: "";
      height: 2px;
      border-radius: 2px;
      background: var(--color-primary);
    }

    .subtxt {
      font-family: var(--font-family03);
      display: block;
      font-size: var(--rem24);
      color: var(--color-primary);
      font-weight: 600;
      padding: 0;
      margin: 0;
      border: none;
      background: transparent;
    }

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

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

  }

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

    &::before {
      content: none;
    }

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

  &.top-card-title {
    font-family: var(--font-family02);
    text-align: center;
    font-size: var(--rem20);
    font-weight: 600;
    margin: var(--rem12) 0;
  }

  /*---------page-secondary-title-----------*/
  &.page-secondary-title {
    font-size: var(--rem24);
    font-family: var(--font-family01);
    font-weight: 600;
    text-align: left;
    color: var(--color-font);
    line-height: 1.4;
    overflow-wrap: break-word;
    padding: 0 0 var(--rem20);
    margin: 0 auto var(--rem30);
    border: none;
    background: transparent;

    &::before {
      content: none;
    }

    &::after {
      position: absolute;
      bottom: 0;
      left: 0;
      width: var(--px96);
      height: 2px;
      content: "";
    }
  }
}

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

  .post h1,
  h1,
  .post h2,
  h2,
  .post h3,
  h3,
  .post h4,
  h4,
  .post h5,
  h5,
  p,
  div,
  span {
    &.top-card-title {
      font-size: 1.8rem;
      margin-bottom: 0.5rem;
    }
  }
}


@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-----------*/
  }
}

/*----------------------------------------------
  column
----------------------------------------------*/
/*---------column01-----------*/
.column01 {
  position: relative;
  margin: 0;
  padding: 0;
}

.column01_wrap {
  position: relative;
  margin: 0 auto;
  z-index: 1;
}

.column01 .txtarea {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--px80) var(--px40);
  margin: 0;
}

/* .column01 .txtarea .txtinner {
  max-width: 540px;
} */

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

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

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

  .column01 {
    .flexbox {
      display: block;

      .imgarea {
        width: 100%;
      }

      .txtarea {
        width: 100%;
      }
    }
  }
}

/*---------column04-----------*/
.sec01 {
  background: #F5F5F5;
}

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

.column04 {
  position: relative;
  padding: var(--px120) 0 0;
  margin: 0;
}

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

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

.column04 .txtarea {
  background: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--px80) 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;
}

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


/*---------column05-----------*/
.column05 {
  position: relative;
  margin: 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: 290 / 390;
  overflow: hidden;
  width: 60%;
}

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

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

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

@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% auto 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: 90%;
  }

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

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

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


.column05_02_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;
  z-index: 20;
}

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

.column05_02 .imgarea {
  position: relative;
  width: 50%;
}

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

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

.column05_02 .txtarea .txtinner {
  max-width: 540px;
  padding: 20px;
}

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

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

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

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

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

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

  .column05_02 .imgarea,
  .column05_02 .txtarea {
    width: 90%;
  }

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

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



/*---------column06-----------*/
.column06 {
  position: relative;
}

.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 .imgarea {
  position: relative;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  width: 60%;
  border-radius: 0 var(--rem40) var(--rem40) 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;
  border-radius: var(--rem40) 0 0 var(--rem40);
}

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

.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 .rev .imgarea {
    border-radius: var(--rem40) 0 0 var(--rem40);
  }

  .column06_wrap.rev .txtarea {
    margin: 0 -5% 0 auto;
    border-radius: 0 var(--rem40) var(--rem40) 0;
  }
}

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

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

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

@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: 450px) {
  .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%;
    margin-bottom: 10%;
  }

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

@media print,
screen and (max-width: 450px) {
  .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: center;
  flex-wrap: wrap;
  gap: var(--rem20);
}

.post .col4_list>li {
  width: 22%;
  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: 21.5%;
    margin-bottom: 2%;
  }
}

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

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

@media print,
screen and (max-width: 450px) {
  .post .col4_list {
    margin-top: var(--rem40);
  }

  .post .col4_list>li {
    width: 90%;
  }

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

/*---------col5-----------*/
.col5_list {
  display: flex;
  flex-wrap: wrap;
  gap: var(--rem20);
  justify-content: center;

  li {
    width: calc((100% / 5) - 20px);
  }
}

@media print,
screen and (max-width: 768px) {
  .col5_list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--rem20);
    justify-content: normal;

    li {
      width: 48%;
    }
  }
}

@media print,
screen and (max-width: 450px) {
  .col5_list {
    display: flex;
    flex-wrap: wrap;
    gap: var(--rem20);
    justify-content: normal;

    li {
      width: 100%;
    }
  }
}

.link-img {
  .link-img_contents {
    display: inline-block;
    overflow: hidden;
    width: 100%;
    background: #111;

    img {
      height: auto;
      transition: transform .6s ease;
      /* ゆっくり変化させる */
    }
  }

  &:hover {
    .link-img_contents img {
      transform: scale(1.1);
    }
  }
}

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

/*---------style02-------------*/
.card01_list.cardstyle02>li {
  display: flex;
  flex-direction: column;
}

.card01_list.cardstyle02>li .txtarea {
  background: #fff;
  padding: 20px 20px 30px 20px;
  flex-grow: 1;
}

.card01_list.cardstyle02>li .imgarea img {
  width: 100%;
}

@media print,
screen and (max-width: 768px) {
  .card01_list.cardstyle02>li {
    margin-bottom: 5%;
  }
}

/*---------txtstyle02 -----------*/

.post .txtstyle02,
.txtstyle02 {
  font-family: var(--font-family01);
  font-size: var(--rem36);
  font-weight: 600;
  text-align: left;
  margin: var(--rem36) auto;
  background: transparent;
  color: var(--color-background);
  line-height: 1.4;
  padding: 0;
}

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

.post .card02_list .txtstyle02,
.card02_list .txtstyle02 {
  font-size: var(--rem20);
  margin: 0 0 1rem;
}

/*---------03_style02-------------*/
.card03_list.cardstyle02 .imgarea img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s all;
}

.card03_list.cardstyle02>li:hover .imgarea img {
  transform: scale(1.04);
}

.card03_list.cardstyle02>li:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1;
}

.card03_list.cardstyle02 .txtinner {
  position: relative;
  color: #fff;
  z-index: 1;
}

.card03_list.cardstyle02 .txtinner .txtstyle02 {
  color: #fff;
}

.card03_list.cardstyle02 .imgarea {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  overflow: hidden;
  line-height: 0;
  z-index: -1;
}

.card03_list.cardstyle02 .imgarea img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
}

.card03_list.cardstyle02 a.filllink {
  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;
}


.card03_list>li {
  background: #eee;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 5;
  flex: 1;
  justify-content: flex-end;
  aspect-ratio: 3/4;
}

.card03_list .txtarea {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: var(--px12) 10px;
  font-family: var(--font-family02);
  font-weight: 400;
}

/*---------ナンバリング02-------------*/
.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;
  border-radius: 15px;
}

.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-font);
  background: #fff;
  font-size: var(--px30);
  font-family: var(--font-family02);
  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);
  width: auto;
  height: auto;
}

.num_list02 .num01::before {
  content: '\f0e6';
}

.num_list02 .num02::before {
  content: '\f1ec';
}

.num_list02 .num03::before {
  content: '\f0d1';
}

.num_list02 .num04::before {
  content: '\f0e7';
}

/*---------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: 100%;
  }

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


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

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

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

.cta01 .ctabtnlist li {
  width: 40%;
  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(--px50) 0;
  text-align: center;
  box-sizing: border-box;
  color: #111;
  border-radius: 0;
  transition: all ease .15s;
  box-shadow: 0px 6px 18px 0px rgba(0, 0, 0, 0.08);
}

.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: flex;
  align-items: center;
  font-weight: 500;
}

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

/*電話ボタン*/

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

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

.cta01 a.telbtn {
  background: var(--color-background);
  color: var(--color-primary);
}

/*メールボタン*/

.cta01 .mailbtn .btnttl {
  font-size: var(--rem20);
  font-family: var(--font-family02);
}

.cta01 a.mailbtn {
  background: var(--color-primary);
  color: var(--color-background);
}

/*ボタンアイコン*/

.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: '';
  display: inline-block;
  width: 25px;
  height: 20px;
  background: url(/wp-content/uploads/icon-mail.png) no-repeat center / contain;
  margin-right: 5px;
}

.cta01 .telnum::before {
  content: '\f3cd';
}

body.home .c_commoncta {
  display: none;
}

.page-contact .c_commoncta {
  display: none;
}

/*----------------------------------------------
  header
----------------------------------------------*/

/*--------------google翻訳--------------*/
#flags ul li a {
  padding: 0 !important;
}

.gt_flex {
  display: flex;
  justify-content: flex-end;
  padding: 5px 10px;
  background: var(--header-secondary);
}

#flags {
  width: 160px !important;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

.gt_flex #flags,
.gt_flex #google_language_translator {
  height: 30px;
}

.gt_flex ul#sortable li {
  height: 18px !important;
  display: block;
}

/*--------------google翻訳ここまで--------------*/
#header {

  .logo {
    padding: 0;
  }

  .inner {
    padding: 10px;
  }

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

    &::before {
      content: none;
    }

    &:hover {
      opacity: 0.8;
    }
  }

  a.head_btn .header_tel {
    color: var(--color-primary);
    font-family: var(--font-family02);
    font-size: var(--rem30);

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

  a.head_btn .header_time {
    color: var(--color-font);
    font-weight: 300;

    &::before {
      content: none;
    }
  }

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

    >span {
      &:before {
        content: '';
        display: inline-block;
        width: 25px;
        height: 20px;
        background: url(/wp-content/uploads/icon-mail.png) no-repeat center /contain;
        margin-right: 5px;
      }
    }
  }

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

  nav#mainNav ul li a {
    font-family: var(--font-family02);
  }

  nav#mainNav ul li a b,
  nav#mainNav ul li a span {
    margin-top: 0;
    font-weight: 500;
  }
}

.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);
    font-size: var(--px18);

    &:hover {
      opacity: 0.6;
    }
  }

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

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


}

@media print,
screen and (max-width: 768px) {
  #header {
    .inner {
      padding: 0;
    }
  }
}

@media print,
screen and (min-width: 1024px) {
  #header {
    position: fixed;
    height: 100px;
  }

  .sticky-header #header>.inner {
    height: inherit;
    background: none;
    box-shadow: none;
  }

  .sticky-header .site-header {
    position: static !important;
    width: initial !important;
    transform: initial;
    transition: none;
  }

  #mainImg,
  header#h1Header {
    margin-top: 100px !important;
  }
}



/*----------------------------------------------
  footer
----------------------------------------------*/
#footer .footer__logo img {
  max-width: 320px;
  max-height: var(--px160);
  -o-object-fit: contain;
  object-fit: contain;
}

/*----------------------------------------------
  link
----------------------------------------------*/
.txt-link {
  font-family: var(--font-family01);
  border-bottom: 1px solid var(--color-font);
  font-weight: 600;
}

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

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

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

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

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

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



/*----------------------------------------------
  fullwide
----------------------------------------------*/
/* ----fullwide01----*/
.fullwide01 {
  position: relative;
  background: #ccc;
}

.fullwide01_wrap {
  background: rgba(255, 255, 255, 0.7);
  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%;
  }
}

/* ----fullwide03----*/
.fullwide03 {
  position: relative;
  background: transparent;
  padding: var(--px80) 0
}

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

.fullwide03_wrap {
  position: relative;
  z-index: 1;
  max-width: 1240px;
  width: 94%;
  margin: 0 auto;
  padding: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fullwide03_inner {
  max-width: 1240px;
  width: 100%;
}

/*----------------------------------------------
  table
----------------------------------------------*/
@media print,
screen and (max-width: 768px) {
  .table-wrap {
    overflow-x: scroll;

    table {
      width: 1000px;
    }
  }
}

.post table th {
  background: var(--color-primary-shade);
  color: var(--color-font);
  vertical-align: middle;
}

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

.post table.table_style02 {
  border: none;
}

/*----------------------------------------------
  teleco_v1
----------------------------------------------*/
.teleco_v1 h2 {
  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: 100%;
  max-width: none;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  object-fit: cover;
  object-position: 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;
  padding: min(calc(80px + (1vw - 19.2px) * 3.5599), 100px);
  /* 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%;
    height: 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;
  }
}


/* ==========================
TOP
=========================== */
.front_contents {
  padding: var(--px100) 0;
}

.top-concept {
  background: url(/wp-content/uploads/top-concept-bg.jpg) no-repeat center /cover;
}

.top-about {
  .top-about-box {
    padding: var(--px80) 0;
    border-top: 2px solid var(--color-primary);
    border-bottom: 2px solid var(--color-primary);
  }
}

.l-topcta {
  .front_contents {
    padding: var(--px100) 0;
  }
}

.cta01 .cta01_wrap {
  padding: var(--px100) var(--px120);
}

@media print,
screen and (max-width: 425px) {
  .cta01 .cta01_wrap {
    padding: var(--px40) var(--px20);
  }

  .cta01 .ctabtnlist li,
  .cta01 .ctabtnlist a.item {
    width: 90%;
    margin: 0 auto;
  }

  .cta01 a.item {
    padding: var(--px40);
  }

  .cta01 {
    &.front_contents {
      padding: var(--px30) 0;

      h2.top-main-title {
        margin-bottom: var(--rem20);
      }
    }
  }

  .l-topcta {
    .front_contents {
      padding: var(--px30) 0;

      h2.top-main-title {
        margin-bottom: var(--rem20);
      }
    }
  }
}

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

  .top-about {
    padding-left: 5%;
    padding-right: 5%;
  }
}

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

  .top-concept,
  .top-about,
  .top-news,
  .top-reason {
    padding: var(--px100) 5%;
  }
}

/*--flow02--------------------------------------------*/

ul.flowlist02 {
  counter-reset: flow_list;
}

ul.flowlist02>li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  flex-direction: row-reverse;
  gap: min(calc(40px + (1vw - 19.2px) * 1.6181), 40px);
  width: 100%;
  padding: 60px;
  border-radius: 10px;
  background: #f2f2f2;
  position: relative;
}

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

.flowlist02 .flow_img {
  width: 35%;
}

.post .flowlist02>li>dl {
  width: calc(65% - min(calc(40px + (1vw - 19.2px) * 1.6181), 40px));
  line-height: 1.8;
}

.flowlist02>li:not(:last-child) dl::before,
.flowlist02>li:not(:last-child) dl::after {
  content: "";
  border: solid transparent;
  position: absolute;
  top: calc(100% + 20px);
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.flowlist02>li:not(:last-child) dl::before {
  border-width: 22px;
  border-top-color: #f16791;
}

.flowlist02>li:not(:last-child) dl::after {
  border-width: 20px;
}

.post .flowlist02>li>dl dt {
  position: relative;
  display: flex;
  align-items: center;
  font-size: min(calc(2.4rem + (1vw - 19.2px) * 0.4531), 2.4rem);
  /* 2.4-1.7rem (1920-375) */
  font-weight: 600;
  padding: 0 0 1rem 0;
  margin-bottom: min(calc(30px + (1vw - 19.2px) * 0.9709), 30px);
  border-bottom: dotted 1px;
}

.flowlist02>li dl dt .icon:before {
  content: counter(flow_list, decimal-leading-zero);
  counter-increment: flow_list;
  line-height: 1;
  color: #fff;
  background: var(--color-primary);
  padding: 5px 10px;
  margin-right: 10px;
  position: relative;
  z-index: 100;
}

.post .flowlist02>li>dl dd {
  padding: 0;
}

.top-service .card03_list>li {
  flex: auto;
}

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

  ul.flowlist02>li {
    padding: 40px 5%;
  }

  .post .flowlist02>li>dl,
  .flowlist02 .flow_img {
    width: 100%;
  }

  .flow_img::before {
    padding-top: calc(360px + (1vw - 7.68px) * 35.6234);
  }

  .top-service .col4_list>li {
    width: 44%;
  }

  .top-service .col4_list>li:last-child {
    margin-bottom: auto;
  }
}


/* ==========================
お問い合わせ
=========================== */

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

.wpcf7-form .any {
  background: var(--color-font);
  color: var(--color-background);
  font-size: 75%;
  font-weight: bold;
  margin-left: 0.8em;
  padding: 0.2em 0.6em;
  float: right;
}

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

  .wpcf7-form .any {
    float: inherit;
  }
}

/* ==========================
採用情報
=========================== */
.post .lead {
  font-size: min(calc(3.2rem + (1vw - 19.2px) * 0.5178), 3.2rem);
  /* 3.2-2.4rem (1920-375) */
  font-weight: 500;
}

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

/*--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;
}

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

/* ==========================
スタッフの1日
=========================== */
/*--flow01--------------------------------------------*/

.flowlist01 {
  padding-left: 13rem;
  position: relative;
}

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

.flowlist01>li {
  position: relative;
}

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

.flowlist01>li .icon {
  font-size: 1.6rem;
  color: #fff;
  background: var(--color-primary);
  font-family: var(--font-family03);
  padding: 0.8rem 2rem;
  display: block;
  position: absolute;
  top: 0;
  left: -13rem;
  z-index: 100;
}

.flowlist01>li .icon::after {
  content: "";
  border-style: solid;
  border-width: 5px 0 5px 10px;
  border-color: transparent transparent transparent var(--color-primary);
  position: absolute;
  top: 50%;
  left: 100%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

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

.flowlist01>li dl::before,
.flowlist01>li dl::after {
  content: "";
  display: block;
  position: absolute;
  top: 2rem;
}

.flowlist01>li dl::before {
  width: 7px;
  height: 7px;
  margin-top: 0;
  background: #1A1A1A;
  border-radius: 50%;
  left: -4px;
}

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

.flowlist01>li dl dt {
  margin-bottom: 0.5rem;
  font-weight: 600;
  font-size: 1.6rem;
  padding-bottom: 5px;
  border-bottom: 1px solid var(--color-font);
}

@media (max-width: 768px) {
  .flowlist01>li .icon {
    font-size: 1.2rem;
  }

  .flowlist01 {
    padding-left: 10rem;
  }

  .flowlist01>li .icon {
    left: -11rem;
  }

  .flowlist01::before {
    left: 10rem;
  }

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

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

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

/* ==========================
faq
=========================== */
.qa_list {
  cursor: pointer;
}

.qa_list .qa_list_inner dt {
  position: relative;
  font-weight: normal;
  margin: 1rem 0 0 0;
  display: flex;
  align-items: stretch;
  padding: 0rem 1rem 0rem 0rem;
  background: #ffffff;
  border: 1px solid #cccccc;
}

.qa_list .qa_list_inner dd .ans_flex {
  position: relative;
  font-weight: normal;
  margin: 0;
  display: flex;
  align-items: stretch;
  padding: 0;
  background: #ffffff;
}

.qa_list .qa_list_inner .a_ico {
  background: #f2f2f2;
  line-height: 1.0;
  padding: 1rem 1rem 1rem 1rem;
  font-size: 2.2rem;
  border-right: 1px solid #cccccc;
  width: 100%;
  text-align: center;
  max-width: 90px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body-font-family);
}

.qa_list .qa_list_inner .q_ico {
  color: #ffffff;
  background: var(--color-primary);
  line-height: 1.0;
  padding: 1rem 1rem 1rem 1rem;
  font-size: 2.2rem;
  font-weight: bold;
  width: 100%;
  text-align: center;
  max-width: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--body-font-family);
  border-right: 1px solid #cccccc;
}

.qa_list .qa_list_inner .q_desc,
.qa_list .qa_list_inner .a_desc {
  padding: 1.5rem 1.5rem 1.5rem 2rem;
  line-height: 1.7;
}

.qa_list .qa_list_inner .a_desc {
  line-height: 1.8;
  width: 100%;
}

.qa_list .qa_list_inner dt:after {
  content: '';
  position: absolute;
  top: 46%;
  right: 3rem;
  width: 12px;
  height: 12px;
  border-right: 1px solid #494949;
  border-bottom: 1px solid #494949;
  -webkit-transform: rotate(45deg) translateY(-50%);
  transform: rotate(45deg) translateY(-50%);
}

.qa_list .qa_list_inner .active:after {
  top: 43%;
  right: 2rem;
  -webkit-transform: rotate(-135deg) translateY(-50%);
  transform: rotate(-135deg) translateY(-50%);
}

.qa_list .qa_list_inner dd {
  display: none;
  position: relative;
  padding: 0;
  margin: 0 0 1rem 0;
  border: 1px solid #cccccc;
  border-top: 0;
}

@media only screen and (max-width: 959px) {
  .qa_list .qa_list_inner {
    margin-bottom: 8rem;
  }
}

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

  .qa_list .qa_list_inner .q_desc,
  .qa_list .qa_list_inner .a_desc {
    padding: 0.5rem 1rem 0.5rem 1rem;
  }

  .qa_list .qa_list_inner dt {
    padding: 0rem 1rem 0rem 0rem;
  }

  .qa_list .qa_list_inner .a_ico,
  .qa_list .qa_list_inner .q_ico {
    max-width: 50px;
    padding: 1.2rem 1.0rem;
  }

  .qa_list .qa_list_inner dt:after {
    right: 1.5rem;
    width: 6px;
    height: 6px;
  }

  .qa_list .qa_list_inner .active:after {
    right: 1.0rem;
  }
}

@media only screen and (max-width: 559px) {
  .qa_list .qa_list_inner dd {
    font-size: 1.4rem;
  }

  .qa_list .qa_list_inner {
    margin-bottom: 6rem;
  }

  .qa_list .qa_list_inner dt {
    font-size: 1.4rem;
  }
}

.linkbtn_list {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3%;

  li {
    width: 100%;
  }
}

.post ul.linkbtn_list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  justify-content: center;
  margin: var(--px40) auto;
  gap: 1%;
}

.post ul.linkbtn_list>li {
  width: auto;
  margin-bottom: var(--px20);
  text-align: center;
}

.post ul.linkbtn_list>li a.link_btn {
  width: auto;
  min-width: 240px;
  height: 100%;
  max-width: fit-content;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media print,
screen and (max-width: 640px) {
  .post ul.linkbtn_list>li {
    width: 48%;
  }

  .post ul.linkbtn_list>li a.link_btn {
    max-width: none;
    width: 100%;
    min-width: auto;
  }
}

.link_btn {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  font-size: var(--rem16);
  color: #ffffff;
  line-height: 1.8;
  text-align: center;
  background: var(--color-secondary);
  font-weight: 500;
  padding: var(--rem20) 30px var(--rem20) 20px;
  margin: 0 auto;
  border: none;
  border-radius: 50em;
  transition: all .3s;

  &:after {
    border-color: #ffffff;
  }

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

    &:after {
      border-color: #ffffff;
    }
  }
}

/* ==========================
選ばれる理由
=========================== */
.page-reason {
  background: #F3F9FF;

  #breadcrumb {
    background: #F3F9FF;
  }

  #content {
    background: var(--color-background);
    padding: var(--px100w) var(--px80) var(--px80) !important;
    margin: var(--px100w) auto !important;
  }
}

/* ==========================
その他の設定
=========================== */

@media print,
screen and (max-width: 768px) {
  .page_contents_inner.widecolor--primary-shade {
    padding: var(--px100) 5%;
  }
}

.page_contents_inner+.page_contents_inner {
  margin-top: var(--px100);
}

.table-wrapper {
  overflow-x: auto;
}

.price-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 600px;
  text-align: center;
}

.price-table th,
.price-table td {
  border: 1px solid #ddd;
  padding: 12px;
}

.price-table thead th {
  background-color: var(--color-primary-shade);
  font-weight: bold;
  text-align: center;
}

.price-table tbody tr:nth-child(even) {
  background-color: #fafafa;
}

.listnote {
  margin-top: 10px;
  font-size: 0.9em;
  color: #666;
}



.post h3 {
  border-bottom: none;
}


.post h2::after {
  background: #111;
}


.c-pricelist h3.c-pricelist__ttl::after {
  display: none;
}

.c-pricelist h3.c-pricelist__ttl.with-underline::after {
  content: '';
  display: block;
  height: 1px;
  background: #111;
  width: 100%;
  /* テーブルの幅に合わせたいので幅100% */
  margin-top: 8px;
  /* 下線と文字の間隔 */
}

.post h3::after {
  content: '';
  background: #111;
  height: 2px;
  width: 95px;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  display: inline-block;
}

.post table.price-table {
  border-spacing: 2px;
  border-collapse: separate;
  border: none;
}

@media print,
screen and (min-width: 769px) {
  .teleco_v1 .w50.image_box img {
    width: 100%;
    height: 100%;
  }
}

#header {
  & a.head_btn.mail_btn {
    &>span {
      &:before {
        content: '';
        display: inline-block;
        width: 25px;
        height: 15px;
        background: url(/wp-content/uploads/icon-mail.png) no-repeat center / contain;
        margin-right: 5px;
      }
    }
  }
}

.post h2 {
  font-size: var(--rem24);
  font-family: var(--font-family01);
  font-weight: 600;
  text-align: center;
  letter-spacing: .2rem;
  padding: 0;
  margin: var(--px120) auto var(--px50);
}


.card03_list.cardstyle02>li:before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 1;
}

.linkBtn,
.post .linkBtn,
a.linkBtn,
.post .subimitarea .linkBtn input[type="submit"] {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 300px;
  font-size: var(--rem16);
  color: var(--color-primary);
  line-height: 1.8;
  text-align: center;
  background: transparent;
  font-weight: 600;
  padding: var(--rem20) 30px var(--rem20) 20px;
  margin: 0 auto 0;
  border: solid 1px var(--color-primary);
  border-radius: 0;
  transition: all .3s;
}



.post table th,
.post table td {
  padding: var(--rem30) var(--rem24);
}

.linkBtn,
.post .linkBtn,
a.linkBtn,
.post .subimitarea .linkBtn input[type="submit"] {
  font-weight: 400;
}

#footer .footnav:not(:last-child) {
  margin-bottom: 0px;
  margin-top: 1%;
}

#copyright {
  margin: 10px auto 2%;
}

.card-type01 {

  li {
    display: flex;

    a {
      display: flex;
      flex-direction: column;
      flex: 1;
      padding: var(--rem30);
      border: 1px solid var(--color-primary);
      background: var(--color-background);
      transition: .3s;

      h3.card-type01__item {
        font-family: var(--font-family02);
        text-align: center;
        margin: 0 0 var(--rem20);
        padding: 0;

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

      .card-type01__image {
        width: var(--px100w);
        height: var(--px100w);
        border-radius: 50%;
        overflow: hidden;
        margin: 0 auto var(--rem20);

        img {
          width: 100%;
          height: 100%;
          object-fit: cover;
          object-position: 50% 50%;
        }
      }

      p {
        text-align: center;
        font-size: 14px;
      }

      .card-type01__arw {
        color: var(--color-primary);
        width: var(--rem16);
        margin: auto auto 0;

        i.fa-solid.fa-chevron-down {
          display: block;
        }
      }
    }

    a:hover {
      border: 1px solid var(--color-primary);
      background: var(--color-primary);
      color: var(--color-background);

      img {
        opacity: 1;
      }

      h3.card-type01__item {
        color: var(--color-background);
      }

      .card-type01__arw {
        color: var(--color-background);
        width: var(--rem16);
        margin: auto auto 0;
      }
    }
  }
}


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

    li {
      p {
        text-align: left;
      }
    }
  }
}

@media (max-width: 768px) {
	.pc{
		display:none;
	}
	.sp{
		display:block;
	}
}
@media (min-width: 769px) {
	.pc{
		display:block;
	}
	.sp{
		display:none;
	}
}