@charset "UTF-8";

:root {
  --background-color: #f7fcff;
  --txt-color: #1d2e2e;
  --main-color: rgba(44, 31, 31, .7);
  --sub-color: #5e262a;
  --point-color:  rgba(221, 222, 153, .3);
  --link-visited: tan;
}

*,body{
    font-family: "Klee One", cursive;
    font-weight: 400;
    font-style: normal;
    cursor: crosshair;
    margin:0;
    padding:0;
    color: var(--txt-color);
    scroll-behavior: smooth; /* スムーススクロール */
    line-height: 1.5;

}

body{
  background-image: url(bg-txt.jpg);
  background-attachment: fixed;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center bottom;
  height: 100vh;
  width: 100%;
}

header{
  width: 100%;
  height: 20px;
  background-color: var(--main-color);

}
main{
  width:100%;
  margin: 0 auto;
  background-color:  rgba(255, 255, 255, .4);

}

section{
  width: 90%;
  background-color:  rgba(255, 255, 255, .5);
  margin: 0 auto;


}

/* -----------------文字種・文字装飾----------------- */
h1 {
  text-align: center;
  font-size: 1.3em;
  font-family: "Poiret One", sans-serif;
  font-weight: 400;
  font-style: normal;
}

.center {
    text-align: center;

}
.txt{
  text-align: justify;
	display: inline-block;
  padding: 0.5em 2em 0.5em;
  margin-top: 1em;
  margin-bottom: 1em;
}

/* -----------------頁送り----------------- */

nav ul {
	list-style: none;
	margin: 0;
	padding: 0;
	display: table;
	table-layout: fixed;
	width: 100%;
}
nav ul li {
	display: table-cell;
	box-sizing: border-box;
}
nav ul li a {
	display: block;
	padding: .4em .8em;
	text-decoration: none;
  color: var(--txt-color0);
	text-align: center;
}
nav ul li a:hover {
	background: var(--point-color);
  color: var(--main-color)
}
/* -----------------フッター----------------- */
.footer-001 {
    display: flex;
    align-items: center;
    flex-direction: column;
    padding: 25px 10px 10px;
    background-color: var(--main-color);
}
.footer-001__list {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 1.5em;
    list-style-type: none;
    margin: 0 0 .5em;
    padding: .5em;
}
.footer-001__link {
    color: #fff;
    font-weight: 200;
    text-decoration: none;
}
.footer-text {
    margin: 0;
    color: #ffffffb3;
    font-weight: 200;
    font-size: 0.8em;
}
.footer-center {
    margin: 0;
    color: #ffffffb3;
    font-weight: 200;
    font-size: 0.8em;
    text-align: center;
}

/* -----------------アニメーション----------------- */
.animation{
  animation: fade-in 0.6s;
  animation-fill-mode: forwards;
}
@keyframes fade-in {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@media (min-width: 900px){

  section{
    width: 65%;
    background-color:  rgba(255, 255, 255, .7);
    margin: 0 auto;
  }
  
  
}
