@charset "UTF-8";

html {
	width: 100%;
	height: initial;
	scroll-behavior: smooth;
    scroll-padding-top:145px;
	background-color: #fff;
}
body, input, select, textarea {
	color: #333;
	font-family: "Noto Sans JP", "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "メイリオ", meiryo, sans-serif;
	-webkit-text-size-adjust: 100%;
	font-size: 15px;
	line-height: 1.8;
	padding: 0;
	font-feature-settings: "palt";
	background-color: #fff;
}
@media screen and (max-width: 767px){
body, input, select, textarea {
	font-size: 3.6vw;
}
}
html {
    scroll-padding-top:30px;
}

/*--------------------------------
タブレット対応
--------------------------------*/

body {
	min-width: 1040px;
}
@media screen and (max-width: 767px){
body {
	min-width: initial;
}
}

/*--------------------------------
PC SP表示切り替え
--------------------------------*/
@media (max-width: 767px) {
.pc {
	display: none!important;
}
.sp {
	display: block!important;
}
}
@media (min-width: 768px) {
.pc {
	display: block!important;
}
.sp {
	display: none!important;
}
}

/*--------------------------------
PC SP消す　別部分
--------------------------------*/
@media (max-width: 767px) {
.sp_none{
	display: none!important;
}
}
@media (min-width: 768px) {
.pc_none{
	display: none!important;
}
}

/*--------------------------------
画像全般
--------------------------------*/
img {
	vertical-align: bottom;
}
@media (max-width: 767px) {
img {
	width: 100%;
	max-width: 100%;
    height: auto;
}
}

/*--------------------------------
リンク全般
--------------------------------*/
a {
	color: #575757;
	text-decoration: none;
	transition: .5s;
}
a:hover {
	opacity: 0.6;
}
@media (max-width: 767px) {
a:hover {
	opacity: 1;
}
}

/*--------------------------------
#リンク無効
--------------------------------*/
a.disabled{
    /*pointer-events: none;*/
}

/*--------------------------------
電話自動リンクPC無効
--------------------------------*/
@media (min-width: 768px) { 
a[href^="tel:"] {
	pointer-events: none;
}
}

/*--------------------------------
テキスト両端揃え設定
--------------------------------*/
p {
	text-align: justify;
	/*text-justify: inter-ideograph;*/
}


html {
	scroll-behavior: smooth;
}
 /*▼ スクロール時 高さを除く*/   
@media(min-width:767px){
html{
    scroll-padding-top: 60px;
}    
}   


/*--------------------------------
ヘッダー
--------------------------------*/
.header{
    width: 90%;
    margin: 10px auto 0;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    align-items: center;
    position: relative;
    padding-bottom: 5px;
    border-bottom: solid 1px #ccc;
}
.header .header_logo{
    width: 45vw;
    height: 12vw;
    font-size: 4vw;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    background-image: url("../img/top/logo.png");
    background-repeat: no-repeat;
    background-size: contain;
}
.header p{
    width: 86%;
    font-size: 2.4vw;
    line-height: 1.3;
    margin-bottom: 15px;
}
.header .btn_inquiry{
    font-size: 3.8vw;
    font-weight: 700;
    letter-spacing: 0.1em;
    display: inline-block;
    line-height: 1.5;
    padding: 1vw 4vw;
    cursor: pointer;
    color: #fff;
    background-color: #eb6100;
    border-radius: 10px;
}
@media(min-width:767px){
.header{
    width: 1000px;
    height: 100px;
    border: none;
}
.header .header_logo{
    width: 210px;
    height: 80px;
    font-size: 16px;
}
.header p{
    font-size: 12px;
    position: absolute;
    display: inline-block;
    text-align: right;
    top: 0;
    right: 0;
}
.header .btn_inquiry{
    font-size: 17px;
    padding: 10px 40px;
    margin-top: 12px;
}
}

/*--------------------------------
グローバルメニュー
--------------------------------*/
/*
メニュー全体囲み
--------------------------------*/
.gnav_sec{
	 width: 100%;
	 height: 48px;
	 padding: 0;
	 margin-top: 0;
	 position: fixed;
	 z-index: 100;
	 top: 0;
	 left: 0;
}
@media(min-width:767px){
.gnav_sec{
	 position: sticky;
}
}

/* ハンバーガーメニュー
--------------------------------*/
/* チェックボックスを非表示 */
.drawer_hidden {
  display: none;
}
/* ハンバーガー設置位置 */
.drawer_open {
	width: 48px;
	height: 48px;
	display: flex;
	justify-content: center;
	align-items: center;
	position: absolute;
	top: 5px;
	right: 5px;
	z-index: 100;
	cursor: pointer;
	border-radius: 8px;
    background-color: rgba(51,51,51,0.9);
}
/* ハンバーガーアイコン */
.drawer_open span,
.drawer_open span:before,
.drawer_open span:after {
  content: '';
  display: block;
  height: 2px;
  width: 26px;
  background: #fff;
  transition: 0.5s;
  position: absolute;
}
/* 三本線の位置調整 */
.drawer_open span:before {
  bottom: 8px;
}
.drawer_open span:after {
  top: 8px;
}
/* アイコン×回転 */
#drawer_input:checked ~ .drawer_open span::before {
  bottom: 0;
  transform: rotate(45deg);
	background: #aaa;
}
#drawer_input:checked ~ .drawer_open span::after {
  top: 0;
  transform: rotate(-45deg);
	background: #aaa;
}
#drawer_input:checked ~ .drawer_open{
	background: #fff;
	background-position: center bottom 5px;
        mix-blend-mode: normal;
}
/* 中央線を透明 */
#drawer_input:checked ~ .drawer_open span {
  background: rgba(255, 255, 255, 0);
}

/* ハンバーガーメニュー開いた画面*/
.nav_content {
	width: 100%;
	height: 100vh;/* メニューの高さ */
	position: fixed;
	top: -120%;
	left: 0; /* メニューを画面の外に飛ばす */
	z-index: 99;
	background: rgba( 51, 51, 51, 0.7);;
	transition: .4s;
	text-align: center;
	padding-top: 9vh;
    margin-top: 0;
	overflow: hidden;
}
/* PC時*/
@media(min-width:767px){
.nav_content {
	width: 1000px;
	height: 48px;
    margin: 0 auto;
    padding: 0;
	position: relative;
	top: auto;
	left: auto;
	background: none;
	overflow: visible;
}
}
/* メニューのスタイル */
.nav_list {
	list-style: none;
	width: 90%;
	margin: 0 5%;
}
.nav_list > li{
	padding: 0.4em 0;
	position: relative;
}
.nav_list li a{
    font-size: 5vw;
    font-weight: 500;
	display: block;
    color: #fff;
    text-decoration: none;
}
.nav_list li ul{
	padding-top: 0.3em;
}
.nav_list li li{
	padding: 0.3em 0;
    line-height: 1.4;
}
.nav_list li li a{
    font-size: 4vw;
    font-weight: bold;
	display: block;
    color: #fff;
}
    
/* メニュー表示 */
#drawer_input:checked ~ .nav_content {
  top: 0;/* メニューを画面に入れる 下の位置 */
}
/* ハンバーガーメニューPC時非表示 */
@media(min-width:767px){
.drawer_open {
  display: none;
}
}

/* PC時 ドロップメニュー */
@media(min-width:767px){
.nav_content {
    width: 100%;
    background-color: rgba( 0, 0, 0, 0.7);
}
.nav_content .nav_list {
    display: flex;
    height: 48px;
    margin: 0 auto;
    padding: 0;
    max-width: 1000px;
}
.nav_content .nav_list > li {/*幅25%*/
    width: 25%;
    font-feature-settings: "palt";
}
.nav_content .nav_list li {
    list-style: none;
    position: relative;
    padding: 0;
    margin: 0;
}
.nav_content .nav_list li a {
    font-size: 15px;
    color: #fff;
    display: block;
    line-height: 48px;
    text-align: center;
    text-decoration: none;
    width: 100%;
    padding: 0!important;
    margin: 0!important;
}
/*子階層*/
.nav_content .nav_list li ul {
    margin: 0;
    padding: 0;
}
.nav_content .nav_list li li {
    height: 0;
    overflow: hidden;
    transition: .5s;
    padding: 0;
}
.nav_content .nav_list li li a {
    font-weight: normal;
    height: 45px;
    line-height: 45px;
    background-color: rgba( 0, 0, 0, 0.6);
}
.nav_content .nav_list li:hover > ul > li {
    height: 45px;
    overflow: visible;
}
.nav_content .a_events_none{
    pointer-events: none;
}
}    


 /*--------------------------------
インスタバナー
--------------------------------*/
.btn_insta{
	position:fixed;
	z-index:100;
	left:auto;
	bottom:20px;
	background-color: #444;
	line-height: 1.3;
	background-image: url("../img/top/Instagram.png");
	background-repeat: no-repeat;
	background-size: 30px;
	background-position: 10px center;
	border-radius: 0 10px 10px 0;
	box-shadow:1px 1px 5px #aaa;
}
.btn_insta a{
	font-size: 12px;
	color: #fff;
	display: block;
	padding: 12px 12px 12px 50px;
}

@media (min-width: 768px) {
.btn_insta{
	position:fixed;
	z-index:100;
	right:0;
	bottom:140px;
	border-radius: 10px 0 0 10px;
}
.btn_insta a{
	font-size: 16px;
}
}


 /*--------------------------------
メインビジュアル
--------------------------------*/   
.mv{
    width: 100%;
    text-align: center;
    margin: 20px auto 40px;
}
.mv img{
    width: 100%;
}

/*@media (min-width: 768px) {
.mv{
    width: 1000px;
}
}*/ 

 /*--------------------------------
コンテンツ全体囲み
--------------------------------*/   
.contents_wrap{
    width: 90%;
    margin: 30px auto;
}
@media (min-width: 768px) {
.contents_wrap{
    width: 1000px;
}
}    

 /*--------------------------------
スーツで成人式、婚活　囲み
--------------------------------*/   
@media (min-width: 768px) {
.info_wrap{
    display: flex;
    justify-content: space-between;
}
}

 /*--------------------------------
スーツで成人式
--------------------------------*/   
.suit_seijin{
    width: 100%;
    padding: 15px;
    border: solid 1px #ccc;
    border-radius: 10px;
    margin-bottom: 15px;
    background-image: url("../img/top/bnr_suit_sp.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top right;
}
.suit_seijin h2{
    font-size: 5vw;
    font-weight: 700;
    color: #001965;
}
.suit_seijin .tx{
    text-shadow: #fff 1px 1px 10px, #fff -1px 1px 10px,
    #fff 1px -1px 10px, #fff -1px -1px 10px;
    width: 48%;
}
.suit_seijin a{
    font-size: 4vw;
    color: #0000ff;
    display: inline-block;
    padding-bottom: 0.5em;
    text-decoration: underline;
}
@media (min-width: 768px) {
.suit_seijin{
    width: 490px;
    background-image: url("../img/top/bnr_suit.jpg");
}
.suit_seijin h2{
    font-size: 22px;
}
.suit_seijin .tx{
    width: 100%;
}
.suit_seijin a{
    font-size: 16px;
}  
} 


 /*--------------------------------
婚活写真
--------------------------------*/   
.konkatsu{
    width: 100%;
    padding: 15px;
    border: solid 1px #ccc;
    border-radius: 10px;
    margin-bottom: 15px;
    background-image: url("../img/top/bnr_konkatsu_sp.jpg");
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top right;
}
.konkatsu h2{
    font-size: 5vw;
    font-weight: 700;
    color: #98004C;
     line-height: 1.1;
    margin-bottom: 0.4em;
}
.konkatsu h2 span{
    font-size: 3vw;
}
.konkatsu .tx{
    text-shadow: #fff 1px 1px 10px, #fff -1px 1px 10px,
    #fff 1px -1px 10px, #fff -1px -1px 10px;
    width: 48%;
}
.konkatsu a{
    font-size: 4vw;
    color: #0000ff;
    display: inline-block;
    padding-bottom: 0.5em;
    text-decoration: underline;
}
@media (min-width: 768px) {
.konkatsu{
    width: 490px;
    background-image: url("../img/top/bnr_konkatsu.jpg");
}
.konkatsu h2{
    font-size: 22px;
}
.konkatsu h2 span{
    font-size: 16px;
}
.konkatsu .tx{
    width: 100%;
}
.konkatsu a{
    font-size: 16px;
}  
} 



 /*--------------------------------
お知らせ
--------------------------------*/   
.top_guide{
    width: 100%;
    padding: 15px;
    border: solid 1px #ccc;
    border-radius: 10px;
}
.top_guide h2{
    font-size: 4vw;
    font-weight: 700;
}
.top_guide img{
    float: right;
    margin-bottom: 10px;
    margin-left: 10px;
    width: 30%;
}
.top_guide a{
    font-size: 4vw;
    color: #0000ff;
    display: inline-block;
    padding-bottom: 0.5em;
    text-decoration: underline;
}
@media (min-width: 768px) {
.top_guide{
    width: 1000px;
}
.top_guide h2{
    font-size: 18px;
}
.top_guide img{
    width: 280px;
    height: auto;
}
.top_guide a{
    font-size: 16px;
}  
} 

 /*--------------------------------
ブライダル砂岡は、群馬県伊勢崎市にある写真スタジオです
全体囲み
--------------------------------*/   
.top_middle_wrap{
    width: 100%;
    margin: 30px 0;
}
@media (min-width: 768px) {
.top_middle_wrap{
    display: flex;
    justify-content: space-between;
}
}   

/* 左文章 */ 
.top_infomation{
    width: 100%;
}
.top_infomation span{ 
    font-size: 4vw;
    font-weight: 700;
}
.top_infomation .img_facade{
    float: right;
    margin-left: 10px;
     width: 50%;
}
.top_infomation .img_psms{
    width: 30%;
    margin-top: 20px;
}
@media (min-width: 768px) {
.top_infomation{
    width: 650px;
}
.top_infomation span{ 
    font-size: 17px;
}
.top_infomation .img_facade{
    width: 197px;
}
.top_infomation .img_psms{
    margin-top: 40px;
     width: 120px;
}
}  

/* 右バナー */ 
.top_banner{
    width: 100%;
    margin-top: 20px;
}
.top_banner li{
    margin-bottom: 15px;
    border: solid 1px #ccc;
}
@media (min-width: 768px) {
.top_banner{
    width: 325px;
    margin-top: 0;
}
.top_banner li{
    width: 100%;
}
}
    

 /*--------------------------------
H2 見出し共通
--------------------------------*/
.title_h2{
    font-size: 5vw;
    font-weight: 500;
    letter-spacing: 0.05em;
    line-height: 1;
    color: #fff;
    padding: 0.75em;
    background:linear-gradient(to right, #945f42 60%, #fff);
    position: relative;
}
.title_h2 span{
    font-size: 4vw;
    color: #945f42;
    position: absolute;
    top: 40%;
    right: 1em;
    letter-spacing: 0;
    font-family: 'Pinyon Script', cursive;
}
@media (min-width: 768px) {
.title_h2{
    font-size: 22px;
}
.title_h2 span{
    font-size: 18px;
}
}


 /*--------------------------------
テキスト共通
--------------------------------*/  
.tx_common{
    margin: 20px 0;
}


 /*--------------------------------
各ページ写真リスト
--------------------------------*/  
.photo_list{
    display: flex;
    justify-content: space-between;
    margin: 20px 0 30px;
}
.photo_list li{
    width: calc(50% - 8px);
    margin-right: 16px;
}
.photo_list li.single{
    width: 100%;
}
.photo_list li:last-child{
    margin-right: 0;
}
.photo_list .p_cap{
    display: block;
    font-size: 3.2vw;
    line-height: 1.5;
    margin-top: 10px;
}
@media (min-width: 768px) {
.photo_list{
    justify-content: flex-start;
    margin: 20px 0 40px;
}
.photo_list li{
    width: auto;
    margin-right: 30px;
}
.photo_list .p_cap{
    font-size: 14px;
}
.photo_list li.single{
    width: inherit;
}
}


 /*--------------------------------
見出し H3
--------------------------------*/  
.head_h3 {
	font-size: 4.6vw;
    font-weight: 700;
	border-bottom: solid 1px #999;
	text-align: left;
	padding-bottom: 5px;
    margin: 50px 0 0;
    line-height: 1.4;
        
}
@media (min-width: 768px) {
.head_h3 {
	font-size: 22px;
}
}
 /*--------------------------------
見出し H3 お問合せ用
--------------------------------*/  
.head_h3_contact {
	font-size: 4.6vw;
    font-weight: 700;
	border-bottom: solid 1px #999;
	text-align: left;
	padding-bottom: 5px;
    margin: 20px 0 0
}
@media (min-width: 768px) {
.head_h3_contact {
	font-size: 22px;
}
}

 /*--------------------------------
価格表
--------------------------------*/  
 /* 見出し */  
.head_price {
	font-size: 4vw;
	color: #FFF;
	background-color: #633;
	padding: 10px;
    margin-top: 20px;
	border-radius: 5px;
    display: inline-block;
    line-height: 1;
}
 /* テーブル */  
.table_price {
    font-size: 3.2vw;
    width: 100%;
    margin: 20px 0 10px;
	border: 1px solid #666;
	border-collapse: collapse;
	border-spacing: 0;
	line-height: 1.4;
}
.table_price caption {
     font-size: 3.6vw;
    font-weight: 700;
    margin-bottom: 7px;
}
.table_price th {
	padding: 12px;
	border: #666 solid;
	border-width: 0 0 1px 1px;
	background: #F5F5F5;
    font-weight: normal;
}
.table_price td {
	padding: 12px;
	border: 1px #666 solid;
	border-width: 0 0 1px 1px;
}
@media (min-width: 768px) {
.head_price {
	font-size: 16px;
}
.table_price {
    font-size: 15px;
    width: auto;
}
.table_price caption {
     font-size: 15px;
}
}

/*---------------------------------
下線リンク
--------------------------------*/
.uline_link{
    font-size: 4vw;
    color: #0000ff;
    display: inline-block;
    padding-bottom: 0.5em;
    text-decoration: underline;
}
@media (min-width: 768px) {
.uline_link{
    font-size: 16px;
}  
} 


/*---------------------------------
マージン調整
--------------------------------*/
.mt10{
    margin-top: 10px;
}
.mt20{
    margin-top: 20px;
}
.mt50{
    margin-top: 50px;
}
.mt60{
    margin-top: 60px;
}

/*---------------------------------
ヴィラ・デ・マリアージュロゴ
--------------------------------*/
.vm_logo{
    width: 50vw;
}
@media (min-width: 768px) {
.vm_logo{
    width: inherit;
}
}


/*---------------------------------
写真　右寄せ
--------------------------------*/
.f_right{
    float: right;
    margin-bottom: 10px;
    margin-left: 20px;
    width: 35vw;
    height: auto;
}
@media (min-width: 768px) {
.f_right{
    width: inherit;
}
}
/*---------------------------------
写真　左寄せ
--------------------------------*/
.f_left{
    float: left;
    margin-bottom: 10px;
    margin-right: 20px;
    width: 30vw;
    height: auto;
}
@media (min-width: 768px) {
.f_left{
    width: inherit;
}
}


/*---------------------------------
スタジオ写真
--------------------------------*/
.studio_img{
    text-align: center;
}
.studio_img img{
    width: 100%;
    height: auto;
}
.studio_img p{
    text-align: center;
    margin-top: 5px;
}
@media (min-width: 768px) {
.studio_img img{
    width: 450px;
    height: auto;
}
}
/*---------------------------------
沿革
--------------------------------*/
.table_history{
    border-collapse: collapse;
    border-top: solid 1px #ccc;
}
.table_history th {
	padding: 10px;
    border-bottom: solid 1px #ccc;
    background: #F5F5F5;
}
.table_history td {
	padding: 10px;
    border-bottom: solid 1px #ccc;
}

/*---------------------------------
電話番号
--------------------------------*/
.phone_number{
    font-size: 5vw;
    font-weight: 500;
    color: #0000ff;
    letter-spacing: 0.05em;
}
@media (min-width: 768px) {
.phone_number{
    font-size: 22px;
    color: #333;
}  
} 

/*---------------------------------
サイトマップ
--------------------------------*/
.sitemap_wrap{
    margin-top: 20px;
}
.sitemap_list{
    width: 100%;
}
.sitemap_list li a{
    width: 100%;
    padding: 8px;
    display: inline-block;
    border-bottom: dotted 1px #ccc;
}
.sitemap_list li a:hover{
    color: #fff;
    background-color: #999;
}
@media (min-width: 768px) {
.sitemap_wrap{
    display: flex;
    justify-content: flex-start;
}
.sitemap_list{
    width: 300px;
}
.sitemap_list li a{
    width: 200px;
    padding: 8px;
    display: inline-block;
    border-bottom: dotted 1px #ccc;
}
}

/*---------------------------------
成人式　ボタン
--------------------------------*/
.btn_seijin {
    font-size: 5vw;
    color: #fff;
    letter-spacing: 0.1em;
    padding: 0.7em;
    margin: 0 0 20px;
    display: inline-block;
    border-radius: 10px;
    line-height: 1;
    background: #f1e767;
    background: linear-gradient(to bottom, #f1e767 0%, #feb645 100%);
    text-shadow: 0 0 5px #333;
}
.btn_seijin:hover {
    background: linear-gradient(to top, #f1e767 0%, #feb645 100%);
}
@media (min-width: 768px) {
.btn_seijin {
    font-size: 20px;
}
}


/*---------------------------------
クリアフィックス
--------------------------------*/
.clearfix::after{
  content: "";
  display: block;
  clear: both;
}

/*---------------------------------
ドロップシャドウ
--------------------------------*/
.p_shadow {
	box-shadow: 3px 3px 5px #aaa;
}

 /*--------------------------------
トップに戻る
--------------------------------*/   
#page_top{
    width: 40px;
    height: 40px;
    display: block;
    position: fixed;
    right: 5vw;
    bottom: 4vh;
    background-color: #666;
    border-radius: 20px;
    box-shadow: 0 0 6px rgba(0,0,0,0.5);
    z-index: 100;
  }
#page_top a{
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    text-decoration: none;
}
#page_top a::after {
	border-right: 2px solid #fff;
	border-top: 2px solid #fff;
	content: "";
	display: block;
	height: 10px;
	position: absolute;
	left: 50%;
    top: 55%;
	transform: translate(-50%, -50%) rotate(-45deg); width: 10px;
}

 /*--------------------------------
フッター
--------------------------------*/   
footer{
    width: 100%;
    text-align: center;
    padding-top: 10px;
}
footer .inner .tx_info{
    line-height: 1.5;
    text-align: center;
}
footer .inner .tx_info span{
    font-weight: 700;
}
footer .inner ul{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 20px;
}
footer .inner ul li{
    border-right: solid 1px #999;
}
footer .inner ul li:last-child{
    border-right: none;
}
footer .inner ul li a{
    padding: 5px 10px;
}
footer small{
    width: 100%;
   margin-top: 20px;
    display: block;
    background-color: rgba( 0, 0, 0, 0.7);
    line-height: 3;
    color: #fff;
}
@media (min-width: 768px) {
footer{
    
}
footer .inner{
    width: 1000px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    text-align: left;
}
footer .inner .tx_info{
    text-align: left;
}
footer .inner ul{
    justify-content: flex-end;
}
}

/* ===== TT4対策：背景（グレー帯）だけ全幅にする ===== */
@media (min-width: 767px) {

  /* .gnav_sec自体は通常幅のまま（中身のセンターを崩さない） */
  .gnav_sec{
    position: sticky;
    top: 0;
    left: auto;
    width: 100%;
    height: 48px;
    z-index: 100;
  }

  /* 背景だけ viewport 全幅に伸ばす（ズレない） */
  .gnav_sec::before{
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100vw;
    height: 48px;
    background: rgba(0,0,0,0.7);
    z-index: -1;
  }

  /* 既存の背景は不要（帯は::beforeが担当） */
  .nav_content{
    background: transparent !important;
  }

  /* メニュー本体は中央固定 */
  .nav_content .nav_list{
    max-width: 1000px;
    width: 100%;
    margin: 0 auto;
  }
}
