﻿@charset "utf-8";
/* CSS Document */

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
/* ここからがリセットスタイルシートになります。
-------------------------------------------------------------- */

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
  border: 0;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

/*フォーカスとは、ブラウザの画面上でマウスをクリックし、入力状態にあるまでの動作を指します*/
:focus {
  /* remember to define focus styles! */
  outline: 0;
}

body {
  /*行の高さをフォントサイズと同じにしています*/
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

table {
  /* 隣接するセルのボーダーを結合し、間隔を0に指定しています */
  border-collapse: collapse;
  border-spacing: 0;
}

caption,
th,
td {
  /*captionとはテーブル（表）にキャプションをつける。キャプションとは、主に図版や写真について説明のために付け加えられた文字情報のことである。*/
  font-weight: normal;
  text-align: left;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  /*blockquote要素、q要素の前後にコンテンツを追加しないように指定しています*/
  content: "";
}

blockquote,
q {
  /*引用符の表示が出ないようにしています*/
  quotes: "" "";
}

a img {
  border: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  /*html5の新しいタグをブロック要素として表示される。*/
  display: block;
}

/* reset.cssに下記を追加 */
header,
footer,
main,
nav,
article,
aside,
section {
  display: block;
}

/* ここまでがリセットスタイルシートになります。
-------------------------------------------------------------- */
body,
td,
th {
  font-family: "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
}

.wf-roundedmplus1c {
  font-family: "Rounded Mplus 1c";
}

html {
  margin: 0px;
  padding: 0px;
  height: 100%;
  width: 100%;
}

body {
  margin: 0px;
  padding: 0px;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

.clearfix {
  zoom: 1;
}

a {
  font-weight: bold;
  text-transform: none;
  color: #09C;
}

a:hover {
  color: #F60;
  text-decoration: underline;
}

.link-item {
  position: relative;
  width: 100%;
  height: 100%;
}

.link-item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/*=======================================================*/
/*　　　　　　　　　header                               */
/*=======================================================*/

header {
  box-sizing: border-box;
  width: 100%;
  margin: 0px;
  min-height: 10vh;
  /*最小の高さ*/
  text-align: center;
  padding-left: 1em;
  padding-right: 1em;

}

#headerbox {
  box-sizing: border-box;
  width: min(100% - 2em, 1400px);
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: center;
  padding-top: 30px;
  padding-bottom: 30px;

}

.logo {
  width: 30%;
  box-sizing: border-box;
}

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

.navi1 {
  width: 65%;
  box-sizing: border-box;
}

/*=======================================================*/
/*　　　　　　　　 footer                                */
/*=======================================================*/
footer {
  background-image: url(images/bg_footer.png);
  background-repeat: repeat-x;
  background-position: bottom center;
  padding-top: 80px;
}

.footer_img {
  width: min(100% - 2em, 1000px);
  margin-inline: auto;
  text-align: center;
  padding-bottom: .5em;
  background-image: url(images/footer_imgl.png), url(images/footer_imgr.png);
  background-position: left top 15px, right top 15px;
  background-repeat: no-repeat, no-repeat;
}

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

/*=======================================================*/
/*　　　　　　　　　ナビゲーション                       */
/*=======================================================*/

nav {

  z-index: 12;
}

nav ul {
  width: 100%;
  margin-inline: auto;
  box-sizing: border-box;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
  padding-top: 10px;
}

nav ul li {
  width: calc(100% / 7 - 10px);
  height: auto;
  display: block;
  text-align: center;
  align-self: center;
}

nav ul li img {
  transition-duration: 0.5s;
  max-width: 100%;
  cursor: pointer;
  height: auto;
}

/*ナビボタン*のアニメーション*/

nav a:hover img {
  transform: translateY(-10px);
  transition-duration: 0.5s;
}

@media screen and (max-width:768px) {
  .logo {
    width: 100%;
    box-sizing: border-box;
  }

  nav ul li {
    width: calc(100% / 4 - 10px);
    width: -webkit-calc(100% / 3 - 10px);
  }
}

@media screen and (max-width:480px) {
  nav ul li {
    width: calc(100% / 2 - 10px);
    width: -webkit-calc(100% / 2 - 10px);
    margin-bottom: 2em;
  }

  .logo {
    padding-top: 20px;
    width: 100%;
    box-sizing: border-box;
  }
}

/*-----------------------------------*/
/*　　　     SP用ナビ　　 　　　  　 */
/*-----------------------------------*/

/*=======================================================================*/

#sp_navi {
  display: none;
  z-index: 9999;
}

/* ++++ トグルボタン ++++ */

#navTgl {
  display: none;
}

#sp_navi label {
  cursor: pointer;
  position: fixed;
  top: 0;
  right: 0;
}

.open {
  z-index: 9998;
  box-sizing: border-box;
  width: 60px;
  height: 50px;
  transition: background .5s, transform .5s cubic-bezier(0.76, 0.52, 0.29, 1.25);
  box-sizing: border-box;
  background-color: #FF9999;
  /*トグルカラー*/
  border-radius: 0px;
}

.open::before,
.open::after {
  content: "";
}

.open span,
.open::before,
.open::after {
  content: "";
  position: absolute;
  top: calc(50% - 1px);
  left: 30%;
  width: 40%;
  border-bottom: 2px solid white;
  /*トグルボタンのサイズとカラー*/
  transition: transform .5s cubic-bezier(0.76, 0.52, 0.29, 1.25);
}

.open::before {
  transform: translateY(-8px);
}

.open::after {
  transform: translateY(8px);
}

.close {
  z-index: 9997;
  width: 100%;
  height: 100%;
  pointer-events: none;
  transition: background .5s;
}

.active+.open span {
  transform: scaleX(0);
}

.active+.open::before {
  transform: rotate(45deg);
}

.active+.open::after {
  transform: rotate(-45deg);
}

.active~.close {
  background-color: rgba(255, 255, 255, 0.9);
  /*背景色*/
}

/* ++++ ドロワーメニュー ++++ */
.menu {
  z-index: 9997;
  position: fixed;
  overflow: auto;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 60px 6% 6% 6%;
  margin: 0;
  box-sizing: border-box;
  transform: translateX(-100%);
  transition: transform .5s cubic-bezier(0.33, 1.01, 0.33, 0.97);
}

.active~.menu {
  transform: none;
}

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

  /*TB SP ナビゲーション*/
  #sp_navi {
    display: block;
    width: 100%;
  }

  .pc_nav {
    display: none;
    width: 100%;
    float: none;
  }
}

/**=======================================================**/



/*=======================================================*/
/*　　　　　　　　　TOPに戻る                            */
/*=======================================================*/

/*jquery トップに戻る　*/
#page-top {
  position: fixed;
  bottom: 20px;
  right: 10px;
  font-size: 77%;
  z-index: 99999;
}

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

#page-top a {
  text-decoration: none;
  color: #fff;
  width: 70px;
  text-align: center;
  display: block;
}

#page-top a:hover {
  text-decoration: none;
  opacity: 0.5;
}

/*=======================================================*/
/*　　　　　　　　　全ページ共通                         */
/*=======================================================*/

/*mainとboxエリア*/
body {
  background-color: #FFF8F7;



}

.bg {
  background-image: url(images/bg_round.png), url(images/bg_st.png), url(images/bg_sttop.png);
  background-position: center bottom 300px, center bottom, center top;
  background-repeat: no-repeat, repeat-x, repeat-x;


}

main {
  height: 100%;
  min-height: 80vh;
  /*最小の高さ*/
  width: 100%;
  margin-right: auto;
  margin-left: auto;

}

.txt_box {
  /*width: 90%;*/
  margin-inline: auto;
  line-height: 135%;
  color: #663300;
}

.box {
  /*width: 90%;*/
  margin-inline: auto;
}

/*リンクのホバー*/
/*
a:hover {
	opacity: 0.6;
}
*/


/*-------------見出し-----------------*/


h2 {
  box-sizing: border-box;
  padding: 1em 1em .3em 1em;
  font-size: 1.5em;
  color: #6A594A;
  letter-spacing: 0.3em;
  display: inline-block;
  margin-inline: auto;
  margin-bottom: 1em;
  text-align: center;
  border-bottom: dotted 8px #FDC491;
  font-family: "Zen Maru Gothic", serif;
  font-style: normal;
  font-weight: 900;
}

/*リボン*/
.ribbon1 {
  display: inline-block;
  position: relative;
  height: 50px;
  /*リボンの高さ*/
  line-height: 50px;
  /*リボンの高さ*/
  text-align: center;
  padding: 0 30px;
  /*横の大きさ*/
  box-sizing: border-box;
  display: flex;
  justify-content: center;
  align-items: center;

}

.ribbon1:before,
.ribbon1:after {
  position: absolute;
  content: '';
  width: 0px;
  height: 0px;
  z-index: 1;
}

.ribbon1:before {
  top: 0;
  left: 0;
  border-width: 25px 0px 25px 10px;
  border-color: transparent transparent transparent #fff;
  border-style: solid;
}

.ribbon1:after {
  top: 0;
  right: 0;
  border-width: 25px 10px 25px 0px;
  border-color: transparent #fff transparent transparent;
  border-style: solid;
}




/*----PDFリンク----*/
.pdf {
  width: min(100% - 2em, 800px);
  margin-inline: auto;
  box-sizing: border-box;
}

.pdf li {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 1em;
  background-color: #F5F0DC;
  border-radius: 15px;
  padding: 0.5em 1em 0.5em 1em;
}

.pdf li a {
  text-decoration: none;
  display: block;
  color: #336699;
  width: 100%;
  padding: 0.5em 2em 0.5em 2em;
  box-sizing: border-box;
  border-radius: 15px;
}

.pdf li ::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f15b";
  margin-right: 1em;
  color: #98D1E4
}

/* マウスオーバー時 */
.pdf li:hover {
  color: #0066CC;
  background-color: #E6F7EE;
  cursor: pointer;
}

/*-------テキストの修飾-----------------*/


.txt_r {
  text-align: right;
}

.txt_l {
  text-align: left;
}

/*--------リンクエリアの設定（エリア全体をリンク）-------------*/

.link-item {
  position: relative;
  width: 100%;
  height: 100%;
}

.link-item a {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: block;
}

/*--------------リスト----------------*/
.liststyle ul {
  margin-top: 1em;
  margin-bottom: 1em;
}

.liststyle ul li {
  display: flex;
  align-items: baseline;
  justify-content: left;
  margin-bottom: .5em;
}

.liststyle ul li:before {
  content: "\f621";
  /*アイコン番号*/
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 5px;
  color: #FEBEAB;
  /*色*/
}


/* olのスタイル */
.liststyle ol {
  margin-top: 1em;
  margin-bottom: 1em;
  list-style: none;
  /* デフォルトの数字を非表示に */
  counter-reset: li;
}

/* ol内のliのスタイル */
.liststyle ol li {
  position: relative;
  font-size: 16px;
  padding-left: 1.5em;
  line-height: 1.5;
  margin-bottom: .5em;
}

/* 2つ目以降のliにmargin-topを指定 */
.liststyle ol li:not(:first-child) {
  margin-top: 0.5em;
}

/* 数字のスタイル */
.liststyle ol li::before {
  counter-increment: li;
  content: counter(li);
  position: absolute;
  left: 0;
  top: 2px;
  /* 数字のY軸線上の位置を調整 */
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: #63BDED;
  font-size: 12px;
  color: #fff;
  line-height: 20px;
  text-align: center;
}

/*テーブル*/
.liststyle table {
  border-collapse: separate;
  border-spacing: 3px;
  margin-bottom: 1em;
  margin-top: 1em;
}

.liststyle table th {
  background-color: #D0ECE6;
  padding: 10px;
  color: #336633;
  font-weight: bold;
}

.liststyle table td {
  background-color: #F4F1EE;
  padding: 10px;
}


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


  .liststyle table {
    width: 100%;
    box-sizing: border-box;
  }

  .liststyle table th,
  .liststyle table td {
    display: block;
    width: 100%;
    box-sizing: border-box;
  }

  .pdf li a {
    text-decoration: none;
    display: block;
    color: #009966;
    width: 100%;
    padding: 0.5em 0.5em 0.5em 0.5em;
    box-sizing: border-box;
    border-radius: 15px;
  }

  h2 {
    box-sizing: border-box;
    padding: 1em .5em .3em .5em;
    font-size: 1.5em;
    color: #6A594A;
    letter-spacing: 0em;
    display: inline-block;
    margin-inline: auto;
    margin-bottom: 1em;
    text-align: center;
    border-bottom: dotted 8px #FDC491;
    font-family: "Zen Maru Gothic", serif;
    font-style: normal;
    font-weight: 900;
  }


}


/*=======================================================*/
/*　　　　　　レスポンシブテーブル                       */
/*=======================================================*/



.re_table {
  /*border-collapse: collapse;
	width: 100%;*/
}

.re_table th,
.re_table td {
  /*border: 1px solid #999999;
	padding: 8px;*/
}

.re_table th {
  text-align: left;
}

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

  .re_table tr,
  .re_table th,
  .re_table td {
    display: block;
    width: auto;
  }

  .re_table tr:first-child {
    /*border-top: 1px solid #999999;*/
  }

  .re_table th,
  .re_table td {
    /*border-top: none;*/
  }
}

/*レスポンシブテーブルここまで*/





/*=======================================================*/
/*　　　　　　　　　写真の表示　　                       */
/*=======================================================*/

/*アルバム　横４枚*/
.album4 {
  width: min(100%, 1200px);
  margin: 0 auto 2em auto;
  box-sizing: border-box;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.album4 li {
  width: calc(100% / 4 - 10px);
  margin-bottom: 1em;
  text-align: center;
  box-sizing: border-box;
}

.album4 li img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 300px;
  border-radius: 7px;
}

.album4 li p {
  font-size: 0.8em;
  color: blue;
  box-sizing: border-box;
  width: 100%;
  padding: 5px 10px 5px 10px;
  text-align: center;
}


/*アルバム　横3枚*/
.album3 {
  width: min(100% - 2em, 1200px);
  margin: 0 auto 2em auto;
  box-sizing: border-box;
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

.album3 li {
  width: calc(100% / 3 - 10px);
  margin-bottom: 1em;
  text-align: center;
  box-sizing: border-box;
}

.album3 li img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 300px;
  border-radius: 7px;
}

.album3 li p {
  font-size: 0.8em;
  color: blue;
  box-sizing: border-box;
  width: 100%;
  padding: 5px 10px 5px 10px;
  text-align: center;
}

/*アルバム　横2枚*/
.album2 {
  width: min(100% - 2em, 1000px);
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-right: auto;
  margin-left: auto;
}

.album2 li {
  width: calc(100% / 2 - 20px);
  margin-bottom: 1em;
  text-align: center;
}

.album2 li img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 400px;
  margin-bottom: .5em;
  border-radius: 7px;

}

.album2 li p {
  font-size: 0.8em;
  color: blue;
  box-sizing: border-box;
  width: 100%;
  padding: 5px 10px 5px 10px;
  text-align: center;
}

@media screen and (max-width:768px) {
  .album3 li {
    width: calc(100% / 2 - 10px);
    margin-bottom: 1em;
  }

  .album4 li {
    width: calc(100% / 2 - 10px);
    margin-bottom: 1em;
  }
}

@media screen and (max-width:480px) {
  .album2 li {
    box-sizing: border-box;
    width: 100%;
    height: autot;
    padding: 10px;
    margin-bottom: 1em;
  }

  .album3 li {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    padding: 10px;
    margin-bottom: 1em;
  }

  .album4 li {
    box-sizing: border-box;
    width: 100%;
    height: auto;
    padding: 0px;
    margin-bottom: 1em;
  }

}

/*写真の表示ここまで*/



/*=======================================================*/
/*　　　　　　　　　Flex-box                             */
/*=======================================================*/


/*左右の端による配置 ※左右いっぱいにしたいときはこちら*/
.flexboxb {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;
}

/*均等割り付け*/
.flexboxa {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  align-items: stretch;
}

/*中のbox*/
.inbox2 {
  width: calc(100% / 2 - 10px);
  margin-bottom: 10px;
}

.inboxy {
  width: calc(100% / 2 - 10px);
  margin-bottom: 10px;
}

.inbox3 {
  width: calc(100% / 3 - 10px);
  margin-bottom: 10px;
}

.inbox4 {
  width: calc(100% / 4 - 10px);
  margin-bottom: 10px;
}

@media screen and (max-width:768px) {
  .inbox2 {
    width: 100%;
  }

  .inbox3 {
    width: calc(100% / 2 - 10px);
  }

  .inbox4 {
    width: calc(100% / 2 - 10px);
  }
}

@media screen and (max-width:480px) {
  .inboxy {
    width: 100%;
  }

  .inbox3 {
    width: 100%;
  }

  .inbox4 {
    width: 100%;
  }
}

/*=======================================================
　　　　　　　　PCスマホ表示の切り替

 　　　　　　 .pc　.sp　タブレット以下切り替え
 
 　　　　　　 .pc2 .sp2　スマホ以下で切り替え          
       
=======================================================*/




/*-- PC版表示CSS  --*/


.pc,
.pc2 {
  display: block;
}

.sp,
.sp2 {
  display: none;
}


/*-- スマホ版表示CSS  --*/


@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

@media screen and (max-width: 480px) {
  .pc2 {
    display: none;
  }

  .sp2 {
    display: block;
  }
}

/*=========================================================================================================================================================*/

/*----------------ここより下各ページ---------------------------*/

/*=========================================================================================================================================================*/
.contents {
  width: min(100% - 2em, 1200px);
  margin-inline: auto;
}

/*------------------------
　　　　TOPページ
-------------------------*/


/*-----スライドショー-----*/

#ss {
  text-align: center;
  margin-right: auto;
  margin-left: auto;
  margin-bottom: 20px;
  width: 100%;
  position: relative;
  padding-bottom: 2em;
}

#ss ul {
  mask-image: url(images/mask.png);
  mask-size: contain;
  mask-repeat: no-repeat;
}

#ss li {
  box-sizing: border-box;
  padding: 10px;
}

#ss li img {
  width: 100%;
  height: auto;
  height: 35vw;
  /*写真の大きさが揃うように高さを調整する50*/
  /*max-height: 570px;*/
  object-fit: cover;
  box-sizing: border-box;
  /*border: #FFFFFF 10px solid;*/
}

.slide_illust {
  width: 100%;
  position: absolute;
  top: 5px;
  left: 0px;
  z-index: 10;
  pointer-events: none;
}

.slide_illust2 {
  width: 100%;
  position: absolute;
  bottom: 50px;
  left: 0px;
  z-index: 10;
  pointer-events: none;
}

.slide_illust3 {}

.slide_illust4 {}

.slide_illust img,
.slide_illust2 img {
  max-width: 100%;
  height: auto;
}

/*----/スライドショーここまで----*/

/*------更新情報--------*/

#news {
  margin-bottom: 5em;
  z-index: 4;
  text-align: center;
}

.news_box {
  position: relative;
  box-sizing: border-box;
  width: min(90% - 2em, 800px);
  margin-inline: auto;
  padding: 100px 1em 100px 1em;
  background-color: #E3F2F7;
  text-align: left;
}

.news_content {
  box-sizing: border-box;
  width: 90%;
  margin-inline: auto;
  color: #663300;
  font-size: 0.9em;

}

.news_content time {
  color: #006699;
  padding-right: 1em;
  white-space: nowrap;
  flex-shrink: 0;
}

.news_content li {
  box-sizing: border-box;
  padding-bottom: 1em;
  margin-bottom: 1em;
  border-bottom-width: 1px;
  border-bottom-style: dashed;
  border-bottom-color: #C5AFA3;
  line-height: 135%;
  display: flex;
  align-items: flex-start;
}

.news_content li a {
  color: #006699;
}

.news_content li p {
  margin: 0;
}

.news_content li time a {
  text-decoration: none;
}

.news_img01 {
  position: absolute;
  z-index: 10;
  width: 100%;
  min-height: 200px;
  background-image: url(images/book_t.png);
  background-repeat: no-repeat;
  background-position: center top;
  background-size: 100%;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  box-sizing: border-box;



}

.news_img02 {
  position: absolute;
  z-index: 10;
  width: 100%;
  min-height: 200px;
  background-image: url(images/book_u.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100%;
  bottom: -5%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  box-sizing: border-box;



}




/*-----基本情報------*/

#kihon {
  width: min(100% - 2em, 1000px);
  margin-inline: auto;
  margin-bottom: 3em;
  text-align: center;
}

.kihon {
  width: min(50% - 2em);
  margin-inline: auto;
  box-sizing: border-box;
  text-align: left;
}

.kihon .imgbox {
  width: min(100% - 2em);
  margin-inline: auto;
  box-sizing: border-box;
  text-align: center;
}

.kihon table {
  width: 100%;
  border-spacing: 3px;
  border-collapse: separate;
  margin-bottom: 2em;
}

.kihon table th {
  padding: 10px;
  border-radius: 7px;
  background-color: #DAF1EA;
  font-family: "Kosugi Maru", sans-serif;
  color: #007171;
  white-space: nowrap;
}

.kihon table td {
  padding: 10px;
  border-radius: 7px;
  background-color: #F5F2F1;
  line-height: 150%;
  color: #663333;
}

/*----Googleマップ----*/

.map {
  width: min(50% - 2em);
  margin-inline: auto;
  box-sizing: border-box;
  text-align: left;
}

.map iframe {
  border: #FF9999 solid 2px;
  border-radius: 1em;
}

.access {
  color: #6A5B48;
  padding: 1em;
  line-height: 150%;
  font-size: 0.9em;
}

.yahoomap {
  border: #FF9999 solid 2px;
  border-radius: 1em;
}

.map .imgbox {
  width: min(100% - 2em);
  margin-inline: auto;
  box-sizing: border-box;
  text-align: center;
}

.map .imgbox img {
  max-width: 100%;
  height: auto;
  box-sizing: border-box;
}

#parking {
  width: min(100% - 2em, 1200px);
  margin-inline: auto;
  margin-bottom: 3em;
  text-align: center;
}


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

.parking {
  text-align: center;
}

.parking figcaption {
  line-height: 135%;
  color: #008C8C;
  font-family: "Zen Maru Gothic", serif;
  font-style: normal;
  font-weight: 600;
  font-size: 1.3em;
  text-align: left;
  width: min(100% - 2em, 600px);
  margin: 0 auto;
}

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

  .parking figcaption {
    line-height: 135%;
    color: #008C8C;


    font-size: 1em;
    text-align: left;
    width: min(100% - 2em, 600px);
    margin: 0 auto;
  }


}

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



  /*更新情報*/

  #news {
    width: min(100% - 1em, 1200px);
    margin-inline: auto;
    margin-bottom: 3em;
    z-index: 4;


  }

  .news_box {
    position: relative;
    box-sizing: border-box;
    width: min(100% - 2em, 800px);
    margin-inline: auto;
    padding: 50px 1em 50px 1em;
    background-color: #E3F2F7;
    text-align: left;
  }

  .news_tittle {
    position: absolute;
    bottom: 10px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    z-index: 10;
    font-size: 1.1em;
    color: #fff;
  }

  .news_content time {
    padding-right: 1em;
    box-sizing: border-box;
    /* width: 100%; */
    width: fit-content;
  }

  .news_img01 {
    position: absolute;
    z-index: 10;
    width: 100%;
    min-height: 200px;

    background-size: 100%;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    box-sizing: border-box;



  }

  .news_img02 {
    position: absolute;
    z-index: 10;
    width: 100%;
    min-height: 200px;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    box-sizing: border-box;



  }






  /*スライドショー*/
  #ss ul {
    width: 100%;
    mask-image: url(images/mask2.png);
    mask-size: contain;
    mask-repeat: no-repeat;
  }

  #ss li {
    box-sizing: border-box;
    padding: 0px;
  }



  .slide_illust {
    width: 100%;
    position: absolute;
    top: -1px;
    left: 0px;
    z-index: 10;
    pointer-events: none;
  }

  .slide_illust2 {
    width: 100%;
    position: absolute;
    bottom: 55px;
    left: 0px;
    z-index: 10;
    pointer-events: none;
  }

  /*基本情報*/
  .kihon table th {
    border-radius: 0px;

  }

  .kihon table td {
    border-radius: 0px;

  }






}




/*------------------------
　　　　園の概要
-------------------------*/



/*----------------概要----------------*/
.container {
  text-align: left;
}

#gaiyo {
  text-align: center;
  margin-bottom: 3em;
  padding-top: 2em;
}

#gaiyo .container {
  width: min(100% - 2em, 1000px);
  margin-inline: auto;
  box-sizing: border-box;

}

#gaiyo table {
  box-sizing: border-box;
  width: 90%;
  margin-right: auto;
  margin-left: auto;
  line-height: 1.3em;
  border-spacing: 3px;
  border-collapse: separate;
}

#gaiyo .re_table tr {}

#gaiyo .re_table th {
  white-space: nowrap;
  padding: 10px;
  border-radius: 7px;
  background-color: #FEE2E7;
  font-family: "Kosugi Maru", sans-serif;
  color: #663333;
}

#gaiyo .re_table td {
  padding: 10px;
  border-radius: 7px;
  background-color: #FFFFFF;
  color: #663333;
}

#gaiyo table h3 {
  color: #2C8F9A;
}

/*------------------保育理念*-----------------*/

#rinen {
  width: min(100% - 2em, 1000px);
  margin-inline: auto;
  box-sizing: border-box;
  text-align: center;
}

.rinen_copy {
  width: min(100% - 2em, 800px);
  margin-inline: auto;
  box-sizing: border-box;
  margin-inline: auto;
  font-size: 1em;
  font-family: "Kosugi Maru", sans-serif;
  color: #6F7263;
  margin-bottom: 2em;
  line-height: 170%;
  text-align: left;
}

.rinenbox {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: stretch;


}

.rinenbox .text_box {
  width: 100%;
  box-sizing: border-box;
  margin-bottom: 1em;
  line-height: 135%;
}

.rinenbox .photo_box {
  width: 38%;
  box-sizing: border-box;
  padding: 10px;
  text-align: center;
}

.rinenbox .photo_box img {
  max-width: min(100%, 400px);
  height: auto;
  border-radius: 10px;
}

.rinetbox .photo_box figure {}

.rinenbox .photo_box figcaption {
  font-size: 0.9em;
  color: #006666;
  width: 100%;
  text-align: center;

}

#rinen .container {
  background-color: #fff;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 1em;
  border: 5px solid #CFEFF1;
  border-radius: 20px;
  color: #663300;
  font-family: "Kosugi Maru", sans-serif;
  margin-bottom: 2em;
  background-image: url(images/img01.jpg);
  background-position: bottom 10px right 10px;
  background-repeat: no-repeat;

}

#rinen h3 {
  background-color: #D7F2F0;
  box-sizing: border-box;
  padding: 0.7em;
  margin-bottom: 2em;
  width: min(100%, 300px);
  margin-inline: auto;
  font-size: 1.1em;
  color: #1E5C91;
  font-family: "Kosugi Maru", sans-serif;
  text-align: center;
}

#houshin {
  text-align: center;
  margin-bottom: 3em;
}

#houshin .container {
  width: min(100% - 2em, 1000px);
  margin-inline: auto;
  box-sizing: border-box;

}


/*-----------------保育の特徴*-----------------*/
#toku {
  text-align: center;
  margin-bottom: 3em;
}

#toku .container {
  width: min(100% - 2em, 1000px);
  margin-inline: auto;
  box-sizing: border-box;

}

.toku_copy {
  width: min(100% - 2em, 900px);
  margin-inline: auto;
  box-sizing: border-box;
  margin-inline: auto;
  font-size: 1em;
  font-family: "Kosugi Maru", sans-serif;
  color: #6F7263;
  margin-bottom: 2em;
  line-height: 170%;
  text-align: left;
}

#toku .inbox2 {
  background-color: #FFFFFF;
  border: 5px solid #FFE6CE;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* 上部と下部の要素を分ける */
  margin-bottom: 2em;
}

/*タイトルとテキスト部分*/
#toku .inbox {
  line-height: 150%;
  color: #663300;
  margin-bottom: 1em;
}

/*写真部分*/
#toku .photo_box {
  width: 100%;
  text-align: center;
}

#toku .photo_box img {
  width: min(100%, 400px);
  height: auto;
  border-radius: 10px;
}

figure {
  margin: 0;
  padding: 0;
}

#toku .photo_box figcaption {
  font-size: 0.9em;
  color: #663300;
  padding-top: 0.3em;
}

#toku .inbox h3 {
  text-align: center;
  font-size: 1.2em;
  box-sizing: border-box;
  padding: 0.5em;
  color: #E39475;
  margin-bottom: 1em;
  font-family: "Kosugi Maru", sans-serif;
  border-bottom-width: 5px;
  border-bottom-style: dotted;
  border-bottom-color: #FFD3A8;
}

.tokuimg {
  width: min(100% - 2em, 1000px);
  box-sizing: border-box;
  margin: 1em auto;
  display: flex;
  justify-content: space-around;
  align-items: center;

}

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






/*園内図*/
#ennai {
  width: min(100% - 2em, 1200px);
  margin-inline: auto;
  box-sizing: border-box;
  margin-bottom: 3em;
  text-align: center;
}

＃ennai .container {
  text-align: center;

}

#ennai .en_map {
  text-align: center;
}

#ennai .en_map img {
  max-width: 100%;
  height: auto;
  margin-bottom: 2em;
}

#ennai li figure figcaption {
  font-size: 0.8em;
  color: #996666;
  padding: 0;
}

#ennai li figure img {
  margin-bottom: .3em;
  box-sizing: border-box;

}

/*------------------------
　　　　園の生活
-------------------------*/
/*----------------デイリー---------------*/

#daily {
  width: min(100% - 2em, 1000px);
  margin-inline: auto;
  box-sizing: border-box;
  margin-bottom: 3em;
  text-align: center;
  padding-top: 2em;

}

.dailybox {

  width: calc(100% / 2 - 10px);
  margin-bottom: 10px;
  background-color: #FFFFFF;
  border-radius: 30px;
  box-sizing: border-box;
  padding: 10px;
}

#daily h3 {
  background-image: url(images/bg_ribon_h3l.png), url(images/bg_ribon_h3r.png);
  background-position: center left, center right;
  background-repeat: no-repeat, no-repeat;
  background-size: auto 100%, auto 100%;
  box-sizing: border-box;
  padding: 0.5em;
  margin-bottom: 2em;
  width: min(100%, 300px);
  margin-inline: auto;
  font-size: 1.1em;
  color: #663300;
  font-family: "Kosugi Maru", sans-serif;
  text-align: center;
  line-height: 135%;
}

.day1 {
  border: solid 5px #FED3E2;
  background-image: url(images/bg_day1.png);
  background-position: bottom center;
  background-repeat: no-repeat;

}

.day1 h3 {
  background-color: #FEE2EC;
}

.day2 {
  border: solid 5px #A0E0CD;
  background-image: url(images/bg_day2.png);
  background-position: bottom center;
  background-repeat: no-repeat;

}

.day2 h3 {
  background-color: #C7EDE1;
}


#daily .container {
  padding-top: 1em;
  box-sizing: border-box;
}



.dailybox table {
  width: min(100% - 2em);
  box-sizing: border-box;
  margin: 1em auto;

}

/*.dailybox table tr {
	border-bottom: dotted #CEC7BD 3px;
}*/
.day1 table {
  background-image: url(images/day01.png), url(images/day02.png), url(images/day03.png), url(images/day04.png);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: right top 10%, right top 40%, right top 70%, right top 95%;
}

.day2 table {
  background-image: url(images/day05.png), url(images/day06.png), url(images/day07.png), url(images/day08.png);
  background-repeat: no-repeat, no-repeat, no-repeat, no-repeat;
  background-position: right top 10%, right top 40%, right top 70%, right top 95%;
}


.dailybox table th {
  width: 2em;
  padding: 10px;
  text-align: right;
  font-size: 1.5em;
  font-weight: 400;
  line-height: 1.5;
  font-family: "M PLUS Rounded 1c", sans-serif;
  color: #B1C157;
}

.dailybox table td {
  line-height: 150%;
  font-family: "Kosugi Maru", sans-serif;
  padding: 10px;
  padding-bottom: 20px;
  padding-right: 100px;
  color: #656261;
}


.daybox .photo {
  width: 30%;
  text-align: center;

}

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

.daybox .photo img {
  border-radius: 10px;
}


#daily figcaption {
  font-size: 0.9em;
  color: #006666;
}


/*---------------年間行事------------------*/

#year {
  width: min(100% - 2em, 1000px);
  margin-inline: auto;
  box-sizing: border-box;
  margin-bottom: 3em;
  text-align: center;
}

.ybox {
  box-sizing: border-box;
  padding: 0;
  border-radius: 30px;
  margin-bottom: 2em;
  min-height: 350px;
  padding-bottom: 100px;
  color: #474747;
}

.ybox h3 {
  width: 100%;
  box-sizing: border-box;
  padding: 20px;
  font-family: "Mochiy Pop One", sans-serif;
  color: #fff;
  text-align: center;
  font-size: 1.5em;
  border-radius: 30px 30px 0 0;

}



#haru {
  background-color: #FEE9F1;
  background-image: url(images/bg_haru.png);
  background-repeat: no-repeat;
  background-position: right bottom;

}

#haru h3 {
  background-color: #FCAFC2;
}

#haru ul li:before {
  content: "\f0c8";
  /*アイコン番号*/
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 5px;
  color: #FCAFC2;
  /*色*/
}



#natu {
  background-color: #E0F8E6;
  background-image: url(images/bg_natu.png);
  background-repeat: no-repeat;
  background-position: right bottom;

}

#natu h3 {
  background-color: #78CD8D;
}

#natu ul li:before {
  content: "\f0c8";
  /*アイコン番号*/
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 5px;
  color: #78CD8D;
  /*色*/
}



#aki {
  background-color: #EEEDC1;
  background-image: url(images/bg_aki.png);
  background-repeat: no-repeat;
  background-position: right bottom;

}

#aki h3 {
  background-color: #B3AF31;
}

#aki ul li:before {
  content: "\f0c8";
  /*アイコン番号*/
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 5px;
  color: #B3AF31;
  /*色*/
}


#fuyu {
  background-color: #DDF0EF;
  background-image: url(images/bg_fuyu.png);
  background-repeat: no-repeat;
  background-position: right bottom;

}

#fuyu h3 {
  background-color: #95D0CD;
}

#fuyu ul li:before {
  content: "\f0c8";
  /*アイコン番号*/
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  margin-right: 5px;
  color: #95D0CD;
  /*色*/
}

.event {
  padding: 20px;
}

.ybox li {
  margin-bottom: .7em;
  font-size: 1.2em;

  font-family: "Kosugi Maru", sans-serif;
}

.year_info {
  text-align: left;
  padding: 1em;
  color: #2E5A4A;
  line-height: 150%;
  font-family: "Kosugi Maru", sans-serif;
}

#year figcaption {
  font-size: 0.9em;
  color: #006666;
}

/*----------------------------
　　　　　　　食育

------------------------------*/
/**食育**/
#shokuiku {
  text-align: center;
  margin-bottom: 3em;
  width: min(100% - 2em, 1000px);
  margin-inline: auto;
  box-sizing: border-box;
}

#shokuiku .info {
  text-align: left;
  width: 100%;
  padding: 1em;
  box-sizing: border-box;
  line-height: 135%;
  color: #663300;
}

#shokuiku .box {
  width: min(100%, 1000px);
  margin-inline: auto;
  text-align: left;
  padding: 10px;
  box-sizing: border-box;
  line-height: 135%;
  color: #663300;
  margin-bottom: 1em;
  background-color: #FFFFFF;
  border: 5px solid #C8F7E9;
  border-radius: 10px;
}

#shokuiku .box h3 {
  text-align: center;
  font-size: 1.2em;
  box-sizing: border-box;
  padding: 0.5em;
  color: #339999;
  margin-bottom: 1em;
  font-family: "Kosugi Maru", sans-serif;
  border-bottom-width: 5px;
  border-bottom-style: dotted;
  border-bottom-color: #C8F7E9;
}

#shokuiku .box .text_box {
  margin-bottom: 1em;
}

#shokuiku .box .photo_box {
  padding: 0;
}

#shokuiku .box .photo_box figcaption {
  font-size: .8em;
  color: #006666;
}

/*給食*/


#kyushoku {
  text-align: center;
  margin-bottom: 3em;
  width: min(100% - 2em, 1000px);
  margin-inline: auto;
  box-sizing: border-box;
}

.kyushoku {
  background-color: #FFFFFF;
  border: 5px solid #D5EDBA;
  border-radius: 20px;
  box-sizing: border-box;
  padding: 1em;

}

.kyushoku_top {
  width: min(100% - 2em, 600px);
  margin-inline: auto;
  text-align: left;
  padding: 1em;
  box-sizing: border-box;
  line-height: 135%;
  color: #663300;
  margin-bottom: 1em;
  /*border-top: #CEE3AA dotted 5px;
	border-bottom:#CEE3AA dotted 5px;*/
}

#kyushoku .inbox2 {
  background-color: #FFFFFF;
  border: 5px solid #C4EDB4;
  border-radius: 10px;
  box-sizing: border-box;
  padding: 1em;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  /* 上部と下部の要素を分ける */
  margin-bottom: 2em;
}

/*タイトルとテキスト部分*/
#kyushoku .inbox {
  line-height: 150%;
  color: #663300;
  margin-bottom: 1em;
}

/*写真部分*/
#kyushoku .photo_box {
  width: 100%;
  text-align: center;
}

#kyushoku .photo_box img {
  width: min(100%, 400px);
  height: 280px;
  border-radius: 10px;
  object-fit: cover;
}

#kyushoku figure {
  margin: 0;
  padding: 0;
  margin-bottom: 1em;
}

#kyushoku .photo_box figcaption {
  font-size: 0.9em;
  color: #663300;
  padding-top: 0.3em;
}

#kyushoku .inbox h3 {
  text-align: center;
  font-size: 1.2em;
  box-sizing: border-box;
  padding: 0.5em;
  color: #5FB165;
  margin-bottom: 1em;
  font-family: "Kosugi Maru", sans-serif;
  border-bottom-width: 5px;
  border-bottom-style: dotted;
  border-bottom-color: #CCEEA6;
}





/*------------------------
　　　　一時預かり
-------------------------*/
#hoiku {
  width: min(100% - 2em, 900px);
  margin-inline: auto;
  box-sizing: border-box;
  margin-bottom: 3em;
  text-align: center;
}

#hoiku .container {
  width: min(100%, 800px);
  margin-inline: auto;
  box-sizing: border-box;
  text-align: center;
  font-size: 1.2em;
  font-family: "Kosugi Maru", sans-serif;
  color: #34A969;
  margin-bottom: 2em;
  line-height: 150%;
  text-align: left;
}

.hoiku {
  background-color: #fff;
  box-sizing: border-box;
  padding: 1em;
  border-radius: 20px;
  border: #FEE2E7 solid 5px;
  line-height: 150%;
  color: #765645;
  text-align: left;
  margin-bottom: 3em;
}

.hoiku h3 {
  /*background-image: url(images/bg_ribon_h3l.png), url(images/bg_ribon_h3r.png);
	background-position: center left, center right;
	background-repeat: no-repeat, no-repeat;
	background-size: auto 100%, auto 100%;
	*/
  background-color: #FEE2E7;
  box-sizing: border-box;
  padding: 1em;
  margin-bottom: 2em;
  width: min(100%, 350px);
  margin-inline: auto;
  font-size: 1.2em;
  color: #E17193;
  font-family: "Kosugi Maru", sans-serif;
  text-align: center;
}

/*------------------------
　　　　ブログ
-------------------------*/
#blog .center {
  width: 100%;
  text-align: center;
  margin-bottom: 2em;
}

#blog {
  width: min(100% - 2em, 1200px);
  margin-inline: auto;
  box-sizing: border-box;
  margin-bottom: 3em;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  padding-top: 2em;
}

#category {
  width: 27%;
}

#blog_main {
  width: 70%;
  box-sizing: border-box;
}

/*--------------カテゴリー--------------*/

#category h3 {
  /*background-image: url(images/bg_ribon_h3l.png), url(images/bg_ribon_h3r.png);
	background-position: center left, center right;
	background-repeat: no-repeat, no-repeat;*/

  background-size: auto 100%, auto 100%;
  background-color: #FDE3D2;
  box-sizing: border-box;
  padding: 0.5em;
  margin-bottom: 2em;
  width: 100%;
  margin-inline: auto;
  font-size: 1.2em;
  color: #E77052;
  font-family: "Kosugi Maru", sans-serif;
  text-align: center;
}



#blog #category h3 {
  color: #E77052;
}

#category ul {
  box-sizing: border-box;
  background-color: #FFF;
  border-radius: 20px;
  padding: 1em;
  border: 5px solid #FDDBC4;
  color: #663300;
}

#category li {
  margin-bottom: 1em;
  border-bottom: 2px #CCCCCC dotted;
  color: #817463;
  padding-bottom: .3em;
}

#category li a {
  color: #817463;
}

#category li a:hover {
  color: #FF6699;
}

/*---------------ブログ記事------------------*/

.blogbox {
  background-color: #FFF;
  border-radius: 1em;
  margin-bottom: 2em;
  padding-bottom: 2em;
  border: 5px solid #FDDBC4;
  padding-top: 1em;
}

.blogbox h3 {
  /*background-image: url(images/bg_ribon_h3l.png), url(images/bg_ribon_h3r.png);
	background-position: center left, center right;
	background-repeat: no-repeat, no-repeat;
	background-size: auto 100%, auto 100%;*/
  background-color: #FDE3D2;
  padding: .5em 2em;
  margin-bottom: 0.5em;
  width: min(100% - 2em);
  margin-inline: auto;
  font-size: 1.2em;
  color: #BF642D;
  font-family: "Kosugi Maru", sans-serif;
  box-sizing: border-box;
  line-height: 130%;
}

.blog_date {
  text-align: right;
  font-size: 0.85em;
  padding: .5em 1em;
  color: #B3360D;
}

.blogbox img {
  width: 100%;
  max-width: 500px;
  height: auto;
  margin: .5em auto .5em auto;
  display: block;
  border-radius: 7px;
}

/*記事本文*/
.blog_txt {
  margin-top: 1em;
  margin-bottom: 1em;
  width: min(100% - 2em);
  margin-inline: auto;
  line-height: 1.5em;
  color: #66534F;
}


/*ブログ写真横3枚*/
.blog_photo {
  margin-top: 1em;
  margin-bottom: 1em;
}

.blog_photo .album3 li figcaption {
  font-size: 0.8em;
  color: #666666;
}

/*PDF貼り付け*/
#blog .pdf {
  padding: 1em;
  width: min(100% - 2em);
  margin: 1em auto 1em auto;
  border-radius: 10px;
}


/*YOUTUBE*/
.movie {
  width: min(100% - 2em);
  margin-right: auto;
  margin-left: auto;
}

.youtube {
  position: relative;
  width: 100%;
  padding-top: 56.25%;
}

.youtube iframe {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
}



/*----ブログのページャー ----*/
.pager .pagination {
  text-align: center;
}

.pager .pagination li {
  display: inline;
  margin: 0 2px;
  padding: 0;
  display: inline-block;
  width: 50px;
  height: 50px;
  text-align: center;
  position: relative;
  border-radius: 10px;
  background-color: #FFBE97;
}

.pager .pagination li a {
  vertical-align: middle;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  text-align: center;
  display: table;
  color: #fff;
  text-decoration: none;
}

.pager .pagination li a span {
  display: table-cell;
  vertical-align: middle;
}

.pager .pagination li a:hover,
.pager .pagination li a.active {
  color: #C33;
  border-radius: 10px;
  background-color: #FDE9C8;
}


@media only screen and (max-width: 767px) {
  .pager .pagination li {
    display: none;
  }

  .pager .pagination li.pre,
  .pager .pagination li.next {
    display: inline-block;
    width: 40%;
    height: 50px;
    text-align: center;
  }

  .pager .pagination li.pre a,
  .pager .pagination li.next a {
    width: 100%;
    text-align: center;
  }

  .pager .pagination li.pre span::after {
    content: "　前の記事へ";
  }

  .pager .pagination li.next span::before {
    content: "次の記事へ　";
  }
}


/*----ページャーここまで------*/



/*----------------------------------------------------
             採用情報
------------------------------------------------------*/

#recruit {
  width: min(100% - 2em, 1000px);
  margin-inline: auto;
  box-sizing: border-box;
  margin-bottom: 3em;
  text-align: center;
  padding-top: 2em;

}

#recruit .container {
  width: min(100%, 600px);
  margin-inline: auto;
  box-sizing: border-box;
  margin-bottom: 3em;
  text-align: left;
  line-height: 150%;
  font-family: "Kosugi Maru", sans-serif;
  color: #804040;


}

#recruit .container h4 {
  text-align: center;
  font-size: 1.3em;
  color: #009966;
  margin-bottom: 1em;
  text-align: 150%;
}

#recruit .box {
  width: min(100%, 800px);
  background-color: #FFFFFF;
  border: 5px solid #CFEFF1;
  box-sizing: border-box;
  padding: 1em;
  border-radius: 20px;
  text-align: left;
  margin-bottom: 3em;
}

#recruit .img_box {
  text-align: center;
  padding: 10px;
  box-sizing: border-box;
}

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

#recruit .box h3 {
  /*background-image: url(images/bg_ribon_h3l.png), url(images/bg_ribon_h3r.png);
	background-position: center left, center right;
	background-repeat: no-repeat, no-repeat;
	background-size: auto 100%, auto 100%;*/
  background-color: #F7EAB5;
  box-sizing: border-box;
  padding: 1em;
  margin-bottom: 2em;
  width: min(100%, 600px);
  margin-inline: auto;
  font-size: 1.2em;
  color: #035881;
  font-family: "Kosugi Maru", sans-serif;
  text-align: center;
}

#recruit .box p {
  margin-bottom: 1em;
}


/*-----------------------------
　　　　メールフォーム
----------------------------*/

#mailform {
  text-align: center;
  margin-bottom: 3em;
}

#mailform .info {
  width: min(100% - 2em, 800px);
  margin: 1em auto;
  line-height: 150%;
  color: #663300;
  text-align: left;
}

#mailform .mailform form tr th img {
  height: 1.5em;
  width: auto;
  margin-left: 5px;
  vertical-align: bottom;


}


/* フォーム全体のスタイル */
.mailform {
  width: min(100% - 2em, 800px);
  margin: 1em auto;
  box-sizing: border-box;
  background-color: white;
  padding: 20px;
  border-radius: 20px;
  text-align: left;
  border: 5px solid #DCD2C7;
}

@media screen and (max-width:480px) {
  .mailform {
    width: 100%;
    margin: 0;
    box-sizing: border-box;
    background-color: white;
    padding: 20px;
    border-radius: 20px;
    text-align: left;
    border: 5px solid #DCD2C7;
  }
}


.mailform table {
  width: 96%;
  margin: 1em auto;
  font-family: "Kosugi Maru", sans-serif;

}


.mailform table th {
  vertical-align: top;
  padding: 10px;
  padding-top: 15px;
  font-family: "Kosugi Maru", sans-serif;
  color: #0099CC;
  text-align: right;
}

.mailform table th img {
  height: 1.5em;
  width: auto;
  margin-left: 5px;
  vertical-align: bottom;


}

.mailform table td {
  box-sizing: border-box;
  vertical-align: top;
  padding: 10px;
  font-family: "Kosugi Maru", sans-serif;
  text-align: left;


}

.radio_b {}

/* ラベルのスタイル */
.mailform label {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #555;
}

/* 入力欄のスタイル */
.mailform input,
textarea {
  box-sizing: border-box;
  width: 100%;
  /* box-sizingが適用されるので、paddingやborder込みで100%に収まる */
  padding: 10px;
  margin-top: 5px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

/* テキストエリアの高さを調整 */
.mailform textarea {
  resize: vertical;
  height: 120px;
}

/*送信ボタン*/
.form_btn p {
  display: flex;
  justify-content: space-between;
  align-items: stretch;

}

/* 送信ボタンのスタイル */


.form_btn input {
  color: #006666;
  border: none;
  padding: 10px;
  width: 100%;
  margin-top: 10px;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
  font-family: "Kosugi Maru", sans-serif;
  background-color: #B3DDCC;
  box-sizing: border-box;
  margin: 10px;
}

/* ホバー時のボタンスタイル */
.form_btn input:hover {
  background-color: #CCCC66;
}

.mailform input::placeholder {
  color: #C6DBE6;
  /* 薄いグレー */
}

/*ラジオボタン*/

.radio_b {
  display: flex;
  gap: 10px;
  /*flex-wrap; wrap;*/
  align-items: center;
}

.radio_b label {
  display: flex;
  align-items: center;
  /* ラベル内のラジオボタンとテキストを揃える */
  gap: 2px;
  /* ボタンとテキストの間隔 */
  /*min-width: 5em;        最小幅を確保 */
  white-space: nowrap;
  /* 折り返しを防止 */
  color: #6D665F;
  justify-content: flex-start;


}

.radio_b input[type="radio"] {
  margin: 0;
  /* 不要な余白を除去 */
  vertical-align: middle;
  /* 念のため中央揃え */
}

.radio_b label input {
  width: 1em;
}

/*===================================タブレット以下での表示===================================*/
.------sp_w767------------------------- {}

@media screen and (max-width:767px) {
  .mailform table th {
    vertical-align: top;
    padding: 20px 10px 0 10px;

    font-family: "Kosugi Maru", sans-serif;
    color: #006633;
    text-align: left;
  }

  .radio_b .wpcf7-list-item {
    display: block;
    margin: 0;
  }

}



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

  body {
    background-size: 20vw, 20vw;
  }

  /*======================================
            sp-header footer
======================================*/
  .footer_img {
    width: min(100% - 2em, 1200px);
    margin-inline: auto;
    text-align: center;
    padding-bottom: 1em;
    background-image: none;
  }

  /*======================================
           sp-スライドショー
======================================*/
  #ss {
    text-align: center;
    margin-right: auto;
    margin-left: auto;
    margin-bottom: 20px;
    position: relative;
    width: 100%;
  }

  #ss .slider img {
    border-radius: 1em;
    height: auto;
    width: 90%;
  }

  #ss li img {
    width: 100%;
    height: auto;
    max-height: 60vw;
    /*写真の大きさが揃うように高さを調整する*/
    object-fit: cover;
  }

  .slide_illust2 {
    width: 100%;
    position: absolute;
    bottom: 65px;
    left: 0px;
    z-index: 10;
    pointer-events: none;
  }

  /*====================================
        index　　　　　　
====================================*/

  #news {
    width: min(100% - 2em, 1200px);
    margin-inline: auto;
    margin-bottom: 3em;
    z-index: 4;

  }

  .kihon,
  .map {
    width: min(100% - 2em);
    margin-inline: auto;
    box-sizing: border-box;
    text-align: left;
  }

  .kihon {
    margin-bottom: 2em;
  }




  /*=====================================
　　　　　　園の概要
========================================*/


  #gaiyo .re_table th {
    white-space: nowrap;
    padding: 10px;
    border-radius: 7px;
    background-color: #FAE0E3;
    font-family: "Kosugi Maru", sans-serif;
    color: #663333;
  }

  #gaiyo .re_table td {
    padding: 10px;
    border-radius: 0px;
    background: none;
    color: #663333;
    padding-bottom: 2em;
  }

  .rinenbox .text_box {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 1em;
    line-height: 135%;
  }

  .rinenbox .photo_box {
    width: 100%;
    box-sizing: border-box;
    padding: 10px;
  }

  .rinenbox {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;


  }



  /*======================================
      園の生活
=====================================*/

  .dailybox {
    width: 100%;
    margin-bottom: 10px;
    background-color: #FFFFFF;
    border-radius: 30px;
    box-sizing: border-box;
    padding: 10px;
  }


  /*年間*/
  .ybox .photo {
    width: 100%;
    text-align: center;
    padding-top: 3em;
    margin-bottom: 1em;
  }

  .ybox .event {
    width: 100%;
    box-sizing: border-box;
    font-size: 1em;
  }


  /*======================================
            sp-ブログ
======================================*/

  #blog {
    width: 96%;
    max-width: 1200px;
    margin: 2em auto 2em auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: stretch;
  }

  #category {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 2em;
  }

  #blog_main {
    width: 100%;
    box-sizing: border-box;
  }
}

/*----------------------スマートフォンでの表示------------------------------------*/


@media screen and (max-width:480px) {
  .------sp_w480------------------------- {}

  /* スマートフォンで見たときは"sp"のclassがついた画像が表示される */

  body {
    font-size: 18px;
  }

  /*mainとboxエリア*/
  body {
    background-color: #FFF8F7;
    background-image: ;
    background-position: ;
    background-repeat: ;
    background-size: ;
  }



  /*園の特色*/

  .toku_copy {

    font-size: 1em;

  }



  /*----PDFリンク----*/
  .pdf {
    width: 100%;
    margin-inline: auto;
    box-sizing: border-box;
  }

  .pdf li {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 1em;
    background-color: #E0EAF1;
    border-radius: 10px;
    padding: 0.5em 0.5em 0.5em 0.5em;
  }

  .pdf li a {
    text-decoration: none;
    display: block;
    color: #009966;
    width: 100%;
    padding: 0.5em 0.5em 0.5em 0.5em;
    box-sizing: border-box;
    border-radius: 10px;
  }

  /*----デイリー----*/
  .dailybox table td {
    padding: 5px;
    font-size: 0.9em;
  }

  .dailybox table th {
    width: 2.5em;
    padding: 5px;
    text-align: right;
    font-size: 1.1em;
    font-weight: 400;
    line-height: 1.5;
    font-family: "M PLUS Rounded 1c", sans-serif;
    color: #B1C157;
  }


  /*-----年間行事-----*/
  .ybox li {
    margin-bottom: .7em;
    font-size: 1em;

    font-family: "Kosugi Maru", sans-serif;
  }



}

/*==========================フォント===========================================*/

.m-plus-rounded-1c-regular {
  font-family: "M PLUS Rounded 1c", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.kiwi-maru-regular {
  font-family: "Kiwi Maru", serif;
  font-weight: 400;
  font-style: normal;
}

.yusei-magic-regular {
  font-family: "Yusei Magic", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.yomogi-regular {
  font-family: "Yomogi", cursive;
  font-weight: 400;
  font-style: normal;
}

.stick-regular {
  font-family: "Stick", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.mochiy-pop-one-regular {
  font-family: "Mochiy Pop One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.kosugi-maru-regular {
  font-family: "Kosugi Maru", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.rocknroll-one-regular {
  font-family: "RocknRoll One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.zen-maru-gothic-regular {
  font-family: "Zen Maru Gothic", serif;
  font-weight: 400;
  font-style: normal;
}

.m-plus-1p-regular {
  font-family: "M PLUS 1p", sans-serif;
  font-weight: 400;
  font-style: normal;
}

/*=========================アニメーション===========================================*/

.fuwafuwa01 {
  animation: fuwafuwa01 2s infinite;
}

@keyframes fuwafuwa01 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, 15px);
  }
}

.fuwafuwa02 {
  animation: fuwafuwa02 2s infinite;
}

@keyframes fuwafuwa02 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, -15px);
  }
}

.fuwafuwa03 {
  animation: fuwafuwa03 3s infinite;
}

@keyframes fuwafuwa03 {

  0%,
  100% {
    transform: translate(0, 0);
  }

  50% {
    transform: translate(0, 20px);
  }
}

.yurayura {
  transform-origin: center bottom;
  animation: yurayura 3s linear infinite;
}

@keyframes yurayura {

  0%,
  100% {
    transform: rotate(10deg);
  }

  50% {
    transform: rotate(-10deg);
  }
}