<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "UTF-8";

html {
  font-size: 100%;
}
body{
  font-family: "Zen Kurenaido", sans-serif;
  color: #212121;
}
a {
  text-decoration: none;
}
img{
  width: 100%;
}
li {
  list-style: none;
}


/* 
共通
 */
.title{
  font-size: 2.8rem;
  margin: 100px 0 50px 0;
  color: #636363;
}
.site-title{
  line-height: 0.8rem;
  letter-spacing: 0.8rem;
}
.headline{
  font-size: 2.8rem;
  color: #636363;
  letter-spacing: 1.2rem;
  padding-top: 80px;
  left: 50px;
}


/* 
ヘッダー 
*/
#header .header_inner{
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1000px;
  margin: 15px auto;
  padding: 0 20px;
}
#header .header_inner h1 a img{
  max-width: 50%;
  height: auto;
  display: block;
}
#header .nav ul{
  display: flex;
  font-size: 1.5rem;
  gap: 0 20px;
}
#header .nav ul li:hover{
  color: #ccaf7b;
  cursor: pointer;
  transition-duration: 150ms;/* 要素のスタイルが変化するときに、その変化にかける時間 */
}
.hamburger {
  display: none;/* 完全に非表示にする */
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;/* 指マウスカーソル */
}
.hamburger span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: #333;
  border-radius: 2px;
}





/* 
メイン 
*/

/* メインビジュアル */
#mainvisual{
  min-height: 100vh;
  background-image:url(../imgs/mainvisual.png) ;
  background-position: center center;/* 水平方向と垂直方向の中央  */
  background-repeat: no-repeat;/* 繰り返さない（1回だけ表示） */
  background-size: cover;/* 背景画像を要素のサイズに合わせて拡大・縮小して全体を覆うように表示。 */
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
#mainvisual .site-title{
  width: 90%;
  max-width: 1000px;
  margin: 0 auto;
  padding: 5vw 3vw;
  text-align: center;
  color: white;
  background-color: rgba(37, 37, 37, 0.2);
  line-height: 4rem;
}
#mainvisual .site-title h2{
  font-size: 2rem
}
#mainvisual .site-title span{
  font-size: 2.5rem
}
#mainvisual .site-title p{
  font-size: 1rem
}

/* welcome */
#welcome{
  text-align: center;
  border: solid 2px rgb(251, 240, 198);
  margin: 50px 30px;
  padding: 50px 0 200px 0;
  line-height: 2rem;
  letter-spacing: 0.7rem;
  position: relative;
  box-sizing: border-box;/* 要素のサイズ（幅や高さ）の計算方法を制御するプロパティ */
  overflow: hidden;/* 親要素に指定し子要素のはみ出る所を無視する */
}
#welcome h3{
  margin-bottom: 100px;
}
#welcome ul{
  margin: 0;
  padding: 0;
}
#welcome ul li{
  position: absolute;
}
#welcome ul li:first-of-type{
  width: 200px;
  top: 10px;
  left: 5%;
}
#welcome ul li:nth-of-type(2){
  width: 180px;
  top: 400px;
  right: 5%;
}
#welcome ul li:nth-of-type(3){
  width: 180px;
  top: 330px;
  left: 5%;
}
#welcome ul li:last-of-type{
  width: 250px;
  top: 60px;
  right: 5%;
}

/* about */
#about{
  margin: 50px 0 0 0;
  padding: 0 50px 50px 50px;
  background-color: rgb(224, 219, 213);
  overflow: hidden;
  position: relative;
}
#about .comments ul{
  display: flex;
  padding: 30px 0;
  align-items: center;
}
#about .comments ul li:first-of-type{
  width: 300px;
  margin-right: 20px;
}
#about .comments ul li:last-of-type{
  width: 212.5px;
  position: absolute;
  top: -80px;
  right: 0%;
}
#about .comments ul li:nth-of-type(2) p{
  line-height: 1.7rem;
  letter-spacing: 0.6rem;
}


/* service */
#service {
  margin-bottom: 50px;
  padding: 50px;
  position: relative;
  min-height: 700px;
  box-sizing: border-box;
  overflow: hidden;
}
#service .headline {
  position: absolute;
  top: 30px;
  left: 50px;
}
#service .service-decorations {
  text-align: center;
}
#service .service-decorations .img-a{
  position: absolute;
  top: 0;
  right: 0;
  width: 350px;
}
#service .service-decorations .img-b {
  position: absolute;
  top: 234px; 
  left: 50%;
  transform: translateX(-50%);
  width: 50px;
  height: auto;
  z-index: 10; /* 他の要素より前面に表示 */
}
#service .service-decorations .img-c{
  position: absolute;
  bottom: 0;
  left: 4%;
  width: 230px;
}
#service .service-decorations .service-page1-wrapper {
  background-color: rgb(226, 226, 226); 
  padding: 20px 40px;
  border-radius: 10px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
#service .service-decorations .service-page1-wrapper .service-page1 {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}
#service .service-decorations .service-page1-wrapper .service-page1 img {
  width: 30px; 
  height: auto;
}
#service .service-decorations .service-page1-wrapper .service-page1 .page {
  margin-left: 15px;
  text-align: left;
}
#service .service-decorations .service-page1-wrapper .service-page1 .page p {
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
  margin: 5px 0;
  color: #333;
}
#service .service-decorations .service-page2-wrapper {
  background-color: rgb(226, 226, 226);
  padding: 20px 40px;
  border-radius: 10px;
  position: absolute;
  top: 58%;
  left: 35%;
  transform: translateX(-50%);
  box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
}
#service .service-decorations .service-page2-wrapper .service-page2 {
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
}
#service .service-decorations .service-page2-wrapper .service-page2 img {
  width: 30px;
  height: auto;
}
#service .service-decorations .service-page2-wrapper .service-page2 .page {
  margin-left: 15px;
  text-align: left;
}
#service .service-decorations .service-page2-wrapper .service-page2 .page p {
  font-size: 0.8rem;
  letter-spacing: 0.1rem;
  margin: 5px 0;
}
#service .service-decorations .service-page3 p {
  text-align: left;
  position: absolute;
  bottom: 10%;
  right: 15%;
  font-size: 0.8rem;
  line-height: 1.7rem;
  letter-spacing: 0.2rem;
}

/* works */
#works{
  background-color: rgb(224, 219, 213);
  margin-bottom: 20px;
  padding: 30px;
  position: relative;
  min-height: 700px;
}
#works img{
  width: 200px;
  position: absolute;
  top: 300px;
  left: 45%;
}

/* 
フッター
*/
#footer{
  text-align: center;
  margin-bottom: 10px;
  font-size: 0.7rem;
}







/* 
メディアクエリ
*/
@media screen and (max-width: 1280px){
  /* welcome */
  #welcome p{
    font-size: 0.8rem;
    line-height: 1.3rem;
    letter-spacing: 0.5rem;
  }
  #welcome ul li:first-of-type {
    width: 130px;
    top: 100px;
    left: 10%;
  }
  #welcome ul li:nth-of-type(2) {
    width: 120px;
    top: 440px;
  }
  #welcome ul li:nth-of-type(3) {
    width: 140px;
    top: 430px;
  }
  #welcome ul li:last-of-type {
    width: 180px;
    top: 100px;
  }

  /* about */
  #about .comments ul li:first-of-type{
    width: 220px;
    margin-right: 10px;
  }
  #about .comments ul li:last-of-type{
    width: 181.5px;
  }
  #about .comments ul li:nth-of-type(2) p{
    margin-left: 40px;
    line-height: 1.3rem;
    letter-spacing: 0.4rem;
    font-size: 0.9rem;
    z-index: 2; /* 画像より上に表示したい場合 */
    overflow-wrap: break-word; /* 文字の折り返しを許容 */
  }

  /* service */
  #service .service-decorations .service-page1-wrapper {
    padding: 20px 20px;
  }
  #service .service-decorations .service-page1-wrapper .service-page1 img {
    width: 40px; 
  }
  #service .service-decorations .service-page1-wrapper .service-page1 .page p {
    font-size: 0.65rem;
  }
  #service .service-decorations .service-page2-wrapper .service-page2 img {
    width: 40px;
  }
  #service .service-decorations .service-page2-wrapper .service-page2 .page p {
    font-size: 0.65rem;
  }
  #service .service-decorations .service-page3 p {
    bottom: 10%;
    right: 7%;
    font-size: 0.7rem;
    letter-spacing: 0.15rem;
  }
  
}



@media screen and (max-width: 1057px){
  #about .comments ul li:first-of-type{
    width: 210px;
    margin-right: 5px;
  }
  #about .comments ul li:last-of-type{
    width: 181.5px;
    right: -5%;
  }
  #about .comments ul li:nth-of-type(2) p{
    margin-left: 25px;
    line-height: 1.3rem;
    letter-spacing: 0.25rem;
    font-size: 0.85rem;
    position: relative;
    z-index: 2; /* 画像より上に表示したい場合 */
    overflow-wrap: break-word; /* 文字の折り返しを許容 */
  }
}






@media screen and (max-width: 874px){
  #about{
    padding: 0 20px 20px 10px;
  }
  #about .headline{
    margin-left: 40px;
  }
  #about .comments ul li:first-of-type{
    width: 200px;
  }
  #about .comments ul li:last-of-type{
    right: -7%;
  }
  #about .comments ul li:nth-of-type(2) p{
    letter-spacing: 0.2rem;
    font-size: 0.8rem;
  }
}








@media screen and (max-width: 768px){
  /* 共通 */
  .title{
    font-size: 1.8rem;
    margin: 70px 0 40px 0;
  }

  /* ヘッダー */
  #header .header_inner h1 a img {
    width: 30%;
  }
  #header .nav {
    display: none;
    position: absolute;
    top: 50px;
    right: 20px;
    background: white;
    box-shadow: 0 0 10px rgba(0,0,0,0.7);
    border-radius: 8px;
    padding: 30px 40px;
  }
  #header .nav.open {
    display: block;
  }
  #header .nav ul {
    flex-direction: column;
    gap: 10px;
    font-size: 1.2rem;
  }
  .hamburger {
    display: flex;
  }


  /* メインビジュアル */
  #mainvisual {
    min-height: 60vh;
    padding: 170px 0;
    margin-bottom: 30px;
  }
  .site-title{
  letter-spacing: 0.3rem;
  }
  #mainvisual .site-title h2 {
    font-size: 1rem;
  }
  #mainvisual .site-title span {
    font-size: 1.6rem;
  }
  #mainvisual .site-title p {
    font-size: 0.6rem;
  }
  /* welcome */
  #welcome{
    margin: 20px;
    padding: 20px 0 150px 0;
    line-height: 0.6rem;
    letter-spacing: 0.2rem; 
  }
  #welcome h3{
    margin-bottom: 50px;
    letter-spacing: 0.4rem;
  }
  #welcome p{
    font-size: 0.6rem;
  }
  #welcome ul li:first-of-type {
    width: 70px;
    top: 25px;
    left: 4%;
  }
  #welcome ul li:nth-of-type(2) {
    width: 90px;
    top: 320px;
  }
  #welcome ul li:nth-of-type(3) {
    width: 90px;
    top: 335px;
    left: 3%;
  }
  #welcome ul li:last-of-type {
    width: 120px;
    top: 5px;
    right: 1%;
  }
  /* about */
  .headline{
    font-size: 1.8rem;
    padding: 50px 50px 0 0;
    letter-spacing: 0.4rem;
  }
  #about{
    margin-top: 30px;
    padding: 0 20px 20px 0;
  }
  #about .comments ul{
    flex-direction: column;
  }
  #about .comments ul li:first-of-type{
    width: 100px;
  }
  #about .comments ul li:last-of-type{
    width: 124px;
    top: 0;
    right: -10%;
    height: 100%;
  }
  #about .comments ul li:last-of-type img{
    height: 100%;
    object-fit: cover;
  }
  #about .comments ul li:nth-of-type(2) p{
    line-height: 1rem;
    letter-spacing: 0.1rem;
    font-size: 0.6rem;
    word-break: break-all;
  }
  /* service */
  #service {
    margin: 0 0 20px 20px;
    padding: 20px;
    min-height: 500px;
  }
  #service .headline {
    top: 0px;
    left: 20px;
  }
  #service .service-decorations .img-a{
    top: -4%;
    right: 0;
    width: 190px;
  }
  #service .service-decorations .img-b {
    top: 104px; 
  }
  #service .service-decorations .img-c{
    width: 140px;
  }
  #service .service-decorations .service-page1-wrapper {
    padding: 10px 20px;
    top: 30%;
  }
  #service .service-decorations .service-page1-wrapper .service-page1 .page p{
    font-size: 0.5rem;
  }
  #service .service-decorations .service-page2-wrapper {
    padding: 10px 20px;
    top: 50%;
  }
  #service .service-decorations .service-page2-wrapper .service-page2 .page p {
    font-size: 0.5rem;
  }
  #service .service-decorations .service-page3 p {
    bottom: 22%;
    right: 7%;
    font-size: 0.5rem;
    line-height: 1rem;
    letter-spacing: 0.1rem;
  }

  /* works */
  #works{
    min-height: 500px;
  }
  #works img{
    width: 150px;
    top: 200px;
    left: 30%;
  }

  /* 
  フッター 
  */
  #footer{
    font-size: 0.5rem;
  }
}



@media screen and (max-width: 370px){
  #about .comments ul li:last-of-type{
    right: -20%;
  }
}</pre></body></html>