/*--------------------------------------------------------------
>>> 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: "dnp-shuei-gothic-gin-std", sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 97%;
	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: 100%;
	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;
}
/* Elements
--------------------------------------------- */
body {
	/*background: #E7F9EA;*/
	background: #F5FFF7;
	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;
}
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: #0066c0;
}
a:visited {
	color: #649ACB;
}
a:hover,
a:focus,
a:active {
	color: #014786;
	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: 0 auto 50px;
	width: 92%;
}
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%);
}

/* アニメーション
--------------------------------------------- */
/*アニメーション*/
.toTop {
	opacity: 0;
	visibility: hidden;
	transform: translateY(30px);
	transition: opacity 1s, visibility 1s, transform .5s;
	transition-timing-function: ease-out;
}

/*きっかけで付与するクラス*/
.is-inview {
	opacity: 1;
	visibility: visible;
	transform: translate(0);
}


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

/* header
--------------------------------------------- */
.header {
	/*background: #FFEECC;*/
}
.header_inner {
	display: flex;
	align-items: center;
	margin: 0 auto;
	padding: 20px 0;
	width: 95%;
}
.site_title {
	width: 76%;
    max-width: 300px;
}
.site_title img {
}
.header_links {
	display: none;
}


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

/*ボタン外側*/
.openbtn{
	/*ボタン内側の基点となるためrelativeを指定。
追従するナビゲーションの場合はfixed＋top、rightといった位置をセットで指定*/
	position: fixed;
	top: 10px;
	right: 10px;
	background:#fff;
	background-size: contain;
	cursor: pointer;
    width: 58px;
    height:58px;
	z-index: 20;
	
}

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 11px;
    height: 4px;
    border-radius: 2px;
	background: #207D4C;
  	width: 60%;
  }
.openbtn span:nth-of-type(1) {
	top:12px;	
}
.openbtn span:nth-of-type(2) {
	top:21px;
}
.openbtn span:nth-of-type(3) {
	top:30px;
}
.openbtn span:nth-of-type(3)::after {
	content:"MENU";/*3つ目の要素のafterにメニュー表示を指定*/
	position: absolute;
	top:6px;
	left:-12px;
	width: 60px;
	text-align: center;
	color: #207D4C;
	font-size: 70%;
	font-weight: 700;
	text-transform: uppercase;
}


/*activeクラスが付与されると線が回転して×になり、メニュー⇒とじるに変更*/
.openbtn.active span:nth-of-type(1) {
    top: 15px;
    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: 27px;
    left: 14px;
    transform: translateY(-6px) rotate(45deg);
    width: 52%;
}
.openbtn.active span:nth-of-type(3)::after {
	content:"CLOSE";/*3つ目の要素のafterにとじる表示を指定*/
    transform: translateY(0) rotate(-45deg);
	position: absolute;
	top:7px;
	left:2px;
	width: 60px;
	text-align: center;
}

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

.sp_nav_wrap{
    display: flex;
    justify-content: center;
	padding: 0 0 20px;
    width: 100%;
}
.sp_nav ul.sp_nav_menu {
	margin: 0 auto;
	padding: 30px 15px 10px;
	width: 85%;
	max-width: 360px;
	border-radius: 6px;
}
.sp_nav ul.sp_nav_menu li {
	margin-bottom: 12px;
}
.sp_nav ul.sp_nav_menu li a {
	position: relative;
	display: block;
	padding: 3px 0 3px 1.8em;
}
.sp_nav ul.sp_nav_menu li a:before {
	content: "";
	display: inline-block;
	position: absolute;
	left: 0;
	top: 50%;
	-webkit-transform : translateY(-50%);
	transform : translateY(-50%);
	background: url("images/headers/navi_list.svg")no-repeat;
	background-size: contain;
	width: 100%;
    height: 1.2em;	
}
.sp_nav ul.sp_btn_wrap {
	margin: 0 auto;
	width: 209px;
}
.sp_nav ul.sp_btn_wrap li {
	margin-bottom: 10px;
	text-align: right;
}


/*リンクのスタイル*/
.sp_nav a,
.sp_nav a:hover,
.sp_nav a:active,
.sp_nav a:visited {
	color: #5E4141;
	font-size: clamp(113%, 3.7vw, 125%);
	text-decoration: none;
	font-weight: 700;
	letter-spacing: 0.1em;
}


/* TOP　コンテンツ
--------------------------------------------- */
h2.h2_top {
	margin: 30px 8vw;
	text-align: center;
}

.mv {
	width: 100%;
	height: 450px;
	background: url("images/mv/mv02.webp")no-repeat;
	background-position: center;
	background-size: cover;
}
.mv .slider img {
	height: 450px;
	width: auto;
}
.slider {
    opacity: 0;
    transition: 2s;
}
.slick-initialized {
    opacity: 1;
}
.mv .mv_txt {
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
    top: 17%;
    right: 14%;
	background-size: contain;
	background-position: center top;
	width: 55%;
	height: 27%;
}
.mv .mv_txt p {

}

/* TOP　コンセプト
--------------------------------------------- */
section.concept {
	padding-top: 30px;
	padding-bottom: 30px;
}
section.concept .txt_wrap {
	margin: 0 auto 20px;
	padding-top: 100px;
	width: 90%;
	background: url("images/pages/sakayo_mark.svg")no-repeat;
	background-position: center top;
	background-size: auto;
}
section.concept .txt_wrap h2 {
	padding: 8px 0;
}
section.concept .txt_wrap p {
	padding: 13px 10px 0 0;
}

/* TOP　お知らせ
--------------------------------------------- */
section.news {
	padding-top: 30px;
	padding-bottom: 40px;
	background: #fff url("images/pages/osirase_bg.png")repeat;
}
/*アイキャッチ有りの場合*/
ul.news_wrapper {
	display: flex;
	flex-wrap: wrap;
	margin: 40px auto 0;
	width: 95%;
	max-width: 650px;
}
li.news_box {
	margin-bottom: 5.5%;
	margin-right: 3%;
	width: calc((100% - 3%) / 2);	
	font-size: clamp(80%, 1vw,100%);
}
li.news_box:nth-child(2n) {
	margin-right: 0;
}
li.news_box > a {
	display: block;
}
/*アイキャッチ画像*/
li.news_box .news_thumb {
	overflow: hidden;
	aspect-ratio: 4/3;
	margin-bottom: 10px;
}
li.news_box .news_thumb img {
	width: 100%;
    height: 100%;
    object-fit: cover;
	border: 1px solid #e5e4e4;
    border-radius: 5px;
}
/*投稿タイトル*/
li.news_box p.title {
	padding-bottom: 5px;
	color: #5E4141;
	font-size: 105%;
	line-height: 1.4;
}
/*投稿日*/
li.news_box .date {
	display: inline-block;
	margin-right: 10px;
	color: #555555;
	font-size: 83%;
	vertical-align: bottom;

}
/*投稿カテゴリー*/
li.news_box .catname {
	display: inline-block;
	padding: 0 1em;
	color: #fff;
	font-size: 70%;
	border-radius: 30px;
	background: #8F6B6B;
}

/*リンク色*/
ul.news_wrapper li.news_box a,
ul.news_wrapper li.news_box a:visited {
	text-decoration: none;
}
#page ul.news_wrapper li.news_box a:hover img,
#page ul.news_wrapper li.news_box a:active img {
	opacity: 1;
}
img.mark_new {
	position: relative;
	top: -.25em;
    right: 0px;
	width: 33px;
}

/*過去一覧*/
.news_more {
	margin: 20px 2vw 0;
	text-align: center;
}
/* TOP　紹介
--------------------------------------------- */
section.introduction {
	padding-top: 30px;
	padding-bottom: 40px;
}
section.introduction .firsttxt {
	margin: 0 7vw;
	text-align: center;
}
section.introduction .firsttxt p {
	display: inline-block;
	text-align: left;
}

section.introduction ul {
	display: flex;
	flex-wrap: wrap;
	margin: 40px auto 0;
    width: 96%;
}
section.introduction ul li {
	margin-bottom: 5%;
	margin-right: 1%;
	width: calc((100% - 1%) / 2);	
}
section.introduction ul li:nth-child(2n) {
	margin-right: 0;
}
section.introduction ul li a {
	display: block;
	color: #5E4141;
	text-decoration: none;
}
section.introduction ul li a:hover,
section.introduction ul li a:active {
	
}
section.introduction ul li p.img_wrap {
	text-align: center;
}
section.introduction ul li p.txt_wrap {
	padding: 7px 10px;
	line-height: 1.5;
	font-size: clamp(80%,2.8vw,100%);
	border-radius: 10px;
}
section.introduction ul li a {
	transition:0.2s;
}
section.introduction ul li a:hover,
section.introduction ul li a:active {
	transform: translateY(-13px);
	transition:0.2s ease-in-out;
}
section.introduction ul li a:hover p.txt_wrap,
section.introduction ul li a:active p.txt_wrap {
	transition:0.2s ease-in-out;
	background: rgba(247,215,104,0.50);
}
#page section.introduction ul li a:hover img,
#page section.introduction ul li a:active img {
	opacity: 1;
}




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

.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 0 30px;
	text-align: left;
	font-size: 90%;
}
.entry-content .entry_meta date {
	font-size: 90%;
}
.entry-content .entry_meta .cat_name {
	display: inline-block;
	margin-left: .5em;
	padding: 0 .5em;
	color: #888;
	font-size: 90%;
	border: 1px solid #999;
}

.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: 1.3em 15px;
	color: #573a1d;
	font-size:  clamp(150%,4vw,170%);
	font-weight: 700;
	text-align: center;
	background: rgba(143, 134, 107, 0.28) url("images/pages/osirase_bg.png")repeat;
	letter-spacing: 0.08em;
}
.single h1.entry-title {
	position: relative;
	margin: 0 0 40px;
	padding: 1.3em 15px;
	color: #573a1d;
	font-size:  clamp(135%,4vw,170%);
	font-weight: 500;
	text-align: center;
	background: rgba(143, 134, 107, 0.28) url("images/pages/osirase_bg.png")repeat;
	letter-spacing: 0.08em;
	line-height: 1.4;
}
/* H2 */
.entry-content h2 {
	margin: 50px 0 15px;
	padding: 8px .2em;
	color: #289928;
	font-size: 120%;
	font-weight: 700;
	line-height: 1.5;
	border-top: 1px solid #289928;
	border-bottom: 1px solid #289928;
}
/* H3 */
.entry-content h3 {
	margin: 25px 0 7px;
	padding: 0px 0.3em 3px;
	font-size: 115%;
	font-weight: 700;
	border-bottom: 1px dashed;
}
.entry-content h3:before {
	content: "●";
	color: #289928;
	position: relative;
	left: -2px;
}

/* Posts and pages（ページナビ）
--------------------------------------------- */
.wp-pagenavi {
	margin: 25px 0 0;
	text-align: center;
	font-size: 90%;
}
.wp-pagenavi span,
.wp-pagenavi a {
	display: inline-block;
	padding: 2px 7px !important;
	color: #222;
	border-radius: 4px;
	border: 1px solid #aaa;
}
.wp-pagenavi a 
,.wp-pagenavi a:visited {
	color: #222;
}
.wp-pagenavi a:hover
,.wp-pagenavi a:active {
	background: #FFD6D7;
	text-decoration: none;
	color: #222;
	border: 1px solid #aaa;
}

.wp-pagenavi span.pages {
	display: block;
	text-align: center;
	border: none;
}
.wp-pagenavi span.current {
	color: #fff;
	background: #ff9191;
	border: 1px solid;
	border-color: #ff9191 !important;
}

.wp-pagenavi span.extend {
border: none;
}

/* 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  {
	font-size: clamp(90%,3.5vw,100%);
}
.past_entry h2 {
	padding: 15px 5px;
	color: #fff;
	font-weight: 500;
	text-align: center;
	background: #59412A;
	border-radius: 13px;
}
.past_entry ul.past_entry_list {
	margin: 4%;
}
.past_entry ul li {
	margin-bottom: 13px;
	padding:0 5px 13px 10px;
	border-bottom: 1px dotted #777;
}
.past_entry ul li time {
	display: block;
	margin-bottom: 5px;
	font-weight: 500;
}
.past_entry ul li a {
	color: #5E4141;
	line-height: 1.5;
}
.past_entry .more {
	margin: 15px 10px;
	text-align: right;
}
.past_entry .more a {
	color: #5e4141;
}


/* 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: .8em;
	
}
.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;
}


/* footer
--------------------------------------------- */
/* footer
--------------------------------------------- */
#site_footer {
	padding-top: 10px;
	background: #F5FFF7;
}

.footer_innerwrap {
	display: flex;
	justify-content: space-between;
	margin: 0 auto;
	padding: 0;
}
.footer_about {
	width: 100%;
	font-size: clamp(90%,1.2vw,100%);
	text-align: center;
}
.footer_about p.footer_title {
	padding: 0 0 10px;
	font-size: 126%;
	font-weight: 700;
	letter-spacing: 0.07em;
	line-height: 1.5;
}
.footer_about p.footer_info {
	margin-top: 5px;
	font-size: 88%;
	line-height: 1.4em;
}
.footer_about p.footer_info a.txtlink {
	display: inline-block;
}

.footer_menu {
	display: none;
}

/*フッターの共通スタイル*/
.footer_innerwrap a,
.footer_innerwrap a:visited {
	color: #222;
	text-decoration: none;
	font-size: 84%;
}
.footer_innerwrap a:hover,
.footer_innerwrap a:active {
	text-decoration: underline dotted #555;
}

/*コピーライト*/
#copyright {
	padding: 20px 0 90px;
	font-size: 57%;
	text-align: center;
	letter-spacing: 0.1em;
}
#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%;
	background-color: #569B5B;
	z-index: 10000;
}
.footer_area .footer_area_inner {
	flex: 1;
    /*position: relative;*/
    /*margin: 0px auto;*/
    /*padding: 5px 0 0;*/
	/*width:28%;*/
}
a.inquiry_btn {
	display: block;
    background-color: #569B5B;
    text-align: center;
	/*max-width: 100%;*/
	text-decoration: none;
}
a.inquiry_btn img.tel {
	width: 16px;
	height: auto;
	margin-bottom: 5px;
    margin-top: 2px;
}
a.inquiry_btn img.mail {
	width: 29px;
	height: auto;
	margin-bottom: 8px;
    margin-top: 9px;
}
a.inquiry_btn img.totop {
	width: 26px;
	height: auto;
	margin-top: 11px;
	margin-bottom: 9px;
}
a.inquiry_btn p {
	color: #fff;
	font-size: 60%;
	line-height: 1.9;
}



/*--------------------------------------------------------------
# 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.875em;
	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(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;
}


/*-------------------------------------------------------
----お問い合わせ-----------------------------------------
-------------------------------------------------------*/
.contact_form table tbody tr td:nth-child(1) {
    display: block;
    padding-top: 13px;
    vertical-align: top;
    width:100%;
}
.contact_form table tbody tr td:nth-child(2) {
    display: block;
    vertical-align: top;
    width:100%;
}
.contact_form table tbody tr td p {
    margin: 3px;
}
.contact_form table tbody tr td p input {
    padding:5px 10px;
}
.con_name {
	margin:3px;
	padding:3px;
    width:100%;
	border:solid 1px #b3b3b3;
}
.con_mail {
	margin:3px;
	padding:3px;
    width:100%;
	border:solid 1px #b3b3b3;
}
.con_subject {
	margin:3px;
	padding:3px;
    width:100%;
	border:solid 1px #b3b3b3;
}
.con_cap {
	margin:3px;
	padding:3px;
	width:105px;
}
.contact_form table tbody tr td p span.must {
    position: relative;top:-2px;left:3px;
    padding: 0 3px;
    display: inline;
    font-size: 0.65em;
    border-radius:3px;
    color: #fff;
    background-color: #cf1d05;
}


.inquiry_list {
	margin-bottom: 15px;
	overflow: hidden;
}
    
.inquiry_list dl {
	display: flex;
    flex-direction: column;
	flex-wrap: wrap;
	padding:20px 0;
	width:100%;
	overflow: hidden;
}
    
.inquiry_list dt {
	padding:10px 20px 5px 0;
	width:100%;
}
    
.inquiry_list dd {
    margin: 4px 0 0 0;
	padding:5px 0;
	width:100%;
}

.inquiry_list dl dt p,
.inquiry_list dl dd p {
    margin:0;
}

.inquiry_list dl dt p span.must {
    position: relative;top:-1px;left:3px;
    padding: 0 3px;
    display: inline;
    font-size: 0.65em;
    border-radius:3px;
    color: #fff;
    background-color: #cf1d05;
}
.inquiry_list input, .inquiry_list textarea, .inquiry_list select {
	padding: 5px 8px;
	border-radius: 3px;
	border: solid 1px #999999;
}

.inquiry_list span.must {
	color:#FF0004;
}

/*内容*/
.con_naiyo {
	width: 100%;    
}

/*名前*/
.con_name {
	padding: 4px 5px;
	width: 100%;
}

/*姓名*/
.con_sei {
	padding: 4px 5px;
	width: 39%;
}

/*性別*/
.con_seibetsu {
	padding: 4px 5px;
	max-width: 90px;
}

/*メールアドレス*/
.con_address {
	padding: 4px 5px;
	width: 100%;
}
/*住所*/
.con_jusyo {
	padding: 4px 5px;
	width: 100%;
}
.con_jusyo1 {
	padding: 4px 5px;
	width: 100%;
}
.con_jusyo2 {
	padding: 4px 5px;
	width: 100%;
}
.con_jusyo3 {
	padding: 4px 5px;
	width: 100%;
}

/*TEL*/
.con_tel {
	padding: 4px 5px;
	width: 160px;
	ime-mode: disabled;
}
/*生年月日*/
.con_nen {
	padding: 4px 5px;
	width:90px;
	ime-mode: disabled;
}
.con_tuki {
	padding: 4px 5px;
	width:55px;
}
/*お問い合わせ内容*/
.con_inquiry {
	padding: 4px 5px;
	width: 100%;
}

/*郵便番号*/
.con_yubin1 {
	margin-bottom: 10px;
	padding: 4px 5px;
	width: 110px;
	ime-mode: disabled;
}

#agreement {
    display: flex;
    justify-content: center;
    margin: 0 auto;
    gap:15px;
}



.scroll-box {
	overflow-x: auto;
}
.scroll-box div img {
	max-width: 100%;
	min-width: 1050px;
	vertical-align: top;
}

}