@charset "UTF-8";
/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Base
	- Fonts
	- Layout

# Common Parts
	- PageNavi
	- Sidebar
	- Breadcrumb

# Pages
	- frontpage
	- about
--------------------------------------------------------------*/
:root {
  --vw: 1vw;
}

.wid100vw {
  width: calc(var(--vw) * 100);
  margin: 0 calc(50% - 50vw);
}

img {
  max-width: 100%;
  height: auto;
  width: 100%;
}

/* =====================================================
  header
===================================================== */
/*
@media screen and (max-width: 767px) {
  .site-header__logo {
    margin-top: 1rem;
    width: 30%;
    max-width: 180px;
  }
}
*/

/*
.header__bg img {
  width: 100%;
  border-radius: 0;
}
*/


/* =====================================================
  footer
===================================================== */
/*
.footer {
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}
@media screen and (max-width: 767px) {
  .footer {
    padding-top: 2rem;
    padding-bottom: 2rem;
  }
}
.footer__logo {
  max-width: 240px;
  display: block;
  margin: 2rem auto;
}
@media screen and (max-width: 767px) {
  .footer__logo {
    max-width: 180px;
  }
}
*/

/* =====================================================
  common
===================================================== */
.bread {
/*   font-size: 0.8rem; */
/*   padding: 1rem; */
/*   background-color: #f2f2f2; */
}
.bread li {
  position: relative;
  display: inline-block;
  padding-right: 1rem;
}
.bread li:not(:last-child)::after {
  position: absolute;
  content: "\f054";
  font-family: FontAwesome;
  right: 0.25rem;
  font-size: 0.5rem;
  top: 1px;
}

body:not(.home) #content {
  margin-top: 5.5rem;
  margin-bottom: 6rem;
}
@media screen and (max-width: 767px) {
  body:not(.home) #content {
    margin-top: 4.5rem;
  }
}

.entry-content .wp-block-cover,
.entry-content .wp-block-columns,
.entry-content h2, .entry-content h3, .entry-content h4 {
/*
  margin-top: 4rem;
  margin-bottom: 2rem;
*/
}
@media screen and (max-width: 767px) {
  .entry-content .wp-block-cover,
  .entry-content .wp-block-columns,
  .entry-content h2, .entry-content h3, .entry-content h4 {
/*
    margin-top: 1rem;
    margin-bottom: 1rem;
*/
  }
}

/* .entry-content p,  */
.entry-content figure {
/*   margin-top: 1rem; */
/*   margin-bottom: 1rem; */
/*   line-height: 1.6; */
}

.js-scroll {
  cursor: grab;
}
.js-scroll:active {
  cursor: grabbing;
}
@media screen and (max-width: 767px) {
  .js-scroll table {
    width: 767px;
    overflow: scroll;

  }
}
@media screen and (max-width: 520px) {
  .js-scroll table {
    width: 640px;
  }
}

.modal {
  display: none;
  position: fixed;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
}
.modal__open {
  background: none;
  border: none;
  position: relative;
}
.modal__content {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  width: 50%;
  max-width: 780px;
  box-shadow: 0 5px 8px 0 rgba(0, 0, 0, 0.2), 0 7px 20px 0 rgba(0, 0, 0, 0.17);
  animation-name: modalopen;
  animation-duration: 1s;
}
@media screen and (max-width: 767px) {
  .modal__content {
    width: 80%;
  }
}
@keyframes modalopen {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.c-slider__box {
  margin: 1rem;
}

.c-accordion {
  width: 100%;
  margin: 1.5rem auto; /* ボックス全体の位置調整 */
}
.c-accordion label {
  width: 100%;
  font-size: 1.5rem; /* ラベルの文字サイズ */
  font-weight: bold;
  background: #ddd; /* ラベルの背景色 */
  position: relative;
  display: block;
  padding-right: 5rem;
  cursor: pointer;
  color: #333;
  box-sizing: border-box;
  line-height: 1.5;
}

.c-accordion label::after,
.c-accordion label::before {
	display: block;
	content: '';
	background-color: #333;
	position: absolute;
	width: 20px;
	height: 2px;
	top: 50%;
	right: 40px;
	transform: translate(50%, -50%);
	transition: all 0.2s ease-out;
}

@media screen and (max-width: 480px) {
	.c-accordion label::after,
	.c-accordion label::before{
		right: 30px;
	}
} 

.c-accordion label::before {
	width: 2px;
	height: 20px;
}

.c-accordion input {
  display: none;
}

.c-accordion input:checked ~ label::before {
  content: normal;/* ラベルをクリックした後のアイコン */
}

.c-accordion > div {
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: 0.2s; /* 開閉スピードの設定 */
}
.c-accordion input:checked ~ div {
  height: auto;
  padding: 1rem; /* 開いた部分の枠内の余白 */
  border-radius: 0px;
  background: #eee; /* 開いた部分の背景色 */
  opacity: 1;
}


.c-accordion__content p:first-child,
.c-accordion__content p:last-child{
	margin: 0;
}
.c-accordion__content :nth-first-child(2){
	margin-top: 0;
}
.c-accordion__content ::nth-last-of-type(2){
	margin-bottom: 0;
}

.c-accordion input:checked ~ label {
  background: #ddd; /* クリック後のラベルの背景色 */
}

.youtube {
  padding-top: 56.25%;
  width: 100%;
  position: relative;
}
.youtube iframe {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
}

/*
  layout
-----------------------------------------------------*/
.content-width {
    max-width: 920px;
    	width: 100%;
    margin: auto;
}

.content-width__s {
  width: 90%;
  max-width: 780px;
  margin: auto;
}

.l-primary,
#primary {
  padding-top: 100px;
/*   margin-bottom: 6rem; */
}
@media screen and (max-width: 767px) {
  .l-primary,
  #primary {
    padding-top: 74px;
/*     padding-bottom: 3rem; */
  }
}

.l-flex {
  display: flex;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 1rem;
}
@media screen and (max-width: 767px) {
  .l-flex {
    justify-content: space-between;
    gap: 0;
  }
}
.l-flex__item50 {
  width: 48%;
}
.l-flex__item30 {
  width: 31%;
}
@media screen and (max-width: 767px) {
  .l-flex__item30 {
    width: 48%;
  }
}
.l-flex__item20 {
  width: 23%;
}
@media screen and (max-width: 767px) {
  .l-flex__item20 {
    width: 48%;
  }
}

@media screen and (max-width: 767px) {
  .l-flex.-onecol_sp .l-flex__item50 {
    width: 100%;
  }
}

.l-flex.-nowrap {
  flex-wrap: nowrap;
}

@media screen and (min-width: 768px) {
  .l-flex.-nowrap_pc {
    flex-wrap: nowrap;
  }
}

/* =====================================================
  CMS
===================================================== */
/*
  common
-----------------------------------------------------*/
.entry-title {
	font-size: 1.25rem;
    line-height: 1.5;
    font-weight: bold;
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.entry-thumbnail,
.entry-cat,
.entry-date {
  display: block;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.entry-thumbnail img {
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 300/200;
}

.prev-next {
  border-top: 1px solid #ccc;
  padding-top: 1rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 5rem;
}

.archive-date,
.archive-posttitle,
.archive-posttype {
  display: block;
  margin-bottom: 1rem;
  margin-top: 1rem;
}

.archive-posttitle {
  font-size: 1rem;
}

.post-list-inner {
  position: relative;
}

.archive-postcat {
  position: absolute;
  top: 0;
  right: 0;
  font-size: 0.8rem;
  text-align: right;
}
.archive-postcat__term {
  background-color: #333;
  color: #fff;
  padding: 0.25rem 0.5rem;
  display: inline-block;
  margin-left: 0.25rem;
}

.archive-date,
.archive-ecxerpt {
  font-size: 0.8rem;
}

.pagination {
  list-style-type: none;
  padding-left: 0;
  margin: 30px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.pagination li a {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.pagination a {
  font-weight: 300;
  padding-top: 1px;
  text-decoration: none;
  border-left-width: 0;
  min-width: 36px;
  min-height: 36px;
}
.pagination li:first-of-type a {
  border-left-width: 1px;
}
.pagination li.first span,
.pagination li.last span,
.pagination li.previous span,
.pagination li.next span {
  /* screen readers only */
  position: absolute;
  top: -9999px;
  left: -9999px;
}
.pagination li.first a::before,
.pagination li.last a::after,
.pagination li.previous a::before,
.pagination li.next a::after {
  display: inline-block;
  font-family: Fontawesome;
  font-size: inherit;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  transform: translate(0, 0);
}
.pagination li.first a::before {
  content: "\f100";
}
.pagination li.last a::after {
  content: "\f101";
}
.pagination li.previous a::before {
  content: "\f104";
}
.pagination li.next a::after {
  content: "\f105";
}
.pagination li.current a {
  background-color: #efefef;
  cursor: default;
  pointer-events: none;
  border-radius: 50%;
}
.pagination > li:first-child > a {
  border-bottom-left-radius: 4px;
  border-top-left-radius: 4px;
}
.pagination > li:last-child > a {
  border-bottom-right-radius: 4px;
  border-top-right-radius: 4px;
}
.pagination li.-nopages {
  opacity: 0.4;
}
.pagination li.-nopages:hover {
  background-color: #fff;
}
@media only screen and (max-width: 680px) {
  .pagination li.first,
  .pagination li.last {
    /* screen readers only */
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
}
@media only screen and (max-width: 680px) {
  .pagination li.previous a {
    border-left-width: 1px;
  }
}
@media only screen and (max-width: 500px) {
  .pagination li {
    /* screen readers only */
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
}
@media only screen and (max-width: 500px) {
  .pagination li.current,
  .pagination li.first,
  .pagination li.last,
  .pagination li.previous,
  .pagination li.next {
    position: initial;
    top: initial;
    left: initial;
  }
}
@media only screen and (max-width: 500px) {
  .pagination li.previous a {
    border-left-width: 0;
  }
}
@media only screen and (max-width: 400px) {
  .pagination li.previous a {
    border-left-width: 1px;
  }
}
@media only screen and (max-width: 400px) {
  .pagination li.first,
  .pagination li.last {
    /* screen readers only */
    position: absolute;
    top: -9999px;
    left: -9999px;
  }
}

.pagetop .topTri{
	margin: 0;
}
.pagetop {
    position: fixed;
    bottom: 0;
    right: 8px;
    z-index: 99;
    display: none;
}
@media only screen and (max-width: 767px) {
.pagetop {
    zoom: 0.9;
}
}



/*
  news
-----------------------------------------------------*/




/* =====================================================
  Page
===================================================== */
/*
  404
-----------------------------------------------------*/
.error404__btnflex {
  margin-top: 2rem;
  max-width: 500px;
}
.error404__btnflex a {
  display: block;
  font-size: 0.9rem;
}

/*
  sitemap
-----------------------------------------------------*/
.p-sitemap {
  /* sitemap pagelist */
}
.p-sitemap .u-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;
  margin-bottom: 1rem;
}
@media screen and (max-width: 767px) {
  .p-sitemap .u-list {
    justify-content: space-between;
  }
}
.p-sitemap .page_item,
.p-sitemap .u-list__item {
  width: calc(25% - 3rem);
  line-height: 1.3;
  text-align: center;
  font-size: 0.9rem;
  margin: 1rem;
}
@media screen and (max-width: 767px) {
  .p-sitemap .page_item,
  .p-sitemap .u-list__item {
    width: calc(50% - 1rem);
    margin: 0;
    margin-bottom: 1rem;
  }
}
.p-sitemap .page_item a,
.p-sitemap .u-list__item a {
  display: block;
  width: 100%;
  background-color: #333;
  border-radius: 3px;
  color: #fff;
  padding: 0.5rem 0.5rem;
  box-sizing: border-box;
}
.p-sitemap .postlist__item,
.p-sitemap .children .page_item,
.p-sitemap .children .u-list__item {
  width: 100%;
  text-align: left;
  position: relative;
  margin: 0;
}
.p-sitemap .postlist__item a,
.p-sitemap .children .page_item a,
.p-sitemap .children .u-list__item a {
  background-color: #fff;
  color: inherit;
  padding-left: 1.75rem;
}
.p-sitemap .postlist__item::before,
.p-sitemap .children .page_item::before,
.p-sitemap .children .u-list__item::before {
  position: absolute;
  content: "";
  width: 6px;
  height: 6px;
  top: 0.75rem;
  left: 1rem;
  background-color: #333;
  border-radius: 50%;
}
.p-sitemap .pagelist__title {
  text-align: center;
  font-size: 1.4rem;
  margin-bottom: 3rem;
  
}/*# sourceMappingURL=style.css.map */