@charset "UTF-8";

:root {
  --background-color: rgba(250, 224, 224, 0.8);
  --txt-color: rgb(82, 62, 54);
  --main-color: rgb(82, 62, 54);
  --sub-color: lightcoral;
  --point-color: #f5d9d7;
  --link-color: lightcoral;
  --link-hover: tan;
  --link-visited: tan;
}

*,body {

    font-family: "Shippori Mincho", serif;
    font-weight: 400;
    font-style: normal;
    cursor: crosshair;
    margin:0;
    padding:0;
    box-sizing: border-box;
    color: var(--txt-color);
    scroll-behavior: smooth; /* スムーススクロール */

}
body{
  background: linear-gradient(to bottom,#fff, #fef4f4, #fcf1e3);
  background-size: cover; background-attachment: fixed;
}

header{
  width: 100%;
  height: 20Px;
  background-color: var(--main-color);

}
main{
  width:100%;
  margin: 0 auto;
  background-color: rgba(255, 255, 255, 0.2);
}
section{
  width: 90%;
  margin: 0 auto;


}
p{
  padding: 1em;
  line-height: 1.5;
  font-size: 0.95em;
}

a{
  text-decoration: none;
  font-family: "Poiret One", serif;
  font-weight: 400;
  font-style: normal;
}
a:visited {
  color: var(--link-visited);
}
/* -----------------文字種・文字装飾----------------- */
.left {
  text-align: left;
}
.right {
  text-align: right;
}
.center {
  text-align: center;
}
.txt{
  text-align: justify;
	display: inline-block;
}
hr{
  border-top: solid 1px #f2f5f4;
}

/* -----------------レイアウト----------------- */
.flex-box{
  padding: 1.5em;
  height: 0 auto;
  margin: 0 auto;
  display: flex;
}
.flex2 {
  width: 70%;
  padding: 0.5em;

}
.flex1 {
  width: 30%;
  padding: 0.5em;
  writing-mode: vertical-rl;
}
.vartical-tab{
  writing-mode: vertical-rl;
  height: 0 auto;
  font-size: 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: #fff;
	background: var(--main-color);
	text-align: center;
}
nav ul li a:hover {
	background: 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%;
    margin: 0 auto;
  }
  
  
}
