@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@200..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
body {
	margin:0;
	padding:0;
	width:100%;
	max-width:100%;
	-webkit-text-size-adjust: none;
	-ms-overflow-style: scrollbar;
	color: #111;
	font-family: "Noto Serif JP", serif;
	font-optical-sizing: auto;
	font-size:100%;
	font-weight: normal;
	font-style: normal;
	line-height: 1;
	-webkit-text-size-adjust: none;
}
* {
	-webkit-box-sizing: border-box;
	        box-sizing: border-box;
}
a,a:visited,a:hover,a:active {
	text-decoration: none;
	color: inherit;
}
a:hover {text-decoration: none;
	color:#990000;
	}
h1{
	margin:0 auto;
	padding:0;
	text-align:center;
	font-size:2em;
	line-height:1;
	letter-spacing:1px;
	margin-bottom:50px;
}
h2{
	margin:0 auto;
	padding:0;
	text-align:center;
	font-size:1em;
	font-weight:300;
	letter-spacing:1px;
	line-height:1.4;
}
h3{
	margin:0 auto;
	padding:0;
	text-align:center;
	font-size:1em;
	font-weight:300;
	letter-spacing:1px;
	line-height:1.0;	
}
b{
	font-size:1.3em;
	font-weight:500;
	line-height:1;
	letter-spacing:1px;
	padding-bottom:20px;
}
.mini{
	font-size:.7em;
}
.icon{
	position:absolute;
	position:fixed;
	top:20px;
	left:20px;
	font-size:1.3em;
}
section{
	margin: 0 auto;
	margin-top:70px;
	width:40%;
	padding:30px 20px;
	max-width:90%;
}
@media screen and (max-width: 768px) {
section{
	width:90%;
}}
section p{
	line-height:1.6;
	font-size:1.0em;
}
.blue{
	background:#f8f8f8;
	line-height:1.6;
}
.col3{
	width: 100%;
	max-width:100%;
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	align-items:flex-start;

}
.col3 > div{
	width: 33.33333%;
	padding: 10px;
	font-size:.9em;
	line-height:1.5;
	padding-bottom:80px;
}

.col3 img{
	display:block;
	width:100%;
	height:auto;
	margin:20px auto;
}

@media screen and (max-width: 960px) {
.col3 > div{
	width: 90%;
	padding-bottom:40px;
	}
}
.wallyui {
	position: relative;
	margin:0 auto;
	text-align:center;
	width:100%;
	height: auto;
	background: url(../wall/wedding.jpg) no-repeat center center;
	background-size:cover;
    	background-attachment: fixed;
	padding:300px 20px 300px 20px;
}
.wallyui p {
	color: #fff;
	text-shadow: 1px 2px 3px #111;
	line-height:180%;
}
@media only screen and (max-width: 768px){
.wallyui {
	background: url(../wall/weddings.jpg) no-repeat center center;
	padding:220px 0 220px 0;
	background-size:auto;
	-moz-object-fit: cover;
	-webkit-object-fit: cover;
	-ms-object-fit: cover;
	object-fit: cover;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 0;
}}
.wallindex {
	position: relative;
	margin:0 auto;
	text-align:center;
	width:100%;
	height: auto;
	background: url(../wall/kizuna.jpg) no-repeat center center;
	background-size:cover;
    	background-attachment: fixed;
	padding:300px 20px 300px 20px;
}
.wallindex p {
	color: #fff;
	text-shadow: 1px 2px 3px #111;
	line-height:180%;
}
@media only screen and (max-width: 768px){
.wallindex {
	background: url(../wall/kizunas.jpg) no-repeat center center;
	padding:220px 0 220px 0;
	background-size:auto;
	-moz-object-fit: cover;
	-webkit-object-fit: cover;
	-ms-object-fit: cover;
	object-fit: cover;
	display: block;
	width: 100%;
	height: 100%;
	border-radius: 0;
}}
.buttons a {
  font-family: 'Noto Serif JP', serif;
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #333;
  font-weight: 400;
  border: 1px solid #333;
  display: block;
  position: relative;
  box-sizing: border-box;
  max-width: 300px;
  text-align: center; 
  padding: 16px 64px;
  margin: 24px;
  margin-inline: auto;
  text-decoration: none;
  cursor: pointer;
  z-index:999;
  transition: all 0.3s;
}
.buttons a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: -30px;
  width: 60px;
  height: 1px;
  background: #333;
  transition: all 0.3s ease;
}
.buttons a:hover::after {
  animation: OutIn-Line 700ms;
  transition: all 0.3s;
}
.buttons :hover{
	background:#999;
	transition-duration: 2s;
	transition-property: background-color;
}
@keyframes OutIn-Line {
    0% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }

    50% {
        -webkit-transform: scale3d(0,1,1);
        transform: scale3d(0,1,1);
        -webkit-transform-origin: 100% 0;
        transform-origin: 100% 0
    }

    50.1% {
        -webkit-transform: scale3d(0,1,1);
        transform: scale3d(0,1,1);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0
    }

    100% {
        -webkit-transform: scale3d(1,1,1);
        transform: scale3d(1,1,1);
        -webkit-transform-origin: 0 0;
        transform-origin: 0 0
    }
}

/* Footer */

footer{
    position:relative;
    width:100%; max-width:100%;
    bottom:0;
    background:#ccc;
    height:auto;
    padding:20px 20px 50px 20px;
    text-align:center;
    font-size:.8em;
    color:#555;
}
footer span{
    font-size:.8em;
}

