/*--------------------------------------------------------------
>>> 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: "Noto Sans JP", Sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 95%;
	-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.04em;
}
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;
}
span.red {
	color: #ED0003;
}

/* Elements
--------------------------------------------- */
body {
	background: #fff;
	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%;
	font-size: 90%;
}
hr {
	box-sizing: content-box;
	height: 0;
	overflow: visible;
}
/*SP用の要素を非表示*/
.pc_show {
	display: none !important;
}

/* Links
--------------------------------------------- */
a {
	color: #0066c0;
}
a:visited {
	color: #0066c0;
}
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;
	transition: all .1s;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
	background: #ccc;
	transition: all .1s;
}
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 {
	background: #ccc;
}
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;
	padding-top: 80px;
	background: #fff;
}
main.contents_top_xmas_ver {
	margin: 0 auto;
	padding-top: 77px;
}
main.contents_page {
	padding-top: 80px;
}

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 {
	margin-top: 50px;
}

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

/* header
--------------------------------------------- */
.header {
	position: fixed;
	top: 0;
	padding: 10px 0 0;
	width: 100%;
    height: 80px;
	background: #fff;
	transition: all .5s;
	z-index: 100;
}
.header.transform {
    background-color: rgba(255,255,255,1.0);
    box-shadow: 0 1px 5px rgba(0,0,0,0.2);
	transition: all .5s;
}
.header_inner {
	display: flex;
	align-items: center;
	margin: 0 auto;
	padding: 4px 0 17px;
	width: 95%;
}
.site_title {
	width: 78%;
	max-width: 300px;
}

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

}

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

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

/*ボタン内側*/
.openbtn span{
    display: inline-block;
    transition: all .4s;/*アニメーションの設定*/
    position: absolute;
    left: 12px;
    height: 4px;
	background: #025ea2;
  	width: 60%;
  }
.openbtn span:nth-of-type(1) {
	top:12px;	
}
.openbtn span:nth-of-type(2) {
	top:22px;
}
.openbtn span:nth-of-type(3) {
	top:32px;
}
.openbtn span:nth-of-type(3)::after {
	content:"MENU";/*3つ目の要素のafterにメニュー表示を指定*/
	position: absolute;
	top: 4px;
	left: -11px;
	width: 60px;
	text-align: center;
	color: #025ea2;
	font-size: 75%;
	font-weight: 600;
	letter-spacing: 0.14em;
	text-transform: uppercase;
}
/*activeクラスが付与されると線が回転して×になり、メニュー⇒とじるに変更*/
.openbtn.active span:nth-of-type(1) {
    top: 17px;
    left: 12px;
    transform: translateY(5px) rotate(-45deg);
    width: 57%;
}
.openbtn.active span:nth-of-type(2) {
	opacity: 0;
}
.openbtn.active span:nth-of-type(3){
    top: 27px;
    left: 12px;
    transform: translateY(-5px) rotate(45deg);
    width: 57%;
}
.openbtn.active span:nth-of-type(3)::after {
	content:"CLOSE";/*3つ目の要素のafterにとじる表示を指定*/
    transform: translateY(0) rotate(-45deg);
	position: absolute;
	top:7px;
	left:4px;
	width: 60px;
	text-align: center;
}

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


.sp_nav_wrap{
    display: flex;
    /*height: 100%;*/
    justify-content: center;
	padding: 0 0 90px;
    width: 100%;
	background: #fff;
}
.sp_nav ul.sp_nav_menu {
	margin: 0 auto;
	padding: 10px 15px 30px;
	width: 94%;
	max-width: 550px;
	background: #fff;
	border-radius: 6px;
}

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

/*親メニュー*/
.sp_nav ul.sp_nav_menu > li {
	border-bottom: 1px dotted #888;
}
.sp_nav ul.sp_nav_menu > li a {
	position: relative;
	display: block;
	padding: 15px 30px;
}

.sp_nav ul.sp_nav_menu > li a:after {
	content: "";
	display: inline-block;
	position: absolute;
	top: 50%;
	right: 25px;
	-webkit-transform : translateY(-50%);
	transform : translateY(-50%);
	background: url("images/headers/sp_nav_arrow.svg")no-repeat;
	background-size: contain;
	width: 6px;
	height: 9px;
}


/* TOPコンテンツ共通
--------------------------------------------- */
h2.h2_top {
	position: relative;
	margin: 30px 0 35px;
	padding: 0 0 7px;
	color: #222;
	font-size: clamp(21px,5.8vw,24px);
	font-weight: 700;
	/*letter-spacing: 0.05em;*/
	text-align: center;
}
h2.h2_top:after {
  content: '';
  display: inline-block;
  position: absolute;
  top: 100%;
  left: 50%;
  -webkit-transform : translateX(-50%);
  transform : translateX(-50%);
  background: url("images/pages/arrow_below.svg")no-repeat;
  background-size: contain;
  width: 20px;
  height: 17px;
}

.contents_top_white {
	margin: 0 auto 40px;
	width: 92%;
	background: #fff;
}

/* TOPコンテンツ（MV）
--------------------------------------------- */
.mv {
	padding: 35px 0 45px;
	width: 100%;
	background: #fff url("images/mv/mv_bg.png")no-repeat;
	background-position: center top;
	background-size: cover;
}
.mv_20250610 {
	padding: 35px 0 45px;
	width: 100%;
	background: #fff url("images/mv/mv_bg_rain_d.png")no-repeat;
	background-position: center top;
	background-size: cover;
}
.mv_20250610_b {
	padding: 20px 0 40px;
	width: 100%;
	background: #fff url("images/mv/mv_bg_rain_d.png")no-repeat;
	background-position: center top;
	background-size: cover;
}

.mv .img_wrap,
.mv_20250610 .img_wrap,
.mv_20250610_b .img_wrap {
	/*margin: -42px auto -38px auto;*/
	margin: 0 auto;
	width: 90%;
	text-align: center;
}


/*▼　7月20日公開用背景テスト*/
.mv_202507_a .img_wrap,
.mv_202507_b .img_wrap,
.mv_202507_c .img_wrap {
	margin: 0 auto;
	width: 90%;
	text-align: center;
}

.mv_202507_a {
	padding: 20px 0 40px;
	width: 100%;
	background: #fff url("images/mv/mv_bg_bearch_sp.png")no-repeat;
	background-position: 18% top;
	background-size: cover;
}
.mv_202507_b {
	padding: 20px 0 40px;
	width: 100%;
	background: #fff url("images/mv/mv_bg_fireworks02_sp.png")no-repeat;
	background-position: 60% top;
	background-size: cover;
}
.mv_202507_c {
	padding: 20px 0 40px;
	width: 100%;
	background: #fff url("images/mv/mv_bg_fish03_sp.png")no-repeat;
	background-position: 30% top;
	background-size: cover;
}
/*▲　7月20日公開用背景テスト*/

/*▼　9月1日公開用背景テスト*/
.mv_202509_foods .img_wrap,
.mv_202509_leafs .img_wrap,
.mv_202509_omakase .img_wrap,
.mv_202509_moon .img_wrap {
	margin: 0 auto;
	width: 90%;
	text-align: center;
}

.mv_202509_foods {
	padding: 20px 0 40px;
	width: 100%;
	background: #fff url("images/mv/mv_bg_foods2_sp.jpg")no-repeat;
	background-position: 30% top;
	background-size: cover;
}
.mv_202509_leafs {
	padding: 20px 0 40px;
	width: 100%;
	background: #fff url("images/mv/mv_bg_leafs_sp.jpg")no-repeat;
	background-position: 50% top;
	background-size: cover;
}
.mv_202509_moon {
	padding: 20px 0 40px;
	width: 100%;
	background: #fff url("images/mv/mv_bg_moon_sp.png")no-repeat;
	background-position: 50% top;
	background-size: cover;
}
.mv_202509_omakase {
	padding: 20px 0 40px;
	width: 100%;
	background: #fff url("images/mv/mv_bg_evening_sp.png")no-repeat;
	background-position: 50% top;
	background-size: cover;
}
/*▲　9月1日公開用背景テスト*/



.img_logo {
	margin-bottom: 10px;
	width: 100%;
}
.img_logo .start_txt {
	margin: 0px 0 16px;
	padding: 0.4em;
	color: #fff;
	font-weight: 600;
	font-size: 4.80vw;
	line-height: 1.5;
	background: #ed2707;
	border-radius: 100px;
}
.img_logo .start_txt p {
    text-indent: -1em;
    padding-left: 1em;
}
.img_infobox {
    margin-top: -12px;
	padding: 0 8%;
	width: 100%;
}
.img_logo_xmas {
}
img.mv_logo_20241211 {
}
img.mv_logo_20241211new {
    margin: 20px 0;
}

img.mv_logo_20241212 {
    margin: 0 auto 20px auto;
}
img.mv_logo_20241212new {
    margin-bottom: 20px;
    width:100%;
}


/* TOPコンテンツ（期間アナウンス画像）
--------------------------------------------- */
.period_img_wrap {
	margin: 45px 0;
	text-align: center;
}
.period_img_wrap .img_moushikomi {
	margin-bottom: 30px;
}
.period_img_wrap .img_moushikomi p {
    margin-top: 20px;
    text-align: left;
    font-size:1.10em;
}
.period_img_wrap .img_bosyu {
	margin-bottom: 30px;
}

.period_img_wrap img {
	width: 100%;
	max-width: 550px;
}

/* TOPコンテンツ（店舗様へ）
--------------------------------------------- */
section.info_fortenant {
	margin: -90px 0 40px;
    padding-top: 90px;
}
section.info_fortenant h2.h2_top {
	font-size: clamp(17px,4.3vw,24px);
}
section.info_fortenant h2.h2_top:after {
	display: none;
}
section.info_fortenant .firsttxt p {
	font-weight: 600;
	line-height: 1.9;
}
section.info_fortenant .img_wrap {
	margin-top: 45px;
	text-align: center;
}
section.info_fortenant .ticket-5000 {
	margin: 50px 0;
}
section.info_fortenant .ticket-5000 img {
	width: 85%;
}
section.info_fortenant .ticket-20000 img {
	width: 85%;
}


/* TOPコンテンツ（商品券概要）
--------------------------------------------- */
section.pay_detail {
	margin: -90px 0 40px;
    padding-top: 90px;
}
section.pay_detail dl {
	display: flex;
	flex-direction: column;
	margin: 30px auto;
	width: 100%;
	font-size: 97%;
}
section.pay_detail dl dt {
	font-weight: 700;
	
}
section.pay_detail dl dd {
	position: relative;
	width: 100%;
	margin: 0;
	padding: 0 0 20px;
	font-weight: 500;
}

/* TOPコンテンツ（ご利用方法）
--------------------------------------------- */
section.howto {
	margin: 0 auto 40px;
}
/*section.howto h2 {
	font-size: 30px;
}*/
section.howto .innerewrap {
	margin: 0 auto;
}
section.howto .txt_s {
	padding: 15px;
	font-size: 90%;
	font-weight: 500;
}
.howto_btn {
	margin-bottom: 30px;
	width: 100%;
	text-align: center;
	transition: all .1s;
}
.howto_btn a,
.howto_btn a:visited {
	display: block;
	width: 100%;
	height: auto;
	transition: all .2s;
}
.howto_btn a img {
	transition: all .2s;
}
.howto_btn a:hover img,
.howto_btn a:active img {
	transform:scale(1.05,1.05);
	opacity: 1;
	transition: all .2s;
}

/* TOPコンテンツ（お知らせ）
--------------------------------------------- */
section.news {
	margin: 0 auto;
}
ul.news_wrapper {
	margin: 10px 0;
	/*font-size: 90%;*/
}
ul.news_wrapper li.news_box {
	border-bottom: 1px dashed #5D5D5D;
	padding: 12px 10px;
}
ul.news_wrapper li.news_box time.date span {
	display: inline-block;
	margin-bottom: 4px;
	padding: 6px 0;
	width: 8.5em;
	color: #fff;
	font-size: 90%;
	font-weight: 500;
	line-height: 1em;
	text-align: center;
	background: #115575;
	border-radius: 40px;
}

/*リンク色*/
ul.news_wrapper li.news_box a,
ul.news_wrapper li.news_box a:visited {
	color: #005677;
	text-decoration: underline;
}
ul.news_wrapper li.news_box a:focus,
ul.news_wrapper li.news_box a:active {
	text-decoration: none;
}
img.mark_new {
	position: relative;
	top: -.35em;
    right: -4px;
}

/*過去一覧*/
.news_more {
	margin: 30px 0 0;
	text-align: center;
}
.news_more a {
	display: inline-block;
	padding: 5px 35px;
	color: #fff;
	font-weight: 500;
	text-decoration: none;
	transition: all .2s;
	background: #005677;
}
.news_more a:focus,
.news_more a:active {
	transition: all .2s;
	opacity: 0.75;
}


/* Posts and pages
--------------------------------------------- */
.entry-content p {
	margin-bottom: 1.8em;
}
.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 10px 20px;
	text-align: right;
	font-size: 90%;
}

.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,
h1.entry-title_ouen {
	margin-bottom: 25px;
	padding: 35px 20px;
	text-align: center;
	background: url("images/pages/h1_page_bg.svg")no-repeat;
	background-size: cover;
	background-position: 50% 0%;
}
h1.entry-title span,
h1.category_name span {
	display: inline-block;
	font-size:  clamp(22px,5vw,26px);
	font-weight: 600;
	text-align: left;
	letter-spacing: 0.08em;	
}

h1.entry-title_ouen span {
	display: inline-block;
	font-size: clamp(22px,5vw,26px);
	font-weight: 600;
	text-align: center;
	letter-spacing: 0.08em;	
}


/*.single h1.entry-title {
	font-size: 100%;
}*/
/* H2 */
.entry-content h2 {
	margin: 35px 0 15px;
	padding: 0;
	font-size: 130%;
	font-weight: 600;
}

/* H3 */
.entry-content h3 {
	position: relative;
	margin: 8px 0;
	padding: 0 25px;
	font-size: 100%;
	font-weight: 600;
}
.entry-content h3::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0px;
  top: .75em;
  width: 18px;
  height: 6px;
  background-color: #ffb300;
  border-radius: 10px;
}
/* Posts and pages（パンくずリスト）
--------------------------------------------- */
#breadcrumb {
	display: none;
}

/* 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: 3px 9px !important;
	color: #222;
	border-radius: 2px;
}
.wp-pagenavi a 
,.wp-pagenavi a:visited {
	color: #222;
}
.wp-pagenavi a:hover
,.wp-pagenavi a:active {
	background: #ddd;
	text-decoration: none;
	color: #222;
	border-color: #BFBFBF !important;
}

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

.wp-pagenavi span.extend {
	border: none;
	padding: 0 !important;
}

/* Posts and pages（お知らせアーカイブ）
--------------------------------------------- */
.archive ul.news_wrapper {
	margin: 30px 0;
}

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

/* Posts and pages（問い合わせ）
--------------------------------------------- */
/*フォーム*/
.inquiry_list {
	margin: 50px auto 0;
	overflow: hidden;
}
.inquiry_list p {
	margin-bottom: 0;
}
.inquiry_list dl {
	padding: 0 0 20px;
	width:100%;
	overflow: hidden;
}
.inquiry_list dt {
	margin: 0 0 5px;
}
.inquiry_list dd {
	margin: 0 0 20px;
	width: 100%;
}
.inquiry_list input, .inquiry_list textarea, .inquiry_list select {
	margin: 0;
	padding: 5px 8px;

}
.inquiry_list .must {
	position: relative;
	top: -.15em;
	left: 8px;
	display: inline;
    padding: 0 6px 2px;
    font-size: 11px;
    color: #cf1d05;
	border: 1px solid #cf1d05;
	user-select: none;
}

/*名前*/
.con_name {
	margin: 0 10px 0 0;
	width: 100%;
}
/*ふりがな*/
.con_kana {
	margin: 0 10px 0 0;
	width: 100%;
}
/*メールアドレス*/
.con_address {
	margin: 0 10px 0 0;
	width: 100%;
    ime-mode:disabled;
}

/*TEL*/
.con_tel {
	width: 190px;
    ime-mode:disabled;
}

/*お問い合わせ内容*/
.con_inquiry {
	width: 100%;
	height: 200px;
}

/*ラジオボタン*/
.wpcf7-radio .wpcf7-list-item {
	margin: 0 1.5em 0 0;
	user-select: none;
}
/*チェックボックス*/
.wpcf7-checkbox .wpcf7-list-item {
	margin: 0 10px 0 0;
    display:block;
	user-select: none;
}

/*必須項目未入力の場合*/
.wpcf7 span.wpcf7-not-valid-tip {
	display: inline-block;
	padding-left: 8px;
	font-size: 80%;
}
.wpcf7-spinner {
	display: none !important;
}

/*個人情報　取扱同意*/
.doui_txt {
	padding: 30px 20px 10px;
	background: rgb(249, 237, 223);
	border: 1px solid rgb(190, 170, 145);
	border-radius: 4px;
}
.doui_txt p span {
	display: block;
	text-align: center;
	font-weight: 600;
}
.doui p {
	margin: 75px 0 60px;
	font-size: 85%;
	font-weight: 600;
	text-align: center;
}
.doui .wpcf7-acceptance .wpcf7-list-item {
	margin-left: 0;
}
.doui .wpcf7-list-item label .wpcf7-list-item-label {
	padding-left: 10px;
}

/*フォームボタン*/
#btn_wrap {
	text-align: center;
}
#btn_wrap input[type="submit"] {
	width: 300px;
	padding: 1.5em 1em 1.6em;
	font-size: 115%;
	font-weight: 600;
    letter-spacing: 0.4em;
}



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

.bypostauthor {
	display: block;
}

/* sidebar
--------------------------------------------- */
/* ▼side（これまでのお知らせ） */
aside.past_entry  {
	background: #fff;
}
aside.past_entry a,
aside.past_entry a:visited {
	color: #115575;
}
aside.past_entry a:hover,
aside.past_entry a:active {
	color: #115575;
}

.past_entry h2 {
	margin-bottom: 25px;
	padding: 5px;
	color: #fff;
	font-size: 95%;
	font-weight: 500;
	text-align: center;
	background: #115575;
	border-radius: 50px;
}
.past_entry ul.past_entry_list {
	margin: 2%;
}
.past_entry ul li {
	margin-bottom: 18px;
	padding:0 5px;
}
.past_entry ul li time {
	display: block;
	font-weight: 600;
	font-size: 88%;
	line-height: 1.1em;
}
.past_entry ul li a {
	font-size: 88%;
}
.past_entry .more {
	margin: 30px 0 0;
    text-align: center;
    font-size: 85%;
}

/*一覧を見るボタン*/
.past_entry .more a,
.past_entry .more a:visited {
	padding: 7px 65px;
	color: #222;
	font-size: 85%;
	letter-spacing: 0.07em;
	text-decoration: none;
	border: 1px solid #ccc;
	border-radius: 3px;
	transition: all .2s;
}
.past_entry .more a:focus,
.past_entry .more a:active {
	color: #222;
	background: #eee;
	transition: all .2s;
}


/* 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
--------------------------------------------- */
#site_footer {
	position: relative;
	padding: 25px 0 0;
	background: #2863A0;
}
#site_footer p.title {
	margin: 0 0 25px;
	color: #fff;
	font-size: 120%;
	font-weight: 700;
	text-align: center;
}

.footer_innerwrap {
	margin: 0 auto;
	width: 94%;
	text-align: center;
}
.footer_innerwrap p {
	color: #fff;
	font-size: 85%;
	line-height: 1.5;
}

#site_footer p.office_name {
	margin: 0 0 30px;
	font-weight: 700;
	letter-spacing: 0;
}
#site_footer p.tel_white {
	margin: 0 40px 12px;
}
#site_footer p.office_term {
	margin: 15px 0 20px;
	font-size: 78%;
}

#site_footer .btn_foot_form a,
#site_footer .btn_foot_form a:visited {
	display: inline-block;
	padding: 35px 0;
	width: 470px;
	font-size: 120%;
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	background: #18AC0E;
	transition: all .2s;
}
#site_footer .btn_foot_form a:hover,
#site_footer .btn_foot_form a:active {
	transition: all .2s;
	background: #4CBF43;
}

/*フッターの共通スタイル*/
.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: 10px 0 80px;
	font-size: 60%;
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.12em;
	background: #fff;
}
#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: 0 0 3px;
	bottom: 0;
	width: 100%;
	background-color: #195D9E;
	box-shadow: 0px 0px 4px rgba(0,0,0,0.25);
	z-index: 10000;
}
.footer_area .footer_area_inner {
	flex: 1;
}
a.inquiry_btn {
	display: block;
    background-color: #195D9E;
    text-align: center;
	text-decoration: none;
}
a.inquiry_btn img.tel {
	width: 20px;
	height: auto;
	margin-top: 8px;
    margin-bottom: 1px;
}
a.inquiry_btn img.form {
	width: 33px;
    height: auto;
    margin-top: 17px;
    margin-bottom: 4px;
}
a.inquiry_btn img.search {
	width: 22px;
    height: auto;
    margin-top: 13px;
    margin-bottom: 0px;
}
a.inquiry_btn p {
	color: #fff;
	font-size: 65%;
	font-weight: 500;
	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 99% 50%;
    padding:0 18px 0 0;
}
a[href $='.pdf'] a {
    text-decoration:none;
}

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

.kakomi_a {
    padding:20px 25px;
    border:solid 3px #007FAC;
}
.kakomi_a h2 {
    margin: 0;
}
.kakomi_a .wp-block-list {
    margin-left:18px;
}    

h2.kakomi_b {
    padding:20px 35px;
    background:#F8D000;
    border-radius: 5px;
}

.kakomi_c a {
    display: block;
    width:100%;
    margin: 0 auto;
    padding:20px 35px;
    text-align: center;
    border-radius: 5px;
    background: #FF9E00;
    color:#fff;
    text-decoration: none;
}
.kakomi_c a::before {
    content: "";
    display: inline-block;
    width: 26px;
    height: 26px;
    background: url("icon/document_icon.svg") no-repeat 0 4px;
    margin-right: 10px;
}

.kakomi_d a {
    display: block;
    width:100%;
    margin: 0 auto;
    padding:20px 35px;
    text-align: center;
    border-radius: 5px;
    background: #FF2C53;
    color:#fff;
    text-decoration: none;
    font-size:1.20em;
}
.kakomi_e a {
    display: block;
    width:100%;
    margin: 0 auto;
    padding:20px 35px;
    text-align: center;
    border-radius: 5px;
    background: #45C400;
    color:#fff;
    text-decoration: none;
    font-size:1.20em;
}

.shinsei_btn {
    margin: 0 auto;
    width:100%;
}
.shinsei_btn ul {
    display: flex;
    justify-content: space-between;
    flex-wrap: nowrap;
    gap: 30px;
}
.shinsei_btn ul {
    list-style: none;
    margin: 0;
}
.shinsei_btn ul li {
    margin: 0;
    text-align: center;
}
.shinsei_btn ul li label {
    font-size: 3.05vw;
}


.bosyukikan {
    margin: 40px auto 0 auto;
}
.bosyukikan dl {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 10px auto;
}
.bosyukikan dl dt {
    margin: 10px;
    padding: 15px;
    background: #2BB400;
    border-radius: 6px;
    text-align: center;
    color: #fff;
    font-size: 1.20em;
}

.bosyukikan dl dd {
    margin: 10px;
    padding: 15px;
    font-size: 1.40em;
}

p.cshaku {
    font-size: 0.80em;
}

h2.tenpobosyu_midashi {
    padding: 20px 25px;
    background: #058F3F;
    border-radius: 10px;
    color: #fff;
}

.btn_label_keizoku {
    font-size: clamp(13px,3.8vw,22px);
}
.btn_label_shinki {
    font-size: clamp(13px,3.8vw,22px);
}

.taimen ul {
    display: flex;
    justify-content: space-between;
    list-style: none;
    gap:10px;
}

.entry-content div.taimen ul {
    margin: 0;
}

.taimen_btn {
    position: relative;bottom:18%;
}

.taimen_btn a {
    position: absolute;left:4%;
    background: #eee;
    border-radius: 3px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    width: 90%;
    padding: 10px 15px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    text-decoration: none;
    font-size: clamp(8px,1.4vw,12px);
}
.taimen_btn a:hover {
    background: #008ca8;
    color: #FFF;
}
.taimen_btn a:after {
    content: '';
    width: 6px;
    height: 6px;
    border-top: 2px solid #313131;
    border-right: 2px solid #313131;
    transform: rotate(45deg) translateY(-50%);
    position: absolute;
    top: 50%;
    right: 10px;
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.taimen_btn a:hover:after {
    border-color: #FFF;
}

.apps_dl {
    padding:15px;
    border: solid 3px #419233; /* 内枠のスタイル */
    border-radius: 10px;
    text-align: center;
}

.apps_dl p {
    font-size: clamp(14px,3.4vw,27px);
}

img.apps_icon {
    margin: 20px auto;
    width:50%;
}
img.apps_icon_dl {
    margin: 10px 0;
    width:80%;
}
.apps_dl_txt {
    text-align:left;
    font-size:0.7em;
    line-height: 1.40;
}

/* よくある質問　利用者向け・店舗向け内部リンク */
.faq_menu {
    display: flex;
    justify-content: center;
    gap:30px;
}
.button001 a {
    background: #eee;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    width: 150px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	text-decoration: none;
}
.button001 a:hover {
    background: #313131;
    color: #FFF;
}
.button001 a:after {
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.button001 a:hover:after {
    border-color: #FFF;
}

/* 公的団体対面サポート内部リンク */
/*.koutekisupport_menu {
    display: flex;
    justify-content: center;
    gap:30px;
}
.button002 a {
    background: #eee;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    width: 150px;
    padding: 10px 25px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	text-decoration: none;
}
.button002 a:hover {
    background: #313131;
    color: #FFF;
}
.button002 a:after {
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.button002 a:hover:after {
    border-color: #FFF;
}*/

/* 公的団体対面サポート内部リンク */
.koutekisupport_menu {
    display: flex;
    justify-content: center;
    gap:20px;
}
.button002 a {
    background: #72e8e8;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    padding: 5px 10px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    font-size: clamp(12px,2.1vw,20px);
	text-decoration: none;
}
.button002 a:hover {
    background: #00ccc9;
    color: #FFF;
}
.button002 a:after {
    border-radius: 1px;
    transition: 0.3s ease-in-out;
}
.button002 a:hover:after {
    border-color: #FFF;
}

/* 店舗事業者の皆さま＞素材ダウンロード */
.sozai_menu {
    margin-bottom: 30px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap:10px;
}
.sozai_menu_last {
    margin-top: -20px;
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap:10px;
}

a.btn_kokuti {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 14px 20px 20px 45px;
    background-color: #e80000;
    border-radius: 30px;
    box-sizing: border-box;
    position: relative;
    transition-duration: 0.3s;
}
a.btn_kokuti::before {
  content: '';
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -18px;
  background-image: url("images/pages/dlicon_kokuti.png");
  background-size: contain;
  background-repeat: no-repeat;
}

a.btn_kokuti span {
    margin: 5px 0 0 0;
    font-size: 1.10em;
    font-weight: bold;
    line-height: 1;
}
a.btn_kokuti:hover {
  color: #ffffff;
  background-color: #FFC107;
}

a.btn_kit {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    width: 30%;
    padding: 10px 20px 20px 75px;
    background-color: #27ab00;
    border-radius: 50px;
    box-sizing: border-box;
    position: relative;
    transition-duration: 0.3s;
}
a.btn_kit::before {
  content: '';
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -18px;
  background-image: url("images/pages/dlicon_kit.png");
  background-size: contain;
  background-repeat: no-repeat;
}
a.btn_kit span {
    margin: 5px 0 0 0;
    font-size: 1.10em;
    font-weight: bold;
    line-height: 1;
}
a.btn_kit:hover {
  color: #ffffff;
  background-color: #008eaa;
}

/* 購入希望の皆さま＞マニュアルダウンロード */
a.btn_user {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 10px 20px 20px 75px;
    background-color: #0063a4;
    border-radius: 50px;
    box-sizing: border-box;
    position: relative;
    transition-duration: 0.3s;
}
a.btn_user::before {
  content: '';
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  left: 20px;
  margin-top: -18px;
  background-image: url("images/pages/dlicon_user.png");
  background-size: contain;
  background-repeat: no-repeat;
}
a.btn_user span {
    margin: 5px 0 0 0;
    font-size: 1.10em;
    font-weight: bold;
    line-height: 1;
}
a.btn_user:hover {
  color: #ffffff;
  background-color: #00a39e;
}


.sozai_menu_202510 ul {
    margin-bottom: 30px;
	padding: 0 37px 0 0;
    gap:20px;
	list-style: none;
}
.sozai_menu_202510 ul li {
	width:100%;
	margin-bottom: 15px;
	text-align: center;
	line-height: 1.10;
}

.sozai_menu_202510 ul li a.btn_kokuti {
    display: flex;
    justify-content: center;
    align-items: center;
	width:100%;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
    transition-duration: 0.3s;
    font-size: clamp(13px,1.1vw,16px);
}
.sozai_menu_202510 ul li a.btn_kokuti::before {
  content: '';
  width: 35px;
  height: 35px;
  position: absolute;
  top: 50%;
  left: 5%;
  margin-top: -18px;
  background-image: url("images/pages/dlicon_kokuti.png");
  background-size: contain;
  background-repeat: no-repeat;
}
.sozai_menu_202510 ul li a.btn_kokuti span {
    margin: 5px 0 0 0;
    font-size: 1.10em;
    font-weight: bold;
    line-height: 1;
}
.sozai_menu_202510 ul li a.btn_kokuti:hover {
  color: #ffffff;
  background-color: #FFC107;
}


.apps_dl {
    margin: 0 0 20px 0;
}

/*------- 使える店舗検索・サポート携帯ショップ -------*/

/*------- 共通の検索フォーム -------*/
.searchform_box {
	padding: 2% 5%;
}
.searchform_box h2 {
	margin: 1em 0 1em;
	font-weight: 700;
	font-size: clamp(12px,4.3vw,22px);
	text-align: center;
}
.searchform_box form {
	font-size: 4.3vw;
}

/*店舗名検索*/
.searchform_box form input#feas_0_0,
.searchform_box form input#feas_3_0 {
	width: 100%;
}
/*エリア検索*/
.searchform_box form select#feas_0_1,
.searchform_box form select#feas_3_1 {
	width: 100%;
	margin: 0.6em 0;
}
/*業種検索*/
.searchform_box form select#feas_0_2,
.searchform_box form select#feas_3_2 {
	width: 100%;
}
/*検索するボタン*/
.searchform_box form input#feas-submit-button-0,
.searchform_box form input#feas-submit-button-3 {
	width: 100%;
}

/*フォームのスタイル*/
.searchform_box form input,
.searchform_box form select {
	padding: 0.9em;
	border-radius: 10px;
	text-align: center;
}
/*検索ボタン*/
.searchform_box form input#feas-submit-button-0,
.searchform_box form input#feas-submit-button-3 {
	margin-top: 18px;
	padding: 1.2em;
	color: #fff;
	font-size: 120%;
	font-weight: 700;
	letter-spacing: 0.15em;
	background: #2DAA5E;
	border: 1px solid #1E9F50;
}
.searchform_box form input#feas-submit-button-0:hover,
.searchform_box form input#feas-submit-button-3:hover {
	cursor: pointer;
}

/*件数*/
p.store_number {
	margin: 40px 0 0;
	font-size: clamp(16px,4vw,20px);
	font-weight: 700;
	text-align: center;
	
}

/*店舗群*/
ul.store_wrapper {
    margin: 50px auto 0;
	width: 95%;
}

ul.store_wrapper li {
	margin-top: 8%;
	width: 100%;
	border-radius: 10px;
	box-shadow: 0 0 5px 3px rgba(0,0,0,0.12);
}

li.store_box {
	padding: 3% 5% 3.8%;
}
li.store_box h3.title {
	margin: 0.7em 0 1.1em;
	font-size: clamp(20px,3.9vw,24px);
	font-weight: 700;
	line-height: 1.4;
}
li.store_box .cat {
	line-height: 1;
}
li.store_box .cat span {
	display: inline-block;
	margin-right: 1px;
	margin-bottom: 2px;
	padding: 3px 8px 4px;
	font-size: clamp(12px,2.2vw,14px);
	color: #fff;
	letter-spacing: 0.05em;
	background: #8abf9c;
	border-radius: 5px;
}
li.store_box dl {
	position: relative;
	display: flex;
	flex-wrap: wrap;
	margin: 7px 0;
	color: #444;
	font-size: clamp(12px,3vw,15px);
	line-height: 1.4;
}
li.store_box dl dt {
	padding: .4em;
	width: 6em;
	border-bottom: 1px dotted #aaa;
}
li.store_box dl dd {
	margin: 0;
	padding: .4em;
	width: calc(100% - 6em);
	border-bottom: 1px dotted #aaa;
}
li.store_box dl p {
	
}
li.store_box a,
li.store_box a:visited {
	color: #195d9e;
	text-decoration: none;
	word-wrap: break-word;
}
li.store_box a:focus,
li.store_box a:active {
	text-decoration: underline;
}

li.store_box .btn_wrap {
	display: flex;
	justify-content: space-around;
	width: 100%;
}
li.store_box .btn_wrap a {
	display: block;
	margin: 14px 2px 0;
	padding: .5em;
	width: 45%;
	color: #777;
	text-align: center;
	border: 1px solid #777;
	border-radius: 2px;
}
li.store_box .btn_wrap a:hover,
li.store_box .btn_wrap a:focus {
	background: #777;
	color: #fff;
	text-decoration: none;
	transition: all .1s;
}

/*------- サポート携帯ショップ検索注意書き -------*/
.support_notice {
	/*text-align: center;*/
}
.support_notice .box_red {
	display: inline-block;
	margin: 30px 0;
	padding: 1em 1.5em;
	color: #E1070B;
	border: 3px solid #E1070B;
}
.support_notice .box_red h2 {
	margin-bottom: 10px;
	font-size: 125%;
	font-weight: 700;
	text-decoration: underline;
}


/* 購入希望の皆さまへ＞マニュアル・ガイド */
.sozai_menu_guide {
    width:100%;
    padding: 0 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.sozai_menu_guide a {
    margin: 25px auto 0 auto;
    width: 95%;
    padding: 13px 30px 20px 60px;
}

.top_soudankai_txt {
    margin: 10px auto 20px auto;
    text-align: left;
}

.sma {
    display: none;
}

/* 購入希望の皆さま＞素材ダウンロード */
.riyousya_sozai {
    border: 3px solid #0094D6;
    border-radius: 20px;
    position: relative;
    margin-top: 4em;
    padding: 16px;
}
div.entry-content > div.riyousya_sozai h3::before{
    display: none;
}
.riyousya_sozai h3 {
    text-align: center;
    position: absolute;
    right: 0;
    left: 0;
    top: -1.4em;
    font-size: clamp(21px,6.2vw,31px);
}
.riyousya_sozai span {
    padding: 0 .5em;
    background: #FFF;
    color: #0094D6;
}
.riyousya_sozai .inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.2em .5em .5em;
    gap: 20px;
}
a.btn_riyousya {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #ffffff;
    text-align: center;
    text-decoration: none;
    padding: 10px 20px 20px 55px;
    width: 100%;
    background-color: #0063a4;
    border-radius: 50px;
    box-sizing: border-box;
    position: relative;
    transition-duration: 0.3s;
}
a.btn_riyousya::before {
  content: '';
  width: 35px;
  height: 35px;
  position: absolute;
  top: 51%;
  left: 8px;
  margin-top: -18px;
  background-image: url("images/pages/dlicon_user.png");
  background-size: contain;
  background-repeat: no-repeat;
}
a.btn_riyousya span {
    margin: 5px 0 0 0;
    font-size: clamp(14px,4.0vw,31px);
    font-weight: bold;
    line-height: 1;
    background: none;
    color:#FFFFFF;    
}
a.btn_riyousya:hover {
  color: #ffffff;
  background-color: #00a39e;
}

.charge {
    border:solid 5px #00B81A;
}

.charge h3 span {
    color: #00B81A;
}

.charge_txt img {
    padding-bottom: 20px;
}

/*20241205和香更新　クリスマスVer*/
.mv.xmas_ver {
	padding-bottom: 40px;
	background: #fff url("images/mv/mv_bg_xmas_sp.png")no-repeat;
	background-position: center bottom;
	background-size: cover;
}
/*.top_soudankai_txt.xmas_ver {
	width: 100%;
	max-width: 100%;
}*/
p.top_soudankai_txt.xmas_ver {
	margin: 20px 0;
	background: rgba(255,255,255,0.89);
	border-radius: 10px;
	text-align: center;
}
p.top_soudankai_txt.xmas_ver a {
	display: inline-block;
    margin: 10px 1.5em;
	text-align: left;
}
.img_bosyu.xmas_ver {
	margin: 35px 0 40px;
}
.period_img_wrap.xmas_ver {
	margin-bottom: 0;
}

.img_logo_20241217 {
    display: flex;
    flex-direction: column;
	width: 100%;
    gap:20px;
}
.mv_logo_20241217side {
    margin-bottom: 15px;
}
img.mv_plemium20241217 {
   margin: 15px 0; 
}

.youtube {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9のアスペクト比 */
    height: 0;
}
.youtube iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

/*20241220和香更新　青い冬Ver*/
.mv.bluewinter_ver {
	padding-bottom: 40px;
	background: #fff url("images/mv/mv_bg_bluewinter202501_sp.png")no-repeat;
	background-position: center bottom;
	background-size: cover;
}

/*20250122渡部更新　春ver*/
.mv.spring_ver {
	padding-bottom: 40px;
	background: #fff url("images/mv/mv_bg_spring202501.jpg")no-repeat;
	background-position: center bottom;
	background-size: cover;
}


/*20241220和香更新　TOPコンテンツ（商品券概要）*/
.pay_detail h3 {
	margin: 30px auto;
    width: 100%;
    max-width: 920px;
}
.pay_detail h3 span {
	padding: 5px 3.5em;
	color: #fff;
	font-size: 120%;
	font-weight: 600;
	border-radius: 50px;
}
.pay_detail h3.ippan span {
	background: #005597;
}
.pay_detail h3.kosodate span {
	background: #0ca183;
}

/*20250107和香更新　トップページ修正*/
.img_logo_1col {
	/*padding: 20px 0;*/
	width: 100%;
}
.img_infobox_1col {
	margin-bottom: 30px;
	width: 100%;
}
img.mv_logo_202501 {
	padding: 13px 0 25px;
	max-width: 100%;
}
span.fin {
	display: inline-block;
	margin-left: 5px;
	padding: 0 5px;
	color: #DB0606;
	font-size: 90%;
	border: 1px solid #DB0606;
}
a.btn_kokuti.extension::after {
    content: '延長しました';
	display: inline-block;
    position: absolute;
    bottom: -5px;
	left: 53%;
	-webkit-transform : translateX(-50%);
	transform : translateX(-50%);
	padding: 0px 10%;
	width: 50%;
	max-width: 350px;
	color: #fff;
	font-size: 70%;
	background: #ff9916;
	border-radius: 5px;
}
a.btn_kokuti.adjustment::after {
    content: '精算スケジュール追加';
	display: inline-block;
    position: absolute;
    bottom: -5px;
	left: 53%;
	-webkit-transform : translateX(-50%);
	transform : translateX(-50%);
	padding: 0px 10%;
	width: 50%;
	max-width: 350px;
	color: #fff;
	font-size: 70%;
	background: #ff9916;
	border-radius: 5px;
}
a.btn_kokuti.new::after {
    content: 'NEW';
	display: inline-block;
    position: absolute;
    bottom: -5px;
	left: 53%;
	-webkit-transform : translateX(-50%);
	transform : translateX(-50%);
	padding: 0px 10%;
	width: 50%;
	max-width: 350px;
	color: #fff;
	font-size: 70%;
	background: #ff9916;
	border-radius: 5px;
}




/* 子育て応援枠向け内部リンク */
.foruser_kosodate_menu {
    display: flex;
    justify-content: center;
    flex-direction: column;
    gap:30px;
}
.foruser_kosodate_menu .button001 a {
    background: #fff;
    border-radius: 50px;
    border:solid 1px #FF6DB1;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    width: 90%;
    padding: 10px 25px;
    color: #000;
    transition: 0.1s ease-in-out;
    font-weight: 500;
	text-decoration: none;
}
.foruser_kosodate_menu .button001 a:hover {
    background: #FF6DB1;
    color: #FFF;
}
.foruser_kosodate_menu .button001 a:after {
    content: '';
    width: 10px;
    height: 10px;
    border-top: 3px solid #313131;
    border-right: 3px solid #313131;
    transform: rotate(135deg) translateY(-48%);
    position: absolute;
    top: 30%;
    right: 20px;
}
.foruser_kosodate_menu .button001 a:hover:after {
    border-color: #FFF;
}

dl.kosodate_riyoukikan {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    margin: 0 auto;
    width:100%;
	font-size: 120%;
}
.kosodate_riyoukikan dt {
    margin: 2px 0;
    padding: 0;
    width:200px;
    background: #FF5474;
    text-align: center;
    border-radius: 5px;
    color:#fff;
}
.kosodate_riyoukikan dd {
    margin: 2px 0 8px;
    padding: 0;
}

.honnninnkakunin_box {
    margin: 0 auto;
    padding: 15px 0;
    background: #F7292D;
    max-width:90%;
    border-radius: 10px;
}
.honnninnkakunin_box p {
    margin: 0;
}

.honnninnkakunin_box a {
    font-size: 1.20em;
    text-align: center;
    display: block;
    color:#fff;
    text-decoration: none;
}

a#nyukin-guide {
    padding-top: 500px;
    margin-top: -500px;
}

.mv_schedule_202501 {
	margin-top: 20px;
}

p.store_riyou {
	margin-bottom: 5px;
	padding:10px 15px;
	color:#FFFFFF;
	border:solid 1px #e6e6e6;
	background: #FF7600;
	line-height: 1.25;
}

/*20251023子育て応援枠　追加販売*/
.mv.kosodate202510 {
	padding-bottom: 40px;
	background: #fff url("images/mv/mv_bg_kosodate2ndhanbai.png") no-repeat;
	background-position: center bottom;
	background-size: cover;
}
p.grouping_ippan {
	margin: 0 auto;
	padding: 5px;
	color: #005597;
	font-size: 130%;
	font-weight: 700;
	text-align: center;
	border: 1px solid #005597;
	background: rgb(237, 247, 255);
}
p.grouping_kosodate {
	margin: 0 auto;
	padding: 5px;
	color: #0ca183;
	font-size: 130%;
	font-weight: 700;
	text-align: center;
	border: 1px solid #0ca183;
	background: #E6F9F5;
}

section.pay_detail dl.kosodate.focus {
    padding: 8px 8px 3px;
	background: rgba(249,109,114,0.12);
	border: 2px solid #f96d72;
	border-radius: 10px;
}

.kosodate > #kosodate_new {
	width: 172px;
    height: 72px;
    margin: 0 0 -2px -44px;
}
img#kakudai_mark {
	margin: 0 0 -16px 5px;
    position: relative;
    top: -18px;
}

.ns20251027 {
	margin: 0 auto 20px;
	padding: 15px 20px;
	width: 90%;
	background: #FFFFFF;
	font-size: 1.05em;
}
.ns20251027 h2 {
	margin-bottom: 15px;
	font-size: 1.30em;
	text-align: center;
}
.topmessage {
	border: 1px solid #000;
	padding: 1em 1em;
}

#charge {
	scroll-margin-top: 0px;
}
	
}