/*--------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
# Generic
	- Normalize
	- Box sizing
# Base
	- Typography
	- Elements
	- Links
	- Forms
## Layouts
# Components
	- Navigation
	- Posts and pages
	- Comments
	- Widgets
	- Media
	- Captions
	- Galleries
# plugins
	- Jetpack infinite scroll
# Utilities
	- Accessibility
	- Alignments



--------------------------------------------------------------*/

/*--------------------------------------------------------------
# Generic
--------------------------------------------------------------*/

/* Normalize
--------------------------------------------- */

/*! normalize.css v8.0.1 | MIT License | github.com/necolas/normalize.css */

/* Document
	 ========================================================================== */

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

html {
    font-family: maru-maru-gothic-bsr-stdn, sans-serif;
    font-weight: 400;
    font-style: normal;
	font-size: 62.5%;
	line-height: 1.15;
	-webkit-text-size-adjust: 100%;
}

/* Box sizing
--------------------------------------------- */
*,
*::before,
*::after {
	box-sizing: inherit;
}

html {
	box-sizing: border-box;
}

/*--------------------------------------------------------------
# Base
--------------------------------------------------------------*/

/* Typography
--------------------------------------------- */
body,
button,
input,
select,
optgroup,
textarea {
	color: #333333;
	font-family:inherit;
	font-size: 1.45rem;
	line-height: 1.8;
	letter-spacing: 0.1em;
}
b,
strong {
	font-weight: bolder;
}

small {
	font-size: 80%;
}
blockquote {
	margin: 0 1.5em 1.6em;
	padding: 15px;
	border: 1px solid #e2e2e2;
	border-radius: 5px;
}
address {
	margin: 0 0 1.5em;
}
    
.pop-font {
    font-family: vdl-logomarupop-futoline, sans-serif;
    font-weight: 400;
    font-style: normal;
}

/* Elements
--------------------------------------------- */
body {
	background: #E1FAFF;
    overflow-x: hidden;
}
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}
dt {
	font-weight: 700;
}
dd {
	margin: 0 1.5em 1.5em;
}
/* Make sure embeds and iframes fit their containers. */
embed,
iframe,
object {
	max-width: 100%;
}
img {
	height: auto;
	max-width: 100%;
	vertical-align: bottom;
}
figure {
	margin: 1em 0;
}
figcaption {
	padding: 5px 0;
}
table {
	margin: 0 0 1.5em;
	width: 100%;
}
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}
/*SP用の要素を非表示*/
.pc_show {
	display: none !important;
}

/* Links
--------------------------------------------- */
a {
	color: #222;
    text-decoration: none;
}
a:visited {
	color: #222;
    text-decoration: none;
}
a:hover,
a:focus,
a:active {
	color: #222;
	text-decoration: none;
}
a:focus {
	outline: none;
}
a:hover,
a:active {
	outline: 0;
}
/* Forms
--------------------------------------------- */
button,
input[type="button"],
input[type="reset"],
input[type="submit"] {
	border: 1px solid;
	border-color: #ccc #ccc #bbb;
	border-radius: 3px;
	background: #e6e6e6;
	color: rgba(0, 0, 0, 0.8);
	line-height: 1;
	padding: 0.2em .5em 0.6em;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	border-color: #ccc #bbb #aaa;
}
button:active,
button:focus,
input[type="button"]:active,
input[type="button"]:focus,
input[type="reset"]:active,
input[type="reset"]:focus,
input[type="submit"]:active,
input[type="submit"]:focus {
	border-color: #aaa #bbb #bbb;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"],
textarea {
	color: inherit;
	border: 1px solid #ccc;
	border-radius: 3px;
	padding: 3px;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="number"]:focus,
input[type="tel"]:focus,
input[type="range"]:focus,
input[type="date"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="color"]:focus,
textarea:focus {
	color: #111;
}
select {
	border: 1px solid #ccc;
}
textarea {
	width: 100%;
}

/*--------------------------------------------------------------
# Layouts
--------------------------------------------------------------*/
main.contents_top {
	margin: 0 auto;
}

main .contents_page_inner {
	margin: 130px auto 50px;
	width: 92%;
    background-color: #fff;
    border-radius: 20px;
    padding: 0 5% 1.3em;
}
main .contents_page_inner.page_2col {
}
main .contents_page_inner.page_2col article {
}
main .contents_page_inner.page_2col aside {
}

/*要素をコンテナから開放*/
.breaking-out {
	margin-right: calc(50% - 50vw);
	margin-left: calc(50% - 50vw);
}
/*子要素を内側にプレス*/
.press-inside {
	padding-right: calc(50vw - 50%);
	padding-left: calc(50vw - 50%);
}
    
/*フェードイン用のcss*/
/*下からフェードイン*/    
.js-fade {
    opacity: 0;
    visibility: hidden;
    transform: translateY(50px);
    transition: opacity 1.5s,visibility 1.5s, transform 1.5s;
}

.scroll {
    opacity: 1;
    visibility: visible;
    transform: translateY(0px);
}
    
/*右からフェードイン*/
.js-fadeRight {
    opacity: 0;
    visibility: hidden;
    transform: translateX(80px);
    transition: opacity 1.5s,visibility 1.5s, transform 1.5s;
}
.js-fadeRight.scroll {
    opacity: 1;
    visibility: visible;
    transform: translateX(0px);
}


/*--------------------------------------------------------------
# Components
--------------------------------------------------------------*/

/* header
--------------------------------------------- */
.header {
    position: fixed;
    top: 10px;
    left: 20px;
    z-index: 1000;
}
.header_logo {
	background-color: #fff;
    border-radius: 5px;
    width: fit-content;
    box-shadow: 5px 5px 10px rgba(20, 20, 20, .2);
}
.header_logo a {
    display: block;
	padding: 20px 10px;
}
.site_title img {
	width: 80px;
}
.header_links {
	width: 100%;
}

/*検索*/
.search_wrap {
	margin: 10px auto 0;
	display: flex;
	justify-content: center;
	align-items: baseline;
	font-size: 1.3rem;

}
#sbox {
	margin: 0 1rem;
    padding: 0 7px;
    width:clamp(150px, 45vw , 350px);
    border: solid 1px #777;
    border-radius: 5px;
	font-size: 1.3rem;
}
#sbtn {
	/*width: 15%;*/
    /*font-size: 100%;*/
	padding: 0em .5em .4em;
    color: #777;
	font-size: 1.4rem;
    border: none;
    background: #fff;
	text-align: center;
}
#sbtn img {
	position: relative;
	top: .25em;
	left: -.15em;
	width: 17px;
	height: auto;
}

/* 文字サイズ */
.fontM { font-size: 1.6rem }
.fontL { font-size: 1.8rem }
 
 /*文字サイズボタン*/
.font_wrap {
	display: flex;
	align-items: baseline;
	justify-content: flex-end;
	margin-left: 2rem;
	font-size: 1.3rem;
}
.font_wrap .font_btn {
	margin-left: .5em;
	padding: .2rem .4rem .35rem;
	color: #fff;
	background: #4EA77D;
	border: 1px solid #777;
	border-radius: 3px;
}
.font_wrap .font_btn:hover {
	cursor: pointer;
}
.font_wrap .font_btn.large {
	font-size: 115%;
}
.font_wrap .font_btn.active {
	background: #2E7755;
}


.header_links ul.below {
	text-align: right;
}

@media print, screen and (max-width:1100px) { 
.header_links ul.below img {
	width: 230px;
}
}

/* Navigation
--------------------------------------------- */

/*ボタン外側*/
.openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: fixed;
	top: 0px;
	right: 8px;
	background:none;
	background-size: contain;
	cursor: pointer;
    width: 60px;
    height: 70px;
	z-index: 1000;
	background-color: #fff;
    border-radius: 0 0 5px 5px;
    box-shadow: 5px 5px 10px rgba(20, 20, 20, .2);
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 14px;
    height: 2px;
    border-radius: 2px;
	background: #707070;
  	width: 50%;
  }
.openbtn span:nth-of-type(1) {
	top:30px;	
}
.openbtn span:nth-of-type(2) {
	top:39px;
}
.openbtn span:nth-of-type(3) {
	top:48px;
}
/*
.openbtn span:nth-of-type(3)::after {
	content:"MENU";
	position: absolute;
	top:6px;
	left:-14px;
	width: 60px;
	text-align: center;
	color: #707070;
	font-size: 1.0rem;
	font-weight: 700;
	text-transform: uppercase;
}
*/


/*activeクラスが付与されると線が回転して×になり、メニュー⇒とじるに変更*/
.openbtn.active span:nth-of-type(1) {
    top: 33px;
    left: 14px;
    transform: translateY(6px) rotate(-45deg);
    width: 52%;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 45px;
    left: 14px;
    transform: translateY(-6px) rotate(45deg);
    width: 52%;
}
/*
.openbtn.active span:nth-of-type(3)::after {
	content:"CLOSE";
    transform: translateY(0) rotate(-45deg);
	position: absolute;
	top:8px;
	left:1px;
	width: 60px;
	text-align: center;
}
*/

/*ナビメニュー*/
.sp_nav {
    position: fixed;
    left: 0;
    top: 0;
    display: none;
    z-index: 11;
    background-color: #E1FAFF;
    width: 100%;
    height: 100%;
	overflow-y: auto;
}
    .sp_nav_body .header_logo {
        margin: 10px 20px;
    }

.sp_nav ul.sp_nav_menu {
	margin: 30px auto;
	padding: 30px 30px 0;
	width: 94%;
	background: #fff;
	border-radius: 6px;
    display: flex;
    flex-wrap: wrap;
}

/*リンクのスタイル*/
.sp_nav a,
.sp_nav a:hover,
.sp_nav a:active,
.sp_nav a:visited {
	color: #222;
	text-decoration: none;
	/*font-size: 100%;*/
	font-weight: 500;
	letter-spacing: 0.08em;
}

/*親メニュー*/
.sp_nav ul.sp_nav_menu > li {
	position: relative;
	font-size: 1.8rem;
    width: 50%;
    margin: 0 0 30px;
}
.sp_nav ul.sp_nav_menu li a {
	display: block;
	padding: 8px 5px 8px 10px;
}

/*子メニュー*/
.sp_nav ul.sp_nav_menu > li > ul.sub-menu {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}
.sp_nav ul.sp_nav_menu > li > ul.sub-menu li {
	margin-top: 5px;
	width: 49%;
	font-size: 1.4rem;
}

    .sp_nav_body .sp_nav_img {
        width: fit-content;
        margin: 0 auto;
    }

/* TOP　コンテンツ
--------------------------------------------- */
    .mv_container {
          margin: 100px 5% 0;
    }
    
.mv {
	width: 100%;
	height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.mv ul {
	order: 2;
	/*margin-top: clamp(255px,57vw,400px);*/
}

.mv ul li {
	background-color: #fff;
    padding: 5px 10px;
    border-radius: 10px;
    box-shadow: 5px 5px 10px rgba(20, 20, 20, .2);
    margin-bottom: 10px;
    width: fit-content;
    font-size: clamp(1.4rem, 3vw, 1.8rem);
}

.mv .mv_img_wrap {
	order: 1;
	position: relative;
	top: 0;
	left: 50%;
	width: 90%;
	max-width: 500px;
	height:  clamp(245px,64vw,380px);
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
}
.mv .mv_img_wrap img {
    margin: 0 auto;
    position: absolute;
}
.mv .mv_img_wrap img.float_img {
	z-index: 10;
}
        
.mv img.cloud {
    width: 90%;
    position: absolute;
    top: 110px;
    left: 50%;
    transform: translate(-50%, -50%);
}


/*今日の行事予定*/
    .today_event {
        background-color: #fff;
        margin: 20px 0px 50px;
        border-radius: 15px;
        width: 90vw;
        padding: 16px 30px 20px;
        position: relative;
        box-shadow: 5px 5px 10px rgba(20, 20, 20, .2);
    }
    
    .today_event h2 {
        position: relative;
        font-size: 1.8rem;
        padding-left: 6vw;
        margin: 0 0 10px;
    }
    
    .today_event h2::before {
        content: "●";
        color: #FF6B42;
        font-size: 1.8rem;
        position: absolute;
        top: 0px;
        left: 0px;
    }
    
    .today_event .title {
        font-size: clamp(1.4rem, 2vw, 1.6rem);
        margin-bottom: 5px;
    }
    
    .today_event .description {
        font-size: clamp(1.2rem, 1.5vw, 1.4rem);
    }

/*これからの行事予定*/
    .upcoming_events_container {
        margin: 0 5%;
    }
    
    .upcoming_events {
        background-color: #fff;
        border-radius: 20px;
        padding: 20px 30px;
        max-width: 1300px;
        margin: 0 auto 100px;
        box-shadow: 5px 5px 10px rgba(20, 20, 20, .2);
    }

    .upcoming_events h2 {
        position: relative;
        font-size: 1.8rem;
        padding-left: 6vw;
        margin: 0 0 10px;
    }
    
    .upcoming_events h2::before {
        content: "●";
        color: #FF9C50;
        font-size: 1.8rem;
        position: absolute;
        top: 0px;
        left: 0px;
    }
    
    .upcoming_events .event-list {
        display: flex;
        flex-direction: column;
        justify-content: space-between;
    }
        
    .upcoming_events .event-list li .date {
        font-size: clamp(4rem, 5vw, 8rem);
        color: #FF9C50;
    }
    
    .upcoming_events .event-list li .title {
        font-size: clamp(1.6rem, 2vw, 2.4rem);
    }
    
    .upcoming_events .event-list li .description {
        font-size: clamp(1.4rem, 1.8vw, 2rem);
    }

/*学童の特長*/
    .content_container1 {
        background-color: #F5F5F5;
        position: relative;
        padding: 50px 10px;
    }
    
    .content_container1::before {
        content: "";
        background-image: url("images/pages/content_container1_top.png");
        background-size: cover;
        position: absolute;
        width: 100%;
        height: 30px;
        top: -29px;
        left: 0;
    }
    
    .content_container1 #features {
        margin-top: 100px;
        padding: 50px 20px 80px;
        background-color: #fff;
        max-width: 1400px;
        margin: 0 auto 90px;
        border-radius: 30px;
        box-shadow: 5px 5px 10px rgba(20, 20, 20, .2);
    }
    
    .content_container1 #features h2 {
        font-size: clamp(3.2rem, 3vw, 4rem);
        text-align: center;
        margin: 0 auto 50px;
        position: relative;
        width: fit-content;
    }
    
/*
    .content_container1 #features h2::before {
        content: "";
        background-image: url("images/pages/paper_airplane.png");
        background-size: cover;
        position: absolute;
        max-width: 264px;
        max-height: 133px;
        top: -180%;
        left: -120%;
        width: 18vw;
        height: 9vw;
    }
*/
/*
    .content_container1 #features h2::after {
        content: "";
        background-image: url("images/pages/balloon01.png");
        background-size: cover;
        position: absolute;
        max-width: 142px;
        max-height: 235px;
        top: -150px;
        right: -200px;
        width: 15vw;
        height: 24vw;
    }
*/
    
    .floating-balloon {
        position: absolute;
        background-size: cover;
        transition: transform 0.5s ease-in-out;
    }
    
    .balloon01 {
        background-image: url("images/pages/balloon01.png");
        max-width: 100px;
        max-height: 167px;
        width: 22vw;
        height: 35vw;
        top: -150px;
        right: -18vw;
    }
        
    .content_container1 #features .features_text {
        max-width: 1200px;
        margin: 0 auto;
        padding: 0 5%;
    }
        
    .content_container1 #features .features_text p {
        margin-bottom: 20px;
    }
        
    .content_container1 .features_img {
        position: relative;
        top: -90px;
        left: 50%;
        transform: translate(-50%, -50%);
        max-width: 300px;
        max-height: 155px;
        width: 50vw;
    }

/*学童の一日*/
    .content_container1 #one_day {
        margin-top: 100px;
        padding: 50px 20px 50px;
        background-color: #fff;
        max-width: 1400px;
        margin: 0 auto 160px;
        border-radius: 30px;
        box-shadow: 5px 5px 10px rgba(20, 20, 20, .2);
    }
    
    .content_container1 #one_day .one_day_content {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    .content_container1 #one_day h2 {
        font-size: clamp(3.2rem, 3vw, 4rem);
        text-align: center;
        margin: 0 auto 40px;
        position: relative;
        width: fit-content;
    }
    
    .content_container1 #one_day .one_day_text {
        padding: 0 5%;
    }
    
/*
    .content_container1 #one_day h2::before {
        content: "";
        background-image: url("images/pages/balloon02.png");
        background-size: cover;
        position: absolute;
        max-width: 161px;
        max-height: 255px;
        top: -150px;
        left: -200px;
        width: 16vw;
        height: 25vw;
    }
*/
    
    .balloon02 {
        background-image: url("images/pages/balloon02.png");
        max-width: 100px;
        max-height: 158px;
        top: -150px;
        left: -20vw;
        width: 22vw;
        height: 34vw;
    }

    
    .content_container1 #one_day .timeline_block {
        margin: 20px 1%;
    }
    
    .content_container1 #one_day .timeline_block .after_school .title {
        width: fit-content;
        font-size: 2.8rem;
        color: #fff;
        background-color: #8CC63F;
        padding: 12px 35px;
        border-radius: 15px;
        position: relative;
        top: 70px;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
    }
    
    .content_container1 #one_day .timeline_block .after_school .title p {
        font-size: clamp(1.8rem, 2vw, 2.8rem);
    }
    
    .content_container1 #one_day .timeline_block .after_school .timeline {
        background-color: #FFFFF8;
        padding: 70px 3vw 3vw;
        position: relative;
        border-radius: 15px;
        box-shadow: 5px 5px 10px rgba(20, 20, 20, .2);
    }
    
    .content_container1 #one_day .timeline_block .after_school .timeline::after {
        content: "";
        background-image: url("images/pages/after_school_img.png");
        background-size: cover;
        max-width: 250px;
        max-height: 327px;
        position: absolute;
        top: 60%;
        left: 70%;
        width: 24vw;
        height: 32vw;
        z-index: 10;
    }
    
    .content_container1 #one_day .timeline_block .after_school .timeline ul {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .content_container1 #one_day .timeline_block .after_school .timeline ul li {
        margin-bottom: 4rem;
        position: relative;
        font-size: 1.6rem;
    }
    
    .content_container1 #one_day .timeline_block .after_school .timeline ul li.triangle::after {
        content: "";
        background-image: url("images/pages/triangle_green.png");
        background-size: cover;
        width: 12px;
        height: 11px;
        position: absolute;
        bottom: -30px;
        left: 22px;
        transform: translate(-50%, -50%);
    }
    
    .content_container1 #one_day .timeline_block .after_school .timeline ul li span {
        margin-left: 40px;
    }
    
    .content_container1 #one_day .timeline_block .all_day .title {
        width: fit-content;
        font-size: 2.8rem;
        color: #fff;
        background-color: #FF9C50;
        padding: 12px 35px;
        border-radius: 15px;
        position: relative;
        top: 70px;
        left: 50%;
        transform: translate(-50%, -50%);
        z-index: 10;
    }
    
    .content_container1 #one_day .timeline_block .all_day .title p {
        font-size: clamp(1.8rem, 2vw, 2.8rem);
    }
    
    .content_container1 #one_day .timeline_block .all_day .timeline {
        background-color: #FFFFF8;
        padding: 70px 3vw 3vw;
        position: relative;
        border-radius: 15px;
        box-shadow: 5px 5px 10px rgba(20, 20, 20, .2);
    }
    
    .content_container1 #one_day .timeline_block .all_day .timeline::after {
        content: "";
        background-image: url("images/pages/all_day_img.png");
        background-size: cover;
        max-width: 130px;
        max-height: 154px;
        position: absolute;
        bottom: -20px;
        left: 70%;
        width: 21vw;
        height: 25vw;
    }
    
    .content_container1 #one_day .timeline_block .all_day .timeline ul {
        max-width: 450px;
        margin: 0 auto;
    }
    
    .content_container1 #one_day .timeline_block .all_day .timeline ul li {
        margin-bottom: 4rem;
        position: relative;
        font-size: 1.6rem;
    }
    
    .content_container1 #one_day .timeline_block .all_day .timeline ul li.triangle::after {
        content: "";
        background-image: url("images/pages/triangle_orange.png");
        background-size: cover;
        width: 12px;
        height: 11px;
        position: absolute;
        bottom: -30px;
        left: 25px;
        transform: translate(-50%, -50%);
    }
    
    .content_container1 #one_day .timeline_block .all_day .timeline ul li span {
        margin-left: 40px;
    }

/*年間行事*/
.content_container1 #annual_events {
    margin-top: 100px;
    padding: 50px 20px 50px;
    background-color: #fff;
    max-width: 1400px;
    margin: 0 auto 0px;
    border-radius: 30px;
    box-shadow: 5px 5px 10px rgba(20, 20, 20, .2);
}

.content_container1 #annual_events h2 {
    font-size: clamp(3.2rem, 3vw, 4rem);
    text-align: center;
    margin: 0 auto 50px;
    position: relative;
    width: fit-content;
}

/*
.content_container1 #annual_events h2::before {
    content: "";
    background-image: url("images/pages/balloon03.png");
    background-size: cover;
    position: absolute;
    max-width: 202px;
    max-height: 260px;
    top: -170px;
    right: -280px;
    width: 17vw;
    height: 24vw;
}
*/
    
.balloon03 {
    background-image: url("images/pages/balloon03.png");
    max-width: 100px;
    max-height: 129px;
    top: -170px;
    right: -20vw;
    width: 25vw;
    height: 37vw;
}


.content_container1 #annual_events .annual_events_text {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}

.annual_events_content {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin: 60px 0 0px;
}
    
.annual_events_content .event01,
.annual_events_content .event02,
.annual_events_content .event03,
.annual_events_content .event04,
.annual_events_content .event05,
.annual_events_content .event06,
.annual_events_content .event07,
.annual_events_content .event08,
.annual_events_content .annual_event_img {
    width: 48%;
    box-sizing: border-box; /* ボックスサイズを考慮 */
    padding: 10px;
    margin: 0 auto;
}
    
/* 600px以下で1列に変更 */
@media (max-width: 600px) {
    .annual_events_content .event01,
    .annual_events_content .event02,
    .annual_events_content .event03,
    .annual_events_content .event04,
    .annual_events_content .event05,
    .annual_events_content .event06,
    .annual_events_content .event07,
    .annual_events_content .event08 {
        width: 100%;
        box-sizing: border-box; /* ボックスサイズを考慮 */
        padding: 10px;
        margin: 0 auto 30px;
    }
    
    .annual_events_content .annual_event_img {
        width: 100%;
        text-align: center;
    }
}
    
.annual_event .title {
    text-align: center;
    padding: 0 0 5px;
}

.event01 .title {
    border-bottom: 2px dashed #FF4471;
}

.event02 .title {
    border-bottom: 2px dashed #FFDD9A;
}

.event03 .title {
    border-bottom: 2px dashed #44E5FF;
}

.event04 .title {
    border-bottom: 2px dashed #4489FF;
}

.event05 .title {
    border-bottom: 2px dashed #058A24;
}

.event06 .title {
    border-bottom: 2px dashed #FFD31E;
}

.event07 .title {
    border-bottom: 2px dashed #FF4444;
}

.event08 .title {
    border-bottom: 2px dashed #44FF4A;
}

.annual_events_content .annual_event_img img {
    text-align: center;
}

.annual_event .title {
    font-size: clamp(1.4rem, 1.5vw, 1.8vw);
}
    
.annual_event .description {
    padding: 10px 5px 0px;
    font-size: clamp(1.4rem, 1vw, 1.6vw);
}
    
    
/*年間行事下の波線*/
.content_container1::after {
    content: "";
    background-image: url("images/pages/content_container1_bottom.png");
    background-size: cover;
    position: absolute;
    width: 100%;
    height: 110px;
    bottom: -108px;
    left: 0;
}

/*お知らせ～footerまで*/
.content_container2 {
    background-color: #FFFEEB;
    padding: 200px 5% 50px;
    overflow-x: hidden;
}

/*お知らせ*/
section#news {
	padding: 50px 20px 50px;
    background-color: #fff;
    max-width: 1400px;
    margin: 0 auto 160px;
    border-radius: 30px;
    position: relative;
    box-shadow: 5px 5px 10px rgba(20, 20, 20, .2);
}
    
section#news::after {
	content: "";
    background-image: url("images/pages/news_img.png");
    background-size: cover;
    width: 56px;
    height: 154px;
    position: absolute;
    bottom: 30px;
    right: -47px;
}
    
.content_container2 section#news h2 {
    font-size: clamp(3.2rem, 3vw, 4rem);
    text-align: center;
    margin: 0 auto 70px;
    position: relative;
    width: fit-content;
}
    
/*
.content_container2 section#news h2::before {
    content: "";
    background-image: url("images/pages/balloon04.png");
    background-size: cover;
    position: absolute;
    max-width: 201px;
    max-height: 296px;
    top: -170px;
    left: -230px;
    width: 15vw;
    height: 23vw;
}
*/

.balloon04 {
    background-image: url("images/pages/balloon04.png");
    max-width: 100px;
    max-height: 147px;
    top: -150px;
    left: -18vw;
    width: 24vw;
    height: 32vw;
}


section#news .news_container {
	display: flex;
    flex-direction: column;
    max-width: 1200px;
    margin: 0 auto;
}

/*過去一覧*/
.news_more {
    order: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: fit-content;
    margin: 50px auto 0;
}
    
.news_more a {
    position: relative;
    padding-right: 50px;
    text-align: center;
}
    
.news_more a::after {
    content: "";
    background-image: url("images/pages/arrow_green.png");
    background-size: cover;
    position: absolute;
    width: 45px;
    height: 45px;
    bottom: -32px;
    right: -30px;
    transform: translate(-50%, -50%);
    background-color: transparent;
    border-radius: 50%;
    transition: .2s background-color;
}
    
.news_more a:hover::after {
    background-color: #8CC63F;
}
    
/*アイキャッチ無しの場合*/
ul.news_wrapper {
	width: 100%;
    order: 1;
}
    
ul.news_wrapper li.news_box {
	border-bottom: 1px dashed #707070;
}
    
ul.news_wrapper li.news_box:first-child {
	border-top: 1px dashed #707070;
}
    
ul.news_wrapper li.news_box a {
    text-decoration: none;
    padding: 20px 10px;
    display: block;
}

/*
ul.news_wrapper li.news_box a::after {
	content: "";
    background-image: url("images/pages/arrow_orange.png");
    background-size: cover;
    width: 45px;
    height: 45px;
    position: absolute;
    top: 50%;
    right: 1em;
    transform: translate(-50%, -50%);
    background-color: transparent;
    border-radius: 50%;
    transition: .5s background-color;
}
*/

ul.news_wrapper li.news_box a:hover::after {
    background-color: #FF6B42;
}

/*
ul.news_wrapper li.news_box a time.date span {
	border-right: 1px solid #202020;
    padding: 5px 30px 5px 0;
    transition: .5s all;
}
*/

ul.news_wrapper li.news_box a .title {

}


/*リンク色*/
ul.news_wrapper li.news_box a:hover,
ul.news_wrapper li.news_box a:active {
	color: #FF6B42;
	transition: all .5s;
}
img.mark_new {
	position: relative;
	top: -.5em;
    right: 0px;
}

/*保育所概要*/
section#overview {
	padding: 50px 20px 100px;
    background-color: #fff;
    max-width: 1400px;
    margin: 0 auto 160px;
    border-radius: 30px;
    position: relative;
    box-shadow: 5px 5px 10px rgba(20, 20, 20, .2);
}
    
section#overview::after {
	content: "";
    background-image: url("images/pages/overview_img.png");
    background-size: cover;
    max-width: 227px;
    max-height: 133px;
    position: absolute;
    bottom: -3px;
    right: 50px;
    width: 38vw;
    height: 22vw;
}
    
.content_container2 section#overview h2 {
    font-size: clamp(3.2rem, 3vw, 4rem);
    text-align: center;
    margin: 0 auto 50px;
    position: relative;
    width: fit-content;
	z-index: 10;
}
    
/*.content_container2 section#overview h2::before {
    content: "";
    background-image: url("images/pages/balloon05.png");
    background-size: cover;
    position: absolute;
    max-width: 178px;
    max-height: 308px;
    top: -170px;
    right: -230px;
    width: 12vw;
    height: 21vw;
}*/
    
.balloon05 {
    background-image: url("images/pages/balloon05.png");
    max-width: 100px;
    max-height: 173px;
    top: -170px;
    right: -20vw;
    width: 21vw;
    height: 35vw;
}

section#overview .overview_img {
	margin: 0 auto 20px;
	text-align: center;
}
section#overview .overview_img img {
	border-radius: 10px;
}
/*section#overview .overview_img.flex_2col {
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	max-width: 1000px;
}
section#overview .overview_img.flex_2col figure {
	width: 48%;
}*/
    
    .content_container2 section#overview #tablepress-1 {
        max-width: 1000px;
        margin: 0 auto;
    }
    
    .content_container2 section#overview #tablepress-1 tbody tr td {
        border-top: 1px dashed #707070;
        padding: 1.5em .5em;
    }
	.content_container2 section#overview #tablepress-1 tbody tr td.column-1 {
		width: clamp(75px, 15vw, 150px);
	}
    
    .content_container2 section#overview #tablepress-1 tbody tr:last-child td {
        border-bottom: 1px dashed #707070;
    }

/*アクセス*/
section#access {
    padding: 50px 20px 50px;
    background-color: #fff;
    max-width: 1400px;
    margin: 0 auto 10px;
    border-radius: 30px;
    position: relative;
    box-shadow: 5px 5px 10px rgba(20, 20, 20, .2);
}

.content_container2 section#access h2 {
    font-size: clamp(3.2rem, 3vw, 4rem);
    text-align: center;
    margin: 0 auto 50px;
    position: relative;
    width: fit-content;
}

/*
.content_container2 section#access h2::before {
    content: "";
    background-image: url("images/pages/balloon06.png");
    background-size: cover;
    position: absolute;
    max-width: 166px;
    max-height: 284px;
    top: -170px;
    left: -230px;
    width: 15vw;
    height: 24vw;
}
*/
    
.balloon06 {
    background-image: url("images/pages/balloon06.png");
    max-width: 100px;
    max-height: 171px;
    top: -170px;
    left: -20vw;
    width: 24vw;
    height: 41vw;
}


.content_container2 section#access #tablepress-2 {
    max-width: 1000px;
    margin: 0 auto 50px;
}

.content_container2 section#access #tablepress-2 tbody tr td {
    border-top: 1px dashed #707070;
    padding: 2em 1em;
}
    
.content_container2 section#access #tablepress-2 tbody tr.row-2 td {
    border-bottom: 1px dashed #707070;
}
    
.content_container2 section#access .map {
    position: relative;
    width: fit-content;
    margin: 0 auto;
}
    
.content_container2 section#access .map::after {
    content: "";
    background-image: url("images/pages/access_img.png");
    background-size: cover;
    max-width: 353px;
    max-height: 125px;
    position: absolute;
    top: -13vw;
    right: 2vw;
    width: 45vw;
    height: 16vw;
}
    
.content_container2 section#access iframe {
    margin: 0 auto;
    display: block;
    position: relative;
}

    
/* Posts and pages
--------------------------------------------- */
.entry-content p {
	margin-bottom: 1.8em;
}
.entry-content ul,
.entry-content ol {
	margin: 0 0 1.5em 1em;
}

.entry-content ul {
	list-style: disc;
}

.entry-content ol {
	list-style: decimal;
}

.entry-content li > ul,
.entry-content li > ol {
	margin-bottom: 0;
	margin-left: 1.2em;
}
.entry-content .entry_meta {
	margin: 0 10px 20px;
	text-align: right;
	font-size: 1.6rem;
}
.entry-content a,
.entry-content a:visited {
	color: #0a89a7;
	text-decoration: underline;
}
.entry-content a:focus,
.entry-content a:active {
	text-decoration: none;
}

.sticky {
	display: block;
}

.post,
.page {
	margin: 0;
}

.updated:not(.published) {
	display: none;
}

/*.page-content,
.entry-content,
.entry-summary {
	margin: 1.5em 0 0;
}
*/
.page-links {
	clear: both;
	margin: 0 0 1.5em;
}


/* Posts and pages（見出し）
--------------------------------------------- */
/* H1 */
h1.entry-title,
h1.category_name {
	position: relative;
	margin: 0 0 30px;
	padding: 2em 15px .7em;
	font-size: clamp(2.5rem, 7vw, 3.5rem);
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.08em;
}
.single h1.entry-title {
	font-size: clamp(2.0rem, 4vw, 2.7rem);
}
/* H2 */
.entry-content h2 {
	margin: 20px 0;
	padding: 8px 5px;
    font-size: 2.0rem;
	font-weight: 700;
}
.entry-content h2:before {
	content: "●";
	color: #FF6B42;
	position: relative;
	left: -8px;
}
/* H3 */
.entry-content h3 {
	margin: 8px 0;
	padding: 8px .5em;
	font-size: 1.8rem;
	font-weight: 500;
}
.entry-content h3:before {
	content: "〇";
	color: #FF6B42;
	position: relative;
	left: -3px;
}

/* Posts and pages（ページナビ）
--------------------------------------------- */
    .pagenation_block {
        width: fit-content;
        margin: 50px auto;
    }
    
    .pagenation_block {
        display: flex;
        column-gap: 30px;
    }
        
    .pagenation_block a.page-numbers,
    .pagenation_block .page-numbers,
    .pagenation_block span.page-numbers {
        align-content: center;
    }
    
    .pagenation_block a.prev img,
    .pagenation_block a.next img {
        background-color: transparent;
        border-radius: 50%;
        transition: .2s background-color;
    }
    
    .pagenation_block a.prev:hover img,
    .pagenation_block a.next:hover img {
        background-color: #8CC63F;
    }
    
    .pagenation_block a.page-numbers:hover {
        color: #8CC63F;
    }

/* Posts and pages（検索結果ぺージ）
--------------------------------------------- */
ul.search_result {
	list-style: disc;
	padding-left: 20px;
}
ul.search_result li {
	margin-bottom: 0.6em;
}


/* Comments
--------------------------------------------- */
.comment-content a {
	word-wrap: break-word;
}

.bypostauthor {
	display: block;
}

/* sidebar
--------------------------------------------- */
/* ▼side（これまでのお知らせ） */
aside.past_entry  {
	background: #fff;
	border: 1px solid #ccc;
}
.past_entry h2 {
	padding: 15px 5px;
	font-size: 95%;
	font-weight: 500;
	text-align: center;
	background: #EFEFEF;
}
.past_entry ul.past_entry_list {
	margin: 4%;
}
.past_entry ul li {
	position: relative;
	display: flex;
	flex-direction: column;
	margin-bottom: 13px;
	padding:0 5px 13px 10px;
	border-bottom: 1px dotted #777;
}
.past_entry ul li time {
	order: 1;
	margin-bottom: 5px;
	font-size: 95%;
	font-weight: 500;
}
.past_entry ul li a {
	order: 2;
	font-size: 90%;
}
.past_entry .more {
	margin: 15px 10px;
	text-align: right;
}


/* Widgets
--------------------------------------------- */
/* ▼side（これまでのお知らせ） */
.recent_entry_list section {
	padding: 15px 20px;
	background: #fff6e9;
	border-radius: 10px;
	border: 1px solid #efe4d3;
}
.recent_entry_list a,
.recent_entry_list a:visited {
	color: #222;
	text-decoration: none;
}
.recent_entry_list a:hover,
.recent_entry_list a:active {
	color: #f99ea1;
	transition: all .2s;
}

.recent_entry_list h2 {
	margin: 10px 0 20px;
	font-size: 110%;
	font-weight: 500;
	text-align: center;
}
.recent_entry_list ul li {
	position: relative;
	display: flex;
	flex-direction: column;
	margin-bottom: 10px;
	padding: 0 8px 10px 15px;
	border-bottom: 1px dotted #555;
}
.recent_entry_list ul li:before {
	content: "●";
	position: absolute;
	top: .5em;
	left: 1px;
	color: #ffbbbd;
	font-size: .8rem;
	
}
.recent_entry_list ul li time {
	order: 1;
	margin-bottom: 3px;
	font-size: 85%;
	font-weight: 500;
}
.recent_entry_list ul li a {
	order: 2;
	font-size: 90%;
}


.widget {
	margin: 0 0 1.5em;
}

.widget select {
	max-width: 100%;
}

/* Media
--------------------------------------------- */
.page-content .wp-smiley,
.entry-content .wp-smiley,
.comment-content .wp-smiley {
	border: none;
	margin-bottom: 0;
	margin-top: 0;
	padding: 0;
}

/* Make sure logo link wraps around logo image. */
.custom-logo-link {
	display: inline-block;
}

/* Captions
--------------------------------------------- */
.wp-caption {
	margin-bottom: 1.5em;
	max-width: 100%;
}

.wp-caption img[class*="wp-image-"] {
	display: block;
	margin-left: auto;
	margin-right: auto;
}

.wp-caption .wp-caption-text {
	margin: 0.8075em 0;
}

.wp-caption-text {
	text-align: center;
}

/* Galleries
--------------------------------------------- */
.gallery {
	margin-bottom: 1.5em;
	display: grid;
	grid-gap: 1.5em;
}

.gallery-item {
	display: inline-block;
	text-align: center;
	width: 100%;
}

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

.gallery-columns-3 {
	grid-template-columns: repeat(3, 1fr);
}

.gallery-columns-4 {
	grid-template-columns: repeat(4, 1fr);
}

.gallery-columns-5 {
	grid-template-columns: repeat(5, 1fr);
}

.gallery-columns-6 {
	grid-template-columns: repeat(6, 1fr);
}

.gallery-columns-7 {
	grid-template-columns: repeat(7, 1fr);
}

.gallery-columns-8 {
	grid-template-columns: repeat(8, 1fr);
}

.gallery-columns-9 {
	grid-template-columns: repeat(9, 1fr);
}

.gallery-caption {
	display: block;
}
    
/* お知らせ一覧
--------------------------------------------- */
.category-news .contents_page_inner .balloon02 {
    top: -100px;
    left: 4vw;
}
    
/* お知らせ個別ページ
--------------------------------------------- */
.single .contents_page_inner .balloon03 {
    top: -100px;
    right: -4vw;
}
    
.back {
    text-align: center;
    margin: 50px 0;
} 

.back a {
    padding-right: 60px;
    position: relative;   
    transition: .2s all;
} 

.back a:hover {
    color: #8CC63F;
} 

.back a::after {
    content: "";
    background-image: url("images/pages/arrow_green.png");
    background-size: cover;
    position: absolute;
    width: 45px;
    height: 45px;
    bottom: -12px;
    right: -20px;
    background-color: transparent;
    border-radius: 50%;
    transition: .2s background-color;
}

.back a:hover::after {
    background-color: #8CC63F;
}

/* 欠席・遅刻連絡
--------------------------------------------- */
.btn_club a,
.btn_club a:visited {
	display: inline-block;
	padding: 10px;
	width: 250px;
	color: #fff;
	font-size: 115%;
	text-decoration: none;
	background: #50c0d6;
	border-radius: 15px;
	transition: all .2s;
}
.btn_club a:focus,
.btn_club a:active {
	background: #059FBD;
	text-decoration: none;
}

.inquiry_list {
	margin: 70px 0 0;
}

.inquiry_list dd,
.inquiry_list dd {
	margin: 0 0 2em;
}

.inquiry_list p {
	display: flex;
	flex-wrap: wrap;
	margin-bottom: .5em;
}

.inquiry_list p span.con_notification label {
	display: flex;
	width: 70px;
}

.inquiry_list p span.con_notification label input {
	width: auto;
}

.inquiry_list p span.con_notification label span {
	padding: 0 0 2px 10px;
}

.inquiry_list p span.span_text {
	margin: 0 5px;
	align-content: center;
}

.inquiry_list dd.children_name p input.con_gakunen {
	width: 50px;
	text-align: end;
}
.inquiry_list dd p input.con_month,
.inquiry_list dd p input.con_day {
	width: 50px;
}


.inquiry_list dd.children_name p input.con_namae,
.inquiry_list dd p input.con_parent {
	width: 200px;
}

.inquiry_list p span input,
.inquiry_list p span textarea {
	border: none;
	background-color: #f5f5f5;
	padding: 10px;
	border-radius: 10px;
	/*width: 80%;*/
	max-width: 600px;
}

.inquiry_list p span input.con_address,   
.inquiry_list p span input.con_jusyo,
.inquiry_list p span input.con_inquiry,
.inquiry_list p span textarea {
	width: 100%;
}

.inquiry_list .must {
	display: block;
	flex-grow: 0;
	flex-shrink: 0;
	padding: 2px max(6px,.44vw) 4px;
	margin: 0 0 2px 10px;
	font-size: 12px;
	line-height: 24px;
	border-radius: max(6px,.44vw);
	color: #fff;
	background-color: #cf1d05;
	height: 30px;
}

.inquiry_list #agreement input,
.inquiry_list #agreement input#tsugi {
	border: 2px solid #8CC63F;
	padding: 20px 40px;
	background-color: #fff;
	transition: all .2s;
}

.inquiry_list #agreement input#modoru {
	border: 2px solid #f5f5f5;
	padding: 20px 40px;
	background-color: #fff;
	transition: all .2s;
}

.inquiry_list #agreement input:focus,
.inquiry_list #agreement input:active,
.inquiry_list #agreement input#tsugi:focus,
.inquiry_list #agreement input#tsugi:active {
	background-color: #8CC63F;
	color: #fff;
}

.inquiry_list #agreement input#modoru:focus,
.inquiry_list #agreement input#modoru:active {
	background-color: #f5f5f5;
}

/* 保護者様一斉メール登録フォーム
--------------------------------------------- */
#mailpoet_form_1 form.mailpoet_form {
	padding: 0 10px !important;
}
.mailpoet_paragraph label {
	margin: 0 auto 5px 0;
}
.mailpoet_paragraph input.mailpoet_text {
	margin: 0 auto 10px 0 !important;
	background-color: #f5f5f5;
	padding: 10px;
	border-radius: 10px;
	border: none;
}
.mailpoet_paragraph input#form_email_1 {
}
.mailpoet_paragraph input.mailpoet_submit {
	margin: 30px auto 10px !important;
	border: 2px solid #8CC63F;
	padding: 10px 30px !important;
	border-radius: 10px;
	display: block;
	transition: all .4s;
}
.mailpoet_paragraph input.mailpoet_submit:hover {
	background-color: #8CC63F;
	color: #fff;
}

.mailpoet_form.mailpoet_form_successfully_send .mailpoet_validate_success {
	
}

/* Posts and pages（一斉メール関連ページ）
--------------------------------------------- */
/*登録解除ぺージ*/
.page-id-243 .link {
	text-align: center;
}


/* footer
--------------------------------------------- */
#site_footer {
	background: #fffeeb;
    position: relative;
    padding: 5vw 20px 70px;
}
    
#site_footer::after {
	content: "";
    background-image: url("images/footers/footer_img.png");
    background-size: cover;
    max-width: 239px;
    max-height: 141px;
    position: absolute;
    bottom: 30vw;
    left: 5vw;
    width: 22vw;
    height: 13vw;
}
    
.footer_innerwrap .footer_nav_menu {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: center;
    font-size: clamp(1.4rem, 1.5vw, 1.8rem);
    margin: 0 auto;
	padding: 60px 6vw 40px;
	max-width: 1400px;
    background-color: #fff;
    border-radius: 20px;
    box-shadow: 5px 5px 10px rgba(20, 20, 20, .2);
}
    
.footer_innerwrap .footer_nav_menu .nav_menu {
    margin-bottom: 30px;
    width: 145px;
}
    
.footer_innerwrap .footer_nav_menu .nav_menu a {
    position: relative;
    transition: .2s all;
}
    
.footer_innerwrap .footer_nav_menu .nav_menu a:hover::after {
    content: "●";
    font-size: 1.2rem;
    position: absolute;
    bottom: -30px;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: .5;
}

.footer_innerwrap img {
	display: block;
    margin: 50px auto;
}

/*コピーライト*/
#copyright {
	padding: 20px 0 10px;
	font-size: .9rem;
	text-align: center;
	letter-spacing: 0.2em;
}
#copyright a,
#copyright a:visited {
	color: #222;
	text-decoration: none;
}
#copyright a:hover,
#copyright a:active {
	text-decoration: underline;
}

/*下部固定メニュー*/
.footer_area {
	display: flex;
	justify-content: space-around;
	position: fixed;
	padding:9px 0 4px;
	bottom: 0;
	width: 100%;
	z-index: 10000;
}
.footer_area .footer_area_inner {
	width: 48%;
    position: relative;
    top: 8px;
    /*margin: 0px auto;*/
    /*padding: 5px 0 0;*/
	/*width:28%;*/
}
    
a.tel_btn {
	display: block;
    background-color: #FF9C50;
    color: #fff;
    text-align: center;
	/*max-width: 100%;*/
	text-decoration: none;
    padding: 18px 0 20px;
    border-radius: 5px 5px 0 0;
}

a.contact_btn {
	display: block;
    background-color: #FF6B42;
    color: #fff;
    text-align: center;
	/*max-width: 100%;*/
	text-decoration: none;
    padding: 18px 0 20px;
    border-radius: 5px 5px 0 0;
}



/*--------------------------------------------------------------
# Plugins
--------------------------------------------------------------*/

/* Jetpack infinite scroll
--------------------------------------------- */

/* Hide the Posts Navigation and the Footer when Infinite Scroll is in use. */
.infinite-scroll .posts-navigation,
.infinite-scroll.neverending .site-footer {
	display: none;
}

/* Re-display the Theme Footer when Infinite Scroll has reached its end. */
.infinity-end.neverending .site-footer {
	display: block;
}

/*--------------------------------------------------------------
# Utilities
--------------------------------------------------------------*/

/* Accessibility
--------------------------------------------- */

/* Text meant only for screen readers. */
.screen-reader-text {
	border: 0;
	clip: rect(1px, 1px, 1px, 1px);
	clip-path: inset(50%);
	height: 1px;
	margin: -1px;
	overflow: hidden;
	padding: 0;
	position: absolute !important;
	width: 1px;
	word-wrap: normal !important;
}

.screen-reader-text:focus {
	background-color: #f1f1f1;
	border-radius: 3px;
	box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
	clip: auto !important;
	clip-path: none;
	color: #21759b;
	display: block;
	font-size: 0.875rem;
	font-weight: 700;
	height: auto;
	left: 5px;
	line-height: normal;
	padding: 15px 23px 14px;
	text-decoration: none;
	top: 5px;
	width: auto;
	z-index: 100000;
}

/* Do not show the outline on the skip link target. */
#primary[tabindex="-1"]:focus {
	outline: 0;
}

/* Alignments
--------------------------------------------- */
.alignleft {

	/*rtl:ignore*/
	float: left;

	/*rtl:ignore*/
	margin-right: 1.5em;
	margin-bottom: 1.5em;
}

.alignright {

	/*rtl:ignore*/
	float: right;

	/*rtl:ignore*/
	margin-left: 1.5em;
	margin-bottom: 1.5em;
}

.aligncenter {
	clear: both;
	display: block;
	margin-left: auto;
	margin-right: auto;
	margin-bottom: 1.5em;
}

/*PDFアイコン*/
a[href $='.pdf'] {
    background:url(../nijiirobase/icon/ico_pdf.gif) no-repeat right 70%;
    padding:0 18px 0 0;
}
a[href $='.pdf'] a {
    text-decoration:none;
}

a[href $='.pdf'] a:hover {
    text-decoration:none;
}
}
