@charset "utf-8";

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

img {
  width: 100%;
  vertical-align: bottom;
}

.modal-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
}
.modal {
  background: white;
  padding: 2rem;
  border-radius: 8px;
  text-align: center;
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}
.close-btn {
  margin-top: 1rem;
  background: #eac7de;
  color: white;
  padding: 0.5rem 1rem;
  border: none;
  border-radius: 4px;
  cursor: pointer;
  width: 50%;
  margin: 2% auto;
  appearance: none;
}
.modal_detail a {
  color: white;
  background-color: #eac7de;
}
.swiper {
  width: 400px;
}
.swiper-button-prev {
  color: #eac7de;
}

.news_text {
  font-size: 1.5em;
}
.news img {
  width: 300px;
}
.cls-1 {
  fill: none;
  stroke: #545454;
  stroke-width: 2;
  stroke-miterlimit: 10;
}
#svg-animation .st0 {
  fill: none;
  stroke: #fff;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 22px;
  stroke-miterlimit: 10;
  stroke-dasharray: 1500;
  stroke-dashoffset: 1500;
}

#sample path {
  fill-opacity: 0; /*透過0で塗りの色が見えない状態*/
  transition: fill-opacity 0.5s; /*0.5秒で色が付くアニメーション*/
  fill: none; /*塗りの色*/
  stroke: #000; /*線の色*/
}

#sample.done path {
  fill: #000; /*塗りの色*/
  fill-opacity: 1; /*透過1で塗りの色が見える状態*/
  stroke: none; /*線の色*/
}

.hero_logo {
  position: absolute;
  display: block;
  width: 55%;

  position: fixed;
  top: 20%;
  left: 20%;

  transform: rotate(-10deg);
}

span.job_title {
  font-size: 15%;
}
.slogan {
  position: fixed;
  width: 500px;
  display: flex;
  flex-direction: column;
  z-index: -100;
}

.slogan img {
  z-index: -99;
  width: 50%;
  position: fixed;
  right: 10%;
}
.icon_img_box {
  width: 45px;
  margin: 10%;
  text-align: center;
}

.icon_img_box a.insta img {
  width: 37px;
  margin: 3%;
}

.contact_icon {
  display: block;
  width: 50px;
  position: fixed;
  right: 1%;
  top: 10%;
}

.border {
  left: 400px;
  width: 3px;
  height: 80px;

  margin: 30px auto;
  border-left: 1px solid black;
}
.contact_icon p {
  display: inline-block;
  writing-mode: vertical-rl;
  font-size: 2.5em;
  font-family: "Righteous", sans-serif;
  font-weight: bold;
  color: rgb(0, 0, 0);
  /* text-shadow: #000 2px 3px 4px; */
}
.modal_open {
  cursor: pointer;
  background: green;
  color: #fff;
  padding: 10px 12px;
  z-index: 100;
  position: fixed;
}
.modal_overlay,
.modal_content {
  display: none;
  position: fixed;
}
.modal_content {
  width: 90%;
  height: auto;
  max-width: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: #fff;
  z-index: 101;
  text-align: center;
}
.modal_content img {
  max-width: 100%;
}
.modal_overlay {
  width: 100%;
  height: 100%;
  background: grey;
  opacity: 0.6;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
}
.modal_overlay.open,
.modal_content.open {
  display: block;
}
.modal_delete {
  cursor: pointer;
  text-align: center;
}

html {
  scroll-behavior: smooth;
}

body {
  width: 100vw;
  height: 100vh;
  background-color: #ffd5f0;
}

main {
  /* position: absolute; */
  /* display: block; */
  width: 900px;

  background-color: rgba(255, 255, 255, 0.866);
  margin: 0 auto;
  z-index: 100000;
  box-sizing: border-box;
  padding-bottom: 3%;
}

.empty_box {
  position: relative;
  width: 100%;
  height: 100vh;
}

.scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  bottom: 5%;
  left: 50%;
  /*全体の高さ*/
  width: fit-content;
  height: 50px;
}

/*Scrollテキストの描写*/
.scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -20px;
  top: -15px;
  /*テキストの形状*/
  color: black;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
}

/* 線の描写 */
.scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 1px;
  height: 30px;
  background: black;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 0;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 50px;
    opacity: 0;
  }
}

header {
  position: fixed;
  z-index: 99999999999999;
}

ol,
ul {
  list-style: none;
  list-style-type: none;
}

a {
  text-decoration: none;
  color: black;
  font-size: 0.8em;
  letter-spacing: 0.1em;
}

.lang-buttons {
  width: 60px;

  appearance: none;
  display: flex;
  justify-content: center;
  margin: 0 auto;
}

.lang-buttons button {
  width: 30px;

  cursor: pointer;
  background-color: transparent;
  border: none;
  color: #ccc;
}
.lang-buttons .active {
  background-color: none;
  color: #060606;
}

/* .jp,
.en {
  display: none;
} */
.hamburger {
  position: fixed;
  right: 0px;
  bottom: 0px;

  width: 100px;
  height: 170px;
  text-align: center;

  /* display: flex; */
  justify-content: space-between;

  border: 1px solid;
  align-items: center;

  background-color: #fff;
  padding: 13px;
}

.hamburger .btn-gNav {
  position: fixed;
  bottom: 25px;
  right: 35px;
  width: 30px;
  height: 24px;
  z-index: 12;
  box-sizing: border-box;
  cursor: pointer;
  -webkit-transition: all 400ms;
  transition: all 400ms;
  align-items: center;
}

.hamburger .btn-gNav span {
  position: absolute;
  width: 100%;
  height: 4px;
  background: black;
  border-radius: 10px;
  -webkit-transition: all 400ms;
  transition: all 400ms;
}

.hamburger .btn-gNav span:nth-child(1) {
  top: 0;
}

.hamburger .btn-gNav span:nth-child(2) {
  top: 10px;
}

.hamburger .btn-gNav span:nth-child(3) {
  top: 20px;
}

.hamburger .btn-gNav.open span:nth-child(1) {
  background: black;
  top: 6px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.hamburger .btn-gNav.open span:nth-child(2),
.hamburger .btn-gNav.open span:nth-child(3) {
  top: 6px;
  background: black;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}

.btn-gNav {
  display: none;
}

.gNav .gNav-menu li {
  margin: 0 auto;
  padding: 0 5px;
  font-size: 0.3em;
  padding: 5px;
}
.gNav .gNav-menu li a:hover {
  background-color: pink;
}

.sample-slider {
  width: 42vw;
  height: 23vw;
  /* margin-top: 100px; */
}

/* 桜を表示するコンテナのスタイル */
.cherry-blossom-container {
  position: relative;
  /* height: 100vh; コンテナの高さ */
  width: 100%; /* コンテナの横幅 */
  overflow: hidden; /* コンテナからはみ出した要素を隠す */
}

/* 桜の花びらのスタイル */
.petal {
  position: fixed;
  background-color: #ffc0cb; /* 花びらの色 */
  border-radius: 150% 0 150% 0;
  animation: animate-petal 10s linear;
  z-index: -9999999;
}

.petal::after {
  content: "";
  position: absolute;
  top: -14%;
  left: -10%;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #ffc0cb;
  border-radius: 150% 0 150% 0;
  transform: rotate(15deg);
  z-index: -9999;
}

.contact_responsive {
  display: none;
}

.scshot {
  width: 70%;
  height: 100%;

  box-shadow: #666 3px 3px 3px;
  margin: 0 auto;
}

.detail {
  width: 80%;
  margin: 0 auto;
}
.detail p {
  padding: 2% 0%;
  font-size: 1.5em;
}
/* .scshot img {
  width: 100%;
  height: 100%;
  margin: 10%;
  box-shadow: #666 3px 3px 3px;
} */
.mockup {
  width: 80%;
  margin: 0 auto;
}
.to_page {
  margin: 2% auto;
  text-align: center;
}
.to_page a {
  width: 20%;
  text-decoration: none;
  font-size: 24px;
  font-weight: bold;
  color: black;
  padding: 0% 2%;

  background-color: #fff;
  border-radius: 10px;
}
.to_page a:hover {
  background-color: rgb(167, 198, 121);
  transition: 0.3s;
  color: #fff;
}

.work_box.other_box {
  width: 95%;

  display: flex;
  margin: 0 auto;
  object-fit: cover;
}
.accordion-008 {
  max-width: 500px;
  margin-bottom: 10px;
  border-radius: 5px;
  box-shadow: 0 7px 15px -5px rgb(0 0 0 / 5%);
  background-color: #fff;
}

.accordion-008 h3.accordion-header summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  color: #333333;
  font-weight: 600;
  cursor: pointer;
}

.accordion-008 h3.accordion-header::-webkit-details-marker {
  display: none;
}

.accordion-008 h3.accordion-header::before,
.accordion-008 h3.accordion-header::after {
  width: 3px;
  height: 0.9em;
  border-radius: 5px;
  background-color: #333333b3;
  content: "";
}

.accordion-008 h3.accordion-header::before {
  position: absolute;
  right: 2em;
  rotate: 90deg;
}

.accordion-008 h3.accordion-header::after {
  transition: rotate 0.3s;
}

.accordion-008[open] h3.accordion-header::after {
  rotate: 90deg;
}

.accordion-008.worksInSchool {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  padding: 0.3em 2em 1.5em;
  color: #333333;
  transition: transform 0.5s, opacity 0.5s;
}

.accordion-008[open].worksInSchool {
  transform: none;
  opacity: 1;
}
.other_box a {
  width: 100%;
}
.stiky {
  height: 100%;
  position: sticky;
  top: 0%;

  border-radius: 9px;
  width: 80%;
  height: 20%;
  padding: 3%;
}
.stiky_flyer {
  height: 100%;
  position: sticky;
  top: 0%;

  border-radius: 9px;
  width: 80%;
  height: 20%;
  padding: 3%;
}
.works_all {
  width: 80%;
  margin: 0 auto;
}
.iraisya p {
  display: flex;
  justify-content: center;
  width: 100px;
  height: 100px;
  border: 1px solid #000;
  text-align: center;
  align-items: center;
  margin: 0 auto;
}
.tu-hacci_profile {
  width: 100%;
  height: 60%;
  background-color: #fff;
  padding: 3%;
}
.tu-hacci_all {
  width: 80%;
  display: flex;
  height: 100%;
  margin: 0 auto;
}

.tu-hacci_sns {
  width: 10%;
}
.tu-hacci_sns img {
  width: 100%;
}
.rakuten {
  width: 85%;
}

.rakuten_item {
  width: 100%;
  display: flex;
  justify-content: space-around;
  flex-direction: column;
}

.rakuten_item img {
  width: 70%;
  margin: 0 auto;
}

.rakuten_item p {
  width: 70%;
  margin: 0 auto;
}

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

@media screen and (max-width: 600px) {
  body {
    position: relative;
  }
  .slogan img {
    width: 100%;
    right: -30%;
    top: 40%;
  }
  main {
    /* position: relative; */
    width: 80%;

    background-color: rgba(255, 255, 255, 0.866);

    margin: 0 auto;
  }

  section {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 3;
  }

  h1 {
    position: fixed;
    top: 30%;
    left: 3%;
    font-size: 3vw;
    width: 390px;
    padding-top: 30vh;
  }
  h2 {
    width: 100%;
  }

  .hero_logo {
    width: 70%;
    height: 100%;
    position: fixed;
    top: 250px;
    left: 150px;
    fill: none;
    stroke: #000;
    stroke-miterlimit: 10;
    z-index: -1;
  }
  .hero_logo svg #text path {
    color: #000;
  }

  .img_top img {
    width: 900px;
    height: 100%;
    margin: 10%;
  }
  .text_area {
    width: 100%;
    height: 50%;
    padding: 5%;
  }

  .text_box {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }
  .text_box p {
    width: 100%;
  }

  .hamburger {
    display: block;
    width: 70px;
    height: 70px;
    bottom: 4px;
    right: 25px;
    border-radius: 50%;
    border: 1px solid;
    z-index: 1;
  }

  .hamburger.btn-gNav {
    display: block;
    align-items: center;
    background-color: #fff;
    border-radius: 40%;
    position: relative;
    z-index: 1;
  }
  p.btn-gNav {
    position: absolute;
    display: block;
    align-items: center;

    border-radius: 40%;
    border: none;
    width: 70px;
    height: 70px;
    bottom: 40px;
    right: 40px;
    z-index: 9999999999999;
  }

  .btn-gNav span {
    width: 70px;
    margin: 0 auto;
    position: absolute;

    right: 10px;
    z-index: 9999999999999;
  }
  .gNav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 60%;
    height: 100%;
    background-color: rgba(251, 248, 248, 0.8);
    font-size: 16px;
    box-sizing: border-box;
    z-index: 1;
    padding-top: 50px;
    transition: 0.3s;
    z-index: 1;
  }

  .gNav.open {
    right: 0;
  }

  .gNav .gNav-menu {
    padding: 0;
    width: 100%;
    height: 100%;
    display: block;
    flex-direction: column;
    text-align: center;
    font-size: 1em;

    /*justify-content: center;*/
  }

  .gNav .gNav-menu li {
    width: 86%;
    padding: 15px;
    border-bottom: #525252 1px solid;
    font-size: 1.2em;
  }

  .gNav .gNav-menu li a:hover {
    background-color: rgba(251, 248, 248, 0.8);
  }

  .works_container {
    position: relative;
  }
  .works_container01 {
    width: 90%;
    height: 40%;
  }

  .works_container02 {
    width: 100%;

    object-fit: contain;
  }
  .work_box {
    width: 100%;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    grid-template-rows: 1fr;

    margin: 0 auto;
  }

  .img_item {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  a.img_item:hover {
    opacity: 0.3;
  }

  .modal_open {
    width: 100%;
    height: 100%;
    cursor: pointer;

    color: #fff;
    padding: 10px 12px;
    z-index: 1;
  }
  .modal_overlay,
  .modal_content {
    display: none;
    position: fixed;
  }
  .modal_content {
    width: 500%;
    height: auto;
    max-width: 900px;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    z-index: 11111;
    text-align: center;
  }
  .modal_content img {
    max-width: 80%;
  }
  .modal_overlay {
    width: 100%;
    height: 100%;
    background: grey;
    opacity: 0.6;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
  }
  .modal_overlay.open,
  .modal_content.open {
    display: block;
  }
  .modal_delete {
    cursor: pointer;
    text-align: center;
  }

  .skill_icon {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100%, 1fr));
    grid-template-rows: 1fr;
    margin: 0 auto;
  }

  .skill_iconItem {
    width: 100%;
    height: 100%;
    background-color: #fff;
    margin: 0 auto;
  }

  .skill_iconItem img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    margin: 0 auto;
  }

  .skill_level {
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  .skill_level img {
    width: 100%;
    height: 100%;
    margin: 0 auto;
    object-fit: cover;
  }
  .skill_iconItem p.jp {
    min-width: 60%;
    padding-top: 5%;
    line-height: 1.2em;
    font-size: 50%;
  }

  .mail_icon {
    width: 100px;
    height: 100%;
  }

  .icon_item {
    width: 200px;
    display: flex;
    margin: 0 auto;
    position: relative;
    z-index: 1;
  }

  .btn {
    position: absolute;
    bottom: 10%;

    right: 20%;

    width: 200px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    text-decoration: none;
    color: white;
    background-color: #34bdc0;
    overflow: hidden;
    border: 1px solid white;
  }

  .btn::after {
    content: "";
    position: absolute;
    top: -10%;
    left: -20%;
    width: 40px;
    height: 100%;
    transform: scale(2) rotate(20deg);
    background-image: linear-gradient(
      100deg,
      rgba(199, 233, 30, 0) 10%,
      white 100%,
      rgba(255, 255, 255, 0) 0%
    );

    /* アニメーション */
    animation-name: shiny;
    animation-duration: 2s;
    animation-timing-function: ease-in-out;
    animation-iteration-count: infinite;
  }

  .img_item {
    width: 100%;
  }

  .l-lang {
    width: 60px;
    margin: 0 auto;
  }
  .l-lang img {
    width: 30px;
    height: 30px;
    margin: 0 auto;
  }

  .icon_img_box {
    display: block;
  }

  .contact_rs {
    display: flex;
    width: 80px;
    margin: 0 auto;
  }

  .contact_responsive1 {
    width: 40px;

    display: flex;
  }
  .contact_responsive2 {
    width: 40px;

    margin: 0 auto;
  }
  .container a #circular-text {
    position: absolute;
    top: -100%;
    left: -110%;

    border-radius: 50%;
    z-index: 3;
  }

  #circular-text:hover {
    display: block;
    position: absolute;
    top: -20px;
    box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
    transform: scale(1.1);
    transition: 0.8s;
    z-index: 3;
  }
  #container a.arrow_top {
    position: absolute;
    background-color: rgb(0, 0, 0);
    border-radius: 10%;

    left: 20%;
    top: 20px;
    z-index: 3;
  }

  #container a.arrow_top:hover {
    top: -3px;
    box-shadow: 0 2px 3px rgba(0, 0, 0, 0.3);
    z-index: 3;
  }
  footer {
    height: 20vh;
    width: 100vh;

    color: black;
    margin: 0 auto;
    text-align: center;
    z-index: 2;
    bottom: 0px;
  }

  small {
    position: absolute;
    width: 100%;
    text-align: center;
  }

  .zasshi_all {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
  }
  .steak img {
    width: 40%;
  }
  .nishio_container {
    width: 100%;
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }
  .nishio_profile {
    width: 90%;
    height: 100%;
    margin: 0 auto;
    position: static;
  }
  .fujitaya_all {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }

  .stiky {
    width: 90%;
    height: 30%;
    margin: 0 auto;

    position: static;

    background-color: #fff;
  }

  .stiky_flyer {
    width: 90%;
    height: 30%;
    margin: 0 auto;

    position: static;

    background-color: #fff;
  }

  .box_all {
    margin: 0% 5% auto;
  }
  .k2style_profile {
    width: 90%;
    height: 100%;
    margin: 0 auto;
    position: static;
  }

  .k2style_pfofile.stiky {
    position: static;
  }
  .an_box {
    display: flex;
    flex-direction: column;
    margin: 0 auto;
  }
  .k2style_all {
    width: 90%;
    margin: 0 auto;
    display: flex;
    justify-content: space-around;
    flex-direction: column;
  }
  .flyer {
    width: 100%;
  }
  .tu-hacci_all {
    width: 80%;
    display: flex;
    height: 100%;
    margin: 0 auto;
    flex-direction: column;
  }

  .bookcover_all {
    display: flex;
    flex-direction: column;
  }
  .profile {
    width: 100%;
  }
  .detail_all {
    display: flex;
    flex-direction: column;
  }
  .bookcover_item_box {
    width: 100%;
  }
  .buddies_all {
    display: flex;
    flex-direction: column;
  }
  .poster_all {
    display: flex;
    flex-direction: column;
  }
}

/* ======================================　レスポンシブ　ここまで========================================================= */

.contact_responsive1 {
  width: 40px;

  margin: 0 auto;
}
.contact_responsive2 {
  width: 60px;

  margin: 0 auto;
}
.contact_rs {
  width: 80px;
  margin: 0 auto;
}

.about_area {
  display: block;
  background-color: rgba(167, 198, 121, 0.384);
  width: 90%;
  height: 30%;

  gap: 30px;
  align-items: center;
  margin: 0 auto;
  z-index: 3;
}
.p-main {
  width: 100%;
  padding: 3%;
}
.jp p {
  display: flex;
  /* padding: 0.5%; */
  font-size: 1em;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  width: 100%;
}
p.jp.passion {
  width: 100%;
}

.en p {
  display: flex;
  padding: 0.5%;
  font-size: 1.25em;
  font-family: Verdana, Geneva, Tahoma, sans-serif;
  width: 100%;
  margin: 0 auto;
}

.jp span.profile_index {
  font-weight: bold;
  width: 100px;
  text-align: justify;
  text-align-last: justify;
}

.en span.profile_index {
  font-weight: bold;
  /* width: 40%; */
  text-align: justify;
  text-align-last: justify;
}

.slick-track img {
  padding: 30px;
  width: 20%;
  height: 430px;
  object-fit: cover;
}

.text_area {
  width: 100%;
  height: 50%;
  padding: 10px;
}

.text_box {
  width: 95%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  margin: 0 auto;
}
.text_box p {
  width: 100%;
}

.name_area {
  text-align: center;
  width: 100%;
  font-weight: bold;
  font-size: 1.8em;
  margin: 0 auto;
  text-align: center;
  padding: 10px;
}

.l-lang {
  display: flex;
}

p.jp {
  width: 90%;
  /* padding: 5%; */
  display: flex;
  flex-direction: column;
  letter-spacing: 0.02em;
  margin: 0 auto;
}

.type {
  display: inline-block;
}

span.assignment_index {
  font-size: 0.4em;
  color: #666;
  font-weight: 200;
}

span.title {
  font-size: 1.5em;
  padding: 1% 0%;

  font-family: "Gill Sans", "Gill Sans MT", Calibri, "Trebuchet MS", sans-serif;
  color: #333;
}

.jp span {
  display: block;
}

.skill_iconItem p.jp {
  min-width: 60%;
  padding-top: 5%;
  line-height: 1.2em;
  font-size: 1.4vw;
}

*/ .timeline {
  max-width: 400px;
  width: 100%;
  margin: 50px auto;
  padding: 0 20px;
}

.timeline li {
  /*線の起点とするためrelativeを設定*/
  position: relative;
  list-style: none;
  padding: 0 0 20px 0;
}

.timeline dl {
  margin: 0 0 20px 3em;
}

.timeline dd strong {
  display: block;
  padding: 10px 0;
}

/*絶対配置で線を設定*/
.border-line {
  /*線の位置*/
  position: absolute;
  left: 23px;
  top: 0;
  width: 4px; /*線の太さ*/
  height: 0; /*はじめは高さを0に*/
  background: #585858;
}

/*タイムラインの見出し横の丸の位置と形状*/
.timeline li::after {
  content: "";
  position: absolute;
  top: 0;
  left: 15px;
  width: 20px;
  height: 20px;
  background: #aaa;
  border-radius: 50%;
}

/*========= レイアウトのためのCSS ===============*/
h1 {
  position: fixed;
  left: 5%;
  top: 0%;
  /* width: 30%;
  height: 70%; */
  font-size: 13vw;
  font-family: "Righteous", sans-serif;
  color: #fff;
  z-index: -3;
  display: flex;
  flex-direction: column;
}

h2 {
  font-family: "Ribeye Marrow", serif;
  font-size: 3.5em;
  text-align: center;
  text-transform: uppercase;

  margin: 3% auto;
  width: 90%;

  color: black;

  background-color: #fff;
}
footer {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20vh;
  width: 100%;
  background: rgb(167, 198, 121);
  color: black;
  z-index: 2;
}
section:first-child {
  padding: 30px 30px 0px;
}

section:nth-child(2n) {
  background: #f3f3f3;
}

/* ===============  WORKS   ================= */

h3 {
  width: 100%;
  text-align: center;

  font-size: 3em;
  font-family: "Abril Fatface", serif;
  font-weight: 400;
  font-style: normal;
}

h4 {
  width: 100%;
  text-align: center;
  padding: 30px;
  font-size: 2em;
  font-family: serif;
  font-weight: 400;
  font-style: normal;
}
.img_item {
  width: 100%;
  height: 100%;
  position: relative;

  background-color: white;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.works_container01 {
  width: 100%;

  margin: 0 auto;
}
.works_container01 img {
  opacity: 1;
}
.site_logo {
  width: 70%;
  justify-content: center;
  align-items: center;
  margin: 5% auto;
}
.site_logo img {
  width: 100%;
  object-fit: cover;
}

.site_logo01 {
  width: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 5% auto;
  text-align: center;
}

.site_logo01 img {
  width: 100%;
  object-fit: cover;
  margin: 10% 0% auto;
}
/* .works_container01.work_box {
  width:100%;
  height: 100%;

  margin: 0 auto;
} */
.works_container02 {
  width: 100%;

  /* padding-bottom: 20%; */
}

/* .works_container02.work_box {
  width:100%;
  height: 70%;

  margin: 0 auto;
} */

.work_box {
  width: 95%;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(35%, 1fr));
  grid-template-rows: 1fr;

  margin: 0 auto;
  object-fit: cover;
}

.p.jp.hotel {
  width: 80%;
  font-size: 2em;
  text-align: center;
  padding-top: 10%;
}

.banner {
  width: 55%;
  margin: 0 auto;
}

.banner img {
  padding-top: 5%;
}

.thumbnail {
  width: 100%;
}

.thumbnail img {
  width: 100%;
  object-fit: cover;
  justify-content: center;
  align-items: center;
}

.work_box a:hover {
  transform: scale(1.02);
  transition: 0.3s;
}
.work_box a {
  margin: 3%;
}
.img_item:hover.mask {
  opacity: 1;
}
.caption p.jp {
  font-size: 130%;
  text-align: center;

  color: #fff;
}

.img_item.mask {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0; /* マスクを表示しない */
  background-color: rgba(0, 0, 0, 0.4); /* マスクは半透明 */
  -webkit-transition: all 0.2s ease;
  transition: all 0.2s ease;
}

.arrow_top {
  position: absolute;
  right: -10px;
  top: 2px;

  vertical-align: middle;
  color: #333;
  line-height: 1;
  width: 1.5em;
  height: 1.5em;

  border: 0.4em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(25%) rotate(-45deg);

  z-index: 2;
}

#container {
  position: relative;
}

#container a {
  position: absolute;
  background-color: pink;
  border-radius: 50%;

  left: 50%;
  top: -50%;
  z-index: 3;
}

#circular-text {
  position: absolute;
  background-color: pink;
  border-radius: 50%;
  left: 10px;
  bottom: 20px;
}

#circular-text:hover {
  top: -8px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
  transform: scale(1.1);
  transition: 0.8s;
}

#container a.arrow_top {
  position: absolute;
  background-color: rgb(0, 0, 0);
  border-radius: 50%;
}

#container a.arrow_top:hover {
  top: -10px;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.3);
}
/*  */

.btn {
  position: absolute;
  top: 58%;
  left: 28%;
  /* display: block; */
  width: 200px;
  height: 40px;
  line-height: 40px;
  text-align: center;
  text-decoration: none;
  color: white;
  background-color: #34bdc0;
  overflow: hidden;
  border: 1px solid white;
}

.btn::after {
  content: "";
  position: absolute;
  top: -10%;
  left: -20%;
  width: 40px;
  height: 100%;
  transform: scale(2) rotate(20deg);
  background-image: linear-gradient(
    100deg,
    rgba(199, 233, 30, 0) 10%,
    white 100%,
    rgba(255, 255, 255, 0) 0%
  );

  /* アニメーション */
  animation-name: shiny;
  animation-duration: 2s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.skill_icon {
  width: 80%;
  height: 100%;

  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(30%, 1fr));
  grid-template-rows: 1fr;
  margin: 0 auto;

  margin: 0 auto;
}

.skill_iconItem {
  width: 80%;
  height: 85%;

  background-color: #fff;
  margin: 0 auto;
}

.skill_iconItem img {
  width: 100%;
  height: 40%;

  object-fit: contain;

  margin: 0 auto;
}

.skill_level {
  width: 100%;
  margin: 0 auto;
  text-align: center;
  padding: 5% 0% 5% 0%;
}
.skill_level img {
  width: 15%;
  height: 10%;
  margin: 0 auto;
}

.mail_icon {
  width: 100px;
  height: 100px;
}

.icon_item {
  width: 200px;
  display: flex;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* =============================　　　雑誌　　　================== */
.zasshi_all {
  display: flex;
  justify-content: space-between;
  gap: 10%;
  width: 90%;
  margin: 0 auto;
  margin-bottom: 10%;
}
/* .spark {
  width: 100%;
  margin: 0 auto;
} */
.spark img {
  width: 100%;
  padding: 10% 2% 5% 0%;
}

.golf img {
  width: 100%;
  padding: 10% 2% 5% 0%;
}

h1.mz_title {
  padding: 0%;
  color: #fc85d2;
  width: 100%;
  position: relative;
  top: 0%;
  left: 0%;
  text-align: center;

  font-size: 3.8em;
  font-weight: bold;
  font-family: "Righteous", sans-serif;
  z-index: 3;
  line-height: 1.1em;
}

.box p {
  width: 60%;
  margin: 0 auto;
}

.mz_btn {
  font-size: 1.8em;
  font-weight: 900;
  width: 210px;
  text-align: center;
  margin: 1% auto;
  background-color: white;
  border-radius: 999px;
}

.mz_btn:hover {
  top: -10px;
  box-shadow: 5px 5px 5px rgba(0, 0, 0, 0.3);
  transform: scale(1.1);
  transition: 0.8s;
}

.bookcover p.mz_hrs {
  font-size: 1.8em;
  width: fit-content;
  font-weight: bold;
  margin: 0 auto;
  padding-bottom: 2%;
}

.flyer {
  width: 100%;
}
.flyer_item {
  width: 100%;
  display: flex;

  flex-direction: column;
  margin: 0% auto;
}
.flyer img {
  width: 100%;
  margin: 3% 0%;
}
.nishio_container {
  width: 100%;
  height: 100%;
  justify-content: space-between;
  display: flex;
}

.nishio {
  width: 70%;
  margin: 0 auto;
}
.iraisya {
  width: 50%;
  margin: 0 auto;
}
.iraisya img {
  width: 100%;
  padding: 5%;
  border-radius: 50%;
  margin: 0 auto;
}

.nishio img {
  width: 20%;
  padding: 3%;
  margin: 0 auto;
}
.box_all {
  width: 80%;
  margin-right: 5%;
}
.box {
  width: 90%;
}

.box_item {
  width: 100%;
  display: flex;
  gap: 3%;
}
.box p {
  width: 100%;
}

.box img {
  width: 50%;
}
.name_area01 {
  font-size: 1.9em;
  width: fit-content;
  margin: 0 auto;
  text-align: center;
  padding: 2%;
}

p.setsumei {
  padding: 3%;
}

.nishio_profile {
  background-color: #fff;

  border-radius: 9px;
  width: 80%;
  height: 20%;
  padding: 3%;
}
.nishio_sns {
  width: 100%;
  display: flex;
  gap: 3%;
  margin: 0 auto;
}

.nishio_profile.k2style_profile {
  background-color: #fff;

  border-radius: 9px;
  width: 80%;
  height: 40%;
  padding: 3%;
}
.k2style_sns {
  width: 50%;
  margin: 0 auto;
}
.k2style_sns img {
  width: 20%;
}

.k2style_all {
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-around;
}
.nishio_sns img {
  width: 100%;
}

/* .kouhuku {
  display: flex;
}

.ranparn {
  display: flex;
}
.marukaburi {
  display: flex;
} */
.anmaki {
  width: 90%;

  margin: 0 auto;
}

.anmaki p {
  width: 80%;
  padding-left: 7%;
}
.an_box {
  display: flex;
  width: 80%;
  padding: 5%;
}

.mock {
  padding: 2%;
}

.steak img {
  width: 100%;
  padding: 3%;
}

.izakaya {
  width: 100%;
}
.izakaya img {
  width: 100%;
  padding: 3%;
}
.steak {
  width: 100%;
}

.fujitaya_all {
  height: 100%;
  width: 90%;
  display: flex;

  margin: 0 auto;
}

.fujitaya_profile {
  width: 70%;
  height: 60%;
  background-color: #fff;
  border-radius: 9px;
  margin: 3%;
  padding: 2%;
  margin: 0 auto;
}
.fujitaya_logo {
  width: fit-content;
  margin: 0 auto;
}
.fujitaya_logo img {
  width: 50%;
  height: 10%;
  margin: 0% 25%;
}

.buddies_profile {
  width: 100%;
  height: 75%;
  background-color: #fff;
  border-radius: 9px;

  padding: 5%;
  margin: 0 auto;
}

.flag_detail {
  width: 100%;
}
.buddies_all {
  display: flex;
  gap: 5%;
  padding: 3% 3%;
}

.flag_request {
  list-style: inside;
}
/* .detail_all {
  display: flex;
  gap: 5%;
  height: fit-content;
  width: 90%;
  margin: 3% auto;
} */
.profile {
  width: 90%;

  background-color: #fff;
  border-radius: 9px;
  padding: 2%;
  margin: 1% auto;
}
.profile dl {
  display: flex;
  font-size: 1.3em;
}
.profile dl dt::before {
  content: "・";
}
ul.jp {
  width: 90%;
  margin: 0% auto;
}
ul.jp li {
  display: flex;
  font-size: 1.1em;
  line-height: 1.6em;
  width: 100%;
}
li span.profile_index {
  width: 200px;
  text-align: justify;
  text-align-last: justify;
}
.detail_list {
  width: 100%;
}

.detail_list dl dt {
  width: 150px;
  text-align-last: left;
}

.logo {
  width: 300px;
  margin: 0 auto;
}
.logo img {
  width: 100%;
}
.bookcover {
  width: 100%;
}

.bookcover img {
  width: 100%;
  padding: 3%;
}
.bookcover p {
  font-size: 1.3em;
  width: 75%;
  margin: 0 auto;
}
.img_container {
  /* display: flex; */
  width: 80%;
  margin: 0 auto;
}
.img_container img {
  width: 100%;
}
.bookcover_all {
  width: 90%;
  display: flex;
  margin: 0 auto;
  gap: 5%;
  padding-bottom: 5%;
}
.bookcover_item_box {
  width: 100%;
  margin: 0 auto;
  gap: 3%;
  align-items: center;
}
.bookcover_item01 {
  width: 100%;
  margin: 0 auto;
}
.bookcover_item02 {
  width: 50%;
  margin: 0 auto;
}

.other {
  list-style: inside;
}

.text_request {
  background-color: #eac7de;
}

.poster_profile {
  width: 100%;
  height: 75%;
  background-color: #fff;
  border-radius: 9px;

  padding: 5%;
}

.poster_item {
  width: 100%;
}
.poster_item01 {
  width: 80%;
  margin: 0 auto;
}

.poster_item01 img {
  width: 100%;
  margin-bottom: 5%;
}
.poster_item02 {
  width: 50%;
  margin: 0 auto;
}

.poster_item02 img {
  width: 100%;
  margin: 0 auto;
}

.poster_all {
  gap: 3%;
  display: flex;
  width: 90%;
  height: 100%;

  margin: 0 auto;
}

h2.theme_others {
  font-size: 2em;
}

.accordion {
  max-width: 90%;
  margin: 3% auto;
  border-radius: 5px;
  box-shadow: 0 7px 15px -5px rgb(0 0 0 / 5%);
  background-color: #fff;
}

.accordion summary {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  padding: 1em 2em;
  color: #333333;
  font-weight: 600;
  cursor: pointer;
}

.accordion summary::-webkit-details-marker {
  display: none;
}

.accordion summary::before,
.accordion summary::after {
  width: 3px;
  height: 0.9em;
  border-radius: 5px;
  background-color: #333333b3;
  content: "";
}

.accordion summary::before {
  position: absolute;
  right: 2em;
  rotate: 90deg;
}

.accordion summary::after {
  transition: rotate 0.3s;
}

.accordion[open] summary::after {
  rotate: 90deg;
}

.accordion.work_box {
  transform: translateY(-10px);
  opacity: 0;
  margin: 0;
  /* padding: 0.3em 2em 1.5em; */
  color: #333333;
  transition: transform 0.5s, opacity 0.5s;
}

.accordion[open].work_box {
  transform: none;
  opacity: 1;
}

.accordion.work_box a {
  margin: 3%;
}
