/*
Theme Name: Twenty Twelve
Theme URI: https://wordpress.org/themes/twentytwelve/
Author: the WordPress team
Author URI: https://wordpress.org/
Description: The 2012 theme for WordPress is a fully responsive theme that looks great on any device. Features include a front page template with its own widgets, an optional display font, styling for post formats on both index and single views, and an optional no-sidebar page template. Make it yours with a custom menu, header image, and background.
Version: 4.3
Tested up to: 6.6
Requires at least: 3.5
Requires PHP: 5.2.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Tags: blog, one-column, two-columns, right-sidebar, custom-background, custom-header, custom-menu, editor-style, featured-images, flexible-header, footer-widgets, full-width-template, microformats, post-formats, rtl-language-support, sticky-post, theme-options, translation-ready, block-patterns
Text Domain: twentytwelve

This theme, like WordPress, is licensed under the GPL.
Use it to make something cool, have fun, and share what you've learned with others.
*/

/* =Notes
--------------------------------------------------------------
This stylesheet uses rem values with a pixel fallback. The rem
values (and line heights) are calculated using two variables:

$rembase:     14;
$line-height: 24;

---------- Examples

* Use a pixel value with a rem fallback for font-size, padding, margins, etc.
	padding: 5px 0;
	padding: 0.357142857rem 0; (5 / $rembase)

* Set a font-size and then set a line-height based on the font-size
	font-size: 16px
	font-size: 1.142857143rem; (16 / $rembase)
	line-height: 1.5; ($line-height / 16)

---------- Vertical spacing

Vertical spacing between most elements should use 24px or 48px
to maintain vertical rhythm:

.my-new-div {
	margin: 24px 0;
	margin: 1.714285714rem 0; ( 24 / $rembase )
}

---------- Further reading

http://snook.ca/archives/html_and_css/font-size-with-rem
http://blog.typekit.com/2011/11/09/type-study-sizing-the-legible-letter/


/* =Reset
-------------------------------------------------------------- */
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500&display=swap');
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
margin: 0;
padding: 0;
border: 0;
font-style:normal;
font-weight: normal;
font-size: 100%;
vertical-align: baseline;
font-family:Avenir , "Open Sans" , "Helvetica Neue" , Helvetica , Arial , Verdana , Roboto ,"Yu Gothic" , "YuGothic" ,  "Hiragino Kaku Gothic Pro" , "Meiryo UI" , Meiryo , "MS PGothic" , sans-serif;
	
}
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
	display: block;
}

html{
	overflow-y: scroll;
}

blockquote, q {
	quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
	content: '';
	content: none;
}

input, textarea{
	margin: 0;
	padding: 0;
}

ol, ul{
	list-style:none;
}


ul.flex,.flex{
	display:-webkit-box;
	display:-ms-box;
	display:-moz-flexbox;
	display:-ms-flexbox;
	display:-moz-flex;
	display:-ms-flex;
	display:flex;
	-moz-box-lines:multiple;
	-ms-flex-wrap:wrap;
	flex-wrap:wrap;
	-webkit-box-pack: left;
	-ms-flex-pack: left;
	justify-content: left;
}

table{
	border-collapse: collapse; 
	border-spacing:0;
	width:100%;
}

caption, th{
	text-align: left;
}

a:focus {
	outline:none;
}

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

* html .clear {
	height: 1px;
}

.both{
	clear:both;
}

.inline_block {  
	display: inline-block;  
	*display: inline;  
	*zoom: 1;  
}
*{
	-webkit-box-sizing:border-box;
	        box-sizing:border-box;
}
a{
	text-decoration:none;
	color:#1a1a1a;
}
a:hover {
	color:#D0B245;
}
body {
	overflow:hidden;
	background:#fff;
}
div, a, p, h1, h2, h3, h4, h5, h6, span, th, td, li, time, footer, button, label, strong, em, b{
	color:#1a1a1a;
	font-family: "Noto Serif JP", serif;
	font-size:16px;
}
b{font-weight:bold;}
img{
	width: 100%;
	display: block;
	height: auto;
}
.grecaptcha-badge {
    position: absolute;
    z-index: -100;
    visibility: hidden;
}
section[class^="index_"]{
}
.width {
	width:80%;
	max-width:1200px;
	margin:0 auto;
}
p{
	margin-bottom:10px;
	letter-spacing:1px;	
}
section a, section span, section b, section strong {
	font-size:100%;
}
.mt15 {margin-top:15%!important;}
.mt10 {margin-top:10%!important;}
.mt8 {margin-top:8%!important;}
.mt5 {margin-top:5%!important;}
.mt3 {margin-top:3%!important;}
.mt0 {margin-top:0%!important;}
.mb0 {margin-bottom:0%!important;}
.mb3 {margin-bottom:3%!important;}
.mb5 {margin-bottom:5%!important;}
.mb8 {margin-bottom:8%!important;}
.mb10 {margin-bottom:10%!important;}
.mb15 {margin-bottom:15%!important;}

div.float {
    margin: 3% auto;
}
.float p.floatr {
    float: right;
    margin: 0 0 10px 3%;
    width: 47%;
}
.float p.floatl {
    float: left;
    margin: 0 3% 10px 0;
    width: 47%;
}
.w30 {
	width:30%!important;
}
.maru {
	border-radius: 50%;
	overflow: hidden;
}

.center {
	text-align:center!important;
}
.right {
	text-align:right!important;
}
.left {
	text-align:left!important;
}
span.ib {
	display:inline-block!important;
}
span.bu {
	border-bottom:1px solid;
	font-weight:500;
	font-size:100%;
}
span.bo {
	font-size:100%;
	font-weight:600;
}
span.bbig{
	font-weight:bold!important;
	font-size:120%!important;
}
span.small {
	font-size:80%!important;
}
span.yb {
	background: -webkit-gradient(linear, left top, left bottom, color-stop(60%, transparent), color-stop(0%, #FFFAC6));
    background: -o-linear-gradient(transparent 60%, #FFFAC6 0%);
    background: linear-gradient(transparent 60%, #FFFAC6 0%);
}
span.yellow {
	color: #D0B245!important;
}
span.red {
	color: #c93c3c!important;
}

.noggl .wp-gr.wpac {
    display: none!important;
}
.noggl .back1 .width h2.mt5 {
    margin-top: 0!important;
}

@-webkit-keyframes fadein {
	from {opacity: 0;}
	to {opacity: 1;}
}

@keyframes fadein {
	from {opacity: 0;}
	to {opacity: 1;}
}
@-webkit-keyframes fadeinrl {
	from {
		opacity: 0;
		-webkit-transform: translateX(20px);
		        transform: translateX(20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
}
@keyframes fadeinrl {
	from {
		opacity: 0;
		-webkit-transform: translateX(20px);
		        transform: translateX(20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
}
@-webkit-keyframes fadeinlr {
	from {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		        transform: translateX(-20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
}
@keyframes fadeinlr {
	from {
		opacity: 0;
		-webkit-transform: translateX(-20px);
		        transform: translateX(-20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateX(0);
		        transform: translateX(0);
	}
}
@-webkit-keyframes fadeinbt {
	from {
		opacity: 0;
		-webkit-transform: translateY(20px);
		        transform: translateY(20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
@keyframes fadeinbt {
	from {
		opacity: 0;
		-webkit-transform: translateY(20px);
		        transform: translateY(20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
@-webkit-keyframes fadeintb {
	from {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		        transform: translateY(-20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}
@keyframes fadeintb {
	from {
		opacity: 0;
		-webkit-transform: translateY(-20px);
		        transform: translateY(-20px);
	}
	to {
		opacity: 1;
		-webkit-transform: translateY(0);
		        transform: translateY(0);
	}
}

.fadein{
	opacity:0;
	-webkit-transition : all 3s;
	-o-transition : all 3s;
	transition : all 3s;
}
.downup .fadein {
	opacity : 0;
	-webkit-transform : translate(0, 50px);
	    -ms-transform : translate(0, 50px);
	        transform : translate(0, 50px);
	-webkit-transition : all 800ms;
	-o-transition : all 800ms;
	transition : all 800ms;
}
.updown .fadein {
	opacity : 0;
	-webkit-transform : translate(0, -50px);
	    -ms-transform : translate(0, -50px);
	        transform : translate(0, -50px);
	-webkit-transition : all 800ms;
	-o-transition : all 800ms;
	transition : all 800ms;
}
.fadeinrl .fadein {
	opacity : 0;
	-webkit-transform : translate(80px, 0);
	    -ms-transform : translate(80px, 0);
	        transform : translate(80px, 0);
	-webkit-transition : all 800ms;
	-o-transition : all 800ms;
	transition : all 800ms;
}
.fadeinlr .fadein {
	opacity : 0;
	-webkit-transform : translate(-80px, 0);
	    -ms-transform : translate(-80px, 0);
	        transform : translate(-80px, 0);
	-webkit-transition : all 800ms;
	-o-transition : all 800ms;
	transition : all 800ms;
}
.fadein.scrollin {
	opacity : 1;
	-webkit-transform : translate(0, 0);
	    -ms-transform : translate(0, 0);
	        transform : translate(0, 0);
}

ul[class^="col2_"] > li {
    width: 48%;
    margin-right: 4%;
    margin-bottom: 3%;
}
ul[class^="col3_"] > li {
    width: 30%;
    margin-right: 5%;
    margin-bottom: 3%;
}
ul[class^="col2_"] > li:nth-child(even), ul[class^="col3_"] > li:nth-child(3n){
    margin-right: 0;
}

/*------------------------------------*\
    ヘッダー＆フッダー00
\*------------------------------------*/

header.top hgroup {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
}
.logo-h {
    width: 180px;
}
.logo-h a {
    padding: 10px;
    display: block;
}
.menu {
    padding-right: 15px;
}
.menu > nav > ul > li {
    display: inline-block;
    position: relative;
    text-align: center;
}
.menu > nav > ul > li > a {
    display: block;
    padding: 34px 14px;
}
.menu > nav > ul > li a:hover {
    color: #D0B245;
}
.menu > nav > ul > li ul {
    height: 0;
    position: absolute;
    left: 50%;
    -webkit-transform: translateY(0%) translateX(-50%);
    -ms-transform: translateY(0%) translateX(-50%);
    transform: translateY(0%) translateX(-50%);
    top: 100%;
    overflow: hidden;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    opacity: 0;
    z-index: 5;
    min-width: -webkit-fit-content;
    min-width: -moz-fit-content;
    min-width: fit-content;
    width: 100%;
}
.menu > nav > ul > li:hover ul {
    opacity: 1;
    height: auto;
}
.menu > nav > ul > li ul::before {
    content: "";
    width: 100%;
    height: 0;
    background: #ffffff;
    position: absolute;
    z-index: -1;
    top: 0;
    left: 0;
    opacity: 0;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    border: 5px solid #d0b245;
    border-top: unset;
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
}
.menu > nav > ul > li:hover ul::before {
    height: 100%;
    opacity: 1;
}
.menu > nav > ul > li ul a {
    display: block;
    padding: 0 0 20px;
}
.menur {
    display: none;
}

.footer {
    background: #a0a0a0;
    padding: 5% 0;
    margin-bottom: 5%;
}
ul.sns {
    max-width: 1200px;
    width: 90%;
    margin: 0 auto 3%;
    text-align: center;
    font-size: 0;
}
ul.sns li {
    display: inline-block;
    width: calc(90% / 6);
    margin-right: 2%;
    max-width: 55px;
}
ul.sns li:last-child {
    margin-right: 0;
}
ul.sns li a:hover {
    opacity:0.8;
}
ul.f-sitemap {
    text-align: center;
}
ul.f-sitemap li {
    display: inline-block;
}
ul.f-sitemap li a {
    color: #fff;
    padding: 15px 10px;
}
ul.f-sitemap li a:hover {
    color:#aa2228;
}
.logo {
    width: 50%;
    max-width: 400px;
    margin: 0 auto 2%;
}
footer#colophon {
    margin-top: 4%;
    background: #1a1a1a;
    color: #fff;
    text-align: center;
    font-size: 14px;
    padding: 10px 0;
}

.ttl1 {
    font-size: 35px;
    margin: 8% auto 3%;
    letter-spacing: 1px;
}
.ttl2 {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 5%;
    color: #fff;
    font-size: 40px;
    letter-spacing: 3px;
    position: relative;
    padding: 0 20px;
    -webkit-filter: drop-shadow(2px 2px 4px #0000006b);
    filter: drop-shadow(2px 2px 4px #0000006b);
    text-align: center;
}
.ttl2::before {
    content: "";
    width: 100vw;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 100%;
}
.ttl2::after {
    content: "";
    width: 100vw;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 100%;
}
.ttl2 span {
    display: block;
    font-size: 23px;
}
.ttl2 img {
    width: 60px;
    margin: 0 auto;
}
.ttl3 {
    margin: 8% auto 5%;
}
.ttl3 span:first-child {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto 20px;
    background: #A0A0A0;
    color: #fff;
    padding: 10px 30px;
    border-radius: 50px;
    position: relative;
}
.ttl3 span:nth-child(2) {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding: 0 20px;
    font-size: 30px;
    position: relative;
}
.ttl3 span:first-child::before {
    content: "";
    width: 100vw;
    height: 1px;
    background: #a0a0a0;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 100%;
    z-index: -1;
}
.ttl3 span:nth-child(2)::before {
    content: "";
    width: 100vw;
    height: 1px;
    background: #a0a0a0;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 100%;
}
.ttl3 span img {
    width: 30px;
    display: inline-block;
    vertical-align: text-bottom;
    margin-right: 10px;
}
.ttl4 {
    font-size: 25px;
}
.ttl5 {
    margin: 8% auto 5%;
    text-align: center;
    font-size: 40px;
    letter-spacing: 3px;
}
.ttl5 span {
    display: block;
    font-size: 20px;
    padding: 180px 0 10px;
    position: relative;
    background: url(/wp-content/uploads/2024/08/ttl.png)no-repeat center bottom / contain;
}
.ttl6 {
    color: #D0B245;
    font-size: 25px;
    margin-bottom: 3%;
}
.ttl6 span {
    color: #D0B245;
}
.ttl7 {
    text-align: center;
    font-size: 25px;
    background: -o-linear-gradient(90deg, transparent, #ddd, transparent);
    background: linear-gradient(90deg, transparent, #ddd, transparent);
    padding: 10px 0;
    margin: 5% auto 3%;
}
.ttl7 span {
	color: #D0B245;
	display: block;
	font-size: 14px;
	background: #fff;
	padding: 5px 0;
	margin-top: 8px;
}
.ttl8 {
    font-size: 23px;
    margin: 5px auto;
}
.ttl8 span, .ttl10 span {
	font-size:80%;
	display:inline-block;
}
.ttl9 {
    font-size: 25px;
    border-bottom: 1px solid;
    padding-bottom: 5px;
    margin: 8% auto 5px;
}
.ttl9 span {
	display:block;
	font-size: 16px;
	font-weight: bold;
}
.ttl10 {
    font-size: 20px;
    margin: 5px 0;
}
.ttl11 {
    padding: 10px 5px;
    background: #d0b245;
    color: #fff;
    font-size: 20px;
    margin-bottom: 10px;
}
.ttl12 {
    font-size: 20px;
    margin-bottom: 15px;
}
.ttl12 span {
    display: block;
    font-size: 70%;
    color: #d0b245;
    font-weight: bold;
}

p.link1, p.link2, p.link3, p.link4 {
    margin: 3% auto;
}
p.link1 a {
    display: block;
    width: 500px;
    margin: 0 auto;
    background: #fff;
    text-align: center;
    border-radius: 50px;
    font-size: 23px;
    padding: 13px 10px;
}
p.link1 a:hover {
    background: #1a1a1a;
}
p.link2 a {
    display: block;
    background: #D0B245;
    text-align: center;
    width: 300px;
    margin: 0 0 0 auto;
    padding: 15px 0;
    border-radius: 50px;
    color: #fff;
}
p.link2 a::after {
    content: "\03e";
    font-weight: bold;
    padding-left: 20px;
    font-size: 120%;
}
p.link2 a:hover {
    background: #1a1a1a;
}
p.link3 a {
    display: block;
    margin: 0 0 0 auto;
    width: 230px;
    background: url(/wp-content/uploads/2024/08/right.png)no-repeat center bottom / 100%;
    text-align: center;
    padding: 10px 20px 10px 0;
}
p.link4 a, .link-popup > p label.op_btn {
    display: block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
    padding: 15px 20px;
    background: #d0b245;
    color: #fff;
    position: relative;
    min-width: 300px;
    text-align: center;
	    cursor: pointer;
}
p.link4 a::before, .link-popup > p label.op_btn::before {
    content: "";
    width: calc(100% + 6px);
    height: calc(100% + 6px);
    position: absolute;
    border: 1px solid #d0b245;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}
p.link4 a:hover, .link-popup > p label.op_btn:hover {
    background: #ddd;
    color: #1a1a1a;
}
p.link4 a:hover::before, .link-popup > p label.op_btn:hover::before {
    border: 1px solid #ddd;
}
ul.link5 {
    margin: 3% auto;
    text-align: center;
	font-size:0;
}
ul.link5 li {
    width: 32%;
	display:inline-block;
	margin-right:2%;
}
ul.link5 li:last-child {
	margin-right:0;
}
ul.link5 li a {
    display: block;
    padding: 25px 0;
    background: url(/wp-content/uploads/2024/08/back1.webp)no-repeat center / cover;
    font-size: 18px;
    position: relative;
}
ul.link5 li a::before {
    content: "";
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    position: absolute;
    border: 1px solid #fff;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
ul.link5 li a:hover {
    background: #d0b245;
    color: #fff;
    background: #1a1a1a;
}



/*------------------------------------*\
    トップページ00
\*------------------------------------*/

section.main {
    border-top: 5px solid #D0B245;
    position: relative;
}
section.main::before {
    content: "";
    width: 50%;
    height: 100%;
    position: absolute;
    background: -webkit-gradient(linear, left top, right top, from(#fff), to(transparent));
    background: -o-linear-gradient(left, #fff, transparent);
    background: linear-gradient(90deg, #fff, transparent);
    top: 0;
    left: 0;
    z-index: 1;
}
.mv iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    display: block;
}
.mv-txt {
    position: absolute;
    top: 0;
    bottom: 0;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    margin: auto;
    left: 5%;
    z-index: 2;
}
.mv-txt h2.ttl1 {
    margin: 0 auto 10%;
}
.mv-txt p {
    line-height: 200%;
    font-size: 20px;
}

section.back1 {
    background: url(/wp-content/uploads/2024/08/back1.webp)no-repeat center / cover;
    padding: 5% 0;
}
ul.shoplist {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}
ul.shoplist > li {
    width: 30%;
}
.open_button {
    cursor: pointer;
    display: block;
    position: relative;
}
.open_button::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: #0006;
    opacity: 0;
    transition: 0.2s;
}
.open_button::after {
    content: "view more";
    color: #fff;
    width: fit-content;
    height: fit-content;
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    left: 0;
    right: 0;
    opacity: 0;
    transition: 0.2s;
}
.open_button:hover::before,.open_button:hover::after {
    opacity: 1;
}
ul.shoplist > li h3 {
    background: #fff;
    text-align: center;
    border-radius: 50px;
    padding: 5px 0;
    font-size: 23px;
}
ul.icon {
    text-align: center;
    font-size: 0;
    margin-top: 3%;
}
ul.icon li {
    width: 30%;
    display: inline-block;
    margin-right: 5%;
    max-width: 60px;
}
ul.icon li:last-child {
    margin-right: 0;
}
ul.icon li a {
    background: #D0B245;
    display: block;
    border-radius: 50%;
    padding: 12px;
}
ul.icon li:nth-child(2) a {
    background: #A92128;
}
ul.icon li:nth-child(3) a {
    background: #fff;
}
ul.icon li a:hover {
    background: #1a1a1a;
}
.modal_wrap input {
    display: none;
}
.modal_wrap > p {
    margin: 0;
}
.modal_overlay {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    overflow: auto;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 110;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.7);
    opacity: 0;
    -webkit-transition: opacity 0.5s, -webkit-transform 0s 0.5s;
    transition: opacity 0.5s, -webkit-transform 0s 0.5s;
    -o-transition: opacity 0.5s, transform 0s 0.5s;
    transition: opacity 0.5s, transform 0s 0.5s;
    transition: opacity 0.5s, transform 0s 0.5s, -webkit-transform 0s 0.5s;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    visibility: hidden;
}
.modal_wrap input:checked ~ .modal_overlay {
    opacity: 1;
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    -webkit-transition: opacity 0.5s;
    -o-transition: opacity 0.5s;
    transition: opacity 0.5s;
    visibility: visible;
}
.modal_trigger {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
.modal_content {
    position: fixed;
    -ms-flex-item-align: center;
    -ms-grid-row-align: center;
    align-self: center;
    width: 70%;
    max-width: 1000px;
    border: 30px solid #fff;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background: #fff;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    text-align: justify;
    border-radius: 20px;
    margin: 10% auto;
    max-height: 80%;
    overflow: scroll;
}
.close_button {
    position: absolute;
    top: 8px;
    right: 10px;
    -webkit-transition: all 200ms;
    -o-transition: all 200ms;
    transition: all 200ms;
    font-size: 40px;
    font-weight: bold;
    text-decoration: none;
    color: #333;
    line-height: 35px;
    cursor: pointer;
    z-index: 1;
}
.popup .ttl4 {
    text-align: left;
    margin-bottom: 10px;
    padding-right: 50px;
}
table.info {
    border-collapse: separate;
    border-spacing: 0 3px;
    margin: 0 auto 3%;
}
table.info th {
    width: 150px;
    text-align: center;
    background: #D0B245;
    padding: 10px 0;
    color: #fff;
}
table.info td {
    padding: 10px;
}
.access iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    max-height: 400px;
    display: block;
}
ul.icon2 {
    margin: 3% auto;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
ul.icon2 li {
    width: 48%;
}
ul.icon2 li a {
    background: #d0b245;
    display: block;
    text-align: center;
    padding: 10px 0;
}
ul.icon2 li:nth-child(2) a {
    background: #3aae36;
}
ul.icon2 li a img {
    width: 40px;
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
}
ul.icon2 li a span {
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    padding-right: 10px;
}
ul.icon2 li a:hover {
    background: #1a1a1a;
}
.pu-instagram {
    margin-bottom: 5%;
}
.pu-instagram span {
    color: #fff;
}

section.index1 {
    position: relative;
    padding-bottom: 30%;
    margin-bottom: 8%;
}
section.index1::before {
    content:"";
    background: -webkit-gradient(linear, left bottom, left top, from(#a0a0a0), to(transparent));
    background: -o-linear-gradient(bottom, #a0a0a0, transparent);
    background: linear-gradient(0deg, #a0a0a0, transparent);
    width: 100%;
    height: 50%;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: -1;
}
section.index1::after {
    content: "";
    width: 110%;
    height: 50%;
    background: url(/wp-content/uploads/2024/08/kirakira.webp)no-repeat center bottom / contain;
    position: absolute;
    bottom: 0;
    left: -5%;
    z-index: -1;
}
ul.nayami {
    font-size: 0;
    text-align: center;
    margin: 10% auto 5%;
}
ul.nayami li {
    width: calc(94% / 4);
    display: inline-block;
    margin-right: 2%;
    margin-bottom: 5%;
    vertical-align: top;
    font-size: 18px;
}
ul.nayami li:nth-child(4n) {
    margin-right: 0;
}
ul.nayami li span {
    background: #a0a0a0;
    display: block;
    border-radius: 50%;
    padding: 15px;
    max-width: 100px;
    margin: 0 auto 10px;
    width: 80%;
}
ul.nayami li:nth-child(even) span, ul.nayami li:nth-child(4n+5) span, ul.nayami li:nth-child(4n+7) span {
    background: #D0B245;
}
ul.nayami li:nth-child(4n+6) span, ul.nayami li:nth-child(4n+8) span {
    background: #a0a0a0;
}

section.back2 {
    position: relative;
    padding-bottom: 1px;
}
section.back2::before {
    content: "";
    position: absolute;
    width: 100%;
    height: calc(100% - 300px);
    left: 0;
    bottom: 0;
    background: url(/wp-content/uploads/2024/08/kirakira2-rotated.jpg)repeat-y center top / 110%;
    z-index: -1;
    opacity: 0.5;
}
ul.list-img-txt {}
ul.list-img-txt > li {
    margin-bottom: 5%;
}
ul.list-img-txt > li::after {
    content: "."; 
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
ul.list-img-txt > li > p:first-child {
    width: 30%;
    margin: 0 3% 10px 0;
    float: left;
}
ul.list-img-txt > li:nth-child(even) > p:first-child {
    float: right;
    margin: 0 0 10px 3%;
}

section.index2 {
    border-top: 5px solid #D0B245;
    background: -webkit-gradient(linear, left top, left bottom, from(#a0a0a0), to(transparent));
    background: -o-linear-gradient(top, #a0a0a0, transparent);
    background: linear-gradient(180deg, #a0a0a0, transparent);
    padding: 5% 0;
}
section.index2 > div {
    background: #fff;
    padding: 3%;
}
section.staff {
    margin: -30px auto 0;
}
section.staff .slick-dots {
    display: none!important;
}
section.staff .full-screen.slider {
    max-width: 250px;
    margin: 0 auto 0 5%;
}
.slick-prev, .slick-next {
    visibility: hidden;
}
.full-screen .slick-list {
  overflow: visible;
  padding: 0!important;
}
section.staff .slick-slide {
    margin-right: 20px;
    position: relative;
    vertical-align: top;
    border-radius: 50%;
    overflow: hidden;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
section.staff .slick-slide:last-child {
	display:none;
}
section.staff .slick-slide.slick-active {
    width: 300px!important;
    margin-top: -50px;
}

ul.faq {
}
ul.faq li {
    margin-bottom: 2%;
}
ul.faq li input {
    display: none;
}
label.qa-btn {
    display: block;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 20px;
    font-weight: 500;
    letter-spacing: 1px;
    padding: 20px;
    cursor: pointer;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    background: #a0a0a0;
    color:#fff;
}
label.qa-btn:hover {
	background: #d0b245;
}
ul.faq li input:checked ~ label.qa-btn {
    background: #d0b245;
}
.show-a {
    width: 100%;
    padding: 0 20px;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    -webkit-box-sizing: border-box;
    background: #fff;
    display: block;
    height: 0;
    overflow: hidden;
    opacity: 0;
}
ul.faq li input:checked ~ .show-a {
    height: auto;
    opacity: 1;
    padding: 20px 20px 0px;
    overflow: visible;
}
.show-a p:last-child {
    margin-bottom:0;
}


/*------------------------------------*\
    アーカイブ00
\*------------------------------------*/





/*------------------------------------*\
    下層ページ00
\*------------------------------------*/

section.header {
    background: url(/wp-content/uploads/2024/08/back1.webp)no-repeat center / cover;
    border-top: 5px solid #D0B245;
    padding: 0 10px 10px;
    margin-bottom: 8%;
}
section.bread {}
section.bread li {
    display: inline-block;
    font-size: 14px;
}
section.bread li::after {
    content:"/";
    padding: 0 10px;
}
section.bread li:last-child::after {
    display:none;
}
section.bread li a {
    display: inline-block;
    padding: 12px 0;
}
section.header div.width {
    margin: 5% auto;
    text-align: center;
}
.ttl-page {
    font-size: 40px;
    position: relative;
}
.ttl-page br {
	display:none;
}
.ttl-page::before {
    content:"";
    height: 1px;
    width: 100px;
    background: #fff;
    position: absolute;
    bottom: -10px;
    left: 0;
    right: 0;
    margin: auto;
}
.ttl-page span {
    display: block;
    color: #fff;
    font-size: 20px;
    margin-top: 10px;
}

ul.icon-link {
    -ms-flex-pack: distribute;
        justify-content: space-around;
    text-align: center;
    margin: 5% auto;
}
ul.icon-link li {
    width: calc(95% / 6);
    min-width: 100px;
}
ul.icon-link li a {
    display: block;
}
ul.icon-link li a::after {
    content:"\025bc";
    -webkit-transform: scale(1.5, 0.5);
        -ms-transform: scale(1.5, 0.5);
            transform: scale(1.5, 0.5);
    display: block;
    color: #fff;
}
ul.icon-link li a:hover::after {
    color:#a0a0a0;
}
ul.icon-link li img {
    -webkit-filter: brightness(0.9);
    filter: brightness(0.9);
    width: 40%;
    margin: 0 auto 10px;
    max-width: 60px;
}
ul.icon-link li a:hover img {
    -webkit-filter: brightness(0.5);
            filter: brightness(0.5);
}

section.about {
    width: 100%;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    padding: 100px 0;
    margin-bottom: 15%;
}
input#tab1,input#tab2,input#tab3 {
    display: none;
}
p label.tab_btn {
    width: 32%;
    background: url(/wp-content/uploads/2024/08/back1.webp)no-repeat center / cover;
    top: 0;
    left: 0;
    font-size: 18px;
    position: absolute;
    cursor: pointer;
    text-align: center;
}
section#fujie p label.tab_btn {
    left: 34%;
}
section#komatsu p label.tab_btn {
    left:auto;
    right:0;
}
p label.tab_btn span {
    position: relative;
    display: block;
    padding: 25px 0;
}
p label.tab_btn span:before {
    content:"";
    width: calc(100% - 15px);
    height: calc(100% - 15px);
    position: absolute;
    border: 1px solid #fff;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    margin: auto;
}
p label.tab_btn:hover, input#tab1:checked ~ p label.tab_btn, input#tab2:checked ~ p label.tab_btn, input#tab3:checked ~ p label.tab_btn {
    background: #1a1a1a;
}
p label.tab_btn:hover span, input#tab1:checked ~ p label.tab_btn span, input#tab2:checked ~ p label.tab_btn span, input#tab3:checked ~ p label.tab_btn span {
    color:#fff;
}
p label.tab_btn.bottom_btn {
    top: auto;
    bottom: 0;
}
input#tab1:checked ~ .tab-content,input#tab2:checked ~ .tab-content,input#tab3:checked ~ .tab-content{
    display: block;
}
.tab-content {
    display: none;
}
p.about-img {
    max-width: 500px;
    margin: 0 auto 5%;
}

ul.col2_staff {
    margin: 5% auto;
}
ul.col2_staff > li {
    margin-bottom: 5%;
}
ul.col2_staff > li::after {
    content: "."; 
	display: block;
	clear: both;
	height: 0;
	visibility: hidden;
}
ul.col2_staff > li p:first-child {
    float: right;
    width: 35%;
    margin: 0 0 10px 3%;
    border-radius: 50%;
    overflow: hidden;
}
ul.col2_staff > li p {
    font-size: 14px!important;
}

ul.service {
    text-align: center;
    margin: 8% auto 5%;
}
ul.service li {
    display: inline-block;
    margin: 0 1% 2%;
    overflow: hidden;
    background: -webkit-gradient(linear, left bottom, left top, from(#ededed), color-stop(transparent), to(transparent));
    background: -o-linear-gradient(bottom, #ededed, transparent, transparent);
    background: linear-gradient(0deg, #ededed, transparent, transparent);
    border-bottom: 1px solid #d0b245;
}
ul.service li .open_button, ul.service li span, ul.service li a {
    padding: 10px 20px;
    display: block;
}
ul.service li .open_button::before,ul.service li .open_button::after {
    display: none;
}
ul.service li .open_button:hover, ul.service li a:hover {
    background: #ddd;
}

p.caution {
    text-align: right;
    font-size: 14px;
}
table[class^="cource_"] {
    margin: 3% auto;
    border-collapse: separate;
    border-spacing: 3px;
}
table[class^="cource_"] tr.bline td {
    background: unset;
    padding: 15px 0;
}
table p:last-child {
	margin-bottom:0;
}
table[class^="cource_"] th {
    padding: 15px;
    width: 320px;
}
table[class^="cource_"] tr:first-child th {
    text-align: center;
    background: #d0b245;
    color: #fff;
    font-size: 18px;
    vertical-align: middle;
}
table[class^="cource_"] td {
    text-align: center;
    padding: 15px;
    margin: 0;
    background: #ddd;
    vertical-align: middle;
}
table[class^="cource_"] .key1 {
    color: #fff;
    font-weight: bold;
    background: #c93c3c;
}
table[class^="cource_"] .key1 h4,
table[class^="cource_"] .key1 p,
table[class^="cource_"] .key1 span{
	color: #fff;
}
table[class^="cource_"] .key2, table[class^="cource_"] .key3, table[class^="cource_"] .key5 {
    margin: 0 10px 3px 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    background: #1a1a1a;
    color: #fff;
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 50px;
    display: inline-block;
}
p.key3 {
    background: #c93c3c;
    color: #fff;
    display: inline-block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: #fff;
    padding: 3px 10px;
    font-size: 12px;
    border-radius: 50px;
}
.mens {
    background: #003ad1;
    color: #fff;
    display: inline-block;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    color: #fff;
    padding: 3px 10px;
    font-size: 12px;
    margin: 0 10px 3px 0;
}
table[class^="cource_"] .key3 {
	background: #c93c3c;
}
table[class^="cource_"] .key4 {
	display: block;
	font-size: 80%;
}
table[class^="cource_"] .key5 {
	background: #d0b245;
}
table[class^="cource_"] .key6 {
	background: #fff;
	color: #1a1a1a!important;
	display: block;
	width: fit-content;
	margin: 2px auto;
	padding: 3px 10px;
    font-size: 14px;
    border-radius: 50px;
}
.key7 {
    background: #d0b245;
    display: block;
    text-align: center;
    padding: 5px 0;
    color: #fff;
}
table[class^="cource_"] .t1 {
    margin: 0;
    font-size: 14px;
    letter-spacing: 0;
}
table[class^="cource_"] .t2 {
	text-align:left;
	font-size:14px;
	margin:0;
	background: unset;
	padding: 15px 0;
}
table[class^="cource_"] .t3 {
	background: unset;
	font-size: 14px;
	text-align: right;
	padding: 15px 0;
}
table[class^="cource_"] .t4 {
	background: #d0b245;
	color: #fff;
}
table[class^="cource_"] .t5 {
	background:#1a1a1a;
	color:#fff;
}
table[class^="cource_"] .t4 span, table[class^="cource_"] .t5 span {
	color:#fff;
}
p.price1 {
    text-align: right;
    font-size: 20px;
    color: #d0b245;
}
p.price1 span {
    font-size: 80%;
}
table.cource_2 td:nth-child(2) {
    min-width: 200px;
}
table.cource_2 td:nth-child(3) {
    text-align: left;
}
table.cource_2 tr:first-child td:nth-child(3) {
    text-align: center;
}
ul[class^="cource_"] {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: 3% auto;
}
ul.cource_4 > li {
    width: 24%;
    margin-bottom: 3%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
}
ul.cource_4 > li p:first-child {
    margin-bottom: 0;
}
ul.cource_4 > li p.price2 {
    margin: auto 0 0;
    color: #c93c3c;
    text-align: center;
    font-weight: bold;
    border-top: 1px solid #1a1a1a;
    border-bottom: 1px solid #1a1a1a;
    padding: 10px 0;
}
ul.cource_5 li {
    width: 24%;
    margin-bottom: 1.5%;
}
p.plus img {
    width: 100px;
    margin: 5% auto;
}
.ttl_bridal {
    font-size: 20px;
    margin: 5px auto;
    background: #f9dbe9;
    padding: 10px;
    border-radius: 5px;
    text-align: center;
}
.ttl_bridal > span {
    display: inline-block;
    vertical-align: text-top;
}
.ttl_bridal span span {
    display: block;
    text-align: center;
    border-top: 1px solid;
    font-size: 70%;
}
div.img_li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 3% auto;
}
div.img_li > p {
    width: 48%;
    margin-right: 2%;
}
div.img_li > ul {
    width: 50%;
	margin:0;
}
ul.listc, ul.listb {
    margin: 3% auto;
}
ul.listc li, ul.listb li {
    position: relative;
    padding-left: 1.5rem;
    letter-spacing: 0.5px;
    line-height: 28px;
}
ul.listc li::after {
  content: '';
  display: block;
  position: absolute;
  top: .5em;
  left: 0;
  width: 10px;
  height: 5px;
  border-left: 3px solid #c93c3c;
  border-bottom: 3px solid #c93c3c;
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
ul.listb li::before {
  content: '\02666';
  display: block;
  position: absolute;
  top: 1px;
  left: 0;
  color: #c93c3c;
}
.mens-caution {
    margin: 8% auto;
    width: 100%;
    max-width: 800px;
    text-align: center;
    background: #e1f2fb;
    padding: 3%;
}
.mens-caution span.mens {
    margin: 0 5px;
    font-size: 16px;
}

.stay-box {
	opacity: 0;
	display:none;
	-webkit-transition : all 0.2s;
	-o-transition : all 0.2s;
	transition : all 0.2s;
}
.stay-box.fixed {
	position: fixed;
	width: 100%;
	bottom: 0;
	left: 0;
	opacity:1;
	z-index:10;
	display:block;
}
.stay-box.fixed.none {
	opacity:0;
	z-index:-10;
}
ul.menu-jump {
    width: 100%;
    background: #1a1a1a;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 10px 0;
}
ul.menu-jump li {
    width: calc(100% / 6);
    max-width: 75px;
    text-align: center;
}
ul.menu-jump li img {
    width: 50%;
    margin: 0 auto;
}
ul.menu-jump li span {
    color: #fff;
    font-size: 10px;
}
ul.menu-jump li a:hover span {
	color:#d0b245;
}

section.bunner {
    margin: 8% auto 10%;
}
section.bunner .full-screen.slider {
    max-width: 800px;
    margin: 0 auto;
}
section.bunner .full-screen .slick-list a {
    display: block;
    border: 20px solid #ffffff00;
}
section.bunner .slick-track div.slick-slide {
    opacity: 0.5;
}
section.bunner .slick-track div.slick-slide.slick-active {
    opacity: 1;
}

ul.price_datsumo {
    font-size: 0;
    margin: 3% auto 0;
}
ul.price_datsumo li {
    width: 49%;
    display: inline-block;
    vertical-align: top;
    margin-right: 2%;
}
ul.price_datsumo li:last-child {
    margin-right: 0;
}
ul.price_cam1 {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin-bottom: 20px;
}
ul.price_cam1 > li {
    width: 32%;
    border: 1px solid #d0b245;
    padding: 2%;
}
picture.price_cam2 {
    display: block;
    background: #d0b245;
    padding: 3%;
}
.price_cam3 {
    background: #fff7c8;
    padding: 3%;
    margin: 5% auto;
}
.price_cam3 > p:nth-of-type(1) {
    width: 30%;
    margin: 0 0 10px 3%;
    float: right;
    max-width: 180px;
}
.price_cam3 picture {
    margin-bottom: 3%;
    display: block;
}
ul.price_cam4 {
    clear: both;
    font-size: 0;
    margin: 10px 0;
}
ul.price_cam4 li {
    width: 49%;
    display: inline-block;
    margin-right: 2%;
}
ul.price_cam4 li:last-child {
    margin-right: 0;
}

@media screen and (max-width: 1000px) {
.width {
	width:90%;
}
p {
	font-size:15.5px;
	margin-bottom:8px;
}

/*------------------------------------*\
    ヘッダー＆フッダー100
\*------------------------------------*/

.logo-h {
    width: 156px;
}
.menu {
    display: none;
}
div.menur {
    display: block;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 99;
}
.r-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 60px;
    width: 60px;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    z-index: 100;
    background-color: #aa2228;
}
.r-btn span,
.r-btn span:before,
.r-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #fff;
    position: absolute;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
.r-btn span:before {
    bottom: 8px;
}
.r-btn span:after {
    top: 8px;
}
#label1:checked ~ .r-btn span {
    background-color: #fff0;
}
#label1:checked ~ .r-btn span::before {
    bottom: 0;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
}
#label1:checked ~ .r-btn span::after {
    top: 0;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
}
#label1 {
    display: none;
}
.hidden_box .hidden_show {
    height: 0;
    padding: 0 80px 0 10px;
    overflow: hidden;
    -webkit-transition: 0.8s;
    -o-transition: 0.8s;
    transition: 0.8s;
    width: 100%;
    -webkit-transform: translateY(-100%);
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
    text-align: center;
    -webkit-box-shadow: 0px 2px 8px 0px rgb(0 0 0 / 35%);
    box-shadow: 0px 2px 8px 0px rgb(0 0 0 / 35%);
    max-height: 100vh;
}
.hidden_show p.ttl-logo {
	opacity:0;
	width: 70%;
	margin:0 auto 5%;
	max-width: 300px;
}
.hidden_show ul.nav1 {
    height: 0;
    padding: 0;
    overflow: hidden;
    width: 100%;
    margin: 0 auto;
    max-width: 600px;
}
.hidden_box input:checked ~ .hidden_show {
    padding: 20px 80px 30px 10px;
    height: auto;
    opacity: 1;
    margin: 0 auto;
    -webkit-transform: translateY(0%);
    -ms-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-box-sizing:border-box;
    box-sizing:
    border-box;
    overflow: scroll;
    background: url(/wp-content/uploads/2024/08/back1.webp)no-repeat center / cover;
}
.hidden_box input:checked ~ .hidden_show p.ttl-logo {
	opacity:1;
}
.hidden_box input:checked ~ .hidden_show ul.nav1 {
	opacity: 1;
	height: auto;
}
.hidden_show ul.nav1 > li{
    border-bottom: 1px solid #fff;
}
.hidden_show ul.nav1 > li:last-child{
    border-bottom: unset;
}
.hidden_show ul.nav1 > li > a {
    padding: 10px 0;
    display: block;
    font-size: 110%;
}
.hidden_show ul.nav1 > li a:hover {
    color:#aa2228;
}
.hidden_show ul.nav1 > li ul a {
    display: block;
    padding: 0 0 15px;
}





.ttl1 {
    font-size: 30px;
}
.ttl2, .ttl5 {
    font-size: 35px;
}
.ttl2 img {
    width: 50px;
}
.ttl2 span {
    font-size: 20px;
}
.ttl3 span:nth-child(2) {
    font-size: 28px;
}
.ttl4, .ttl6, .ttl7, .ttl9 {
    font-size: 23px;
}
.ttl5 span {
    padding: 160px 0 10px;
}
.ttl8 {
    font-size: 20px;
    margin: 3px auto;
}
.ttl9 span {
	font-size: 15px;
}
.ttl10 {
    font-size: 18px;
}
.ttl11 {
    padding: 8px 5px;
    font-size: 18px;
    margin-bottom: 8px;
}
.ttl12 {
    font-size: 18px;
    margin-bottom: 10px;
}
p.link1 a {
    width: 450px;
    font-size: 20px;
}
p.link2 a {
    width: 250px;
    padding: 13px 0;
}
ul.link5 li a {
    font-size: 17px;
}



/*------------------------------------*\
    トップページ1000
\*------------------------------------*/

section.main::before {
    width: 80%;
}
.mv-txt h2.ttl1 {
    margin-bottom: 3%;
}
.mv-txt p {
    font-size: 18px;
}

ul.shoplist > li {
    width: 32%;
}
ul.shoplist > li h3 {
    font-size: 20px;
}
.modal_content {
    width: 80%;
    border: 20px solid #fff;
}

section.staff .full-screen.slider {
    max-width: 200px;
}
section.staff .slick-slide {
    margin-right: 10px;
}
section.staff .slick-slide.slick-active {
    width: 230px!important;
    margin-top: -40px;
}
label.qa-btn {
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
    padding: 15px;
    font-size: 18px;
}
.show-a {
    padding: 0 15px;
}
ul.qa li input:checked ~ .show-a {
    padding: 15px 15px 0px;
}



/*------------------------------------*\
    アーカイブ1000
\*------------------------------------*/





/*------------------------------------*\
    下層ページ1000
\*------------------------------------*/

.ttl-page {
    font-size: 30px;
}
.ttl-page span {
    font-size: 18px;
    margin-top: 5px;
}

p label.tab_btn {
    font-size: 17px;
}

table[class^="cource_"] tr.bline td {
    padding: 10px 0;
}
table[class^="cource_"] th {
    width: 230px;
    padding: 10px;
}
table.sp_t1 tr:first-child,table.sp_t1 tr:nth-child(2) {
    display: none;
}
table[class^="cource_"] td {
    padding: 10px;
}
table[class^="cource_"] .key2, table[class^="cource_"] .key3, table[class^="cource_"] .key5 {
    margin: 0 5px 3px 0;
}
.key7 {
    font-size: 14px;
}
table[class^="cource_"] .t2, table[class^="cource_"] .t3 {
    padding: 10px 0;
}
p.price1 {
    font-size: 18px;
}
table.cource_2 td:nth-child(2) {
    min-width: 150px;
}
ul.cource_4 > li {
    width: 32%;
}
ul.cource_4 > li p.price2 {
    padding: 5px 0;
}
ul.cource_5 li {
    width: 32%;
    margin-bottom: 1.5%;
}
p.plus img {
    width: 60px;
}
.ttl_bridal {
    font-size: 18px;
}
ul.listc li, ul.listb li {
    line-height: 27px;
}

section.bunner .full-screen .slick-list a {
    border: 15px solid #ffffff00;
}

ul.price_datsumo li {
    width: 100%;
	margin:0 auto 3%;
}

table.sp_t1 tr.bline td {
    padding: 3px 0;
    width: 100%;
    overflow: hidden;
}
table.sp_t1 tr.bline td img {
	width:200%;
	-webkit-filter: brightness(0);
	        filter: brightness(0);
}
table.sp_t1 tr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	font-size: 0;
	margin-bottom: 3px;
}
table.sp_t1 th {
    width: 100%;
    padding: 5px;
    font-size: 15px;
    display: block;
}
.sp_t1 td {
    padding: 5px;
    font-size: 15px;
    width: calc(100% / 6);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
    -ms-flex-pack: start;
    justify-content: flex-start;
    border: 0.5px solid #fff;
}
.sp_t1 td::before {
    content:"";
    width: 100%;
    height: 50px;
    background: url(/wp-content/uploads/2024/09/t1.png)no-repeat center / 130%;
    border-bottom: 1px solid;
}
.sp_t1 tr.bline td::before {
    display: none;
}
.sp_t1 td:nth-of-type(2)::before {
    background: url(/wp-content/uploads/2024/09/t3.png)no-repeat center / 130%;
}
.sp_t1 td:nth-of-type(3)::before {
    background: url(/wp-content/uploads/2024/09/t5.png)no-repeat center / 130%;
}
.sp_t1 td:nth-of-type(4)::before {
    background: url(/wp-content/uploads/2024/09/t6.png)no-repeat center / 130%;
}
.sp_t1 td:nth-of-type(5)::before {
    background: url(/wp-content/uploads/2024/09/t7.png)no-repeat center / 130%;
}
.sp_t1 td:nth-of-type(6)::before {
    background: url(/wp-content/uploads/2024/09/t4.png)no-repeat center / 130%;
}
table[class^="cource_"] td::before {
    max-width: 100px;
    margin: 0 auto;
}

}





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

.width {
	width:96%;
}
p {
	font-size:15px;
	letter-spacing:0.5px;
	margin-bottom:5px;
}
.float p.floatr,.float p.floatl {
	float:unset;
	width:100%;
	margin:0 auto 10px;
}
.w30 {
	width:80%!important;
}


/*------------------------------------*\
    ヘッダー＆フッダー700
\*------------------------------------*/

footer#colophon {
    font-size: 12px;
}

.ttl1 {
    font-size: 23px;
}
.ttl2, .ttl5 {
    font-size: 25px;
    letter-spacing: 2px;
}
.ttl2 img {
    width: 40px;
}
.ttl2 span {
    font-size: 18px;
}
.ttl3 span:first-child {
    font-size: 14px;
    padding: 8px 15px;
    margin-bottom: 10px;
}
.ttl3 span:nth-child(2) {
    font-size: 23px;
    padding: 0;
}
.ttl3 span img {
	width: 23px;
	margin-right: 5px;
}
.ttl4, .ttl6, .ttl7, .ttl9 {
    font-size: 18px;
}
.ttl5 span {
    font-size: 16px;
    letter-spacing: 0;
    padding: 120px 0 0px;
}
.ttl8 {
    font-size: 18px;
}
.ttl9 span {
	font-size: 14px;
}
.ttl10 {
    font-size: 15px;
    font-weight: bold;
    -webkit-filter: drop-shadow(1px 1px 1px #d5d5d5);
            filter: drop-shadow(1px 1px 1px #d5d5d5);
}
.ttl10 span {
	font-weight: bold;
	font-size: 90%;
}
.ttl11 {
    padding: 5px;
    font-size: 16px;
    margin-bottom: 5px;
}
.ttl12 {
    font-size: 16px;
    margin-bottom: 8px;
}
.ttl12 span {
    font-size: 80%;
}
p.link1 a {
    width: 100%;
    max-width: 450px;
    font-size: 18px;
    padding: 10px;
}
p.link2 a {
    margin: 0 auto;
    padding: 10px 0;
}
p.link3 a {
    width: 200px;
}
p.link4 a, .link-popup > p label.op_btn {
    min-width: 230px;
}
ul.link5 li a {
    font-size: 16px;
    padding: 20px 0;
}



/*------------------------------------*\
    トップページ700
\*------------------------------------*/

section.main::before {
    display: none;
}
.mv-txt {
    position: unset;
    padding: 3%;
    background: -webkit-gradient(linear, left top, left bottom, from(#d0b245), to(transparent));
    background: -o-linear-gradient(top, #d0b245, transparent);
    background: linear-gradient(180deg, #d0b245, transparent);
}
.mv-txt p {
    font-size: 14px;
    line-height: normal;
}
.mv-txt p br {
    display: none;
}

ul.shoplist > li h3 {
    font-size: 16px;
}
ul.icon li a {
    padding: 20%;
}
.modal_content {
    width: 90%;
    top: 100px;
    max-height: calc(90% - 100px);
}
.close_button {
    top: 0px;
    right: 0;
    font-size: 30px;
}
.popup .ttl4 {
    padding-right: 30px;
}
table.info {
    border-collapse: collapse;
    border-spacing: 0;
}
table.info th {
    display: block;
    width: 100%;
    padding: 5px 0;
    font-size: 15px;
}
table.info td {
    display: block;
    width: 100%;
    padding: 5px 0;
    font-size: 14px;
}
ul.icon2 li {
    width: 49%;
}
ul.icon2 li a {
    padding: 10px 0 15px;
}
ul.icon2 li a img {
    width: 20px;
    margin-right: 3px;
}
ul.icon2 li a span {
    font-size: 14px;
    padding: 0;
}

ul.nayami li,ul.nayami li:nth-child(4n) {
    width: 32%;
    margin-right: 2%;
    font-size: 14px;
}
ul.nayami li:nth-child(3n) {
    margin-right: 0;
}
ul.list-img-txt > li > p:first-child {
    float: unset;
    width: 100%;
    margin: 0 auto 10px;
}
section.staff {
    margin: 10px auto 0;
}
section.staff .full-screen.slider {
    max-width: 80px;
}
section.staff .slick-slide {
    margin-right: 5px;
}
section.staff .slick-slide.slick-active {
    width: 100px!important;
    margin-top: -20px;
}
label.qa-btn {
    padding: 10px;
    font-size: 16px;
}
.show-a {
    padding: 0 10px;
}
ul.faq li input:checked ~ .show-a {
    padding: 10px 10px 0;
}



/*------------------------------------*\
    アーカイブ700
\*------------------------------------*/





/*------------------------------------*\
    下層ページ700
\*------------------------------------*/

section.header div.width {
    margin: 8% auto;
}
.ttl-page {
    font-size: 25px;
}
.ttl-page br {
	display:block;
}
.ttl-page span {
    font-size: 16px;
    margin-top: 3px;
}
section.bread li {
    font-size: 12px;
}
section.bread li a {
    padding: 13px 0;
}

p label.tab_btn {
    font-size: 16px;
}
p label.tab_btn span {
    padding: 20px 0;
}

ul.col2_staff > li {
    width: 100%;
    margin: 0 auto 5%;
    border-bottom: 1px solid #d0b245;
    padding-bottom: 10px;
}
ul.col2_staff > li:last-child {
    border: unset;
}

ul.service li .open_button, ul.service li span, ul.service li a {
    padding: 12px 10px;
    font-size: 14px;
}

p.caution {
    font-size: 10px;
}

table[class^="cource_"] {}
table[class^="cource_"] tr.bline td {
    padding: 3px 0;
    width: 100%;
    overflow: hidden;
}
table[class^="cource_"] tr.bline td img {
	width:200%;
	-webkit-filter: brightness(0);
	        filter: brightness(0);
}
table[class^="cource_"] tr {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
	font-size: 0;
	margin-bottom: 3px;
}
table[class^="cource_"] tr:first-child,table[class^="cource_"] tr:nth-child(2) {
    display: none;
}
table[class^="cource_"] th {
    width: 100%;
    padding: 5px;
    font-size: 15px;
    display: block;
}
table[class^="cource_"] td {
    padding: 5px;
    font-size: 15px;
    width: calc(100% / 3);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    border: 0.5px solid #fff;
}
table.cource_3 td, table.cource_2 td {
    width: 50%;
}
table[class^="cource_"] td.sp100 {
    width: 100%;
}
table[class^="cource_"] td.sp50 {
    width: 50%;
}
table[class^="cource_"] .key2, table[class^="cource_"] .key3, table[class^="cource_"] .key5 {
    margin: 0 3px 2px 0;
}
table[class^="cource_"] .key6 {
    font-size:12px;
}
.key7 {
    padding: 3px 0;
}
table[class^="cource_"] .t1 {
    font-size: 12px;
}
table[class^="cource_"] .t2 {
	padding: 5px 0;
	width: 100%;
}
table[class^="cource_"] .t5 {
    font-size: 14px;
}
p.price1 {
    font-size: 16px;
}
table.cource_2 td:nth-child(2) {
    min-width: 120px;
}
ul.cource_4 > li {
    width: 49%;
}
ul.cource_4 > li p.price2 {
    padding: 3px 0;
}
p.plus img {
    width: 40px;
}
.ttl_bridal {
    font-size: 16px;
}
ul.listc li, ul.listb li {
    line-height: 25px;
    font-size:15px;
    padding-left: 1rem;
}
ul.listb li::before {
    top: 0px;
}

ul.menu-jump {
    padding: 8px 0;
}
ul.menu-jump li span {
    font-size: 8px;
}

section.bunner .full-screen .slick-list a {
    border: 10px solid #ffffff00;
}
ul.price_cam1 > li {
    width: 100%;
    margin-bottom: 3%;
}
.price_cam3 > p:nth-of-type(1) {
    display: none;
}

.sp_t2 td::before, .sp_t3 td::before, 
.sp_t4 td::before, .sp_t5 td::before, 
.sp_t6 td::before, .sp_t7 td::before, 
.sp_t8 td::before, .sp_t9 td::before,
.sp_t10 td::before, .sp_t11 td::before, 
.sp_t12 td::before {
    content:"";
    width: 100%;
    height: 30px;
    background: url(/wp-content/uploads/2024/09/t1.png)no-repeat center / 130%;
    border-bottom: 1px solid;
}
.sp_t2 td:nth-of-type(2)::before {
    background: url(/wp-content/uploads/2024/09/t4.png)no-repeat center / 130%;
}
.sp_t2 td:nth-of-type(3)::before {
    background: url(/wp-content/uploads/2024/09/t3.png)no-repeat center / 130%;
}
.sp_t3 td:nth-of-type(2)::before {
    background: url(/wp-content/uploads/2024/09/t9.png)no-repeat center / 130%;
}
.sp_t3 td:nth-of-type(3)::before {
    background: url(/wp-content/uploads/2024/09/t10.png)no-repeat center / 130%;
}
.sp_t4 td:nth-of-type(2)::before {
    background: url(/wp-content/uploads/2024/09/t8.png)no-repeat center / 130%;
}
.sp_t5 td:last-child::before {
    background: url(/wp-content/uploads/2024/09/t8.png)no-repeat center / 130%;
}
.sp_t5 td:nth-last-child(2)::before {
    background: url(/wp-content/uploads/2024/09/t16.png)no-repeat center / 130%;
}
.sp_t6 td:nth-of-type(1)::before {
    background: url(/wp-content/uploads/2024/09/t11.png)no-repeat center / 130%;
}
.sp_t6 td:nth-of-type(2)::before {
    background: url(/wp-content/uploads/2024/09/t8.png)no-repeat center / 130%;
}
.sp_t7 td:nth-of-type(1)::before {
    background: url(/wp-content/uploads/2024/09/t13.png)no-repeat center / 130%;
}
.sp_t7 td:nth-of-type(2)::before {
    background: url(/wp-content/uploads/2024/09/t8.png)no-repeat center / 130%;
}
.sp_t8 td:nth-of-type(1)::before {
    background: url(/wp-content/uploads/2024/09/t17.png)no-repeat center / 130%;
}
.sp_t8 td:nth-of-type(2)::before {
    background: url(/wp-content/uploads/2024/09/t8.png)no-repeat center / 130%;
}
.sp_t9 td:nth-of-type(1)::before {
    background: url(/wp-content/uploads/2024/09/t14.png)no-repeat center / 130%;
}
.sp_t9 td:nth-of-type(2)::before {
    background: url(/wp-content/uploads/2024/09/t12.png)no-repeat center / 130%;
}
.sp_t10 td:nth-of-type(1)::before {
    background: url(/wp-content/uploads/2024/09/t15.png)no-repeat center / 130%;
}
.sp_t10 td:nth-of-type(2)::before {
    background: url(/wp-content/uploads/2024/09/t14.png)no-repeat center / 130%;
}
.sp_t11 td:nth-of-type(1)::before {
    background: url(/wp-content/uploads/2024/09/t15.png)no-repeat center / 130%;
}
.sp_t11 td:nth-of-type(2)::before {
    background: url(/wp-content/uploads/2024/09/t8.png)no-repeat center / 130%;
}
.sp_t12 td:nth-of-type(1)::before {
    background: url(/wp-content/uploads/2024/09/t15.png)no-repeat center / 130%;
}
.sp_t12 td:nth-of-type(2)::before {
    background: url(/wp-content/uploads/2024/09/t14.png)no-repeat center / 130%;
}
table[class^="cource_"] tr.bline td::before, td.t2::before, .sp_t2 td.t3::before, .sp_t4 td.key1.left::before {
    display: none;
}



}
@media screen and (max-width: 480px) {
.pu-instagram .sbi_item {
    display: none!important;
}
.pu-instagram .sbi_item:first-child {
    display: block!important;
}
}

/*----------------------
 * 25.05.29 DC追記
 * -----------------------*/
.ttl7.bg_g {
    background: -o-linear-gradient(90deg, transparent, #D0B245, transparent);
    background: linear-gradient(90deg, transparent, #D0B245, transparent);
}
.ttl13 {
	padding-left:10px;
	padding-bottom:10px;
	font-size:24px;
	margin:5% 0 3%;
	color:#D0B245;
	border-bottom:#D0B245 3px solid;
	font-weight:bold;
}
.ttl14 {
	padding:10px 15px;
	font-size:20px;
	margin:2% 0 1.5%;
	background:#A92128;
	color:#fff;
	position:relative;
}
.ttl14:before {
	content:'';
	width:calc(100% - 10px);
	height:calc(100% - 10px);
	border:#fff 1px solid;
	position:absolute;
	top:4px;
	left:5px;
}
.btn1 {
	width:fit-content;
	margin:5% auto 3%;
}
.btn1 a {
	display:block;
	padding:10px 30px;
	color:#fff;
	font-size:18px;
	background:#D0B245;
	border:#D0B245 1px solid;
	transition:all .3s;
}
.btn1 a:hover {
	background:#fff;
	color:#D0B245;
}
.float p.floatr.w_30 {
	width:30%;
}
@media screen and (max-width:700px) {
	.float p.floatr.w_30 {
		width:100%;
	}
}