@charset "utf-8";



* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Yu Gothic", "YuGothic", "Hiragino Kaku Gothic ProN", sans-serif;
  color: #333;
  background: #fff!important;
  font-size: 18px;
  line-height: 1.7;
}

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

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none!important;
}
.wp-block-list,.wp-block-table,.wp-block-paragraph,.profile-block-box{
   
    margin: 40px 0;
}
/* ==========================================================================
   独自お問い合わせフォーム用スタイル（競合回避クラス）
   ========================================================================== */
.ts-hed_txt{
	margin: 40px 0 25px;
    font-size: 15px;
    border-bottom: 1px solid #d0d1d1;
    padding: 0 0 70px;
}
/* 全体コンテナ */
.ts-form-container {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
  font-family: sans-serif;
  box-sizing: border-box;
}

.ts-form-container *,
.ts-form-container *::before,
.ts-form-container *::after {
  box-sizing: border-box;
}

/* 行の基本設定 */
.ts-form-row {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 40px;
  align-items: center;
}
.ts-form-container .ts-form-row:nth-child(2){
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 20px;
  align-items: center;
}
/* テキストエリアとポリシー行は上揃え */
.ts-form-row-textarea,
.ts-form-row-policy {
  align-items: flex-start;
}

/* ラベルエリア（横幅25% / 必須マークとタイトルを横並びに固定） */
.ts-form-label {
  display: flex !important;
  align-items: center !important;
  flex-direction: row !important; /* 横並びを強制 */
  width: 25%;
  padding-right: 15px;
  box-sizing: border-box;
}

/* ラベル内のテキスト */
.ts-form-label label {
  display: inline-block !important; /* ブロック化を防ぐ */
  width: auto !important;           /* 横幅100%化を防ぐ */
  font-weight: bold;
  color: #333;
  font-size: 16px;
  margin: 0 !important;
  padding: 0 !important;
  white-space: nowrap;              /* タイトル自体の意図しない改行を防ぐ */
}

/* 必須マーク */
.ts-form-required {
  display: inline-block !important;
  background-color: #ff0000;
  color: #ffffff;
  font-size: 11px;
  font-weight: bold;
  padding: 3px 6px;
  border-radius: 3px;
  margin-right: 12px !important;  /* 右側のタイトルとの余白 */
  white-space: nowrap !important; /* 横に潰れるのを防ぐ */
  flex-shrink: 0 !important;      /* 縮むのを防ぐ */
}

/* 任意用のスペース（位置合わせ用） */
.ts-form-optional {
  display: inline-block !important;
  width: 37px; 
  margin-right: 12px !important;
  flex-shrink: 0 !important;
}

/* 入力エリア（横幅75%） */
.ts-form-field {
  width: 75%;
}

/* 注記（電話番号の上など） */
.ts-form-note {
  display: block;
  font-size: 13px;
  color: #333;
  margin-bottom: 6px;
}

/* CF7標準のレスポンシブなラッパー対策＆入力要素の共通設定 */
.ts-form-container .wpcf7-form-control-wrap {
  display: block;
  
}

.ts-form-container input[type="text"],
.ts-form-container input[type="email"],
.ts-form-container input[type="tel"],
.ts-form-container textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #707070;
  border-radius: 0; /* 画像に合わせた角丸なし設定 */
  font-size: 16px;
  background-color: #fff;
  transition: border-color 0.2s;
  -webkit-appearance: none;
}

.ts-form-container input:focus,
.ts-form-container textarea:focus {
  border-color: #f39c12;
  outline: none;
}

/* テキストエリアの高さ */
.ts-form-container textarea {
  height: 320px;
  resize: vertical;
}

/* プライバシーポリシーエリア */
.ts-form-policy-text {
  font-size: 15px;
  color: #333;
  margin: 0 0 12px 0;
  line-height: 1.6;
	    text-align: center;
}

.ts-form-policy-link {
  color: #ff0000;
  text-decoration: none;
  border-bottom: 1px solid #ff0000;
}

.ts-form-policy-link:hover {
  opacity: 0.8;
}

/* 同意チェックボックス */
.ts-form-privacy-checkbox {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: #333;
  margin-top: 15px;
}

.ts-form-privacy-checkbox input[type="checkbox"] {
  width: 20px;
  height: 20px;
  margin-right: 8px;
  cursor: pointer;
}

/* 送信ボタンのラッパー */
.ts-form-submit-wrap {
  text-align: center;
  margin-top: 40px;
}

/* 送信ボタン（グラデーション・右矢印付き） */
.ts-form-container .ts-form-submit-btn {
  position: relative;
  display: inline-block;
  width: 100%;
  max-width: 500px;
  padding: 18px 20px;
  font-size: 20px;
  font-weight: bold;
  color: #ffffff !important;
  border: none;
  background-image:url("../img/sousin_arrow.png"), linear-gradient(to bottom, #f3b141 0%, #ee9105 100%);
	background-position: right 10px center,center;
	background-repeat: no-repeat,no-repeat;
  border-radius: 10px;
  cursor: pointer;
  box-shadow: 0 4px 0 #d67f00;
  transition: transform 0.1s, box-shadow 0.1s;
  -webkit-appearance: none;
}

/* ボタンホバー時 */
.ts-form-container .ts-form-submit-btn:hover {
  opacity: 0.95;
}

/* ボタンクリック（擬似立体感を下げる） */
.ts-form-container .ts-form-submit-btn:active {
  transform: translateY(2px);
  box-shadow: 0 2px 0 #d67f00;
}

/* CF7のエラーメッセージ等の微調整 */
.ts-form-container .wpcf7-not-valid-tip {
  color: #ff0000;
  font-size: 14px;
  margin-top: 5px;
}

.ts-form-container .wpcf7-response-output {
  margin: 20px 0 0 0;
  padding: 15px;
  border-radius: 4px;
}

/* ==========================================================================
   レスポンシブ対応（スマホ・タブレット用：768px以下）
   ========================================================================== */
@media screen and (max-width: 768px) {
  .ts-form-row {
    flex-direction: column;
    align-items: flex-start;
    margin-bottom: 20px;
  }

  .ts-form-label {
    width: 100%;
    margin-bottom: 8px;
    padding-right: 0;
  }

  .ts-form-field {
    width: 100%;
  }

  .ts-form-container textarea {
    height: 200px; /* スマホ時は少し浅く */
  }

  .ts-form-privacy-checkbox {
    justify-content: flex-start; /* スマホ時は左寄せで見やすく */
  }

  .ts-form-container .ts-form-submit-btn {
    font-size: 18px;
    padding: 15px 20px;
  }
}
/*下半分のマーカー色（km）*/
.marker-under {
  background: linear-gradient(transparent 60%, #ff9 60%);
}
.has-ex-c-background-color {
    background-color: #eaf4fc !important;
}
table tr:nth-of-type(2n+1) {
    background-color: #fafbfc;
}
table tr:nth-child(even) {
    background: #f1f9fe;
}
.wp-block-table {
    overflow-x: auto
}

.wp-block-table table {
    border-collapse: collapse;
    width: 100%
}

.wp-block-table thead {
    border-bottom: 3px solid
}

.wp-block-table tfoot {
    border-top: 3px solid
}

.wp-block-table td,.wp-block-table th {
    border: 1px solid;
    padding: .5em
}

.wp-block-table .has-fixed-layout {
    table-layout: fixed;
    width: 100%
}

.wp-block-table .has-fixed-layout td,.wp-block-table .has-fixed-layout th {
    word-break: break-word
}

.wp-block-table.aligncenter,.wp-block-table.alignleft,.wp-block-table.alignright {
    display: table;
    width: auto
}

.wp-block-table.aligncenter td,.wp-block-table.aligncenter th,.wp-block-table.alignleft td,.wp-block-table.alignleft th,.wp-block-table.alignright td,.wp-block-table.alignright th {
    word-break: break-word
}

.wp-block-table .has-subtle-light-gray-background-color {
    background-color: #f3f4f5
}

.wp-block-table .has-subtle-pale-green-background-color {
    background-color: #e9fbe5
}

.wp-block-table .has-subtle-pale-blue-background-color {
    background-color: #e7f5fe
}

.wp-block-table .has-subtle-pale-pink-background-color {
    background-color: #fcf0ef
}

.wp-block-table.is-style-stripes {
    background-color: initial;
    border-collapse: inherit;
    border-spacing: 0
}

.wp-block-table.is-style-stripes tbody tr:nth-child(odd) {
    background-color: #f0f0f0
}

.wp-block-table.is-style-stripes.has-subtle-light-gray-background-color tbody tr:nth-child(odd) {
    background-color: #f3f4f5
}

.wp-block-table.is-style-stripes.has-subtle-pale-green-background-color tbody tr:nth-child(odd) {
    background-color: #e9fbe5
}

.wp-block-table.is-style-stripes.has-subtle-pale-blue-background-color tbody tr:nth-child(odd) {
    background-color: #e7f5fe
}

.wp-block-table.is-style-stripes.has-subtle-pale-pink-background-color tbody tr:nth-child(odd) {
    background-color: #fcf0ef
}

.wp-block-table.is-style-stripes td,.wp-block-table.is-style-stripes th {
    border-color: #0000
}

.wp-block-table.is-style-stripes {
    border-bottom: 1px solid #f0f0f0
}

.wp-block-table .has-border-color td,.wp-block-table .has-border-color th,.wp-block-table .has-border-color tr,.wp-block-table .has-border-color>* {
    border-color: inherit
}

.wp-block-table table[style*=border-top-color] tr:first-child,.wp-block-table table[style*=border-top-color] tr:first-child td,.wp-block-table table[style*=border-top-color] tr:first-child th,.wp-block-table table[style*=border-top-color]>*,.wp-block-table table[style*=border-top-color]>* td,.wp-block-table table[style*=border-top-color]>* th {
    border-top-color: inherit
}

.wp-block-table table[style*=border-top-color] tr:not(:first-child) {
    border-top-color: initial
}

.wp-block-table table[style*=border-right-color] td:last-child,.wp-block-table table[style*=border-right-color] th,.wp-block-table table[style*=border-right-color] tr,.wp-block-table table[style*=border-right-color]>* {
    border-right-color: inherit
}

.wp-block-table table[style*=border-bottom-color] tr:last-child,.wp-block-table table[style*=border-bottom-color] tr:last-child td,.wp-block-table table[style*=border-bottom-color] tr:last-child th,.wp-block-table table[style*=border-bottom-color]>*,.wp-block-table table[style*=border-bottom-color]>* td,.wp-block-table table[style*=border-bottom-color]>* th {
    border-bottom-color: inherit
}

.wp-block-table table[style*=border-bottom-color] tr:not(:last-child) {
    border-bottom-color: initial
}

.wp-block-table table[style*=border-left-color] td:first-child,.wp-block-table table[style*=border-left-color] th,.wp-block-table table[style*=border-left-color] tr,.wp-block-table table[style*=border-left-color]>* {
    border-left-color: inherit
}

.wp-block-table table[style*=border-style] td,.wp-block-table table[style*=border-style] th,.wp-block-table table[style*=border-style] tr,.wp-block-table table[style*=border-style]>* {
    border-style: inherit
}

.wp-block-table table[style*=border-width] td,.wp-block-table table[style*=border-width] th,.wp-block-table table[style*=border-width] tr,.wp-block-table table[style*=border-width]>* {
    border-style: inherit;
    border-width: inherit
}
.container {
  width: min(100% - 40px, 1080px);
  margin-inline: auto;
}


.page-numbers{
	border: 1px solid #000;
	padding: 8px 10px;
}
.prev,.next{
	border:none;
}
.text-orange {
  color: #f28c00;
}

.text-magenta {
  color: #d81b60;
}

.text-green {
  color: #2e9d45;
}

.text-underline {
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 4px;
}



.site-header {
  background: #bdeefe;
}

.site-header__bg {
  background-image: url("../img/header-bg.jpg");
  background-repeat: repeat-x;
  background-position: center top;
  background-size: auto 100%;
}

.site-header__logo {
  position: relative;
  z-index: 1;
  width: min(100% - 40px, 1080px);
  margin: 0 auto;
}

.site-header__logo a,
.site-header__logo picture {
  display: block;
  width: 100%;
}

.site-header__logo img {
  display: block;
  width: 100%;
  height: auto;
}

.global-nav {
  position: relative;
  z-index: 2;
  margin-top: -12px;
  padding-bottom: 8px;
}

.global-nav__inner {
  width: min(100% - 80px, 1040px);
  margin-inline: auto;
}

.global-nav__list {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
}

.global-nav__list a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  color: #fff;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid #fff;
  border-radius: 2px 2px 0 0;
}

.global-nav__list li:nth-child(1) a { background: #c98ed4; }
.global-nav__list li:nth-child(2) a { background: #b65bb8; }
.global-nav__list li:nth-child(3) a { background: #f3b31a; }
.global-nav__list li:nth-child(4) a { background: #f08b26; }
.global-nav__list li:nth-child(5) a { background: #54c7b5; }
.global-nav__list li:nth-child(6) a { background: #67a6df; }

.global-nav__list li:nth-child(1) a:hover { background: #cda7d4; }
.global-nav__list li:nth-child(2) a:hover { background: #b777b8; }
.global-nav__list li:nth-child(3) a:hover { background: #f2c24f; }
.global-nav__list li:nth-child(4) a:hover { background: #eea051; }
.global-nav__list li:nth-child(5) a:hover { background: #80c9be; }
.global-nav__list li:nth-child(6) a:hover { background: #94badd; }

.top-banners {
  padding: 28px 0 36px;
}

.top-banners__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.top-banners__grid a {
  display: block;
  border: 1px solid #bbb;
  background: #fff;
}

.top-banners__grid a:hover {
 opacity: 0.8;
}

.notice {
  padding-bottom: 40px;
}

.notice__box {
  
  background: #fff;
}

.notice__head {
  display: flex;
  align-items: center;
  justify-content: space-between;

	    position: relative;
}
.top-name-blk{

	color: #000;
    font-size: 15px;
    text-align: right;
    margin-left: auto;
    display: block;
}
.notice-wrapper {
  position: relative;
  z-index: 1;
}
.shadow{
	position: absolute;
}


.notice-wrapper::after {
  content: "";
    position: absolute;
    z-index: -1;
    bottom: 10px;
    width: 92%;
    height: 10px;
    box-shadow: 0 12px 4px rgba(0, 0, 0, 0.4);
}





.notice-wrapper::after {
  right: 6px;
  transform: rotate(3deg);
}
.notice__head h2 {
  width: 140px;
  margin: 0;
  padding: 8px 20px;
  background: #b9a6d8;
  color: #fff;
  font-size: 14px;
text-align: center;
}

.notice__head a {
  padding-right: 24px;
  font-size: 12px;
  font-weight: 700;
	margin: 0 0 0 auto;
}

.notice__list {
  padding: 38px 28px 16px 78px;
	border: 1px solid #efeeed;
}

.notice__list li {
  display: grid;
/*  grid-template-columns: 120px 140px 1fr;*/
  gap: 16px;
  padding: 5px 0;
  border-bottom: 1px dotted #bbb;
  font-size: 13px;
	grid-template-columns: 140px 1fr 1.5fr;
  column-gap: 20px;
  align-items: center;
}

.notice__list time,
.notice__list strong {
  font-weight: 700;
}



.section-title--image {
  margin: 0 0 26px;
  text-align: center;
}

.section-title--image::after {
  display: none;
}

.section-title--image img {
  display: block;
  width: min(100%, 320px);
  height: auto;
  margin-inline: auto;
}



.article-area {
  padding: 36px 0 44px;
}
.article-area--new {
  background-image: url("../img/article-new-bg.png");
  background-repeat: no-repeat;
  background-position: center center;
  background-size: contain;
}

.article-area--popular {
  background-image: url("../img/article-popular-bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: auto;
}


.article-block + .article-block {
  margin-top: 42px;
}

.article-block__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 8px;
  margin-bottom: 14px;
  border-bottom: 1px solid #999;
}

.article-block__title {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0;
  font-size: 15px;
  font-weight: 700;
}

.article-block__icon {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
}

.article-block__more {
  display: block;
  width: 126px;
  padding: 0;
  background: none;
  border-radius: 0;
}
.article-block__more:hover {
  opacity: 0.8;
}
.article-block__more img {
  display: block;
  width: 100%;
  height: auto;
}

.article-row {
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 18px;
}

.slider-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  padding: 0;
  border: none;
  background: transparent;
  cursor: pointer;
}

.slider-arrow img {
  display: block;
  width: 100%;
  height: auto;
}

.article-cards {
  display: flex;
  gap: 18px;
 /* overflow: hidden;*/
}

.article-card {
  flex: 0 0 calc((100% - 54px) / 4);
}

.article-card a {
  display: block;
}

.article-card img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.article-card p {
  margin: 6px 0 0;
  font-size: 12px;
  line-height: 1.45;
}



.contact-area {
  margin-top: 38px;
  text-align: center;
}

.contact-area--bottom {
  margin: 48px 0 64px;
}

.button-contact {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: min(100%, 520px);
  height: 56px;
  padding: 0 56px;
  background: linear-gradient(90deg, #ff8a00 0%, #ffc400 100%);
  color: #fff;
  font-size: 18px;
  font-weight: 700;
  border-radius: 8px;
		transition-duration: 0.2s;
}
.button-contact:hover{
	transform: scale(1.05);
	color: #fff;
}
.button-contact__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
}

.button-contact__icon img {
  display: block;
  width: 24px;
  height: auto;
}

.button-contact__text {
  line-height: 19px !important;
}

.button-contact__arrow {
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 28px;
  line-height: 1;
}



.info-section {
  padding: 56px 0 36px;
}

.info-section__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  align-items: stretch;
}

.info-box {
  background: #fff;
  border: 1px solid #ddd;
  overflow: hidden;
}

.info-box--site,
.info-box--operator,
.info-box--books,
.info-section__left-bottom,
.info-box--bana,
.info-box--book
{
 aspect-ratio: 4.6 / 4;
}

.info-box--site,
.info-box--operator,
.info-box--bana,
.info-box--book
{
  position: relative;
}

.info-box--site {
  grid-column: 1;
  grid-row: 1;
  background: url("../img/info-bg01.png") no-repeat center / cover;
}

.info-box--operator {
  grid-column: 2;
  grid-row: 1;
  background: url("../img/info-bg02.png") no-repeat center / cover;
}
.info-box--bana{
	 grid-column: 1;
  grid-row: 2;
    background: #fff;
    border: none !important;
  
}
.info-box a:hover{
	opacity: 0.8;
}
.info-box--bana img:first-child{
	margin: 0 0 36px;
   
}
.info-box--bana img{
	width: 100%;
;
   
}
.info-box--book {
  grid-column: 2;
  grid-row: 2;

}
.info-box__title {
  position: relative;
  margin: 0;
  padding: 7px 16px 7px 22px;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  line-height: 1.4;
}

.info-box__title::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 7px;
  width: 4px;
  height: calc(100% - 14px);
  background: #e44b4b;
}

.info-box__title--orange {
  background: linear-gradient(90deg, #f39a16 0%, #f8c85a 100%);
}

.info-box__title--green {
  background: linear-gradient(90deg, #3eb66f 0%, #b9e95c 100%);
}

.info-box__title--pink {
  background: linear-gradient(90deg, #f58aa8 0%, #f6b35a 100%);
}

.info-box__body {
  padding: 18px;
}

.info-box__body--panel {
  position: absolute;
  left: 10px;
  right: 10px;
  top: calc(38px + 10px);
  bottom: 10px;
  padding: 16px 18px;
  background: rgba(255, 255, 255, 0.82);
  font-size: 13px;
  line-height: 1.75;
  overflow: hidden;
}
.info-box--book .info-box__body--panel {
    position: absolute;
    left: 0;
    right: 0;
    top: calc(38px + 13px);
    bottom: 0px;
    padding: 0;
    background: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    line-height: 1.75;
    overflow: hidden;
}
.info-box__body-title {
  margin: 0 0 12px;
  font-size: 17px;
  font-weight: 800;
  line-height: 1.6;
  text-align: center;
}
.info-box__body-title02 {
  
  text-align:right;
}
.info-box__body--panel p {
  margin: 0;
  font-weight: 600;
}

.info-box__body--panel p + p {
  margin-top: 1em;
}

.info-box__corner-img {
  position: absolute;
  right: 12px;
  bottom: 4px;
  z-index: 3;
  height: 1.1em;
  width: auto;
}

.info-box__operator-book {
  float: left;
  width: 115px;
  height: auto;
  margin: 0 14px 8px 0;
}

.info-box__operator-illust {
  position: absolute;
  right: 12px;
  bottom: 4px;
  z-index: 5;
  width: 160px;
  height: auto;
  pointer-events: none;
}

.info-section__left-bottom {
  grid-column: 1;
  grid-row: 2;
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 28px;
}

.info-box--ad-small,
.info-box--ad-wide {
  min-height: 0;
  overflow: hidden;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.info-box--ad-small {
  background-image: url("../img/info-bg03.png");
}

.info-box--ad-wide {
  background-image: url("../img/info-bg04.png");
}

.info-box--books {
  grid-column: 2;
  grid-row: 2;
  background: url("../img/info-bg05.png") no-repeat center / 100% 100%;
}



.special-section {
  padding: 36px 0 48px;
}

.special-box {
  position: relative;
  border: 1px solid #2d9de0;
  background: #fff;
  padding: 26px 24px 22px;
}

.special-box__title {
  position: absolute;
  left: -1px;
  top: 0;
  transform: translateY(-100%);
  min-width: 190px;
  margin: 0;
  padding: 6px 24px;
  background: #168eea;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  text-align: center;
  border-radius: 4px 4px 0 0;
}

.special-box__body {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  align-items: center;
}
.special-card:hover {
  opacity: 0.8;
}
.special-card {
  display: block;
}

.special-card img {
  display: block;
  width: 100%;
  height: auto;
}

.special-contact {
  margin-top: 56px;
  text-align: center;
}



.site-footer {
  padding-top: 88px;
  background: #fff;
}

.site-footer__body {
  position: relative;
  background: #c9f4ff;
  padding: 52px 0 28px;
}

.site-footer__logo-area {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -50%);
  width: 260px;
  height: 68px;
  background: #fff;
  border-radius: 0 0 18px 18px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.site-footer__logo-area img {
  display: block;
  width: 188px;
  height: 44px;
  object-fit: contain;
}

.site-footer__inner {
  text-align: center;
}

.footer-nav {
  margin: 0 auto 28px;
  text-align: center;
}

.footer-nav__row {
  display: flex;
  justify-content: center;
  gap: 28px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 14px;
}

.footer-nav__row + .footer-nav__row {
  margin-top: 10px;
}

.footer-nav__row a {
  color: #555;
  text-decoration: none;
  white-space: nowrap;
}
.footer-nav__row a:hover {
  color: #fcb106;
 
}

.footer-banners {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 20px;
	flex-wrap: wrap;
}
.footer-banners a:hover {
 opacity: 0.8;
}
.footer-banners img {
  display: block;
  width: 180px;
  height: auto;
}

.site-footer__copy {
  display: block;
  color: #555;
  font-size: 14px;
}



@media (max-width: 900px) {
  .global-nav__list {
    grid-template-columns: repeat(3, 1fr);
  }

  .top-banners__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }

  .article-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .info-section__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
	.info-section__grid {
    grid-template-columns: 1fr;
  }
  .info-box--site,
  .info-box--operator,
  .info-box--books,
  .info-section__left-bottom {
    grid-column: auto;
    grid-row: auto;
  }

  .info-section__left-bottom {
    grid-template-rows: auto;
  }

  .info-box--ad-small,
  .info-box--ad-wide {
    aspect-ratio: 578 / 204;
  }

  .special-box {
    padding: 28px 16px 18px;
  }

  .special-box__body {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .special-box__title {
    min-width: 160px;
    font-size: 13px;
  }

  .special-contact {
    margin-top: 36px;
  }

  .button-contact {
    height: 52px;
    font-size: 16px;
  }

  .site-footer {
    padding-top: 64px;
  }

  .site-footer__body {
    padding: 32px 0 24px;
  }

  .site-footer__logo-area {
    width: 220px;
    height: 60px;
  }

  .site-footer__logo-area img {
    width: 188px;
    height: 44px;
  }

  .footer-nav__row {
    flex-direction: column;
    gap: 8px;
  }

  .footer-banners {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  .footer-banners img {
    width: 220px;
  }
}







.arc-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
    display: flex;
    gap: 40px;
    font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
    color: #333;
    box-sizing: border-box;
}

.arc-container * {
    box-sizing: border-box;
	
}
.arc-btn-container02{
	    display: flex !important;
    margin: 40px 0 !important;
	    justify-content: center;
}

.no_cat_post{
	margin: 0 0 90px;
}
.wp-block-list{
	list-style-type: disc !important;
}

.arc-main-content {
    flex: 1;
    max-width: 75%;
	margin: 53px 0 0 0;
}

.arc-sidebar {
    width: 25%;
    min-width: 280px;
}




.arc-heading-primary {
    background: linear-gradient(to right, #73d7ed, #99f3d3);
    color: #1a4d40;
    text-align: center;
    padding: 15px;
    font-size: 1.5rem;
    font-weight: bold;
    margin-top: 0;
    margin-bottom: 30px;
    border-radius: 4px;
}
.arc-bg-special {
    background-color: #a3f7e2; 
    color: #1a4d40;
}


.arc-heading-secondary {
    font-size: 1rem;
    border-bottom: 2px solid #ccc;
    padding-bottom: 8px;
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.arc-category-section .arc-heading-secondary::before {
  content: ""; 
  display: inline-block;
	  background-image: url("../img/icon-worker.png");
  width: 32px;
  height: 25px;
  background-repeat: no-repeat;
  background-size: cover;
  vertical-align: middle; 
  margin-right: 8px;      
}


.arc-category-section:nth-of-type(1) .arc-heading-secondary::before {
  background-image: url("../img/icon-worker.png");
	width: 32px;
}


.arc-category-section:nth-of-type(2) .arc-heading-secondary::before {
  background-image: url("../img/icon-worker.png");
	width: 32px;
	
}


.arc-category-section:nth-of-type(3) .arc-heading-secondary::before {
 background-image: url("../img/icon-worker.png");
	width: 32px;
}
.arc-category-section:nth-of-type(4) .arc-heading-secondary::before {
  background-image: url("../img/icon-worker.png");
	width: 32px;

}

.arc-heading-primary {
    position: relative;       
    background-color: #3399cc; 
    color: #55654c;
    padding: 15px 20px;
    font-size: 1.5rem;
    
      
    border-radius: 4px;
    margin-bottom: 30px;
    
    text-align: left;
    padding-left: 20px;
    padding-right: 20px;
}


.arc-heading-ico {
    position: absolute;
    
    
    left: 15px;       
    
    
    top: -60px;       
    width: 100px;      
    height: auto;
    z-index: 2;       
    pointer-events: none; 
}


.arc-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 20px;
}


.arc-card-link {
    text-decoration: none;
    color: inherit;
    display: block;
    transition: opacity 0.2s;
}
.arc-card-link:hover {
    opacity: 0.8;
}

.arc-card-thumbnail {
    width: 100%;
    aspect-ratio: 18 / 10;
    background-color: #eee;
    overflow: hidden;
    border-radius: 4px;
    border: 1px solid #e0e0e0;
}
.arc-card-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.arc-card-title {
    font-size: 0.85rem;
    line-height: 1.4;
    margin: 8px 0 0 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}


.arc-btn-container {
    text-align: center;
    margin-bottom: 40px;
}

.arc-btn-more {
    display: inline-block;
    border: 1px solid #ccc;
        padding: 8px 85px;
    border-radius: 6px;
    text-decoration: none;
    color: #333;
    font-size: 0.9rem;
    transition: background-color 0.2s;
	background-image: url("../img/ichiran_arrow.png");
	background-repeat: no-repeat;
	background-position: right 10px center;

}
.arc-btn-more:hover {
    background-color: #f5f5f5;
}



.arc-bg-special {
    background-color: #e65555; 
}


.arc-heading-ico-special {
    position: absolute;
    left: 15px;
    top: -60px;
    width: 125px;
    height: auto;
    z-index: 2;
    pointer-events: none;
}
.arc-special-content {
    margin-top: 50px;
}
.arc-special-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    margin-bottom: 40px;
	border: 1px solid #4ccdf7;
	padding: 40px 14px;
	background: #dbf5fd;
}
.arc-special-banner img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.2s;
}
.arc-special-banner img:hover {
    transform: translateY(-2px);
}


.arc-contact-container {
    text-align: center;
    margin: 40px 0;
}
.arc-btn-contact {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background-color: #ffaa00;
    color: #fff;
    font-weight: bold;
    font-size: 1.2rem;
    text-decoration: none;
    width: 100%;
    max-width: 500px;
    padding: 15px;
    border-radius: 30px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    transition: background-color 0.2s;
}
.arc-btn-contact:hover {
    background-color: #e69900;
}





.arc-search-box {
    margin-bottom: 30px;
}


.arc-search-input-wrapper {
    position: relative;
    width: 100%;
    display: flex;
    align-items: center;
}


.arc-search-field {
    width: 100%;
    padding: 10px 45px 10px 12px; 
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 0.9rem;
    color: #333;
    outline: none;
    background-color: #fff;
    height: 42px; 
    box-sizing: border-box;
}


.arc-search-field::placeholder {
    color: #999;
}


.arc-search-submit {
    position: absolute;
    right: 5px; 
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    padding: 8px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    outline: none;
}


.arc-search-submit:hover svg {
    stroke: #666;
}




.arc-sidebar-section {
    margin-bottom: 35px;
    background: none;
    box-shadow: none;
}



.arc-sidebar-heading {
    position: relative;
    color: #fff;
        padding: 12px 15px 12px 49px;
    font-size: 1.1rem;
    font-weight: bold;
    margin: 0 0 18px 0;
    padding-right: 50px; 
    
    
    background: none; 
    z-index: 1; 
}


.arc-sidebar-heading::before {
    content: "";
        position: absolute;
    top: 6px;
    left: 8px;
    width: 96%;
    height: 93%;
    background-color: rgba(0, 0, 0, 0.3);
    border-radius: 2px;
    filter: blur(3px);
    z-index: -2;
    transform: rotate(2deg) translateY(2px);
    transform-origin: center center;
	
}


.arc-sidebar-heading::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 2px;
        display: flex;
    align-items: end;
    padding: 0 0 0 10px;
    
    box-sizing: border-box;
    
    z-index: -1; 
	color:#fc2246;
	    font-size: 2vw;

	
}




.arc-side-bg-orange::after { background: url("../img/side_border.png"),url("../img/side_sinchaku_ico.png"),linear-gradient(to right, #fcb106, #fdda70);background-repeat: no-repeat,no-repeat,no-repeat;background-position: left 24px center,bottom 5px right 5px,center; }
.arc-side-bg-blue::after   { background: url("../img/side_border.png"),url("../img/side_ninki_ico.png"),linear-gradient(to right, #3abd9b, #72cefa);background-repeat: no-repeat,no-repeat,no-repeat;background-position: left 24px center,bottom 5px right 5px,center;  }
.arc-side-bg-pink::after   { background: url("../img/side_border.png"),url("../img/side_cat_ico.png"),linear-gradient(to right, #f79edc, #f8f4a6);background-repeat: no-repeat,no-repeat,no-repeat;background-position: left 24px center,bottom 5px right 5px,center; }





.arc-sidebar-list {
    padding: 0;
}


.arc-sidebar-item {
    display: flex;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    padding: 10px 0;
    /*border-bottom: 1px dashed #ddd;*/
    transition: opacity 0.2s;
}
.arc-sidebar-item:hover {
    opacity: 0.8;
}

.arc-sidebar-thumb {
    width: 75px;
    height: 57px;
    flex-shrink: 0;
    background-color: #eee;
    border-radius: 2px;
   /* overflow: hidden;*/
}
.arc-sidebar-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.arc-sidebar-title {
    margin: 0;
    font-size: 0.85rem;
    line-height: 1.45;
    color: #333;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}




.arc-category-dropdown {
    padding: 15px 0;
    position: relative;
    width: 100%;
}



.arc-select-box {
    width: 100%;
    padding: 10px 35px 10px 12px;
    
    
    border: 1px solid #fc6bd1; 
    
    border-radius: 4px;
    background-color: #fff;
    font-size: 0.9rem;
    color: #333;
    cursor: pointer;
    height: 52px;
    outline: none;

    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}


.arc-select-box:hover {
    border-color: #fc6bd1;
    box-shadow: 0 0 4px rgba(252, 107, 209, 0.3); 
}


.arc-select-box:focus {
    border-color: #fc6bd1;
}


.arc-category-dropdown::after {
    content: "";
    font-size: 0.7rem;
    color: #2e2e2e; 
    position: absolute;
    right: 27px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
	background: url("../img/cat_arrow.png");
	background-repeat: no-repeat;
	width: 18px;
	height: 8px;
}


.arc-select-box:hover {
    border-color: #999;

}


.arc-profile-box {
   
        padding: 16px;
    border-radius: 8px;
    background-color: #fff;
    text-align: center;
}
.arc-profile-badge {
    background: linear-gradient(to right, #98cd1d, #fcbe00);
    color: #fff;
    display: block;
    padding: 10px 30px;
    border-radius: 20px;
    font-weight: bold;
    margin-bottom: 20px;
}
.arc-profile-avatar {
    width: 210px;
    height: 167px;
    margin: 0 auto 15px auto;
    
    overflow: hidden;
}
.arc-profile-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.arc-profile-text {
    text-align: left;
}
.arc-profile-lead {
    font-weight: bold;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 15px;
    border-bottom: 1px solid #ddd;
    padding-bottom: 10px;
}
.arc-profile-desc {
    font-size: 0.8rem;
    line-height: 1.6;
    margin-bottom: 12px;
}




.arc-post-content h2,
.arc-page-content h2 {
    display: flex;
    flex-direction: column;   
    align-items: flex-start;  
    margin: 40px 0 20px;
    padding: 0;
    background: none !important;
    border: none !important;
    
    
    border-bottom: 4px solid #5ecde8 !important; 
}


.arc-post-content h2 span,
.arc-page-content h2 span {
    
  background: linear-gradient(150deg, #4caf50 0px, #4caf50 60px, #ffb300 50px, #ffb300 100%);
  
  
  color: white;
  
  
  
 padding: 10px 47px 10px 25px;
  
  
  display: inline-block;
  
    clip-path: polygon(0 0, calc(100% - 40px) 0, 100% 100%, 0 100%);
}
.arc-post-content h3,
.arc-page-content h3 {
    position: relative;
  padding-left: 15px; 
	border-bottom: 1px solid #c7eff8;
}
.arc-post-content h3::before,
.arc-page-content h3::before {
    content: "";
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 8px; 
  background: linear-gradient(
    to bottom,
    #f7b423 0%,      
    #f7b423 50%,
    #70d626 50%,      
    #70d626 100%
  );
}

@media (max-width: 600px) {
  body {
    font-size: 13px;
  }

  .container {
    width: min(100% - 24px, 1080px);
  }

  .site-header {
    background: #fff;
  }

  .site-header__bg {
    background: none;
  }

  .site-header__logo {
    width: 100%;
    margin: 0;
    background-image: url("../img/header-bg.jpg");
    background-repeat: repeat-x;
    background-position: center bottom;
    background-size: auto 100%;
  }

  .site-header__logo a,
  .site-header__logo picture,
  .site-header__logo img {
    display: block;
    width: 100%;
  }

  .site-header__logo img {
    height: auto;
    margin-inline: auto;
  }

  .global-nav {
    margin-top: 20px;
    padding-bottom: 0;
    background: #fff;
  }

  .global-nav__inner {
    width: min(100% - 40px, 1040px);
  }

  .global-nav__list {
    grid-template-columns: repeat(2, 1fr);
	      padding-left: 0;
  }

  .global-nav__list a {
    min-height: 34px;
    font-size: 11px;
  }

  .top-banners {
    padding: 20px 0 28px;
  }

  .top-banners__grid {
    grid-template-columns: 1fr;
  }

  .top-banners__grid a {
    aspect-ratio: 268 / 127;
    overflow: hidden;
  }

  .top-banners__grid img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .notice__head {
    display: block;
  }

  .notice__head h2 {
    width: 100%;
  }

  .notice__head a {
    display: block;
    padding: 8px 16px;
    text-align: right;
  }

  .notice__list {
    padding: 10px 16px;
  }

  .notice__list li {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .section-title {
    font-size: 20px;
  }

  .article-row {
    display: block;
  }

  .slider-arrow {
    display: none;
  }

  .article-cards {
    display: flex;
    gap: 12px;
   /* overflow-x: auto;
    overflow-y: hidden;*/
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    max-width: 100%;
  }

  .article-card {
    flex: 0 0 calc((100% - 12px) / 2);
    min-width: calc((100% - 12px) / 2);
    scroll-snap-align: start;
  }

  .article-cards::-webkit-scrollbar {
    display: none;
  }

  .article-block__head {
    align-items: center;
    gap: 10px;
  }

  .article-block__more {
    width: 110px;
  }

  .button-contact {
    width: calc(100% - 40px);
    margin-inline: auto;
    font-size: 16px;
  }

  .info-box__body--panel {
    padding: 10px 12px;
    font-size: 10px;
    line-height: 1.45;
  }

  .info-box__body-title {
    margin-bottom: 8px;
    font-size: 12px;
    font-weight: 800;
    line-height: 1.4;
  }

  .info-box__body--panel p {
    font-size: 10px;
    line-height: 1.45;
  }

  .info-box__operator-illust {
    width: 100px;
  }

  .footer-nav {
    margin-top: 20px;
  }
  
  .article-area--new {
    background-repeat: repeat-y;
    background-position: center top;
    background-size: 100% auto;
  }
	.arc-heading-ico {
  
    top: -66px;       
    width: 111px;
}
	.arc-heading-ico-special {
   
    top: -47px;
   width: 111px;
}
}

.youtube-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px 20px;
    margin-bottom: 50px;
}

.youtube-item {
    background: #fff;
}


.youtube-video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; 
    background: #000;
    border-radius: 4px;
    overflow: hidden;
}


.youtube-iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}


.youtube-title {
    margin-top: 12px;
    font-size: 0.95rem;
    color: #333;
    font-weight: normal;
    line-height: 1.4;
}


.youtube-pagination {
    margin: 40px 0;
    text-align: left;
}
.youtube-pagination ul {
    display: inline-flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 8px;
}
.youtube-pagination li a,
.youtube-pagination li span {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border: 1px solid #333;
    color: #333;
    text-decoration: none;
    font-size: 0.95rem;
    border-radius: 4px;
    background: #fff;
    transition: all 0.2s;
}
.youtube-pagination li span.current {
    background: #333;
    color: #fff;
    border-color: #333;
}
.youtube-pagination li a:hover {
    background: #f5f5f5;
}


@media (max-width: 960px) {
    .youtube-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
    .youtube-grid { grid-template-columns: 1fr; }
}



.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); 
    gap: 40px 30px;
    margin-bottom: 50px;
}

.gallery-item {
    background: #fff;
}

.gallery-link {
    text-decoration: none;
    display: block;
}


.gallery-thumbnail-wrapper {
    position: relative;
    width: 100%;
    height: auto;          
    background: none;      
    border-radius: 4px;
    overflow: hidden;
}


.gallery-thumbnail {
    position: static;      
    transform: none;       
    width: 100%;           
    height: auto;          
    display: block;
    object-fit: contain;   
    transition: transform 0.3s ease;
}


.gallery-link:hover .gallery-thumbnail {
    transform: scale(1.04); 
}


.gallery-title {
    margin-top: 14px;
    font-size: 1.05rem;
    color: #333;
    font-weight: normal;
    line-height: 1.4;
}
/* 1. 一番外側のラッパーで、はみ出たスライドを綺麗にマスクする */
.article-cards-wrapperov {
  position: relative !important;
  
  padding: 0 10px; /* 必要に応じて全体の左右に少しゆとりを持たせる */
}

/* 2. Swiperコンテナ本体の横幅を少し縮めて、左右に矢印が置ける「専用の道」を作る */
.article-cards-wrapper.swiper {
      overflow: hidden !important;
  position: relative !important;
  display: block !important;
  /* 左右に50pxずつ（計100px）のマージンを開けて中央に配置 */
  margin: 0 auto !important;
  width: calc(100% - 100px) !important; 
  max-width: calc(1080px - 100px) !important; /* コンテナの最大幅に合わせる */
}

/* 3. 矢印ボタンを縮めたスライダーの「さらに外側」に絶対配置する */
.article-cards-wrapperov .slider-arrow {
  position: absolute !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  z-index: 10 !important;
  cursor: pointer !important;
  background: none !important;
  border: none !important;
  margin: 0 !important;
}

/* スライダーの枠の外側（マイナス方向）に配置して被りを完全に防ぐ */
.article-cards-wrapperov .slider-arrow--prev { 
  left: 0 !important; 
}
.article-cards-wrapperov .slider-arrow--next { 
  right: 0 !important; 
}
.article-cards.swiper-wrapper .article-card.swiper-slide {
  margin-right: 0 !important; /* Swiperの自動インラインスタイルを強制無効化 */
	padding: 0 6px;
}

@media (max-width: 560px) {
    .gallery-grid { 
        grid-template-columns: 1fr;
        gap: 30px 0;
    }
}

@media (max-width: 768px) {
    .arc-container {
        flex-direction: column;
        gap: 40px;
        padding: 15px;
    }

    .arc-main-content {
        max-width: 100%;
    }

    .arc-sidebar {
        width: 100%;
    }

    
    .arc-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    
    .arc-special-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    
    .arc-card-grid {
      
		grid-template-columns: repeat(2, 1fr);
    }
    .arc-special-grid {
        grid-template-columns: 1fr;
    }
	.article-cards-wrapper.swiper {
    
    width: 100% !important;
    max-width: 100% !important;
}
	.article-cards-wrapperov {
   
    padding: 0;
}
}
/* スマホ（900px以下）でinfo-section__gridを強制的に1列にする */
@media screen and (max-width: 900px) {
  .info-section__grid {
    display: grid !important;
    grid-template-columns: 1fr !important; /* 1列に固定 */
    gap: 20px !important;                 /* 余白を調整 */
  }

  /* 追加された要素も含めて、グリッドの配置をリセットする */
  .info-box {
    grid-column: auto !important;
    grid-row: auto !important;
  }
}
.pagination {

justify-content: unset!important;

}
.page-numbers {
   display:inline-flex!important;
	justify-content: center!important;
	align-items: center!important;
}
.prev, .next{
	border: none!important;
}
/* 日付要素のスタイル設定 */
.arc-card-date {
    display: block;
    margin-top: 5px;
    font-size: 0.85rem;
    color: #666;
	    text-align: end;
}

/* 日付の前に Font Awesome アイコンを表示 */
.arc-card-date::before {
    content: "\f017"; /* 時計アイコンの文字コード */
    font-family: "Font Awesome 5 Free", "Font Awesome 6 Free"; /* お使いのバージョンに合わせて調整 */
    font-weight: 900; /* Solidスタイルの場合は必須 */
    margin-right: 5px; /* アイコンと日付の間の余白 */
    color: #888; /* アイコンの色（お好みで変更してください） */
}