:root {
  --h1-col: #2b2d28;
  --h2-col: #4d5047;
  --h3-col: #e5e5e5;
  --li-col: #515D40;
  --link-bg: #656565;
  --link-hover: #b22222;
  --shadow-col: #44473f;
}


/* common settings */
/* common settings */
/* common settings */
* {
  margin: 0;
  padding: 0;
  background-color: #b5d287;
  box-sizing: border-box;
  font-family: Zeyada;
  font-weight: 200;

}

html {
  font-size: 16px;
}

@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-stretch: normal;
  src: url(https://fonts.gstatic.com/s/opensans/v40/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4gaVc.ttf) format('truetype');
}

@font-face {
  font-family: 'Pacifico';
  font-style: normal;
  font-weight: 400;
  src: url(https://fonts.gstatic.com/s/pacifico/v22/FwZY7-Qmy14u9lezJ-6H6Mw.ttf) format('truetype');
}

main {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: 100vh;
  font-family: Zeyada;
  overflow-x: hidden;
}

li,
dt,
dd {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
}

img {
  width: 100%;
  object-fit: cover;
  object-position: center;
}

h1 {
  display: block;
  text-align: center;
  width: 23rem;
  margin: 5rem auto;
  border-bottom: 1px solid var(--h2-col);
  line-height: 50%;
  font-size: 5rem;
  font-family: Zeyada;
  color: var(--h1-col);
  transform: skewX(-0.05turn);
  flex-shrink: 0;
}

h2 {
  text-align: center;
  font-size: 3rem;
  color: var(--h2-col);
}

h3 {
  font-size: 2.5rem;
  color: var(--h3-col);
}


footer {
  margin: 6rem 0 2rem 0;
  text-align: center;
  color: var(--h1-col);
}


/* navigation menu setting */
/* navigation menu setting */
/* navigation menu setting */
a,
a:visited,
a:hover,
a:active {
  color: inherit;
  text-decoration: none;
}

.outer-menu {
  position: fixed;
  top: 25px;
  left: 25px;
  z-index: 1;
}

.outer-menu .checkbox-toggle {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  cursor: pointer;
  width: 60px;
  height: 60px;
  opacity: 0;
}

.outer-menu .checkbox-toggle:checked+.hamburger>div {
  transform: rotate(135deg);
}

.outer-menu .checkbox-toggle:checked+.hamburger>div:before,
.outer-menu .checkbox-toggle:checked+.hamburger>div:after {
  top: 0;
  transform: rotate(90deg);
}

.outer-menu .checkbox-toggle:checked+.hamburger>div:after {
  opacity: 0;
}

.outer-menu .checkbox-toggle:checked~.menu {
  pointer-events: auto;
  visibility: visible;
}

.outer-menu .checkbox-toggle:checked~.menu>div {
  transform: scale(1);
  transition-duration: 0.75s;
}

.outer-menu .checkbox-toggle:checked~.menu>div>div {
  opacity: 1;
  transition: opacity 0.4s ease 0.4s;
}

.outer-menu .checkbox-toggle:hover+.hamburger {
  box-shadow: inset 0 0 10px rgba(0, 0, 0, 0.1);
}

.outer-menu .checkbox-toggle:checked:hover+.hamburger>div {
  transform: rotate(225deg);
}

.outer-menu .hamburger {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 55px;
  height: 55px;
  padding: 0.5em 1em;
  border-radius: 0 0.12em 0.12em 0;
  cursor: pointer;
  transition: box-shadow 0.4s ease;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: var(--li-col);
}

.outer-menu .hamburger>div {
  position: relative;
  flex: none;
  width: 100%;
  height: 2px;
  background: var(--h3-col);
  transition: all 0.4s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outer-menu .hamburger>div:before,
.outer-menu .hamburger>div:after {
  content: '';
  position: absolute;
  z-index: 1;
  top: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background: inherit;
  transition: all 0.4s ease;
}

.outer-menu .hamburger>div:after {
  top: 10px;
}

.outer-menu .menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  visibility: hidden;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  outline: 1px solid transparent;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outer-menu .menu>div {
  width: 600px;
  height: 200vw;
  color: rgba(255, 255, 255, 0.95);
  background: #d9edb2;
  border-radius: 50%;
  transition: all 0.4s ease;
  flex: none;
  transform: scale(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outer-menu .menu>div>div {
  text-align: center;
  max-width: 90vw;
  max-height: 100vh;
  opacity: 0;
  transition: opacity 0.4s ease;
  overflow-y: auto;
  flex: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.outer-menu .menu>div>div>ul {
  list-style: none;
  padding: 0 1em;
  margin: 0;
  display: block;
  max-height: 100vh;
}

.outer-menu .menu>div>div>ul>li {
  padding: 0;
  margin: 1em;
  font-size: 24px;
  display: block;
}

.outer-menu .menu>div>div>ul>li>a {
  position: relative;
  display: inline;
  cursor: pointer;
  transition: color 0.4s ease;
}

.outer-menu .menu>div>div>ul>li>a:hover {
  color: #707566;
}

.outer-menu .menu>div>div>ul>li>a:hover:after {
  width: 100%;
}

.outer-menu .menu>div>div>ul>li>a:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -0.15em;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--h3-col);
  transition: width 0.4s ease;
}

/* submenu */
ul.submenu {
  color: lavenderblush;
  font-size: medium;
  margin-top: .3em;
  list-style: tibetan;
}

.submenu>li>a {
  margin-top: .3em;
  transition: color 0.4s ease;
}

.submenu>li:hover>a {
  color: var(--link-bg);
  transition: color 0.4s ease;
}



/* ここからメイン */
/* ここからメイン */
/* ここからメイン */
/* ここからメイン */
/* ここからメイン */
/* ここからメイン */
/* ここからメイン */
/* ここからメイン */
/* ここからメイン */
/* ここからメイン */
/* ここからメイン */
/* ここからメイン */



/* top page */
/* top page */
/* top page */
main#top-main::before {
  content: "";
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("../images/top/top-page.jpeg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  min-height: 100vh;
  opacity: 0.6;
}

#top-main {
  & h1 {
    font-size: 5rem;
    background: none;
    border: none;
    position: fixed;
    left: 20%;
    top: 40%;
    color: var(--h1-col);
    opacity: 0.6;
    line-height: 1.5;
  }
  & .top-title span {
    display: block;
    background: none;
  }
}

/* about page */
/* about page */
/* about page */
.outer-menu-about .hamburger {
  background-color: #9aac67;
}
.outer-menu-about .hamburger>div {
  background: #515D40;
}

#about-page h1 {
    margin: 6rem auto 0 auto;
}

.about-link {
  font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
  text-decoration: underline;
}

.about-header-img-1,
.about-header-img-2,
.about-header-img-3 {
  display: block;
  object-fit: cover;
  height: 10vh;
  opacity: 0.6;
}

.about-header-img-1 {
  width: 100%;
}

.about-header-img-2 {
  width: 90%;
}

.about-header-img-3 {
  width: 80%;
}

.about-img-items {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.about-powerpoint {
  display: flex;
  justify-content: flex-start;
  align-items: flex-end;
  gap: 6rem;
  object-fit: cover;
}

.about-click-txt {
  margin-bottom: 7rem;
  font-size: 1.5rem;
  color: var(--h2-col);
  display: inline-block;
  /* transformを効かせるため */
  white-space: nowrap;
  /* 改行しない */
  animation: slide-right 3s ease-in-out infinite;
}

@keyframes slide-right {
  0% {
    transform: translateX(30%);
  }

  50% {
    transform: translateX(40%);
    /* 右へ移動 */
  }

  100% {
    transform: translateX(30%);
    /* 左に戻る */
  }
}

.about-powerpoint img {
  height: 30vh;
  margin: 6rem 0;
  box-shadow: 0 0 2px var(--shadow-col);
  border-radius: 2%;
  opacity: 0.6;
  transform: scale(0.97);
  transition: all 0.5s ease;
}

.about-powerpoint img:hover {
  transform: scale(1.01);
}

.about-dl {
  margin-top: 4rem;
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 1rem 1rem;
  font-size: 1.3rem;
  color: var(--shadow-col);
}

.about-dl li {
  list-style: none;
}

.about-dl li::before {
  content: "▶︎";
  margin-right: 0.5rem;
  color: var(--li-col);
}

dd {
  margin-bottom: 2rem;
  font-size: 0.8rem;
  color: var(--h2-col);
}



/* works page */
/* works page */
/* works page */
.works-item-inner {
  margin: 0 auto;
  max-width: fit-content;
}

.works-item-inner>h2 {
  margin: 4rem 0 1rem;
  border-bottom: 1px solid var(--link-hover);
  width: fit-content;
  line-height: .8;
  padding: 0 5em 0 1em;
}

.collection {
  max-width: 1200px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding: 0 2rem;
}

.collection>div {
  flex: 0 0 calc(50% - 1rem);
  text-align: center;
}

.contents {
  margin: 1rem 0;
  padding: 1rem 3rem;
}

.works-thumbnail {
  aspect-ratio: 11/7;
  box-shadow: 0 0 2px var(--shadow-col);
  border-radius: 2%;
  transition: all 0.4s ease;
}

.works-thumbnail:hover {
  transform: scale(1.05);
}

.link-2 {
  display: inline-block;
  margin: 0;
  padding: 0 1rem;
  font-size: 1.5rem;
  border-radius: 1px;
  text-decoration: none;
  color: #fff !important;
  background-color: var(--link-bg);
  opacity: 0.6;
  cursor: alias;
  min-width: 380px;
}

.link-2:hover {
  background-color: var(--link-hover);
}




/* works2 page */
/* works2 page */
/* works2 page */
/* 横スクロール */
.image-slider {
  height: 25vh;
  margin: 0 5rem 10em;
}

.scroll-container {
  display: flex;
  list-style: none;
  animation: infinity-scroll-left 40s infinite linear 0.5s both;
}

.scroll-item {
  display: flex;
  align-items: center;
}

.scroll-item img {
  width: 37vw;
  height: 31vh;
  margin: 1rem;
}

.image-seen {
  padding: 0 2rem 1rem 2rem;
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  background-position: cover;
  max-width: fit-content;
}

.slick-dots {
  bottom: -80px;
}

.img-2 {
  height: auto;
  max-width: 600px;
  cursor: pointer;
  border-radius: 2px;
  box-shadow: 0 0 2px var(--shadow-col);
  opacity: 0.9;
  transition: all 0.3s ease;
}

.img-2:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 20px #00000066;
}

.seen-txt {
  width: 100%;
  margin: 0.5rem 0 5rem 0;
  justify-content: flex-start;
  text-align: left;
  font-size: 1.5rem;
  color: var(--li-col);
}



/* contact page */
/* contact page */
/* contact page */
h3 {
  background: none;
}


.sns-sec {
  width: 100%;
  display: block;
  text-align: center;
}

.myprofile {
  width: 100%;
  padding: 2rem;
  background-image: url(../images/contact/icon.jpeg);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  opacity: 0.8;
}

.icon-img {
  margin-top: 3rem;
  width: 8rem;
  height: 8rem;
  border-radius: 50%;
}

.me-info {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  background: none;
}

.me-info img {
  width: 24px;
  height: 24px;
  background: none;
}


.social-link {
  display: flex;
  background: none;
}

.myname {
  font-size: 1.5rem;
  margin-right: 1.3rem;
  background: none;
}

.img-story {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin: 2rem 0 3rem;
  flex-wrap: nowrap;
  /* 折り返し禁止 */
  overflow-x: auto;
  overflow-y: hidden;
  -webkit-overflow-scrolling: touch;
  background: none;
}

.track {
  background: none;
}

.ra-men-img {
  flex: 0 1 auto;
  width: clamp(100px, 20vw, 160px);
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 6px;
}

.contact-sec {
  display: flex;
  justify-content: center;
  margin: 5rem 0 3rem 0;
}

.sns-cnt {
  margin: 1rem;
}

.contact-sec label {
  margin: 0;
  padding: 0;
  display: flex;
  font-size: 1.5rem;
}

.contact-sec input,
textarea {
  width: min(80vw, 50rem);
  max-width: 100%;
  height: auto;
  padding: 0.5rem;
  resize: vertical;
  background-color: #d9edb2;
  border: 2px solid #616459;
  border-radius: 2px;
  box-sizing: border-box;
}

.contact-sec input:focus,
textarea:focus {
  outline: none;
  border-color: #8fb67a;
  box-shadow: 0 0 0 4px rgba(143, 182, 122, 0.12);
}

button {
  width: min(20vw, 6rem);
  height: auto;
  margin-top: 2rem;
  padding: 0.3rem;
  background-color: #616459;
  border: 2px solid #c3c9b2;
  border-radius: 3px;
  color: var(--h3-col);
}

button:hover {
  background-color: #373931;
}









/* ここからレスポンシブ */
/* ここからレスポンシブ */
/* ここからレスポンシブ */
/* ここからレスポンシブ */
/* ここからレスポンシブ */
/* ここからレスポンシブ */
/* ここからレスポンシブ */
/* ここからレスポンシブ */
/* ここからレスポンシブ */
/* ここからレスポンシブ */
/* ここからレスポンシブ */
/* ここからレスポンシブ */


/* common setting */
/* common setting */
/* common setting */
@media(max-width: 991px) {
}
@media(max-width: 769px) {
}
@media(max-width: 575px) {
  .outer-menu .hamburger {
    width: 40px;
    height: 40px;
    padding: 0.3em 0.6em;
  }

  .outer-menu .hamburger>div,
  .outer-menu .hamburger>div:before,
  .outer-menu .hamburger>div:after {
    height: 1px;
  }

  h1 {
    margin: 4rem auto;
    width: 12rem;
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }
}

/* top page */
/* top page */
/* top page */
@media(max-width: 991px) {
}
@media(max-width: 769px) {
  #top-main {
    & h1 {
      font-size: 4rem;
      left: 10%;
      top: 50%;
      line-height: 1.5;
    }
  }
}
@media(max-width: 575px) {
  #top-main {
    & h1 {
      font-size: 3.5rem;
      left: 10%;
      top: 50%;
      line-height: 1.3;
    }
  }

}


/* about page */
/* about page */
/* about page */
@media(max-width: 991px) {
}
@media(max-width: 769px) {
}
@media(max-width: 575px) {
  .img-1,
  .img-2,
  .img-3 {
    height: 7vh;
  }

  .about-items {
    transform: scale(0.85);
  }

  .about-powerpoint {
    display: flex;
    flex-direction: column-reverse;
    justify-content: center;
    gap: 1rem;
  }

  .about-powerpoint img {
    margin: 0;
    width: 100%;
    height: auto;
    display: flex;
    transform: scale(0.85);
  }

  .about-click-txt {
    margin: 0;
    font-size: 1rem;
    align-self: flex-start;
  }

  .about-dl {
    display: flex;
    flex-direction: column;
    margin: 2em 2em 0 2em;
  }

  .about-dl dt {
    margin-bottom: 0.3rem;
  }

  .about-dl dd {
    margin-bottom: 1rem;
  }

}

/* works page */
/* works page */
/* works page */

@media(max-width: 991px) {
}
@media(max-width: 769px) {
}
@media(max-width: 575px) {
.works-item-inner>h2 {
  margin-bottom: 1.5rem;
  padding: 0 3rem 0 1rem;
}

  h3 {
    display: flex;
    justify-content: center;
  }

  .works-spantag {
    display: flex;
    flex-direction: column;
  }

  .link {
    font-size: 1rem;
    display: inline-block;
    margin: 0 auto;
  }

  .limk-2 {
    min-width: 340px;
  }

  .collection {
    flex-direction: column;
  }

  .collection>div {
    max-width: 100%;
    display: flex;
    flex-direction: column;
    gap: .5rem;
  }

  .contents {
    margin: 0;
    transform: scale(0.9);
  }

}

/* works2 page */
/* works2 page */
/* works2 page */

@media(max-width: 991px) {
}
@media(max-width: 769px) {
}
@media(max-width: 575px) {
  .slick-dots {
  bottom: -50px;
}

.scroll-item img {
  margin: 0;
  margin-bottom: 1rem;
}

  .image-seen {
    max-width: 90%;
  }

  .seen-txt {
    font-size: 1rem;
  }

  /* 2026-06-25 add */
  .image-slider {
    margin-bottom: 6rem;
  }

  /* 2026-07-01 add */
  .slick-list {
    margin: 0 auto;
  }

  .slick-track {
    display: flex !important;
    justify-content: center;
    margin: 0 auto;
  }

  .slick-dotted.slick-slider {
    margin: 0 3em;
  }


  /* 2026-07-06 add */
  .gallery-ul {
    list-style: none;
  }

}