@charset "UTF-8";
*, *::before, *::after {
  box-sizing: border-box;
}

body, h1, h2, h3, h4, p, figure, blockquote, dl, dd {
  margin: 0;
}

ul[role=list], ol[role=list] {
  list-style: none;
}

li {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

img, picture {
  max-width: 100%;
  display: block;
}

input, button, textarea, select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
* {
  box-sizing: border-box;
}

header .container {
  display: flex;
  height: 100px;
  align-items: center;
}
header .container .logo {
  width: 25%;
  max-width: 100px;
}
header .container nav {
  width: 100%;
}
header .container nav ul {
  display: flex;
  justify-content: space-between;
}
header .container nav ul li {
  width: 100%;
  text-align: center;
}

.container {
  max-width: 1240px;
  margin: 0 auto;
}

section {
  padding: 72px 0 72px 0;
}

img {
  width: 100%;
  height: auto;
}

html {
  font-size: 62.5%;
}

body {
  font-size: 1.4rem;
}

h1 {
  font-size: 5.6rem;
}

h2 {
  font-size: 2.8rem;
}

h3 {
  font-size: 3rem; /*元は2rem*/
  padding: 24px 0 40px 0;
  text-align: center;
}

section.concept .card {
  display: flex;
  margin: 0 0 25px 0;
}
section.concept .card .thumb {
  width: 20%;
}
section.concept .card .description {
  width: 100%;
  padding: 20px;
}

/*元は設定あり
section.menu {
  .wrapper{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    .card{
      width:30%;
    }
  }
}*/
section.member .card {
  height: 400px;
  margin: 0 0 25px 0;
  position: relative;
}
section.member .card .thumb {
  width: 60%;
  position: absolute;
  left: 0;
  margin: -30px 0 0 0;
}
section.member .card .thumb img {
  width: auto;
  height: 400px;
}
section.member .card .description {
  width: 60%;
  padding: 20px;
  position: absolute;
  background: #e2e2e2;
  right: 0;
  margin: 0 0 -30px 0;
}

body {
  background-color: #f1e6d6;
  font-family: "Zen Kaku Gothic New", serif;
  letter-spacing: 1px;
}

html {
  scroll-behavior: smooth;
}

.scroll-up {
  opacity: 0;
  visibility: hidden;
  transform: translateY(50px);
  transition: all 1s;
}

.scroll-up.is-show {
  opacity: 1;
  visibility: visible;
  transform: translateY(0px);
}

@media screen and (max-width: 1239px) {
  .container {
    max-width: 95%;
  }
}
@media screen and (max-width: 767px) {
  .container {
    max-width: 90%;
  }
}
/*共通部分*/
/*リンク*/
a {
  text-decoration: unset;
}

.btn {
  display: flex;
}
@media screen and (max-width: 767px) {
  .btn {
    justify-content: center;
  }
}
.btn.work {
  display: flex;
  justify-content: center;
}
.btn a {
  color: #104347;
  position: relative;
  font-size: 17px;
  transition: all 0.5s;
}
.btn a::before {
  background: rgba(16, 67, 71, 0.5);
  content: "";
  width: 100%;
  height: 1.5px;
  position: absolute;
  left: 0;
  bottom: -2px;
  margin: auto;
  transform-origin: left top;
  transform: scale(1, 0.5);
  transition: all 0.5s;
}
.btn a:hover {
  opacity: 0.8;
}
.btn a:hover::before {
  transform-origin: left top;
  transform: scale(1.5, 0.5);
}

/*見出し*/
h3 {
  color: #104347;
  font-family: "Sawarabi Mincho", serif;
  font-size: 40px;
}
h3 span {
  font-size: 25px;
}

/*ヘッダー*/
header {
  position: fixed;
  right: 0;
  width: 100%;
  z-index: 99;
  display: flex;
  justify-content: space-between;
}
header .global-header__site-logo {
  width: 50%;
  margin: 30px 0 0 30px;
}
@media screen and (max-width: 767px) {
  header .global-header__site-logo {
    margin: 20px 0 0 10px;
  }
}
header .global-header__site-logo:hover {
  transform: scale(0.95);
  transition: all 0.3s;
}
header nav ul {
  gap: 5%;
}
header nav ul .gnav__menu_list {
  height: 20px;
  margin: 2rem;
}
header nav ul .gnav__menu_list a {
  color: #104347;
  text-shadow: 1px 1px 2px rgb(255, 255, 255);
  padding-bottom: 5px;
  position: relative;
  font-family: "Lora", serif;
  font-weight: 800;
}
header nav ul .gnav__menu_list a::before {
  background: rgba(16, 67, 71, 0.5);
  content: "";
  width: 100%;
  height: 1.5px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
header nav ul .gnav__menu_list a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
  height: 2px;
}
header nav ul .sp-nav__menu_list {
  height: 20px;
  margin: 8rem 1rem;
}
header nav ul .sp-nav__menu_list a {
  color: #104347;
  text-shadow: 1px 1px 2px rgb(255, 255, 255);
  font-size: 18px;
  padding-bottom: 5px;
  position: relative;
  font-family: "Lora", serif;
  font-weight: 800;
}
header nav ul .sp-nav__menu_list a::before {
  background: rgba(16, 67, 71, 0.5);
  content: "";
  width: 100%;
  height: 1.5px;
  position: absolute;
  left: 0;
  bottom: 0;
  margin: auto;
  transform-origin: left top;
  transform: scale(0, 1);
  transition: transform 0.3s;
}
header nav ul .sp-nav__menu_list a:hover::before {
  transform-origin: left top;
  transform: scale(1, 1);
  height: 2px;
}
header .menu-btn {
  display: none;
}
header .sp-nav {
  display: none;
}
header .gnav__menu {
  margin: 30px 30px 0 0;
}
@media screen and (max-width: 767px) {
  header .gnav {
    display: none;
  }
  header .menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 45px;
    width: 45px;
    justify-content: center;
    align-items: center;
    z-index: 999;
    background-color: rgba(16, 67, 71, 0.8);
    border-radius: 10px;
  }
  header .sp-nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    background: rgba(242, 235, 216, 0.9);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 99;
    opacity: 0;
    transition: all 0.3s;
    transform: translate(100%);
  }
  header .sp-nav .sp-nav__menu {
    padding: unset;
  }
  header .sp-nav.show {
    opacity: 1;
    display: flex;
    transform: none;
    animation-name: ham-animation;
    animation-duration: 0.3s;
  }
  @keyframes ham-animation {
    0% {
      transform: rotate(45deg);
      opacity: 0;
    }
    100% {
      opacity: 1;
      transform: none;
    }
  }
  header .menu-line {
    content: "";
    display: block;
    height: 2px;
    width: 25px;
    border-radius: 3px;
    background-color: #f1e6d6;
    position: relative;
    transition: all 0.3s;
  }
  header .menu-line::before, header .menu-line::after {
    content: "";
    display: block;
    height: 2px;
    width: 25px;
    border-radius: 3px;
    background-color: #f1e6d6;
    position: absolute;
    transition: all 0.3s;
  }
  header .menu-line::before {
    top: -10px;
  }
  header .menu-line::after {
    top: 10px;
  }
  header .menu-line.active {
    background: transparent;
  }
  header .menu-line.active::before {
    transform: rotate(45deg);
    top: 0;
  }
  header .menu-line.active::after {
    transform: rotate(-45deg);
    top: 0;
  }
}
@media screen and (max-width: 767px) {
  header .container {
    max-width: 90%;
  }
}

.main {
  background: url(../img/main.webp) no-repeat center/cover;
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  .main {
    padding: 72px 0;
    background-position: 20%;
  }
}
.main .card {
  display: flex;
  align-items: center;
  gap: 5%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .main .card {
    display: block;
  }
}
.main .card .thumb {
  width: 60%;
}
@media screen and (max-width: 767px) {
  .main .card .thumb {
    width: 100%;
  }
}
.main .card h1 {
  width: 40%;
  font-family: "Noto Serif JP", serif;
  color: #104347;
  text-shadow: 4px 4px 4px rgba(255, 255, 255, 0.5);
  opacity: 0.8;
  letter-spacing: 5px;
  font-size: 66px;
}
@media screen and (max-width: 999px) {
  .main .card h1 {
    font-size: 55px;
  }
}
@media screen and (max-width: 767px) {
  .main .card h1 {
    width: 90%;
    font-size: 54px;
  }
}

.hero {
  position: relative;
  margin: 4rem 0 0 0;
}
.hero p {
  text-align: center;
}
.hero p a {
  color: #104347;
  font-family: "Lora", serif;
}
.hero p a .arrow {
  position: absolute;
  top: 0;
  left: 50%;
  width: 24px;
  height: 24px;
  margin: 0 0 0 -12px;
  border-left: 1px solid #104347;
  border-bottom: 1px solid #104347;
  transform: rotate(-45deg);
  box-sizing: border-box;
  animation-name: arrow-animation;
  animation-duration: 1s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes arrow-animation {
  0% {
    top: 0;
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    top: 40px;
    opacity: 0;
  }
}
.works {
  padding: 130px 0 100px 0;
}
@media screen and (max-width: 767px) {
  .works {
    padding: 72px 0;
  }
}
.works.about {
  padding: 72px 0;
}
@media screen and (max-width: 767px) {
  .works.about {
    padding: 20px 0 50px 0;
  }
}
.works .wrapper {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: center;
  gap: 13px;
  row-gap: 13px;
}
.works .wrapper::after {
  content: "";
  width: 30%;
}
.works .wrapper .thumblink {
  width: 30%;
  background-color: #c8b394;
}
@media screen and (max-width: 767px) {
  .works .wrapper .thumblink {
    width: 90%;
  }
}
.works .wrapper .thumblink .thumb {
  aspect-ratio: 4/3;
  position: relative;
}
@media screen and (max-width: 767px) {
  .works .wrapper .thumblink .thumb {
    aspect-ratio: unset;
  }
}
.works .wrapper .thumblink .thumb .description {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  opacity: 0;
  top: 0;
  bottom: 0;
  right: 15px;
  left: 15px;
  margin: auto;
  color: #fdfdfd;
}
.works .wrapper .thumblink .thumb .description h4 {
  font-size: 24px;
}
.works .wrapper .thumblink .thumb .description p {
  font-size: 16px;
}
.works .wrapper .thumblink:hover {
  background-color: rgba(72, 49, 16, 0.8);
}
.works .wrapper .thumblink:hover img {
  opacity: 0.25;
  transition: all 0.5s;
  transform: scale(1.05);
}
.works .wrapper .thumblink:hover .description {
  opacity: 1;
}

.separator {
  background: url(../img/onpu.webp) no-repeat center/cover;
  height: 200px;
}
@media screen and (max-width: 767px) {
  .separator {
    height: 100px;
  }
}

@media screen and (max-width: 767px) {
  .about {
    padding: 72px 0 0 0;
  }
}
.about .card {
  display: flex;
  align-items: center;
  gap: 5%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .about .card {
    display: block;
  }
}
.about .card .thumb {
  width: 35%;
}
@media screen and (max-width: 767px) {
  .about .card .thumb {
    width: 100%;
  }
}
.about .card .thumb .about_img {
  box-shadow: -30px -30px rgb(200, 179, 148);
}
.about .card .description {
  width: 65%;
}
@media screen and (max-width: 767px) {
  .about .card .description {
    width: 100%;
  }
}
.about .card .description h4 {
  font-size: 24px;
  color: #483110;
  margin: 0 0 25px 0;
  align-items: center;
  font-family: "Zen Old Mincho", serif;
}
@media screen and (max-width: 767px) {
  .about .card .description h4 {
    margin: 25px 0 20px 0;
  }
}
.about .card .description .sentence {
  font-size: 16px;
  color: #333333;
  margin: 0 0 30px 0;
}
.about .card .description .sentence p {
  margin: 20px 0 0 0;
}

@media screen and (max-width: 767px) {
  .skill {
    padding: 72px 0 50px 0;
  }
}
.skill .card {
  padding: 0 0 50px 0;
}
.skill .card h4 {
  font-size: 30px;
  font-family: "Zen Old Mincho", serif;
  color: #483110;
}
.skill .card .description {
  font-size: 16px;
  color: #333333;
  margin: 20px 0 0 0;
}
.skill .card .description .margin {
  font-size: 16px;
  color: #333333;
}
@media screen and (max-width: 767px) {
  .skill .card .description .margin {
    margin: 20px 0;
  }
}

.work-main {
  padding: 100px 0;
}
.work-main h2 {
  font-size: 40px;
  text-align: center;
  margin: 0 0 50px 0;
  color: #104347;
  opacity: 0.8;
  letter-spacing: 3px;
}
@media screen and (max-width: 767px) {
  .work-main h2 {
    font-size: 32px;
    margin: 0 0 30px 0;
  }
}
.work-main .overview {
  text-align: center;
  margin: 0 0 10px 0;
}
.work-main .overview .overview_description {
  font-size: 18px;
  color: #333;
}
@media screen and (max-width: 767px) {
  .work-main .overview .overview_description {
    font-size: 16px;
  }
}
.work-main .overview .url {
  font-size: 20px;
  margin: 5px 0 0 0;
}
@media screen and (max-width: 767px) {
  .work-main .overview .url {
    font-size: 16px;
  }
}
.work-main .overview .url .url_link {
  color: #333;
}
.work-main .overview .url .url_link:hover {
  -webkit-text-decoration: underline 1px;
          text-decoration: underline 1px;
  transition: all 0.3s;
  opacity: 0.8;
}
.work-main .thumb_top {
  margin: 0 0 30px 0;
}
.work-main .thumb_top.banner {
  width: 45%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .work-main .thumb_top.banner {
    width: 100%;
  }
}
.work-main .image_thumb {
  display: flex;
  gap: 1%;
}
.work-main .image_thumb img {
  aspect-ratio: 4/3;
  width: 50%;
  border-radius: 20px;
}
@media screen and (max-width: 767px) {
  .work-main .image_thumb {
    display: block;
  }
  .work-main .image_thumb img {
    width: 100%;
    padding: 3%;
  }
}

.work {
  margin: 100px 0 0 0;
}
@media screen and (max-width: 767px) {
  .work {
    margin: 50px 0 0 0;
  }
}
.work.banner {
  margin: 30px 0 0 0;
}
.work .box {
  display: flex;
  width: 100%;
  font-size: 16px;
  color: #333333;
  margin: 0 0 50px 0;
}
@media screen and (max-width: 767px) {
  .work .box {
    display: block;
  }
}
.work .box dt {
  width: 15%;
  -webkit-text-decoration: underline solid 0.5px;
          text-decoration: underline solid 0.5px;
  text-underline-offset: 12px;
  color: #104347;
}
@media screen and (max-width: 767px) {
  .work .box dt {
    width: 100%;
    text-underline-offset: 5px;
    margin: 0 0 5px 0;
  }
}
.work .box dd {
  width: 85%;
}
@media screen and (max-width: 767px) {
  .work .box dd {
    width: 100%;
  }
}
.work .box.second {
  margin: 0 0 25px 0;
}
.work .work-page h4 {
  font-size: 18px;
  margin: 100px 0 30px 0;
  color: #104347;
}
.work .work-page .work-page_wrapper {
  display: flex;
  gap: 2%;
}
@media screen and (max-width: 767px) {
  .work .work-page .work-page_wrapper {
    flex-direction: column;
    row-gap: 20px;
  }
}
.work .work-page .work-page_wrapper .work-page_top {
  overflow-y: scroll;
  height: 80vh;
  border: solid 6px #fdfdfd;
  border-radius: 20px;
}

.others_wrapper {
  margin: 12% 0 0 0;
}
.others_wrapper .card {
  display: flex;
  justify-content: space-around;
  width: 100%;
  gap: 2%;
}
@media screen and (max-width: 767px) {
  .others_wrapper .card {
    flex-direction: column;
    row-gap: 20px;
    padding: 4%;
  }
}
.others_wrapper .card .thumblink {
  width: 40%;
  background-color: #c8b394;
}
@media screen and (max-width: 767px) {
  .others_wrapper .card .thumblink {
    display: block;
    width: 100%;
    height: auto;
    background-color: #c8b394;
  }
}
.others_wrapper .card .thumblink .thumb {
  aspect-ratio: 4/3;
  position: relative;
  display: block;
}
@media screen and (max-width: 767px) {
  .others_wrapper .card .thumblink .thumb {
    aspect-ratio: unset;
  }
}
.others_wrapper .card .thumblink .thumb .description {
  position: absolute;
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  opacity: 0;
  top: 0;
  bottom: 0;
  right: 15px;
  left: 15px;
  margin: auto;
  color: #fdfdfd;
}
.others_wrapper .card .thumblink .thumb .description h4 {
  font-size: 24px;
}
.others_wrapper .card .thumblink .thumb .description p {
  font-size: 16px;
}
.others_wrapper .card .thumblink:hover {
  background-color: rgba(72, 49, 16, 0.8);
}
.others_wrapper .card .thumblink:hover img {
  opacity: 0.25;
  transition: all 0.5s;
  transform: scale(1.05);
}
.others_wrapper .card .thumblink:hover .description {
  opacity: 1;
}

.contact {
  background: url(../img/kenbangreen.webp) no-repeat center/cover;
  padding: 550px 0 0 0;
}
.contact .container {
  height: 270px;
}
.contact .container .contact_description {
  text-align: center;
  margin: -145px 0 0 0;
}
.contact .container .contact_description .contact_title {
  color: #fdfdfd;
}
.contact .container .contact_description p {
  color: #fdfdfd;
  font-size: 16px;
  margin: 0 0 7px 0;
}
.contact .container .contact_description .address {
  font-size: 20px;
  color: #483110;
  background-color: #c8b394;
  padding: 15px 50px;
  border-radius: 24px;
  display: inline-block;
}
.contact .container .contact_description .address:hover {
  transition: all 0.3s;
  letter-spacing: 2px;
}

.fade-in-text {
  position: relative;
  font-size: 60px;
  opacity: 0; /* 初めは透明に設定 */
  transform: translateY(30%); /* 下からスライドするために位置を下に設定 */
  animation: fadeInFromBottom 1s forwards; /* フェードインアニメーションの設定 */
}
.fade-in-text.work {
  transform: translateY(70%);
  font-family: "Noto Serif JP", serif;
}

@keyframes fadeInFromBottom {
  to {
    opacity: 1; /* アニメーション終了時に完全に表示 */
    transform: translateY(0); /* アニメーション終了時の位置 */
  }
}
/* 一番上に戻るボタン */
.top {
  display: flex;
  position: fixed;
  bottom: 15px;
  right: 15px;
  width: 50px;
  height: 50px;
  background-color: #B9936C;
  border-radius: 45px;
  opacity: 0;
  transform: translateX(100px);
  transition: all 0.3s;
}

.top.show {
  opacity: 0.9;
  transform: none;
}

.top_arrow {
  border-right: 1px solid #fdfdfd;
  border-top: 1px solid #fdfdfd;
  transform: rotate(-45deg);
  width: 10px;
  height: 10px;
  position: absolute;
  margin: auto;
  top: 5px;
  bottom: 0;
  right: 0;
  left: 0;
}

.introduction {
  padding: 100px 0;
  position: relative;
  font-size: 60px;
  opacity: 0; /* 初めは透明に設定 */
  transform: translateY(15%); /* 下からスライドするために位置を下に設定 */
  animation: fadeInSection 1s forwards; /* フェードインアニメーションの設定 */
}
@media screen and (max-width: 767px) {
  .introduction {
    padding: 70px 0;
  }
}
.introduction h2 {
  font-size: 40px;
  text-align: center;
  margin: 0 0 50px 0;
  color: #104347;
  opacity: 0.8;
  letter-spacing: 3px;
}
@media screen and (max-width: 767px) {
  .introduction h2 {
    font-size: 32px;
    margin: 0 0 30px 0;
  }
}
.introduction .card {
  display: flex;
  align-items: center;
  gap: 5%;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .introduction .card {
    flex-direction: column-reverse;
  }
}
.introduction .card .thumb {
  width: 35%;
  margin: -10% 0 0 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .introduction .card .thumb {
    width: 60%;
    margin: 0 auto;
  }
}
.introduction .card .thumb .about_img {
  box-shadow: 30px 30px rgb(200, 179, 148);
}
.introduction .card .description {
  width: 65%;
}
@media screen and (max-width: 767px) {
  .introduction .card .description {
    width: 100%;
    margin: 50px 0 0 0;
  }
}
.introduction .card .description h4 {
  font-size: 24px;
  color: #483110;
  margin: 0 0 25px 0;
  align-items: center;
  font-family: "Zen Old Mincho", serif;
}
.introduction .card .description p {
  font-size: 16px;
  color: #333333;
}
.introduction .card .description .margin {
  margin: 15px 0;
}

@keyframes fadeInSection {
  to {
    opacity: 1; /* アニメーション終了時に完全に表示 */
    transform: translateY(0); /* アニメーション終了時の位置 */
  }
}
.strength {
  padding: 72px 0 0 0;
}
.strength h3 {
  padding: 24px 0 60px 0;
}
.strength .wrapper .card {
  display: flex;
  align-items: center;
  gap: 2%;
  margin: 0 0 50px 0;
  border-bottom: 1px solid #C8B394;
  padding: 0 10px 52px 10px;
}
@media screen and (max-width: 767px) {
  .strength .wrapper .card {
    flex-direction: column;
    align-items: flex-start;
  }
}
.strength .wrapper .card h4 {
  font-size: 18px;
  color: #483110;
  font-family: "Zen Old Mincho", serif;
  margin: 0 0 5px 0;
  width: 20%;
}
.strength .wrapper .card h4 span {
  font-size: 26px;
  margin: 0 0 0 5px;
}
@media screen and (max-width: 999px) {
  .strength .wrapper .card h4 {
    width: 25%;
  }
}
@media screen and (max-width: 767px) {
  .strength .wrapper .card h4 {
    width: 100%;
    margin: 0 0 20px 0;
  }
}
.strength .wrapper .card .description {
  font-size: 16px;
  color: #333;
  width: 80%;
}
@media screen and (max-width: 767px) {
  .strength .wrapper .card .description {
    width: 75%;
  }
}
@media screen and (max-width: 767px) {
  .strength .wrapper .card .description {
    width: 100%;
  }
}
.strength .wrapper .card .description .margin {
  margin: 12px 0;
}
@media screen and (max-width: 767px) {
  .strength .wrapper .card .description .margin {
    margin: 15px 0;
  }
}
.strength .wrapper .card:nth-child(3) h4 span {
  letter-spacing: 4px;
}

footer {
  height: 80px;
  background-color: #104347;
  margin: -1px 0 0 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer p {
  color: #fdfdfd;
}/*# sourceMappingURL=style.css.map */