@charset "utf-8";
/* CSS Document */

html {
  font-size: 100%;
}
body {
  font-family: "Julius Sans One", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 0.9rem;
  line-height: 1.7;
	background: #BA9B80;
	color: #261F1A;
}
a {
  text-decoration: none;
}
img {
  max-width: 100%;
}
li {
  list-style: none;
}

/*site-title*/
.site-title {
  padding: 0 16px;
  text-align: center;
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  filter: drop-shadow(1px 1px 10px #c0c0c0);
}
.sec-title {
  width: 100%;
  color: #fff;
  text-align: center;
  font-size: 4.5rem;
  filter: drop-shadow(1px 1px 10px #c0c0c0);
  position: absolute;
  top: 30%;
}

/*-------------------------------------------
ヘッダー
-------------------------------------------*/
#header {
  width: 100%;
  min-height: 100vh;
  background-image: url("img/about.png");
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
  padding: 20px 40px;
  position: relative;
}
nav ul {
  display: flex;
  justify-content: flex-end;
}
nav li {
  margin-left: 30px;
}
nav li a {
  color: #fff;
  font-weight: bold;
  transition: all  0.3s ease;
  filter: drop-shadow(1px 1px 2px #121212);
}
nav li a:hover {
  color: #261F1A;
}

nav p{
	text-align: center;
	color: #fff;
	font-size: 100px;
	padding-top: 350px;
}

/*content*/
.content {
  max-width: 1000px;
  height: 698px;
  margin: 100px auto;
  position: relative;
}

/*text*/
.text {
  max-width: 680px;
  background-color: #fff;
  padding: 84px 160px 84px 84px;
  position: absolute;
  left: 0;
  opacity: 70%;
}
.text::before {
    position: absolute;
    top: 20px;
    left: 20px;
    width: 100%;
    height: 100%;
    border: 1px solid #261F1A;
	opacity: 30%;
    content: '';
}
.text p {
  line-height: 1.8;
  margin-bottom: 35px;
}
.text .title {
  border-bottom: solid 1px #261F1A;
  display: inline-block;
  font-size: 1.875rem;
  font-weight: normal;
  margin-bottom: 30px;
}
.text .large {
  font-size: 1.875rem;
}

/*btn*/
.button a {
    background: #eee;
    border-radius: 9999px;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    max-width: 250px;
    padding: 10px 25px;
    font-family: "Noto Sans Japanese";
    text-decoration: none;
    color: #261F1A;
    line-height: 1.8;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}
.button a:after {
  content: "";
  position: absolute;
  top: 50%;
  bottom: 0;
  right: 2rem;
  font-size: 90%;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: right 0.3s;
  width: 6px;
  height: 6px;
  border-top: solid 2px currentColor;
  border-right: solid 2px currentColor;
  transform: translateY(-50%) rotate(45deg);
}
.button a:hover {
  background: #333;
  color: #FFF;
}
.button a:hover:after {
  right: 1.4rem;
}
body{
    vertical-align:middle; 
}

/*img*/
.img {
  max-width: 400px;
  position: absolute;
  top: 140px;
  right: 20px;
}
.img img {
  vertical-align: bottom;
}

/*-------------------------------------------
フッター
-------------------------------------------*/
#footer {
  font-size: 0.5rem;
  padding-top: 160px;
  text-align: center;
  color: #fff;
}

/*-------------------------------------------
円
-------------------------------------------*/

.link {
  padding: 10px;
}

.circle-text {
  position:relative;
  /*width: 300px;*/ /* 直径 */
  /*height: 30px;*/ /* 直径 */
  font-size: 25px;
  text-align: center;
  margin: 0;
  transform: rotate(-80deg); /* 円の回転 */
	color: #fff;
	opacity: 50%;
}

.circle-text span {
  position: absolute;
  top: 0;
  left: calc(50% - 15px); /* 中心点、、文字サイズ分ずらす */
  display: inline-block;
  width: 30px; /* 文字サイズより小さくしない */
  height: 125px; /* 半径 */
  transform-origin: center bottom; /* 回転の基準点 */
/*  border: solid 1px; */
}

.circle-text:nth-child(1){
	margin-top: 100px;
}

.circle-text span:nth-child(1) {
  transform: rotate(0deg);
}

.circle-text span:nth-child(2) {
  transform: rotate(22.5deg);
}

.circle-text span:nth-child(3) {
  transform: rotate(45deg);
}

.circle-text span:nth-child(4) {
  transform: rotate(67.5deg);
}

.circle-text span:nth-child(5) {
  transform: rotate(90deg);
}

.circle-text span:nth-child(6) {
  transform: rotate(112.5deg);
}

.circle-text span:nth-child(7) {
  transform: rotate(135deg);
}

.circle-text span:nth-child(8) {
  transform: rotate(157.5deg);
}

.circle-text span:nth-child(9) {
  transform: rotate(180deg);
}

.circle-text span:nth-child(10) {
  transform: rotate(202.5deg);
}

.circle-text span:nth-child(11) {
  transform: rotate(225deg);
}

.circle-text span:nth-child(12) {
  transform: rotate(247.5deg);
}

.circle-text span:nth-child(13) {
  transform: rotate(270deg);
}

.circle-text span:nth-child(14) {
  transform: rotate(292.5deg);
}

.circle-text span:nth-child(15) {
  transform: rotate(315deg);
}

.circle-text span:nth-child(16) {
  transform: rotate(337.5deg);
}


