/*
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.7
Tested up to: 6.9
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:#544236;
}
a:hover {
	color:#a78874;
}
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: #544236;
	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%;
}
.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;}

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%;
}
p.w30 {
    width: 30%!important;
}

.center {
	text-align:center!important;
}
.right {
	text-align:right!important;
}
.left {
	text-align:left!important;
}
.small {
	font-size:80%!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.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%);
}
.brown {
	color:#a78874;
}
.orange {
	color:#f8b812;
}

span.sbi_follow_btn.sbi_custom span,span.sbi_btn_text {
    color: #fff;
}

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

@-webkit-keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@keyframes loop {
  0% {
    -webkit-transform: translateX(100%);
    -ms-transform: translateX(100%);
    transform: translateX(100%);
  }
  to {
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
  }
}
@-webkit-keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}
@keyframes loop2 {
  0% {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }
  to {
    -webkit-transform: translateX(-200%);
    -ms-transform: translateX(-200%);
    transform: translateX(-200%);
  }
}

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

header.top {
    background: url(/wp-content/uploads/2024/08/back1.jpg)no-repeat center / cover;
}
header.top hgroup {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
}
.logo-h {
    display: inline-block;
    width: 149px;
}
.logo-h a {
    padding: 5px 10px;
    display: block;
}
.menu {
    display: inline-block;
    width: calc(100% - 159px);
    text-align: right;
    vertical-align: middle;
}
.menu ul {
	font-size: 0;
}
.menu li {
    display: inline-block;
}
.menu li a {
    color: #fff;
    display: block;
    padding: 28.5px 12px;
}
.menur,ul.sp-cta {
    display: none;
}


.footer {
    text-align: center;
}
.logo {
    width: 30%;
    max-width: 300px;
    margin: 3% auto;
}
.logo img:nth-child(2) {
    width: 70%;
    margin: 5% auto 0;
}
.footer > p br {
    display: none;
}
ul.sns {
    margin: 5% auto;
}
ul.sns li {
    display: inline-block;
    margin: 0 2%;
}
ul.sns li a {
    display: block;
}
ul.sns li a img {
    width: auto;
    height: 50px;
}
ul.sns li a:hover {
    opacity: 0.8;
}
ul.f-sitemap {
    margin: 5% auto;
}
ul.f-sitemap li {
    display: inline-block;
}
ul.f-sitemap li a {
    display: block;
    padding: 10px;
}
.access iframe {
    width: 100%;
    height: auto;
    aspect-ratio: 16 / 9;
    max-height: 400px;
    display: block;
}
footer#colophon {
    background: #544236;
    text-align: center;
    color: #fff;
    font-size: 14px;
    padding: 10px 0;
}

.ttl1 {
    color: #805B39;
    font-size: 45px;
    letter-spacing: 3px;
    margin: 5% auto 3%;
    font-weight: 500;
}
.ttl1 span {
    display: block;
    color: #805B39;
    font-size: 20px;
    letter-spacing: 0;
}
.ttl1 span::before {
    content: "";
    width: 1px;
    height: 50px;
    background: #805B39;
    display: inline-block;
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg);
    vertical-align: bottom;
    margin: 0 30px -7px 18px;
}
.ttl2 {
    text-align: center;
    margin: 8% auto 5%;
    font-size: 35px;
    letter-spacing: 2px;
}
.ttl2 span {
    display: block;
    font-size: 18px;
    letter-spacing: 0;
    padding: 3% 0;
    position: relative;
}
.ttl2 span::before {
    content: "";
    width: 80px;
    height: 2px;
    background: #544236;
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    margin: auto;
    border-radius: 5px;
}
.ttl3 {
    margin: 5% auto 3%;
    font-size: 23px;
    border-bottom: 1px solid;
    padding: 5px 0;
}
.ttl4, .ttl4p {
    position: relative;
    font-size: 35px;
    margin: 5% auto 3%;
    line-height: 170%;
    letter-spacing: 3px;
}
.ttl4::before, .ttl4p::before {
    content: "";
    width: 400px;
    height: 400px;
    background: url(/wp-content/uploads/2024/08/brown.webp)no-repeat top left / contain;
    position: absolute;
    left: -5%;
    top: -100%;
    z-index: -1;
    opacity: 0.5;
}
.ttl4p::before {
	background: url(/wp-content/uploads/2024/08/pink.webp)no-repeat top left / contain;
}
.ttl5 {
    background: #544236;
    color: #fff;
    padding: 10px;
    font-size: 20px;
    border-top-left-radius: 10px;
    margin-bottom: 15px;
}
.ttl6 {
    font-size: 25px;
    letter-spacing: 2px;
    margin: 5% auto 3%;
}

ul.cta1 {
    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.cta1 li {
    width: 49%;
}
ul.cta1 li a {
    display: block;
    position: relative;
    min-height: 200px;
    overflow: hidden;
    -webkit-filter: drop-shadow(1px 1px 3px #00000036);
    filter: drop-shadow(1px 1px 3px #00000036);
}
ul.cta1 li a::before {
    content:"";
    width: 120%;
    height: 140%;
    background: #ffffffab;
    position: absolute;
    z-index: 1;
    -webkit-transform: rotate(-25deg);
    -ms-transform: rotate(-25deg);
    transform: rotate(-25deg);
    left: 10%;
    top: 40%;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
ul.cta1 li a img {
    position: absolute;
    -o-object-fit: cover;
       object-fit: cover;
    width: 100%;
    height: 100%;
}
ul.cta1 li a i {
    position: absolute;
    color: #544236;
    font-size: 140px;
    left: 3%;
    top: 0;
    bottom: 0;
    margin: auto;
    height: -webkit-fit-content;
    height: -moz-fit-content;
    height: fit-content;
    opacity: 0;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    z-index: 1;
}
ul.cta1 li a:hover i {
    opacity: 1;
}
ul.cta1 li a span {
    position: absolute;
    z-index: 2;
    right: 5%;
    bottom: 10%;
    font-size: 30px;
}
ul.cta1 li a:hover::before {
    -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
            transform: rotate(0deg);
    left: -10%;
    top: 0;
    background: #54423691;
}
ul.cta1 li a:hover span {
    color: #fff;
}
p.link1 {
    margin: 3% auto;
}
p.link1 a {
    display: block;
    width: 200px;
    margin: 0 0 0 auto;
    text-align: center;
    padding: 13px 30px 13px 0px;
    background: url(/wp-content/uploads/2024/08/right1.png)no-repeat center bottom / contain;
}
p.link1 a:hover {
    padding: 13px 20px 13px 0px;
}
ul.link2 {
    margin: 5% auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
ul.link2 li {
    width: 32%;
}
ul.link2 li a {
    display: block;
    position: relative;
}
ul.link2 li a span:nth-child(1) {
    position: relative;
    width: 70%;
    display: block;
    height: 200px;
    overflow: hidden;
}
ul.link2 li a span img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
}
ul.link2 li a span:nth-child(2),ul.link2 li a span:nth-child(3) {
    width: 70%;
    position: absolute;
    right: 0;
    bottom: 15px;
    background:#867b73ba;
    text-align: center;
    padding: 10px 0;
    font-size: 18px;
    font-weight: 500;
    color:#fff;
}
ul.link2 li a span:nth-child(2) {
    bottom: 73px;
}
ul.link2 li:nth-child(2) a span:nth-child(2), ul.link2 li:nth-child(2) a span:nth-child(3) {
    background:#7f6d61ba;
}
ul.link2 li:nth-child(3) a span:nth-child(2), ul.link2 li:nth-child(3) a span:nth-child(3) {
    background:#544236ba;
}
ul.link2 li a:hover span:nth-child(2), ul.link2 li a:hover span:nth-child(3) {
    background:#544236e6;
}
ul.link2 li a:hover span img {
    -webkit-transform: scale(1.2) rotate(-5deg);
        -ms-transform: scale(1.2) rotate(-5deg);
            transform: scale(1.2) rotate(-5deg);
}


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

section.main {
    position: relative;
    display: flex;
    flex-wrap: wrap;
}
section.main > p::before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(transparent));
    background: -o-linear-gradient(bottom, #fff, transparent);
    background: linear-gradient(0deg, #fff, transparent);
}
.mv {
    width: 100%;
}
.mv iframe {
    aspect-ratio: 16 / 9;
    width: 100%;
    height: auto;
}
.logo-m {
    background: url(/wp-content/uploads/2024/08/white1.webp)no-repeat center / contain;
    width: 40%;
    text-align: center;
    z-index: 1;
    position: relative;
    padding: 2% 0;
}
.logo-m h1 img {
    width: 40%;
    margin: 0 auto;
    max-width: 150px;
}
.logo-m h1 img:nth-child(2) {
    width: 30%;
    max-width: 100px;
    margin: 2% auto 3%;
}
.logo-m span, .mv-txt p {
    color: #805B39;
    font-size: 20px;
}
.mv-txt p span {
    color: #805B39;
}
.mv-txt {
    width: 60%;
    margin: 3% 0 0 auto;
    text-align: center;
}
br.b1000 {
	display:none;
}

section.index1,section.index2 {
    position: relative;
}
section.index1::before {
    content: "";
    background: url(/wp-content/uploads/2024/08/back2.jpg)no-repeat center / cover;
    width: 60%;
    height: 50%;
    position: absolute;
    z-index: -1;
    right: 0;
    top: -5%;
}
section.index1::after {
    content: "";
    background: url(/wp-content/uploads/2024/08/back2.jpg)no-repeat center / cover;
    width: 33%;
    height: 50%;
    position: absolute;
    z-index: -1;
    left: 0;
    bottom: 8%;
}
ul.top-menu1, p.top-menu2, ul.top-menu3 {
    margin: 3% auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
ul.top-menu1 li,ul.top-menu3 li {
    width: 33%;
    min-height: 300px;
    position: relative;
}
ul.top-menu3 li {
    width: 49.5%;
}
ul.top-menu1 li img, ul.top-menu3 li img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    position: absolute;
    top: 0;
}
ul.top-menu1 li span, ul.top-menu3 li span {
    position: absolute;
    left: 3%;
    bottom: 3%;
    color: #fff;
    font-size: 60px;
    -webkit-filter: drop-shadow(2px 3px 3px black);
            filter: drop-shadow(2px 3px 3px black);
}
p.top-menu2 {
    text-align: center;
}
p.top-menu2 span {
    display: inline-block;
    background: #544236;
    margin: 0 10px 10px;
    color: #fff;
    padding: 13px 25px;
    border-top-left-radius: 10px;
    font-size: 18px;
}
p.top-menu2 span.ib {
    background: unset!important;
    margin: 0;
    padding: 0;
}
section.index2::before {
    content: "";
    background: url(/wp-content/uploads/2024/08/back2.jpg)no-repeat center / cover;
    width: 63%;
    height: 50%;
    position: absolute;
    z-index: -1;
    right: 0;
    bottom: 15%;
}
section.index2 p.top-menu2 span {
    background: #a78874;
}

div.yt-loop {
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    overflow: hidden;
    width: 100%;
}
div.yt-loop ul {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -ms-flex-flow: row nowrap;
    flex-flow: row nowrap;
    width: 200%;
    margin: 0;
    padding: 0;
}
div.yt-loop ul:first-child {
    -webkit-animation: loop 50s -25s linear infinite;
    animation: loop 50s -25s linear infinite;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    will-change: transform;
}
div.yt-loop ul + ul {
    -webkit-animation: loop2 50s  linear infinite;
    animation: loop2 50s linear infinite;
}
div.yt-loop:hover ul{
	-webkit-animation-play-state: paused;
	        animation-play-state: paused;
}
div.yt-loop ul li{
	width: calc(100vw / 4);
	list-style: none;
	text-align: center;
	border-right: 10px solid #fff0;
	-ms-flex-negative: 0;
	flex-shrink: 0;
	position: relative;
}
div.yt-loop ul li.yt-ttl {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}
div.yt-loop ul li.yt-ttl::before {
    content: "";
    width: 100%;
    height: 100%;
    background: url(/wp-content/uploads/2024/08/back1.jpg)no-repeat center / cover;
    z-index: -1;
    position: absolute;
    top: 0;
    left: 0;
}
div.yt-loop ul li.yt-ttl h2 {
	color:#fff;
	font-size: 23px;
	letter-spacing: 1px;
}
div.yt-loop ul li.yt-ttl h2 span {
	display: block;
	color: #fff;
	font-size: 80%;
}
div.yt-loop ul li.yt-ttl h2 span::before {
    content: "\025c6";
    display: block;
    margin: 5% auto;
}
div.yt-loop ul li a:hover {
    opacity: 0.8;
}
section.index3 {
    background: url(/wp-content/uploads/2024/08/back2.jpg)no-repeat center / cover;
    padding: 4% 0;
}
ul.top-review {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
ul.top-review > li {
    width: 48%;
}
ul.top-review-in li {
    margin-bottom: 8%;
}
ul.top-review-in li:last-child {
    margin-bottom:0;
}
ul.top-review-in li h3 {
    overflow: hidden;
    -o-text-overflow: ellipsis;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-top: 0;
}
ul.top-review-in li p {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
}
ul.tr-img {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 100%;
}
ul.tr-img li {
    width: 48%;
    position: relative;
}
ul.tr-img li img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    top: 0;
}

section.top-message {
    background: url(/wp-content/uploads/2024/08/message.webp)no-repeat center / cover;
    padding: 5% 0;
}
section.top-message div.width {
    background: #ffffffc2;
    padding: 3%;
}
section.top-message h2.ttl2 {
    margin-bottom: 10px;
}


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





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

section.header {
    background: url(/wp-content/uploads/2024/08/salon.webp)no-repeat center / cover;
    padding: 10% 0;
    position: relative;
    overflow: hidden;
}
section.header::before {
    content: "";
    background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(transparent));
    background: -o-linear-gradient(bottom, #fff, transparent);
    background: linear-gradient(0deg, #fff, transparent);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    bottom: 0;
}
section.header div.width {
    position: relative;
    z-index: 1;
}
section.header div.width::before {
    content: "";
    width: 40%;
    padding-top: 100%;
    background: url(/wp-content/uploads/2024/08/white1.webp)no-repeat center / contain;
    position: absolute;
    left: -8%;
    top: 0;
    bottom: 0;
    margin: auto;
    z-index:-1;
}
.ttl-page {
    font-size: 45px;
    letter-spacing: 3px;
    font-weight: 500;
}
.ttl-page span {
    display: block;
    font-size: 20px;
    letter-spacing: 0;
}
.ttl-page span::before {
    content: "";
    width: 1px;
    height: 50px;
    background: #544236;
    display: inline-block;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
    vertical-align: bottom;
    margin: 0 30px -7px 18px;
}

section.bread {}
section.bread li {
    display: inline-block;
    font-size: 14px;
}
section.bread li::after {
    content:"\0bb";
    padding: 0 10px;
}
section.bread li:last-child::after {
    display:none;
}
section.bread li a {
    display: inline-block;
    padding: 12px 0;
}

.box1, .box1p {
    margin: 5% auto;
    max-width: 900px;
    background: url(/wp-content/uploads/2024/08/back2.jpg)no-repeat center / cover;
    padding: 5%;
}
.box1.float {
    max-width: unset;
}
.box1p {
	background: url(/wp-content/uploads/2024/08/back3.webp)no-repeat center / cover;
}
ul.img3 {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
ul.img3 li {
    width: 33%;
    position: relative;
}
ul.img3 li::before {
    content: "";
    width: 100%;
    padding-top: 70%;
    display: block;
}
ul.img3 li img {
    position: absolute;
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
    top: 0;
}
.txt-right {
    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;
    margin: 5% auto;
    -webkit-box-align: start;
    -ms-flex-align: start;
    align-items: flex-start;
}
.txt-right h3 {
    width: 350px;
    margin: 0;
}
.txt-right div {
    width: calc(90% - 350px);
}
ul.txt-img, ul.lace-box {
    margin: 5% auto;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
}
ul.txt-img > li {
    width: 49%;
    margin-bottom: 3%;
    background: #f5f0e8;
}
ul.txt-img > li > p {
    margin: 0;
    position: relative;
}
ul.txt-img > li > p::before {
    content:"";
    width: 100%;
    padding-top: 70%;
    display: block;
}
ul.txt-img > li > p img {
    height: 100%;
    -o-object-fit: cover;
    object-fit: cover;
    position: absolute;
    top: 0;
}
ul.txt-img > li div {
	padding: 3%;
}
ul.lace-box > li {
    width: 49%;
    margin-bottom: 3%;
    position: relative;
}
ul.lace-box > li::before {
    content: "";
    width: 100%;
    height: 120%;
    position: absolute;
    background: url(/wp-content/uploads/2024/08/lace.webp)no-repeat center / contain;
    z-index: -1;
    opacity: 0.5;
}
ul.lace-box > li h3.ttl2 span {
    font-size: 23px;
}
ul.symptoms {}
ul.symptoms li {
    margin-bottom: 10%;
    position: relative;
}
ul.symptoms li::before {
    content:"";
    width: 100%;
    height: 100%;
    position: absolute;
    background: url(/wp-content/uploads/2024/08/back2.jpg)no-repeat center / cover;
    z-index: -2;
    left: -30px;
    top: 30px;
}
ul.symptoms li p.pin {
    position: relative;
    padding-left: 70px;
    font-size: 20px;
    color: #ddd;
}
ul.symptoms li p.pin::before {
    content:"";
    width: 180px;
    height: 1px;
    background: #544236;
    position: absolute;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    left: -80px;
    top: 50px;
    z-index: -1;
}
ul.symptoms li p.floatr {
    width: 30%;
}

ul.content {}
ul.content li {
    margin-bottom: 10%;
    position: relative;
}
ul.content li::before {
    content:"";
    width: 100%;
    height: 100%;
    position: absolute;
    background: url(/wp-content/uploads/2024/08/back2.jpg)no-repeat center / cover;
    z-index: -2;
    left: -30px;
    top: 30px;
}
ul.content li p.pin {
    position: relative;
    padding-left: 70px;
    font-size: 20px;
    color: #ddd;
}
ul.content li p.pin::before {
    content:"";
    width: 180px;
    height: 1px;
    background: #544236;
    position: absolute;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    left: -80px;
    top: 50px;
    z-index: -1;
}
ul.content li p.floatr {
    width: 30%;
}
ul.content li .content-btn {
	display: inline-block;
    background: #544236;
    margin: 10px;
    color: #fff;
    padding: 10px 25px;
    font-size: 18px;
	transition:all .3s;
}
ul.content li .content-btn:hover {
	opacity:.8;
	transition:all .3s;
}
.content-prev_btn {
	display: block;
    background: #544236;
    margin: 40px auto;
    color: #fff;
    padding: 10px 25px;
    font-size: 18px;
    transition: all .3s;
    border: #544236 1px solid;
    width: fit-content;
}
.content-prev_btn:hover {
	opacity:.8;
	transition:all .3s;
	color: #544236;
	background: #fff;
}
.top-content-list {
	transition:all .3s;
}
.top-content-list:hover {
	opacity:.8;
	transition:all .3s;
}
.top-content-list h3 {
	    display: -webkit-box; /* 必須 */
    -webkit-box-orient: vertical; /* 必須 */
    -webkit-line-clamp: 1; /* 行数を制限 */
    overflow: hidden; /* はみ出た部分を非表示 */
	padding-left:10px;
	padding-right:10px;
}
.top-content-list p {
	    display: -webkit-box; /* 必須 */
    -webkit-box-orient: vertical; /* 必須 */
    -webkit-line-clamp: 2; /* 行数を制限 */
    overflow: hidden; /* はみ出た部分を非表示 */
	padding:0 10px;
}

table.price {
    max-width: 1000px;
    margin: 0 auto;
    border-collapse: separate;
    border-spacing: 3px;
}
table.price th {
    background: #544236;
    width: 300px;
    color: #fff;
    text-align: center;
    padding: 10px 0;
    vertical-align: middle;
}
table.price td:nth-of-type(1) {
    text-align: center;
    background: #f5f0e8;
    padding: 10px 0;
}
table.price td:nth-of-type(2) {
    background: #f5f0e8;
    text-align: right;
    padding: 10px;
}

table.about {
    border-collapse: separate;
    border-spacing: 3px;
}
table.about th {
    text-align: center;
    width: 300px;
    padding: 20px 0;
    background: #544236;
    color: #fff;
}
table.about td {
    padding: 20px 10px;
    background: #f5f0e8;
}
ul.sitemap {
    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.sitemap li {
    width: 49%;
    margin-bottom: 2%;
}
ul.sitemap li a {
    background: #f5f0e8;
    display: block;
    padding: 10px;
}
ul.sitemap li a:hover {
    color: #fff;
    background: #544236;
}

ul.qa {
    counter-reset: number 0;
}
ul.qa li {
    padding-left: 150px;
    border-top: 1px solid;
}
ul.qa li input {
    display: none;
}
label.qa-btn {
    cursor: pointer;
    -webkit-transition: 0.2s;
    -o-transition: 0.2s;
    transition: 0.2s;
    position: relative;
    font-size: 20px;
    padding: 30px 20px 30px 0;
    display: block;
}
label.qa-btn::before {
    counter-increment: number 1;
    content: "Q" counter(number) " ";
    position: absolute;
    right: 100%;
    font-size: 28px;
    width: 150px;
    text-align: center;
    top: 23px;
    color:#a78874;
}
label.qa-btn:hover {
	color:#a78874;
}
ul.qa li input:checked ~ label.qa-btn {
    border-bottom: 2px dotted;
	color:#a78874;
}
.show-a {
    width: 100%;
    -webkit-transition: 0.5s;
    -o-transition: 0.5s;
    transition: 0.5s;
    display: block;
    height: 0;
    overflow: hidden;
    opacity: 0;
    padding-right: 20px;
}
ul.qa li input:checked ~ .show-a {
    height: auto;
    opacity: 1;
    overflow: visible;
    padding: 20px 20px 20px 0;
}

ul.fb {}
ul.fb li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-top: 2px dotted;
}
ul.fb li:last-child {
	border-bottom: 2px dotted;
}
ul.fb li > p {
    width: 20%;
}
ul.fb li > div {
    width: 80%;
    padding-bottom: 3%;
}

ul.case {}
ul.case li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    border-top: 2px dotted;
}
ul.case li:last-child {
	border-bottom: 2px dotted;
}
ul.case li > p {
    width: 20%;
}
ul.case li > div {
    width: 80%;
    padding-bottom: 3%;
}
.com-btn {
	display: block;
    background: #544236;
    margin: 40px auto;
    color: #fff;
    padding: 10px 25px;
    font-size: 18px;
    transition: all .3s;
    border: #544236 1px solid;
    width: fit-content;
}
.com-btn:hover {
	opacity:.8;
	transition:all .3s;
	color: #544236;
	background: #fff;
}

p.outlink {
    margin: 5% auto;
    text-align: center;
}
p.outlink a {
    display: block;
    background: url(/wp-content/uploads/2024/08/back2.jpg)no-repeat center / cover;
    padding: 3% 0;
    border: 3px solid #ded2cb;
    font-size: 30px;
    letter-spacing: 5px;
    font-weight: bold;
    position: relative;
    color: #a78874;
}
p.outlink a span {
    display: block;
    letter-spacing: 0;
}
p.outlink a span:first-child {
    margin: 10px auto 0;
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    font-size: 18px;
    background: -webkit-gradient(linear, left bottom, left top, color-stop(45%, #ded3cc), color-stop(46%, transparent), to(transparent));
    background: -o-linear-gradient(bottom, #ded3cc 45%, transparent 46%, transparent);
    background: linear-gradient(0deg, #ded3cc 45%, transparent 46%, transparent);
    font-weight: bold;
    padding: 0 10px;
}
p.outlink a span:last-child {
    position: absolute;
    font-size: 14px;
    font-weight: bold;
    background: #ded3cb;
    top: 0;
    right: 0;
    padding: 10px 20px;
}
p.outlink a:hover {
    color: #544236;
    border: 3px solid #544236;
}
p.outlink a:hover span:nth-child(3) {
    background: #544236;
    color: #fff;
}


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

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

header.top {
    background: unset;
}
header.top hgroup {
    display: block;
    font-size: 0;
}
.logo-h {
    width: 208px;
}
.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: 10000;
    background-color: #544236;
}
.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 {
	background:#fff;
}
#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);
	background-color: #544236;
}
#label1:checked ~ .r-btn span::after {
    top: 0;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
	background-color: #544236;
}
#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: 60%;
	margin: 0 auto 3%;
	max-width: 300px;
	background: url(/wp-content/uploads/2024/08/white.webp)no-repeat center / contain;
	padding: 35px 65px;
}
.hidden_show p.ttl-logo img:nth-child(2) {
	width:70%;
	margin:3% auto 0;
	max-width:200px;
}
.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 70px 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.jpg)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%;
    color: #fff;
}

ul.sp-cta {
    display: block;
    position: fixed;
    z-index: 100;
    bottom: 10px;
    left: 0;
}
ul.sp-cta li {
    display: inline-block;
    margin-left: 10px;
}
ul.sp-cta li a {
    display: block;
    background: #f8b812;
    color: #fff;
    padding: 10px 20px 12px;
    border-radius: 50px;
    font-size: 20px;
    -webkit-filter: drop-shadow(1px 1px 2px #544236);
            filter: drop-shadow(1px 1px 2px #544236);
}
ul.sp-cta li:nth-child(2) a {
    background:#00B900;
}
ul.sp-cta li a span {
    color: #fff;
    padding-left: 10px;
}


.ttl1 {
    font-size: 40px;
}
.ttl2 {
    font-size: 30px;
}
.ttl2 span {
    padding: 1% 0 3%;
}
.ttl2 span::before {
    width: 50px;
}
.ttl3 {
    font-size: 20px;
}
.ttl4, .ttl4p {
    font-size: 30px;
}
.ttl5 {
    font-size: 18px;
    padding: 8px;
}
.ttl6 {
	font-size:23px;
}
ul.cta1 li a {
    min-height: 130px;
}
ul.cta1 li a i {
    font-size: 80px;
}
ul.cta1 li a span {
    font-size: 25px;
    bottom: 5%;
}



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

.logo-m span, .mv-txt p {
    font-size: 17px;
}
br.b1000 {
	display:block;
}

ul.top-menu1 li, ul.top-menu3 li {
    min-height: 200px;
}
p.top-menu2 span {
    font-size: 16px;
    padding: 10px 20px;
}
div.yt-loop ul li {
    border-right: 8px solid #fff0;
}
div.yt-loop ul li.yt-ttl h2 span::before {
    margin: 3% auto;
    font-size: 16px;
}



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





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

section.header div.width::before {
    left: -13%;
    width: 50%;
}
.ttl-page {
    font-size: 40px;
}
.txt-right h3 {
    width: 250px;
}
.txt-right div {
    width: calc(95% - 250px);
}

ul.symptoms li p.floatr {
    width: 47%;
}
ul.symptoms li p.pin::before {
    width: 150px;
}
ul.symptoms li p.pin {
    padding-left: 50px;
}

table.price th {
    width: 230px;
}

table.about th {
    width: 250px;
}
ul.qa li {
    padding-left: 100px;
}
label.qa-btn::before {
    width: 100px;
    font-size: 25px;
    top: 25px;
}









}





@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;
}
p.w30 {
	width: 100%!important;
}


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

.hidden_show p.ttl-logo {
    padding: 30px 44px;
    width: 180px;
}
.logo-h a {
    padding: 13.5px 10px;
}
.logo-h {
    width: 162px;
}

ul.sp-cta {
    bottom: 0;
    font-size: 0;
    width: 100%;
}
ul.sp-cta li {
    width: 50%;
    margin: 0;
}
ul.sp-cta li a {
    -webkit-filter: unset;
            filter: unset;
    text-align: center;
    border-radius: unset;
    padding: 10px 0 12px;
    font-size: 18px;
}
ul.sp-cta li a span {
    padding-left: 8px;
}

.footer > p br {
    display: block;
}
ul.sns li a img {
    height: 43px;
}
footer#colophon {
    font-size: 12px;
	padding-bottom:65px;
}


.ttl1 {
    font-size: 30px;
    letter-spacing: 1px;
}
.ttl1 span {
    font-size: 16px;
}
.ttl1 span::before {
    height: 40px;
    margin: 0 20px -5px 15px;
}
.ttl2 {
    font-size: 23px;
    letter-spacing: 1px;
}
.ttl2 span {
    font-size: 16px;
}
.ttl2 span::before {
    height: 1.5px;
}
.ttl3 {
    font-size: 18px;
    padding: 3px 0;
}
.ttl4, .ttl4p {
    font-size: 25px;
    letter-spacing: 1px;
}
.ttl4::before, .ttl4p::before {
    width: 300px;
    height: 300px;
    top: 0;
    left: -10%;
    bottom: 0;
    margin: auto;
}
.ttl6 {
	font-size:20px;
	letter-spacing:1px;
}
ul.cta1 li {
    width: 49%;
}
ul.cta1 li a {
    -webkit-filter: drop-shadow(1px 1px 1px #00000036);
            filter: drop-shadow(1px 1px 1px #00000036);
    min-height: 80px;
}
ul.cta1 li a::before {
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}
ul.cta1 li a i {
    font-size: 40px;
    -webkit-transition: unset;
    -o-transition: unset;
    transition: unset;
}
ul.cta1 li a span {
    font-size: 16px;
    font-weight: bold;
}
p.link1 a {
    width: 150px;
}
ul.link2 li a span:nth-child(1) {
    width: 80%;
    height: 150px;
}
ul.link2 li a span:nth-child(2), ul.link2 li a span:nth-child(3) {
    width: 90%;
    font-size: 14px;
    bottom: 10px;
}
ul.link2 li a span:nth-child(2) {
    bottom: 60px;
}



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

section.main > p::before {
    display: none;
}
.logo-m {
    position: relative;
    margin: 0% auto;
    width: 73%;
    padding-bottom: 3%;
    left: unset;
    max-width: 300px;
}
.logo-m span {
    font-size: 16px;
}
.mv-txt {
    width: 98%;
    margin: 0 auto 5%;
}
.mv-txt p {
    font-size: 14px;
}

ul.top-menu1 li span, ul.top-menu3 li span {
    -ms-writing-mode: tb-rl;
    -webkit-writing-mode: vertical-rl;
            writing-mode: vertical-rl;
    font-size: 40px;
}
p.top-menu2 span {
    font-size: 14px;
    padding: 8px 15px;
    margin: 0 5px 5px;
}
div.yt-loop ul li {
    width: calc(100vw / 2);
    border-right: 5px solid #fff0;
}
div.yt-loop ul li.yt-ttl h2 {
    font-size: 20px;
}
ul.top-review > li {
    width: 100%;
}
ul.tr-img {
    min-height: 200px;
}
section.top-message h2.ttl2 {
    margin-bottom: 3px;
    font-weight: bold;
}




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





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

section.header div.width::before {
    width: 65%;
    left: -15%;
}
.ttl-page {
    font-size: 30px;
    letter-spacing: 1px;
}
.ttl-page span {
    font-size: 16px;
}
.ttl-page span::before {
    height: 40px;
    margin: 0 20px -5px 15px;
}
section.bread li {
    font-size: 12px;
}
section.bread li a {
    padding: 13px 0;
}
.txt-right h3 {
    width:auto;
}
.txt-right h3 br {
    display: none;
}
.txt-right div {
    width: 100%;
}
ul.lace-box > li {
    width: 100%;
}

ul.symptoms li p.floatr {
    width: 70%;
    margin: 0 0 10px auto;
    max-width: 400px;
}
ul.symptoms li p.pin::before {
    width: 100%;
    left: -50%;
    top: -120%;
}
ul.symptoms li p.pin {
    padding: 0;
    color: #a78874;
    font-size: 14px;
}

table.price, table.about {
    border-collapse: collapse;
    border-spacing: 0;
}
table.price th {
    width: 100%;
    display: block;
    margin-bottom: 3px;
}
table.price td {
    display: inline-block;
    width: calc(50% - 1.5px);
    margin-bottom: 3px;
    padding: 10px 0!important;
}
table.price td:nth-of-type(1) {
    margin-right: 3px;
}
table.price td:nth-of-type(2) {
    text-align: center;
    font-weight: 500;
}

table.about th, table.about td {
    display: block;
    width: 100%;
    padding: 10px;
}
ul.qa li {
    padding-left: 60px;
}
label.qa-btn {
    font-size: 16px;
    padding: 20px 10px 20px 0;
}
label.qa-btn::before {
    width: 60px;
    font-size: 20px;
    top: 16px;
}
.show-a {
    padding-right: 10px;
}
ul.qa li input:checked ~ .show-a {
    padding: 15px 10px 15px 0;
}

p.outlink a {
    font-size: 25px;
    letter-spacing: 2px;
    padding: 3% 0 0;
}
p.outlink a span:first-child {
    font-size: 16px;
    padding: 0 5px;
    margin: 5px auto 13px;
}
p.outlink a span:last-child {
    position: unset;
    width: 100%;
    color: #fff;
}
p.outlink a span:last-child br {
    display: none;
}




}

@media screen and (max-width: 550px) {
ul.txt-img > li {
    width: 100%;
}
}

/*--------
 * ドロップダウンメニュー
 * --------*/
/* メニューアイテムのホバースタイル */
.menu-item:hover .drop-menu-list {
  opacity: 1; /* 不透明度を最大に */
  transition: opacity .3s, visibility .3s; /* アニメーション設定 */
  visibility: visible; /* 下層メニューを表示 */
}
.menu-item a {}

/* ドロップダウンメニュー */
.drop-menu {
  position: relative;
}
.drop-menu-list {
  background-color: #e1e1e1db; /* ドロップダウンメニューの背景色 */
  left: 0;
  opacity: 0; /* 不透明度を最小に */
  position: absolute;
  top: 100%;
  transition: opacity .3s, visibility .3s; /* アニメーション設定 */
  visibility: hidden; /* 下層メニューを非表示 */
  width: max-content;
  z-index: 1;
}
.menu .drop-menu-list .drop-menu-item a {
  color:#805B39;
}
/*------------
 * 施術メニューテキスト追加
 * -------------*/
.ttl4 .sp {
	display: none;
}
span.bold {
	font-weight:bold;
}
span.txt-big {
	font-size:140%;
}
.p-menu_policy {
	justify-content:space-between;
}
.p-menu_policy-txt {
	text-align:center;
	width: 49%;
}
.p-menu_policy_list-area {
	width:50%;
}
.list-inside {
	list-style:inside;
}
.list-inside li {
	font-weight:bold;
}
.p-menu_policy-txt span.ib {
	    color: #a78874;
	font-weight:bold;
}

@media screen and (max-width:1000px) {
	.p-menu_policy {
		flex-direction: column;
	}
	.p-menu_policy-txt {
		width: 100%;
		text-align: start;
		margin-bottom: 30px;
	}
	.p-menu_policy_list-area {
		width:100%;
	}
}
@media screen and (max-width:600px) {
	.ttl4 .sp {
		display:block;
	}
	span.txt-big {
		font-size:170%;
	}
}
@media screen and (max-width: 480px) {
section.instagram .sbi_item {
    display: none!important;
}
section.instagram .sbi_item:first-child {
    display: block!important;
}
}

/*--------
 * 2025.02.03 DC追記
 * ---------*/
.list01 {
  padding: 0.5em 1em 0.5em 2.3em;
  position: relative;
}

.list01 li {
  line-height: 1.5;
  padding: 0.5em 0;
  list-style-type: none!important;/*ポチ消す*/
}

.list01 li:before {
  font-family: "FontAwesome";
  content: "\f00c";
  position: absolute;
  left : 1em; /*左端からのアイコンまで*/
  color: #544236; /*アイコン色*/
}

/*----------
 * 2025.02.17 DC追記
 * ----------*/
.mv-txt p span.big_txt {
	font-size: 140%;
    font-weight: 700;
    color: #ffa216;
}

/*-----------
 * 25.05.02 DC追記
 * -----------*/
.youtube iframe {
	aspect-ratio: 16 / 9;
}
.youtube-shorts iframe {
	aspect-ratio: 9 / 16;
}
.footer_about {
	display: flex;
    justify-content: center;
    align-items: center;
}
.clinic_txt {
	width:60%;
}
.youtube-shorts {
	max-width: 300px;
    margin: 0 auto;
}
@media screen and (max-width:700px) {
	.footer_about {
		flex-direction:column;
	}
	.clinic_txt {
		width:100%;
		margin-bottom:5%;
	}
}

/*------------------
 * 25.05.15 DC追記
 * -----------------*/
@media screen and (max-width:850px) {
	.mv-txt p span.big_txt.catch {
		font-size:110%;
	}
}
@media screen and (max-width:700px) {
	.mv-txt p span.big_txt.catch {
		font-size:135%;
	}
	.mv-txt p span.big_txt {
		font-size: 135%;
	}
}

/*--------------------
 * 25.07.03 DC追記
 * -------------------*/
ul.cta1 li a::before {
    background: #f9b823ab;
}
ul.cta1 li:nth-of-type(2) a::before {
    background: #d5e8bbab;
}
ul.cta1 li:nth-of-type(2) a:hover::before {
    background: #54423691;
}
ul.cta1 li a i {
	color:#fff;
}
.swiper-slide a img {
	height:200px;
	object-fit:cover;
}
@media screen and (max-width:700px) {
	.swiper-slide a img {
		height:250px;
		object-fit:cover;
	}
}
/*--------------------
 * 25.11.26 DC追記
 * -------------------*/
.menu li.end .drop-menu-list {
    left: unset;
    right: 0;
}
.drop-menu-list .drop-menu-item {
    display: block;
}
ul.sp-cta li:nth-child(3) a {
    background: #544236;
}
@media screen and (max-width: 700px) {
    ul.sp-cta li {
        width: calc(100% / 3);
        margin: 0;
    }
}