@charset "UTF-8";
/*
    Template: swell
    Theme Name: SWELL CHILD
    Theme URI: https://swell-theme.com/
    Description: SWELLの子テーマ
    Version: 1.0.0
    Author: LOOS WEB STUDIO
    Author URI: https://loos-web-studio.com/

    License: GNU General Public License
    License URI: http://www.gnu.org/licenses/gpl.html
*/



/*
追加ＣＳＳに記載せず、こちらにＣＳＳを記載する
*/

/*googleフォントを使っているので、最初にgoogleフォントを読み込むようにする*/
@import url('https://fonts.googleapis.com/css2?family=Kosugi+Maru&display=swap');


/*************************************/
/*************************************/
/**********↓↓↓共 通↓↓↓*********/
/*************************************/
/*************************************/


/*************************************/
/***↓↓ナビゲーションメニュー↓↓****/
/*************************************/

/***↓ナビカラーアイコン基本設定↓****/

/* 共通設定：ナビゲーションアイコンの基本サイズ */
.c-gnav .menu-icon,
.drawer-menu .menu-icon {
  width: 45px;
  height: auto;
  vertical-align: middle;
}

/* 共通設定：ナビゲーションアイコン下のフォントファミリー */
.c-gnav .menu-text,
.drawer-menu .menu-text {
	/*font-family: 'Kosugi Maru';*//*googleフォントを使う*/
	color: #8a5916;
	font-weight: bold;
}



/* ===== PC表示：縦並び（アイコン上、文字下）↓===== */
@media screen and (min-width: 768px) {
  .c-gnav .menu-item a .ttl {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
		padding: 2px 0 2px 0;
  }

  .c-gnav .menu-item a .menu-icon {
    margin-bottom: 4px;
  }
	/*アイコン上下の余白*/
	
}
/* ===== PC表示：縦並び（アイコン上、文字下）↑===== */

/* =====●スマホ表示：横並び（アイコン左、文字右）↓===== */
@media screen and (max-width: 767px) {
  /* スマホメニュー内のリスト横並び対応 */
  #sp_menu .c-spnav .menu-item a .ttl {
    display: flex;
    align-items: center;
    gap: 8px; /* アイコンとテキストの間隔 */
  }

  /* アイコンのサイズと調整 */
  #sp_menu .c-spnav .menu-item a .menu-icon {
    width: 24px;
    height: auto;
    flex-shrink: 0;
    object-fit: contain;
    margin: 0;
  }

  /* テキストの表示最適化（万一に備えて） */
  #sp_menu .c-spnav .menu-item a .menu-text {
    display: inline-block;
    font-size: 1rem;
  }

  /* 全体の余白や整列を安定化 */
  #sp_menu .c-spnav .menu-item a {
    padding: 8px 16px;
  }

  #sp_menu .c-spnav .menu-item {
    border-bottom: 1px solid #eee; /* 必要に応じて装飾 */
  }
}
/* =====●スマホ表示：横並び（アイコン左、文字右）↑===== */

/*****↑ナビカラーアイコン設定↑******/

/***↓スマホのサブメニュー位置調整↓***/

/* サブメニューの矢印（::before）を右に1em余分に移動 */
.c-listMenu .children a:before, .c-listMenu .sub-menu a:before{
	left: 2em;
}

/* サブメニューのアイコンとテキスト部分を右に1em余分に移動 */
.p-spMenu__nav .sub-menu .menu-item > a .ttl {
  margin-left: 2em;
}

/***↑スマホのサブメニュー位置調整↑***/


/*************************************/
/*****↑ナビゲーションメニュー↑******/
/*************************************/


/*************************************/
/******↓↓フッターメニュー↓↓*******/
/*************************************/

/*リストulを覆う外側部分の色を調整*/
.l-footer__foot .l-container{
	background-color: #dd8502;
}

/*リストul全体*/
.l-footer__foot .l-container .l-footer__nav{
	background-color: #dd8502;
	padding-top: 40px;
	padding-bottom: 40px;
}

/*リスト(li)の１階層目／ﾒｲﾝﾒﾆｭｰ*/
.l-footer__foot .l-container .l-footer__nav a{
	color: white;
	font-size: 16px;

}

/*リスト(li)の2階層目／ｻﾌﾞﾒﾆｭｰ*/
.l-footer__foot .l-container .l-footer__nav .sub-menu a{
	color: blue;
  margin-left: 2em; /* 階層の字下げ */
	font-size:12px;
}

/***↓リスト左のボーダーを消す↓***/
.l-footer__nav a {
	border-right: 0px solid;
}

.l-footer__nav li:first-child a {
	border-left: 0px solid;
}
/***↑リスト左のボーダーを消す↑***/

/*↓疑似要素でﾘｽﾄ前に[－]を付ける↓*/
.l-footer__foot .l-container .l-footer__nav .sub-menu a {
    color: #FFF;
    position: relative;
    padding: 0 0 0 15px;
}

.l-footer__foot .l-container .l-footer__nav .sub-menu a:before{
	content: "－";
	position: absolute;
	left: 0;
	top: 0;
}
/*↑疑似要素でﾘｽﾄ前に[－]を付ける↑*/


/***↓●スマホ表示アコーディオン)↓***/

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

	.l-footer__foot .l-container .l-footer__nav{
    padding: 10px 0 10px 20px;
	}
	
  .l-footer__nav {
    display: flex;
    flex-direction: column;

  }

  .l-footer__nav .sub-menu {
    display: none;
    margin-left: 1em;
  }

  .l-footer__nav .menu-item-has-children > a::after {
    content: "▼";
    font-size: 0.8em;
    margin-left: 0.5em;
  }

  .l-footer__nav .menu-item-has-children.accordion-open > .sub-menu {
    display: block;
  }
}

/***↑●スマホ表示アコーディオン)↑***/


/*************************************/
/******↑↑フッターメニュー↑↑*******/
/*************************************/


/*************************************/
/**********↓↓フッター↓↓***********/
/*************************************/

/*コピーライト*/
.copyright{
	color:white;
	font-weight: bold;
}

/*************************************/
/**********↑↑フッター↑↑***********/
/*************************************/



/*************************************/
/*************************************/
/**********↑↑↑共 通↑↑↑*********/
/*************************************/
/*************************************/


/*************************************/
/*************************************/
/*****↓↓↓カテゴリーページ↓↓↓****/
/*************************************/
/*************************************/

/*************************************/
/**********↓↓お知らせ↓↓***********/
/*************************************/

/**↓●スマホのｱｲｷｬｯﾁ表示を１：１に↓**/
@media screen and (max-width: 768px) {
  .p-termHead__thumbWrap {
    aspect-ratio: 1 / 1;
    overflow: hidden;
  }

  .p-termHead__thumbWrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
}

/**↑●スマホのｱｲｷｬｯﾁ表示を１：１に↑**/

/*************************************/
/**********↑↑お知らせ↑↑***********/
/*************************************/


/*************************************/
/*************************************/
/*****↑↑↑カテゴリーページ↑↑↑****/
/*************************************/
/*************************************/


/*************************************/
/*************************************/
/******↓↓↓固定ページ全体↓↓↓*****/
/*************************************/
/*************************************/

/************************************/
/***↓固定ページタイトル調整↓***/

.page h1{
	text-align: center;
	padding-top:0px;
	font-size:2.1em;
	color: #b97416;
	font-family: 'Kosugi Maru';/*googleフォントを使う*/
}
/*  */
.page .p-articleThumb {
	margin-bottom: 30px;
}

/***↑固定ページタイトル調整↑***/
/************************************/

/************************************/
/***↓ｱｲｷｬｯﾁ画像を上にくっつける↓***/

/* 要素の順番を入れ替える */
.page .l-mainContent__inner {
  display: flex;
  flex-direction: column;
}

.page .p-articleThumb {
  order: 0;
}

.page .c-pageTitle {
  order: 1;
}

.page .l-mainContent .l-mainContent__inner .post_content{
	order: 2;
}

/* 親要素の上部余白を取り除く */
#content,
#main_content,
.l-mainContent,
.l-mainContent__inner {
  padding-top: 0;
}

/***↑ｱｲｷｬｯﾁ画像を上にくっつける↑***/
/************************************/

/************************************/
/***↓ｱｲｷｬｯﾁ画像にドットを付ける↓***/

/*要素の位置を「元の位置」から相対的に調整できるようにする*/
.page .p-articleThumb {
  position: relative;
  z-index: 0;
}

/* ドットパターンのフィルターを重ねる */
.page .p-articleThumb::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 97%;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 4px 4px;/*ドットの間隔*/
  z-index: 1;
}

/*規定値であるアイキャッチ画像の影を消す*/
.page .p-articleThumb__img, .p-articleThumb__youtube{
    box-shadow: none;
}

/***↑ｱｲｷｬｯﾁ画像にドットを付ける↑***/
/************************************/

/**************************************/
/**↓●スマホのｱｲｷｬｯﾁ表示を２：１に↓**/
@media screen and (max-width: 768px) {
	.page .p-articleThumb__img{
  aspect-ratio: 2 / 1 !important;
  width: 100% !important;
  object-fit: cover !important;
  height: auto; /* 競合を避けるため、元の指定も考慮に入れる */
  max-width: 100%;
	}
}
/**↑●スマホのｱｲｷｬｯﾁ表示を２：１に↑**/
/**************************************/

/*************************************/
/*************************************/
/******↑↑↑固定ページ全体↑↑↑****/
/*************************************/
/*************************************/



/*************************************/
/*************************************/
/******↓↓↓投稿ページ全体↓↓↓*****/
/*************************************/
/*************************************/

/**************************************/
/****↓投稿ページアイキャッチ画像↓****/

/***↓ＰＣアイキャッチ画像↓***/

/* 画像幅 */
.single .p-articleThumb__img {
    border-radius: var(--swl-radius--8, 0);
    display: block;
    width: 60%;
}

/* 中央揃えにする */
.single .p-articleThumb {
  display: flex;
  justify-content: center; /* 水平方向に中央揃え */
}

/***↑ＰＣアイキャッチ画像↑***/

/***↓●スマホアイキャッチ画像↓***/

/* 画像幅 */
@media screen and (max-width: 768px) {
	.single .p-articleThumb__img {
		border-radius: var(--swl-radius--8, 0);
		display: block;
		width: 90%;
	}
}
/***↑●スマホアイキャッチ画像↑***/


/****↑投稿ページアイキャッチ画像↑****/
/**************************************/

/*************************************/
/*************************************/
/******↑↑↑投稿ページ全体↑↑↑*****/
/*************************************/
/*************************************/


/*************************************/
/*************************************/
/*******↓↓↓各固定ページ↓↓↓******/
/*************************************/
/*************************************/


/*************************************/
/*********↓↓トップページ↓↓********/
/*************************************/

/*************************************/
/** メニューとメインビジュアルの間↓**/
/* メニューとメインビジュアルの間の隙間を無くす */
.home #content {
    padding-top: 0;
}
.top #content{
padding-top: 0; 
}
/** メニューとメインビジュアルの間↑**/
/*************************************/

/*************************************/
/***[これはデモサイトです]↓エリア***/

/*[これはデモサイトです]とメインビジュアルの間隔を狭める↓*/
.home #content{
	padding-top:35px;
}
/*[これはデモサイトです]とメインビジュアルの間隔を狭める↑*/

/*[これはデモサイトです]↓*/
.is-style-big_icon_caution{
	padding-top:14px;
	padding-bottom:8px;
}
/*[これはデモサイトです]↑*/

/***[これはデモサイトです]↑エリア***/
/*************************************/

/******* ｈ２タイトル↓エリア *******/
.page-id-56 h2 {
	font-size: 1.7em;
	color: #b97416 !important;
	font-family: 'Kosugi Maru';/*googleフォントを使う*/
}
/******* ｈ２タイトル↑エリア *******/

/*************************************/
/***** お知らせ↓エリア *****/

/* ｈ２タイトル */
.page-id-56 h2.tuika-css_oshirase{
  text-shadow:
    -2px -2px 0 white,
     2px -2px 0 white,
    -2px  2px 0 white,
     2px  2px 0 white;
}

/* 投稿タイトル */
.page-id-56 .p-postListWrap .p-postList__title{
  text-shadow:
    -1px -1px 0 white,
     1px -1px 0 white,
    -1px  1px 0 white,
     1px  1px 0 white;
}


/***** お知らせ↑エリア *****/
/*************************************/

/*************************************/
/*********↑↑トップページ↑↑********/
/*************************************/


/*************************************/
/*******↓↓園での１日ページ↓↓******/
/*************************************/

.page-id-139 .swl-fz.u-fz-l{
	color: #b97416;
	font-family: 'Kosugi Maru';/*googleフォントを使う*/
}

/*************************************/
/*******↑↑園での１日ページ↑↑******/
/*************************************/


/*************************************/
/********↓↓年間行事ページ↓↓*******/
/*************************************/

/* ｈ２タイトル書式 */
.page-id-86 h2{
	color: #b97416 !important;
	font-family: 'Kosugi Maru';/*googleフォントを使う*/
}

/* テーブル枠線のカラー変更 */
.page-id-86 table, th, td {
  border-color: #b5a38a !important; /* 枠線の色だけ変える */
}

/* 各学期の出来事の画像タイトル */
.page-id-86 .has-text-align-center{
	color: #b97416;
	font-weight: bold;
	  text-shadow:
    -2px -2px 0 white,
     2px -2px 0 white,
    -2px  2px 0 white,
     2px  2px 0 white;
	
}

/*************************************/
/********↑↑年間行事ページ↑↑*******/
/*************************************/


/*************************************/
/**********↓↓お知らせページ*********/
/*************************************/

/***↓ｱｲｷｬｯﾁ画像を上にくっつける↓***/

/* 要素の順番を入れ替える */
.category-info .l-mainContent__inner {
  display: flex;
  flex-direction: column;
}

.category-info .p-termHead__thumbWrap {
  order: 0;
}

.category-info .c-pageTitle {
  order: 1;
}

.category-info .p-termContent.l-parent{
	order: 2;
}

/* 親要素の上部余白を取り除く */
.category-info .p-termHead{
	margin-top:0;
}

/***↑ｱｲｷｬｯﾁ画像を上にくっつける↑***/

/***↓ｱｲｷｬｯﾁ画像にドットを付ける↓***/

/*要素の位置を「元の位置」から相対的に調整できるようにする*/
.category-info .p-termHead__thumbWrap {
  position: relative;
  z-index: 0;
	
  aspect-ratio: 1000 / 281; /* 横16 : 縦9 の比率 */
}

/* ドットパターンのフィルターを重ねる */
.category-info .p-termHead__thumbWrap::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-image: radial-gradient(rgba(255,255,255,0.3) 1px, transparent 1px);
  background-size: 4px 4px;/*ドットの間隔*/
  z-index: 1;
}

/*規定値であるアイキャッチ画像の影を消す*/
.category-info .p-termHead__thumbImg.u-obf-cover{
    box-shadow: none;
}

/***↑ｱｲｷｬｯﾁ画像にドットを付ける↑***/

/**↓タイトル横categoryを非表示に↓**/
.category-info .c-pageTitle .c-pageTitle__subTitle.u-fz-14{
	display: none;
}
/**↑タイトル横categoryを非表示に↑**/

/***↓お知らせページのタイトル調整↓***/

.category-info h1{
	text-align: center;
	padding-top:0px;
	font-size:2.1em;
	color: #b97416;
	font-family: 'Kosugi Maru';/*googleフォントを使う*/
}

/* タイトル上のマージン調整 */
.category-info .c-pageTitle {
	padding-top: 30px;
}

/***↑お知らせページのタイトル調整↑***/

/*************************************/
/********↑↑お知らせページ↑↑*******/
/*************************************/


/*************************************/
/********↓↓お問合せページ↓↓*******/
/*************************************/

/*** 注：フォームテンプレートにはpタグは無いが、htmlに挿入されるとき自動でpタグが付くため、ＣＳＳもそれに合わせる必要がある ***/

/***↓ＰＣ表示のみ↓***/
@media screen and (min-width: 768px) {
/* 全体のフォーム項目を整える */
.wpcf7-form p {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 1em;
}

/* ラベル部分 */
.wpcf7-form p > label {
  width: 160px;
  margin-bottom: 0;
  font-weight: bold;
}

/* テキスト入力やセレクト、テキストエリアを整列 */
.wpcf7-form-control-wrap {
  flex: 1;
}

/*全体の書式の設定*/
.wpcf7-form-control {
  width: 100%;
  max-width: 100%;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fefdf2; /* クリーム色 */
  box-sizing: border-box;
}

/* テキストエリアの高さを調整 */
.wpcf7-form-control.wpcf7-textarea {
  height: 120px;
}
	
/*各エリアの上下間隔*/
.wpcf7-form .form-row {
	margin-top: 12px;
}
	
/*「お問合せ」項目の横幅調整*/
	.wpcf7-form-control-wrap #select-795{
		width: 25%;
	}
	
/*「氏名」項目の横幅調整*/
	.wpcf7-form-control-wrap #your-name{
		width: 60%;
	}
	
/*「メールアドレス」項目の横幅調整*/
	.wpcf7-form-control-wrap #your-email{
		width: 60%;
	}
	
/* 送信ボタンを書式設定 */
.wpcf7-submit {
  /*margin-left: 160px;*/
  padding: 10px 20px;
  background-color: #f7a600;
  color: #fff;
  border: none;
  border-radius: 40px;
  cursor: pointer;
	width: 30%;
	margin-left: 40%;
}

/* 送信ボタンのホバー */
.wpcf7-submit:hover {
  background-color: #f2bb49;
}
}/*メディアクエリーの閉じ括弧*/

/***↑ＰＣ表示のみ↑***/


/***↓●スマホ表示のみ↓***/

@media screen and (max-width: 768px) {
	
/*各エリアの上下間隔*/
.wpcf7-form .form-row {
	margin-top: 12px;
}

/*テキストエリアを横幅一杯に広げる*/
.wpcf7-form-control-wrap textarea{
	width: 100%;
}

/*インプットエリアを横幅一杯に広げる*/
.wpcf7-form-control-wrap input{
	width: 100%;
}

/*全体の書式の設定*/
.wpcf7-form-control {
  /*width: 100%;
  max-width: 100%;*/
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  background-color: #fefdf2; /* クリーム色 */
  box-sizing: border-box;
}

	.form-row p label{
		font-weight: bold;
	}

/* 送信ボタンを書式設定 */
.wpcf7-submit {
	display: block;
  /*margin-left: 160px;*/
  padding: 10px 20px;
  background-color: #f7a600;
  color: #fff;
  border: none;
  border-radius: 40px;
  cursor: pointer;
	width: 70%;
	margin: auto;
}
	
}/*メディアクエリーの閉じ括弧*/

/***↑●スマホ表示のみ↑***/


/***reCAPTCHA保護マークの非表示↓***/		
.grecaptcha-badge{		
	visibility: hidden;	
}		
/***reCAPTCHA保護マークの非表示↑***/		



/*************************************/
/********↑↑お問合せページ↑↑*******/
/*************************************/


/*************************************/
/*************************************/
/*******↑↑↑各固定ページ↑↑↑******/
/*************************************/
/*************************************/


/*************************************/
/*************************************/
/******↓↓↓ＣＳＳ作成中↓↓↓*****/
/*************************************/
/*************************************/











