@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@700&family=Noto+Sans+JP:wght@400..600&display=swap");
:root {
  -ms-overflow-style: -ms-autohiding-scrollbar;
  overflow-y: scroll;
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
       text-size-adjust: 100%;
  --main_color: #bbcbe4;
  --text_color: #131313;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-family: "Noto Sans JP", serif, "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", "Hiragino Kaku Gothic ProN", "Hiragino Sans", sans-serif;
  font-weight: 400;
  color: var(--text_color);
  padding-top: 46px;
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
  overflow-y: hidden;
}

.gfont {
  font-family: "Alegreya", serif;
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-weight: 700;
  font-style: normal;
}

ul,
ol {
  list-style-type: none;
  margin: 0;
  padding: 0;
}

img {
  width: 100%;
  height: auto;
  vertical-align: bottom;
}

a {
  transition: 0.2s;
  word-break: break-all;
}
a:link, a:visited {
  color: var(--text_color);
}
a:hover {
  text-decoration: none;
  opacity: 0.8;
}

a.u-link_line {
  position: relative;
}
a.u-link_line::after {
  background-color: currentColor;
  bottom: -2px;
  content: "";
  height: 1px;
  left: 0;
  position: absolute;
  transform: scale(0, 1);
  transform-origin: right top;
  transition: transform 0.2s;
  width: 100%;
}
a.u-link_line:hover::after {
  transform-origin: left top;
  transform: scale(1, 1);
}

.pc {
  display: none;
}

@media (min-width: 960px) {
  .pc {
    display: initial;
  }
  .mob {
    display: none;
  }
}
@media (min-width: 1040px) {
  body {
    padding-top: 82px;
  }
}
.container {
  width: 100%;
  padding-right: 2rem;
  padding-left: 2rem;
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 960px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
.container.container-s {
  max-width: 860px;
}

.container.container-m {
  max-width: 960px;
}

.container.container-l {
  max-width: 1240px;
}

/*--------------------------
共通パーツ
--------------------------*/
/*ボタン*/
.button_type1 {
  margin: 30px auto;
  width: 80%;
  min-width: 325px;
}
.button_type1 a {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 12px;
  min-height: 52px;
  border: 1px solid #000;
  border-radius: 100px;
  background: #fff;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
.button_type1 a .arr_round {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  right: 15px;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
.button_type1 a .arr_round::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(/wp-content/uploads/right_line_white.svg) no-repeat;
  background-size: contain;
  position: relative;
  left: 1px;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
.button_type1 a:hover {
  background: #000;
  color: #fff;
}
.button_type1 a:hover .arr_round {
  background: #fff;
  right: 12px;
}
.button_type1 a:hover .arr_round::before {
  background-image: url(/wp-content/uploads/right_line_black.svg);
}

.button_type1_color {
  margin: 30px auto;
  width: 80%;
  min-width: 325px;
}
.button_type1_color a {
  font-size: 1.6rem;
  font-weight: 600;
  line-height: 1.2;
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 12px;
  min-height: 52px;
  border: 1px solid var(--main_color);
  border-radius: 100px;
  background: var(--main_color);
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
.button_type1_color a .arr_round {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 26px;
  height: 26px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  right: 15px;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
.button_type1_color a .arr_round::before {
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(/wp-content/uploads/right_line_color.svg) no-repeat;
  background-size: contain;
  position: relative;
  left: 1px;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
.button_type1_color a:hover {
  background: #fff;
  color: #0089c0;
  border-color: #0089c0;
}
.button_type1_color a:hover .arr_round {
  background: #0089c0;
  right: 12px;
}
.button_type1_color a:hover .arr_round::before {
  background-image: url(/wp-content/uploads/right_line_white.svg);
}

@media (min-width: 768px) {
  .button_type1 {
    max-width: 350px;
    margin: 70px auto 30px;
  }
  .button_type1 a {
    min-height: 68px;
  }
  .button_type1 a .arr_round {
    width: 30px;
    height: 30px;
    right: 20px;
  }
  .button_type1 a .arr_round::before {
    width: 20px;
    height: 20px;
  }
  .button_type1 a:hover .arr_round {
    right: 15px;
  }
  .button_type1_color {
    max-width: 350px;
    margin: 70px auto 30px;
  }
  .button_type1_color a {
    min-height: 68px;
  }
  .button_type1_color a .arr_round {
    width: 30px;
    height: 30px;
    right: 20px;
  }
  .button_type1_color a .arr_round::before {
    width: 20px;
    height: 20px;
  }
  .button_type1_color a:hover .arr_round {
    right: 15px;
  }
}
.button_type1.u_left,
.button_type1_color.u_left {
  margin-right: auto;
  margin-left: 0;
}

.button_type1.u_right,
.button_type1_color.u_right {
  margin-left: auto;
  margin-right: 0;
}

.post-thumbnail {
  margin-bottom: 30px;
  aspect-ratio: 3/2;
  overflow: hidden;
}

.post_decoration p {
  font-size: 1.6rem;
  font-weight: 400;
  line-height: 2;
  margin: 25px 0;
}
.post_decoration h2.wp-block-heading {
  font-size: 2.1rem;
  font-weight: 600;
  line-height: 1.5;
  color: #0e3e90;
  padding-bottom: 16px;
  margin: 60px 0 40px;
  position: relative;
}
.post_decoration h2.wp-block-heading::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  border-radius: 3px;
  background: linear-gradient(to right, #e4d622 0 30px, #d7dddf 30px 100%);
  transform: translateY(4px);
  z-index: -1;
}
.post_decoration h3.wp-block-heading {
  font-size: 2rem;
  padding-left: 0;
  color: #223c49;
  color: #009cda;
  margin: 35px 0 30px;
  position: relative;
}
.post_decoration h4.wp-block-heading {
  font-size: 1.6rem;
  padding-left: 0;
  color: #000;
  margin: 35px 0;
  position: relative;
}
.post_decoration .wp-block-image {
  margin: 50px auto;
  max-width: 650px;
}
.post_decoration .wp-block-list {
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 20px 0;
}
.post_decoration .wp-block-list li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 9px;
}
.post_decoration .wp-block-list li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  background: #000;
  border-radius: 50%;
  position: absolute;
  top: 9px;
  left: 8px;
}
.post_decoration ol {
  font-size: 1.6rem;
  line-height: 1.4;
  margin: 20px 0;
  counter-reset: olnum;
}
.post_decoration ol li {
  position: relative;
  padding-left: 28px;
  margin-bottom: 9px;
}
.post_decoration ol li::before {
  counter-increment: olnum;
  content: counter(olnum) ".";
  position: absolute;
  top: 0;
  left: 0;
}
.post_decoration img.img_post {
  max-width: 900px;
  margin: 30px auto 30px;
  display: block;
}
.post_decoration .post-thumbnail {
  margin-bottom: 40px;
}

@media (min-width: 960px) {
  .post_decoration p {
    font-size: 1.7rem;
  }
  .post_decoration h2.wp-block-heading {
    font-size: 2.7rem;
    margin: 80px 0 35px;
  }
  .post_decoration h3.wp-block-heading {
    font-size: 2.2rem;
  }
  .post_decoration h4.wp-block-heading {
    font-size: 1.8rem;
  }
  .post_decoration img.img_post {
    margin: 50px auto 30px;
  }
}
/*--------------------------
インタビュー記事ページ
--------------------------*/
.interview_title {
  font-size: 2.3rem;
  color: #0e3e90;
  width: 90%;
  max-width: 860px;
  margin: 30px auto;
}

.entry-header.layout_interview {
  background: url(/wp-content/uploads/interview_box_bg.png);
  background-size: cover;
}
.entry-header.layout_interview::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 18%;
  background: #fff;
}
.entry-header.layout_interview .interview_box {
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  position: relative;
  width: 94%;
  z-index: 2;
}
.entry-header.layout_interview .interview_box_content {
  flex: 1 1 50%;
  background: #fff;
  padding: 18px 22px;
  box-shadow: 9px 9px 0 0 #bbcbe4;
}
.entry-header.layout_interview .interview_box_tags {
  position: absolute;
  top: 13px;
}
.entry-header.layout_interview .interview_box_tags .tag {
  display: inline-block;
  font-size: 1.6rem;
  font-weight: 600;
  padding: 1px 6px;
  border: 2px solid #0e3e90;
  color: #0e3e90;
  background: #fff;
  margin-right: 4px;
}
.entry-header.layout_interview .interview_box_name {
  position: absolute;
  top: 52px;
  left: 23px;
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.2);
}
.entry-header.layout_interview .interview_box_name strong {
  font-size: 130%;
}
.entry-header.layout_interview .interview_box_quote {
  font-size: 2rem;
  line-height: 1.7;
  margin: 0 0 10px 0;
  font-weight: 600;
}
.entry-header.layout_interview .interview_box_desc {
  font-size: 1.4rem;
  line-height: 1.7;
  color: #727272;
  font-weight: 500;
  margin: 0;
}
.entry-header.layout_interview .interview_box_note {
  font-size: 1.1rem;
  color: #565656;
  line-height: 1.6;
  font-weight: 500;
  text-align: end;
  margin: 23px auto 0px;
  width: 90%;
  padding-bottom: 23px;
}

@media (min-width: 960px) {
  .interview_title {
    font-size: 3.5rem;
  }
  .entry-header.layout_interview::before {
    content: none;
  }
  .entry-header.layout_interview .interview_box {
    padding: 57px 0 10px;
    flex-direction: row;
    max-width: 910px;
    width: 100%;
    align-items: flex-start;
  }
  .entry-header.layout_interview .interview_box picture {
    flex: 0 0 47%;
  }
  .entry-header.layout_interview .interview_box_content {
    flex: 0 0 63%;
    margin-left: -10%;
    margin-top: 23px;
    padding: 40px 30px 0 38px;
    letter-spacing: 0.16em;
    background: #fff;
    box-shadow: 9px 9px 0 0 #bbcbe4;
  }
  .entry-header.layout_interview .interview_box_tags {
    position: static;
    margin-bottom: 10px;
  }
  .entry-header.layout_interview .interview_box_tags .tag {
    font-size: 2rem;
    padding: 2px 8px;
  }
  .entry-header.layout_interview .interview_box_name {
    position: static;
    font-size: 3rem;
    color: #0e3e90;
    margin: 0 0 12px 0;
    text-shadow: none;
  }
  .entry-header.layout_interview .interview_box_quote {
    font-size: 2.8rem;
    margin-bottom: 15px;
  }
  .entry-header.layout_interview .interview_box_quote.long_text {
    font-size: 2.6rem;
  }
  .entry-header.layout_interview .interview_box_desc {
    font-size: 1.9rem;
    margin-bottom: 32px;
  }
  .entry-header.layout_interview .interview_box_desc.long_text {
    font-size: 1.7rem;
  }
  .entry-header.layout_interview .interview_box_note {
    font-size: 1.3rem;
    max-width: 910px;
    padding-top: 19px;
    padding-bottom: 40px;
    margin: auto;
  }
  .entry-header.layout_interview .interview_box_image img {
    height: 100%;
  }
}
/*目次*/
.post_decoration #toc_container {
  border: none;
  background: #f5f5f5;
  padding: 18px 20px 30px;
  margin: 40px 0;
  width: 100%;
}
.post_decoration #toc_container .toc_title {
  font-size: 1.8rem;
  line-height: 1.5;
  text-align: left;
  margin: 0 0 10px;
}
.post_decoration #toc_container .toc_list {
  margin: 0 !important;
  margin: 0;
}
.post_decoration #toc_container .toc_list li {
  font-size: 1.6rem;
  line-height: 1.5;
}
.post_decoration #toc_container .toc_list li + li {
  margin-top: 0.5em;
}
.post_decoration #toc_container .toc_list a {
  font-size: inherit;
}

@media (min-width: 768px) {
  .post_decoration #toc_container {
    padding: 18px 30px 35px;
  }
  .post_decoration #toc_container .toc_title {
    font-size: 1.8rem;
    line-height: 1.5;
    text-align: left;
    margin: 0 0 18px;
  }
  .post_decoration #toc_container .toc_list {
    margin: 0 !important;
    margin: 0;
  }
  .post_decoration #toc_container .toc_list li {
    line-height: 1.5;
  }
  .post_decoration #toc_container .toc_list li + li {
    margin-top: 0.8em;
  }
  .post_decoration #toc_container .toc_list a {
    font-size: inherit;
  }
}
/*--------------------------
インタビュー記事の記事カード
--------------------------*/
.layout_page .interview_card .entry-header {
  padding: inherit;
  text-align: inherit;
  margin-bottom: inherit;
}

.interview_card {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
.interview_card a {
  position: static !important;
  text-decoration: none;
}
.interview_card .entry-header.layout_interview {
  background: none;
}
.interview_card .entry-header.layout_interview .entry-header_inner .interview_box {
  width: 100%;
}
.interview_card .entry-header.layout_interview .entry-header_inner .interview_box picture img {
  width: 100%;
  height: 140px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center 60%;
     object-position: center 60%;
}
.interview_card .entry-header.layout_interview .interview_box_content {
  box-shadow: none;
  position: relative;
}
.interview_card .entry-header.layout_interview .interview_box_content::before {
  content: "";
  display: block;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background-color: #000;
  background-image: url(/wp-content/uploads/right_line_white.svg);
  background-size: 16px 16px;
  background-position: center;
  background-repeat: no-repeat;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: 0.2s;
}
.interview_card .entry-header.layout_interview .interview_box_content .interview_title {
  color: #131313;
  margin: inherit;
  font-size: 1.6rem;
}
.interview_card .entry-header.layout_interview .interview_box_tags {
  position: static;
}
.interview_card .entry-header.layout_interview .interview_box_name {
  position: static;
  color: #0e3e90;
  text-shadow: none;
  font-size: 1.6rem;
  padding: 5px 0;
}

@media (min-width: 960px) {
  .postlist_card .interview_card {
    padding: 0;
  }
  .postlist_card .interview_card .entry-header.layout_interview .interview_box_content {
    padding: 20px;
    width: 100%;
    top: 0;
    margin: 0;
  }
  .postlist_card .interview_card .entry-header.layout_interview .interview_box_content .interview_title {
    font-size: 1.8rem;
  }
  .postlist_card .interview_card .entry-header.layout_interview .interview_box {
    flex-direction: column;
    padding: 0;
    align-items: inherit;
  }
  .postlist_card .interview_card .entry-header.layout_interview .interview_box_tags .tag {
    font-size: 1.8rem;
  }
  .postlist_card .interview_card .entry-header.layout_interview .interview_box_name {
    font-size: 2rem;
    padding: 0;
    margin-bottom: 10px;
  }
}
.postlist_card {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  margin-left: auto;
  margin-right: auto;
}
.postlist_card > article {
  position: relative;
  flex: 1 1 100%;
  display: flex;
  gap: 12px;
  align-items: center;
  transition: 0.2s;
}
.postlist_card > article > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.2s;
  z-index: 1;
}
.postlist_card > article .postlist_imgarea {
  flex: 0 0 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
}
.postlist_card > article .postlist_imgarea img {
  width: auto;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.postlist_card > article .postlist_txtarea .postlist_title {
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 1.4;
}
.postlist_card > article .postlist_txtarea .postlist_company_name {
  font-size: 1.2rem;
  font-weight: 400;
  line-height: 1.4;
  margin-top: 4px;
}

@media (min-width: 560px) {
  .postlist_card {
    width: 100%;
    flex-wrap: wrap;
  }
}
@media (min-width: 768px) {
  .postlist_card {
    gap: 20px 30px;
  }
  .postlist_card > article {
    flex: 0 0 calc((100% - 30px) / 2);
    gap: 20px;
  }
}
@media (min-width: 1200px) {
  .postlist_card {
    gap: 30px;
  }
  .postlist_card > article {
    flex: 0 0 calc((100% - 60px) / 3);
  }
}
/*--------------------------
コラム記事の記事カード
--------------------------*/
.postlist_card_column {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 20px 10px;
}
.postlist_card_column > article {
  position: relative;
  flex: 0 0 calc((100% - 10px) / 2);
}
.postlist_card_column > article > a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: 0.2s;
  z-index: 1;
}
.postlist_card_column > article > a:hover {
  background: rgba(255, 255, 255, 0.2);
  filter: brightness(200%);
}
.postlist_card_column > article > a:hover + .postlist_imgarea img {
  transform: scale(1.08);
}
.postlist_card_column > article .postlist_imgarea {
  position: relative;
  overflow: hidden;
}
.postlist_card_column > article .postlist_imgarea img {
  transition: 0.2s;
}
.postlist_card_column > article .postlist_txtarea {
  margin-top: 0.8rem;
}
.postlist_card_column > article .postlist_txtarea .postlist_title {
  font-size: 1.4rem;
  font-weight: 600;
  line-height: 1.4;
}
.postlist_card_column > article .postlist_txtarea .entry_day {
  font-size: 1.2rem;
  line-height: 1.2;
  margin-top: 2px;
}
.postlist_card_column > article .postlist_txtarea .entry_term {
  margin: 5px 5px 5px 0;
  display: inline-block;
}
.postlist_card_column > article .postlist_txtarea .entry_term a {
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #fd6969;
  min-width: 80px;
  height: 20px;
  padding: 0 5px;
  transition: 0.2s;
}
.postlist_card_column > article .postlist_txtarea .entry_term a:hover {
  background: #ec4444;
}

@media (min-width: 768px) {
  .postlist_card_column {
    gap: 30px 20px;
    gap: 40px 30px;
  }
  .postlist_card_column > article {
    flex: 0 0 calc((100% - 60px) / 3);
  }
  .postlist_card_column > article .postlist_txtarea {
    margin-top: 1.2rem;
  }
  .postlist_card_column > article .postlist_txtarea .postlist_title {
    font-size: 1.8rem;
  }
  .postlist_card_column > article .postlist_txtarea .entry_day {
    font-size: 1.4rem;
    margin-top: 5px;
  }
}
@media (min-width: 960px) {
  .sidebar .postlist_card_column {
    flex-direction: column;
    gap: 15px;
  }
  .sidebar .postlist_card_column > article {
    flex: 0 0 100%;
    display: flex;
    gap: 10px;
    flex-direction: row;
  }
  .sidebar .postlist_card_column > article .postlist_imgarea {
    flex: 0 0 96px;
    height: 96px;
  }
  .sidebar .postlist_card_column > article .postlist_imgarea img {
    -o-object-fit: cover;
       object-fit: cover;
    height: 100%;
  }
  .sidebar .postlist_card_column > article .postlist_txtarea {
    margin: 0;
  }
  .sidebar .postlist_card_column > article .postlist_txtarea .postlist_title {
    font-size: 1.4rem;
    font-weight: 400;
  }
  .sidebar .postlist_card_column > article .postlist_txtarea .entry_day {
    font-size: 1.2rem;
  }
}
.taglist {
  position: relative;
  z-index: 1;
}
.taglist li {
  display: inline-block;
  margin: 0 8px 5px 0;
}
.taglist li a {
  font-size: 1.3rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
  color: var(--main_color);
  display: block;
  padding: 8px 12px 10px 10px;
  border: 1px solid var(--main_color);
  transition: 0.2s;
}
.taglist li a:hover {
  opacity: 0.8;
}
.taglist li a:before {
  content: "#";
}

@media (min-width: 768px) {
  .taglist li a {
    font-size: 1.4rem;
    padding: 7px 16px 7px 14px;
  }
}
.wrapper {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

@media (min-width: 960px) {
  .wrapper {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 50px;
  }
  .wrapper .l_area {
    flex: 1 1 790px;
  }
  .wrapper aside {
    flex: 0 0 300px;
  }
}
/*記事下部--------------------------*/
.post_bottomarea {
  margin-top: 80px;
}

@media (min-width: 768px) {
  .post_bottomarea {
    margin-top: 180px;
  }
}
/*--------------------------
固定ページ
--------------------------*/
.layout_page .entry-header {
  background: #f5f5f5;
  padding: 10px;
  text-align: center;
  padding-top: 40px;
  padding-bottom: 30px;
  margin-bottom: 20px;
}
.layout_page .entry-header .entry_title {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 10px;
}
.layout_page .entry-header .en_title {
  font-family: "Montserrat", serif;
  font-size: 1.8rem;
  font-weight: 700;
  line-height: 1;
  color: var(--main_color);
  text-transform: capitalize;
}

@media screen and (min-width: 560px) {
  .layout_page .entry-header .entry_title {
    font-size: 2.4rem;
  }
}
@media screen and (min-width: 768px) {
  .layout_page .entry-header {
    padding-top: 80px;
    padding-bottom: 70px;
    margin-bottom: 80px;
  }
  .layout_page .entry-header .entry_title {
    font-size: 3.2rem;
    margin-bottom: 18px;
  }
  .layout_page .entry-header .en_title {
    font-size: 2.6rem;
  }
}
/*--------------------------
コラム記事
--------------------------*/
.layout_column .entry-header {
  background: #f5f5f5;
  padding: 18px 10px;
  margin-bottom: 20px;
}
.layout_column .entry-header .entry_title {
  font-size: 2.2rem;
  font-weight: 600;
  line-height: 1.5;
  margin-bottom: 10px;
}
.layout_column .entry-header .entry_day {
  font-size: 1.2rem;
  line-height: 1;
  display: inline-block;
  margin-right: 5px;
}
.layout_column .entry-header .entry_term {
  margin: 5px 5px 5px 0;
  display: inline-block;
}
.layout_column .entry-header .entry_term a {
  font-size: 1.2rem;
  line-height: 1.2;
  font-weight: 600;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #fd6969;
  min-width: 80px;
  height: 20px;
  padding: 0 5px;
  transition: 0.2s;
}
.layout_column .entry-header .entry_term a:hover {
  background: #ec4444;
}

@media screen and (min-width: 560px) {
  .layout_column .entry-header .entry_title {
    font-size: 2.4rem;
  }
  .layout_column .entry-header .entry_day {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .layout_column .entry-header {
    width: 100vw;
    margin-left: calc(50% - 50vw);
    margin-right: calc(50% - 50vw);
    margin-bottom: 80px;
    padding-top: 80px;
    padding-bottom: 70px;
  }
  .layout_column .entry-header .entry_title {
    font-size: 3.2rem;
    margin-bottom: 18px;
  }
  .layout_column .entry-header .entry_term {
    margin: 0 10px 5px 0;
  }
  .layout_column .entry-header .entry_term a {
    font-size: 1.5rem;
    min-width: 126px;
    height: 30px;
  }
}
@media screen and (min-width: 960px) {
  .layout_column .entry-header_inner {
    max-width: 1240px;
    padding-right: 0.75rem;
    padding-left: 0.75rem;
    margin-left: auto;
    margin-right: auto;
  }
}
/*--------------------------
サイドバー
--------------------------*/
.layout_sidebar {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
.layout_sidebar .side_title {
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1.2;
  background: #f5f5f5;
  padding: 5px 10px 5px 15px;
  border-left: 4px solid var(--main_color);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  height: 46px;
  margin: 0 0 25px;
}

@media screen and (min-width: 960px) {
  .layout_sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 0 70px;
  }
  .layout_sidebar .rank-math-breadcrumb {
    flex: 0 0 100%;
  }
  .layout_sidebar .main_content {
    flex: 0 0 calc(100% - 370px);
  }
  .layout_sidebar .side_content {
    flex: 0 0 300px;
  }
}
.sidebar .side_item + .side_item {
  margin-top: 40px;
}

/*パンクズ*/
.rank-math-breadcrumb {
  overflow: auto;
  white-space: nowrap;
  -ms-overflow-style: none;
  margin: 20px 0;
}
.rank-math-breadcrumb > p {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  margin: 0;
}
.rank-math-breadcrumb span {
  font-size: 1.2rem;
  white-space: nowrap;
  flex: 0 0 auto;
}
.rank-math-breadcrumb a {
  font-size: 1.2rem;
  white-space: nowrap;
}

@media screen and (min-width: 560px) {
  .rank-math-breadcrumb > p {
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
  }
  .rank-math-breadcrumb span,
  .rank-math-breadcrumb a {
    font-size: 1.4rem;
  }
}
@media screen and (min-width: 768px) {
  .rank-math-breadcrumb {
    margin: 40px 0;
  }
}
/*--------------------------
ヘッダー
--------------------------*/
.header {
  width: 100%;
  height: 46px;
  position: fixed;
  top: 0;
  z-index: 2010;
  background: #fff;
}
.header .header_inner {
  display: flex;
  align-items: center;
  width: 100%;
  height: 46px;
  height: 100%;
  margin: 0 auto;
  padding: 0 10px;
}
.header .header_sitelogo {
  z-index: 2000;
}
.header .header_sitelogo img {
  width: 200px;
  height: auto;
}
.header .gnavi_contents {
  display: none;
}

@media screen and (min-width: 1040px) {
  .header {
    height: 82px;
  }
  .header .header_inner {
    width: 100%;
    display: flex;
    align-items: center;
    padding: 0 20px;
    margin: 0 auto;
  }
  .header .header_sitelogo img {
    width: 300px;
    height: auto;
  }
  .header .gnavi_contents {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 4px;
    margin-left: auto;
  }
  .header .gnavi_contents li {
    display: inline-block;
  }
  .header .gnavi_contents li + li {
    margin-left: 30px;
  }
  .header .gnavi_contents a {
    font-size: 1.5rem;
    color: #fff;
    color: #000;
    font-weight: 400;
    text-decoration: none;
    transition: 0.2s;
    display: block;
  }
  .header .gnavi_contents .button_headernav {
    min-width: 200px;
  }
  .header .gnavi_contents .button_headernav a {
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.2;
    text-decoration: none;
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 100px;
    background: #5836b5;
    transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
  }
  .header .gnavi_contents .button_headernav a .icon_mail {
    background: url(/wp-content/uploads/mail_line_white.svg) no-repeat;
    background-size: contain;
    width: 24px;
    height: 24px;
    margin-right: 2px;
  }
  .header .gnavi_contents .button_headernav a:hover {
    filter: brightness(105%);
  }
  .header .nav_wrapper {
    display: none;
  }
  #header.fix .header_inner {
    position: fixed;
    animation: DownAnime 0.5s forwards;
    z-index: 2000;
    background: rgba(255, 255, 255, 0.8);
    height: 60px;
  }
  @keyframes DownAnime {
    from {
      opacity: 0;
      transform: translateY(-170px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
}
@media screen and (min-width: 1040px) and (min-width: 1040px) {
  #header.fix .header_inner {
    height: 82px;
  }
}
/*ハンバーガーメニュー*/
/* 
hamburger(ハンバーガーアイコン)
=================================== */
.spmenu_tgr {
  position: absolute;
  right: 0;
  top: 0px;
  width: 46px;
  height: 46px;
  cursor: pointer;
  z-index: 300;
  background: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.spmenu_line {
  position: relative;
  width: 18px;
  height: 2px;
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.2s;
}

.spmenu_line_1 {
  top: -4px;
}

.spmenu_line_2 {
  top: initial;
}

.spmenu_line_3 {
  top: 4px;
}

/*ハンバーガーがクリックされたら*/
.open .spmenu_line_1 {
  transform: rotate(-45deg);
  top: 2px;
}

.open .spmenu_line_2 {
  opacity: 0;
  top: initial;
}

.open .spmenu_line_3 {
  transform: rotate(45deg);
  top: -2px;
}

/* 
sp-nav(ナビ)
=================================== */
.spmenu_nav {
  position: fixed;
  right: -100%;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  transition: all 0.2s;
  z-index: 200;
  overflow-y: auto;
  padding: 46px 0 20px;
}
.spmenu_nav li:first-child a {
  border-top: 1px solid #d5d5d5;
}
.spmenu_nav li a {
  font-size: 1.6rem;
  text-decoration: none;
  line-height: 1.2;
  padding: 10px 20px;
  position: relative;
  display: flex;
  align-items: center;
  height: 62px;
  border-bottom: 1px solid #d5d5d5;
  transition: 0.2s;
}
.spmenu_nav li a:hover {
  background: #eee;
}
.spmenu_nav li a:hover::before {
  right: 18px;
}
.spmenu_nav li a::before {
  content: "";
  display: block;
  width: 22px;
  height: 22px;
  background: url(/wp-content/uploads/right_line_black.svg) no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
  transition: 0.2s;
}

/*ハンバーガーがクリックされたら右からスライド*/
.open .spmenu_nav {
  right: 0;
}

/* 
black-bg(ハンバーガーメニュー解除用bg)
=================================== */
.black_bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 5;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all 0.5s;
  cursor: pointer;
  z-index: 100;
}

/*ハンバーガーメニューが開いたら表示*/
.open .black_bg {
  opacity: 0.3;
  visibility: visible;
}

/*--------------------------
フッター
--------------------------*/
.footer {
  background: #162344;
  padding-top: 20px;
  padding-bottom: 20px;
  margin-top: 40px;
}
.footer .footer_navlist {
  text-align: center;
  margin-bottom: 8px;
}
.footer .footer_navlist li {
  padding: 0 10px;
  display: inline-block;
}
.footer .footer_navlist li a {
  font-size: 1.2rem;
  line-height: 1.4;
  color: #fff;
  display: block;
  text-decoration: none;
}
.footer .footer_navlist li + li {
  border-left: 1px solid #fff;
}
.footer .copyright {
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
}

@media screen and (min-width: 1040px) {
  .footer {
    padding-top: 40px;
    padding-bottom: 40px;
    margin-top: 100px;
  }
  .footer .footer_gnav {
    display: flex;
    justify-content: space-between;
  }
  .footer .footer_navlist li {
    padding: 0 20px;
  }
  .footer .footer_navlist li a {
    font-size: 1.2rem;
  }
  .footer .copyright {
    font-size: 1.4rem;
  }
}
/*フロートバナー*/
#fadein {
  display: none;
}

.floatbanner {
  width: 100%;
  padding: 10px 0;
  position: fixed;
  bottom: 0;
  background: rgba(255, 255, 255, 0.5);
  z-index: 100;
}
.floatbanner .button_floatbanner {
  width: 90%;
  max-width: 400px;
  margin: 0 auto;
}
.floatbanner .button_floatbanner a {
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 1.2;
  text-decoration: none;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px 20px;
  border-radius: 100px;
  background: #5836b5;
  transition: 0.2s cubic-bezier(0.45, 0, 0.55, 1);
}
.floatbanner .button_floatbanner a .icon_mail {
  background: url(/wp-content/uploads/mail_line_white.svg) no-repeat;
  background-size: contain;
  width: 24px;
  height: 24px;
  margin-right: 2px;
}
.floatbanner .button_floatbanner a:hover {
  filter: brightness(105%);
}

@media screen and (min-width: 960px) {
  .floatbanner {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  body {
    padding-bottom: 90px;
  }
}
/*--------------------------
トップページ
--------------------------*/
.mainvisual {
  text-align: center;
  padding-top: 16vw;
  position: relative;
  background: url(/wp-content/uploads/bg_mv_building.png) repeat-x;
  background-position: bottom center;
  background-size: auto 35.7vw;
  overflow: hidden;
}
.mainvisual .mainvisual_inner {
  padding-left: 4vw;
  padding-right: 4vw;
  position: relative;
  z-index: 1;
  margin-left: auto;
  margin-right: auto;
}
.mainvisual .mainvisual_inner::before {
  content: "";
  display: block;
  width: 74.67vw;
  height: 100%;
  background: url(/wp-content/uploads/mv_people.png) no-repeat;
  background-size: contain;
  background-position: bottom;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
.mainvisual .site_title {
  width: 68vw;
  margin: 0 auto 9vw;
}
.mainvisual .site_catchopy {
  font-size: 4.53vw;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 6vw;
}
.mainvisual .mv_desc {
  font-size: 4vw;
  font-size: 1.5rem;
  font-weight: 400;
  line-height: 2;
  letter-spacing: 0.05em;
  text-align: left;
  padding-bottom: 43vw;
}

@media screen and (min-width: 560px) {
  .mainvisual {
    background-size: auto 23.93vw;
    padding-top: 10vw;
  }
  .mainvisual .mainvisual_inner::before {
    width: 50vw;
  }
  .mainvisual .site_title {
    width: 50.89vw;
    margin: 0 auto 2.68vw;
  }
  .mainvisual .site_catchopy {
    font-size: 3.04vw;
    margin-bottom: 4.46vw;
  }
  .mainvisual .mv_desc {
    font-size: 2.68vw;
    padding-bottom: 28vw;
  }
}
@media screen and (min-width: 768px) {
  .mainvisual {
    background-size: auto 17.45vw;
    padding-top: 10vw;
  }
  .mainvisual .mainvisual_inner::before {
    width: 36.46vw;
  }
  .mainvisual .site_title {
    width: 37.11vw;
    margin: 0 auto 1.95vw;
  }
  .mainvisual .site_catchopy {
    font-size: 2.21vw;
    margin-bottom: 3.5vw;
  }
  .mainvisual .mv_desc {
    font-size: 1.85vw;
    padding-bottom: 24vw;
    max-width: 860px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media screen and (min-width: 960px) {
  .mainvisual {
    background-size: auto 140px;
    padding-top: 140px;
    text-align: left;
  }
  .mainvisual .mainvisual_inner::before {
    width: 46vw;
    right: 0;
    left: initial;
    transform: initial;
  }
  .mainvisual .site_title {
    width: 470px;
    margin: 0 auto 28px 0;
  }
  .mainvisual .site_catchopy {
    font-size: 2.4rem;
    margin-bottom: 25px;
  }
  .mainvisual .mv_desc {
    font-size: 1.8rem;
    padding-bottom: 210px;
    width: 48vw;
    max-width: 580px;
    margin: 0 auto 0 0;
  }
}
@media screen and (min-width: 1380px) {
  .mainvisual {
    background-size: auto 170px;
  }
  .mainvisual .mainvisual_inner {
    width: 1440px;
  }
  .mainvisual .mainvisual_inner::before {
    width: 709px;
    height: 406px;
  }
}
.top_titlearea {
  margin: 0 auto 30px;
  text-align: center;
}
.top_titlearea .top_title {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
}
.top_titlearea .en_title {
  font-family: "Montserrat", serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--main_color);
}

.top_section {
  padding: 60px 0 40px;
}

/*記事下タイトル*/
.post_bottom_titlearea .post_bottom_title {
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 1.4;
  text-align: center;
  margin: 0 auto 30px;
}

@media screen and (min-width: 768px) {
  .top_titlearea {
    margin: 60px auto 60px;
  }
  .top_titlearea .top_title {
    font-size: 4.2rem;
  }
  .top_titlearea .en_title {
    font-size: 2.6rem;
  }
  .post_bottom_titlearea {
    margin: 0 auto 60px;
  }
  .post_bottom_titlearea .post_bottom_title {
    font-size: 3.2rem;
    margin: 0 auto 30px;
  }
}
.page-numbers_wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 60px;
}
.page-numbers_wrap .page-numbers {
  display: flex;
  flex: 0 0 34px;
  height: 34px;
  align-items: center;
  justify-content: center;
  border-radius: 2px;
  background: #fff;
  color: #666;
  font-size: 14px;
  text-align: center;
  margin: 0 4px 10px;
  transition: 0.2s;
  text-decoration: none;
}
@media screen and (min-width: 376px) {
  .page-numbers_wrap .page-numbers {
    flex: 0 0 36px;
  }
}

span.page-numbers:not(.dots) {
  background: #212a37;
  color: #fff;
}

.prev.page-numbers:before {
  font-family: "dashicons";
  content: "\f341";
  font-size: 14px;
}

.next.page-numbers:before {
  font-family: "dashicons";
  content: "\f345";
  font-size: 16px;
}

a.page-numbers:hover {
  background: #f6f6f6;
}

.scroll-up p,
.scroll-up h2,
.scroll-up h3,
.scroll-up img {
  opacity: 0;
  visibility: hidden;
  transform: translateY(30px);
  transition: all 0.5s;
}

.scroll-up p.is-show,
.scroll-up h2.is-show,
.scroll-up h3.is-show,
.scroll-up img.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}/*# sourceMappingURL=master.css.map */