#navwrap,
.pc{
    display: none !important;
}
/**/
.sm_menu {
	z-index: 999;
	position: fixed;
	overflow: auto;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	padding: 6% 10%;
	margin: 0;
	box-sizing: border-box;
	/* 背景色が無いと展開時に背後（フッター・Hero等）が透けて重なって見えるため、
	   不透明の黒でオーバーレイを覆う。白文字メニューに合わせた配色。 */
	background: #000;
	transform: translateX(-100%);
	transition: transform .5s cubic-bezier(0.33, 1.01, 0.33, 0.97);
}
.sm_menu h2,
.sm_menu a {
	color: white;
}
.sm_menu h2 {
	text-align: center;
}
.sm_menu ul {
	padding: 0;
	width: 90%;
	margin: 0 auto;
    clear: both;
}
.sm_menu ul li {
    margin: 0px 0 0px 0;
    padding: 5px 0px;
	font-size: 13px;
    position: relative;
    clear: both;
    list-style: none;
    text-align: center;
}
.sm_menu ul li a {
    display: block;
    margin: 0;
    padding: 7px 0;
    background-color: gray;
    width: 100%;
	border-radius: 50px;
    text-decoration: none;
}
.sm_menu ul li img{
    width: 15px;
    height: auto;
    margin: 5px 5px -3px 0;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
.sm_menu ul li span{
    padding: 5px 0 0 0;
    text-align: left;
}
.sm_menu ul li#sm_first{
    line-height: 160%;
}
.sm_menu ul li#sm_first i{
        top: 26px;
}
    .sm_menu li a i.fa-angle-right{
        position: absolute;
        top: 20px;
        right: 0;
    }
    .sm_menu li a i.fa-angle-right{
        
    }
/*------------*/
.sm_menu ol{
	padding: 0;
	width: 100%;
	margin: 0px auto auto auto;
}
.sm_menu ol li{
	font-size: .9em;
    clear: both;
    list-style: none;
}
.sm_menu ol li a{
	display: block;
	padding: 7px 0 5px 0;
    margin: 0;
    border-top: 1px solid gray;
	text-decoration: inherit;
	transition: background .5s;
}
#sm_menu_banars{
    margin: 20px auto;
}
#sm_menu_banars a{
    display: block;
    width: 33.3%;
    float: left;
    text-align: center;
}
#sm_menu_banars a img{
    width: 95%;
    height: auto;
    margin: auto;
	border-radius: 5px;
}
#sm_menu_banars a p{
    margin: -5px auto 10px auto;
    padding: 0;
    font-size: 10px;
}
/*------------*/
#navTgl:checked ~ .sm_menu {
	transform: none;
}
    #hung_menu{
        position: fixed;
        top: 33px;
        left: 15px;
        font-size: 9px;
        color: #000;
        z-index: 50;
    }
/*------------------------*/

#navTgl {
	display: none;
}
/* ハンバーガーメニューのトグル（#navTgl 用の open/close ラベル）専用。
   ※ 以前は `label` 全体に効いており、フォームのラベル（同意チェックボックス等）まで
     画面左上に position:fixed で飛ばして消していたため、for="navTgl" に限定した。 */
label[for="navTgl"] {
	cursor: pointer;
	position: fixed;
    /* right: 0; */
    left: 0;
	/* ※ top はここで指定しない。for="navTgl" は .open/.close(クラス)より詳細度が高く、
	   top を書くと .open/.close 側の位置指定を上書きしてしまうため（過去にハンバーガーが
	   top:0 に固定され MENU との間隔が空く不具合の原因になった）。top は .open/.close で個別指定。 */
}
.open {
	top: 10px;
	z-index: 9998;
	width: 60px;
	height: 48px;
	transition: background .5s, transform .5s cubic-bezier(0.76, 0.52, 0.29, 1.25);
}
.open::before,
.open::after {
	content: "";
}
.open span,
.open::before,
.open::after {
	content: "";
	position: absolute;
	top: calc(50% - 1px);
	left: 30%;
	width: 40%;
	border-bottom: 2px solid #000;
	transition: transform .5s cubic-bezier(0.76, 0.52, 0.29, 1.25);
}
.open::before {
	transform: translateY(-8px);
}
.open::after {
	transform: translateY(8px);
}
.close {
	top: 0;
	z-index: 99;
	width: 100%;
	height: 100%;
	pointer-events: none;
	transition: background .5s;
}
.close span{
}
#navTgl:checked + .open span {
	transform: scaleX(0);
}
#navTgl:checked + .open::before {
	transform: rotate(45deg);
	border-bottom: 2px solid white;
}
#navTgl:checked + .open::after {
	transform: rotate(-45deg);
	border-bottom: 2px solid white;
}
#navTgl:checked ~ .close {
	background: rgba(0,0,0,.9);
}
/**/
#headh1{
	font-weight: normal;
	transition: color 0.4s ease;
    margin: auto;
    text-align: center;
    width: 100%;
    padding-bottom: 10px;
}
#headh1 img,
#headh1 svg {
    width: 60%;
    height: auto;
    margin: 20px auto auto auto;
    display: block;
}
#headh1 span{
    display: block;
    clear: both;
    margin: -20px auto auto auto;
    text-align: center;
    font-size: 12px;
}

/* ===== ヒーローエリア（table レイアウト） ===== */
#topimgwrap { display: block; }
#topimgwrap{
    width: 100%;
    height: auto;
}
#topimgwrap,
#topimgwrap dl,
#topimgwrap dl dt,
#topimgwrap dl dd{
    display: block;
    clear: both;
    margin: 0;
    padding: 0;
}
#topimgwrap dl dt div{
  margin: 28px 0 0 5%;
  position: relative;
  z-index: 20;
  width: 90%;
}
#topimgwrap dl dt div h2{
    font-family: "shippori-mincho", sans-serif;
    font-weight: 400;
    font-style: normal;
    font-size: 30px;
    line-height: 150%;
    color: black;
}
#topimgwrap dl dt div p{
}
/* ===== dd: Swiperの親 ===== */
#topimgwrap dl dt {
    flex-shrink: 0;  /* dtが縮まないよう固定 */
}

#topimgwrap dl dd{
    position: relative;
    overflow: hidden;
    flex: 0 0 auto;  /* 画像の高さ分だけ確保（伸縮させない） */
    min-height: 0;   /* flexboxのはみ出し防止 */
}

/* ===== Swiper: 通常フローで画像比率の高さを確保（fadeはスライドabsoluteのため比率必須） ===== */
.mySwiper{
    position: relative;
    width: 100%;
    aspect-ratio: 1000 / 1184;  /* トップ画像の縦横比 */
    height: auto;
}
.mySwiper .swiper-slide{
    overflow: hidden;          /* zoom-outのはみ出し防止 */
}
.mySwiper .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
    /*filter: brightness(90%);*/
    will-change: transform;
}

/* ===== 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;
}

#topimgwrap dl {
    display: flex;
    flex-direction: column-reverse;
    height: auto;
}
#baseimg{
    clear: both;
    margin: 0px 0 0 0;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}
#baseimg img{
    width: 100%;
    height: auto;
    order: 2;
    clear: both;
}
#baseimg div{
    order: 1;
    width: 100%;
    text-align: center;
}
#baseimg div h2 {
    font-family: "Outfit", sans-serif;
    font-weight: 200;
    font-size: 15px;
    margin: 0;
    padding: 0;
    color: gray;
    display: flex;
    align-items: center;
    gap: 10px;
}
#baseimg div h2::before,
#baseimg div h2::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ddd;
}
#baseimg div h3{
    font-size: 20px;
	font-family: Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: normal;
    margin: 10px 0 5px 0;
    padding: 0;
}
#baseimg div p{
    font-size: 13px;
    letter-spacing: 5px;
    margin: 0 0 10px 0;
    padding: 0;
}
#baseimg_btm{
    clear: both;
}
/**/

#base_txt{
    clear: both;
    margin: 0px 0 0 0;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}
#base_txt div{
    order: 1;
    width: 100%;
    text-align: center;
}
#base_txt div h2 {
    font-family: "Outfit", sans-serif;
    font-weight: 200;
    font-size: 15px;
    margin: 0;
    padding: 0;
    color: gray;
    display: flex;
    align-items: center;
    gap: 10px;
}
#base_txt div h2::before,
#base_txt div h2::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ddd;
}
#base_txt div h3{
    font-size: 20px;
	font-family: Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: normal;
    margin: 10px 0 5px 0;
    padding: 0;
}
#base_txt div p{
    font-size: 13px;
    letter-spacing: 5px;
    margin: 0 0 10px 0;
    padding: 0;
}


/**/
.pricewrap,
.pricewrap dl,
.pricewrap dl dt,
.pricewrap dl dd{
    display: block;
    clear: both;
    margin: 0;
    padding: 0;
}
.pricewrap ul{
    margin: 0 auto;
    padding: 0;
    width: 90%;
}
.pricewrap ul li{
    display: table;
    margin: 0;
    padding: 0;
}
.pricewrap ul li span.leftimg{
    display: table-cell;
    vertical-align: top;
    text-align: left;
    width: 35%;
}
.pricewrap ul li img{
    width: 90%;
    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: 18px;
    font-style: normal;
}
.pricewrap ul li div p{
    margin-bottom: 20px;
    clear: both;
}
.pricewrap ul li div p b{
}
/**/
.pricewrap2{
    margin: auto;
    padding: 0;
    clear: both;
    width: 100%;
}
.pricewrap2 ul{
    margin: 0 auto;
    padding: 0;
    width: 100%;
}
.pricewrap2 ul li{
	margin: 0;
	padding: 0;
	list-style: none;
    clear: both;
	width: 100%;
    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;
}
/* price の出張撮影・学校撮影/卒業アルバム ブロック（PC は table-cell、SP は縦積み） */
.leftimgbox2{
    width: 88%;
    margin: auto;
    padding: 20px 0;
    border-top: 1px dashed gray;
    clear: both;
}
.leftimgbox2 dl{
    margin: 0;
}
.leftimgbox2 dl dt,
.leftimgbox2 dl dd{
    margin: 0;
    padding: 10px 0;
}
.leftimgbox2 dl dt img{
    width: 100%;
    height: auto;
    border-radius: 5px;
}
.leftimgbox2 dl dd h4{
    margin: 0 0 10px 0;
    padding: 0;
    font-size: 18px;
}

/*-------------*/
.flow_box{
    width: 80%;
    margin: auto;
}
.flow_box ol{
    margin: 0px auto;
    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;
}

/**/
.yoyakubox{
    text-align: center;
	clear: both;
	background-color: #fbfaf9;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
    margin: auto;
    padding: 20px 0;
}
.w_tel{
    background-color: white;
    padding: 20px 0 10px 0;
	border-radius: 50px;
	-moz-border-radius: 50px;
	-webkit-border-radius: 50px;
    width: 90%;
    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;
    display: block;
    clear: both;
}
.yoyaku_btn {
    margin: auto auto 30px auto;
    padding: 0;
    width: 90%;
}
.yoyaku_btn,
.yoyaku_btn dl,
.yoyaku_btn dl dt,
.yoyaku_btn dl dd{
    display: block;
    margin: 0 auto;
    padding: 0;
    clear: both;
}
.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;
    margin: 10px 0;
}

.yoyaku_btn img{
  margin: 5px 10px -3px 0;
}

/**/
.faqwrap{
    width: 90%;
    margin: auto;
}
.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.kanrenlist{
	margin: 0 3%;
	padding: 0;
}
ul.kanrenlist li{
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
	width: 50%;
}
/**/
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;
}
/**/
.hr1px_base{
  border: none;
  border-top: 1px solid #ddd;
  height: 0;
  margin: 50px 0;
  clear: both;
}

/**/
#f_contact,
#f_contact dl,
#f_contact dl dt,
#f_contact dl dd{
    display: block;
    clear: both;
    margin: 0;
    padding: 0;
    text-align: center;
}
#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{
    text-align: center;
}
#f_contact dl dd p{
	line-height: 220%;
    margin: auto;
}
#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{
    margin: 20px auto;
    width: 70%;
}
#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: 20px 0;
    margin: 50px 0 0 0;
}
footer img{
	width: 60%;
	height: auto;
}
footer p{
	margin: 30px auto;
}
#f_logo2 img{
	width: 300px;
}
address{
	color: black;
}
	.btncolor{	
		background-color: black;
		transition: background-color 0.3s ease;
	}
    


/**/
#tablink{
    text-align: center;
    clear: both;
    border-bottom: 1px solid #c8c8c8;
    display: block;
    height: 60px;
    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: flex; /* 1行/2行が混在するタブの高さを揃え、文字を上下中央に */
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 2.7em; /* 2行ぶん（line-height 1.35 × 2）確保して全タブ同じ高さに */
    padding: 7px;
    font-size: 12px;
    line-height: 1.35; /* body の 180% を継承すると2行時に行間が空きすぎるため詰める */
	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;
}
#tablink div dl dt span{
    display: none;
}

/* 衣裳ページの「＜無料＞七五三 / お宮参り」切替リンク。
   PC(pc.css #rentalink)のピル型デザインをスマホ幅向けに縮小して適用（未指定だと素の青リンクになる）。 */
#rentalink{
    display: table;
    text-align: center;
    margin: auto;
}
#rentalink dl dt{
    display: table-cell;
}
#rentalink dl dt a{
    display: block;
    margin: 20px 5px;
    border: 1px solid #c8c8c8;
    border-radius: 50px;
    padding: 8px 14px;
    text-decoration: none;
    font-size: 13px;
    background-color: #f7f7f7;
    color: black;
    white-space: nowrap;
}
#rentalink dl dt#fix a{
    background-color: white;
    font-weight: bold;
}

/* 着物料金表（costume-price）の料金テーブル。pc.css の .p_table は
   min-width:641px 側にしか無く、スマホだと素の詰まった表示になるため、
   スマホ用に枠線・パディング・偶数行の縞・幅100% を当てる。 */
.p_table{
    border-top: 1px solid #ddd;
    margin: 15px 0 0 0;
    width: 100%;
}
.p_table th{
    border-bottom: 1px solid #ddd;
    padding: 10px 6px 10px 2px;
    text-align: left;
    white-space: nowrap;
}
.p_table td{
    border-bottom: 1px solid #ddd;
    padding: 10px 14px 10px 0;
    white-space: nowrap;
}
.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;
}

/**/
.leftimgbox,
.leftimgbox dl dt,
.leftimgbox dl dd{
    clear: both;
    margin: 0 auto;
    padding: 0;
    display: block;
    width: 95%;
}
.leftimgbox dl dt img{
    width: 100%;
    height: auto;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
}
.leftimgbox dl dd h4{
    margin: 0;
    padding: 0;
    font-size: 18px;
}
/**/
.base_cen_txt{
    clear: both;
    width: 95%;
    margin: 25px auto;
    font-size: 110%;
    letter-spacing: 2px;
    line-height: 200%;
}
.base_cen_txt h2{
    font-size: 20px;
    text-align: center;
}
.beback{
	clear: both;
	background-color: #fbfaf9;
	padding: 30px 0 30px 0;
	margin: 30px 0 30px 0;
}

.toptitle_h2{
	font-family: "brother-1816", sans-serif;
font-weight: 400;
    font-size: 20px;
    letter-spacing: 3px;
    padding-bottom: 30px;
	clear: both;
    text-align: center;
}
.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;
}

#go2 {
	position:fixed;
	right: 5px;
	bottom:5px;
	line-height:130%;
	z-index:88;
}
#go2 a{
	text-decoration:none;
	display:block;
	background-color:white;
	border-radius: 10px;
	-moz-border-radius: 10px;
	-webkit-border-radius: 10px;
    padding: 15px;
    opacity: 0.7;
    border: 1px solid #ddd;
}
#go2 a:hover{
	background-color:#f7f7f7;
}
#go2 a img{
    width: 15px;
    height: 15px;
}
#top_txt01{
    display: none;
}

/**/

ul#topmenulist{
	margin: 0 3%;
	padding: 0;
}
ul#topmenulist li{
	margin: 0;
	padding: 0;
	list-style: none;
	float: left;
	width: 33.3%;
    font-size: 13px;
    letter-spacing: 0;
    line-height: 170%;
    height: 120px;
}
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;
}
/**/

/*----------*/
#topvoicelist,
#topvoicelist dl,
#topvoicelist dl dt,
#topvoicelist dl dd{
    display: block;
    clear: both;
    margin: 0;
    padding: 0;
}
#topvoicelist dl dt{
    display: none;
}
/**/
#topvoicelist dl dd ul{
	margin: 0 auto;
	padding: 0;
	width: 90%;
}
#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: 70px;
}
#topvoicelist dl dd table th img{
	width: 60px;
	height: 60px;
	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{
    clear: both;
    margin-bottom: 50px;
}
#top_aboutus div#con{
	background-color: #ebedf0;
	width: 100%;
    padding: 30px 0;
}
#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{
    display: none;
}

/**/
#top_combox,
#top_combox dl,
#top_combox dl dd,
#top_combox dl dt{
    display: block;
    clear: both;
    margin: auto;
    padding: 0;
	width: 95%;
}
#top_combox dl dt img{
	width: 100%;
	height: auto;
    margin: 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;
}
/**/

  .menu-swiper-section {
  padding-left: 0 !important;
}
.toptitle_h2{
  padding-left: 5% !important;
}


/*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 h3{
	font-size: 17px;
	margin: 20px 0 0 0;
	padding: 0;
}
.menu-swiper-section {
  overflow: hidden;  /* または overflow-x: clip; */
}
/* ===== Menu Swiper ナビゲーションボタン ===== */
.menu-swiper-section {
  position: relative;
  overflow: hidden;
}

.menuSwiper-button-prev,
.menuSwiper-button-next {
  position: absolute;
  top: 50%;          /* 縦中央 */
  transform: translateY(-50%);
  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 { left: 10px; }
.menuSwiper-button-next { right: 10px; }

.menuSwiper-button-prev:hover,
.menuSwiper-button-next:hover {
  background: #fff;
  transform: translateY(-50%) scale(1.1);   /* hoverでもtranslateY維持 */
}

.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(-30%, -50%) rotate(-135deg);  /* ← 左向き */
}
.menuSwiper-button-next::after {
  transform: translate(-70%, -50%) rotate(45deg);    /* ← 右向き */
}

.menuSwiper-button-prev.swiper-button-disabled,
.menuSwiper-button-next.swiper-button-disabled {
  opacity: 0.3;
  cursor: default;
  pointer-events: none;
}
/**/

#baseimg_full{
    clear: both;
    margin: 0px 0 0 0;
    padding: 0;
    position: relative;
    display: flex;
    flex-direction: column;
}
#baseimg_full img{
    width: 100%;
    height: auto;
    order: 2;
    clear: both;
}
#basebaseimg_full img div{
    order: 1;
    width: 100%;
    text-align: center;
}
#baseimg_full div h2 {
    font-family: "Outfit", sans-serif;
    font-weight: 200;
    font-size: 15px;
    margin: 0;
    padding: 0;
    color: gray;
    display: flex;
    align-items: center;
    gap: 10px;
    text-align: center;
}
#baseimg_full div h2::before,
#baseimg_full div h2::after {
    content: "";
    flex: 1;
    height: 1px;
    background: #ddd;
}
#baseimg_full div h3{
    font-size: 20px;
	font-family: Osaka, "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
    font-weight: normal;
    margin: 10px 0 5px 0;
    padding: 0;
    text-align: center;
}
#baseimg_full div p{
    font-size: 13px;
    letter-spacing: 5px;
    margin: 0 0 10px 0;
    padding: 0;
    text-align: center;
}
/**/
#studioacce,
#studioacce dl,
#studioacce dl dt,
#studioacce dl dd,
#studioacce dd table,
#studioacce dd table tbody,
#studioacce dd table tr,
#studioacce dd table th,
#studioacce dd table td{
    display: block;
    clear: both;
    margin: 0;
    padding: 0;
    font-weight: normal;
}
#studioacce iframe{
    width: 100% !important;
    height: 200px;
}
#studioacce dd table{
    width: 90% !important;
    margin: auto !important;
}
#studioacce dd table th {
    background-color: #f7f7f7;
    font-size: 12px;
}
#studioacce dd table td{
    padding: 5px 0 10px 0;
}
/**/
.pricetxt{
    width: 90%;
    margin: auto;
}
.pricetxt b{
    background-color: #fffde4;
}

/**/
.pptxt{
    background-color: #f7f7f7;
    padding: 10px 20px;
    text-align: left;
    font-size: 14px;
}
/* MORE》 リンク（PC (pc.css .morelink) と同デザイン） */
.morelink{
    text-align: center;
    clear: both;
    margin: 30px auto 0 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;
}

/* school の「続けられる撮影には、理由がある。」ブロック（SP は縦積みで画像を全幅に） */
.schoolriyu dl dt img{
    width: 100%;
    height: auto;
}
