@charset "UTF-8";
/* ローディング */
#js-loader {
  align-items: center;
  background: #fff;
  bottom: 0;
  display: flex;
  justify-content: center;
  left: 0;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 999;
}

.sk-folding-cube {
  margin: 20px auto;
  width: 40px;
  height: 40px;
  position: relative;
  -webkit-transform: rotateZ(45deg);
  transform: rotateZ(45deg);
}

.sk-folding-cube .sk-cube {
  float: left;
  width: 50%;
  height: 50%;
  position: relative;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1);
}

.sk-folding-cube .sk-cube:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #1F70C9;
  -webkit-animation: sk-foldCubeAngle 2.4s infinite linear both;
  animation: sk-foldCubeAngle 2.4s infinite linear both;
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
}

.sk-folding-cube .sk-cube2 {
  -webkit-transform: scale(1.1) rotateZ(90deg);
  transform: scale(1.1) rotateZ(90deg);
}

.sk-folding-cube .sk-cube3 {
  -webkit-transform: scale(1.1) rotateZ(180deg);
  transform: scale(1.1) rotateZ(180deg);
}

.sk-folding-cube .sk-cube4 {
  -webkit-transform: scale(1.1) rotateZ(270deg);
  transform: scale(1.1) rotateZ(270deg);
}

.sk-folding-cube .sk-cube2:before {
  -webkit-animation-delay: 0.3s;
  animation-delay: 0.3s;
}

.sk-folding-cube .sk-cube3:before {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s;
}

.sk-folding-cube .sk-cube4:before {
  -webkit-animation-delay: 0.9s;
  animation-delay: 0.9s;
}

@-webkit-keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

@keyframes sk-foldCubeAngle {
  0%, 10% {
    -webkit-transform: perspective(140px) rotateX(-180deg);
    transform: perspective(140px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    -webkit-transform: perspective(140px) rotateX(0deg);
    transform: perspective(140px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    -webkit-transform: perspective(140px) rotateY(180deg);
    transform: perspective(140px) rotateY(180deg);
    opacity: 0;
  }
}

.container-min {
  max-width: 720px;
  margin-right: auto;
  margin-left: auto;
}

.container-lg {
  max-width: 90%;
  margin-right: auto;
  margin-left: auto;
}

.box01 {
  padding-top: 54px;
  padding-bottom: 60px;
}

.box02 {
  padding-top: 120px;
  padding-bottom: 120px;
}

@media screen and (max-width: 575px) {
  .box02 {
    padding-top: 60px;
    padding-bottom: 60px;
  }
}

.box03 {
  margin-bottom: 70px;
}

.box04 {
  margin-bottom: 56px;
}

/* ボタン */
.btn {
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  line-height: 1;
  padding: .5em 2em;
  text-decoration: none;
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

.btn:hover {
  text-decoration: none;
}

.btn__wrap a {
  transition: all 0.3s;
  -webkit-transition: all 0.3s;
  -moz-transition: all 0.3s;
  -ms-transition: all 0.3s;
  -o-transition: all 0.3s;
}

.btn__wrap a:hover {
  text-decoration: none;
}

.btn--orange {
  background-color: #F0A152;
  border: 2px solid #F0A152;
  color: #fff;
}

.btn--orange:visited {
  color: #fff;
}

.btn--orange:hover {
  color: #F0A152;
  background-color: #fff;
}

.btn--blue, .btn--blue__wrap a {
  border: 2px solid #1F70C9;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  background-color: #fff;
  color: #1F70C9;
}

.btn--blue:visited, .btn--blue__wrap a:visited {
  color: #1F70C9;
}

.btn--blue:hover, .btn--blue__wrap a:hover {
  color: #fff;
  background-color: #1F70C9;
  text-decoration: none;
}

.btn--black, .btn--black__wrap a {
  border: 1px solid #000;
  background-color: transparent;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  color: #000;
}

.btn--black:visited, .btn--black__wrap a:visited {
  color: #000;
}

.btn--black:hover, .btn--black__wrap a:hover {
  background-color: #000;
  color: #fff;
}

.btn--white {
  background-color: #fff;
  border: 1px solid #fff;
}

.btn--white:hover {
  background-color: transparent;
  color: #fff;
}

.btn--white-red {
  color: #BB6228;
}

.btn--white-red:visited {
  color: #BB6228;
}

.btn--white-red:hover {
  color: #fff;
}

.btn--sm {
  font-size: 1.2rem;
}

.btn--sm a {
  font-size: 1.2rem;
}

.btn--md {
  font-size: 1.3rem;
}

.btn--md a {
  font-size: 1.3rem;
}

.btn--md-style {
  font-size: 1.3rem;
  font-weight: bold;
  min-width: 180px;
  padding: 1em;
}

/* オブジェクト */
.white-box {
  background-color: #fff;
  padding: 66px 130px 55px;
  width: 90%;
  margin: 0 auto;
  position: relative;
  top: -80px;
}

@media screen and (max-width: 767px) {
  .white-box {
    padding: 24px;
    top: 0;
  }
}

.white-box p {
  line-height: 2;
}

/* 見出し */
.main-title {
  font-size: 3rem;
  text-align: center;
  font-weight: bold;
  margin-bottom: 1em;
}

@media screen and (max-width: 575px) {
  .main-title {
    font-size: 2rem;
  }
}

.main-title--md {
  font-size: 2.7rem;
  line-height: 1.7;
  margin-bottom: 0.5em;
}

@media screen and (max-width: 575px) {
  .main-title--md {
    font-size: 2rem;
  }
}

.main-title--sm {
  font-size: 1.8rem;
  font-weight: bold;
  margin-bottom: .5em;
}

.main-title--left {
  text-align: left;
}

.sub-title, .post h2 {
  background-color: #F6F7F7;
  border-left: 6px solid #5C99BA;
  font-size: 2rem;
  font-weight: bold;
  padding: 16px;
  margin-bottom: 1.2em;
}

/* ヘッダー */
.custom-logo-link {
  width: 140px;
}

.menu-item {
  font-size: 1.2rem;
  font-weight: bold;
}

.menu-item a {
  color: #000;
}

.menu-gnav {
  margin-right: 5rem;
}

.menu-gnav a {
  padding: 0 1.2rem;
}

.site-header .btn {
  font-weight: bold;
  padding: .7em 2em;
}

.breadcrumbs {
  color: #808080;
  font-size: 1.1rem;
  font-weight: bold;
  margin-top: 24px;
  margin-bottom: 24px;
}

.breadcrumbs br {
  display: none;
}

@media screen and (max-width: 767px) {
  .main-navigation {
    padding-right: 70px;
  }
}

/* フッター */
.footer-contact {
  background: -moz-linear-gradient(to right, #E4823D, #E99046);
  background: -webkit-linear-gradient(to right, #E4823D, #E99046);
  background: linear-gradient(to right, #E4823D, #E99046);
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
  padding: 32px 48px;
}

@media screen and (max-width: 575px) {
  .footer-contact {
    padding: 40px;
  }
}

.footer-contact__text {
  color: #fff;
  font-size: 2.6rem;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 0;
}

@media screen and (max-width: 991px) {
  .footer-contact__text {
    margin-bottom: 1em;
    text-align: center;
    width: 100%;
  }
}

@media screen and (max-width: 575px) {
  .footer-contact__text {
    font-size: 2rem;
  }
}

@media screen and (max-width: 991px) {
  .footer-contact__btn {
    width: 100%;
    text-align: center;
  }
}

@media screen and (max-width: 575px) {
  .footer-contact__btn .btn {
    width: 100%;
  }
}

.footer-contact__btn .btn:first-child {
  margin-right: 16px;
}

@media screen and (max-width: 575px) {
  .footer-contact__btn .btn:first-child {
    margin: 0 0 10px 0;
  }
}

.single-post .footer-contact {
  padding: 38px;
}

.single-post .footer-contact__text {
  font-size: 1.6rem;
}

.single-post .footer-contact .btn--md-style {
  min-width: 120px;
}

.site-footer {
  border-top: .5px solid #000;
  padding-top: 40px;
}

.site-footer__title {
  font-size: 1.2rem;
  font-weight: bold;
  margin-bottom: 3rem;
}

@media screen and (max-width: 575px) {
  .site-footer .btn--orange {
    width: 100%;
  }
}

.footer-nav .menu {
  margin-right: 5rem;
}

@media screen and (max-width: 575px) {
  .footer-nav .menu-footer1-container, .footer-nav .menu-footer2-container, .footer-nav .menu-footer3-container {
    width: 50%;
  }
}

.footer-nav li {
  margin-bottom: 10px;
}

.footer-nav .sub-menu {
  margin: 10px 0 0 0;
}

.footer-nav .sub-menu li {
  position: relative;
  padding-left: 1em;
}

.footer-nav .sub-menu li:before {
  content: "− ";
  display: inline-block;
  position: absolute;
  left: 0;
  top: 0;
}

.site-info {
  border-top: .5px solid #000;
  color: #808080;
  font-size: 1.1rem;
  margin-top: 40px;
  text-align: center;
  padding-top: 24px;
  padding-bottom: 70px;
}

/* トップ */
@media screen and (max-width: 767px) {
  .text-media-box {
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.text-media-box .text-box {
  padding-left: 100px;
}

@media screen and (max-width: 767px) {
  .text-media-box .text-box {
    padding-left: 0;
  }
}

.text-media-box.flex-row-reverse .text-box {
  padding-right: 100px;
  padding-left: 0;
}

@media screen and (max-width: 767px) {
  .text-media-box.flex-row-reverse .text-box {
    padding-right: 0;
  }
}

@media screen and (max-width: 767px) {
  .text-media-box .wp-block-column {
    flex-basis: 100% !important;
  }
  .text-media-box .wp-block-column:nth-child(2n) {
    margin-left: 0;
  }
}

.main-img {
  height: 610px;
}

/* 固定ページ */
.profile-box__text {
  padding: 60px;
}

@media screen and (max-width: 575px) {
  .profile-box__text {
    padding: 24px 0;
  }
}

.noborder-table td {
  font-size: 1.3rem;
  line-height: 3;
  vertical-align: top;
}

.noborder-table td:first-child {
  font-weight: bold;
  min-width: 100px;
  white-space: nowrap;
}

.entry-header--bg-img {
  color: #fff;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 8rem;
  padding: 50px 0 40px;
}

@media screen and (max-width: 767px) {
  .entry-header--bg-img {
    margin-bottom: 4rem;
  }
}

.entry-header--bg-img .entry-title {
  font-size: 3rem;
  font-weight: bold;
  margin: 0 0 22px 0;
}

.entry-header__lead {
  font-size: 1.2rem;
  margin-bottom: 0;
}

/* ループ */
.top-loop-post__wrap {
  margin-bottom: 52px;
}

.top-loop-post__item {
  border-bottom: 1px solid #000;
  padding-bottom: 2rem;
  margin-bottom: 2rem;
}

.top-loop-post__item:first-child {
  border-top: 1px solid #000;
  padding-top: 2rem;
}

.top-loop-post__item .cat-pict {
  margin-right: 2rem;
  min-width: 14%;
}

.top-loop-post__date {
  font-size: 1.4rem;
  display: inline-block;
  margin-right: 4rem;
}

.top-loop-post__title {
  color: #000;
  font-size: 1.6rem;
}

@media screen and (max-width: 767px) {
  .top-loop-post__title {
    display: block;
    margin-top: 8px;
    width: 100%;
  }
}

.top-loop-post__title:visited {
  color: #000;
}

.top-loop-post__title:hover {
  color: #000;
}

.cat-pict {
  color: #000;
  border: 1px solid #000;
  display: inline-block;
  font-size: 1.2rem;
  padding: .5em 1em;
  text-align: center;
}

.cat-pict:visited {
  color: #000;
}

.cat-pict:hover {
  background-color: #000;
  color: #fff;
  text-decoration: none;
}

.top-loop-voice__wrap {
  margin-bottom: 40px;
}

.top-loop-voice__item {
  background-color: #fff;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  box-shadow: 0 2px 15px rgba(0, 0, 0, 0.2);
  width: calc((100% - 80px) / 3);
  margin: 0 40px 0 0;
}

@media screen and (max-width: 767px) {
  .top-loop-voice__item {
    width: 100%;
    margin: 0 0 40px 0;
  }
}

.top-loop-voice__item a {
  color: #000;
  display: block;
  height: 100%;
}

.top-loop-voice__item a:hover {
  text-decoration: none;
  opacity: .7;
}

.top-loop-voice__item:last-child {
  margin-right: 0;
}

.top-loop-voice__img {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  border-radius: 5px 5px 0 0;
  -webkit-border-radius: 5px 5px 0 0;
  -moz-border-radius: 5px 5px 0 0;
  -ms-border-radius: 5px 5px 0 0;
  -o-border-radius: 5px 5px 0 0;
  height: 200px;
}

.top-loop-voice__text {
  margin: 24px;
}

.top-loop-voice__text h3 {
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 0;
  word-break: break-all;
}

.loop-post__item {
  background-color: #fff;
  margin: 0 50px 54px 0;
  width: calc((100% - 100px) / 3);
  word-break: break-all;
}

@media screen and (max-width: 767px) {
  .loop-post__item {
    width: 100%;
    margin: 0 0 40px 0;
  }
}

.loop-post__item:nth-child(3n) {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .loop-post__item:nth-child(3n) {
    margin-right: 0;
  }
}

.loop-post__item a {
  color: #000;
  display: block;
  height: 100%;
}

.loop-post__item a:hover {
  text-decoration: none;
  opacity: .7;
}

.loop-post__img {
  height: 220px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}

.loop-post__text {
  padding: 24px;
}

.loop-post__date {
  color: #808080;
  font-size: 1.2rem;
}

.loop-post__title {
  font-size: 1.3rem;
  font-weight: bold;
  line-height: 2;
}

.loop-post__text {
  font-size: 1.2rem;
}

.loop-post__cat {
  color: #1F70C9;
  font-size: 1.3rem;
  font-weight: bold;
  display: inline-block;
  margin-right: 4px;
}

.loop-post__lead p {
  margin-bottom: 0;
}

/* アーカイブ */
.category-list {
  margin-bottom: 60px;
}

.category-list__item {
  margin: 0 10px 10px 0;
  min-width: 150px;
}

@media screen and (max-width: 575px) {
  .category-list__item {
    width: 100%;
    margin: 0 0 5px 0;
  }
}

.category-list__link {
  border: 2px solid #1F70C9;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  display: block;
  font-size: 1.2rem;
  font-weight: bolder;
  line-height: 1;
  text-align: center;
  padding: .8em 1.2em;
}

.category-list__link:hover {
  background-color: #1F70C9;
  color: #fff;
  text-decoration: none;
}

.wp-pagenavi {
  text-align: center;
}

.wp-pagenavi span, .wp-pagenavi a {
  display: inline-block;
  padding: 0 16px;
}

/* 投稿 */
.single-post .content-area {
  border-top: 1px solid #F2F2F2;
}

.single-post .site-main {
  padding-top: 6rem;
}

@media screen and (max-width: 767px) {
  .single-post .site-main {
    padding-top: 16px;
  }
}

.single-post .post-thumbnail {
  margin-bottom: 72px;
}

@media screen and (max-width: 767px) {
  .single-post .post-thumbnail {
    margin-bottom: 24px;
  }
}

.single-post .wp-block-image {
  margin-top: 60px;
  margin-bottom: 60px;
}

.entry-title {
  font-size: 2.5rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

@media screen and (max-width: 575px) {
  .entry-title {
    font-size: 2rem;
  }
}

.nav-links a {
  color: #000;
}

.post-footer {
  margin: 72px 0 32px;
}

@media screen and (max-width: 767px) {
  .post-footer {
    margin: 40px 0 32px;
  }
}

/* サイドバー */
.widget-title {
  border-bottom: 1px solid #eee;
  font-weight: bold;
  margin-bottom: 1em;
  padding-bottom: 1em;
  font-size: 1.6rem;
}

.widget-title i {
  color: #5C99BA;
  display: inline-block;
  margin: 0 .1em;
}

.side-sns__item {
  margin-bottom: 10px;
}

.side-sns__link {
  display: block;
  font-size: 1.4rem;
  padding: 1em;
  color: #fff;
  line-height: 1;
  position: relative;
}

.side-sns__link:visited {
  color: #fff;
}

.side-sns__link:hover {
  color: #fff;
  text-decoration: none;
  opacity: .7;
}

.side-sns__link .fa-chevron-right {
  position: absolute;
  right: 8px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  font-size: 1.8rem;
  height: 1.8rem;
}

.side-sns__link i {
  display: inline-block;
  margin-right: 0.5em;
}

.side-sns__link--twitter {
  background-color: #0da1f2;
}

.side-sns__link--facebook {
  background-color: #3b5998;
}

.side-sns__link--feedly {
  background-color: #0cc655;
}

.side-sns__link--rss {
  background-color: #ffa500;
}

.side-post__item {
  border-bottom: 1px solid #eee;
  padding: 12px 15px;
}

.side-post__item a {
  display: block;
  color: #000;
}

.side-post__item a:hover {
  text-decoration: none;
  opacity: .7;
}

.side-post__img {
  width: 34%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  min-height: 70px;
}

.side-post__text {
  font-size: 1.4rem;
  line-height: 1.4;
  padding-left: 1em;
  width: 66%;
  word-break: break-all;
}

.side-cat__item {
  border-bottom: 1px solid #eee;
  font-size: 1.4rem;
  padding: 16px 0;
}

.side-cat__item--child {
  padding-left: 1.5em;
}

.side-cat__icon {
  color: #5C99BA;
}

.side-cat a {
  color: #000;
}

/* 検索フォーム */
.searchform input {
  border-radius: 0px;
  -webkit-border-radius: 0px;
  -moz-border-radius: 0px;
  -ms-border-radius: 0px;
  -o-border-radius: 0px;
}

.searchform input[type="text"] {
  width: 74%;
}

.searchform input[type="submit"] {
  width: 26%;
  background-color: #5C99BA;
  color: #fff;
  padding: 0.3em;
}

/* フォーム */
.wpcf7 {
  border-top: 1px solid #000;
  padding-top: 32px;
}

.form-dl {
  margin-bottom: 2em;
}

.form-dl dt {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 0.5em;
}

.form-dl dt .req {
  display: inline-block;
  color: #ff2d00;
  margin-left: 0.3em;
}

.form-dl dd textarea {
  padding: 14px;
}

.form-dl dd input[type=text], .form-dl dd input[type=email], .form-dl dd input[type=tel] {
  max-width: 50%;
  padding: 5px 14px;
}

@media screen and (max-width: 767px) {
  .form-dl dd input[type=text], .form-dl dd input[type=email], .form-dl dd input[type=tel] {
    max-width: 100%;
    width: 100%;
  }
}

.form-dl dd select {
  background-color: #fff;
  height: 37px;
  width: 100%;
}

.form-comment {
  font-size: 1.1rem;
  margin: .3em 0 0 0;
}

.form-ck .wpcf7-list-item {
  width: calc(100% / 2 - 13px);
  margin: 0 13px 13px 0;
}

@media screen and (max-width: 991px) {
  .form-ck .wpcf7-list-item {
    width: 100%;
  }
}

.form-ck label {
  display: inline-block;
  border: 1px solid #ddd;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  padding: .5em 1em;
  width: 100%;
}

.form-ck label input {
  display: inline-block;
  margin-right: 0.5em;
}

.wpcf7-acceptance .wpcf7-list-item {
  width: 100%;
  margin: 0;
}

.wpcf7-acceptance label {
  display: inline-block;
  border: 1px solid #ddd;
  border-radius: 5px;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  -ms-border-radius: 5px;
  -o-border-radius: 5px;
  padding: .5em 1em;
  width: 100%;
}

.wpcf7-acceptance label input {
  display: inline-block;
  margin-right: 0.5em;
}

input[type="submit"].wpcf7-submit {
  background-color: #F0A152;
  border: none;
  border-radius: 0;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  -ms-border-radius: 0;
  -o-border-radius: 0;
  color: #fff;
  padding: 1.5em 2em;
  min-width: 214px;
}

/* 背景 */
.bg-gray {
  background-color: #F6F7F7;
}

/* フォント */
.fs-12 {
  font-size: 1.2rem;
}

.fs-13 {
  font-size: 1.3rem;
}

.fs-16 {
  font-size: 1.6rem;
}

.fc-gray {
  color: #808080;
}

.fc-brown {
  color: #231815;
}

.fc-d-gray {
  color: #333;
}

.fc-red {
  color: #ff2d00 !important;
}

.lh-23 {
  line-height: 2.3;
}



@media only screen and (min-width: 768px){
	.main-navigation ul li:hover > ul.sub-menu{
		left: 50%;
	}




	.main-navigation ul.sub-menu{
		position: static;
		float: none;
		top: auto;
		bottom: 0;
		left: 50%;
		background: #fff;
		background: linear-gradient(to bottom,transparent,transparent 15px,#fff 15px,#fff);
		position: absolute;
		z-index: 9;
		transform: translate(-50%,100%);
		box-shadow: none;
		padding-top: 32px;
		visibility: hidden;
		opacity: 0;
		transition: 400ms;
		padding: 32px 30px 20px 20px;
	}

	.main-navigation ul li.disabled > a {
		pointer-events: none;
	}

	.main-navigation ul.sub-menu li a {
		padding: 8px 0;
		position: relative;
		transition: 400ms;
		width: 230px!important;
	}


	.main-navigation ul.sub-menu li a::after{
		content:"";
		display: inline-block;
		width: 0.8em;
		height: 0.8em;
		border-top: 1px solid #000;
		border-right: 1px solid #000;
		position: absolute;
		top: 50%;
		right: -5px;
		transform: translate(100%,-50%) rotate(45deg);
	}


	.main-navigation ul.sub-menu li a:hover:after {
		animation: btnHover 600ms;
	}

	.main-navigation ul.sub-menu li a:hover {
		background: #f1f1f1;
	}


	.menu-gnav li:hover ul.sub-menu{
		opacity: 1;
		visibility: inherit;
	}

}

@keyframes btnHover {
	0%{
		transform: translate(100%,-50%) rotate(45deg);
		opacity: 1;
	}
	30%{
		transform: translate(200%,-50%) rotate(45deg);
		opacity: 0;
	}
	60%{
		transform: translate(0%,-50%) rotate(45deg);
		opacity: 0;
	}
	100%{
		transform: translate(100%,-50%) rotate(45deg);
		opacity: 1;
	}
}

div.white-box{
	top: 0;
	padding: 24px 0;
}

@media only screen and (min-width: 768px){
	div.main-img{
		height: 560px;
		background-position: 50% 0;
	}
}

.cmz-grid {
	list-style-type: none;
	display:flex;
	flex-flow: row wrap;
	align-items: center;
	margin: -10px;
	margin-top: 70px;
}

.cmz-grid li {
	text-align: center;
	border: 4px solid #4E4E4E;
	border-radius: 13px;
	padding: 2%;
	position: relative;
}

.cmz-grid li::before {
	font-size: 2.4rem;
	font-weight: bold;
	display: inline-block;
	background: #fff;
	color: #2774CB;
	padding: 0 30px;
	position: absolute;
	top: 0%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.cmz-grid li:nth-of-type(1)::before{
	content:"STEP1";
}
.cmz-grid li:nth-of-type(2)::before{
	content:"STEP2";
}
.cmz-grid li:nth-of-type(3)::before{
	content:"STEP3";
}
.cmz-grid li:nth-of-type(4)::before{
	content:"STEP4";
}

.cmz-grid li p {
	font-weight: bold;
	margin-top: 24px;
	margin-bottom: 0;
	font-size: 1.8rem;
}

@media only screen and (min-width: 768px){
	/*.cmz-grid {}*/

	.cmz-grid li {
		text-align: center;
		width: calc((100% / 4 ) - 20px);
		margin: 10px;
	}
}

@media only screen and (max-width: 767px){
	.cmz-grid {
		margin-top: 20px;
	}
	.cmz-grid li {
		width: calc((100% / 2 ) - 20px);
		margin: 10px;
		padding: 6% 0% 3%;
	}

	.cmz-grid li::before {
		font-size: 2rem;
		padding: 0 15px;
	}

	.cmz-grid li img {
		width: 50%;
		display: block;
		margin: 0 auto 10px;
	}

	.cmz-grid li p {
		margin-top: 0;
		font-size: 1.6rem;
	}
}



.footer-contact{
	background: #fff!important;
	box-shadow: none!important;
	border-radius: 0!important;
	max-width: 800px;
	margin: 0 auto;
}

.single-post .single-contact {
	margin-top: 80px;
	padding: 40px;
	margin-bottom: 60px;
}

@media only screen and (max-width: 767px){
	.single-post .single-contact {
		margin-top: 40px;
		padding: 20px;
		margin-bottom: 30px;
		margin-left: -15px;
		margin-right: -15px;
	}

}

@media only screen and (max-width: 767px){
	.footer-contact{
		padding: 20px!important;
	}
}

@media only screen and (max-width: 767px){
	.single-contact .footer-contact__btn .btn:first-child{
		margin-bottom: 0!important;
	}
}

.footer-contact p:last-of-type{
	font-size: 1.4rem!important;
}


.color--orange{
	color: #F0A152;
	font-weight: bold;
	font-size: 2rem;
}


.footer-contact__text {
	color: inherit!important;
	text-align: center;
	margin-bottom: 20px!important;
	font-size: 2.4rem!important;
}

@media only screen and (max-width: 767px){
	.footer-contact__text {
		margin-bottom: 10px!important;
		font-size: 1.8rem!important;
	}

	.footer-contact__text span{
		display: block;
	}

}



.btn--large{
	font-size: 2rem!important;
	padding: 20px;
	width: 270px;
}

.footer-nav .menu {
  margin-right: 4rem!important;
}
@media only screen and (max-width: 767px){

	#responsive-menu-container li.responsive-menu-item {
		position: relative;
	}

	#responsive-menu-container #responsive-menu li.responsive-menu-item .sub-menu a::before{
		content:"-";
		display: inline-block;
		margin-right: 1em;
	}

	#responsive-menu-container #responsive-menu li.responsive-menu-item .sub-menu a{
		background: rgba(63,63,63,0.5);
	}

	#responsive-menu-container #responsive-menu .sub-menu{
		display: none;
	}
}

@media screen and (max-width: 575px){
	.footer-nav{
		width: 100%;
	}

	.footer-nav .menu {
		margin-right: 0!important;
	}

	.footer-nav .menu > li {
		margin-bottom: 10px!important;
		padding-bottom: 5px;
		/* border-bottom: 1px dotted #ccc; */
	}

	.footer-nav .sub-menu li{
		padding-left: 1.5em!important;
	}

	.footer-nav .menu-footer1-container, .footer-nav .menu-footer2-container, .footer-nav .menu-footer3-container{
		width: auto!important;
	}
}

.menu_btn {
	display: none;
}

@media only screen and (max-width: 767px){
	.menu_btn {
		display: block;
		-webkit-appearance: none;
		-moz-appearance: none;
		appearance: none;
		padding: 0;
		border: none;
		outline: none;
		background: transparent;
		border-radius: 0;
		font-family: inherit;
		font-size: 1em;
		width: 40px;
		height: 40px;
		position: absolute;
		top: 0%;
		right: 0%;
	}

	.menu_btn::before{
		content:"";
		display: block;
		width: 20px;
		height: 2px;
		background: #fff;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%);
	}

	.menu_btn::after{
		content:"";
		display: block;
		width: 20px;
		height: 2px;
		background: #fff;
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%,-50%) rotate(90deg);
		border-radius: 50vw;
		/* transition: 400ms; */
	}

	.menu_btn.is-active::after {
		transform: translate(-50%,-50%) rotate(0deg);
	}

	.menu_btn:focus {
		outline: none;
	}

}

.w990{
	max-width: 1020px!important;
}

.page-thumb{
	margin-bottom: 60px;
}

@media only screen and (max-width: 768px){
	.page-thumb{
		margin-bottom: 24px;
	}

}

.cmz-block h2 {
	margin-top: 2.6087em!important;
	font-size: 2.3rem!important;
	margin-bottom: 2em!important;
 }

@media only screen and (max-width: 768px){
	.cmz-block h2 {
		margin-top: 0!important;
		font-size: 2rem!important;
		margin-bottom: 1.2em!important;
	}
}

.cmz-block h3 {
	font-size: 2.1rem!important;
	margin-bottom: 1.5em!important;
}

@media only screen and (max-width: 768px){
	.cmz-block h3 {
		font-size: 1.5rem!important;
		margin-bottom: 1em!important;
	}
}

.cmz-block p,
.cmz-block ul {
	font-size: 1.8rem!important;
	margin-bottom: 1em!important;
}

@media only screen and (max-width: 768px){
	.cmz-block p,
	.cmz-block ul {
		font-size: 1.5rem!important;
	}


}

@media only screen and (max-width: 768px){
	.cmz-block--item .table {
		overflow: scroll;
		padding-right: 15px;
		margin-right: -15px;
		width: calc(100% + 15px)
	}
}

.cmz-block--item table {
	border: 4px solid #bbdafc;
	font-size: 1.8rem;
	margin-bottom: 2em;
}

@media only screen and (max-width: 768px){
	.cmz-block--item table {
		font-size: 1.5rem;
		margin-bottom: 1em;
		min-width: 500px;
	}

}

.cmz-block--item table tr:first-of-type{
	background: #79b5f8;
	border: 4px solid #bbdafc;
	color: #fff;
	margin-bottom: 10px;
}

.cmz-block--item table th {
	vertical-align: middle;
	padding-left: 20px;
	padding-right: 20px;
	font-weight: normal;
}

.cmz-block--item table td {
	vertical-align: middle;
	padding: 0 20px;
}

@media only screen and (max-width: 768px){
	.cmz-block--item table td {
		vertical-align: middle;
		padding: 0 10px;
	}

}

.cmz-block--item table td .small {
	font-size: 1.2rem;
	display: block;
}

.cmz-block--item table tr:nth-of-type(2) td{
	border-top: 2px solid #c4c3c3;
}

.cmz-block--item table tr:not(:first-of-type) td{
	border-bottom: 2px solid #c4c3c3;
}

.cmz-block--item table tr:last-of-type td{
	border-bottom: none;
}

.cmz-block--item table th:not(:last-of-type){
	border-right: 2px solid #fff;
}

.cmz-block--item table td:first-of-type,
.cmz-block--item table td:not(:last-of-type){
	border-right: 2px solid #c4c3c3;
}

.cmz-block--item table td:first-of-type {
	background: #e4f0fe;
	width: 50%;

}

.cmz-block--item table th:not(:first-of-type) {
	text-align: right;
}

.cmz-block--item table td:not(:first-of-type) {
	text-align: right;
}

.cmz-block--item table tr td[colspan] {
	background: #afd2f8;
	border: none;
	color: #fff;
}



.cmz-block--item .table.orange table {
	border: 4px solid #fcdebb;
}

.cmz-block--item .table.orange tr:first-of-type{
	background: #f8b279;
	border: 4px solid #fcdebb;
	color: #fff;
}


.cmz-block--item .table.orange tr:nth-of-type(2) td{
	border-top: 2px solid #c4c3c3;
}

.cmz-block--item .table.orange tr:not(:first-of-type) td{
	border-bottom: 2px solid #c4c3c3;
}

.cmz-block--item .table.orange th:not(:last-of-type){
	border-right: 2px solid #fff;
}

.cmz-block--item .table.orange td:first-of-type,
.cmz-block--item .table.orange td:not(:last-of-type){
	border-right: 2px solid #c4c3c3;
}

.cmz-block--item .table.orange td:first-of-type {
	background: #fef3e4;

}
.cmz-block--item .table.orange tr td[colspan] {
	background: #afd2f8;
	color: #fff;
}











.cmz-block--item:not(:last-of-type) {
	margin-bottom: 4em;
}

@media only screen and (max-width: 768px){
	.cmz-block--item:not(:last-of-type) {
		margin-bottom: 2em;
	}

}

.cmz-block.pb-s{
	padding-bottom: 30px;
}

.cmz-block.pb-m{
	padding-bottom: 60px;
}

.cmz-block.pb-l{
	padding-bottom: 120px;
}

@media only screen and (max-width: 768px){
	.cmz-block.pb-s{
		padding-bottom: 15px;
	}

	.cmz-block.pb-m{
		padding-bottom: 30px;
	}

	.cmz-block.pb-l{
		padding-bottom: 60px;
	}


}



.cmz-block .check-box {
	border: 1px solid #000;
	padding: 20px;
}

@media only screen and (max-width: 768px){
	.cmz-block .check-box {
		padding: 10px;
	}

}

.cmz-block .check-box > p {
	font-size: 1.2em;
}

.cmz-block .check-box ul {
	margin-bottom: 0!important;
	font-size: 1.6rem!important;
}

@media only screen and (max-width: 768px){
	.cmz-block .check-box ul {
		font-size: 1.5rem!important;
	}
}

.cmz-block .check-box ul li {
	position: relative;
}

.cmz-block .check-box ul li:not(:last-of-type) {
	margin-bottom: 0.5em;
}

.cmz-block .check-box ul li::before{
	content:"";
	display: inline-block;
	width: 1.5em;
	height: 1.5em;
	background: #5C99BA;
	vertical-align: -0.4em;
	margin-right: 0.5em;
	border-radius: 3px;
}

.cmz-block .check-box ul li::after{
	content:"";
	display: inline-block;
	width: 1.2em;
	height: 0.6em;
	border-bottom: 4px solid #fff;
	border-left: 4px solid #fff;
	position: absolute;
	top: 0.3em;
	left: 0.15em;
	transform: rotate(-45deg);
}

.cmz-block .font-large {
	font-size: 2.8rem!important;
	font-weight: bold;
	margin-bottom: 0.5em!important;
}

@media only screen and (max-width: 768px){
	.cmz-block .font-large {
		font-size: 1.8rem!important;
	}
}

.cmz-block .font-medium {
	font-size: 2rem!important;
	font-weight: bold;
	margin-bottom: 0.5em!important;
}

@media only screen and (max-width: 768px){
	.cmz-block .font-medium {
		font-size: 1.6rem!important;
	}

}

.cmz-block .small-box{
	font-size: 1.6rem!important;
}

@media only screen and (max-width: 768px){
	.cmz-block .small-box{
		font-size: 1.4rem!important;
	}
}

#post-2412 .entry-header.container,
#post-2429 .entry-header.container,
#post-2432 .entry-header.container,
#post-2435 .entry-header.container,
#post-2438 .entry-header.container{
	max-width: 1020px;
	margin: 0 auto 20px;

}

#post-2412 .main-title,
#post-2429 .main-title,
#post-2432 .main-title,
#post-2435 .main-title,
#post-2438 .main-title{
	text-align: left;
	border-top: 2px solid #9d9d9d;
	color: #414141;
	padding-top: 40px;
}

@media only screen and (max-width: 768px){
	#post-2412 .entry-header.container,
	#post-2429 .entry-header.container,
	#post-2432 .entry-header.container,
	#post-2435 .entry-header.container,
	#post-2438 .entry-header.container{
		margin: 0 auto 20px;

	}

	#post-2412 .main-title,
	#post-2429 .main-title,
	#post-2432 .main-title,
	#post-2435 .main-title,
	#post-2438 .main-title{
		text-align: left;
		padding-top: 20px;
	}

}

.home .menu-flow{
	display: none;
}

.top-menu-flow{
	display: none;
}

.home .top-menu-flow{
	display: block;
}

.imgHeight .wp-block-columns:nth-of-type(1) figure{
	min-height: 330px;
}
.imgHeight .wp-block-columns:nth-of-type(2) figure{
	min-height: 336px;
}
.imgHeight .wp-block-columns:nth-of-type(3) figure{
	min-height: 173px;
}

@media only screen and (max-width: 768px){
	.imgHeight .wp-block-columns:nth-of-type(1) figure{
		min-height: 70vw;
	}
	.imgHeight .wp-block-columns:nth-of-type(2) figure{
		min-height: 74vw;
	}
	.imgHeight .wp-block-columns:nth-of-type(3) figure{
		min-height: 38vw;
	}	
}
/*2022追加*/
.single-content h3{
    border-bottom: 3px solid #5C99BA;
    padding-bottom: 10px;
    color: #5C99BA;
    margin-bottom: 20px;
}
.single-content h4{
    color: #5C99BA;
    padding-bottom: 10px;
  }
.sp-bottomcta{display: none;}

@media only screen and (max-width: 768px){
  .site-info{padding-bottom:100px;}
  .sp-bottomcta{
    display: block;
    background:#F6F7F7;
    position: fixed;
    bottom:0;
    width: 100%;
    padding:10px 0 0;
  }
  .sp-bottomcta p{
    margin: 0 0 0 0;
    text-align: center;
    font-size: 14px;
    font-weight: bold;
  }
  .sp-bottomcta a{
    display: block;
    width: 80%;
    margin: 0 auto;
    text-align: center;
    background: #F0A152;
    border-radius: 10px;
    padding: 15px;
    margin-bottom: 10px;
    box-shadow: 1px 2px 3px #707070;
    color: #fff;
    font-size: 16px;
  }
}

/*2022_06追加*/
.main-img{background-size: cover;}
#masthead{
  position: fixed;
  background: #fff;
  z-index: 2;
  max-width: 100%!important;
  width: 100%;
  top:0;
}
#page{
  padding-top: 55px;
}
@media only screen and (max-width: 768px){
  button#responsive-menu-button{top:5px!important;right:5px!important;}
  .main-img{
    height: 250px;
    background-position: center;
    background-size: cover;
  }
  /*.wp-block-cover{min-height: auto;height:250px;}*/
}