@charset "UTF-8";
/* contact.css */

/* break point
tab 560px以上 @media screen and (min-width: 560px) {…}
pc  960px以上 @media screen and (min-width: 960px) {…}*/

/* 
footer
------------------------------------------ */
.breadcrumbs {
    text-align: center;
    position: relative;
    padding-top: 100px;
}
.breadcrumbs::before {
    position: absolute;
    content: '';
    top: 0;
    left: 50%;
    width: 1px;
    height: 80px;
    background-color: rgba(22, 22, 21, 0.3);
}
.breadcrumbs ul {
	padding-bottom: 1em;
	display: flex;
	justify-content: center;
}
.breadcrumbs li:first-child::before { 
	display: none;
}
.breadcrumbs li:before {
    content: '>';
}
.breadcrumbs li {
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    font-smoothing: subpixel-antialiased;
}
.breadcrumbs li a {
	padding: 0 0.5em;
}
.breadcrumbs li.current a {
	color: #999;
}
.page-nation {
	margin-top: 2.5em;
	display: flex;
	justify-content: space-between;
}
.page-nation p a {
    font-family: "Karla", sans-serif;
	letter-spacing: 0.05em;
	color: #161615;
	font-weight: 500;
}
footer .note {
	padding-bottom: 50px;
	font-size: 1.1rem;
    text-align: center;
    position: relative;
    padding-top: 100px;
}
footer .note::before {
    position: absolute;
    content: '';
    top: 0;
    left: 50%;
    width: 1px;
    height: 80px;
    background-color: rgba(22, 22, 21, 0.3);
}
@media screen and (min-width: 560px) {
.page-nation {
	margin: 2.5em auto 0 auto;
	width: 80%;
	max-width: 800px;
}
.page-nation p a {
	font-size: 1.6rem;
}
}

/* contact.html
#contact
------------------------------------------ */
/* effect */
.fadein-title {
	animation: fadein-title 800ms cubic-bezier(0.77, 0, 0.11, 1) 200ms both;
}
@keyframes fadein-title {
from {
    opacity: 0;
    transform: translateY(20px);
}
to {
    opacity: 1;
    transform: translateY(0);
}
}
.fadein-content {
	animation: fadein-content 2s ease 0s both;
}
@keyframes fadein-content {
from {
    opacity: 0;
}
to {
    opacity: 1;
}
}

.opening > section {
    margin: 150px 30px 0 30px;
}
.title h1 {
	text-align: center;
}
.title h1 img {
    margin-bottom: 40px;
}

.cont > section {
    margin: 0 30px;
}
.cont p {
    margin-bottom: 45px;
    letter-spacing: 0.1em;
    line-height: 2;
}
.cont p:first-child {
    font-weight: 500;
    font-size: 1.5rem;
}
.cont > section > .contact {
text-align: center;
}
.cont > section > .contact > p a {
    font-size: 2rem;
    font-weight: 600;
}
.cont > section > .note {
    padding: 2rem;
    margin: 0 auto 45px auto;
    border: 1px solid #ccc;
    text-align: left;
    font-size: 1.2rem;
    line-height: 1.6;
}
.cont > section > .note ul li {
    /*list-style-type: disc;
    margin-left: 1.2rem;*/
}

@media screen and (min-width: 560px) {
.opening > section {
    width: 76.3020%;
    margin: 135px auto 0 auto;
}
.cont > section {
	width: 76.4322%;
    margin: 0 auto;
}
.cont > section > .note {
    width: 60%;
    text-align: center;
}
}
@media screen and (min-width: 960px) {
.opening > section {
	width: 760px;
    margin: 250px auto 0 auto;
}
.cont > section {
	width: 760px;
}
.title h1 img {
    width: 157px;
	height: 51px;
}
}
@media screen and (min-width: 1400px) {
}