@charset "UTF-8";

/*--------------------------------------------------------------------------
 <Font>
  font-family: 'Cinzel', serif;
  font-family: 'Raleway', sans-serif;
  font-family: 'Bebas Neue', cursive;
--------------------------------------------------------------------------*/
* {
  margin: 0;
  padding: 0;
  letter-spacing: 0.05em;
}

html,
body {
  width: 100%;
  height: auto;
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
}

body {
  font-family: 'Noto Sans JP', 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Osaka, 'メイリオ', 'Meiryo', 'MS UI Gothic', sans-serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-size: 1.4rem !important;
  color: #505050;
  line-height: 2.2;
}

a,a:hover {
  text-decoration: none;
  color: #505050;
}

main {
  width: 100%;
  height: auto;
  position: relative;
  overflow-x: hidden;
}

.h1-ttl {
  position: absolute;
  top: 65px;
  right: 10%;
  font-size: 1rem;
  line-height: 1.8;
  font-family: 'Noto Sans JP', sans-serif;
  z-index: 5;color:#fff;
}

.h1-ttl i {
  margin-right: 3px;
}

/*--------------------------------------------------------------------------
  loading
--------------------------------------------------------------------------*/
#loader {
  opacity: 1;
  position: fixed;
  z-index: 100000;
  width: 100%;
  height: 100%;
  background: linear-gradient(60deg, #FFDDBA, #e57a91);
  top: 0;
  left: 0;
}

.loader-container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.loader-container img {
  width: 60px;
  height: auto;
}

.loader-container img:nth-of-type(2) {
  margin-top: 10px;
  width: 120px;
  height: auto;
}

/*--------------------------------------------------------------------------
  header
--------------------------------------------------------------------------*/
#header01 {
  width: 100%;
  height: 60px;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  background: rgba(255, 255, 255, 1);
}

#header01 {
  transition: 1s cubic-bezier(.4, 0, .2, 1);
  border-top: 5px solid #e57a91;
  border-left: 5px solid #e57a91;
  border-right: 5px solid #e57a91;
  box-sizing: border-box;
}

.head-animation {
  transform: translateY(-100%);
}

.scroll {
  background: #fff;
  transition: 1s cubic-bezier(.4, 0, .2, 1);
}

.scroll nav a {
  color: #545454;
}

#global-nav {
  width: 90%;
  max-width: 1280px;
  height: 60px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.global-nav-logo {
  width: 250px;
  height: auto;
}

.global-nav-logo img {
  width: auto;
  height: 50px;
  display: block;
}

nav {
  width: calc(100% - 430px);
  height: 60px;
}

nav a {
  color: #545454;
}

nav ul {
  width: 100%;
  height: 60px;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  list-style: none;
  font-family: 'Cinzel', serif;
  box-sizing: border-box;
  margin-left: 0;
}

nav li {
  line-height: 1.5;
  padding: 0 10px;
  text-align: center;
}

nav li img {
  display: block;
  width: auto;
  height: 40px;
}

.nav-text {
  display: block;
  font-size: 1rem;
  text-align: center;
  color: #e57a91;
}

.scroll .nav-text {
  color: #e57a91;
}

.global-nav-info {
  width: 180px;
  height: 60px;
  margin-left: 10px;
  position: relative;
}

.global-nav-info::before {
  display: block;
  content: '';
  width: 0.75px;
  height: 60%;
  position: absolute;
  top: 20%;
  left: -5px;
  background: #eee;
}

.global-nav-info ul {
  height: 60px;
  display: flex;
  align-items: center;
  list-style: none;
  padding-left: 0;
}

.global-nav-info ul li {
  line-height: 1.5;
  padding: 0 5px;
}

.global-nav-info ul li img {
  width: auto;
  height: 20px;
  display: block;
  margin: 0 auto;
}

.global-nav-info-text {
  display: block;
  color: #e57a91;
  margin: 0 auto;
  font-size: .6rem;
}

/*--------------------------------------------------------------------------
  スマホ　トグル
--------------------------------------------------------------------------*/
#nav-toggle {
  display: none;
  position: fixed;
  top: 0;
  right: 5%;
  width: 36px;
  height: 60px;
  z-index: 1001;
}

.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all .4s;
  box-sizing: border-box;
}

.menu-trigger {
  position: relative;
  width: 36px;
  height: 60px;
}

.menu-trigger span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 4px;
  background-color: #999;
  border-radius: 4px;
}

.menu-trigger span:nth-of-type(1) {
  top: 20px;
}

.menu-trigger span:nth-of-type(2) {
  position: absolute;
  right: 0;
  width: 70%;
  top: 30px;
}

.menu-trigger span:nth-of-type(3) {
  top: 40px;
}

#nav-toggle.active span:nth-of-type(1) {
  top: 5px;
  -webkit-transform: translateY(20px) rotate(-45deg);
  transform: translateY(20px) rotate(-45deg);
}

#nav-toggle.active span:nth-of-type(2) {
  left: 50%;
  opacity: 0;
  -webkit-animation: active-menu-bar .8s forwards;
  animation: active-menu-bar02 .8s forwards;
}

@-webkit-keyframes active-menu-bar {
  100% {
    height: 0;
  }
}

@keyframes active-menu-bar {
  100% {
    height: 0;
  }
}

#nav-toggle.active span:nth-of-type(3) {
  top: 45px;
  -webkit-transform: translateY(-20px) rotate(45deg);
  transform: translateY(-20px) rotate(45deg);
}

/*--------------------------------------------------------------------------
  wp adjust
--------------------------------------------------------------------------*/

#container {
  border: 5px solid #e57a91;
  border-bottom: none;
  box-sizing: border-box;
	position:relative;
}
.content {
	margin-top:0;
	padding:80px 0;
}
.main {
	padding: 0!important;
}
.ect-vertical-card .entry-card-wrap .entry-card-thumb {
  position: relative;
}

.ect-vertical-card .entry-card-wrap .entry-card-thumb::after {
  display: block;
  content: '';
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.ect-vertical-card .entry-card-wrap .entry-card-thumb img {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  object-fit: cover;
  object-position: center;
}

.ect-vertical-card .entry-card-wrap .entry-card-content {
  margin-top: 10px;
}

.related-entry-card-title {
  font-size: 1.4rem;
}

.entry-card-title {
  border-bottom: 1px solid #ccc;
  min-height: 60px;
  display: flex!important;
  justify-content: center;
  align-items: center;
	font-size: 1.8rem;
	-webkit-line-clamp: initial;
    -webkit-box-orient: initial;
  margin-bottom: 15px;
}

.entry-card-snippet{
	font-size:1.4rem!important;
	line-height:1.8!important;
}
.related-entry-card-snippet {
  font-size: 1.2rem!important;
  line-height: 1.8!important;
}

.entry-card-meta,
.related-entry-card-meta {
  position: relative;
  bottom: initial;
  right: initial;
  margin-top: 8px;
}

.article h1 {
  border-bottom: 1px solid #545454;
  padding-bottom: 10px;
  font-size: 2.4rem;
}

.entry-content {
  margin-bottom: 80px;
}

.related-entry-heading {
  font-size: 1.6rem;
}

.related-list p {
  font-size: 1.4rem;
}

.sidebar h2,
.sidebar h3 {
  font-size: 1.4rem;
  background: #F7F7F7;
}

.sidebar h3 {
  font-size: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #232323;
}

.widget_popular_entries h3::after,
.widget_new_entries h3::after,
.widget_archive h3::after,
.widget_categories h3::after {
  display: inline;
  font-size: 1.4rem;
  font-weight: normal;
  color: #ccc;
}

.widget_popular_entries h3::after {
  content: '人気記事';
}

.widget_new_entries h3::after {
  content: '新着記事';
}

.widget_archive h3::after {
  content: 'アーカイブ';
}

.widget_categories h3::after {
  content: 'カテゴリー';
}

.widget-title::after {
  content: 'コンテンツ';
  display: inline;
  font-size: 1.4rem;
  font-weight: normal;
  color: #ccc;
}

.widget-entry-cards .a-wrap:nth-of-type(n+2),
.cat-item:nth-of-type(n+2),
.widget_archive li:nth-of-type(n+2) {
  border-top: 1px dashed #ccc;
}

.wp-block-search__label {
  display: none;
}

.widget_block ul li a {
  font-size: 1.4rem;
}

.widget-entry-cards .a-wrap {
  width: 100%;
  height: auto;
}

.widget-entry-card {
  display: flex;
  justify-content: space-between;
  width: 100%;
  height: auto;
}

.widget-entry-card-thumb {
  float: initial;
}

.widget-entry-cards figure {
  width: 45%;
  height: auto;
  position: relative;
}

.widget-entry-cards figure::after {
  display: block;
  content: '';
  width: 100%;
  height: 0;
  padding-top: 56.25%;
}

.widget-entry-cards figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  top: 0;
  left: 0;
}

.widget-entry-card-content {
  width: 50%;
  margin-left: 0;
  display: flex;
  flex-direction: column-reverse;
  justify-content: center;
  padding: 8px 0;
}

.widget-entry-card-date.display-none {
  display: block;
}

.widget-entry-card-post-date.post-date {
  color: #ccc !important;
  font-weight: bold;
}

.widget-entry-card-post-date.post-date {
  display: block;
  font-size: 1rem;
  color: #ccc;
}

.widget-entry-card-title {
  font-size: 1.2rem;
}

.sidebar-link {
  width: 100%;
  height: auto;
}

.sidebar-link a {
  display: block;
  width: 100%;
  height: auto;
}

.sidebar-link a:nth-of-type(n+2) {
  margin-top: 10px;
}

.sidebar-link a>img {
  display: block;
  width: 100%;
  height: auto;
}


#blog_category_list {
  width: 100%;
  height: auto;
  padding-top: 80px;
}

.blog_category_list ul {
  width: 90%;
  height: auto;
  max-width: 800px;
  display: flex;
  justify-content: center;
  margin: 0 auto;
  align-items: center;
  flex-wrap: wrap;
  list-style: none;
  padding-left: 0;
}

.blog_category_list ul li:nth-of-type(n+2) {
  margin-left: 10px;
}

.blog_category_list ul li>a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: auto;
  height: 44px;
  padding: 0 20px;
  box-sizing: border-box;
  background: #0ecc8a;
  color: #fff;
  font-weight: bold;
  border-radius: 50vh;
}

.article h2 {
  font-size: 1.8rem;
  background: #EFF7F4;
}

.article h2,
.article h3,
.article h4,
.article h5,
.article h6 {
  margin-bottom: 20px;
}

.article h3,
.article h4,
.article h5,
.article h6 {
  width: 100%;
  font-size: 1.8rem;
  border: none;
  border-bottom: 3px solid #EFF7F4;
  position: relative;
  padding-left: 10px;
}

.article h3::before,
.article h4::before,
.article h5::before,
.article h6::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f0da";
  margin-right: 6px;
}

.article h3::after,
.article h4::after,
.article h5::after,
.article h6::after {
  content: '';
  background-color: #94CDB4;
  width: 3em;
  height: 3px;
  position: absolute;
  bottom: -3px;
  left: 0;
  z-index: 1;
}

.article p {
  font-size: 1.6rem;
  text-align: justify;
}

.entry-date {
  font-size: 1.2rem;
}

.entry-categories a {
  color: #fff !important;
}

.toc {
  width: 100%;
}

.post-update {
  display: none;
}

.sns-follow-buttons a {
  width: calc(100%/4);
}

/*--------------------------------------------------------------------------
  main-img
--------------------------------------------------------------------------*/
#main-img {
  width: 100%;
  height: 30vh;
  margin: 0 auto;
  position: relative;
  background: #ECA0B0;
}

#main-img img {
  width: 34px;
  height: auto;
}

#main-img h2 {
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: column;
  font-size: 3rem;
  color: #fff;
  line-height: 1.2;
  font-family: 'Cinzel', serif;
  font-weight: normal;
  text-align: center;
}

#main-img h2>span {
  font-size: 1.4rem;
}

/*--------------------------------------------------------------------------
 スマホメニュー
--------------------------------------------------------------------------*/
#mobile-nav {
  display: none;
}


/*--------------------------------------------------------------------------
  footer
--------------------------------------------------------------------------*/
.footer {
  margin-top: 0!important;
  padding: 0!important;
}

#footer-main {
  width: 100%;
  height: auto;
  background: #e57a91;
  background-image: url("/img/concrete-wall.png");
  background-repeat: repeat;
  border-top: none;
  box-sizing: border-box;
  overflow: hidden;
}

#footer-main a {
  color: #fff;
}

.footer-nav-container {
  width: 100%;
  max-width: 1280px;
  height: auto;
  margin: 0 auto;
  padding: 50px 0;
  display: flex;
  justify-content: space-around;
}

.footer-nav-info {
  width: 30%;
  min-width: 375px;
}

.footer-nav-logo,
.footer-nav-logo a,
.footer-nav-logo img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-nav-info h2 {
  font-size: 1rem;
  line-height: 1.75;
  color: #fff;
  padding: 0 20px;
  font-weight: normal;
  box-sizing: border-box;
}

.footer-nav-info-link {
  width: 100%;
  height: auto;
}

.footer-nav-info a {
  display: block;
  width: 100%;
  height: auto;
  margin-bottom: 8px;
}

.footer-nav-info a img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-nav-address {
  width: 30%;
  min-width: 375px;
  padding-top: 10px;
  list-style: none;
  font-size: 1.2rem;
  color: #fff;
  line-height: 2;
}

.footer-nav-address i {
  margin-right: 3px;
}

.footer-nav-address img {
  width: 100%;
  height: auto;
  display: block;
}

.footer-nav-address figcaption {
  font-size: 1rem;
  line-height: 1.5;
}

.footer-nav-text {
  display: inline-block;
  width: 60px;
  text-align: center;
  border: 1px solid #fff;
  margin-right: 5px;
  color: #fff;
  line-height: 1.5;
}

.footer-nav-sns {
  list-style: none;
  display: flex;
  padding-top: 5px;
  padding: 10px;
  box-sizing: border-box;
}

.footer-nav-sns li {
  padding: 5px;
}

.footer-nav-sns li:last-child a {
  display: block;
  width: auto;
  height: 26px;
  line-height: 26px;
  padding: 0 20px;
  border: 1px solid #fff;
  font-size: 1.2rem;
  font-weight: bold;
  border-radius: 4px;
}

.footer-nav-sns li:last-child a:hover {
  color: #e57a91;
  background: #fff;
  transition: .5s;
}

.footer-nav-sns li img {
  width: 26px;
  height: auto;
}

.footer-nav-list {
  width: 20%;
  height: auto;
  font-size: 1.2rem;
  line-height: 1.75;
  list-style: none;
  margin-top: 10px;
}

.footer-nav-list i {
  margin-right: 3px;
}

.footer-nav-list ul {
  list-style: none;
  padding-left: 0;
}

.footer-nav-list ul li {
  padding-left: 1em;
}

.footer-nav-list ul li:before {
  content: " • ";
  color: #fff;
}

.footer-nav-list-sp {
  display: none;
}

.corporate {
  background: rgba(0, 0, 0, .2);
  padding: 5px 0;
  text-align: center;
  font-size: 1.2rem;
}

.underline-f {
  margin-left: 3px;
  border-bottom: 1px solid #fff;
}

.copyright {
  display: block;
  width: 100%;
  height: auto;
  text-align: center;
  color: #fff;
  font-size: 1rem;
  background: #C4687C;
  margin-top: 0 !important;
}

@media screen and (max-width: 1400px) {
  #global-nav {
    max-width: 90%;
    min-width: 990px;
  }

  nav {
    width: calc(100% - 230px);
    height: 60px;
  }

  .global-nav-info {
    display: none;
  }
}
@media screen and (max-width: 1360px) {
  .article h1 {
    width: 100%;
    max-width: initial;
  }
}

@media screen and (max-width: 1024px) {
  .head-animation {
    display: none;
  }

  #header01 {
    border-left: 5px solid #e57a91;
    border-right: 5px solid #e57a91;
    border-top: 5px solid #e57a91;
    box-sizing: border-box;
    z-index: 1001;
  }

  .global-nav-logo {
    margin-left: 20px;
  }

  nav {
    display: none;
    width: 100%;
    height: auto;
  }

  #nav-toggle {
    display: block;
  }

  /*--------------------------------------------------------------------------
    toggle オーバーレイ (896px以下)
  --------------------------------------------------------------------------*/
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    flex-direction: column;
    z-index: 1000;
    width: 100%;
    min-width: 100%;
    height: auto;
    padding: 80px 20px 80px 20px !important;
    box-sizing: border-box;
    opacity: 0;
    visibility: hidden;
    transition: .3s linear;
    animation: .3s linear overlay-close;
  }

  .overlay.is-open {
    width: 100%;
    height: 100vh;
    opacity: 1;
    visibility: visible;
    animation: .3s linear overlay-open;
    background: rgba(229, 122, 145, 1);
  }

  @keyframes overlay-open {
    0% {
      transform: scaleY(0);
      transform-origin: bottom;
    }

    100% {
      transform: scaleY(1);
      transform-origin: bottom;
    }
  }

  @keyframes overlay-close {
    0% {
      transform: scaleY(1);
      transform-origin: top;
    }

    100% {
      transform: scaleY(0);
      transform-origin: top;
    }
  }

  .footer-nav-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-nav-list {
    display: block;
    overflow-y: scroll;
  }

  .footer-nav-container {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
  }

  .footer-nav-info {
    max-width: 90%;
  }

  .footer-nav-logo {
    width: 90%;
    margin: 0 auto;
  }

  .footer-nav-sns {
    justify-content: center;
  }

  .footer-nav-list {
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
    padding-top: 20px;

    font-size: 1.4rem;
  }

  .footer-nav-list li {
    border-top: 1px dashed #fff;
    padding: 8px 0;
  }

  .footer-nav-list li a {
    display: inline-block;
    width: 90%;
    height: 100%;
  }

  .footer-nav-list-1 {
    border-top: none !important;
  }

  .footer-nav-list li ul {
    margin-top: 8px;
    padding-left: 0;
  }

  .footer-nav-list li ul li:last-child {
    padding-bottom: 0;
  }

  .footer-nav-list:last-child {
    border-bottom: 1px solid #fff;
  }

  .footer-nav-address {
    display: none;
  }

  .footer-nav-list-sp {
    display: block;
    width: 100%;
    height: auto;
    border-top: none !important;
    display: flex;
  }

  .footer-nav-list-sp a {
    display: block;
    width: 50%;
  }

  .footer-nav-list-sp a img {
    width: 100%;
    height: auto;
  }
}

@media screen and (max-width: 896px) {}

@media screen and (max-width: 768px) {
  .footer-nav-container {
    flex-direction: column;
    align-items: center;
  }

  .footer-nav-list {
    display: block;
    overflow-y: scroll;
  }

  .footer-nav-container {
    width: 90%;
    max-width: 90%;
    margin: 0 auto;
  }

  .footer-nav-info {
    max-width: 90%;
  }

  .footer-nav-info h2 {
    text-align: center;
  }

  .footer-nav-info h2 img {
    width: 90%;
  }

  .footer-nav-sns {
    justify-content: center;
  }

  .footer-nav-list {
    width: 100%;
    max-width: 375px;
    margin: 0 auto;
    padding-top: 20px;

    font-size: 1.4rem;
  }

  .footer-nav-list li {
    border-top: 1px dashed #fff;
    padding: 8px 0;
  }

  .footer-nav-list-1 {
    border-top: none !important;
  }

  .footer-nav-list li ul {
    margin-top: 8px;
    padding-left: 0;
  }

  .footer-nav-list li ul li:last-child {
    padding-bottom: 0;
  }

  .footer-nav-list:last-child {
    border-bottom: 1px solid #fff;
  }

  .footer-nav-address {
    display: none;
  }
}

@media screen and (max-width: 480px) {
  .h1-ttl {
    position: absolute;
    top: 10px;
    right: 5%;
    z-index: 1;
  }
	.content-in.wrap {
    width: 100%;
  }

  .article h1 {
    padding: 0 3px 10px 3px;
    box-sizing: border-box;
    font-size: 2rem;
  }

  .no-sp-snippet .entry-card-snippet {
    display: block;
  }

  .ect-vertical-card.sp-entry-card-1-column .entry-card-wrap:nth-of-type(n+2) {
    margin-top: 20px !important;
  }

  .sns-follow-buttons a {
    width: 49.5%;
  }
	
	.content {
		width:95%;
	margin-top:0!important;
		margin-left:auto;
		margin-right:auto;
	padding:40px 0;
	}
	div.sidebar {
        padding: 32px 0!important;
	}

  /*---main-img---*/

  #main-img h2 {
    font-size: 2.6rem;
  }

  #main-img h2>span {
    font-size: 1.2rem;
    letter-spacing: 0;
    padding-top: 10px;
  }

  .gold-s {
    letter-spacing: .05rem !important;
    line-height: 1.2 !important;
  }

  /*---footer---*/

  #footer-main {
    padding-bottom: 60px;
  }

  .footer-nav-logo a img {
    margin: 0 auto;
  }

  .footer-nav-info-link {
    width: 90%;
    height: auto;
    margin: 0 auto;
  }

  .footer-nav-list-sp {
    display: block;
  }

  .footer-nav-list-sp-in {
    width: 100%;
    height: auto;
  }

  .footer-nav-list-sp-in a {
    width: 100% !important;
  }
}