@media screen and (max-width: 1500px) {/*tablet*/
	body {min-width:1500px;}
}
@media screen and (min-width: 1501px) {/*PC*/
}
#menu,
.sm_menu,
#navTgl,
.sm,
#hung_menu{
	display:none !important;
}
.clear{
    clear: both;
}
dl{
    display: table-row;
}
p{
        margin: 0;
        padding: 0;
    }
    h2{
        font-family: "Shippori Mincho", serif;
        font-weight: 400;
        font-style: normal;
    }
#headh1{
	position: fixed;
	top: 20px;
	left: 2.5%;
	z-index: 101;
	font-size: 12px;
	color: white;
	font-weight: normal;
	transition: color 0.4s ease;
}
#headh1 img{
	width: 350px;
	height: auto;
}
#headh1 span{
	width: 350px;
	text-align: right;
	display: block;
	margin: -30px 0 0 0;
}


#rightnav ul{
	display: table;
    margin: 0;
    padding: 0;
}
#rightnav ul li {
	display: table-cell;
	vertical-align: top;
	font-size: 14px;
}
#rightnav ul li a{
	color: white;
	display: block;
	padding: 20px 10px;
	position: relative;
	text-decoration: none;
	overflow: hidden;
}

/* ホバーアニメーション用のテキストラッパー */
#rightnav ul li a .text-wrapper {
	display: block;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
    padding: 0 10px;
}
#rightnav ul li a:hover .text-wrapper{
    background-color: white;
}
#rightnav ul li a .text {
	display: block;
	transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ホバー時に現れるテキスト（下に配置） */
#rightnav ul li a .text::after {
	content: attr(data-text);
	display: block;
	position: absolute;
	top: 100%;
	left: 0;
	width: 100%;
}

/* ホバー時：テキストを上にスライド */
#rightnav ul li a:hover .text {
	transform: translateY(-100%);
}

#rightnav ul li a::before{
	position: absolute;
	top: 25px;
	left: 0;
	content: '';
	display:block;
	width: 1px;
	height: 10px;
	background: rgba(255, 255, 255, 0.5);
	transition: background 0.4s ease;
}

/* ===== 最後のli（撮影予約）===== */
#rightnav ul li a.btncolor::before {
	width: 0;
}
#rightnav ul li a.btncolor {
    background-color: black;
    height: auto;  /* height: 50px を削除 */
    margin: 5px 0 0 0;
    padding: 0 20px;  /* 上下均等に */
    /* border-radius: 5px 0 0 5px; */
    transition: background-color 0.2s ease;
    display: flex;
    align-items: center;
    gap: 10px;
height: 60px;
font-size: 13px;
}
#rightnav ul li #js-cal-trigger.btncolor {
  line-height: 1.2;        /* 2行時の縦幅を圧縮 */
  padding: 0 15px;
border-radius: 5px 0 0 5px;
border-right: 1px solid gray;
}
#rightnav ul li #js-cal-trigger.btncolor span {
  color: white !important;
}
#rightnav ul li:last-child img {
    width: 20px;
    height: auto;
    margin: 0;  /* floatをやめる */
    float: none;
}

#rightnav ul li:last-child span {
    display: block;
    float: none;
    margin: 0;  /* marginをゼロに */
}

/* 最後のliは背景色変更ホバー */
#rightnav ul li a.btncolor:hover {
	background-color:#3a3a3a;
}

/* ===== ドロップダウンメニュー ===== */
#rightnav ul li {
	position: relative;
}

.dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 15px;
    width: 1256px;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    visibility: hidden;
    opacity: 0;
}

.dropdown a {
	display: block;
	padding: 0 !important;
	overflow: visible;
}

.dropdown .thumb {
	width: 150px;
	height: 100px;
	object-fit: cover;
	border-radius: 4px;
	transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.dropdown .thumb:hover {
	transform: scale(1.05);
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.dropdown p {
	font-size: 12px;
	text-align: center;
	margin: 5px 0 0 0;
	color: #333;
	line-height: 160%;
}

/* has-dropdown クラス用 */
.has-dropdown > a {
	cursor: pointer;
}
/* aタグにtransition追加 */
#rightnav ul li a{
	transition: color 0.4s ease;
}

/* スクロール時の色変更 */
#rightnav.scrolled ul li a {
	color: black;
}

/* 最後のli（撮影予約）は常に白 */
#rightnav.scrolled ul li:last-child a {
	color: white;
}

/* セパレーターの色も変更 */
#rightnav.scrolled ul li a::before {
	background: rgba(0, 0, 0, 0.3);
}
/**/
#navwrap{
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	z-index: 100;
	width: 100%;
    height: 65px;
    padding-top: 20px;
	background-color: rgba(255,255,255,0);
}
#rightnav{
	margin-left: auto;
	width: fit-content;
}

/* ===== 初期カラー切替: body.dark-header で黒スタート ===== */
.dark-header #headh1 span{
    color: #261c1a;
}
.dark-header #rightnav ul li a{
    color: #261c1a;
}
.dark-header #rightnav ul li:last-child a{
    color: white;
border-radius: 0 0 0 0;
}
.dark-header #rightnav ul li a::before{
    background: rgba(0, 0, 0, 0.3);
}

/* ===== ヒーローエリア（table レイアウト） ===== */
    /* hero 左右分割。body{min-width:1500px}(行2) により 1500px以下でも
       PC幅で描かれるため、min-width:1501 で囲わず pc.css 全域(≥641px)で適用する。
       ※以前は min-width:1501 内にあり MacBook 等(論理幅<1501)で分割が効かなかった。 */
    #topimgwrap{
        display: table;
        width: 100%;
        height: 100vh;
    }
    #topimgwrap dl{
        display: table-row;
    }
    #topimgwrap dl dt,
    #topimgwrap dl dd{
        display: table-cell;
        vertical-align: top;
        text-align: left;
        width: 50%;
    }
    #topimgwrap dl dt{
        background-color: #fff;
        vertical-align: middle;
    }
    #topimgwrap dl dt div{
        width: 490px;
        margin: auto;
        font-size: 16px;
        line-height: 200%;
    }
    #topimgwrap dl dt div h2{
        font-family: "shippori-mincho", sans-serif;
        font-weight: 400;
        font-style: normal;
        font-size: 45px;
        line-height: 150%;
    }

    /* ===== dd: Swiperの親 ===== */
    #topimgwrap dl dd{
        position: relative;   /* absoluteの基点 */
        overflow: hidden;      /* はみ出し防止 */
    }
/* ===== Swiper: absoluteでtable-cellから完全分離 ===== */
.mySwiper{
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.mySwiper .swiper-slide{
    overflow: hidden;          /* zoom-outのはみ出し防止 */
}
.mySwiper .swiper-slide img{
    width: 100%;
    height: 100vh;
    object-fit: cover;
    /*filter: brightness(90%);*/
    will-change: transform;
}
.swiper-slide h3{
    margin: 0;
    padding: 20px 0 15px 0;
}
/* ===== Pagination ===== */
.mySwiper .swiper-pagination{
    bottom: 20px !important;
}
.mySwiper .swiper-pagination-bullet{
    width: 10px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    opacity: 1;
}
.mySwiper .swiper-pagination-bullet-active{
    background: #fff;
}

/* ===== ブラーアニメーション用 ===== */
.blur-line{
    display: inline-block;
}

#baseimg{
    clear: both;
    margin: 150px 0 0 0;
    padding: 0;
    position: relative;
    height: 300px;
}
#baseimg img{
    width: 70%;
    height: auto;
    float: right;
    border-radius: 50px 0 0 10px
}
#baseimg div{
    position: absolute;
    top: 190px;
    left: 5%;
}
#baseimg div h2{
    font-family: "Outfit", sans-serif;
    font-weight: 200;
    font-size: 30px;
    margin: 0;
    padding: 0;
    color: gray;
}
#baseimg div h3{
    font-size: 30px;
	font-family: Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: normal;
    margin: 30px 0;
    padding: 0;
}
#baseimg div p{
    font-size: 17px;
    letter-spacing: 5px;
}
/**/
#baseimg_full{
    clear: both;
    margin: 0 0 0 0;
    padding: 0;
    position: relative;
}
#baseimg_full img{
    width: 100%;
    height: auto;
}
#baseimg_full div{
    position: absolute;
    top: 260px;
    left: 5%;
}
#baseimg_full div h2{
    font-family: "Outfit", sans-serif;
    font-weight: 200;
    font-size: 30px;
    margin: 0;
    padding: 0;
    color: gray;
}
#baseimg_full div h3{
    font-size: 30px;
	font-family: Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: normal;
    margin: 30px 0;
    padding: 0;
}
#baseimg_full div p{
    font-size: 17px;
    letter-spacing: 5px;
}
/**/
#base_txt{
    clear: both;
    margin: 200px 0 0 0;
    padding: 0;
    position: relative;
    height: 300px;
}
#base_txt div{
    text-align: center;
}
#base_txt div h2{
    font-family: "Outfit", sans-serif;
    font-weight: 200;
    font-size: 30px;
    margin: 0;
    padding: 0;
    color: gray;
}
#base_txt div h3{
    font-size: 30px;
	font-family: Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: normal;
    margin: 30px 0;
    padding: 0;
}
#base_txt div p{
    font-size: 17px;
    letter-spacing: 5px;
}
/**/
#baseimg_btm{
    clear: both;
    height: 10px;
}
/**/
.base_cen_txt{
    clear: both;
    text-align: center;
    margin: 130px auto;
    font-size: 110%;
    letter-spacing: 2px;
    line-height: 200%;
}
.base_cen_txt h2{
    font-size: 30px;
}
.toptitle_h2{
	font-family: "brother-1816", sans-serif;
font-weight: 400;
    font-size: 30px;
    letter-spacing: 3px;
    padding-bottom: 30px;
	clear: both;
}
.toptitle_h2 span{
	font-family: Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 14px;
    letter-spacing: 0;
	font-weight: normal;
	border-left: 1px solid gray;
	padding: 0 0 0 20px;
	line-height: 90% !important
}
.toptitle_h2 em{
	font-family: Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 14px;
    letter-spacing: 0;
	font-weight: normal;
	font-style: normal;
	display: block;
	margin: auto;
	padding: 20px 0 0 0;
}
.title-border em{
    display: flex;
    align-items: center;
}

.title-border em:before,
.title-border em:after {
    content: "";
    height: 1px;
    flex-grow: 1;
    background-color: #ddd;
}

.title-border em:before {
    margin-right: 1rem;
}

.title-border em:after {
    margin-left: 1rem;
}
.cen{
    text-align: center;
}
.beback{
	clear: both;
	background-color: #fbfaf9;
	padding: 100px 0 150px 0;
	margin: 200px 0 150px 0;
}
/**/
.pricewrap{
    display: table;
    width: 80%;
    max-width: 1200px;
    margin: auto auto 50px auto;
}
.pricewrap dl{
    display: table-row;
}
.pricewrap dl dt{
    display: table-cell;
    vertical-align: top;
    text-align: left;
    width: 50%;
}
.pricewrap ul{
    margin: 0;
    padding: 0;
}
.pricewrap ul li{
    display: table;
    margin: 0;
    padding: 0;
}
.pricewrap ul li span.leftimg{
    display: table-cell;
    vertical-align: top;
    text-align: left;
    width: 30%;
}
.pricewrap ul li img{
    width: 90%;
    height: 200px !important;
    height: auto;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
.pricewrap ul li div{
    display: table-cell;
    vertical-align: top;
    text-align: left;
    width: 70%;
}
.pricewrap ul li div h3{
    margin: 0 0 15px 0;
    padding: 0;
}
.pricewrap ul li div p em{
    font-size: 22px;
    font-style: normal;
}
.pricewrap ul li div p{
    margin-bottom: 20px;
    clear: both;
}
.pricewrap ul li div p b{
}
/*-------------*/
.wrap800{
    max-width: 800px;
    margin: auto;
}
.wrap1250,
.pricewrap2{
    max-width: 1250px;
    margin: auto;
}
.pricewrap2 ul{
    margin: 0;
    padding: 0;
}
.pricewrap2 ul li{
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
	width: 33%;
    text-align: center;
}
.pricewrap2 ul li div{
    padding: 0 25px 40px 25px;
}
.pricewrap2 ul li img{
	width: 100%;
	height: auto;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
.pricewrap2 ul li h4{
    margin: 15px 0;
    padding: 0;
    font-size: 18px;
}
.pricewrap2 ul li p.price_txt span{
    border-bottom: 1px dashed #000;
}
.pricewrap2 ul li:nth-child(4),
.pricewrap2 ul li:nth-child(7){
    clear: both;
}
.space100{
    height: 100px;
    clear: both;
}
/*-------------*/

.flow_box ol{
    margin: 0px;
    padding: 0px;
}
.flow_box ol li{
    margin: 0px;
    padding: 0px;
    list-style: none;
}
.flow_box ol li h4{
    font-size: 20px;
    margin: 17px 0 0 0;
    padding: 0;
}

.flow_box {
    padding: 2px 0 80px 36px;
    position: relative;
}

.flow_box::before {
    content: '';
    display: block;
    width: 20px;
    height: 20px;
    background-color: #fff;
    z-index: 1;
    border: 2px solid #ff3636;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
}

.flow_box::after {
    content: '';
    display: block;
    width: 1px;
    height: 100%;
    background-color: lightgrey;
    position: absolute;
    top: 0;
    left: 12px;
}

.flow_box:last-child::after {
    display: none;
}

.flow_content time {
    color: #ff3636;
    display: block;
    margin-top: -2px;
    font-size: 18px;
}

.flow_content h4 {
    margin: 12px 0 24px 0;
    font-size: 2.4rem;
    font-weight: bold;
}

.flow_content p {
    margin: 16px 0 0 0;
    line-height: 180%;
}
/**/
.yoyakubox{
    text-align: center;
	clear: both;
	background-color: #fbfaf9;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
    margin: auto;
    width: 800px;
    padding: 40px 0;
}
.w_tel{
    background-color: white;
    padding: 20px;
	border-radius: 50px;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
    width: 70%;
    margin: 20px auto;
}
.w_tel a{
    color: black;
    text-decoration: none;
}
.w_tel span{
    font-size: 20px;
	font-family: "brother-1816", sans-serif;
    font-weight: 400;
    font-size: 30px;
    letter-spacing: 3px;
}
.w_tel b{
    font-weight: normal;
}
.yoyaku_btn {
    display: table;
    margin: auto auto 30px auto;
    padding: 0;
    width: 74%;
}
.yoyaku_btn dl dt{
    display: table-cell;
    width: 49%;
}
.yoyaku_btn dl dd{
    display: table-cell;
    width: 2%;
}
.yoyaku_btn a{
    display: block;
    color: white;
    padding: 15px 0;
	border-radius: 50px;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
    margin: 0px auto;
    text-decoration: none;
    font-size: 16px;
}

.yoyaku_btn img{
  margin: 5px 10px -3px 0;
}
.rightxt{
    text-align: left;
    width: 73%;
    margin: auto;
}
/**/
.faqwrap{

}
.faqwrap ul{
    margin: 0;
    padding: 0;
}
.faqwrap ul li{
    margin: 0;
    padding: 0;
    list-style: none;
}
.faqwrap ul li.faq_q{
    font-weight: bold;
    padding: 20px 0;
}
.faqwrap ul li.faq_q img{
  filter: brightness(0) saturate(100%) invert(28%) sepia(73%) saturate(2907%) hue-rotate(343deg) brightness(109%) contrast(103%);
  margin: 5px 10px -3px 0;
}
.faqwrap ul li.faq_a{
	background-color: #fbfaf9;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
    padding: 30px;
}
/**/

ul#topmenulist{
	margin: 0 3%;
	padding: 0;
}
ul#topmenulist li{
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
	width: 20%;
    font-size: 13px;
    letter-spacing: 0;
    line-height: 170%;
}
ul#topmenulist li a{
	display: block;
	padding: 5%;
	text-align: center;
    position: relative;
}
ul#topmenulist li a img{
	width: 100%;
	height: auto;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
ul#topmenulist li a span{
    position: absolute;
    display: block;
    background-color: white;
    font-size: 10px;
    letter-spacing: 0;
    right: 20px;
    top: 20px;
    padding: 5px 10px;
	border-radius: 50px;
    color: black;
    line-height: 110%;
    opacity: 0.8;
}
/**/

ul.kanrenlist{
	margin: 0 3%;
	padding: 0;
}
ul.kanrenlist li{
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
}
/**/
.td1{
    width: 400px;
    margin: auto !important;
}
.td1 li{
	width: 100%;
}
.td2{
    width: 800px;
    margin: auto !important;
}
.td2 li{
	width: 50%;
}
.td3{
    width: 1000px;
    margin: auto !important;
}
.td3 li{
	width: 33%;
}
.td4 li{
	width: 25%;
}
.td5 li{
	width: 20%;
}
/**/
ul.kanrenlist li a{
	display: block;
	padding: 5%;
	text-align: center;
}
ul.kanrenlist li a img{
	width: 100%;
	height: auto;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
    margin-bottom: 10px;
}
ul.kanrenlist li p{
    width: 90%;
    margin: auto;
    font-size: 90%;
    line-height: 180%;
}
/**/
.hr1px_base{
  border: none;
  border-top: 1px solid #ddd;
  height: 0;
  margin: 50px 0;
  clear: both;
}

/**/
#f_contact{
	display: table;
	margin: 150px auto !important;
	min-width: 630px !important;
    clear: both;
}
#f_contact dl dt,
#f_contact dl dd{
	display: table-cell;
	vertical-align: top;
	text-align: left;
}
#f_contact dl dt {
	width: 26% !important;
	position: relative;
}
#f_contact dl dt::after{
	content: "";
	display: block;
	background-color: #ddd;
	width: 1px;
	height: 60px;
	top: 0px !important;
	right: 30px;
	position: absolute;
}
#f_contact dl dt p{
	font-family: "brother-1816", sans-serif;
	font-weight: 400;
    font-size: 30px;
    letter-spacing: 3px;
    float: left;
    margin-right: -30px;
}
#f_contact dl dt p span{
	font-size: 14px;
	letter-spacing: 0;
}
/**/
#f_contact dl dd{
	width: 80%;
}
#f_contact dl dd p{
	line-height: 220%;
	float: left;
    margin: -5px 0 0 0;
    padding: 0;
}
#f_contact dl dd p img{
	width: 20px;
	margin: 0 5px 0 0;
}
#f_contact dl dd p span{
	font-family: "brother-1816", sans-serif;
	font-weight: 400;
    font-size: 36px;
}
#f_contact dl dd div{
	float: right;
	margin: 20px 0 0 0;
}
#f_contact dl dd div a{
	display: block;
	color: white;
	text-align: center;
	text-decoration: none;
	padding: 20px 40px;
	border-radius: 50px;
}
#f_contact dl dd div a img{
	width: 20px;
	margin: 0px 10px -5px 0;
}
/**/
footer{
	clear: both;
	position: relative;
	z-index: 500;
	background-color: #414141;
	text-align: center;
	color: white;
	list-style: 200%;
	padding: 50px 0;
}
footer img{
	width: 500px;
	height: auto;
}
footer p{
	margin: 50px auto;
}
#f_logo2 img{
	width: 300px;
}
address{
	color: black;
}

	.btncolor{	
		background-color: black;
		transition: background-color 0.3s ease;
	}
	.btncolor:hover{	
		background-color: gray;
	}
/*------*/
.harftxt{
    display: table;
    clear: both;
    margin: 0 0 150px 0;
    width: 100%;
}
.harftxt dl dt,
.harftxt dl dd{
    width: 50%;
    display: table-cell;
    vertical-align: top;
    text-align: left;
}
.harftxt dl dt img{
    width: 100%;
}
.harftxt dl dd div{
    padding: 0 0 0 40px;
}
.harftxt dl dd h3{
    font-family: "Outfit", sans-serif;
    font-weight: 200;
    font-size: 27px;
    margin: 0 0 20px 0;
    padding: 0;
}
.harftxt dl dd p span{
    color: gray;
}
.harftxt dl dt iframe {
    width: 100%;
    height: 650px;
    margin-bottom: -9px;
}
/**/
#studioacce{
    margin: 100px auto;
    background-color: #f7f7f7;
}
#studioacce dl dd table{
    width: 90%;
    margin: 50px auto;
    border-top: 1px solid #ddd;
}
#studioacce dl dd table th{
    padding: 20px 0;
    width: 20%;
    font-size: 80%;
    font-weight: normal;
    border-bottom: 1px solid #ddd;
}
#studioacce dl dd table td{
    padding: 20px 0;
    border-bottom: 1px solid #ddd;
}
/**/
.leftimgbox{
    display: table;
    margin: auto;
    width: 1200px;
    clear: both;
}
.leftimgbox dl dt,
.leftimgbox dl dd{
    display: table-cell;
    vertical-align: top;
    text-align: left;
}
.leftimgbox dl dt {
    width: 40%;
}
.leftimgbox dl dt img{
    width: 90%;
    height: auto;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
.leftimgbox dl dd h4{
    margin: 0;
    padding: 0;
    font-size: 18px;
}
/**/
.menu_pribox{
    border-top: 1px solid #ddd;
}
.menu_pribox th,
.menu_pribox td{
    padding: 10px 0;
    border-bottom: 1px solid #ddd;
    font-weight: normal;
}
.menu_pribox tr:last-child th,
.menu_pribox tr:last-child td{
    background-color: #fff8eb;
    font-weight: bold;
}

/**/
.leftimgbox2{
    display: table;
    margin: auto;
    width: 1200px;
    border-top: 1px dashed gray;
    clear: both;
}
.leftimgbox2 dl dt,
.leftimgbox2 dl dd{
    display: table-cell;
    vertical-align: top;
    text-align: left;
    padding: 60px 0;
}
.leftimgbox2 dl dt {
    width: 33.5%;
}
.leftimgbox2 dl dt img{
    width: 90%;
    height: auto;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
.leftimgbox2 dl dd h4{
    margin: 0;
    padding: 0;
    font-size: 18px;
}
/**/
.harf2row{
    display: table;
    margin: auto;
    clear: both;
}
.harf2row dl dt,
.harf2row dl dd{
    display: table-cell;
    vertical-align: top;
    text-align: center;
    width: 50%;
}
.harf2row dl dt img{
    width: 100%;
    height: auto;
}
.harf2row dl dt p{
    text-align: left;
    width: 80%;
    margin: auto;
}
/**/
#tablink{
    text-align: center;
    clear: both;
    border-bottom: 1px solid #c8c8c8;
    display: block;
    height: 63px;
    font-size: 14px;
}
#tablink div{
    display: table;
    margin: auto;
}
#tablink div dl dt{
    display: table-cell;
    text-align: center;
}
#tablink div dl dt a{
    display: block;
    padding: 17px 30px 15px 30px;
	border-radius: 5px 5px 0 0;
    border-right: 1px solid #c8c8c8;
    border-left: 1px solid #c8c8c8;
    border-top: 1px solid #c8c8c8;
    margin: 5px;
    background-color: #f7f7f7;
    color: black;
    position: relative;
}
#tablink div dl dt a:hover{
    background-color: white;
    text-decoration: none;
}
#tablink div dl dt#fix a{
    background-color: white;
    text-decoration: none;
    font-weight: bold;
}
.pricetxt{
    text-align: center;
    margin: -70px auto -20px auto;
    font-size: 16px;
    line-height: 200%;
}
.pricetxt b{
    background-color: #fffde4;
}
/**/

.pricetxt2{
    text-align: center;
    margin: 40px auto 80px auto;
    font-size: 16px;
    line-height: 200%;
}
.pricetxt2 b{
    background-color: #fffde4;
}
/**/
#rentalink{
    display: table;
    text-align: center;
    margin: auto;
}
#rentalink dl dt{
    display: table-cell;
}
#rentalink dl dt a{
    display: block;
    margin: 40px 20px;
    border: 1px solid white;
	border-radius: 50px;
    padding: 10px 20px;
    text-decoration: none;
    font-size: 14px;
    background-color: #f7f7f7;
    color: black;
}
#rentalink dl dt a:hover{
    background-color: white;
    text-decoration: underline;
    border: 1px solid #c8c8c8;
}
#rentalink dl dt#fix a{
    border: 1px solid #c8c8c8;
    background-color: white;
    font-weight: bold;
}
.chui_txt{
    max-width: 1000px;
	border-radius: 10px;
    margin: auto auto 50px auto;
    font-size: 14px;
    background-color: #f7f7f7;
    padding: 30px;
}
/**/
.p_table{
    border-top: 1px solid #ddd;
    margin: 15px 0 0 0;
    width: 500px;
}
.p_table th{
    border-bottom: 1px solid #ddd;
    padding: 10px 0;
    text-align: left;
}
.p_table td{
    border-bottom: 1px solid #ddd;
    padding: 10px 20px 10px 0;
}
.p_table tr:nth-child(even) th,
.p_table tr:nth-child(even) td{
    background-color: #f7f7f7;
}
.p_table th.wh,
.p_table td.wh{
    background-color: white !important;
    border-bottom: 1px solid white !important;
}
/**/
.wid1000{
    width: 700px !important;
    margin-bottom: 80px;
}
.wid1000 dl dt {
    width: 25%;
}
.wid1000 dl dt img{
    width: 80%;
}

/*----------*/
#topvoicelist{
	display: table;
	width: 80%;
	margin: auto;
}
#topvoicelist dl {
	display: table-row;
}
#topvoicelist dl dt,
#topvoicelist dl dd{
	display: table-cell;
	vertical-align: top;
	text-align: left;
}
#topvoicelist dl dt {
	width: 25%;
}
#topvoicelist dl dd{
}
#topvoicelist dl dt h3{
  writing-mode: vertical-rl; /* 縦書き（右から左） */
  -ms-writing-mode: tb-rl; /* IE11用 */
  
	font-family: source-han-sans-japanese, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 36px;
	line-height: 180%;
	padding: 40px 0 0 0;
}
/**/
#topvoicelist dl dd ul{
	margin: 0;
	padding: 0;
	width: 100%;
}
#topvoicelist dl dd ul li{
	margin: 0;
	padding: 40px 0;
	list-style: none;
	border-bottom: 1px dashed #d4d4d4;
}
#topvoicelist dl dd ul li:last-child{
	border: none;
}
#topvoicelist dl dd table{
	width: 100%;
}
#topvoicelist dl dd table th{
	vertical-align: top;
	padding: 0 15px 0 0;
	width: 170px;
}
#topvoicelist dl dd table th img{
	width: 150px;
	height: 150px;
	border-radius: 30px;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
}
#topvoicelist dl dd table td{

}
#topvoicelist dl dd table td h4{
	margin: 0;
	padding: 10px 0;
	font-size: 16px;
}
#topvoicelist dl dd table td p.star{
	margin: 0;
	padding: 0;
	color: orange;
}
#topvoicelist dl dd table td p.coment{
	margin: 0;
	padding: 0;
}
#topvoicelist dl dd table td p.name{
	margin: 0;
	padding: 20px 0 0 0;
	font-size: 12px;
}
/*---------*/
#top_aboutus{
	overflow: hidden;
	clear: both;
	width: 100%;
	height: 1200px;
	margin: 200px 0 200px 0;
}
#top_aboutus div#con{
	background-color: #ebedf0;
	width: 87%;
	float: right;
	border-radius: 10px 0 0 10px;
	position: relative;
	padding-bottom: 100px;
}
#con_txt{
	margin: 8%;
}
#con_txt h4{
	font-family: "brother-1816", sans-serif;
	font-weight: 400;
    font-size: 30px;
    letter-spacing: 3px;
}
#con_txt h4 span{
	font-family: Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-size: 14px;
    letter-spacing: 0;
	font-weight: bold;
	font-style: normal;
	display: block;
	margin: auto;
	padding: 20px 0 0 0;
	color: #a38f86;
}
#con_txt h5{
	font-family: source-han-sans-japanese, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 30px;
	line-height: 180%;
	margin: 0 0 30px 0;
}
#con_txt p{
	line-height: 240%;
}
#top_aboutus div#con ol,
#top_aboutus div#con ol li{
	list-style: none;
	margin: 0;
	padding: 0;
}
#top_aboutus div#con ol li{
	position: absolute;
}
#top_aboutus div#con ol li img{
	width: 100%;
	height: auto;
}
#top_aboutus div#con ol li:nth-child(1){
	top:100px;
	left: 700px;
	width: 500px;
}
#top_aboutus div#con ol li:nth-child(2){
	top:500px;
	left: 680px;
	width: 300px;
}
#top_aboutus div#con ol li:nth-child(3){
	top:550px;
	left: 950px;
	width: 400px;
}
#top_aboutus div#con ol li:nth-child(4){
	top:1020px;
	left: 700px;
	width: 300px;
}
/*logo*/
#top_aboutus div#con ol li:nth-child(5){
	top:50px;
	left: 1100px;
	width: 150px;
}
#top_aboutus div#con ol li:nth-child(6){
	top:200px;
	right: -150px;
	width: 300px;
}
#top_aboutus div#con ol li:nth-child(7){
	top:800px;
	left: -500px;
	width: 600px;
	  opacity: 0.5; /* 透明度50% */
  filter: blur(5px); /* 5pxのぼかし */
}

/**/
#top_combox{
	display: table;
	width: 85%;
	margin: auto;
}
#top_combox dl{
	display: table-row;
}
#top_combox dl dt{
	display: table-cell;
	vertical-align: top;
	text-align: left;
	width: 50%;
	padding: 10px 0;
}
#top_combox dl dt img{
	width: 95%;
	height: auto;
	border-radius: 5px;
}
/**/
#top_combox dl dd{

}
#top_combox dl dd table{

}
#top_combox dl dd table th{
	text-align: left;
	font-weight: normal;
	color: gray;
	padding: 10px;
}
#top_combox dl dd table td{
	padding: 10px;
}
/**/
#f_contact{
	display: table;
	margin: 100px auto;
	width: 850px;
    clear: both;
}
#f_contact dl dt,
#f_contact dl dd{
	display: table-cell;
	vertical-align: top;
	text-align: left;
}
#f_contact dl dt {
	width: 35%;
	text-align: center;
	position: relative;
}
#f_contact dl dt::after{
	content: "";
	display: block;
	background-color: #ddd;
	width: 1px;
	height: 60px;
	top: 30px;
	right: 35px;
	position: absolute;
}
#f_contact dl dt p{
	font-family: "brother-1816", sans-serif;
	font-weight: 400;
    font-size: 30px;
    letter-spacing: 3px;
}
#f_contact dl dt p span{
	font-size: 14px;
	letter-spacing: 0;
}
/**/
#f_contact dl dd{

}
#f_contact dl dd p{
	line-height: 220%;
	float: left;
}
#f_contact dl dd p img{
	width: 20px;
	margin: 0 5px 0 0;
}
#f_contact dl dd p span{
	font-family: "brother-1816", sans-serif;
	font-weight: 400;
    font-size: 36px;
}
#f_contact dl dd div{
	float: right;
	margin: 0px 0 0 0;
}
#f_contact dl dd div a{
	display: block;
	color: white;
	text-align: center;
	text-decoration: none;
	padding: 20px 40px;
	border-radius: 50px;
}
#f_contact dl dd div a img{
	width: 20px;
	margin: 0px 10px -5px 0;
}
#go2 {
	position:fixed;
	right: 10px;
	bottom:10px;
	line-height:130%;
	z-index:999;
}
#go2 a{
	text-decoration:none;
	display:block;
	background-color:white;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
    padding: 25px;
    opacity: 0.7;
    border: 1px solid #ddd;
}
#go2 a:hover{
	background-color:#f7f7f7;
}
#go2 a img{
    width: 25px;
    height: 25px;
}

/**/
#top_txt01{
	position: relative;
	width: 1000px;
  height: 600px;
	margin: 0 auto;
  padding: 200px 0;
  z-index: 5;
}
#top_txt01 h2{
	font-family: source-han-sans-japanese, sans-serif;
	font-weight: 400;
	font-style: normal;
	font-size: 36px;
	line-height: 180%;
}
#top_txt01 p{
	font-size: 16px;
	line-height: 220%;
  z-index: 5;
  position: relative;
}
#top_txt01 img{
	width: 100%;
	height: auto;
}
#top_txt01 ul{

}
#top_txt01 ul li{
	position: absolute;
	list-style: none;
}
#top_txt01 ul li:nth-child(1) {
	width: 300px;
	top: 200px;
	right: 100px;
  z-index: 5;
}
#top_txt01 ul li:nth-child(2) {
	width: 300px;
	top: 300px;
	right: -130px;
  z-index: 5;
}
#top_txt01 ul li:nth-child(3) {
	width: 250px;
	top: 500px;
	right: 100px;
  z-index: 5;
}
#top_txt01 div#beta{
	position: absolute;
	background-color: white;
	width: 500px;
	height: 500px;
	top: 400px;
	left: 200px;
  z-index: 1;
}
/**/

  .menu-swiper-section {
  padding-left: 0 !important;
}

.swiper-slide h3,
.swiper-slide p {

  width: 70%;
 margin: auto;
}

/*swiper-----------------------*/
.menu-swiper-section {
  padding: 100px 0 0px 5%;
}
.menuSwiper {
  width: 100%;
}
.menuSwiper .swiper-slide {
	background-color: white;
}
.menuSwiper .swiper-slide a {
  display: block;
  text-decoration: none;
  text-align: left;
  color: black;
}
.menuSwiper .swiper-slide img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.menuSwiper .swiper-slide img:hover {
  transform: scale(1.03);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}
.menuSwiper .swiper-slide p {
  font-size: 14px;
  margin: 12px 0 0 0;
}
/* Navigation arrows */
.menu-swiper-section {
  position: relative;
}
.menuSwiper-button-prev,
.menuSwiper-button-next {
  position: absolute;
  margin-top: -155px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, transform 0.3s ease;
}
.menuSwiper-button-prev:hover,
.menuSwiper-button-next:hover {
  background: #fff;
  transform: scale(1.1);
}
.menuSwiper-button-prev {
  left: 600px;
  top: 278px;
}
.menuSwiper-button-next {
  left: 520px;
  top: 278px;
}
.menuSwiper-button-prev::after,
.menuSwiper-button-next::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  border-top: 2px solid #333;
  border-right: 2px solid #333;
}
.menuSwiper-button-prev::after {
  transform: translate(-70%, -50%) rotate(45deg);
}
.menuSwiper-button-next::after {
  transform: translate(-30%, -50%) rotate(-135deg);
}
.menuSwiper-button-prev.swiper-button-disabled,
.menuSwiper-button-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
}
.menuSwiper-button-prev.swiper-button-disabled:hover,
.menuSwiper-button-next.swiper-button-disabled:hover {
  transform: none;
}
.menuSwiper h3{
	font-size: 17px;
	margin: 20px 0 0 0;
	padding: 0;
}

/**/
.menuSwiper-button-prev {
  left: 600px;
  top: 278px;
}
.menuSwiper-button-next {
  left: 520px;
  top: 278px;
}
.menuSwiper-button-prev,
.menuSwiper-button-next {
  position: absolute;
  margin-top: -155px;
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.9);
  border-radius: 50%;
  cursor: pointer;
  z-index: 10;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.15);
  transition: background 0.3s ease, transform 0.3s ease;
}
.morelink{
    text-align: center;
    clear: both;
    margin: 50px auto -50px auto;
}
.morelink a{
    display: block;
    background-color: white;
    padding: 10px 20px;
    border-radius: 100px;
    width: 150px;
    margin: auto;
    text-decoration: none;
    color: black;
    border: 1px solid rgba(0, 0, 0, 0.3);
    font-size: 13px;
}
.morelink a:hover{
    border: 1px solid rgba(0, 0, 0, 0.8);
}
/**/
.schoolriyu{
    margin-bottom: 50px !important;
}
.schoolriyu dl dt{
    line-height: 0;
    overflow: hidden;
}
.schoolriyu dl dd{
    background-color: #fbfaf9;
    padding: 130px 3% 130px 3%;
}
.sc_wbox{
    background-color: white;
    padding: 4% 6%;
    margin: 20px 0;
  border-radius: 5px;
}
/**/
.pptxt{
    max-width: 900px;
    margin: 30px auto -30px auto;
    background-color: #f7f7f7;
    padding: 20px 50px;
    text-align: left;
    font-size: 14px;
}
#contop{
    height: 100px;
    display: block;
    clear: both;
}