@charset "UTF-8";
@-webkit-keyframes slideDown {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
@keyframes slideDown {
  0% {
    top: -100%;
  }
  100% {
    top: 0;
  }
}
@-webkit-keyframes slideUp {
  0% {
    bottom: -100%;
  }
  100% {
    bottom: 0;
  }
}
@keyframes slideUp {
  0% {
    bottom: -100%;
  }
  100% {
    bottom: 0;
  }
}
html {
  font-size: 62.5%;
}

body {
  margin: 0;
  background-color: #fff;
  background-color: #f5f5f5;
  color: #252525;
  font-size: 1.5rem;
  line-height: 1.83;
  word-break: normal;
  overflow-wrap: break-word;
  font-family: "Noto Sans JP", "Helvetica", "Arial", "Hiragino Kaku Gothic ProN", "Hiragino Sans", YuGothic, "Yu Gothic", "メイリオ", Meiryo, sans-serif;
}

a {
  text-decoration: none;
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}
a:visited {
  color: #4f96f6;
}

.inner-content {
  width: 100%;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}

.l-header {
  -webkit-box-shadow: 0 3px 6px rgba(0, 0, 0, 0.18);
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.18);
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #232323;
}
.l-header .site-title {
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.l-header .site-title a {
  text-decoration: none;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  gap: 7px;
  font-weight: bold;
  font-size: 1em;
  line-height: 1.4;
}
.l-header .header-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100px;
}
@media screen and (max-width: 991px) {
  .l-header{
    padding: 0 20px;
  }
  .l-header .header-inner {
    height: 60px;
  }
}
@media screen and (max-width: 767px) {
  .l-header {
    height: 60px;
    line-height: 60px;
    padding: 0 20px;
  }
  .l-header .site-title {
    height: 100%;
  }
  .l-header .site-title img {
    width: 35px;
  }
  .l-header .header-inner {
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
  }
}

/* Footer ----------------------------------------------------------------- */
/* Header ----------------------------------------------------------------- */
.l-header {
  z-index: 99;
  top: 0;
  left: 0;
  width: 100%;
}

.admin-bar .l-header {
  top: 32px;
}

.admin-bar #main-content {
  margin-top: 90px;
}
@media screen and (max-width: 767px) {
  .admin-bar #main-content {
    margin-top: 80px;
  }
}

.l-header--fixed.is-active {
  position: fixed;
  -webkit-animation: slideDown 1.2s;
  animation: slideDown 1.2s;
  background: #232323;
  opacity: 0.9;
}

.l-header__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 70px;
}

.l-header__logo {
  margin-bottom: 0;
}

.l-header__logo a {
  word-wrap: break-word;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  overflow: hidden;
  line-height: 1;
}

.l-header__logo--text a {
  width: 200px;
}
@media screen and (max-width:1200px) {
  .l-header {
    padding-left: 20px;
    padding-right: 20px;
  }
}
@media screen and (max-width: 991px) {
  .l-header {
    height: 60px;
    line-height: 60px;
    padding: 0 20px;
  }
  .l-header__inner {
    display: block;
    width: 100%;
    max-width: none;
    height: 100%;
  }
  .l-header__logo {
    height: 100%;
    margin-right: 0;
    padding-left: 5.55556%;
  }
}
@media only screen and (max-width: 782px) {
  .admin-bar .l-header {
    top: 46px;
  }
  .admin-bar .l-header--fixed.is-active {
    top: 0;
  }
}
.post,
.sidebar .widget {
  border: solid 1px rgba(0, 0, 0, 0.08);
}

.article-entry {
  margin-bottom: 1.5em;
  border-radius: 3px;
  background-color: #fff;
}

.page-title,
.single-title {
  position: relative;
  margin: 20px 0 0;
  color: #444;
}
@media screen and (max-width: 767px) {
  .page-title,
  .single-title {
    font-size: 1.1em;
    margin: 0.5em 0 0;
  }
}

.entry-meta .posted-on {
  color: #a5aaaf;
}

.entry-header {
  margin-bottom: 10px;
}
.entry-header h1 {
  line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .entry-header {
    margin: 25px 40px 10px;
  }
}

.entry-content {
  padding-left: 79px;
  padding-right: 79px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.entry-content h2,
.entry-content h3 {
  margin: 2.5em 0 1em;
  padding: 0;
  font-weight: 700;
  border-color: #1e73be;
}
.entry-content h2 {
  padding: 0.5em 0;
  border-width: 3px;
  border-top-style: solid;
  border-bottom-style: solid;
  color: #1e73be;
}
.entry-content h3 {
  font-size: 1.2em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .entry-content {
    padding: 10px 15px 0;
  }
  .entry-content ul,
  .entry-content ol {
    padding-left: 0;
    margin: 0 0 1.5em 2em;
  }
}

.entry-footer {
  padding: 0 40px;
  padding-bottom: 20px;
}
.entry-footer .cat-links {
  padding: 10px 0;
  text-align: right;
  display: block;
}
.entry-footer .cat-links a {
  color: rgba(0, 0, 0, 0.4);
}

.post-thumbnail {
  margin: 15px 0 0;
}
.post-thumbnail img {
  width: 100%;
}

.footer {
  padding: 20px 40px;
  background-color: #000;
  font-size: 0.8em;
  line-height: 2em;
  color: hsla(0, 0%, 100%, 0.9);
}
.footer .copyright {
  text-align: center;
}


time.updated:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f021";
}

#primary-menu .menu-item {
  padding: 0 1rem;
}
#primary-menu .menu-item a {
  color: #fff;
}
#primary-menu .menu-item a:hover{
  color: #e183ff;
}
.menu-toggle {
  width: 60px;
  height: 60px;
  line-height: 60px;
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  color: #fff;
  text-align: center;
  outline: none;
  border: none;
  background-color: #393939;
}
.menu-toggle svg {
  width: 30px;
  height: 30px;
}
@media screen and (max-width: 991px) {
  .menu-toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

/* Global nav */
.p-global-nav {
  height: 100%;
  font-size: 14px;
  line-height: 70px;
}

.p-global-nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  margin-bottom: 0;
  padding: 0;
  margin: 0;
  list-style: none;
}

.p-global-nav > ul > li {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  height: 100%;
  display: flex;
}

.p-global-nav > ul > li.menu-item-has-children:hover > .sub-menu {
  left: 0;
}

.p-global-nav > ul > li > a {
  position: relative;
  height: 100%;
  padding-right: 21px;
  padding-left: 21px;
  color: #fff;
  align-items: center;
  display: flex;
}

.p-global-nav > ul > li > .sub-menu {
  top: 100%;
  left: 0;
}

.p-global-nav a {
  display: block;
}

.p-global-nav .menu-item-has-children {
  position: relative;
}

.p-global-nav .menu-item-has-children:hover > .sub-menu {
  visibility: visible;
  left: 100%;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  opacity: 1;
}

.p-global-nav .sub-menu {
  display: block;
  visibility: hidden;
  z-index: 1;
  position: absolute;
  top: 0;
  left: 100%;
  height: auto;
  -webkit-transform: translateY(-10px);
  transform: translateY(-10px);
  line-height: 1.2;
  opacity: 0;
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.p-global-nav .sub-menu li {
  height: auto;
}

.p-global-nav .sub-menu a {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 210px;
  height: auto;
  padding: 17px 22px;
  color: #fff;
}

.p-global-nav .sub-menu .menu-item-has-children > a {
  position: relative;
}

.p-global-nav .sub-menu .menu-item-has-children > a::after {
  position: absolute;
  right: 16px;
  font-family: "design_plus";
  content: "\e910";
}

@media only screen and (max-width: 991px) {
  .p-global-nav {
    display: none;
    z-index: 99;
    position: absolute;
    top: 60px;
    left: 0;
    width: 100%;
    height: auto;
    background-color: #fff;
  }
  .l-header--fixed .p-global-nav {
    max-height: calc(100vh - 60px);
    overflow: auto;
  }
  .p-global-nav > ul {
    display: block;
    height: auto;
    background: #393731;
  }
  .p-global-nav > ul > li a {
    border-top: 1px solid #ccc;
  }
  .p-global-nav > ul > li:first-child a {
    border-top: none;
  }
  .p-global-nav > ul > li > a {
    display: block;
    padding: 0 5.55556%;
    background: transparent;
    color: #fff;
    width: 100%;
    text-align: center;
  }
  .p-global-nav > ul > li > a:hover {
    background: transparent !important;
  }
  .p-global-nav li {
    width: 100%;
  }
  .p-global-nav li.current-menu-item a {
    color: #fff;
  }
  .p-global-nav a {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    position: relative;
    height: 50px;
    font-size: 13px;
    line-height: 50px;
  }
  .p-global-nav .sub-title {
    display: none;
  }
  .p-global-nav .menu-item-has-children > a > .sub-menu-toggle.is-active::before {
    content: "-";
  }
  .p-global-nav .menu-item-has-children > a > .sub-menu-toggle::before {
    display: block;
    position: absolute;
    top: 0;
    right: 17px;
    bottom: 0;
    width: 24px;
    height: 24px;
    margin: auto;
    border: 1px solid #555;
    border-radius: 100%;
    color: inherit;
    line-height: 24px;
    text-align: center;
    content: "+";
  }
  .p-global-nav .sub-menu {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    display: none;
    visibility: visible;
    position: static;
    width: 100%;
    padding-left: 1em;
    -webkit-transform: none;
    transform: none;
    opacity: 1;
    -webkit-transition-property: none;
    transition-property: none;
  }
  .p-global-nav .sub-menu li {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }
  .p-global-nav .sub-menu a {
    width: 100%;
    height: 50px;
    padding: 0 5.55556%;
    background: transparent !important;
    line-height: 50px;
  }
  .p-global-nav .sub-menu .menu-item-has-children > a::after {
    content: "";
  }
  .p-global-nav > ul > li:first-child > a {
    border: 0;
    width: 100%;
    text-align: center;
  }
}
@media only screen and (max-width: 767px) {
  .p-global-nav > li > a {
    padding: 0 20px;
  }
  .p-global-nav .sub-menu a {
    padding: 0 20px;
  }
}
@media screen and (min-width: 768px) {
  #main-content {
    margin-top: 2em;
    padding-bottom: 2em;
  }
}

@media screen and (min-width: 768px) {
  .two-column {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .two-column .site-main {
    width: 67%;
    margin-top: 0;
  }
  .two-column .site-main:only-child {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    width: 100%;
  }
  .two-column .sidebar {
    width: 29%;
  }
}
.cardtype time {
  display: block;
  margin: 13px 13px 8px;
  color: #b5b5b5;
  font-size: 13px;
  font-weight: 700;
}

.cardtype__article {
  margin: 0 4% 25px 0;
  position: relative;
  margin: 0 0 25px;
  border-radius: 2px;
  background: #fff;
  -webkit-box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
          box-shadow: 0 0 3px 0 rgba(0, 0, 0, 0.12), 0 2px 3px 0 rgba(0, 0, 0, 0.22);
  cursor: pointer;
  -webkit-transition: 0.2s ease-in-out;
  transition: 0.2s ease-in-out;
}
.cardtype__article:hover {
  -webkit-box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
          box-shadow: 0 15px 30px -5px rgba(0, 0, 0, 0.15), 0 0 5px rgba(0, 0, 0, 0.1);
  -webkit-transform: translateY(-4px);
          transform: translateY(-4px);
}

@media screen and (min-width: 768px) {
  .cardtype {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .cardtype__article {
    width: 48%;
  }
}
.cardtype__link {
  display: block;
  color: #555;
  text-decoration: none;
  cursor: pointer;
  padding-bottom: 25px;
}

.cardtype__img {
  margin: 0;
  overflow: hidden;
  position: relative;
  height: 0;
  padding-bottom: 57.7%;
}

.cardtype__title {
  margin: 8px 13px 0;
  line-height: 1.56;
  font-size: 18px;
  color: #555;
}

.widget {
  margin: 0 0 2.5em;
  background: #fff;
  font-size: 0.98em;
}
.widget ul {
  margin: 0;
}

.widgettitle,
.widget h2,
.wp-block-search__label {
  margin-bottom: 0;
  padding: 7px 13px;
  font-size: 1.2em;
}

input.wp-block-search__input {
  height: 45px;
  font-size: 1em;
  border-bottom: solid 1px #efefef;
  background: #fff;
  outline: 0;
  -webkit-box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15), 0 3px 3px -2px rgba(0, 0, 0, 0.15);
          box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.15), 0 3px 3px -2px rgba(0, 0, 0, 0.15);
  -webkit-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
  -webkit-appearance: none;
}

.wp-block-search__label {
  display: block;
}

.widgettitle,
.sidebar .wp-block-group h2,
.drawer .wp-block-group h2,
.widget h2,
.wp-block-search__label {
  color: #ffffff;
  background-color: #1e73be;
}

.widget h2 + *, .widget_search .wp-block-search__inside-wrapper {
  margin-top: 0;
  margin-bottom: 0;
  padding: 8px 10px;
}

.wp-block-search__button {
  margin-left: 0;
}

.sidebar .widget {
  border-radius: 4px;
  overflow: hidden;
}

.sidebar h2:first-child {
  margin-top: 0;
}

.widget ul li a {
  display: block;
  padding: 7px;
  color: #626262;
  text-decoration: none;
}

.wp-block-latest-posts.wp-block-latest-posts__list {
  padding-left: 10px;
}

.wp-block-latest-posts.wp-block-latest-posts__list li {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.wp-block-latest-posts.wp-block-latest-posts__list li .wp-block-latest-posts__featured-image {
  float: left;
  display: table-cell;
  width: 88px;
  height: 88px;
  padding-right: 8px;
  vertical-align: middle;
}
.wp-block-latest-posts.wp-block-latest-posts__list li .wp-block-latest-posts__featured-image a {
  padding: 0;
}
.wp-block-latest-posts.wp-block-latest-posts__list li .wp-block-latest-posts__featured-image img {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.wp-block-latest-posts.wp-block-latest-posts__list li .wp-block-latest-posts__post-title {
  padding: 0;
  display: table-cell;
  font-size: 0.9em;
  vertical-align: middle;
  line-height: 1.5;
}
.wp-block-latest-posts.wp-block-latest-posts__list li:hover {
  color: #92979f;
  opacity: 0.8;
}
.archive_header {
  margin: 0 0 2em;
  padding: 10px 15px;
  border-top-width: 3px;
  border-top-style: solid;
  background: #fff;
  padding: 20px 20px;
  border-color: #1e73be;
  -webkit-box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
          box-shadow: 0 1px 2px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .archive_header {
    padding: 10px 15px;
  }
}

.one-column #primary {
  max-width: 850px;
  width: 100%;
  margin: 0 auto;
  padding-right: 0;
}

#breadcrumb {
  margin: 0;
  padding: 13px 15px;
  background: #f4f4f4;
}
@media screen and (max-width: 767px) {
  #breadcrumb {
    padding: 5px 15px;
    font-size: 15px;
  }
}

@media screen and (min-width: 768px) {
  .archive #breadcrumb {
    padding: 0;
    background: 0 0;
  }
  .single #breadcrumb {
    padding: 0;
    background: 0 0;
  }
}
#breadcrumb ul {
  margin: 0;
}

#breadcrumb li {
  display: inline;
  list-style: none;
  color: gray;
  font-size: 0.87em;
}

#breadcrumb li:after {
  padding: 0 6px;
  color: rgba(0, 0, 0, 0.2);
  font-family: "Font Awesome 5 Free";
  content: "\f0da";
  font-weight: 900;
  font-size: 14px;
}

#breadcrumb li a {
  text-decoration: none;
}

#breadcrumb li:first-child a:before {
  padding-right: 5px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 1.1em;
  content: "\f015";
}

#breadcrumb li a:hover {
  color: gray;
  text-decoration: none;
}

.wrap {
  width: 92%;
  margin: 0 auto;
}

.home .site-main {
  margin-top: 0;
}
.home .article-entry {
  background: #fff;
  margin: 0 0 1em;
  margin-bottom: 3rem;
  padding: 1em 1em;
  width: 100%;
  -webkit-box-shadow: 0 1px 2px rgba(32, 33, 36, 0.28);
  box-shadow: 0 1px 2px rgba(32, 33, 36, 0.28);
  border-radius: 4px;
  position: relative;
  z-index: 1;
}
.home .heading-img {
  max-width: 1920px;
  margin: 0 auto;
  margin-bottom: 30px;
}
.home .heading-img img {
  display: block;
}
.home .heading-img1 {
  margin: 0 -167px;
  margin-top: -40px;
  min-height: 700px;
}
.home .heading-img1 .wp-block-cover__inner-container {
  padding-top: 16em;
}
@media screen and (max-width: 767px) {
  .home .wp-block-cover, .home .wp-block-cover-image {
    font-size: 1.2rem;
    min-height: auto;
  }
  .home p.has-background {
    padding: 1.25em 1.375em;
  }
  .home .heading-img1 {
    margin: 0 -27px;
    margin-top: -45px;
    min-height: auto;
  }
}
@media screen and (min-width: 768px) {
  .home .article-entry {
    padding: 0;
  }
  .home .article-entry .entry-content {
    width: 100%;
    margin: 0 auto;
    /* margin-top: 30px; */
  }
}

h1,
.h1 {
  font-size: 1.1em;
  line-height: 1.5;
  text-align: center;
  color: #1e73be;
}

@media screen and (max-width: 767px) {
  .single-title,
  .page-title,
  .entry-title {
    padding: 20px 15px 5px 15px;
  }
}

.entry-meta {
  margin: 15px 0 0;
  padding: 0 15px;
  font-size: 15px;
  letter-spacing: 0.3px;
  color: #a5aaaf;
}
@media screen and (max-width: 767px) {
  .entry-meta {
    margin: 0 0 5px;
    font-size: 0.8em;
  }
}

@media screen and (min-width: 768px) {
  h1,
  .h1 {
    font-size: 1.35em;
    line-height: 1.6;
  }
}
.entry-article {
  margin-bottom: 1.5em;
  border-radius: 3px;
  background-color: #fff;
}

.search-title {
  margin: 0 0 1em;
}

#page-top {
  position: fixed;
  bottom: 50px;
  right: 30px;
  cursor: pointer;
  z-index: 20;
  width: 50px;
  height: 50px;
  display: none;
}

#page-top > div {
  position: relative;
  width: 100%;
  height: 100%;
  background: #5e0c8c;
  border-radius: 50%;
  -webkit-transition: 0.3s ease;
  transition: 0.3s ease;
}

#page-top > div:after {
  content: "";
  display: inline-block;
  position: absolute;
  top: 45%;
  left: 55%;
  width: 12px;
  height: 12px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(-45deg) translate(-50%, -50%);
          transform: rotate(-45deg) translate(-50%, -50%);
  -webkit-transition: 0.3s cubic-bezier(0.36, 0.1, 0.16, 1);
  transition: 0.3s cubic-bezier(0.36, 0.1, 0.16, 1);
  margin-bottom: -1px;
  z-index: 21;
}

@media screen and (min-width: 768px) {
  #page-top:hover div {
    background: #ee1770;
  }
}
@media screen and (max-width: 767px) {
  #page-top {
    right: 18px;
    top: auto;
  }
}