@charset "utf-8";
/*
Theme Name:mrp-child
Template:mrp
Version: 1.0.0
*/
/*
DesignCode CSS: ver 0.01
*/
/*------------------------------------------------------
Theme Material
------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&display=swap');
:root {
  /*------▼基本設定▼------*/
  --color-font: #272727;
  --color-primary: #002147;  /* rgb(0 33 71) */
  --color-primary-shade: rgb(0 33 71 / 0.6);
  --color-primary-tint: rgb(0 33 71 / 0.6);
  --color-table-border: #ddd;
  /*------▼ヘッダー設定▼------*/
  --header-color-font: #002147;
  --header-color-primary: #002147;  /* rgb(0 33 71) */
  --header-color-primary-tint: rgb(0 33 71 / 0.7);
  /*------▼フッター設定▼------*/
  --footer-background: #002147;
  --footer-color-font: #fff;
  --footer-color-primary: #fff;
  /*------▼フォント設定▼------*/
  --font-family03: 'Montserrat', sans-serif;

  --gr-primary: linear-gradient(to left, #002147, #1A75DF);

  --rem100: min(calc(10rem + (1vw - 1.92rem) * 3.2362), 10rem);/*10rem-5rem (1920-375)*/
  --rem64: min(calc(6.4rem + (1vw - 1.92rem) * 1.6828), 6.4rem);/*6.4rem-3.8rem (1920-375)*/
  --rem55: min(calc(5.5rem + (1vw - 1.92rem) * 1.4239), 3.3rem);/*5.5rem-3.3rem*/
}

/*--カラムリスト--------------------------------------------*/

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

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

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

h1.title.front-post {
  display: none;
}
h1.title {
  font-weight: 500;
  color: var(--color-font);
}
.post h2 {
  font-weight: 500;
  margin: 0 auto var(--px30);
}
.post h2::after {
  content: none;
}
.cta01 h2,
h1.title.bottom-loop {
  font-family: var(--font-family03);
  font-size: var(--rem64);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0;
  background: var(--gr-primary);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
}
.cta01 h2 span,
h1.title.bottom-loop span span {
  display: block;
  font-family: var(--body-font-family);
  font-weight: 500;
  font-size: var(--rem24);
  -webkit-text-fill-color: var(--color-font);
}
.post h3 {
  font-weight: 500;
  color: var(--color-font);
  border: none;
  margin: 0 auto var(--px20);
  padding: 0;
}
.post h4 {
  font-weight: 400;
  color: var(--color-font);
}
.post p { line-height: 1.8;}

.w25 { width: 25%; }
.w35 { width: 35%; }
.w65 { width: 65%; }
.w75 { width: 75%; }
@media screen and (max-width: 768px) {
  .w25, .w35, .w65, .w75 {
    width: 100%;
    margin-bottom: 20px;
  }
}

/* btn */
.linkBtn {
  border-radius: 34px;
  max-width: 380px;
}
.linkBtn::before {
  display: block;
  content: '';
  position: absolute;
  top: 50%;
  right: 26px;
  width: 6px;
  height: 6px;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  margin-top: -3px;
  transition: all .3s;
}

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

/* header */
header#h1Header h1.title span.sub_ttl:not(:empty) + span {
  display: none;
}
header#h1Header h1.title,
header#h1Header h1.title span.sub_ttl {
  font-size: var(--rem55);
}
header#h1Header {
  height: 200px;
}
header#h1Header::before {
  opacity: 0;
}
@media print, screen and (min-width: 1024px) {
  nav#mainNav ul li a b, nav#mainNav ul li a span {
    font-weight: 400;
  }
  nav#mainNav ul li.current-menu-item a b, nav#mainNav ul li a:hover b, nav#mainNav ul li a:active b, nav#mainNav ul li.current-menu-parent a b {
    color: var(--header-color-primary-tint);
  }
  #header ul.header__contact li {
    height: 76%;
  }
  #header a.head_btn {
    flex-direction: row;
    gap: 1em;
    font-weight: 700;
    font-size: var(--rem14);
    border-radius: 50px;
    padding: 0 var(--px40);
  }
}
@media print, screen and (min-width: 769px) {
  #metaslider-id-178,
  #metaslider-id-178 + div:has(.ms-edit-frontend) {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #metaslider-id-98,
  #metaslider-id-98 + div:has(.ms-edit-frontend) {
    display: none;
  }
}

/* footer */
.home .dn, .page-contact .dn, .page-thanks .dn, .page-sitemap .dn {
  display: none;
}
#footer {
  padding: var(--px80) 0 var(--px60);
}
#footer .footer__logo img {
  max-width: 348px;
}
#footer .footer__logo:not(:last-child) {
  margin-bottom: 30px;
}
#footer .footnav:not(:last-child) {
    margin-bottom: 20px;
}
#footer ul li a {
  font-weight: 500;
  font-size: var(--rem14);
}
#copyright {
  margin: 0 auto;
  font-weight: 300;
}

/* top */
.top01 {
  background: url(/wp-content/uploads/top06.png) no-repeat top/cover;
}
.top01 h2 {
  font-family: var(--font-family03);
  font-weight: 700;
  font-size: var(--rem64);
  line-height: 1.3;
  margin: 0 auto var(--px100);
  background: var(--gr-primary);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
}
.top01 h2 span {
  display: block;
  font-family: var(--font-family01);
  font-weight: 500;
  font-size: var(--rem24);
  -webkit-text-fill-color: var(--color-font);
}
.top01 .num_list01 {
  counter-reset:number;
  list-style-type: none!important;
}
.top01 .num_list01 li {
  position: relative;
  margin-bottom: 8%;
}
.top01 .num_list01 li:before {
  position: absolute;
  counter-increment: number;
  content: "0" counter(number);
  display: inline-block;
  background: var(--gr-primary);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  font-family: var(--font-family03);
  font-weight: 300;
  font-size: var(--rem100);
  top: 0;
  left: 0;
  transform: translateY(-50%);
  height: 120px;
  line-height: 120px;
  text-align: center;
  z-index: 100;
}
.top01 .imgarea {
  border-radius: 60px 0 0 0;
  overflow: hidden;
  aspect-ratio: 600 / 380;
}
.top01 .imgarea img {
  object-fit: cover;
}
.top01 .ttl {
  font-size: var(--rem28);
  background: var(--gr-primary);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  margin: var(--rem12) auto;
}
.top01 .txtarea {
  padding: 2px var(--px30) var(--px30);
  border-radius: 0 0 60px 0;
  background: white;
}
@media print, screen and (max-width: 768px) {
  .top01 {
    background-position-x: 80%;
  }
  .top01 .col2_list > li {
    width: 90%;
    margin: 0 auto 8%;;
  }
}

.top02 {
  background: #F3F3F5;
}
.top02 .flexbox + .flexbox {
  margin-top: var(--px80);
}
.top02 .txt01 {
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: solid 1px var(--color-primary);
}
.top02 .txt01 .ttl {
  font-family: var(--font-family03);
  font-weight: 700;
  font-size: var(--rem48w);
  background: var(--gr-primary);
  background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
}
.top02 .txt02 {
  padding: var(--px20) var(--px40);
}
.top02 .txt02 .ttl {
  font-size: var(--rem30);
  color: var(--color-primary);
  margin-bottom: 1em;
}
@media print, screen and (max-width: 768px) {
  .top02 .txt01 {
    border: none;
    border-bottom: solid 1px var(--color-primary);
  }
}

/*-----------------------------
cta01_col2
------------------------------*/
.cta01 {
  background:var(--color-primary);
  padding: var(--px120) 0;
  position: relative;
  z-index: 0;
}
.cta01::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url(/wp-content/uploads/cta01.png) no-repeat center/cover;
  opacity: 0.3;
}
.cta01 .cta01_wrap {
  max-width: var(--content-max-width);
    width: 90%;
    margin: 0 auto;
  background: rgb(255 255 255 / 0.83);
    padding: var(--px80);
}
.cta01 .ctabtnlist {
    justify-content: center;
    max-width: 960px;
    margin: var(--px30) 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(--px40) 0;
    text-align: center;
    box-sizing: border-box;
    color: #111;
    border-radius: 0;
    transition: all ease .15s;
}
.cta01 a.item:hover{
  opacity: 0.8;
}
@media print, screen and (max-width: 768px) {
  .cta01 .ctabtnlist li, .cta01 .ctabtnlist a.item {
    width: 100%;
  }
  .cta01 .ctabtnlist li + li {
    margin-top: 1rem;
  }
}
  
/*ボタン共通パーツ*/
.cta01 .btnttl {
  display: block;
  font-weight: bold;
  margin-bottom: 1rem;
}
.cta01 .infotxt {
  font-size: var(--rem18);  
  font-weight: 400;
}

/*電話ボタン*/
.cta01 .telnum {
  font-size: var(--rem36);
  margin-bottom: 1rem;
}
.cta01 .telbtn .btnttl {
  font-size: var(--rem20);
}
.cta01 a.telbtn {
    background: #111;
  color: #fff;
}
  
/*メールボタン*/
.cta01 .mailbtn .btnttl {
  font-size: var(--rem24);
  font-weight: 400;
}
.cta01 a.mailbtn {
  background: var(--color-primary);
  color: #fff;
}
  
/*ボタンアイコン*/
.cta01 .mailbtn .btnttl::before, .cta01 .telnum::before {
  content: '';
  display: inline-block;
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  margin-right: 1rem;
}
.cta01 .mailbtn .btnttl::before {
  content: '\f0e0';
}
.cta01 .telnum::before {
  content: '\f3cd';
}

/* news */
#front_bottom_content {
  background: transparent;
}
.postlist li:first-child {
  border-top: 1px solid var(--color-table-border);
}
.postlist li {
  border-bottom: 1px solid var(--color-table-border);
}
.postlist .post_text {
  padding: 20px 0;
  color: var(--color-table-border);
}
.postlist .date {
 color: var(--color-font);
}

/* profile */
.profile h2 {
  font-weight: 400;
  font-size: var(--rem48);
  color: var(--color-font);
  letter-spacing: 0;
  text-align: left;
  background: var(--gr-primary) left bottom / 100% 2px no-repeat;
  padding-bottom: 0.3em;
}
.profile h2 span.en {
  font-family: var(--font-family03);
  font-weight: 300;
  font-size: var(--rem24);
  margin-left: 0.5em;
  background: var(--gr-primary);
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.profile .link_box {
  background: #F3F3F5;
  padding: var(--px50) var(--px50) var(--px30);
}
.profile .link_box p a {
  margin-left: 1em;
  text-decoration:underline;
}
.profile .link_box p a:hover {
  opacity: 0.4;
}
.profile .link_box p a::after {
  font-family: 'FontAwesome';
  content: '\f35d';
  font-size: 1em;
  font-weight: 400;
  line-height: 1;
  margin-left: .2em;
}
.profile .logo_list {
  width: 90%;
  margin: 2em auto 0;
}
.profile .logo_list a {
  display: block;
}
.profile figure.photo {
  width: 90%;
  max-width: 800px;
  margin: var(--px80) auto;
}
.profile h2.book {
  font-size: var(--rem36);
}

.profile .col3_list .imgarea {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 258px;
  background: #F3F3F5;
}
.profile .logo_list img {
  width: 100%;
  height: auto;
}
.profile .col3_list .txtarea {
  text-align: center;
}
.profile a:hover .txtarea {
  opacity: 0.6;
}
.profile .book_list .imgarea {
  padding: 5% 0;
}
.profile .book_list .imgarea img {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.profile .col3_list .book_title {
  font-size: var(--rem20);
}

@media print, screen and (max-width: 1023px) {
  .profile .col3_list > li {
    width: 48%;
    margin-bottom: 2%;
  }
}
@media print, screen and (max-width: 768px) {
  .profile .col3_list > li {
    width: 90%;
    margin: 0 auto 5%;
  }
} 

/* thought-leadership */
.thought_leader.fw_contents .page_contents_inner {
  padding: var(--px100) calc((100vw - 100%) / 2) var(--px80);
}
.thought_leader.fw_contents .page_contents_inner:nth-child(even) {
  background: #F3F3F5;
}
.thought_leader .msg_box {
  width: 90%;
  max-width: 800px;
  margin: 0 auto;
  padding: 20px var(--px50);
  font-size: var(--rem18);
  color: var(--color-primary);
  border-radius: 50px 0px;
  border: 2px solid transparent;
  background:
    linear-gradient(#fff, #fff) padding-box,
    var(--gr-primary) border-box;
}
.thought_leader h2 {
  font-weight: 700;
  color: var(--color-font);
  letter-spacing: 0;
  margin: 0 auto var(--px50);
  background: var(--gr-primary) left bottom / 100% 2px no-repeat;
  padding-bottom: 0.5em;
}
.thought_leader h2 span.en {
  display: block;
  font-size: var(--rem16);
  background: var(--gr-primary);
  background-clip: text;
  -webkit-text-fill-color: transparent;  
  width: fit-content;
  margin: 0 auto;
}
.thought_leader p + p {
  margin-top: var(--rem20);
}

/* contact */
.wpcf7-form table th {
  background: var(--color-primary);
  color: #fff;
}
.wpcf7-form .linkBtn {
  max-width: 350px;
  border-radius: 34px;
  padding: 0;
}
.wpcf7-form .linkBtn input[type="submit"] {
  width: 100%;
  padding: 20px 0;
}
.wpcf7-spinner {
  display: none;
}