/*--------------------------------------------------------------
>>> 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:976px) { 

html {
	font-family: "Noto Sans JP", Sans-serif;
	font-weight: 500;
	font-style: normal;
	font-size: 95%;
	-webkit-text-size-adjust: 100%;
    scroll-padding-top: 75px;
    scroll-behavior: smooth;
    scrollbar-gutter: stable;
}

/* 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 {
	overflow-x: hidden;
	background: #FFF3F3;
}
hr {
	background-color: #ccc;
	border: 0;
	height: 1px;
	margin-bottom: 1.5em;
}
dt {
	font-weight: 700;
}
dd {
	margin: 0;
}
/* 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: #FC5757;
}
a:visited {
	color: #FC5757;
}
a:focus,
a:active {
	color: #FB3A3A;
	text-decoration: none;
}
a:focus {
	outline: none;
}
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: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_xmas_ver {
	margin: 0 auto;
	padding-top: 77px;
}
main.contents_page {
	padding-top: 80px;
}
main .contents_page_inner {
	margin-inline: auto;
    padding-block: 24px;
	padding-inline: 16px;
	width: 100%;
	max-width: 1100px;
    background: #fff;
}
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;
    left: 0;
	width: 100%;
    height: 75px;
	background: rgba(255,255,255,0.5);
	transition: all .5s;
	z-index: 100;
}
.header:has(.openbtn.active){
    background: #fff;
}
.header_inner {
	display: flex;
	align-items: center;
    height: 100%;
	padding-inline: 16px calc(32px + 60px);
}
.site_title {
	width: 100%;
    max-width: 300px;
}

/* Navigation
--------------------------------------------- */
/*ボタン外側*/
.openbtn {
	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: #ED798E;
  	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";
	position: absolute;
	top: 4px;
	left: -11px;
	width: 60px;
	text-align: center;
	color: #ED798E;
	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";
    transform: translateY(0) rotate(-45deg);
	position: absolute;
	top:7px;
	left:4px;
	width: 60px;
	text-align: center;
}

/*ナビメニュー*/
.sp_nav {
    position: fixed;
    left: 0;
    top: 75px;
    display: none;
    background-color: #fff;
    width: 100%;
    height: calc(100vh - 75px);
    padding-inline: 16px;
    padding-bottom: calc(55px + 1rem);
	overflow-y: auto;
    z-index: 99;
}
.sp_nav_wrap {
    display: flex;
    justify-content: center;
	padding-bottom: 40px;
}
.sp_nav ul.sp_nav_menu {
	width: 100%;
}
.sp_nav_character{
    text-align: right;
}
.sp_nav_character img {
    width: max(120px, 30vw);
}
/*リンクの文字スタイル*/
.sp_nav a,
.sp_nav a:active,
.sp_nav a:visited {
	color: #333;
	text-decoration: none;
	font-size: 100%;
	font-weight: 500;
	letter-spacing: 0.08em;
}

/*親メニュー*/
.sp_nav ul.sp_nav_menu > li a {
	position: relative;
	display: block;
	padding: 15px 30px 15px 45px;
}

.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;
}

/* footer
--------------------------------------------- */
#site_footer {
	position: relative;
	padding-top: 24px;
    margin-bottom: 55px;
	background: #FF95B0;
}
#site_footer p.title {
	margin-bottom: 1em;
	font-size: 1.5rem;/* 24px */
	font-weight: 700;
	text-align: center;
	color: #fff;
}

.footer_innerwrap {
    padding-inline: 16px;
	width: 100%;
	text-align: center;
}
.footer_innerwrap p {
	font-size: clamp(15px, 10.61px + 1.37vw, 24px);
	line-height: 1.5;
	color: #fff;
}

#site_footer p.office_name {
	margin-bottom: 2rem;
	font-weight: 700;
	color: #fff;

}
#site_footer p.tel_white {
    display: flex;
    justify-content: center;
    gap: 1em;
	margin-bottom: 1rem;
}
#site_footer p.office_term {
	margin-block: 1rem 2rem;
}
#site_footer p.office_term span {
    white-space: nowrap;
}

#site_footer .btn_foot_form {
	margin-top: 20px;
}

#site_footer .btn_foot_form a,
#site_footer .btn_foot_form a:visited {
	display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
	padding: 1em 1em;
	max-width: 500px;
    width: 100%;
	font-size: 120%;
	font-weight: 500;
	color: #fff;
	text-decoration: none;
	background: #FF6D92;
    border: 4px solid #fff;
    border-radius: 100vmax;
	transition: all .2s;
}
#site_footer .btn_foot_form a:active {
	transition: all .2s;
	background: #4CBF43;
}
#site_footer .btn_foot_form a img {
    max-width: 48px;
}

/*フッターメニュー*/
.footer_menu {
	margin-block: 24px 16px;
	width: 100%;
	max-width: 1100px;
}
.footer_menu li:not(.menu-item-privacy-policy) {
    display: none;
}
/*【下記スタイルは個人情報保護方針のみ下段に配置。フルメニュー時】*/
.footer_menu ul.nav li.menu-item-privacy-policy {
	margin: 5px 0 0;
	width: 100%;
	text-align: center;
    font-size: .9rem;
}

/*フッターメニュー共通スタイル*/
.footer_menu a,
.footer_menu a:visited {
	text-decoration: none;
	color: #fff;
}

/*コピーライト*/
#copyright {
	padding: 10px 16px;
	font-size: 0.5rem;/* 8px */
	font-weight: 500;
	text-align: center;
	letter-spacing: 0.25em;
	background: #fff;
}
#copyright a,
#copyright a:visited {
	color: #222;
	text-decoration: none;
}
#copyright a:active {
	text-decoration: underline;
}

/* TOPコンテンツ共通
--------------------------------------------- */
h2.h2_top {
	position: relative;
    margin: 14px 0 5px;
    padding: 0 0 7px;
    color: #222;
    font-size: clamp(21px,5.8vw,24px);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-align: center;
}
h3.h3_top {
	position: relative;
    margin: 30px 0 10px;
    padding: 0 10px 5px;
    color: #222;
    font-size: clamp(20px,2.5vw,28px);
    font-weight: 500;
    letter-spacing: 0.05em;
}

/* TOPコンテンツ（MV）
--------------------------------------------- */
.mv .kikan-inner{
    text-align: center;
}
.mv .kikan-inner img {
    max-width: 800px;
}
.mv {
	width: 100%;
}
.mv .mv-top_inner {
    display: flex;
    justify-content: space-between;
    gap: 4vw;
    max-width: 1400px;
    height: clamp(300px, 75vw, calc(100vh - 140px));
    max-height: 1000px;
    margin-inline: auto;
    padding-inline: 16px;
    padding-block: 24px;
}
.mv .mv-top{
    background-image: url('images/2026/mv/mv-bg_susuki.webp');
	background-size: cover;
    padding-top: 75px;
}
.mv .mv-top .mv-title_img {
    display: flex;
    flex-direction: column;
    width: min(45vw, 450px);
    min-width: 160px;
    height: auto;
}
.mv-title_img .mv-title_sub {
    margin-block: 0 16px;
}
.mv-title_img .mv-title_main {
    margin-block: auto 33px;
}
.mv .mv-top .mv-character_img {
    flex: 1;
    min-width: 110px;
    margin-block: auto 0;
    height: auto;
    text-align: center;
}
.mv .mv-top .mv-character_img img {
    max-width: 32vw;
}
/* 申込期間 */
.kikan {
    background-image: url("images/2026/mv/mv-bg_pink.webp");
    background-size: contain;
    background-repeat: repeat;
    padding-block: 24px;
}
.kikan-inner {
    display: flex;
    flex-direction: column;
    gap: 24px;
    max-width: 1100px;
    width: 100%;
    margin-inline: auto;
    padding-inline: 16px;
}
.kikan-flex {
    display: flex;
    flex-direction: column;
    text-align: center;
    gap: 24px;
}
.kikan-flex img {
    flex: 1;
}

/* TOPコンテンツ（お知らせ）
--------------------------------------------- */
section.news {
    padding-block: 24px;
}
section.news h2.h2_top {
    max-width: 300px;
    margin-inline: auto;
    padding-block: .5em;
    color: #fff;
    background: #ED798E;
    border-radius: 10px;
}
section.news .news_wrapper {
    padding: 24px 0;
}
section.news .news_wrapper ul {
    max-width: 900px;
    margin-inline: auto;
}
.news_wrapper ul li.news_box {
    display: flex;
    flex-direction: column;
    padding: 1em 14px;
    border-bottom: 1px solid #C4C4C4;
}

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

/*過去一覧*/
.news_more {
	margin-top: 32px;
	text-align: center;
}
.news_more a {
	display: inline-flex;
    align-items: center;
	padding: 10px 35px;
	color: #fff;
	font-weight: 500;
	text-decoration: none;
    background: #ED798E;
    width: 100%;
    max-width: 300px;
    border-radius: 100vmax;
	transition: all .2s;
}
.news_more a .news_more_text {
    flex: 1;
    text-align: center;
}
.news_more .arrow {
    margin-left: auto;
}
.news_more a:visited {
    color: #fff !important;
}

/* Posts and pages
--------------------------------------------- */
body.page,
body.single,
body.archive {
    background-image: url('images/2026/mv/mv-bg_pink.webp');
	background-size: contain;
    background-repeat: repeat;
}
.entry-content p {
	margin-bottom: 1.8em;
}
.entry-content ul,
.entry-content ol {
	margin: 0 0 1.5em 1.4em;
}

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

.entry-content ol {
	list-style: decimal;
}
.entry-content ol li {
	margin-bottom: 0.35rem; /* リストの間隔を空ける */
}
.entry-content ol li:last-child {
	margin-bottom: 0 /* リストの間隔を空ける */
}
.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-links {
	clear: both;
	margin: 0 0 1.5em;
}

/* Posts and pages（見出し）
--------------------------------------------- */
/* H1 */
h1.entry-title,
h1.category_name {
	padding-block: 30px;
	text-align: center;
    font-size: clamp(1.5rem,2vw,2.25rem);
    font-weight: 600;
}
/* H2 */
.entry-content h2 {
	margin: 40px 0 24px;
	padding-bottom: 8px;
	font-size: 1.4rem;
	font-weight: 600;
	border-bottom: 2px solid #ED798E;
	letter-spacing: 2px;
}
.entry_meta + h2,
.entry_meta + h3{
    margin-top: 0;
}
/* H3 */
.entry-content h3 {
	margin-bottom: 24px;
	padding-left: .5em;
	font-size: 1.3rem;
	font-weight: 600;
    border-left: 4px solid #ED798E;
}
/* H4 */
.entry-content h4 {
    position: relative;
    width: fit-content;
    margin-bottom: 24px;
    padding-inline: 1.5em;
	font-size: 1.125rem;/* 18px */
	font-weight: 600;
}
.entry-content h4::before,
.entry-content h4::after {
    content: "";
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    width: 1em;
    height: 2px;
    background: #ED798E;
}
.entry-content h4::before {
    left: 0;
}
.entry-content h4::after {
    right: 0;
}

/* 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 span.pages {
	display: block;
	text-align: center;
	border: none;
}
.wp-pagenavi span.current {
	color: #fff;
	background: #009245;
	border: 1px solid;
	border-radius: 3px;
	border-color: #009245 !important;
}

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

/* Posts and pages（お知らせアーカイブ）
--------------------------------------------- */
.archive ul.news_wrapper {
	margin: 30px 0;
}
/* Posts and pages（購入希望の皆さま）
--------------------------------------------- */
dl.user-schedule {
/*	display: flex;
	flex-wrap: wrap;*/
}
dl.user-schedule dt {
/*	width: 180px;*/
	color: #94854b;
	font-size: 1.2em;
}
dl.user-schedule dd {
	margin: 3px 0 3px;
/*	width: calc(100% - 180px);*/
	font-size: 1em;
}
dl.user-schedule .width100 {
	width: 100%;
}
dl.user-schedule dt.width100 {
	padding: 20px 0 10px;
}
dl.user-schedule dd.width100 > div {
	margin-bottom: 15px;
/*	display: flex;
	column-gap: 25px;*/
}
dl.user-schedule dd.width100 div p {
	margin: 0;
}
dl.user-schedule dd.width100 div p.date {
	margin: 0 0 5px;
	padding: 0 20px;
	background: #f4e7d0;
	border-radius: 40px;
	
}

/* 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;
	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%;
}

/*TEL*/
.con_tel {
	width: 190px;
}

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

/*ラジオボタン*/
.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-form p strong {
	display: block;
	color: #ac905e;
	margin-top: 10px;
	margin-bottom: 2px;
	border-bottom: 1px solid #ac905e;
}
.checklist {
	margin: 30px 0 30px;
}
.checklist .wpcf7-list-item {
	margin: 0 0 15px 1em;
}
.checklist p.checklist_txt {
	font-weight: 700;
	font-size: 1.1em;
}


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

p.caution {
	padding: 15px 20px;
    font-size: 0.85em;
    color: #FFF;
    text-align: center;
    background: #FF0C10;
    border-radius: 12px;
    line-height: 1.50;
}

/*個人情報　取扱同意*/
.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"],
.back-to-input-btn {
	width: 300px;
	padding: 1.5em 1em 1.6em;
	font-size: 115%;
	font-weight: 600;
    letter-spacing: 0.4em;
}

/* sidebar
--------------------------------------------- */
/* ▼side（これまでのお知らせ） */
aside.past_entry {
	background: #fff;
	padding: 20px;
}
aside.past_entry a,
aside.past_entry a:visited {
	color: #FC5757;
}
.past_entry h2 {
	margin-bottom: 30px;
	padding: 5px;
	color: #fff;
	font-size: 95%;
	font-weight: 500;
	text-align: center;
	background: #FF6D92;
	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;
}

/* 下層ページ（商品券の概要）
--------------------------------------------- */
@media{}

/* 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 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_area {
    position: fixed;
    left: 0;
    bottom: 0;
	display: flex;
	justify-content: space-around;
	padding-block: 4px;
	width: 100%;
    height: 55px;
	background-color: #ED798E;
	box-shadow: 0px 0px 4px rgba(0,0,0,0.25);
	z-index: 10000;
}
.footer_area .footer_area_inner {
	flex: 1;
}

/*名前*/
input.con_name {
	margin: 0 20px 10px 0;
	width: 100%;
}
input.con_name_inq {
	margin: 0 20px 0 0;
	width: 100%;
}
/*ふりがな*/
input.con_kana {
	margin: 0 20px 10px 0;
	width: 100%;
}
input.con_kana_inq {
	margin: 0 20px 0 0;
	width: 100%;
}

/*郵便番号*/
.con_yubin1 {
	margin: 5px 0 10px 0;
	width: 60px;
	
}
.inquiry_list input {
	font-size:0.85em;
}
input.con_yubin2 {
	margin: 5px 0 10px 0;
	width: 70px;
}
/*住所*/
input.con_jusyo,
input.con_chiban,
.con_tel,
input.con_apartment {
	margin: 5px 0 10px 0;
	width: 100%;
}

p.con_notice {
	margin-bottom: 10px;
	font-size:0.80em;
	line-height: 1.60;
	color:#FD2020;
}

a.inquiry_btn {
	display: flex;
    justify-content: center;
    align-items: center;
    gap: 1em;
	text-decoration: none;
    height: 100%;
    border-right: 2px solid #fff;
}
.footer_area_inner:last-child .inquiry_btn {
    border-right: none;
}
a.inquiry_btn img.tel {
	width: 20px;
	height: auto;
}
a.inquiry_btn img.form {
	width: 34px;
    height: auto;
}
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 28px 0 0;
}
a[href $='.pdf'] a {
    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;
}

.kakomi_white_maru {
	padding:16px 18px;
	background: #FFFFFF;
	border-radius: 10px;
}

.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;
}


/*------- 使える店舗検索・サポート携帯ショップ -------*/
/*------- 共通の検索フォーム -------*/
.searchform_box {
	padding: 2% 5%;
}
.searchform_box h2 {
	margin: 0 0 15px;
	font-weight: 700;
	/*font-size: clamp(12px,4.3vw,22px);*/
	font-size: 135%;
	text-align: center;
}
.searchform_box form {
	margin-top: 30px;
	font-size: 4.3vw;
}

/*店舗名検索*/
.searchform_box form input#feas_1_0 {
	width: 100%;
}
/*業種検索*/
.searchform_box form select#feas_1_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-1 {
	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-1 {
	margin-top: 18px;
	padding: 1.2em;
	color: #fff;
	font-size: 120%;
	font-weight: 700;
	letter-spacing: 0.15em;
	background: #F9B108;
	border: 1px solid #F9B108;
}
/*件数*/
.store_number {
/*	margin: 40px 0 0;*/
	text-align: center;
}
p.store_number span {
	display: inline-block;
	font-size: clamp(14px,3.7vw,18px);
	font-weight: 500;
	text-align: left;
}
#block-10 {
	display: inline-block;
	text-align: center;
	margin: 0;
}


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

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

li.store_box {
	padding: 2% 5% 3%;
}
li.store_box h3.title {
	margin: 0.7em 0 0.9em;
	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: rgba(0,146,68,0.85);
	/*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: 40%;
	color: #F2365D;
	text-align: center;
	background: #fff;
	border: 1px solid #F2365D;
	border-radius: 50px;
}
li.store_box .btn_wrap a:focus {
	background: #F2365D;
	color: #fff;
	text-decoration: none;
	transition: all .1s;
}
li.store_box .btn_wrap .nolink {
	display: block;
	margin: 14px 2px 0;
	padding: .5em;
	width: 40%;
	color: #bbb;
	text-align: center;
	background: #fff;
	border: 1px solid #bbb;
	border-radius: 50px;
}

.sma {
    display: none;
}

.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%;
}

img.top_store_entry {
	display: block;
	margin: 20px auto;

}

.kakomi-white {
	padding:10px 18px;
	background: #fff;
}

.kounyu_moushikomikikan {
	padding:5px 0;
	background: #fff;
}

.syohinken-omoushikomi table tr td {
	border: none;
	width: 100%;
	background: rgba(255,255,255,1.00);
}
.syohinken-omoushikomi table tr td:nth-child(1) {
	padding:20px;
	width:25%;
	vertical-align: top;
}
.syohinken-omoushikomi table tr td:nth-child(2) {
	padding:20px;
	width:75%;
}

.kakomi-white-kounyu,
.kakomi-white-kounyu2nd {
	margin: -10px auto -5px auto;
	padding: 0;
	background: none;
}
.kakomi-white-kounyu table,
.kakomi-white-kounyu2nd table {
}

.kakomi-white-kounyu table tr td,
.kakomi-white-kounyu2nd table tr td {
	margin: 0;
	padding: 0;
	border: none;
	width: 100%;
	background: rgba(255,255,255,1.00);
	font-size:0.80em;
}
.kakomi-white-kounyu table tr td:nth-child(1),
.kakomi-white-kounyu2nd table tr td:nth-child(1) {
	padding:18px 5px 5px 10px;
	width:30%;
	vertical-align: top;
}
.kakomi-white-kounyu table tr td:nth-child(2),
.kakomi-white-kounyu2nd table tr td:nth-child(2) {
	padding:10px 15px;
	width:70%;
}


.tablepress-id-2 tr th,
.tablepress-id-2 tr td {
	padding: 2px 5px;
	font-size:0.8em;
}

.h2_top.tousers {
	margin: 30px 15px 10px;
	padding: 8px 0 8px;
	border:solid 3px #17880F;
	border-radius: 5px;
	background: rgba(255,255,255,1.00);
}
.sp_navmenu {
	margin: 95px 0 0 0;
}

.sp_navmenu ul {
	display: flex;
	justify-content: center;
	gap:15px;
}

.sp_navmenu ul li {
	padding: 0 0 0 34px;
	color: #CE4965;
	text-decoration: none;
	font-size: 95%;
	font-weight: 500;
	letter-spacing: 0.04em;
	background: url("images/headers/nav_list.svg") no-repeat 4% 50%;
}

.sp_navmenu ul li a {
	text-decoration: none;
}

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

.kounyu_guide {
	display: flex;
	gap:20px;
}
.kounyu_guide div {
	padding: 15px 10px;
	width:50%;
	border:solid 3px #17880F;
	border-radius: 5px;
	background: rgba(255,255,255,1.00);
	text-align: center;
	font-size: clamp(16px,1.200vw,24px);
}
.kounyu_guide div a {
	text-decoration: none;
}

/* よくある質問　利用者向け・店舗向け内部リンク */
.faq_menu {
	margin-bottom: 20px;
    display: flex;
    justify-content: center;
    gap:10px;
}
.faq_menu .button001 {
	width: 33.333%;
    font-size: clamp(10px,2.800vw,16px);
}
.faq_menu .button001 a {
	background: #a9ed64;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    padding: 5px 10px;
    color: #313131;
    transition: 0.3s ease-in-out;
    font-weight: 500;
    text-decoration: none;
}
.faq_menu .button002 a {
    background: #c32640;
    border-radius: 3px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 0 auto;
    width: 100%;
    padding: 10px 15px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 500;
	font-size: 1.10em;
	text-decoration: none;
}
/*よくある質問*/
.wp-block-esab-accordion-child {
	background: #fff;
}
.esab__body p {
	margin: 0 0 5px 0;
}


.tel div {
	margin: 0 auto 30px;
    padding: 15px 10px;
    width: 100%;
    border: solid 3px #17880F;
    border-radius: 5px;
    background: rgba(255,255,255,1.00);
    text-align: center;
    font-size: clamp(13px,3.0vw,28px);
}

.store_list_pdf {
	margin: 30px auto 0 auto;
	padding: 10px 15px;
	width:95%;
	background: #FFFFFF;
	border:solid 3px #4EC319;
}
.store_list_pdf a {
	text-align: center;
	display: block;
	font-size: 1.05em;
	letter-spacing: 1px;
	text-decoration: none;
}


#kigen {
	margin: 60px auto 25px auto;
	padding:20px 20px 22px;
	width:100%;
	background: #FFFFFF;
	border:solid 1px #e6e6e6;
}
#kigen_page {
	margin: 0 auto 30px auto;
	padding:11px 20px 12px;
	width:100%;
	background: #FFFFFF;
	border:solid 1px #e6e6e6;
}
#kigen p,
#kigen_page p {
	font-size: clamp(16px,2.5vw,26px);
	text-align: center;
}
#kigen span,
#kigen_page span {
	display: inline-block;
	margin: 15px 0 0 0;
	padding:5px 40px;
	background: #FF5F00;
	color: #FFFFFF;
	border-radius: 5px;
}

#questionnaire {
	margin: 60px auto -6px auto;
	padding:20px 20px 30px;
	width:100%;
	background: #FFFFFF;
	border:solid 1px #e6e6e6;
}
#questionnaire p {
	font-size: clamp(14px,3.5vw,26px);
	text-align: center;
}
#questionnaire img {
	display: block;
	margin: 0 auto;
}
#questionnaire span {
	display: inline-block;
	margin: 15px 0 0 0;
	padding:5px 40px;
	background: #FF5F00;
	color: #FFFFFF;
	border-radius: 5px;
}

.gaiyo table tr td {
	border:none;
	padding: 10px 6px;
	vertical-align: top;
}
.gaiyo table tr td:nth-child(1) {
	width: 26%;
    padding-left: 8px;
    border-bottom: solid 2px #ffa3b9;
}
.gaiyo table tr td:nth-child(2) {
	width:74%;
	padding-left: 8px;
	border-bottom:solid 1px #C7C7C7;
}

.point_kakomi {
	display: inline-block;
	padding:5px 12px;
	width:100%;
	background: #fc6382;
	border-radius: 30px;
	text-align: center;
	color: #FFF;
	font-size:1.25em;
}

.kikan_p table tr td {
	border:none;
	padding: 10px 6px;
	vertical-align: top;
}
.kikan_p table tr td:nth-child(1) {
	width: 26%;
    padding-left: 8px;
    border-bottom: solid 2px #ffa3b9;
}
.kikan_p table tr td:nth-child(2) {
	width:74%;
	padding-left: 8px;
	border-bottom:solid 1px #C7C7C7;
}

p.utilization {
	font-size: 0.95em;
    margin-top: 30px;
}

img.entry_bn {
	margin-block: 44px 5px;
	padding-inline:20px;
}

.suryo-radio label .wpcf7-list-item-label::after {
    content: "口";
}