@charset "UTF-8";

/*!
Theme Name: Cocoon Child
Description: Cocoon専用の子テーマ
Theme URI: https://wp-cocoon.com/
Author: わいひら
Author URI: https://nelog.jp/
Template:   cocoon-master
Version:    1.1.3
*/

/************************************
** 子テーマ用のスタイルを書く
************************************/
/*必要ならばここにコードを書く*/
.def-def {
  display: grid;
}

dd.def-data {
  margin: 0;
}

.def-data+.def-dtit {
  margin-top: 1em;
}

@media screen and (min-width:426px) {
  .def-def {
    grid-template-columns: auto 1fr;
  }

  .def-data {
    grid-column: 2;
    padding-left: 1em;
    text-indent: -1em;
  }

  .def-data+.def-dtit {
    margin-top: 0;
  }

  .def-data::before {
    content: "：";
  }
}

/* 固定ページの日付を非表示 */
.page .date-tags {
  display: none;
}

/* 横スクロールバー表示時にレイアウト崩れ防止 */
.container {
  overflow-x: hidden;
}

/* mainの背景をベース色に変更 */
.main {
  margin-top: 80px;
  padding: 0 12px;
  background-color: #F3F3F3;
}

.no-sidebar .content .main {
  margin-top: 80px;
}

body:not(.home):not(.blog):not(.archive):not(.single) .main {
  max-width: 1024px;
  width: 100%;
  margin: 80px auto 0;
}

main.main,
div.sidebar {
  margin: 40px 0 0 0;
  padding: 0 12px;
  background-color: #F3F3F3;
}

/* 共通パーツ */
.orgbtn a {
  padding: 10px 40px;
  border-radius: 50px;
  background-color: #E60012;
  color: #FFFFFF;
  font-weight: bold;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}

.orgbtn a:hover {
  -webkit-filter: opacity(0.7);
  filter: opacity(0.7);
}

.snstimeline {
  margin-top: 160px;
  justify-content: space-around;
}

.snstimeline-tit2 {
  font-size: 1.5rem !important;
  margin-bottom: 24px !important;
}

.is-layout-flow.wp-block-column.snstimeline-box {
  flex-basis: 35%;
  flex-grow: 0;
}

.twitter-timeline.twitter-timeline-rendered {
  padding: 5px;
}

@media screen and (max-width:1023px) {
  .snstimeline {
    margin-top: 80px;
  }
}


/* 共通パーツここまで */

.banarea-list {
  padding: 0 !important;
  margin-top: 160px;
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 10px;
  column-gap: 10px;
  justify-content: space-around;
}

.banarea-item {
  max-width: 300px;
  max-height: 150px;
  list-style: none;
}

.banarea-item img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transition: all 0.5s ease-in-out;
}

.banarea-item img:hover {
  opacity: 0.7;
}


@media screen and (max-width: 510px) {
  .banarea-item {
    width: 90%;
  }
}

@media screen and (max-width: 943px) {
  .banarea-item {
    margin: 32px 0 0 0 !important;
  }
}

@media screen and (max-width:1023px) {
  .banarea-list {
    margin-top: 80px;
  }
}


@media screen and (min-width: 1024px) {
  #header-container-in {
    width: 100%;
    max-width: 1280px;
    height: 100px;
    margin: 0 auto;
    padding: 0 12px;
    border-radius: 0 0 20px 20px;
    z-index: 5;
    position: fixed;
    inset: 0;
    background-color: #FFFFFF;
  }

  .header .header-in {
    min-height: 100px;
  }

  /* グローバルナビのVマークを非表示 */
  .navi-in .has-icon {
    display: none;
  }

  #navi .navi-in a:hover {
    color: #E60012;
  }

  #navi .navi-in>ul>li.orgbtn a {
    padding: 6px 36px;
    border: 2px solid #E60012;
    color: #FFFFFF;
  }

  #navi .navi-in>ul>li.orgbtn a:hover {
    background-color: #FFFFFF;
    color: #E60012;
  }

  .hlt-tm-right .navi-in>ul {
    align-items: center;
  }

  #navi .navi-in>ul>li {
    height: initial;
    margin-left: 24px;
    line-height: initial;
  }

  #navi .navi-in>ul>li>a {
    padding: 0;
  }

  #navi .navi-in>ul>li:not(.orgbtn)>a::after {
    content: "";
    display: block;
    width: 0;
    transition: all 0.3s ease;
    border-bottom: 3px solid #E60012;

  }

  #navi .navi-in>ul>li:not(.orgbtn)>a:hover::after {
    width: 100%;
    border-bottom: 3px solid #E60012;
  }
}

#navi .navi-in>.menu-header .sub-menu {
  background-color: #E60012;
  opacity: 0.9;
}

#navi .navi-in>.menu-header .sub-menu li+li {
  border-top: 1px solid #FFFFFF;
}

#navi .navi-in>.menu-header .sub-menu a {
  color: #FFFFFF;
}


/* スマホのヘッダレイアウト */
@media screen and (max-width: 1023px) {
  .mblt-header-mobile-buttons {
    margin-top: 0;
  }

  .mobile-header-menu-buttons {
    width: 94%;
    padding: 8px;
    margin: 0 auto;
    border-radius: 0 0 20px 20px;
    flex-direction: row-reverse;
    justify-content: space-between;
    align-items: center;
  }

  .mobile-menu-buttons>li {
    padding: 0;
  }

  .has-logo-button .menu-button {
    width: auto;
  }

  .has-logo-button .logo-menu-button {
    min-width: 100px;
    flex-grow: initial;
  }

  .has-logo-button .logo-menu-button img {
    height: 33px;
  }

  .has-logo-button .navi-menu-button {
    margin-right: 16px;
  }


  li.search-menu-button.menu-button {
    display: none;
  }

  .mobile-menu-buttons .menu-caption {
    display: none;
  }
}

/* スライドメニュー */
.navi-menu-content {
  left: auto;
  right: 0;
  background-color: rgba(230, 0, 18, 0.95);
  transform: translateX(101%);
  color: #FFFFFF;
}

.menu-drawer li.item a {
  padding: 16px 0;
  border-bottom: 1px solid #FFFFFF;
  color: #FFFFFF;
}

.menu-drawer a:hover {
  background: none;
}

.menu-drawer li.orgbtn {
  margin-top: 24px;
}

.menu-drawer li.orgbtn a {
  display: inline-block;
  padding: 6px 36px;
  background-color: #FFFFFF;
  color: #E60012;
}

.menu-close-button {
  margin-right: 16px;
  text-align: right;
}

.menu-close-button .fa-times::before {
  content: "×";
  font-weight: normal;
}

/* PCフッタスタイル修正 */
.footer {
  padding: 80px 0 0 0;
  margin-top: 160px;
  font-size: 14px;
}

.footer-widgets,
.footer-widgets-mobile {
  margin: 0;
}

.footer-widgets {
  flex-wrap: wrap;
}

.footer-in {
  padding: 0 12px;
}

.footer-left,
.footer-center,
.footer-right {
  padding: 0;
  width: 0;
}

.footer-left {
  width: calc(100% - 283px);
  display: flex;
}

@media screen and (max-width: 1106px) {
  .footer-left {
    width: 100%;
    justify-content: center;
  }
}

.footer-right {
  width: auto;
  align-self: flex-end;
}

@media screen and (max-width: 1106px) {
  .footer-right {
    margin-top: 64px;
    width: 100%;
  }
}

.footer-right .widget_custom_html,
.footer-mobile .widget_custom_html {
  text-align: center;
  margin-top: 80px;
}

.widget-footer-right,
.widget-footer-left {
  margin: 0 !important;
}

.widget_nav_menu h3 {
  font-size: 14px;
}

.widget_nav_menu ul li a {
  width: 200px;
  padding: 0 0 0 2em;
  position: relative;
  line-height: 2.8;
}

.widget_nav_menu ul li a:hover {
  color: #E60012 !important;
}

.widget_nav_menu ul li a::before {
  content: "";
  display: block;
  width: 0.5em;
  height: 0.5em;
  border-top: 2px solid #E60012;
  border-right: 2px solid #E60012;
  transform: rotate(45deg);
  position: absolute;
  top: 1em;
  left: 0;
}

.widget_nav_menu li {
  position: relative;
}

.widget_nav_menu #menu-sns li a:before {
  content: none;
}

.widget_nav_menu #menu-sns li a {
  padding-left: 2.5rem;
}

.widget_nav_menu #menu-sns li::before {
  content: "";
  display: inline-block;
  background-size: contain;
  background-position: center;
  width: 25px;
  height: 25px;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
}

.widget_nav_menu #menu-sns-1 li a {
  padding-top: 2.5rem;
  font-size: 90%;
}

.widget_nav_menu #menu-sns-1 li::before {
  content: "";
  display: block;
  background-size: contain;
  background-position: center;
  width: 25px;
  height: 25px;
  position: absolute;
  top: -1rem;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.widget_nav_menu li.twitter::before {
  background: url(/wp-content/uploads/2025/09/logo-black.png) no-repeat;
}

.widget_nav_menu li.facebook::before {
  background: url(/wp-content/uploads/2022/12/f_logo_RGB-Blue_58.png) no-repeat;
}

.widget_nav_menu li.instagram::before {
  background: url(/wp-content/uploads/2022/12/Instagram_Glyph_Gradient.png) no-repeat;
}

.widget_nav_menu li.youtube::before {
  background: url(/wp-content/uploads/2022/12/yt_icon_rgb.png) no-repeat;
}

.footer-container .logo {
  width: 283px;
  display: inline-block;
}

.footer-container .tel {
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2;
}

.footer-container .credit {
  margin-top: 0.5em;
  font-size: 90%;
}


.footer-bottom {
  padding: 16px 0;
  width: 100vw;
  margin: 40px calc(50% - 50vw) 0;
  background-color: #E60012;
  font-size: 12px;
  color: #FFFFFF;
}

.copyright {
  padding: 0 12px;
  margin: 0 auto;
  text-align: left;
}

@media screen and (min-width: 1280px) {
  .copyright {
    width: 1280px;
  }
}

/* SPフッタスタイル修正 */
@media screen and (max-width: 834px) {
  .footer {
    padding: 40px 0 0;
    margin-top: 80px;
  }

  .footer-in {
    padding: 16px 16px 0 16px;
  }

  .footer-container .logo {
    width: 250px;
  }

  .footer-container .tel {
    font-size: 24px;
  }

  .footer-bottom {
    margin-top: 24px;
  }
}

.footer-mobile {
  padding: 0;
}

.footer-mobile .widget_nav_menu .menu {
  display: flex;
  flex-wrap: wrap;
}

.footer-mobile aside+aside {
  margin: 24px 0 0 0;
}

.footer-mobile .widget_nav_menu ul {
  margin: 0 0 0 -1em;
}

.footer-mobile .widget_nav_menu ul li {
  margin-bottom: 1em;
}

.footer-mobile .widget_nav_menu ul li a {
  width: auto;
  padding: 0 1em;
  line-height: 1;
}

.footer-mobile .widget_nav_menu ul li:not(:last-of-type) {
  border-right: 1px solid #3B4043;
}

.footer-mobile .widget_nav_menu ul li a::before {
  content: none;
}

.footer-mobile #nav_menu-9 {
  text-align: center;
}

.footer-mobile #nav_menu-9 ul {
  justify-content: center;
}

/* 「トップ」と「投稿ページ」「プライバシーポリシー」以外にヘッダ画像表示 */
body:not(.page-id-2):not(.single):not(.page-id-3):not(.blog):not(.archive) .header-container {
  height: 500px;
  background: url("../../../wp-content/uploads/2022/11/P1130022.jpg") no-repeat center center;
  background-size: cover;
}

@media screen and (max-width: 1023px) {
  body:not(.page-id-2):not(.single):not(.page-id-3):not(.blog):not(.archive) .header-container {
    height: 200px;
  }
}

/* ヘッダ画像を表示させない投稿ページの詰まりを解除 */
body.single .header-container,
body.page-id-3 .header-container,
body.blog .header-container,
body.archive .header-container {
  height: 100px;
}

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

  body.single .header-container,
  body.page-id-3 .header-container,
  body.blog .header-container,
  body.archive .header-container {
    height: 50px;
  }
}

/* metaslider画像サイズ調整 */
.metaslider .theme-default img {
  width: 100% !important;
  height: 750px !important;
  -o-object-fit: cover !important;
  object-fit: cover !important;
}

/* metasliderスマホ時の画面サイズ調整 */
@media screen and (max-width: 1023px) {
  .metaslider .theme-default img {
    height: 80vh !important;
  }
}

.metaslider .theme-default .nivo-caption {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 12px;
  position: absolute;
  top: 56%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  background: none;
  overflow: initial;
  opacity: 1;
  font-size: 50px;
  font-weight: bold;
  font-family: "Times New Roman",
    "游明朝",
    "Yu Mincho",
    "游明朝体",
    "YuMincho",
    "ヒラギノ明朝 Pro W3",
    "Hiragino Mincho Pro",
    "HiraMinProN-W3",
    "HGS明朝E",
    "ＭＳ Ｐ明朝",
    "MS PMincho",
    serif !important;
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45);
}

@media screen and (max-width: 1023px) {
  .metaslider .theme-default .nivo-caption {
    font-size: 30px;
  }
}

/* パンくずリスト調整 */
.breadcrumb.sbp-main-before,
.breadcrumb.sbp-footer-before,
.breadcrumb.pbp-main-before,
.breadcrumb.pbp-footer-befor {
  margin-top: 8px;
  padding: 0 12px;
  background: none;
}

.breadcrumb .fa-angle-right:before {
  content: "/";
}

.breadcrumb .sp {
  margin: 0 5px;
}

.breadcrumb a:hover {
  color: #E60012;
}

/* アイコン非表示 */
.breadcrumb .fa-folder.fa-fw,
.breadcrumb .fa-file.fa-fw,
.fa-folder:before,
.fa-folder-open {
  display: none;
}

body:not(.home):not(.single) .page {
  margin-top: -80px;
}

.page .article-header {
  position: relative;
  top: -320px;
  text-align: center;
  color: #FFFFFF;
  font-family: "Times New Roman",
    "游明朝",
    "Yu Mincho",
    "游明朝体",
    "YuMincho",
    "ヒラギノ明朝 Pro W3",
    "Hiragino Mincho Pro",
    "HiraMinProN-W3",
    "HGS明朝E",
    "ＭＳ Ｐ明朝",
    "MS PMincho",
    serif !important;
}

@media screen and (max-width: 1023px) {
  .page .article-header {
    top: -180px;
  }
}

@media screen and (max-width: 480px) {
  .page .article-header {
    top: -160px;
  }
}

.page .article h1 {
	text-shadow: 0 2px 4px rgba(0, 0, 0, 0.45);
}

.article h1 {
  padding: 0;
  font-size: 50px;
  }

@media screen and (max-width: 425px) {
  .article h1 {
    font-size: 10vw;
  }
}

.article h2 {
  padding: 0;
  margin: 0 0 24px 0;
  background-color: initial;
  color: #3B4043;
  font-size: 2rem;
}

.inq span.tel {
  line-height: 1;
  font-size: 2rem;
  font-weight: bold;
  font-family: helvetica;
}

.inq span.time {
  font-weight: bold;
}

.article h3 {
  padding: 0;
  margin: 0 0 16px 0;
  border: none;
}



/************************************
** サイドバー
************************************/
/* サイドバーデザイン調整 */
.sidebar h2,
.sidebar h3 {
  background: none;
  padding: 0;
  margin: 0;
  border: none;
  color: #3B4043;
}

/* サイドバーの新着記事レイアウト調整 */
.sidebar .widget-entry-cards .a-wrap {
  padding: 0;
  margin-bottom: 0;
}

.sidebar .widget-entry-cards.card-large-image .e-card {
  display: flex;
  align-items: center;
}

/* 新着記事同士のmargin */
.sidebar .widget-entry-cards.card-large-image .a-wrap+a {
  margin-top: 32px;
}

/* 新着記事テキストエリア */
.sidebar .widget-entry-cards.card-large-image .card-content {
  width: 75%;
  height: 85%;
  padding: 8px;
  margin: 0;
  position: absolute;
  right: 0;
  /*top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%); */
  background-color: #FFFFFF;
  display: grid;
  grid-template-rows: auto 1fr;
}

@media screen and (max-width: 1023px) {
  .sidebar .widget-entry-cards.card-large-image .card-content {
    width: 80%;
  }
}

/* 新着記事アイキャッチ*/
.sidebar .widget-entry-cards.card-large-image figure {
  width: 100px;
  height: 80px;
  margin: 0;
}

.sidebar .widget-entry-cards.card-large-image figure img {
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

/* 新着記事タイトル */
.sidebar .widget-entry-cards.card-large-image .card-title {
  width: 95%;
  font-size: 16px;
  grid-row: 2;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* 新着記事更新日時 */
.sidebar .widget-entry-cards.card-large-image .new-entry-card-date {
  display: block;
}

.sidebar .widget-entry-cards.card-large-image .post-update {
  display: none;
}

.sidebar .widget-entry-cards.card-large-image .post-date {
  font-size: 12px;
}

/* 新着記事カテゴリ */
.sidebar .widget-entry-cards.card-large-image .cat-label {
  padding: 0 0 42px 81px;
  top: 14px;
  left: 8px;
  font-size: 12px;
}

.sidebar .widget-entry-cards.card-large-image .cat-label::after {
  content: "";
  display: block;
  width: 5em;
  height: 3px;
  position: absolute;
  bottom: 0px;
  left: 0px;
}

/* サイドバーの新着記事レイアウト調整ここまで */


/* サイドバーのカテゴリリストレイアウト調整 */
.sidebar .widget_categories ul {
  display: flex;
  flex-wrap: wrap;
}

.sidebar .widget_categories li {
  background-color: #3B4043;
  border-radius: 50px;
  font-size: 12px;
  margin: 0 16px 16px 0;
}

.sidebar .widget_categories li.cat-item-3 {
  background-color: #F98E3D;
}

.sidebar .widget_categories li.cat-item-4 {
  background-color: #006BE6;
}

.sidebar .widget_categories li.cat-item-5 {
  background-color: #057E1D;
}

.sidebar .widget_categories li.cat-item-16 {
  background-color: #5F1E91;
}

.sidebar .widget_categories li a {
  padding: 4px 16px;
  color: #FFFFFF;
}

.sidebar .widget_categories li a:hover {
  opacity: 0.5;
  color: initial;
}





/************************************
** 投稿ページ
************************************/
.post .article-header {
  display: grid;
  grid-template-columns: auto 1fr;
}

.post .article-header .date-tags {
  line-height: 1.8;
  margin: 0;
}

.post .article-header .post-update {
  display: none;
}

.post .article-header .post-date {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1;
}

.post .entry-categories-tags {
  margin: 0 0 0 0.5em;
  grid-column: 2;
}

.post .entry-categories {
  margin: 0;
}

.post .entry-categories a {
  padding: 0;
  background: none;
  border-radius: 0;
  color: #3B4043;
  border-left: 1px solid #3B4043;
  font-size: 16px;
  line-height: 1;
}

.post .article-header .entry-title {
  margin: 8px 0 0 0;
  padding: 0;
  grid-column: 1/3;
  font-size: 32px;
}

.post .cate-line {
  position: relative;
  line-height: 1;
}

.post .cate-line .cat-link {
  font-size: 0;
}

.post .cate-line .cat-link::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 4px;
  position: absolute;
  top: 4px;
  left: 0;
}

.post .cate-line .cat-link-3::before {
  background-color: #F98E3D;
}

.post .cate-line .cat-link-4::before {
  background-color: #006BE6;
}

.post .cate-line .cat-link-5::before {
  background-color: #057E1D;
}

.post .cate-line .cat-link-16::before {
  background-color: #5F1E91;
}

.article-header .eye-catch .cat-label {
  display: none;
}

.post .article-header .eye-catch-wrap {
  margin-top: 34px;
  grid-column: 1/3;
}

.article-header .eye-catch {
  margin-bottom: 0;
  width: 100%;
}

.article-header .eye-catch img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

body.single .entry-content {
  margin-top: 40px;
}







/************************************
** 投稿一覧
************************************/
.infolist-list {
  padding: 0;
  margin: 0 -40px 0 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.infolist-item {
  margin: 0 40px 40px 0;
  border-radius: 50px;
  list-style: none;
  transition: all 0.5s ease-in-out;
}

@media screen and (max-width:768px) {
  .infolist-list {
    margin: 0 -16px 8px 0;
    justify-content: flex-start;
  }

  .infolist-item {
    margin: 0 16px 16px 0;
    font-size: 12px
  }
}

.infolist-item a {
  display: block;
  padding: 4px 16px;
  color: #FFFFFF;
  text-decoration: none;
}

.infolist-item:hover {
  opacity: 0.7;
}

.infolist-item._cat-item-3 {
  background-color: #F98E3D;
}

.infolist-item._cat-item-4 {
  background-color: #006BE6;
}

.infolist-item._cat-item-5 {
  background-color: #057E1D;
}

.infolist-item._cat-item-16 {
  background-color: #5F1E91;
}

.archive .ichiran,
.archive .infolist-tit1,
.archive .infolist-list {
  display: none;
}

.fa-clock:before {
  display: none;
}

.ichiran {
  position: absolute;
  top: -80px;
  left: 0;
}

@media screen and (min-width: 1280px) {

  .blog .ect-3-columns,
  .archive .ect-3-columns {
    display: grid;
    grid-template-columns: 400px 400px 400px;
    justify-content: space-between;
  }
}

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

  .blog .ect-3-columns,
  .archive .ect-3-columns {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    -moz-column-gap: 2%;
    column-gap: 2%;
  }
}

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

  .blog .ect-3-columns,
  .archive .ect-3-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 2%;
    column-gap: 2%;
  }
}

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

  .blog .ect-3-columns,
  .archive .ect-3-columns {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }
}

.ect-vertical-card .a-wrap {
  padding: 0;
  margin: 0 0 56px 0;
  line-height: 1.3;
  color: #3B4043;
}

.ect-vertical-card .entry-card-wrap {
  max-width: 400px;
  width: 100%;
}

.ect-vertical-card::after {
  content: "";
  display: block;
  max-width: 400px;
}

.ect-vertical-card .entry-card-wrap .entry-card {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  flex-direction: row;
}

.ect-vertical-card .entry-card-wrap .entry-card-content {
  width: 86%;
  padding: 24px 24px 40px 24px;
  margin: -24px 0 0 0;
  background-color: #FFFFFF;
  display: grid;
  z-index: 1;
  height: auto;
}

.ect-vertical-card .entry-card-wrap figure {
  display: flex;
  max-width: 400px;
  /* aspect-ratio: 8 / 5; */
}

.ect-vertical-card .entry-card-wrap figure::before {
  content: "";
  display: block;
  padding-top: 62.5%;
}

.ect-vertical-card .entry-card-wrap figure img {
  position: absolute;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  will-change: transform;
}

.ect-vertical-card .entry-card-wrap .entry-card-title {
  margin: 0;
  line-height: 1.3;
}

.ect-vertical-card .entry-card-wrap .entry-card-meta {
  position: relative;
  padding-top: 0;
  text-align: left;
  line-height: 1.3;
}

.ect-vertical-card .entry-card-wrap .entry-card-info {
  display: block;
}

.ect-vertical-card .entry-card-wrap .entry-card-info>* {
  padding: 0;
  font-size: 13px;
}

.ect-vertical-card .entry-card-wrap .entry-date {
  margin: 0;
  font-size: 13px;
}

.ect-vertical-card .entry-card-wrap .card-title {
  width: 95%;
  margin-top: 8px;
  grid-row: 3;
  /* 省略せずに表示するサイズを指定 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.ect-vertical-card .entry-card-wrap .post-date::after {
  content: "";
  display: inline-block;
  background-color: #3B4043;
  width: 1px;
  height: 1em;
  margin: -0.5em 0 0 0.5em;
  position: absolute;
  top: 50%;
}

.ect-vertical-card .entry-card-wrap .cat-label {
  padding: 0 0 48px 88px;
  max-width: none;
  border: none;
  position: absolute;
  top: auto;
  left: calc(7% + 24px);
  bottom: -67px;
  z-index: 2;
  font-size: 13px;
  background: none;
  color: #3B4043;
}

.ect-vertical-card .entry-card-wrap .cat-label::after {
  width: 5rem;
  height: 3px;
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
}

.ect-vertical-card .entry-card-wrap .cat-label-3::after {
  background-color: #F98E3D;
}

.ect-vertical-card .entry-card-wrap .cat-label-4::after {
  background-color: #006BE6;
}

.ect-vertical-card .entry-card-wrap .cat-label-5::after {
  background-color: #057E1D;
}

.ect-vertical-card .entry-card-wrap .cat-label-16::after {
  background-color: #5F1E91;
}





/* ページネーション調整 */
.pagination-next {
  display: none;
}

.pagination {
  margin: 56px 0 0 0;
  font-size: 18px;
  font-weight: bold;
}

.pagination .page-numbers {
  border: none;
  color: #3B4043;
}

.pagination .current {
  border: none;
  background: none;
  color: #E60012;
}

.pagination .prev,
.pagination .next {
  border-radius: 5px;
  background-color: #FFFFFF;
  color: #E60012;
}

.fa-angle-left:before {
  content: "\f060";
}

.fa-angle-right:before {
  content: "\f061";
}

.pagination a.page-numbers:hover {
  background: none;
}

.pagination a:not(.prev):not(.next) {
  border-bottom: 3px solid transparent;
  border-radius: 0;
  transition: 0.3s;
}

.pagination a:not(.prev):not(.next):hover {
  border-color: #E60012;
}

.pagination a.prev:hover,
.pagination a.next:hover {
  border: none;
  background-color: #E60012;
  color: #FFFFFF;
  transition: all 0.3s ease-in-out;
}










/************************************
** フロントページ
************************************/
.home h1 {
  display: none;
}

.wp-block-image.infolist-mark {
  margin: 0 auto;
}

.article .infolist-tit2 {
  font-family: "Times New Roman",
    "游明朝",
    "Yu Mincho",
    "游明朝体",
    "YuMincho",
    "ヒラギノ明朝 Pro W3",
    "Hiragino Mincho Pro",
    "HiraMinProN-W3",
    "HGS明朝E",
    "ＭＳ Ｐ明朝",
    "MS PMincho",
    serif !important;
}

.widget-entry-cards {
  padding: 0 !important;
}

@media screen and (min-width: 1280px) {
  .body.page .new-entry-cards {
    display: grid;
    grid-template-columns: 400px 400px 400px;
    justify-content: space-between;
  }
}

@media screen and (max-width: 1279px) {
  .body.page .new-entry-cards {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    -moz-column-gap: 2%;
    column-gap: 2%;
  }
}

@media screen and (max-width: 767px) {
  .body.page .new-entry-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    -moz-column-gap: 2%;
    column-gap: 2%;
  }
}

@media screen and (max-width: 579px) {
  .body.page .new-entry-cards {
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
  }
}


.body.page .widget-entry-cards.card-large-image .a-wrap {
  max-width: initial;
  padding: 0;
  margin: 0 0 56px 0;
  line-height: 1.3;
}

.a-wrap:hover {
  background-color: #F3F3F3;
}

.body.page .widget-entry-cards.card-large-image .a-wrap {
  max-width: 400px;
  width: 100%;
}

.entry-content .cf::after {
  content: "";
  display: block;
  max-width: 400px;
}

/************************************
** サムネイルの調整
************************************/
.large-thumb img,
.ect-vertical-card img {
  transition: all 0.5s ease-in-out;
}

.large-thumb a:hover img,
.ect-vertical-card a:hover img {
  transform: scale(0.98);
  transition: all 0.5s ease-in-out;
}


.body.page .entry-content .widget-entry-cards .new-entry-card {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.body.page .widget-entry-cards .new-entry-card-thumb {
  margin: 0;
  position: relative;
  max-width: 400px;
  /* aspect-ratio: 8 / 5; */
}

.body.page .widget-entry-cards .new-entry-card-thumb::before {
  content: "";
  display: block;
  padding-top: 62.5%;
}

.body.page .widget-entry-cards .new-entry-card-thumb img {
  position: absolute;
  top: 0;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  will-change: transform;
}

.body.page .widget-entry-cards.card-large-image .card-content {
  width: 86%;
  padding: 24px 24px 40px 24px;
  margin: -24px 0 0 0;
  background-color: #FFFFFF;
  display: grid;
  z-index: 1;
}

.body.page .widget-entry-cards {
  margin: 0;
  padding: 2px;
  font-size: 13px;
}

.new-entry-card-date {
  display: block;
}

.new-entry-card-date .post-date {
  margin: 0;
  padding: 0;
  font-size: 13px;
  position: relative;
}

.new-entry-card-date .post-date::after {
  content: "";
  display: inline-block;
  background-color: #3B4043;
  width: 1px;
  height: 1em;
  margin: -0.5em 0 0 0.5em;
  position: absolute;
  top: 50%;
}

/* 更新日時は非表示 */
.body.page .new-entry-card-date .post-update {
  display: none;
}

.body.page .new-entry-card-content .card-title {
  width: 95%;
  margin-top: 8px;
  grid-row: 2;
  /* 省略せずに表示するサイズを指定 */
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.new-entry-card-content .cat-label {
  padding: 0 0 49px 88px;
  max-width: none;
  border: none;
  position: absolute;
  top: auto;
  left: calc(7% + 24px);
  bottom: 24px;
  z-index: 2;
  font-size: 13px;
  background: none;
  color: #3B4043;
}

.body.page .new-entry-card-content .cat-label::after {
  width: 5rem;
  height: 3px;
  display: block;
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
}

.new-entry-card-content .cat-label-3::after {
  background-color: #F98E3D;
}

.widget-entry-cards.card-large-image .cat-label-4::after {
  background-color: #006BE6;
}

.widget-entry-cards.card-large-image .cat-label-5::after {
  background-color: #057E1D;
}

.widget-entry-cards.card-large-image .cat-label-16::after {
  background-color: #5F1E91;
}

.body.page .morelist {
  margin: 0;
  text-align: center;
}


.body.page .about {
  width: 100vw;
  margin: 160px calc(50% - 50vw) 0;
  background: url(../../../wp-content/uploads/2022/11/IMG_7952.jpg) no-repeat center center;
  background-size: cover;
}

@media screen and (max-width:1023px) {
  .body.page .about {
    margin-top: 80px;
  }
}

.body.page .about-wrap {
  max-width: 1280px;
  margin: 0 auto;
}

@media screen and (max-width: 579px) {
  .body.page .about-wrap {
    padding: 0 5%;
  }
}

.body.page .about-inner {
  background-color: rgba(230, 0, 18, 0.85);
  width: 580px;
  padding: 80px;
  color: #FFFFFF;
}

@media screen and (max-width: 579px) {
  .body.page .about-inner {
    width: 100%;
    padding: 10% 5%;
  }
}

.body.page .about-tit2 {
  padding: 0;
  margin: 0;
  background: none;
  color: #FFFFFF;
  font-size: 26px;
  font-family: "Times New Roman",
    "游明朝",
    "Yu Mincho",
    "游明朝体",
    "YuMincho",
    "ヒラギノ明朝 Pro W3",
    "Hiragino Mincho Pro",
    "HiraMinProN-W3",
    "HGS明朝E",
    "ＭＳ Ｐ明朝",
    "MS PMincho",
    serif !important;
}

.body.page .about-txt {
  margin: 24px 0 0 0;
}

.body.page .about-txt a {
	color: #FFFFFF;
}

.body.page .about-list {
  padding: 0;
  margin: 0 -16px 0 0;
  display: flex;
  flex-wrap: wrap;
}

@media screen and (max-width: 462px) {
  .body.page .about-list {
    justify-content: center;
  }
}

.body.page .about-item {
  display: inline;
  margin: 24px 16px 0 0;
  list-style: none;
}

.body.page .about-item a {
  background-color: #FFFFFF;
  color: #E60012;
}










/************************************
** 組織図
************************************/
.article .organiz-def {
  position: relative;
  margin: 0;
}

.article .organiz-dtit,
.article .organiz-data {
  position: relative;
  width: 170px;
  padding: 10px 20px;
  color: #FFFFFF;
}


.article .organiz-dtit._one {
  background-color: #F98E3D;
}

.article .organiz-def._one::after,
.article .organiz-def._two::after {
  content: "";
  display: block;
  background-color: #CDD6DD;
  width: 2px;
  position: absolute;
  top: 0;
  left: 30px;
  z-index: -1;
}

.article .organiz-def._one::after {
  height: calc(100% - 89px);
}

.article .organiz-dtit._two::before,
.article .organiz-data._three::before {
  content: "";
  display: inline-block;
  background-color: #CDD6DD;
  width: 170px;
  height: 2px;
  position: absolute;
  top: 50%;
  left: -170px;
}

.article .organiz-def._two::after {
  height: calc(100% - 23px);
}

.article .organiz-data._one {
  height: initial;
  padding: 0;
  margin-left: 200px;
}

.article .organiz-dtit._two {
  margin-top: 32px;
  background-color: #009CDD;
}

.article .organiz-data._three {
  margin: 16px 0 0 200px;
  background-color: #00D3B0;
}

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

  .article .organiz-data._one,
  .article .organiz-data._three {
    margin-left: 70px;
  }

  .article .organiz-dtit._two::before,
  .article .organiz-data._three::before {
    width: 40px;
    left: -40px;
  }
}










/************************************
** 行事予定
************************************/
figure.wp-block-table .sche-table {
  width: 100%;
  background-color: #FFFFFF;
  border-collapse:separate;
  border-spacing: 2px;
}

figure.wp-block-table .sche-ttit {
  padding: 1em;
  background-color: rgba(230, 0, 18, 0.5);
  color: #ffffff;
  border:none;
}

figure.wp-block-table .sche-tdata {
  padding: 1em;
  vertical-align: top;
  border:none;
}

figure.wp-block-table .sche-tdata span {
  display: inline-block;
  margin-right: 1em;
}

figure.wp-block-table .sche-tdata._month {
  background-color: rgba(230, 0, 18, 0.3);
  white-space: nowrap;
  text-align: center;
  vertical-align: middle;
}

figure.wp-block-table .sche-tdata._setouchi {
  color: rgba(230, 0, 18, 0.5);
  font-weight: bold;
}

figure.wp-block-table .sche-table caption {
  color: rgba(230, 0, 18, 0.5);
  font-weight: bold;
  text-align:right;
}









/************************************
** 協賛募集
************************************/
figure.wp-block-table .sup-table {
  width: 100%;
  background-color: #FFFFFF;
}

figure.wp-block-table .sup-tr {
  background-color: initial;
}

figure.wp-block-table .sup-tr:nth-child(odd) td {
  background-color: rgba(230, 0, 18, .05);
}

@media screen and (max-width: 480px) {
  figure.wp-block-table .sup-table {
    border-bottom: 1px solid rgba(230, 0, 18, .5);
  }

  figure.wp-block-table .sup-ttit,
  figure.wp-block-table .sup-tdata {
    display: block;
    border-bottom: none;
  }

  figure.wp-block-table .sup-ttit {
    text-align: left;
  }

  figure.wp-block-table .sup-tr:nth-child(odd) td {
    background-color: initial;
  }
}


.article .sup {
  margin-top: 80px;
}

.article .sup-list {
  padding: 0;
  margin: 0 0 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 5%;
}

.article .sup-item {
  width: 30%;
  margin: 0 0 32px 0;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
}

@media screen and (max-width: 667px) {
  .article .sup-list {
    gap: 6%;
  }

  .article .sup-item {
    width: 47%;
    margin: 0 0 3% 0;
  }
}

.article .sup-item:hover {
  opacity: 0.7;
}








/************************************
** お店紹介
************************************/
.article .shop-def {
  padding: 1rem 1.5rem;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  -moz-column-gap: 1rem;
  column-gap: 1.5rem;
  background-color: #FFFFFF;
}

.article .shop-def+.shop-def {
  margin-top: 2.5rem;
}

.article .shop-dtit {
  font-weight: bold;
  font-size: 1.2rem;
}

.article .shop-data {
  margin: 0;
}

.article .shop-data._intro {
  width: 100%;
}

.article .shop-data._tel,
.article .shop-data._add,
.article .shop-data._access,
.article .shop-data._link {
  font-size: 0.9rem;
  padding-left: 0.5em;
}

.article .shop-data._tel::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f879";
  position: relative;
  left: -0.5em;
  color: #E60012;
}

.article .shop-data._add::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f3c5";
  position: relative;
  left: -0.5em;
  color: #E60012;
}

.article .shop-data._access::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f554";
  position: relative;
  left: -0.5em;
  color: #E60012;
}

.article .shop-data._link::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f35d";
  position: relative;
  left: -0.5em;
  color: #E60012;
}

.article .shop-data._blog {
  width: 100%;
  margin-left: auto;
  text-align: right;
  padding-left: 0.5em;
}

.article .shop-data._blog::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f15c";
  position: relative;
  left: -0.5em;
  color: #E60012;
}










/************************************
** 会長挨拶
************************************/
body.page-id-30 .wp-block-column img {
  width: 100%;
  max-width: 375px;
}


body.page-id-30 .wp-block-image .alignright {
  margin: 0;
}

@media screen and (max-width: 781px) {
  body.page-id-30 .wp-container-3 {
    flex-direction: column-reverse;
  }
}

body.page-id-30 .list-def {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid #3B4043;
  border-left: 1px solid #3B4043;
}

body.page-id-30 .list-dtit {
  padding: 0.5em;
  border-right: 1px solid #3B4043;
  border-bottom: 1px solid #3B4043;
}

body.page-id-30 ._head {
  background-color: rgba(230, 0, 18, .1);
  font-weight: bold;
  text-align: center;
}

body.page-id-30 ._head:not(:first-of-type) {
  display: none;
}

body.page-id-30 .list-data {
  padding: 0.5em;
  margin: 0;
  border-right: 1px solid #3B4043;
  border-bottom: 1px solid #3B4043;
}


@media screen and (min-width: 600px) {
  body.page-id-30 .list-def {
    grid-template-columns: repeat(2, 1fr 1fr);
  }

  body.page-id-30 ._head:nth-of-type(2) {
    display: block;
  }

  body.page-id-30 .list-dtit:not(._head):nth-of-type(2n+1),
  body.page-id-30 .list-data:not(._head):nth-of-type(2n+1) {
    background-color: rgba(230, 0, 18, .05);
  }
}

@media screen and (min-width: 900px) {
  body.page-id-30 .list-def {
    grid-template-columns: repeat(3, 20% 1fr);
  }

  body.page-id-30 ._head:nth-of-type(3) {
    display: block;
  }
}




/************************************
** 瀬戸内会とは
************************************/
.page-id-202 .entry-content {
  font-family: "Times New Roman",
    "游明朝",
    "Yu Mincho",
    "游明朝体",
    "YuMincho",
    "ヒラギノ明朝 Pro W3",
    "Hiragino Mincho Pro",
    "HiraMinProN-W3",
    "HGS明朝E",
    "ＭＳ Ｐ明朝",
    "MS PMincho",
    serif !important;
}

.page-id-202 .prologue {
  background: url(https://kansai-setouchi.com/wp-content/uploads/2022/12/96f06a2b5b2401cdd232ce030c99c5b1.gif) no-repeat right 0;
  height: 550px;
  background-size: contain;
  padding: 110px 0 0 0;
  font-size: 120%;
}

.page-id-202 .prologue h2 {
  font-size: 300%;
}


.page-id-202 .prologue P {
  width: 43%;
}


.page-id-202 .block {
  margin-top: 120px;
}

.page-id-202 .block>div {
  margin: 0;
}

.page-id-202 figure img {
  border-radius: 10px;
}

.odd .wp-block-media-text__content {
  padding-left: 2em;
}

.even .wp-block-media-text__content {
  padding-right: 2em;
}

.page-id-202 .block h3 {
  font-size: 300%;
}

.page-id-202 .block-photo {
  width: 90%;
}

.odd .block-photo {
  margin-right: 5% !important;
}

.even .block-photo {
  margin-left: 0 !important;
}

.page-id-202 .block-photo div:first-of-type {
  margin-top: 3% !important;
}

.page-id-202 .block-photo div:nth-of-type(2) {
  margin-top: 6% !important;
}

@media screen and (max-width:1024px) {
  .page-id-202 .prologue {
    background-position: 100%;
    height: 280px;
    padding: 40px 0 0 0;
    font-size: 100%;
  }

  .page-id-202 .prologue h2 {
    font-size: 6vw;
  }

  .page-id-202 .prologue P {
    width: 90%;
  }

  .page-id-202 .block {
    margin-top: 80px;
  }

  .page-id-202 .block h3 {
    font-size: 150%;
  }
}

@media screen and (max-width:600px) {
  .wp-block-media-text__content {
    margin-top: 1em;
  }

  .odd .wp-block-media-text__content {
    padding-left: 0;
  }

  .even .wp-block-media-text__content {
    padding-right: 0;
  }

  .wp-block-media-text .wp-block-media-text__content {
    padding: 0;
  }
}


/************************************
** 協賛一覧
************************************/
    .article ul.sponsor-list {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
        gap: 3vw;
        padding: 30px;
        background-color: #fff;		
    }

    .sponsor-item {
        list-style: none;
        text-align: center;
        transition: all 0.5s ease-in-out;
    }

    .sponsor-item:hover {
        opacity: 0.7;
    }

    .sponsor-item img {
        width: 100%;
        max-width: 300px;
    }





/************************************
** レスポンシブデザイン用のメディアクエリ
************************************/
/*1023px以下*/
@media screen and (max-width: 1023px) {
  /*必要ならばここにコードを書く*/
}

/*834px以下*/
@media screen and (max-width: 834px) {
  /*必要ならばここにコードを書く*/
}

/*480px以下*/
@media screen and (max-width: 480px) {
  /*必要ならばここにコードを書く*/
}