@charset "UTF-8";
@font-face {
  font-family: "Noto Sans JP";
  src: url("../fonts/NotoSansJP-VariableFont_wght.ttf") format("truetype");
}
@font-face {
  font-family: "Noto Serif JP";
  font-weight: 400;
  src: url("../fonts/NotoSerifJP/NotoSerifJP-Regular.otf") format("opentype");
}
@font-face {
  font-family: "Noto Serif JP";
  font-weight: 700;
  src: url("../fonts/NotoSerifJP/NotoSerifJP-Bold.otf") format("opentype");
}
* {
  position: relative;
  margin: 0;
  box-sizing: border-box;
  z-index: auto;
}

html {
  width: 100%;
  height: 100%;
  font-size: 100%;
  /* 16px */
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
}
@media screen and (max-width: 499px) {
  html {
    font-size: 4vmin;
  }
}
@media (min-width:782px) {
  html {
    /* 画面幅600px時:14px 〜 1600px時:18px 
    文字サイズ最小 + ( 現在の画面幅 - タブレット最小幅 ) / (　画面幅追従最大幅 - タブレット最小幅 ) * ( 文字サイズ最大 - 文字サイズ最小 )
    14px + ( 100vw - 600px ) / ( 1600px - 600px ) * ( 18px - 14px ) */
    font-size: clamp(14px, 14px + (100vw - 600px) / 1000 * 4, 18px);
  }
}
@media print {
  html {
    font-size: 9pt;
  }
}

body {
  display: flex;
  flex-direction: column;
  margin: 0;
  max-width: 100%;
  min-height: 100%;
  background-color: #FFFFFF;
  color: #000000;
  fill: #000000;
  font-size: 1rem;
  overflow-x: hidden;
  font-family: sans-serif;
  letter-spacing: 0.1em;
}
html[lang=ja] body {
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, "Droid Sans Japanese", sans-serif;
}

a,
a::before,
a::after {
  transition: all 0.2s;
  color: inherit;
  fill: inherit;
  text-decoration: none;
}
a:hover,
a::before:hover,
a::after:hover {
  opacity: 0.8;
}

a[href=""] {
  pointer-events: none;
  opacity: 0.5;
}

a:empty::before {
  content: attr(href);
  word-break: break-all;
  white-space: normal;
}

img,
svg {
  vertical-align: bottom;
}

img {
  max-width: 100%;
  height: auto;
}
img img[src$=".png"] {
  -webkit-backface-visibility: hidden;
  image-rendering: -webkit-optimize-contrast;
  -webkit-transform: translateZ(0);
}

body.page h1 {
  font-family: "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  text-align: left;
  margin-bottom: 60px;
}
@media (min-width:782px) {
  body.page h1 {
    font-size: 1.8em;
    margin-bottom: 90px;
  }
}

h2 {
  text-align: center;
  font-family: "Cinzel", "游明朝", "Yu Mincho", "游明朝体", "YuMincho", "ヒラギノ明朝 Pro W3", "Hiragino Mincho Pro", "HiraMinProN-W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
  letter-spacing: 0.22em;
  font-size: 2em;
  margin: 60px 0 1em;
}
h2 mark {
  font-size: 0.6em;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  background-color: rgba(0, 0, 0, 0);
}

p {
  line-height: 1.75;
}

form input[type=text],
form input[type=search],
form input[type=tel],
form input[type=url],
form input[type=email],
form input[type=password],
form input[type=datetime],
form input[type=date],
form input[type=month],
form input[type=week],
form input[type=time],
form input[type=datetime-local],
form input[type=number],
form input[type=reset],
form input[type=button],
form textarea,
form select {
  padding: 0.5em 0.75em;
  max-width: 100%;
  border-radius: 0.5em;
  border: solid 1px #000000;
  width: 100%;
}
form input[type=text]::-moz-placeholder, form input[type=search]::-moz-placeholder, form input[type=tel]::-moz-placeholder, form input[type=url]::-moz-placeholder, form input[type=email]::-moz-placeholder, form input[type=password]::-moz-placeholder, form input[type=datetime]::-moz-placeholder, form input[type=date]::-moz-placeholder, form input[type=month]::-moz-placeholder, form input[type=week]::-moz-placeholder, form input[type=time]::-moz-placeholder, form input[type=datetime-local]::-moz-placeholder, form input[type=number]::-moz-placeholder, form input[type=reset]::-moz-placeholder, form input[type=button]::-moz-placeholder, form textarea::-moz-placeholder, form select::-moz-placeholder {
  color: #A5A5A5;
}
form input[type=text]::placeholder,
form input[type=search]::placeholder,
form input[type=tel]::placeholder,
form input[type=url]::placeholder,
form input[type=email]::placeholder,
form input[type=password]::placeholder,
form input[type=datetime]::placeholder,
form input[type=date]::placeholder,
form input[type=month]::placeholder,
form input[type=week]::placeholder,
form input[type=time]::placeholder,
form input[type=datetime-local]::placeholder,
form input[type=number]::placeholder,
form input[type=reset]::placeholder,
form input[type=button]::placeholder,
form textarea::placeholder,
form select::placeholder {
  color: #A5A5A5;
}
form [type=submit] {
  display: block;
  margin: auto;
}
form input[name^=tel] {
  width: auto;
}
@media screen and (max-width: 781px) {
  form input[type=text],
form input[type=search],
form input[type=tel],
form input[type=url],
form input[type=email],
form input[type=password],
form input[type=datetime],
form input[type=date],
form input[type=month],
form input[type=week],
form input[type=time],
form input[type=datetime-local],
form input[type=number],
form input[type=reset],
form input[type=button],
form textarea,
form select {
    font-size: 16px !important;
  }
}
form .form_table {
  margin: 1.5rem auto;
  width: 100%;
}
form .form_table caption {
  margin-bottom: 0.5em;
  text-align: left;
  font-size: 0.75em;
}
form .form_table caption .required::after {
  content: "※";
  display: inline-block;
  width: 1.5em;
  text-align: center;
  font-size: 0.625em;
  vertical-align: top;
}
form .form_table tr th {
  font-weight: normal;
  text-align: left;
}
form .form_table tr.required th::after {
  content: "※";
  display: inline-block;
  font-size: 0.625em;
  vertical-align: top;
}
@media screen and (max-width: 781px) {
  form .form_table {
    display: block;
  }
  form .form_table thead,
form .form_table tfoot,
form .form_table tbody,
form .form_table tr,
form .form_table th,
form .form_table td,
form .form_table caption {
    display: block;
  }
  form .form_table colgroup,
form .form_table col {
    display: none;
  }
  form .form_table caption {
    margin-bottom: 1rem;
  }
  form .form_table tr th {
    font-weight: 700;
    font-variation-settings: "wght" 700;
  }
  form .form_table tr:not(:last-child) {
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: dotted 1px;
  }
}
@media (min-width:782px) {
  form .form_table {
    border-collapse: separate;
    border-spacing: 0 1em;
  }
  form .form_table tr th {
    padding-top: 0.5em;
    padding-right: 1em;
    text-align: left;
    white-space: nowrap;
    word-break: keep-all;
    vertical-align: top;
  }
}

hr {
  margin: 3rem auto;
}

.switch {
  display: none !important;
}

.-sp, .-tb, .-pc,
.is-layout-flex.-sp, .is-layout-flex.-tb, .is-layout-flex.-pc {
  display: none;
}

.inner,
.-sp_inner,
.-tb_inner,
.-pc_inner {
  margin-right: auto;
  margin-left: auto;
}

.narrow,
.-sp_narrow,
.-tb_narrow,
.-pc_narrow {
  margin-right: auto;
  margin-left: auto;
}

@media screen and (max-width: 781px) {
  .-sp {
    display: inherit;
  }
  .is-layout-flex.-sp {
    display: flex;
  }
  .inner,
.-sp_inner {
    width: 90%;
  }
  .narrow,
.-sp_narrow {
    width: 75%;
  }
}
@media (min-width:782px) and (max-width:1599px) {
  .-tb {
    display: inherit;
  }
  .is-layout-flex.-tb {
    display: flex;
  }
  .inner,
.-tb_inner {
    width: 90%;
  }
  .narrow,
.-tb_narrow {
    width: 75%;
  }
}
@media (min-width:1600px) {
  .-pc {
    display: inherit;
  }
  .is-layout-flex.-pc {
    display: flex;
  }
  .inner,
.-pc_inner {
    width: 80%;
  }
  .narrow,
.-pc_narrow {
    width: 75%;
  }
}
.ib {
  display: inline-block;
}

.menu_list,
.sub-menu {
  list-style: none;
  padding: 0;
}
.menu_list a,
.sub-menu a {
  display: inline-block;
}

.split_mail {
  cursor: pointer;
  display: inline-flex !important;
  flex-direction: row-reverse;
  white-space: nowrap;
  word-break: keep-all;
}
.split_mail:hover {
  text-decoration: underline;
}
.split_mail > .mail_d::before {
  content: "@";
}

.logo {
  display: inline-block;
  line-height: 1;
  vertical-align: bottom;
}

.nisekomice_logo {
  width: 8.5em;
  height: 2em;
}

.discover_logo {
  display: inline-block;
  width: 6.4375em;
  height: 2.9375em;
  line-height: 1;
}

.message {
  padding: 3rem 0;
  text-align: center;
}

.map_block::before {
  content: "";
  display: block;
  padding-top: 75%;
}
.map_block > iframe {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

#header {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  color: #494B4E;
  fill: #494B4E;
  z-index: 2000;
  transition: all 0.2s;
}
#header:hover {
  background-color: rgba(255, 255, 255, 0.8);
}
#header > .inner {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}
@media screen and (max-width: 781px) {
  #header > .inner {
    height: 4rem;
  }
  #header .site_logo,
#header .discover_logo {
    font-size: 0.875em;
  }
}
@media (min-width:782px) {
  #header > .inner {
    width: 94vw;
    height: 7rem;
  }
  #header .site_logo,
#header .discover_logo {
    font-size: clamp(16px, 1.75vw, 27px);
  }
}

#footer {
  margin-top: auto;
  z-index: 1000;
  background-color: #699DC3;
  color: #FFFFFF;
  fill: #FFFFFF;
  font-family: "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, "Droid Sans Japanese", sans-serif;
  background-color: #5E8CAE;
}
#footer > .inner {
  display: flex;
  justify-content: center;
  color: #5E8CAE;
  padding: 40px 0;
}
#footer .foot_menu .menu_list {
  display: flex;
}
#footer .foot_menu .menu_list > li {
  background-color: #FFFFFF;
  margin: 0 20px;
  letter-spacing: 0.2em;
  max-width: 260px;
  width: 27vw;
  text-align: center;
  position: relative;
}
#footer .foot_menu .menu_list > li a {
  display: block;
  width: 100%;
  height: 100%;
  padding: 1.5em 0;
}
#footer .foot_menu .menu_list > li::after {
  position: absolute;
  content: "";
  border: #5E8CAE solid;
  border-width: 0 2px 2px 0;
  transform: skew(45deg);
  -webkit-transform: skew(45deg);
  -moz-transform: skew(45deg);
  -ms-transform: skew(45deg);
  -o-transform: skew(45deg);
  top: 45%;
  right: 25px;
  width: 1em;
  height: 0.3em;
}
#footer .foot_menu .menu_list > li:hover::after {
  right: 20px;
  transition: 0.3s;
  -webkit-transition: 0.3s;
  -moz-transition: 0.3s;
  -ms-transition: 0.3s;
  -o-transition: 0.3s;
}
#footer .copyright {
  font-weight: 300;
  padding: 1.2em 0;
  background-color: #000000;
  color: #A5A5A5;
  letter-spacing: 0.05em;
  width: 100%;
  text-align: center;
  line-height: 1;
}
@media screen and (max-width: 781px) {
  #footer {
    position: fixed;
    bottom: 0;
    left: 0;
  }
  #footer > .inner {
    color: #FFFFFF;
    padding: 0;
  }
  #footer .foot_menu .menu_list > li {
    background-color: #5E8CAE;
    width: 33.3333333333vw;
    padding: 0;
    margin: 0;
  }
  #footer .foot_menu .menu_list > li::after {
    content: none;
  }
  #footer .foot_menu .menu_list > li:nth-of-type(2) {
    border-style: solid;
    border-width: 0 1px;
  }
}

#content {
  flex-grow: 1;
  max-width: 100%;
  overflow-x: hidden;
}
#content .inner {
  max-width: 1600px;
}
#content .-is_front_page {
  display: none !important;
}
@media screen and (max-width: 781px) {
  #content {
    padding-bottom: 140px;
  }
}

#gnav_btn {
  position: fixed;
  top: 30px;
  right: 0;
  z-index: 4100;
  width: 4rem;
  height: 4rem;
  color: #000000;
  fill: #000000;
  text-align: center;
}
#gnav_btn::before, #gnav_btn::after {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  left: 0;
  margin: auto;
  width: 2em;
  height: 0.6em;
  border-style: solid;
  border-width: 2px 0;
  opacity: 1;
  transition: all 0.1s 0s;
}
#gnav_btn::before {
  bottom: 50%;
  margin-bottom: -1px;
}
#gnav_btn::after {
  top: 50%;
  margin-top: -1px;
  opacity: 0;
}
#gnav_btn > .btn_txt {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin-bottom: 1em;
  text-align: center;
  font-size: 0.625em;
  line-height: 1;
}

#gnav {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  background-color: rgba(105, 157, 195, 0.95);
  color: #fff;
  z-index: 4000;
  transition: all 0.2s;
}
#gnav > .gnav_inner {
  margin: 0 auto;
  height: 100%;
  overflow-y: auto;
}
#gnav > .gnav_inner > * {
  margin-bottom: 1.5rem;
}
#gnav .gnav_logo {
  text-align: right;
  color: #626161;
  fill: #626161;
  opacity: 0.86;
  mix-blend-mode: multiply;
  font-size: 1.125em;
}
#gnav .menu_list {
  gap: 1em;
}
#gnav .menu_list > li {
  flex-shrink: 1;
  flex-grow: 1;
  font-weight: bold;
}
#gnav .menu_list > li > a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 1em;
  height: 5rem;
  word-break: keep-all;
  overflow-wrap: normal;
}
#gnav .menu_list > li > a span {
  display: inline-block;
}
#gnav .menu_list > li.contact_btn {
  order: 1;
}
#gnav .menu_list > li.contact_btn > a {
  background-color: #699DC3;
  color: #FFFFFF;
  fill: #FFFFFF;
  font-size: 1.5em;
}
#gnav .menu_list > li .sub-menu {
  position: absolute;
  top: 100%;
  left: 0;
  overflow: hidden;
  padding: 1em;
  background-color: #699DC3;
  color: #FFFFFF;
  fill: #FFFFFF;
  font-size: 0.875em;
  text-align: left;
  transition: all 0.2s;
}
#gnav .menu_list > li .sub-menu > li {
  float: left;
  transition: all 0.2s;
}
#gnav .menu_list > li .sub-menu > li:not(:last-child) {
  margin-bottom: 0.5em;
}
#gnav .menu_list > li:not(:hover) .sub-menu {
  opacity: 0;
  padding-top: 0;
  padding-bottom: 0;
}
#gnav .menu_list > li:not(:hover) .sub-menu > li {
  margin-top: -100%;
}
#gnav .menu_list > li:hover .sub-menu {
  opacity: 1;
}
#gnav .menu_list > li:hover .sub-menu > li {
  margin-top: 0;
}
@media screen and (max-width: 781px) {
  #gnav {
    width: 100%;
  }
}

#gnav_switch:not(:checked) ~ #gnav {
  height: 0;
  opacity: 0;
}
#gnav_switch:checked ~ #gnav_btn::before, #gnav_switch:checked ~ #gnav_btn::after {
  height: 0;
  border-width: 1px 0;
  color: #fff;
  fill: #fff;
}
#gnav_switch:checked ~ #gnav_btn::before {
  transform: rotate(45deg);
}
#gnav_switch:checked ~ #gnav_btn::after {
  transform: rotate(-45deg);
  opacity: 1;
}
#gnav_switch:checked ~ #gnav {
  height: 100vh;
  opacity: 1;
}
#gnav_switch:checked ~ #gnav > .gnav_inner {
  padding: 5rem 3rem;
}

.main_menu {
  font-weight: 700;
  font-variation-settings: "wght" 700;
}
.main_menu .menu_list {
  padding-bottom: 6rem;
}
.main_menu .menu_list > li:not(:last-child) {
  margin-bottom: 0.5em;
}
.main_menu .menu_list > li > a {
  font-size: 1.25em;
  letter-spacing: 0.05em;
}
.main_menu .menu_list > li > a:hover {
  opacity: 0.8;
}
.main_menu .menu_list > li.contact_btn {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
}
.main_menu .menu_list > li.contact_btn > a {
  display: block;
  transition: all 0.2s;
  text-align: center;
  padding: 1.4em 3em 1.4em 2em;
  line-height: 1.8;
  font-size: 0.9em;
  border: 1px solid;
  text-transform: uppercase;
  display: block;
  background-color: #FFFFFF;
  color: #699DC3;
  fill: #699DC3;
  font-size: 1.25em;
}
.main_menu .menu_list > li.contact_btn > a:hover {
  transform: translate(0.5em, 0.5em);
  box-shadow: none !important;
}
.main_menu .menu_list > li.contact_btn > a:active {
  box-shadow: none !important;
}
.main_menu .menu_list > li.contact_btn > a::after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  margin: auto 1.5em;
  width: 1em;
  height: 0.25em;
  border-style: solid;
  border-width: 0 2px 1px 0;
  transform-origin: center center;
  transform: skewX(45deg);
}
.main_menu .menu_list > li:not(.contact_btn) > a {
  display: block;
  padding: 0.25em;
  border-bottom: solid 1px #FFFFFF;
}
.main_menu .sub-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 4%;
  font-size: 0.875em;
}
.main_menu .sub-menu > li {
  margin-top: 1em;
  padding-left: 1em;
  flex-basis: 48%;
}
.main_menu .sub-menu > li::before {
  content: "";
  display: inline-block;
  margin-left: -1em;
  margin-right: 0.6em;
  width: 0.4em;
  height: 0.75em;
  border-bottom: solid 2px;
  vertical-align: top;
}

.site_address {
  font-style: normal;
}
.site_address > * {
  margin-bottom: 0.5em;
}
.site_address .office {
  font-weight: 700;
  font-variation-settings: "wght" 700;
}
.site_address .office .logo {
  display: block;
}
.site_address .tel {
  font-weight: 700;
  font-variation-settings: "wght" 700;
  font-size: 1.5em;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 781px) {
  .site_address .office .logo {
    margin-bottom: 1em;
    font-size: 1.5em;
  }
  .site_address .office .name {
    font-size: 1.125em;
  }
}
@media (min-width:782px) {
  .site_address {
    padding-bottom: 7.5rem;
  }
  .site_address .office .logo {
    margin-bottom: 0.5em;
    font-size: clamp(32px, 3.125vw, 50px);
  }
  .site_address .office .name {
    font-size: 1.375em;
  }
  .site_address .address {
    font-size: 1.125em;
  }
}

#content .message {
  margin: 3rem auto;
  text-align: center;
}

.main_block .main_head {
  text-align: center;
  z-index: 10;
}
.main_block .main_visual > img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
}
.main_block .main_visual + .inner {
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  color: #FFFFFF;
  fill: #FFFFFF;
  transform: translate(0, -50%);
  text-shadow: 0 0 1px rgba(0, 0, 0, 0.3), 0 0 2px rgba(0, 0, 0, 0.3), 0 0 3px rgba(0, 0, 0, 0.3), 0 0 5px rgba(0, 0, 0, 0.3), 0 0 10px rgba(0, 0, 0, 0.3);
}
.main_block .main_title .title_brush {
  margin-top: -0.25em;
  margin-bottom: -0.5em;
  font-size: 2.5em;
  line-height: 1;
  vertical-align: middle;
}
.main_block .main_title .title_txt {
  display: inline-block;
  vertical-align: middle;
}
.main_block.noheader .main_title {
  color: #699DC3;
  fill: #699DC3;
}

.sect_block .sect_title {
  text-align: center;
}
.sect_block .sect_title .title_brush {
  display: inline-block;
  position: absolute;
  margin-bottom: -0.25em;
  bottom: 100%;
  left: 0;
  line-height: 0.5;
  vertical-align: bottom;
  white-space: nowrap;
}
@media screen and (max-width: 781px) {
  .sect_block > .inner {
    padding: 1.5rem 0;
  }
  .sect_block .sect_title {
    font-size: 1.75em;
  }
  .sect_block .sect_title .title_brush {
    font-size: 2.5em;
  }
}
@media (min-width:782px) {
  .sect_block > .inner {
    padding: 3rem 0;
  }
  .sect_block .sect_title {
    font-size: 1.75em;
  }
  .sect_block .sect_title .title_brush {
    font-size: 5em;
  }
}

.post_date, .wp-block-post-date {
  font-family: "Montserrat", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, "Droid Sans Japanese", sans-serif;
  color: #626161;
}

.post_cate, .taxonomy-category {
  display: inline-block;
  color: #FFFFFF;
  width: 7em;
  text-align: center;
  padding: 0.3em 0 0.4em;
  font-size: 16px;
}
@media screen and (max-width: 499px) {
  .post_cate, .taxonomy-category {
    width: 6em;
    font-size: 14px;
    padding: 0.1em 0 0.2em;
  }
}

.category-list {
  display: flex;
  list-style: none;
  justify-content: center;
  margin-bottom: 30px;
  padding: 0;
}
.category-list li {
  border-left: #000 solid 1px;
  padding: 0.1em 2em 0.2em;
}
.category-list li:last-of-type {
  border-right: #000 solid 1px;
}
@media screen and (max-width: 499px) {
  .category-list {
    flex-wrap: wrap;
  }
  .category-list li {
    width: calc(50% - 20px);
    margin-bottom: 10px;
  }
  .category-list li:nth-of-type(2) {
    border-right: #000 solid 1px;
  }
}

.post_list {
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  gap: 1.25em;
  margin: 60px auto 80px;
}
.post_list li {
  list-style: none;
  width: 23%;
  margin-bottom: 30px;
}
.post_list img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 13vw;
  max-height: 252px;
}
.post_list .post_img {
  margin-bottom: 1em;
}
.post_list .post_cate, .post_list .taxonomy-category {
  position: absolute;
  bottom: 0;
  left: 0;
}
.post_list h4 {
  font-size: 1em;
  margin-top: 0;
  font-weight: 300;
}
.post_list h4 a::after {
  position: absolute;
  content: "MORE";
  font-family: "Montserrat", "Noto Sans JP", "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", Osaka, "Droid Sans Japanese", sans-serif;
  background-color: #EDF7FD;
  border-radius: 50px;
  padding: 0.3em 1em;
  bottom: -2em;
  right: 0;
}
.post_list .post_title a {
  display: block;
}
@media screen and (max-width: 781px) {
  .post_list {
    margin-top: 40px;
    flex-wrap: wrap;
  }
  .post_list li {
    width: calc(50% - 20px);
  }
  .post_list img {
    height: 25vw;
  }
}

.post.main_block {
  padding-bottom: 60px;
}
.post.main_block figure {
  margin: 1em 0.5em;
  text-align: center;
}
.post.main_block p {
  margin: 1em 0;
}
.post.main_block a {
  color: #699DC3;
  text-decoration: underline;
}
.post.main_block .post_head {
  margin: 40px 0;
}
.post.main_block .post_head ul, .post.main_block .post_head li {
  display: inline;
}
.post.main_block .post_head .post_cate a {
  color: #fff;
  text-decoration: none;
}
.post.main_block .post_head .post_title {
  border-bottom: solid #A5A5A5 1px;
  font-size: 1.8em;
  padding: 0.25em;
}
.post.main_block .post_head .post_date {
  display: inline-block;
  margin-right: 1em;
}

body.blog .category-list .news {
  background-color: #A5A5A5;
  color: #fff;
}

.category-education .post_cate, .category-education .taxonomy-category {
  background-color: #CB3A7C;
}
.category-education .category-list .education {
  background-color: #CB3A7C;
  color: #fff;
}

.category-study .post_cate, .category-study .taxonomy-category {
  background-color: #1966B2;
}
.category-study .category-list .study {
  background-color: #1966B2;
  color: #fff;
}

.category-social .post_cate, .category-social .taxonomy-category {
  background-color: #219EB7;
}
.category-social .category-list .social {
  background-color: #219EB7;
  color: #fff;
}

/* Breadcrumb */
.breadcrumb {
  padding: 0.75rem 0;
  font-size: 0.625em;
  line-height: 1.25;
  z-index: 1900;
}
.breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.breadcrumb a:hover {
  text-decoration: underline;
}
.breadcrumb .bc_list {
  list-style: none;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  margin: auto;
  padding: 0;
}
.breadcrumb .bc_list > li:not(:first-child)::before {
  content: "";
  display: inline-block;
  margin: -0.1em 0.5em auto;
  width: 0.4em;
  height: 0.4em;
  border-style: solid;
  border-width: thin thin 0 0;
  vertical-align: middle;
  transform: rotate(45deg);
}
.breadcrumb .home,
.breadcrumb .current {
  font-weight: 500;
  font-variation-settings: "wght" 500;
  font-style: normal;
}
@media screen and (max-width: 781px) {
  .breadcrumb .bc_list {
    overflow-x: auto;
    white-space: nowrap;
    -ms-word-break: keep-all;
    word-break: keep-all;
  }
}
@media (min-width:782px) {
  .breadcrumb > .inner {
    width: 94vw;
    max-width: none !important;
  }
}

/* Pager */
.pager {
  margin: 3rem auto;
  line-height: 1;
  font-size: 1em;
  text-align: center;
}
.pager .page_list,
.pager .page-numbers {
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
}
.pager.pager_single .page_list {
  display: flex;
}
.pager.pager_single .page_list > li {
  margin: 0;
  width: 8em;
}
.pager.pager_single .page_list > li.prev a::before, .pager.pager_single .page_list > li.next a::after {
  content: "";
  display: inline-block;
  width: 0.6em;
  height: 0.6em;
  border-style: solid;
  border-width: 1px 1px 0 0;
}
.pager.pager_single .page_list > li.prev {
  margin-right: auto;
}
.pager.pager_single .page_list > li.prev a::before {
  transform: rotate(-135deg);
  margin-right: 0.5em;
}
.pager.pager_single .page_list > li.next {
  margin-left: auto;
}
.pager.pager_single .page_list > li.next a::after {
  transform: rotate(45deg);
  margin-left: 0.5em;
}
.pager.pager_single .page_list > li.index {
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 781px) {
  .pager.pager_single .page_list {
    flex-wrap: wrap;
    justify-content: center;
    padding-bottom: 4.5rem;
  }
}
.pager:not(.pager_single) .page_list > li:not(:last-child),
.pager:not(.pager_single) .page-numbers > li:not(:last-child) {
  margin-right: 0.5em;
}
.pager:not(.pager_single) .page_list a,
.pager:not(.pager_single) .page_list span.current,
.pager:not(.pager_single) .page-numbers a,
.pager:not(.pager_single) .page-numbers span.current {
  display: block;
  padding: 0.5em;
  width: 2em;
  height: 2em;
  border: solid 1px #626161;
  text-decoration: none;
}
.pager:not(.pager_single) .page_list a:hover,
.pager:not(.pager_single) .page_list span.current:hover,
.pager:not(.pager_single) .page-numbers a:hover,
.pager:not(.pager_single) .page-numbers span.current:hover {
  background-color: #626161;
}
.pager:not(.pager_single) .page_list span.current,
.pager:not(.pager_single) .page-numbers span.current {
  background-color: #626161;
  color: #FFFFFF;
  fill: #FFFFFF;
}
.pager:not(.pager_single) .page_list .prev,
.pager:not(.pager_single) .page_list .next,
.pager:not(.pager_single) .page-numbers .prev,
.pager:not(.pager_single) .page-numbers .next {
  border: none;
}

.totop_btn {
  display: block;
  position: fixed;
  bottom: -6em;
  right: 0;
  margin: 1rem;
  width: 3em;
  height: 3em;
  background-color: #000000;
  color: #FFFFFF;
  fill: #FFFFFF;
  text-align: center;
  text-decoration: none;
  z-index: 2999;
  overflow: hidden;
  transition: all 0.2s;
  transform: rotate(90deg);
  box-shadow: 0 0 0 1px #626161;
}
.totop_btn::before {
  content: "";
  display: block;
  position: absolute;
  top: 47%;
  left: 50%;
  width: 1.6em;
  height: 0.5em;
  border-style: solid;
  border-width: 0 0 2px 2px;
  transform: skew(-45deg) rotate(0) translate(-50%, -50%);
}
.totop_btn.-active {
  bottom: 0;
}
.totop_btn .btn_txt {
  display: inline-block;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  margin: auto;
  -ms-word-break: keep-all;
  word-break: keep-all;
  white-space: nowrap;
}
@media screen and (max-width: 781px) {
  .totop_btn.-active {
    bottom: 8rem;
  }
}

.sp-slides .sp-slide .sp-image {
  max-width: none;
}

.mfp-container .mfp-content {
  width: 90%;
  max-width: 1000px !important;
}
.mfp-container .mfp-content .mfp-close {
  padding: 0;
  width: 1.5em;
  height: 1.5em;
  border-radius: 50%;
  text-align: center;
  line-height: 1;
  color: rgba(0, 0, 0, 0);
  font-size: 40px;
  background-color: #219EB7;
  opacity: 1;
  top: auto;
  bottom: 0.5em;
  right: 0.5em;
}
.mfp-container .mfp-content .mfp-close::before, .mfp-container .mfp-content .mfp-close::after {
  content: "";
  position: absolute;
  width: 0.8em;
  height: 2px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  border-radius: 50px;
}
.mfp-container .mfp-content .mfp-close::before {
  transform: translate(-50%, -50%) rotate(45deg);
}
.mfp-container .mfp-content .mfp-close::after {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.mfp-container .mfp-content .mfp-close:hover {
  opacity: 0.65;
}
.mfp-container .mfp-content .mfp-figure::after {
  background-color: #000000;
}
.mfp-container .mfp-content .mfp-figure .mfp-title {
  font-size: 0.625em;
}
.mfp-container .mfp-content .mfp-figure .mfp-counter {
  font-size: 0.625em;
}
@media screen and (max-width: 781px) {
  .mfp-container .mfp-content .mfp-iframe-scaler {
    padding-top: 90vh;
  }
  .mfp-container .mfp-content .mfp-close {
    width: 1.25em;
    height: 1.25em;
  }
  .mfp-container .mfp-content .mfp-close::before, .mfp-container .mfp-content .mfp-close::after {
    width: 0.6em;
  }
}

[data-inview] {
  transition: all 0.3s 0.1s;
}

[data-inview=true] {
  opacity: 1;
}

[data-inview=false] {
  opacity: 0;
}

.-hide {
  display: none !important;
}

body:not(.logged-in) .-logged-in {
  display: none !important;
}

body.logged-in .-logged-in {
  opacity: 0.5;
}
/*# sourceMappingURL=layout.css.map */