@charset "UTF-8";
/******************************************************************
Theme Name: とよとよ☆星空ご縁結び&自然体験☆
Author: Y.Yokoyama
Author URI: http://fromdime.com
******************************************************************/
/******************************************************************

共通

******************************************************************/
:root {
  /* font-size */
  --font-size-60px: 3.75rem;
  --font-size-40px: 2.5rem;
  --font-size-28px: 1.75rem;
  --font-size-24px: 1.5rem;
  --font-size-22px: 1.375rem;
  --font-size-20px: 1.25rem;
  --font-size-18px: 1.125rem;
  --font-size-16px: 1rem;
  --font-size-14px: 0.875rem;
  
  --font-size-32px: 2rem;
  --font-size-22px: 1.375rem;

  /* font-weight */
  --font-weight-regular: 400;
  --font-weight-medium: 500;
  --font-weight-semibold: 600;
  --font-weight-bold: 700;

  /* color */
  --home-color-01: #ee87b4;
  --home-color-02: #515151;
  --home-color-03: #00b9ef;
  --home-color-04: #e6e6e6;
  --home-color-05: #c3c4c4;
  --home-color-06: #ffe9c1;
  --home-color-07: #494951;
  --home-color-08: #5f6368;
}

/* 電話リンクなし
-------------------------------------------------------*/
.notel a[href^="tel:"] {
  color: inherit;
  pointer-events: none;
  text-decoration: none;
}

/* 電話リンク
-------------------------------------------------------*/
a.tel {
  color: inherit;
}
a.tel:hover {
  text-decoration: underline !important;
}

/******************************************************************

構造調整タグ

******************************************************************/
br.br-pc {
  display: block;
}
br.br-sp {
  display: none;
}

/******************************************************************

汎用パーツ

******************************************************************/
a {
  transition-property: all;
  transition-timing-function: var(--default-transition-timing-function, cubic-bezier(0.4, 0, 0.2, 1));
  transition-duration: var(--default-transition-duration, 150ms);
}

/* 文字折り返し用
-------------------------------------------*/
.span-wrap {
  display: inline-block;
}

/* ボタン
-------------------------------------------*/
.button_wrapper {
  text-align: center;
}

.button {
  color: #515151;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #ffffff;
  width: 100%;
  max-width: 320px;
  height: 64px;
  border: 1px solid #515151;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.25s ease;
  cursor: pointer;
}
.button .fas {
  color: #f0e800;
  margin-left: 0.5rem;
}
.button:hover, .button:focus, .button:active {
  color: #ffffff;
  background-color: #f0e800;
}
.button:hover .fas, .button:focus .fas, .button:active .fas {
  color: #ffffff;
}

.link-button-wrapper {
  text-align: center;
}

.link-button {
  position: relative;
  display: inline-block;
  background-color: #ffffff;
  width: 100%;
  max-width: 240px;
  height: 56px;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 0.25s ease;
  cursor: pointer;
}
.link-button::after, .link-button::before {
  position: absolute;
  content: "";
  display: block;
}
.link-button::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transform: rotateY(90deg);
  transform-origin: right;
  transition: transform 0.25s ease;
}
.link-button::after {
  top: 50%;
  right: -20px;
  width: 60px;
  height: 1px;
  transition: all 0.25s ease 0.05s;
}
.link-button:hover {
  color: #ffffff !important;
}
.link-button:hover::before {
  transform: rotateY(0deg);
  transform-origin: left;
}
.link-button:hover::after {
  width: 20px;
  background-color: #ffffff;
  transform: translate(-40px);
}
.link-button .link-button__text {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0 4px 0 0;
  z-index: 1;
}

.link-button--large {
  width: 100%;
  max-width: 410px;
}

/*-------------------------------------------
テーブルの基本レイアウト
-------------------------------------------*/
table.base_table tr th {
  width: 20%;
  text-align: left;
  padding: 0.5rem 0.5rem 0.5rem 0;
  border-bottom: 1px solid #dbdbdb;
}

table.base_table tr td {
  width: 80%;
  background-color: #ffffff;
  padding: 0.5rem 1rem 0.5rem 1rem;
  border-bottom: 1px solid #dbdbdb;
}

/*-------------------------------------------
ページナビ
-------------------------------------------*/
.wrap_pagination {
  text-align: center;
  margin: 4.7rem 0;
}

.wp-pagenavi a,
.wp-pagenavi span {
  color: #f0e800;
  font-weight: 400 !important;
  text-decoration: none;
  border: 1px solid #f0e800;
  padding: 10px 20px;
  margin: 10px;
  background-color: #ffffff;
  border-radius: 0;
  font-size: 1rem;
  display: inline-block;
}

.wp-pagenavi a:hover,
.wp-pagenavi span.current,
.wp-pagenavi span.pages {
  color: white;
  border: 1px solid #f0e800;
  background-color: #f0e800;
}

.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  color: #f0e800;
  border: 1px solid #f0e800;
}

/*-------------------------------------------
パンくずリスト
-------------------------------------------*/
#after-header {
  position: relative;
}

.breadcrumb {
}

.breadcrumb span {
  color: #515151;
}

.breadcrumb {
  padding: 1rem 0;
  margin-bottom: 3rem;
}
.breadcrumb a:hover {
  text-decoration: underline;
}

/*-------------------------------------------
ホバーでスケール
-------------------------------------------*/
.scale-img {
  position: relative;
  overflow: hidden;
}

.scale-img a:hover {
  opacity: 1;
}

.scale-img a,
.scale-img .thumb,
.scale-img .of_hide {
  position: relative;
  overflow: hidden;
  display: block;
}

.scale-img img {
  width: 100%;
  transition: all 0.3s cubic-bezier(0.045, 0.495, 0.685, 0.97);
}

.scale-img:hover img {
  transform: scale(1.1);
}

/*-------------------------------------------
横並びレイアウト
-------------------------------------------*/
.flexbox {
  display: flex;
  flex-flow: row;
  align-content: flex-start;
}

.flexbox-wrap {
  flex-flow: row wrap;
}

.flexbox-center {
  align-items: center;
}

/*-------------------------------------------
YouTube枠レスポンシブ
-------------------------------------------*/
.video-frame {
  position: relative;
  width: 100%;
}

.video-frame:before {
  content: "";
  display: block;
  padding-top: 56.3%;
  position: relative;
}

.video-frame-inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/*-------------------------------------------
固有スタイル
-------------------------------------------*/
/******************************************************************

プラグイン

******************************************************************/
.slick-slider {
  margin-bottom: 0rem;
}

.slick-track {
  overflow: hidden;
}

.slick-dots li button:before {
}

.slick-dots li.slick-active button:before {
}

.slick-slide img {
  width: 100%;
}

/******************************************************************

ヘッダー

******************************************************************/
.overlay {
  display: none;
}

#header {
}


#inner-header .main-image img {
  width: 100%;
}

/* head-bar
-------------------------------------------------------*/
#head-bar {
  padding: 0rem 1rem;
  margin: 0 auto;
  background-color: #ffffff;
}
#head-bar .head-bar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 1rem;
}
#head-bar .head-bar-inner .head-bar-left {
  width: 100%;
  max-width: 285px;
}
#head-bar .head-bar-inner .head-bar-left .link:hover {
  opacity: 0.5;
}
#head-bar .head-bar-inner .head-bar-left img {
  width: 100%;
}
#head-bar .head-bar-inner .head-bar-center {
  flex: 1;
  display: block;
  height: 100px;
}
#head-bar .head-bar-inner .head-bar-center .globalnavi-ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
#head-bar .head-bar-inner .head-bar-center .globalnavi-ul > .menu-item {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 0;
}
#head-bar .head-bar-inner .head-bar-center .globalnavi-ul > .menu-item > a {
  color: #515151;
  font-weight: 600;
  padding: 0 1rem;
  white-space: nowrap;
}
#head-bar .head-bar-inner .head-bar-center .globalnavi-ul > .menu-item.current-page-ancestor > a, #head-bar .head-bar-inner .head-bar-center .globalnavi-ul > .menu-item.active > a, #head-bar .head-bar-inner .head-bar-center .globalnavi-ul > .menu-item:hover > a {
  color: #f0e800;
}
#head-bar .head-bar-inner .head-bar-right {
  display: none;
}

/******************************************************************

サイドバー

******************************************************************/
/******************************************************************

ユーティリティナビゲーション

******************************************************************/
/******************************************************************

フッター

******************************************************************/
#footer {
  display: none;
}
#footer {
  width: 100%;
  background-color: var(--home-color-01);
  padding: 0.9rem 0;
  position: fixed;
  bottom: 0;
  z-index: 2;
  color: white;
  font-size: var(--font-size-18px);
  font-weight: var(--font-weight-semibold);
}
.footer__cta {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1rem;
  width: 100%;
  max-width: 1000px;
  margin: 0 auto;
}
.footer__text {
  width: 100%;
  max-width: 460px;
}
.footer__cta-links {
  width: 100%;
  max-width: 524px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 1rem;
}
.footer__cta--button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0 0.5rem;
  width: 100%;
  max-width: 254px;
  color: white;
  background-color: var(--home-color-01);
  font-size: var(--font-size-20px);
  font-weight: var(--font-weight-semibold);
  padding: 0.7rem 1rem;
  border: 1px solid currentColor;
  border-radius: 20px;
}
.footer__cta--button:hover {
  color: var(--home-color-01);
  background-color: white;
  border: 1px solid currentColor;
}
.footer__cta--button .fa-envelope {
  font-size: var(--font-size-24px);
}

/******************************************************************

トップページ(toppage)

******************************************************************/
.home {
}

/* home utilities */
.home .u-mb-m {
  margin-bottom: 5rem;
}
.home .u-mb-l {
  margin-bottom: 10rem;
}
.home .u-relative {
  position: relative;
}
.home .u-absolute {
  position: absolute;
}
.home .u-aspect-16x9 {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}
.u-aspect-16x9 > iframe,
.u-aspect-16x9 > img,
.u-aspect-16x9 > video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

/* home 汎用 */
.home .section__header {
  margin-bottom: 3rem;
}
.home .section__title {
  font-size: var(--font-size-28px);
  font-weight: var(--font-weight-semibold);
  border-bottom: 5px solid var(--home-color-01);
}
.home .section__header-note {
  margin-top: 1rem;
}

/* mv */
.home #mv {
  background-image: url(assets/images/mv-pc.webp);
  background-size: cover;
  background-position: bottom center;
  background-repeat: no-repeat;
  padding: 1rem;
  margin-bottom: 0;
  position: relative;
  z-index: 1;
}
.home .mv__title,
.home .mv__tagline {
  text-align: center;
}
.home .mv__title {
  margin-bottom: 3vw;
}
.home .mv__tagline {
  margin-bottom: 3vw;
}
.home .mv__date {
  max-width: 1300px;
  margin: 0 auto;
}
.home .mv__title img {
  width: 100%;
  max-width: 1300px;
}
.home .mv__tagline img {
  width: 100%;
  max-width: 275px;
}
.home .mv__date img {
  width: 100%;
  max-width: 900px;
  margin-left: auto;
}


/* lead */
.home #lead {
    background-image: url(assets/images/lead-bg.webp);
    background-size: cover;
    background-position: top center;
    background-repeat: no-repeat;
    padding: 20% 0 0;
    margin-top: -20%;
}
.home .lead__title {
  margin-bottom: 3rem;
}
.home .lead__text {
  max-width: 799px;
  margin: 0 auto 3rem;
}
.home .lead__info, 
.home .section__body {
  margin-bottom: 4rem;
}
.home .lead__title {
  text-align: center;
  font-weight: var(--font-weight-bold);  
}
.home .lead__title--small {
  font-size: var(--font-size-40px);
}
.home .lead__title--large {
  font-size: var(--font-size-60px);
}
.home .lead__title--pink {
  color: var(--home-color-01);
}
.home .lead__text > p {
  font-size: var(--font-size-20px);
  font-weight: var(--font-weight-semibold);
  text-align: center;
}
.home .lead__text > .lead__text--large {
  font-size: var(--font-size-24px);
}
.home .lead__info-table {
    width: 100%;
    max-width: 520px;
    margin: 0 auto;
    border-collapse: collapse;
    border: 1px solid var(--home-color-02);
    font-size: var(--font-size-20px);
    font-weight: var(--font-weight-semibold);
}
.home .lead__info-table th,
.home .lead__info-table td {
    padding: 1rem 2rem;
}
.home .lead__info-table th {
    background-color: var(--home-color-02);
    color: white;
    width: 25%;
    text-align: center;
}
.home .lead__info-table td {
    background-color: white;
}
.home .lead__audience {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem 2rem;
  font-weight: var(--font-weight-semibold);
}
.home .audience-card {
  width: 100%;
  max-width: 500px;
  display: flex;
  align-items: center;
  padding: 0 0 1rem 0.5rem;
}
.home .audience-card--female {
  color: var(--home-color-01);
}
.home .audience-card--male {
  color: var(--home-color-03);
}
.home .audience-card--female,
.home .audience-card--male {
  border-bottom: 1px solid currentColor;
  border-left: 1px solid currentColor;
}
.home .audience-card__icon {
  width: 100%;
  max-width: 80px;
  padding: 0 1rem;
  text-align: center;
}
.home .audience-card__icon img {
  width: 100%;
  max-width: 45px;
}
.home .audience-card__body {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-left: 0.5rem;
}
.home .audience-card__title {
  width: 100%;
  font-size: var(--font-size-22px);
  margin-bottom: 0.5rem;
}
.home .audience-card__list,
.home .audience-card__fee {
  font-size: var(--font-size-18px);
  line-height: 1.5;
}
.home .audience-card__list {
  width: 55%;
  padding-right: 0.5rem;
  border-right: 1px solid currentColor;
}
.home .audience-card__fee {
  width: 45%;
  padding-left: 0.5rem;
}
.home .lead__cta--button {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 0 auto;
  color: var(--home-color-01);
  font-size: var(--font-size-28px);
  font-weight: var(--font-weight-semibold);
  text-align: center;
  padding: 1rem 1rem;
  border: 2px solid var(--home-color-01);
  border-radius: 30px;
  margin-bottom: 2rem;
}
.home .lead__cta--button:hover {
  color: white;
  background-color: var(--home-color-01);
}
.home .lead__cta-note {
  text-align: center;
  font-size: var(--font-size-20px);
  font-weight: var(--font-weight-semibold);
}

/* event-tabs */
.home .event-tabs {
  position: -webkit-sticky;
  position: sticky;
  top: 0px;
  z-index: 2;
  width: 100%;
  max-width: 1240px;
  padding: 0 20px;
  margin-right: auto;
  margin-left: auto;
}
.home .event-tabs__list {
  display: flex;
  align-items: center;
  justify-content: start;
  border-bottom: 10px solid var(--home-color-01); 
}
.home .event-tabs__item {
  width: calc(100% / 3);  
}
.home .event-tabs__link {
  display: block;
  background-color: white;
  border-top: 1px solid var(--home-color-04);
  border-right: 1px solid var(--home-color-04);
  border-left: 1px solid var(--home-color-04);
  border-top-left-radius: 25px;
  border-top-right-radius: 25px;
  font-size: var(--font-size-20px);
  font-weight: var(--font-weight-semibold);
  text-align: center;
  padding: 0.7rem 1rem;
  position: -webkit-sticky;
  position: sticky;
  top: 60px;
  z-index: 2;
  margin-bottom: -1px;
}
.home .event-tabs__link:hover,
.home .event-tabs__link.is-active {
  color: white;
  background-color: var(--home-color-01);
  border-top: 1px solid var(--home-color-01);
  border-right: 1px solid var(--home-color-01);
  border-left: 1px solid var(--home-color-01);
}

/* flow */
.home #flow .section__header-note,
.home .flow__note > p {
  font-size: var(--font-size-14px);
  text-indent: calc(-1 * var(--font-size-14px));
  padding-left: var(--font-size-14px);
}
.home .flow__flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 2rem;
}
.home .flow-card {
  width: 100%;
  max-width: 592px;
}
.home .flow-card__title {
  color: white;
  font-size: var(--font-size-20px);
  font-weight: var(--font-weight-semibold);
  text-align: center;
  background-color: var(--home-color-05);
  padding: 0.4rem 1rem;
  border: 1px solid var(--home-color-05);
}
.home .flow-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.home .flow-table th,
.home .flow-table td {
  border: 1px solid var(--home-color-05);
  font-weight: var(--font-weight-regular);
  text-align: center;
  padding: 0.3rem 1rem;
}
.home .flow-table__time {
  width: 120px;
}

/* reception */
.home .reception__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 1rem;
}
.home .reception__item {
  width: 100%;
  max-width: calc(1152px / 4);
}
.home .reception-card {
  margin-bottom: 0;
}
.home .reception-card__googlemap {
  position: relative;
  width: 100%;
  padding-top: 105.1%;
  background-color: #eef3f7;
}
.home .reception-card__googlemap > iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
}
.home .reception-card__title {
  color: white;
  padding: 0 1rem;
  background: var(--home-color-03);
  text-align: center;
}

/* details */
.home .details-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}
.home .details-table th,
.home .details-table td {
  border: 1px solid var(--home-color-05);
  padding: 0.3rem 1rem;
}
.home .details-table__label {
  width: 120px;
}

/* workshop */
.home .workshop-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 3rem 1rem;
}
.home .workshop-item {
  width: 100%;
  max-width: calc(1168px / 3);
}
.home .workshop-image {
  margin-bottom: 2rem;
}
.home .workshop-image img {
  width: 100%;
}
.home .workshop-title {
  font-size: var(--font-size-18px);
  font-weight: var(--font-weight-semibold);
  margin-bottom: 1rem;
}

/* requirements */
.home .criteria {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: center;
  gap: 3rem 1rem;
}
.home .criteria__text {
  width: 100%;
  max-width: 944px;
}
.home .criteria__list,
.home .criteria__must {
  margin-bottom: 0.5rem;
}
.home .criteria__list {
  display: grid;
  gap: 0.4rem;
}
.home .criteria__item {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.home .badge {
  display: inline-block;
  border-radius: 15px;
  color: white;
  padding: 0 0.5rem;
}
.home .badge--male {
  background: var(--home-color-03);
}
.home .badge--female {
  background: var(--home-color-01);
}
.home .criteria__notes {
  margin-bottom: 1rem;
}
.home .criteria__notes li {
  font-size: var(--font-size-14px);
  text-indent: calc(-1 * var(--font-size-14px));
  padding-left: var(--font-size-14px);
}
.home .criteria__alert {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 1rem 1rem;
  background: var(--home-color-06);
  border-radius: 20px;
}
.home .criteria__alert-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 1.875rem;
  height: 1.875rem;
  border-radius: 50%;
  border: 3px solid currentColor;
  font-size: var(--font-size-20px);
  font-weight: var(--font-weight-bold);
}
.home .criteria__illustration {
  width: 100%;
  max-width: 240px;
}

/* notes */
.home .notice__divider {
  height: 1px;
  background-color: var(--home-color-05);
  margin: 1rem 0;
}
.home .notice__list li {
  text-indent: -0.5rem;
  padding-left: 0.5rem;
}

/* prohibit */
.home .prohibit__list li {
  text-indent: -0.5rem;
  padding-left: 0.5rem;
}

/* about-otoyo */
.home #about-otoyo {
  position: relative;
  background-image: url(assets/images/bg-about-otoyo-pc.webp);
  background-size: cover;
  background-position: center;
}
.home .about-otoyo__title {
  color: white;
  font-size: var(--font-size-40px);
  font-weight: var(--font-weight-bold);
  text-shadow: 2px 2px 2px rgba(0, 0, 0, 0.75);
  text-align: center;
  padding: 2rem 0;
}
.home .about-otoyo__body {
  position: relative;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.9) 0%, white 100%);
  padding: 3rem 0;
}
.home .about-otoyo__content {
  display: flex;
  flex-wrap: wrap-reverse;
  justify-content: center;
  gap: 2rem 2rem;
}
.home .about-otoyo__map {
  width: 100%;
  max-width: 580px;
}
.home .about-otoyo__text {
  width: 100%;
  max-width: 588px;
}
.home .about-otoyo__text-title {
  font-size: var(--font-size-28px);
  margin-bottom: 1rem;
}

/* banner */
.home .banner-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 1rem;
}
.home .banner-list > li {
  width: 100%;
  max-width: calc(1168px / 3);
}
.home .banner-link {
  display: block;
  text-align: center;
}
.home .banner-link:hover {
  opacity: 0.5;
}

/* slider */
.slider .slider__item img {
  display: block;
  width: 100%;
  height: auto;
}
.slider--image {
}
.slider--image .slider__item {
  background-color: #eef3f7;
}
.slider--youtube {
  margin-bottom: 15rem;
}
.slider--youtube .slider__item {
  margin: 0 1rem;
}
.slider--youtube .slider__media {
  transform: scale(0.9);
  background-color: #eef3f7;
}
.slider--youtube .slick-current > .slider__media {
  transform: scale(1.0);
}
.slider--youtube .slider__media,
.slider--youtube .slider__media > iframe {
  border-radius: 30px;
}
.slider--youtube .slide-arrow {
  bottom: 0;
  cursor: pointer;
  margin: auto;
  position: absolute;
  top: 0;
  width: 50px;
  height: 50px;
  z-index: 1;
  background: white;
  border-radius: 50%;
}
.slider--youtube .slide-arrow:hover {
  opacity: 0.5;
}
.slider--youtube .prev-arrow {
  left: 12%;
}
.slider--youtube .next-arrow {
  right: 12%;
}

.home #main {
  position: relative;
}
.home .modal-wrapper {
  position: absolute;
  z-index: 100;
  inset: 0;
  width: 100%;
  height: 101%;
  background-color: rgba(255, 255, 255, 0.8);
}
.home .modal {
  position: fixed;
  width: 100%;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 101;
  padding: 0 1rem;
}
.home .modal__container {
  width: 100%;
  max-width: 550px;
  background-color: #ffffff;
  border-radius: 40px;
  padding: 3rem;
  margin: 0 auto;
  box-shadow: 7px 7px 5px 3px rgba(0, 0, 0, 0.3);
}
.home .modal__title {
  margin-bottom: 1rem;
}
.home .modal__close {
  display: none;
}

/******************************************************************

投稿（お知らせ）

******************************************************************/
.category-news #category-news {
  margin-bottom: 0;
}

.postlist .postlist-ul li {
  border-bottom: none;
}
.postlist .postlist-ul li .hover_ul {
  display: block;
  padding: 1.5rem 2rem;
}
.postlist .postlist-ul li .hover_ul:hover, .postlist .postlist-ul li .hover_ul:focus, .postlist .postlist-ul li .hover_ul:active {
  color: #515151;
}
.postlist .postlist-ul li .hover_ul .text {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.postlist .postlist-ul li .hover_ul .text .list-title {
  font-size: 1rem;
  font-weight: 500;
}
.postlist .postlist-ul li .hover_ul .text .list-title .fas {
  color: #f0e800;
  margin-right: 0.5rem;
}
.postlist .postlist-ul li .hover_ul .text .date {
  font-size: 0.875rem;
  line-height: 1;
}
.postlist .postlist-ul li .hover_ul .text .date .publication {
  margin-right: 0.5rem;
}

/* single
-------------------------------------------------------*/
.single-post .single_inner_width {
  width: 80% !important;
  margin: 0 auto !important;
}
.single-post .post-category {
  width: 100%;
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}
.single-post .post-category .taxonomy {
  color: #ffffff;
  display: inline-block;
  padding: 0.1rem 0.5rem;
}

h1.page-title,
h1.single-title {
  font-weight: bold;
  background: none;
  margin-bottom: 1rem;
  padding: 0;
  font-size: 1.6rem;
}

.single-post .article-header .single-title_wrapper {
  margin-bottom: 2rem;
  border: 1px solid #dddddd;
  padding: 1.5rem;
  border-radius: 3px;
}

.single-post .article-header .single-title_wrapper .date {
  /*    text-align: right;*/
  color: #666666;
  font-size: 0.9rem;
}

/* 文章 */
.single-post .entry-content {
  padding: 0;
  margin-bottom: 0;
}

.single-post .entry-content img {
  width: auto;
}

.single-post .entry-content p {
  margin-bottom: 0.5rem;
}

.single-post .entry-content a {
  color: #01a93b;
}

.single-post .entry-content h1,
.single-post .entry-content h2,
.single-post .entry-content h3,
.single-post .entry-content h4,
.single-post .entry-content h5,
.single-post .entry-content h6 {
  margin-bottom: 1rem;
}

.single-post .article-footer {
  margin-bottom: 4.7rem;
}

.single-post .article-footer .post_link {
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  padding-top: 1rem;
  padding-bottom: 1rem;
  margin-top: 2rem;
  margin-bottom: 3rem;
  display: flex;
  flex-flow: row;
  justify-content: space-between;
}

.single-post .article-footer .post_link a:hover {
  text-decoration: underline !important;
}

/******************************************************************

固定ページ(page)

******************************************************************/

/******************************************************************

カスタム投稿

******************************************************************/
/******************************************************************

404 Page Not Found

******************************************************************/
/******************************************************************
*******************************************************************

メディアクエリー

*******************************************************************
******************************************************************/
/* style-sp.cssにコーディング *//*# sourceMappingURL=style.css.map */
