@charset "UTF-8";
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
/  mixin                                                     */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
/  color                                                     */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~*/
a {
  transition: opacity 0.3s ease-out;
}
a:hover {
  opacity: 0.6;
}

/* ===========================================================/
/  初期設定                                                   
=============================================================*/
html {
	height: 100%;
	scroll-behavior: smooth;
	font-size: 62.5%;
}

body {
	height: 100%;
	background-color: #fff;
	color: #444444;
	font-family: "Noto Serif JP", serif;
	font-size: 1.6rem;
	font-weight: 400;
	line-height: 1.5;
	letter-spacing: 0.1em;
	-webkit-text-size-adjust: 100%;
	-webkit-font-smoothing: antialiased;
	overflow-wrap: break-word;
	word-wrap: break-word;
	line-break: normal;
	text-rendering: optimizeSpeed;
	overflow-x: hidden;
	box-sizing: border-box;
}
body.--js-open {
	overflow: hidden;
}

.body__inner {
	overflow-x: hidden;
	position: relative;
}

h1,
h2,
h3,
h4,
h5,
h6 {
	line-height: 1.5;
}

img {
	image-rendering: -webkit-optimize-contrast;
	width: 100%;
	height: 100%;
	vertical-align: bottom;
	object-fit: cover;
}

@media screen and (min-width: 1024.02px) {
	.no-pc {
		display: none !important;
	}
}

@media screen and (max-width: 1024px) {
	.no-tab {
		display: none !important;
	}
}

@media screen and (max-width: 768px) {
	.no-sp {
		display: none !important;
	}
}

.dib {
	display: inline-block;
}

@media screen and (min-width: 1024.02px) {
	a[href^="tel:"] {
		pointer-events: none;
	}
}

.form-reset {
	appearance: none;
	display: block;
	border: none;
	border-radius: 0;
	padding: 0;
	background: none;
	box-shadow: none;
}

/* ========================= /
/  z-index
/* =========================*/
.header {
	z-index: 9000;
}

.header__logo {
	position: relative;
	z-index: 2000;
}

.header__main {
	z-index: 7000;
}

.global-nav {
	position: relative;
	z-index: 5000;
}

.burger-btn {
	position: relative;
	z-index: 4000;
}

.burger-nav {
	position: relative;
	z-index: 3000;
}

/* ===========================================================/
/  ヘッダー                                                   
=============================================================*/
.header {
	width: 100%;
	height: 75px;
	background: #fff;
	position: fixed;
	top: 0;
	left: 0;
}
.header__inner, .header__main {
	height: 100%;
}
.header__main {
	padding-left: 16px;
	display: flex;
	align-items: center;
	justify-content: space-between;
}
.header__logo {
	max-width: 60%;
}
.header__contact {
	display: flex;
	align-items: center;
	gap: 16px;
}
.header__contact a {
	display: block;
	width: 28px;
}

/* ========================= /
/  グローバルナビ
/* =========================*/
@media screen and (max-width: 1024px) {
	.global-nav {
		display: none;
	}
}
.global-nav__list {
	display: flex;
	align-items: center;
	gap: 40px;
	font-size: 1.4rem;
}
.global-nav__list img {
	height: 18px;
}
.global-nav__list > li {
	position: relative;
}
.global-nav__lower-list {
	padding: 5px 20px 5px 20px;
	position: absolute;
	bottom: 0;
	left: -20px;
	background: #fff;
	white-space: nowrap;
	transform: translateY(100%);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease-out;
}
.global-nav__list > li:hover .global-nav__lower-list {
	opacity: 1;
	pointer-events: visible;
}
.global-nav__lower-list li a {
	display: block;
	padding-block: 4px;
}

/* ========================= /
/  バーガーボタン
/* =========================*/
.burger-btn {
	width: 50px;
	height: 75px;
	background: #fff;
	cursor: pointer;
	position: absolute;
	right: 0;
	top: 0;
	display: none;
}
@media screen and (max-width: 1024px) {
	.burger-btn {
		display: block;
	}
}
.burger-btn button {
	display: block;
	width: 100%;
	height: 100%;
	position: relative;
}
.burger-btn__line {
	width: 30px;
	height: 4px;
	background: #c4ac5c;
	margin: auto;
	position: absolute;
	right: 16px;
	transition: transform 0.3s cubic-bezier(0.4, 0.4, 0, 1), opacity 0.3s cubic-bezier(0.4, 0.4, 0, 1);
}
.burger-btn__line:nth-of-type(1) {
	top: 27px;
}
.burger-btn.--active .burger-btn__line:nth-of-type(1) {
	top: 37px;
	transform: rotate(45deg);
	background: #c4ac5c;
}
.burger-btn__line:nth-of-type(2) {
	top: 37px;
}
.burger-btn.--active .burger-btn__line:nth-of-type(2) {
	opacity: 0;
}
.burger-btn__line:nth-of-type(3) {
	top: 47px;
}
.burger-btn.--active .burger-btn__line:nth-of-type(3) {
	top: 37px;
	transform: rotate(135deg);
	background: #c4ac5c;
}

/* ========================= /
/  バーガーメニュー
/* =========================*/
.burger-nav {
	position: fixed;
	top: 75px;
	left: 0;
	right: 0;
	bottom: 0;
	background: #fff;
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.3s ease-out;
}
.burger-nav.--js-show {
	opacity: 1;
	pointer-events: visible;
}
.burger-nav__inner {
	height: 100%;
	padding: 20px 11.4285714286vw 64px;
	overflow-y: auto;
}
.burger-nav__list > li.sub-menu {
	position: relative;
}
.burger-nav__list > li.sub-menu::before, .burger-nav__list > li.sub-menu::after {
	content: "";
	display: block;
	width: 20px;
	height: 1px;
	background: #adbdb3;
	position: absolute;
	top: 30px;
	left: 0;
	transition: transform 0.3s ease-out;
}
.burger-nav__list > li.sub-menu::after {
	transform: rotate(90deg);
}
.burger-nav__list > li.sub-menu.--js-open::after {
	transform: none;
}
.burger-nav__list > li > a {
	display: inline-block;
	padding-block: 15px;
	font-weight: 500;
	margin-left: 40px;
	font-size: 2rem;
}
.burger-nav__lower-list {
	display: none;
	line-height: 2;
}

/* ===========================================================/
/  フッター                                               
=============================================================*/
.footer__img {
	height: 420px;
}
@media screen and (max-width: 1024px) {
	.footer__img {
		height: 220px;
		aspect-ratio: 4/3;
	}
}
.footer__img picture,
.footer__img img {
	width: 100%;
	height: 100%;
}
.footer__logo {
	max-width: 260px;
}
.footer__logo1 {
	max-width: 246px;
}
@media screen and (max-width: 1024px) {
	.footer__nav {
		margin-inline: auto;
		max-width: 460px;
	}
}
.footer__copyright {
	height: 72px;
	line-height: 72px;
	background: #fbfaf5;
	color: #444444;
	text-align: center;
	font-size: 1.2rem;
}
@media screen and (max-width: 768px) {
	.footer__copyright {
		font-size: 1rem;
	}
}

/* ===========================================================/
/  サイドバー                                                   
=============================================================*/
.aside {
	border-right: 1px solid #dbdbdb;
}
.aside__fixed {
	flex: 1;
}

.aside-nav__list {
	display: flex;
	flex-direction: column;
	justify-content: center;
	writing-mode: vertical-rl;
	gap: 8px;
	white-space: nowrap;
}
.aside-nav__list > li {
	position: relative;
	display: block;
}
.aside-nav__list > li a {
	display: block;
}
.aside-nav__lower-list {
	padding-top: 80px;
	max-width: 270px;
	display: flex;
	flex-direction: column;
	flex-wrap: wrap;
	gap: 0 24px;
	position: absolute;
	bottom: 0;
	left: 50%;
	transform: translate(-50%, 100%);
	opacity: 0;
	pointer-events: none;
	transition: opacity 0.5s ease-out;
	color:#8b968d;
}
.aside-nav__list > li:hover .aside-nav__lower-list {
	opacity: 1;
	pointer-events: visible;
}
.aside-nav__lower-list::before {
	content: "";
	display: block;
	width: 1px;
	height: 50px;
	background: #e5d395;
	position: absolute;
	top: 50px;
	left: 50%;
	transform: translate(-50%, -100%);
}

/* ===========================================================/
/  共通パーツ                                                 
=============================================================*/
.inner {
	width: 90%;
	max-width: 750px;
	margin: 0 auto;
}
.inner.--w1080 {
	max-width: 1080px;
}

.gothic {
	font-family: "Noto Sans JP", sans-serif;
}

.col-2 {
	display: grid;
	grid-template-columns: 400px 1fr;
}
@media screen and (max-width: 1024px) {
	.col-2 {
		display: flex;
		flex-direction: column;
	}
}
@media screen and (max-width: 1024px) {
	.col-2.sp-reverse {
		flex-direction: column-reverse;
	}
}

.sec {
	margin: 60px 0;
}
@media screen and (max-width: 1024px) {
	.sec {
		margin: 84px 0;
	}
}
.sec__ttl {
	margin-inline: auto;
	padding-bottom: 4px;
	width: fit-content;
	text-align: center;
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
	.sec__ttl {
		font-size: 2rem;
	}
}
.sec__ttl::before {
	content: "";
	display: block;
	margin-inline: auto;
	margin-bottom: 8px;
	width: 32px;
	height: 32px;
	background: url(../img/common/icon-sec.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
	.sec__ttl::before {
		width: 24px;
		height: 24px;
	}
}
.sec__right {
	padding-bottom: 10px;
	width: fit-content;
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
	.sec__right {
		font-size: 2rem;
	}
}
.sec__ttl.--rabbit::before {
	width: 20px;
	height: 49px;
	background-image: url(../img/common/icon-rabbit.svg);
}
.sec__ttl.--none::before {
	display: none;
}
.sec__ttl::after {
	content: "";
	display: block;
	margin-top: 8px;
	margin-inline: auto;
	width: 100px;
	height: 1px;
	background: #dbdbdb;
}
.sec__ttl_wed {
	margin-inline: auto;
	padding-bottom: 4px;
	width: fit-content;
	text-align: center;
	font-size: 2rem;
	font-weight: 500;
	letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
	.sec__ttl_wed {
		font-size: 2rem;
	}
}
.sec__ttl_wed::before {
	content: "";
	display: block;
	margin-inline: auto;
	margin-bottom: 8px;
	width: 32px;
	height: 32px;
	background: url(../img/common/icon-sec.png) no-repeat center/contain;
}
@media screen and (max-width: 768px) {
	.sec__ttl_wed::before {
		width: 24px;
		height: 24px;
	}
}
.sec__ttl_wed::after {
	content: "";
	display: block;
	margin-top: 8px;
	margin-inline: auto;
	width: 100px;
	height: 1px;
	background: #e83929;
}

.btn {
	padding: 8px 42px 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #e5d395;
	font-weight: 500;
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	position: relative;
}
@media screen and (max-width: 768px) {
	.btn {
		padding: 4px 24px 5px;
		font-size: 1.4rem;
	}
}
.btn::after {
	content: "";
	display: block;
	width: 24px;
	height: 0.5px;
	background: #444444;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

.img.border {
	border: 1px solid #b3b3b3;
}

.text {
	color: #748380;
}

.link {
	color: #ce931d;
	text-decoration: underline;
}

.border-bottom {
	border-bottom: 1px solid #dddddd;
}

.list {
	padding: 50px;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 15px;
	background: #f8fbf8;
	writing-mode: vertical-rl;
	flex-direction: column;
}
@media screen and (max-width: 1024px) {
	.list {
		padding: 20px;
		gap: 10px;
	}
}
@supports (-webkit-touch-callout: none) {
	.list {
		height: -webkit-fill-available;
	}
}
.list li.arrow {
	padding-top: 24px;
	position: relative;
}
.list li.arrow::before {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	border-left: 2px solid #9ba88d;
	border-bottom: 2px solid #9ba88d;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%) rotate(-45deg);
}
.list li.arrow-no {
	padding-top: 24px;
}
.list li.arrow-no::before {
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	border-left: 2px solid #9ba88d;
	border-bottom: 2px solid #9ba88d;
	position: absolute;
	top: 0;
	left: 50%;
	transform: translateX(-50%) rotate(-45deg);
}

.gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
	gap: 20px;
}
@media screen and (max-width: 768px) {
	.gallery {
		grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
	}
}
.gallery_news img{
	width: auto;
	height: auto;

}
.gallery_news p{
	text-align: center;
}

.gallery_news {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
	gap: 30px;
}
@media screen and (max-width: 768px) {
	.gallery_news {
		grid-template-columns: repeat(auto-fill, minmax(95px, 1fr));
	}
}

.gallery_cer {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
	gap: 40px;
	align-items: center;
}
@media screen and (max-width: 768px) {
	.gallery_cer {
		grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
		gap: 20px;
	}
}



.gallery.--large {
	grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
@media screen and (max-width: 768px) {
	.gallery.--large {
		grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
	}
}

.table-wrap {
	max-width: 100%;
	overflow-x: auto;
}

.table {
	display: block;
	min-width: 590px;
	width: 100%;
	margin: auto;
}
.table tbody {
	display: block;
	width: 100%;
}
.table tr {
	width: 100%;
	background: #f8fbf8;
}
.table tr + tr {
	border-top: 2px solid #fff;
}
.table th,
.table td {
	padding: 8px 16px;
	font-size: 1.4rem;
}
.table th {
	background: #ebf6f7;
	white-space: nowrap;
}

.bg-gray {
	background: #f7f7f7;
}

.lower-mv__img {
	height: 470px;
}
@media screen and (max-width: 1024px) {
	.lower-mv__img {
		height: 400px;
	}
}
.lower-mv__img picture,
.lower-mv__img img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}

.lower-mv__img0 {
	height: 370px;
}
@media screen and (max-width: 1024px) {
	.lower-mv__img0 {
		height: 250px;
	}
}
.lower-mv__img0 picture,
.lower-mv__img0 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}



.lower-mv__img1 {
	height: 300px;
}
@media screen and (max-width: 1024px) {
	.lower-mv__img1 {
		height: 200px;
	}
}
.lower-mv__img1 picture,
.lower-mv__img1 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}



.lower-mv__img2 {
	height: 340px;
}
@media screen and (max-width: 1024px) {
	.lower-mv__img2 {
		height: 320px;
	}
}
.lower-mv__img2 picture,
.lower-mv__img2 img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}




.lower-mv__ttl {
	margin-top: 64px;
	padding-bottom: 60px;
	display: flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	gap: 8px;
}
.lower-mv__ttl--ja {
	font-size: 2rem;
	display: block;
	writing-mode: vertical-rl;
}
.lower-mv__ttl--en {
	color: #748380;
	font-size: 1.2rem;
}/*# sourceMappingURL=common.css.map */

/* メニュー */
.wed_text {
	color: #e83929;
}
.wed_text2 {
	color: #f5b199;
}

/* スマホメニュー */
.jinja_text {
	color: ;
}
.jinja_text2 {
	color: #8b968d;
}

/* ゆっくり表示 */
.fadeIn{
animation-name:fadeInAnime;
animation-duration:3s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeInAnime{
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

/* もっとゆっくり表示 */
.fadeIn_more{
animation-name:fadeInAnime;
animation-duration:8s;
animation-fill-mode:forwards;
opacity:0;
}

@keyframes fadeIn_moreAnime{
	from {
		opacity: 0;
	}

	to {
		opacity: 1;
	}
}

.aside__news-list h2{
	color: #8b968d;
}

/* テキスト光る */
.shining {
	text-shadow: 0 0 10px #e5d395,0 0 15px #e5d395;
}

/* ===========================================================/
/  ウエディング                                                
=============================================================*/
.btn_wed {
	padding: 8px 42px 9px;
	display: flex;
	align-items: center;
	justify-content: center;
	background: #fef4f4;
	font-weight: 500;
	font-size: 1.4rem;
	letter-spacing: 0.05em;
	position: relative;
	color:#6c848d;
	margin:0 auto;
}
@media screen and (max-width: 768px) {
	.btn_wed {
		padding: 10px 24px 10px;
		font-size: 1.4rem;
	}
}
.btn_wed::after {
	content: "";
	display: block;
	width: 24px;
	height: 0.5px;
	background: #e83929;
	position: absolute;
	top: 50%;
	right: 0;
	transform: translateY(-50%);
}

.border-bottom_wed {
	border-bottom: 1px solid #e83929;
}

.underline {
	padding: 0.2rem;
	margin-bottom: 0.2rem;
	background: linear-gradient(transparent 60%, #ebf6f7 60%);
	font-size: 15px;
}


.imgtext {
	position: relative;
}

.imgtext p {/*pタグを画像の真ん中に*/
	position: absolute;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	/*以下装飾*/
	color: #203744;
	padding: 15px;/*文字と線の間の余白*/
	background: rgba(255, 255, 255, 0.5);/*背景を半透明に*/
}


/* ===========================================================/
/  ご祈祷早見表                                               
=============================================================*/


.table_prayer {
	display: block;
	min-width: 590px;
	width: 100%;
	margin: auto;
}
.table_prayer tbody {
	display: block;
	width: 100%;
}
.table_prayer tr {
	width: 100%;
	background: #fff;
}
.table_prayer tr + tr {
	border-top: 2px solid #f8fbf8;
}
.table_prayer th,
.table_prayer td {
	padding: 10px 30px;
	font-size: 1.4rem;
}

@media screen and (max-width: 1024px) {
	.table_prayer th,
	.table_prayer td {
		font-size: 1.2rem;
	}
}




/*.table_prayer th {
	background: #ebf6f7;
	white-space: nowrap;
}
*/
.bg_blue {
	background: #ebf6f7;
}
.bg_pink {
	background: #fdeff2;
}

.bg_green {
	background: #d6e9ca;
}

.bg_orange {
	background: #fff1cf;
}
.bg_momo {
	background: #f7fcfe;
}

/* ===========================================================/
/  ご説明リスト                                               
=============================================================*/
.infomation {
  display:flex; /*横並び*/
  flex-wrap: wrap; /*折り返し*/
 }
.infomation dt,
.infomation dd{
  padding: 6px;
}
.infomation dt {
  width: 25%;
  color: #2c4f54;
  font-weight: bold;
}
.infomation dd {
  margin-left: 0; /*初期値リセット*/
  width: 75%;
}


/* ===========================================================/
/  よくあるご質問                                             
=============================================================*/


.faq dt {
	margin-top: 20px;
	color: #2c4f54;
	font-weight: bold;
	font-size: 1.6rem !important;
}

.faq dd {
	margin-top: 10px;
	margin-left: 10px;
}

/* ===========================================================/
/  交通のご案内                                             
=============================================================*/

.ggmap {
	position: relative;
	padding-bottom: 56.25%;
	padding-top: 30px;
	height: 0;
	overflow: hidden;
}
 
.ggmap iframe,
.ggmap object,
.ggmap embed {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 80%;
}




/*========= ページトップのためのCSS ===============*/

/*リンクの形状*/
#page-top ul{
	display: flex;
	justify-content:center;
	align-items:center;
	transition:all 0.3s;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
	/*はじめは非表示*/
	opacity: 0;
	transform: translateY(200px);
}

/*　上に上がる動き　*/
#page-top.UpMove{
	animation: UpAnime 0.8s forwards;
}
@keyframes UpAnime{
	from {
		opacity: 0;
	transform: translateY(200px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.8s forwards;
}
@keyframes DownAnime{
	from {
		opacity: 1;
		transform: translateY(0);
	}
	to {
		opacity: 1;
		transform: translateY(200px);
	}
}

/*========= レイアウトのためのCSS ===============*/

.btn-02 {
	color: #748380;
	text-decoration: none;
	-ms-writing-mode: tb-rl;
	writing-mode: vertical-rl;
}
.btn-02 li{
	margin-top: 10px;
	padding: 10px;
	background-color: #fff;
	opacity: 0.8;
}

.orange { color: #f08300; }
.red { color: #c53d43; }
.blue { color: #007bbb; }
.hada { color: #f0908d }
.kareiro { color: #e0c38c }

/* ===========================================================/
/  お問い合わせ                                             
=============================================================*/
.inquiry tr{
	border-bottom: solid 2px white;
}
.inquiry th{
	position: relative;
	text-align: left;
	padding: 10px;
	width: 30%;
	background-color: #ebf6f7;
}

.inquiry  td{
	text-align: left;
	padding:7px 0 7px 30px;
	width: 65%;
	background-color: #f8fbf8;
}

/* フォームパーツのデザイン */
.inquiry input, textarea {
	width: 90%;
	background-color: #f2f4f5;
	border: none;
	border-radius: 5px;
	padding: 10px;
	font-size: 15px;
	color: #333;
	flex-grow: 1;
}
.inquiry_input{
	width: 50%;
	background-color: #fff;
	display: block;
	margin: auto;
	padding: 10px;
	border:  solid 2px #ebf6f7;
}
.inquiry_input:hover{
	background-color: #ebf6f7;
	border:  solid 2px #ebf6f7;
}

/* ===========================================================/
/  結婚式お問い合わせ                                             
=============================================================*/
.inquiry_wed tr{
	border-bottom: solid 2px white;
}
.inquiry_wed th{
	position: relative;
	text-align: left;
	padding: 10px;
	width: 30%;
	background-color: #fef4f4;
}

.inquiry_wed td{
	text-align: left;
	padding:7px 0 7px 30px;
	width: 65%;
	background-color: #fff;
}

/* フォームパーツのデザイン */
.inquiry_wed input, textarea {
	width: 90%;
	background-color: #f2f4f5;
	border: none;
	border-radius: 5px;
	padding: 10px;
	font-size: 15px;
	color: #333;
	flex-grow: 1;
}
.inquiry_wed_input{
	width: 50%;
	background-color: #fff;
	display: block;
	margin: auto;
	padding: 10px;
	border:  solid 2px #fef4f4;
}
.inquiry_wed_input:hover{
	background-color: #fef4f4;
	border:  solid 2px #fef4f4;
}



.charm {
	margin: 0.5em 0;
	color: #232323;
	background: #ffffff;
	border-left: solid 5px #e0ebaf;
	font-size: 1.3rem !important;
}
@media screen and (max-width: 1024px) {
	.charm {
		font-size: 1rem !important;
	}
}


.newsletter {
	margin: 0.5em 0;
	padding: 15px 10px 15px 2px;
	color: #232323;
	background: #f8f4e6;
	border-left: solid 5px #e0ebaf;
	border-radius: 50px 3px;
	font-size: 1.1rem !important;
	display:none
}
@media screen and (max-width: 1024px) {
	.newsletter {
		font-size: 1rem !important;
	}
}


/* ===========================================================/
/  ceremony                                             
=============================================================*/
.box7{
	font-size: 1.4rem !important;
	padding: 5px 15px;
	margin-bottom: 5px;
	border-left: double 7px #f2c9ac;/*左線*/
}
@media screen and (max-width: 1024px) {
	.box7 {
		padding: 5px 5px;
		font-size: 1rem !important;
		border-left: double 4px #f2c9ac;/*左線*/
	}
}


/* ===========================================================/
/  party                                             
=============================================================*/

.img_logo {
	width: 35%;
	margin: 15px auto ;
}


.box9 {
  margin: 5px auto;
  padding: 15px;
  background-color: transparent;
  border: 2px solid #f2c9ac;
  position: relative;
}
.box9::after {
  content: '';
  background-color: #fef4f4;
  width: 100%;
  height: 100%;
  position: absolute;
  top: -7px;
  left: 7px;
  z-index: -1;
}





/* ===========================================================/
/  message                                             
=============================================================*/
.message { position:relative; }

.message img{
	width:100%;
	height:90%;
	opacity: 0.15;
}

.message p {
	color: #1f3134; /* 文字色 */
	position: absolute;
	left: 10%;  top: 10%;
}
@media screen and (max-width: 1024px) {
	.message p {
		color: #1f3134; /* 文字色 */
		position: absolute;
		left: 8%;  top: 0%;
	}
}

/* ===========================================================/
/  フォトギャラリ                                             
=============================================================*/
/* 画像縦横ランダム表示 */

.test_gallery {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(210px, 1fr));
	gap: 10px;
}
/*
@media screen and (max-width: 768px) {
	.test_gallery {
		grid-template-columns: repeat(auto-fill, minmax(158px, 1fr));
	}
}
*/
