<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

/*タブ切り替え全体のスタイル*/
.tabs {
  padding-bottom: 40px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  max-width: 1100px;
  margin: 60px auto;
}

/*タブのスタイル*/
.tab_item {
  width: calc(100%/3);
  height: auto;
  border-bottom: 3px solid #5ab4bd;
  background-color: #d9d9d9;
  line-height: 50px;
  font-size: 16px;
  text-align: center;
  color: #565656;
  display: block;
  float: left;
  font-weight: bold;
  transition: all 0.2s ease;
}
.tab_item:hover {
  opacity: 0.75;
}

/*ラジオボタンを全て消す*/
input[name="tab_item"] {
  display: none;
}

/*タブ切り替えの中身のスタイル*/
.tab_content {
	display: none;
	padding: 40px 40px 0;
	clear: both;
	overflow: hidden;
	font-size: 1.5rem;
}

/*選択されているタブのコンテンツのみを表示*/
#aa:checked ~ #aa_content,
#bb:checked ~ #bb_content,
#cc:checked ~ #cc_content,
#dd:checked ~ #dd_content{
  display: block;
}

/*選択されているタブのスタイルを変える*/
.tabs input:checked + .tab_item {
  background-color: #5ab4bd;
  color: #fff;
}

.wedding-nav-content {
    max-width: 700px;
	margin: 0 auto;
    padding: 0 4%;
	top: 0vh;
	left: 0;
}
.page-title {
	margin-top: 15vh;
    font-size: 3.5rem;
	font-family: 'Noto Serif JP', serif;
    font-weight: lighter;
}
.order-nav{
	margin: 10vh 5% 0;
	font-family: 'Noto Serif JP', serif;
	text-align: center;
}
.order-nav span {
	font-size: 1rem;
	color:#707070;
}
.order-nav .text-big {
	font-size: 2rem;
}
.order-nav-1{
	margin: 10vh 0 0;
	font-family: 'Noto Serif JP', serif;
	text-align: center;
}
.order-nav-1 span {
	font-size: 1rem;
	color:#707070;
}
/*見出し*/
.caption {
    text-align: center;
	margin: 30px 0;
	font-family: 'Noto Serif JP', serif;
	
	
}
.caption span{
     position: relative;
     display: inline-block;
     padding: 0 0.8em;
	 z-index: 2;
}
      
.caption span::before{
     position: absolute;
     content: '';
     top:0;
     right:0.2em;
     width: 0.2em;
     height:100%;
     border: solid 1px black;
     border-left: none;
}
 
.caption span::after{
     position: absolute;
     content: '';
     top:0;
     left:0;
     width: 0.2em;
     height:100%;
     border: solid 1px black;
     border-right: none;
}
/*ライン*/
.hr-text {
	line-height: 1em;
	margin: 5% 0;
	position: relative;
	outline: 0;
	border: 0;
	color: black;
	text-align: center;
	height: 1.5em;
	opacity: .5;

}
.hr-text:before {
	content: '';
	background: -webkit-linear-gradient(left, transparent, #818078, transparent);
	background: linear-gradient(to right, transparent, #818078, transparent);
	position: absolute;
	left: 0;
	top: 50%;
	width: 100%;
	height: 1.5px;

}
.hr-text:after {
	content: attr(data-content);
	position: relative;
	display: inline-block;
	color: black;
	padding: 0 .5em;
	line-height: 1.5em;
	background-color: #fcfcfa;

}

/*アコーディオンボックス*/
.cp_qa *, .cp_qa *:after, .cp_qa *:before {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
.cp_qa {
	overflow-x: hidden;
	margin: 0 auto;
	color: #333333;
}
.cp_qa .cp_actab {
	padding: 10px 0;
	border-bottom: 1px dotted #cccccc;
}
.cp_qa label {
	font-size: 1em;
	position: relative;
	display: block;
	width: 100%;
	margin: 0;
	padding: 10px 10px 0 48px;
	cursor: pointer;
}
.cp_qa .cp_actab-content {
	font-size: 1em;
	position: relative;
	overflow: hidden;
	height: 0;
	margin: 0 40px;
	padding: 0 14px;
	-webkit-transition: 0.5s ease;
	        transition: 0.5s ease;
	opacity: 0;
}
.cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_actab-content {
	height: auto;
	padding: 14px;
	opacity: 1;
}
.cp_qa .cp_plus {
	font-size: 2.4em;
	line-height: 100%;
	position: absolute;
	z-index: 5;
	margin: 3px 0 0 10px;
	-webkit-transition: 0.4s ease;
	        transition: 0.4s ease;
}
.cp_qa .cp_actab input[type=checkbox]:checked ~ .cp_plus {
	-webkit-transform: rotate(45deg);
	        transform: rotate(45deg);
}
.cp_qa .cp_actab input[type=checkbox] {
  display: none;
}
/*end*/



@media (max-width: 600px) {
	.tabs {
	  padding-bottom: 40px;
	  background-color: #fff;
	  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
	  max-width: 1100px;
	  margin: 60px 3%;
	}
	.tab_item {
	  font-size: 0.9rem;
	}
	.tab_content {
		display: none;
		padding: 40px 10px 0;
		clear: both;
		overflow: hidden;
		font-size: 1.2rem;
	}
	.hr-text {
		line-height: 1em;
		margin: 15% 0 15%;
		position: relative;
		outline: 0;
		border: 0;
		color: black;
		text-align: center;
		height: 1.5em;
		opacity: .5;
		z-index: 1;
	}
	.page-title {
    	margin-top: 10vh;
    	line-height: 7rem;
		font-size: 2.5rem;
	}
	.order-nav .text-big {
    	font-size: 1.5rem;
	}
}





/*共通ヘッダー・フッター用追加css*/
.menu {
	position: fixed;
	display: flex;
	left: 0;
	bottom: 0;
	background: rgba(255,255,255,0.8);
	width: 100%;
	padding: 20px 0;
	z-index: 1000;
}
.menu li {
	display: table;
	table-layout: fixed;
	width: 100%;
	padding: 5px;
	list-style: none;
	text-align: center;
}
.menu a span {
	display: block;
	font-size: 8px;
}
.menu i img {
	width: 30px;
}

@media(min-width: 600px) {
	.bottom-menu {
		display: none;
		padding-top: 20px;
	}
}


footer ul h3 {
    display: block;
    position: relative;
	/*margin: 2% 2% 2% 4%;*/
    padding-left: 30px;
    font-weight: bold !important;
}
footer ul h3::before {
    content: '';
    height: 12px;
    width: 12px;
    display: block;
    background: #00a8ff;
    box-shadow: 0 0 5px rgba(255,255,255,.3) inset;
    -box-shadow: 0 0 5px rgba(255,255,255,.3) inset;
    -webkit-box-shadow: 0 0 5px rgba(255,255,255,.3) inset;
    -moz-box-shadow: 0 0 5px rgba(255,255,255,.3) inset;
    position: absolute;
    top: 0;
    left: 5px;
    transform: rotate(-50deg);
    -webkit-transform: rotate(-50deg);
    -moz-transform: rotate(-50deg);
    -o-transform: rotate(-50deg);
    -ms-transform: rotate(-50deg);
}
footer ul h3::after {
    content: '';
    height: 8px;
    width: 6px;
    display: block;
    background: #00a8ff;
    box-shadow: 0 0 5px rgba(255,255,255,.3) inset;
    -box-shadow: 0 0 5px rgba(255,255,255,.3) inset;
    -webkit-box-shadow: 0 0 5px rgba(255,255,255,.3) inset;
    -moz-box-shadow: 0 0 5px rgba(255,255,255,.3) inset;
    position: absolute;
    top: 16px;
    left: 2px;
    transform: rotate(-90deg);
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    -ms-transform: rotate(-75deg);
}

@media (max-width: 600px) {
	footer {
		padding-bottom: 100px;
	}
}

/*ハンバーガーメニュー*/
.header-menu {
	position: fixed;
	top:0;
	width: 100vw;
	height: 80px;
	z-index: 100;
	background-color: rgba(255,255,255,0.35);
	-webkit-transition: 1.5s;
	-moz-transition: 1.5s;
	-o-transition: 1.5s;
	-ms-transition: 1.5s;
	transition: 1.5s;
}
.header-menu.change-color {
	background-color: rgba(255,255,255,1);
}
.hamburger-menu {
	display: none;
}

.more-btn {
	display: flex;
	justify-content: center;
	align-items: center;
	margin-top: 3%;
}
.more-btn a {
    display: inline-block;
    color: #4d4d4d;
    font-size: 15px;
    line-height: 1em;
    text-align: center;
    width: 90%;
    margin: 0 5%;
    max-width: 540px;
    height: 54px;
    padding-top: 20px;
    background-color: rgba(238,238,238,0.95);
    border-radius: 8px;
}
.menu-btn {
    position: fixed;
    top: 20px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;	
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #3584bb;
    position: absolute;
	transition: all 0.2s;/*アニメーション設定*/
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}
#menu-btn-check:checked ~ .menu-content {
    left: 0;/*メニューを画面内へ*/
}
.menu-content {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 100px;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #454545;
    transition: all 0.5s;/*アニメーション設定*/
}
.menu-content ul {
    padding: 50px 20px 0;
}
.menu-content ul li {
    border-bottom: solid 1px #9B9B9B;
    list-style: none;
}
.menu-content ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 15px 15px 5px;
    position: relative;
}
.menu-content ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 15px;
    top: 25px;
}
#pageTop {
	position: fixed;
	bottom: 110px;
	right: 20px;
}

html {
	scroll-behavior: smooth;
}

/*共通ヘッダー・フッター用追加css end*/


/*アコーディオンボックス*/
.accordion-box {
	position: relative;
}
.accordion-box label {
	height: 140px; /* グラデーションの高さ */
	cursor: pointer;
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	position: absolute;
	bottom: 0;
	width: 100%;
  
	/* 以下グラデーションは「背景が白」に併せて設定しています */	
	background: -webkit-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
	background: -moz-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
	background: -o-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
	background: -ms-linear-gradient(top, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
	background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.95) 90%);
}
.accordion-box input:checked + label {
	background: inherit; /* 開いた時には背景グラデーションを消す */
}
.accordion-box label:after {
	content: "続きをよむ"; /* ラベルの文字 */
	letter-spacing: .05em;
	font-size: 1.175rem;
	line-height: 2.5rem;
	position: absolute;
	top: 150px;
	left: 50%;
	-webkit-transform: translate(-50%, 0);
	transform: translate(-50%, 0);
	color: #fff;
	background-color: #000;
	width: 18.75rem;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
}
.accordion-box label:before {
	content: "↓";
	font-weight: 700;
	position: absolute;
	top: 160px;
	left: 50%;
	-webkit-transform: translate(-140px, 0);
	transform: translate(-140px, 0);
	background-color: #fff;
	z-index: 1;
	-webkit-border-radius: 100%;
	-moz-border-radius: 100%;
	border-radius: 100%;
	width: 20px;
	height: 20px;
	line-height: 20px;
}
.accordion-box input {
	display: none;
}
.accordion-box .accordion-container {
	overflow: hidden;
	height: 600px; /* 開く前に見えている部分の高さ */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}


.accordion-box input:checked + label {
	/* display: none ; 閉じるボタンは要らないとき */
}
.accordion-box input:checked + label:after {
	content: "閉じる";
}
.accordion-box input:checked + label:before {
	content: "↑";
}
.accordion-box input:checked ~ .accordion-container {
    height: auto;
	padding-bottom: 10px; /* 閉じるボタンのbottomからの位置 */
    -webkit-transition: all 0.1s;
    -moz-transition: all 0.1s;
    -ms-transition: all 0.1s;
    -o-transition: all 0.1s;
    transition: all 0.1s;
}
</pre></body></html>