@charset "UTF-8";
* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  color: #666;
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-style: normal;
  font-size: 18px;
}
html {
  scroll-behavior: smooth;
}
img {
  width: 100%;
  vertical-align: bottom;
}
li {
  list-style: none;
}
a {
  text-decoration: none;
}

body {
  background-color: #f8f8f8;
}
.main-wrap {
  width: 90%;
  margin: 0 auto;
}
#optima {
  font-family: "optima-nova-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
}
#montserrat {
  font-family: "montserrat", "Zen Kaku Gothic New", sans-serif;
  font-weight: 400;
  font-style: normal;
}

@media (max-width: 600px) {
  * {
    font-family: "Zen Kaku Gothic New", sans-serif;
    font-weight: 500;
    font-style: normal;
    font-size: 16px;
  }
  span {
    color: #0abab5;
    font-size: 30px;
    font-family: "optima-nova-lt-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
}

/* header ********************************/
header {
  width: 90%;
  height: 10%;
  margin: 0 auto;
  background: #0abab4bf;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  top: 10px;
  z-index: 100;
  padding: 0 10px;
  color: #fff;
  backdrop-filter: blur(10px);
}
header.header-02 {
  background: rgba(255, 255, 255, 0.5);
  color: #0abab5;
  position: sticky;
}
.header-name {
  width: 70%;
}
.header-name a {
  display: flex;
  align-items: baseline;
  column-gap: 10px;
  transition: 0.3s;
}
.header-name a:hover {
  opacity: 0.7;
}
h1 {
  font-size: 25px;
  color: #fff;
  font-weight: normal;
}
.header-02 h1 {
  color: #0abab5;
}
.header-name a p {
  color: #fff;
}
.header-02 .header-name a p {
  color: #0abab5;
}
.header-02 .header-name a:hover {
  opacity: 0.7;
}
.ham-item-box {
  display: none;
}
nav {
  width: 30%;
}
.global-navi {
  display: flex;
  justify-content: space-between;
  align-items: center;
  column-gap: 20px;
}
.global-navi li a {
  font-size: 16px;
  margin: auto 0;
  position: relative;
  color: #fff;
}
.header-02 .global-navi li a {
  color: #0abab5;
}
.global-navi li a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 1px;
  background-color: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  transition: 0.3s;
}
.header-02 .global-navi li a::before {
  background-color: #0abab5;
}
.global-navi li a:hover::before {
  width: 100%;
}
.header-02 .global-navi li:last-child {
  background-color: #0abab5;
  padding: 10px;
  border-radius: 10px;
}
.header-02 .global-navi li:last-child a {
  color: #fff;
}
.header-02 .global-navi li:last-child a::before {
  appearance: none;
}
.header-02 .global-navi li:last-child a:hover {
  opacity: 0.5;
}
@media (max-width: 600px) {
  header,
  header.header-02 {
    width: 100%;
    height: 60px;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
    background-color: #ffffff00;
    backdrop-filter: blur(10px);
    z-index: 1000;
  }
  .header-name {
    width: 100%;
    height: auto;
    margin-top: 10px;
    position: static;
  }
  .header-name a {
    display: block;
  }
  h1 {
    font-size: 18px;
    color: #0abab5;
    margin: 0;
    padding-top: 0;
    z-index: 1000;
  }
  .header-name a p {
    font-size: 18px;
    color: #0abab5;
  }
  .global-navi {
    width: 100%;
    height: 100vh;
    background: rgba(248, 248, 248, 0.8);
    backdrop-filter: blur(1px);
    display: block;
    position: fixed;
    top: 0;
    left: 105%;
    transition: 0.3s;
    z-index: 100;
  }
  .global-navi li {
    display: block;
    margin: 1em 0 50px 100px;
  }
  .global-navi li:first-child {
    margin-top: 120px;
  }
  .global-navi li a {
    font-size: 20px;
    margin: 0;
    position: relative;
    color: #0abab5;
  }
  .global-navi li a::before {
    background-color: #0abab5;
  }
  .global-navi li a:hover::before {
    width: 100%;
  }
  .header-02 .global-navi li:last-child {
    background-color: #0abab5;
    width: fit-content;
    padding: 10px;
    border-radius: 10px;
  }
  .header-02 .global-navi li:last-child a {
    color: #fff;
  }
  .header-02 .global-navi li:last-child a::before {
    appearance: none;
  }
  .header-02 .global-navi li:last-child a:hover {
    opacity: 1;
  }
  .ham-item-box {
    display: block;
    width: 50px;
    padding: 15px 0;
    z-index: 1000;
    position: fixed;
    top: 15px;
    right: 5%;
    cursor: pointer;
    background: none;
    border: none;
    appearance: none;
  }
  .ham-item-box span {
    display: block;
    width: 40px;
    height: 2px;
    background: #0abab5;
    position: absolute;
    top: 50px;
    right: 5px;
    transition: 0.3s;
  }
  .ham-item-box .bar01 {
    top: 10%;
  }
  .ham-item-box .bar02 {
    top: 40%;
  }
  .ham-item-box .bar03 {
    top: 70%;
  }
  .show {
    position: fixed;
    top: 0;
    left: 0;
  }
  .close .bar01 {
    top: 45%;
    left: 5px;
    transform: rotate(135deg);
    background: #0abab5;
  }
  .close .bar02 {
    opacity: 0;
  }
  .close .bar03 {
    top: 45%;
    transform: rotate(-135deg);
    background: #0abab5;
  }
  .close .menu-text {
    color: #0abab5;
    transition: 0.3s;
  }
}
/* index.html*********************************/
/* main *************************************/
/*first-view*********************************/
.first-view {
  width: 100%;
  height: 90vh;
  position: relative;
  margin: 20px 0 200px 0;
}
h2 {
  font-size: 45px;
  letter-spacing: 0.5em;
  text-align: center;
  margin: 20px 0;
}
span {
  color: #0abab5;
  font-size: 45px;
  font-family: "optima-nova-lt-pro", sans-serif;
  font-weight: 400;
  font-style: normal;
}
.top-slider li {
  height: 300px;
  margin: 0 20px;
}

.top-slider li img {
  width: auto;
  height: 100%;
  object-fit: cover;
}

.bottom-slider li {
  height: 300px;
  margin: 0 20px;
}

.bottom-slider li img {
  width: auto;
  height: 100%;
  object-fit: cover;
}

.scroll {
  position: absolute;
  right: 50%;
  bottom: 5%;
  writing-mode: vertical-rl;
}
.scroll p {
  color: #000;
}
/* 線のアニメーション部分 */
.scroll::before {
  animation: scroll 2s infinite;
  background-color: #000;
  bottom: -120px;
  content: "";
  height: 100px;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  width: 1px;
}
/* 線のアニメーション */
@keyframes scroll {
  0% {
    transform: scale(1, 0);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  51% {
    transform: scale(1, 1);
    transform-origin: 0 100%;
  }
  100% {
    transform: scale(1, 0);
    transform-origin: 0 100%;
  }
}
@media (max-width: 600px) {
  .first-view {
    margin: 0 0 100px 0;
    padding-top: 60px;
    z-index: 1;
    height: 90vh;
  }
  h2 {
    font-size: 30px;
  }
  span {
    color: #0abab5;
    font-size: 30px;
    font-family: "optima-nova-lt-pro", sans-serif;
    font-weight: 400;
    font-style: normal;
  }
  .top-slider li {
    height: 300px;
    margin: 0 10px;
  }
  .top-slider li img {
    width: auto;
    height: 100%;
  }
  .bottom-slider li {
    height: 300px;
    margin: 0 10px;
  }
  .bottom-slider li img {
    width: auto;
    height: 100%;
  }
}
/*top_about***********************************/
.about {
  background: linear-gradient(
    #f8f8f8 0%,
    #0abab5 30%,
    #0abab5 70%,
    #f8f8f8 100%
  );
  padding: 100px 0;
}
.about h3 {
  font-size: 150px;
  margin-bottom: 0px;
  letter-spacing: 0.1em;
}
.about h3,
.about p {
  color: #fff;
}
.about .about-container {
  width: 90%;
  display: flex;
  flex-direction: row-reverse;
  gap: 50px;
  margin: 0 auto 100px;
  padding-bottom: 70px;
}
.about .about-text {
  position: relative;
  width: 60%;
}
.about .about-text .text-name {
  font-size: 40px;
}
.about .about-text p:nth-child(2) {
  margin: 10px 0 50px;
}
.about .about-text ul {
  margin-bottom: 50px;
}
.about .about-text ul li {
  color: #fff;
  margin-bottom: 20px;
}
.about .about-text .tool-container {
  display: flex;
  gap: 30px;
  margin-top: 30px;
}
.about .about-image {
  width: 40%;
}
.about .about-image img {
  border-radius: 10px;
}
.about .about-text button {
  background: none;
  border: none;
  appearance: none;
  position: absolute;
  bottom: -100px;
  right: 100px;
}
.about .about-text button a {
  color: #fff;
  font-size: 20px;
  position: relative;
}
.about .about-text button a:before {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: -80px;
  transform: translateY(calc(-50% - 2px)) rotate(30deg);
  width: 12px;
  height: 2px;
  background-color: #fff;
  transition: 0.3s;
}
.about .about-text button a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: -80px;
  transform: translateY(-50%);
  width: 60px;
  height: 2px;
  background-color: #fff;
  transition: 0.3s;
}
.about .about-text button a:hover:before,
.about .about-text button a:hover:after {
  right: -105px;
}

@media (max-width: 600px) {
  .about {
    padding: 100px 0 30px;
  }
  .about h3 {
    font-size: 70px;
  }
  .about .about-container {
    display: block;
  }
  .about .about-image {
    width: 100%;
    margin-bottom: 50px;
  }
  .about .about-text {
    width: 100%;
    margin-bottom: 50px;
  }
  .about .about-text .text-name {
    font-size: 30px;
  }
  .about .about-text .tool-container {
    gap: 10px;
  }
  .about .about-text button {
    bottom: -70px;
  }
}

/*works**************************************/
.works h3 {
  font-size: 150px;
  color: #0abab5;
  letter-spacing: 0.1em;
  margin-bottom: 50px;
}
.works-image {
  margin-bottom: 30px;
}
.works-image img {
  border-radius: 10px;
}
.works-container {
  width: 90%;
  margin: 0 auto 50px;
  display: grid;
  gap: 100px 50px;
  grid-template-columns: repeat(2, 1fr);
}
.works-item a {
  transition: 0.3s;
}
.works-item a:hover {
  opacity: 0.7;
}
.categoly-list {
  display: flex;
  gap: 30px;
  margin-bottom: 10px;
}
.categoly-list li {
  position: relative;
}
.categoly-list li::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #0abab5;
  position: absolute;
  bottom: -5px;
  left: 0;
}
.works-btn a {
  display: block;
  width: fit-content;
  margin: 0 auto;
  padding: 20px 40px;
  font-size: 20px;
  color: #fff;
  background-color: #0abab5;
  border: 1px solid #0abab5;
  transition: 0.3s;
}
.works-btn a:hover {
  background: #fff;
  color: #0abab5;
}

.loop-container {
  display: flex;
  gap: 15px;
  margin: 200px 0 50px 0;
  padding: 10px;
  width: 100%;
  transform: translateY(-50%);
  overflow: hidden;
}
.loop-container p {
  color: #f8f8f8;
  font-size: 100px;
  font-weight: bold;
  letter-spacing: 0.1em;
  white-space: nowrap;
  /* ↑テキストの折り返しを禁止するプロパティ */
  -webkit-text-stroke-width: 1px;
  /* ↑テキストの輪郭を縁取る太さ */
  -webkit-text-stroke-color: #0abab5;
  /* ↑テキストの輪郭の色 */
  user-select: none;
  /* ↑テキストの選択範囲作成禁止 */
}
.loop-container p:nth-child(odd) {
  animation-name: loop;
  animation-duration: 50s;
  animation-delay: -25s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}
.loop-container p:nth-child(even) {
  animation-name: loop2;
  animation-duration: 50s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
}

@keyframes loop {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(-100%);
  }
}
@keyframes loop2 {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-200%);
  }
}
@media (max-width: 600px) {
  .works h3 {
    font-size: 70px;
  }
  .works-image {
    margin-bottom: 20px;
  }
  /* .works-image img {
    width: 200px;
  } */
  .works-container {
    width: 90%;
    margin: 0 auto 50px;
    display: grid;
    gap: 50px;
    grid-template-columns: repeat(1, 1fr);
  }
  .works-text h4 {
    font-size: 35px;
  }
  .categoly-list {
    gap: 20px;
    margin-bottom: 20px;
  }
  .loop-container {
    margin: 150px 0 50px 0;
  }
  .loop-container p {
    font-size: 50px;
  }
}
/*contact************************************/
.footer .contact {
  margin: 0 auto;
  padding: 100px 0 50px;
  display: flex;
  justify-content: space-evenly;
  color: #000;
  overflow-x: hidden;
}
.contact-left h3 {
  color: #000;
  font-size: 70px;
  position: relative;
  padding-left: 20px;
  margin: 0;
}
.contact-left h3::before {
  content: "";
  width: 10px;
  height: 80%;
  background-color: #0abab5;
  position: absolute;
  top: 5px;
  left: 0;
}
.contact-left p {
  color: #000;
}
.contact-left p:nth-child(2) {
  text-indent: 25px;
}
.contact-left p:last-child {
  margin-top: 50px;
  font-size: 20px;
}
.contact-right div {
  margin-bottom: 100px;
}
.contact-right div.mail-address {
  margin-bottom: 0;
}
.contact-right .mail-address a {
  color: #000;
  background-color: #c5c5c5;
  border: none;
  font-size: 30px;
  transition: 0.3s;
}
.contact-right .mail-address a:hover {
  color: #fff;
}
.contact-right p {
  margin: 40px 0 60px;
  text-align: center;
  color: #000;
  position: relative;
}
.contact-right p::before {
  content: "";
  width: 40%;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 10px;
  left: 0;
}
.contact-right p::after {
  content: "";
  width: 40%;
  height: 1px;
  background-color: #000;
  position: absolute;
  top: 10px;
  right: 0;
}
.contact-right .contact-form a {
  background-color: #000;
  color: #fff;
  font-size: 20px;
  padding: 20px 180px;
  border-radius: 50px;
  transition: 0.3s;
}
.contact-right .contact-form a:hover {
  background-color: #fff;
  color: #0abab5;
}
@media (max-width: 600px) {
  .footer .contact {
    width: 90%;
    margin: 0 auto;
    padding: 50px 0 20px;
    display: block;
  }
  .contact-left h3 {
    font-size: 50px;
  }
  .contact-left p:last-child {
    font-size: 16px;
    text-align: center;
    margin: 50px 0;
  }
  .contact-right div {
    margin-bottom: 100px;
  }
  .contact-right .mail-address {
    margin-bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .contact-right .mail-address a {
    font-size: 20px;
  }
  .contact-right .contact-form {
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .contact-right .contact-form a {
    padding: 20px 100px;
  }
}

/* footer **********************************/
footer {
  background-color: #c5c5c5;
}
footer p.copy {
  text-align: center;
  padding: 10px 0;
}
@media (max-width: 600px) {
  footer {
    background-color: #c5c5c5;
  }
  footer p.copy {
    text-align: center;
    padding: 10px 0;
  }
}

/* contact/html******************************** */
.contact-google-form {
  margin-top: 100px;
}
.contact-google-form iframe {
  width: 100%;
  display: block;
  margin: 0 auto;
}
@media (max-width: 600px) {
  .contact-google-form {
    margin-top: 50px;
  }
  .contact-google-form iframe {
    width: 100%;
    height: 1700px;
  }
}

/* about.html*********************************/
.bread-list {
  margin-top: 30px;
  display: flex;
  margin-bottom: 10px;
}
.bread-list li {
  position: relative;
}
.bread-list li:nth-child(2)::before {
  content: ">";
  padding: 0 15px;
  color: #666;
}
.bread-list li:first-child::after {
  content: "";
  width: 100%;
  height: 1px;
  background-color: #666;
  position: absolute;
  bottom: -2px;
  left: 0;
}
h3 {
  color: #0abab5;
  font-size: 100px;
  letter-spacing: 0.05em;
  margin-bottom: 50px;
}
.about-page section,
.works-page section,
.works-item-page section,
.contact-page section {
  padding: 50px 50px 70px 50px;
  margin-bottom: 100px;
  background-color: #fff;
  border-radius: 10px;
}
.name-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: 0.5fr, 1fr;
  gap: 30px;
  margin-bottom: 100px;
}
.name-container .image {
  grid-row: 1/3;
  grid-column: 1/2;
  padding: 0;
  margin-bottom: 0;
  background-color: #fff;
}
.name-container .image img {
  border-radius: 10px;
  height: 100%;
}
.name {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
}
.name .heading-container {
  margin-bottom: 0;
}
p.my-name {
  font-size: 40px;
  text-indent: 1em;
}
.about-page section.name {
  margin-bottom: 0;
}
.heading-container {
  margin-bottom: 30px;
  display: flex;
  column-gap: 10px;
  align-items: baseline;
}
h4 {
  font-size: 50px;
  font-weight: normal;
}
section.plofile {
  margin-bottom: 0;
}
.plofile p {
  line-height: 1.5em;
}
.plofile-text p {
  margin-bottom: 10px;
}
.plofile-text p:last-child {
  margin-bottom: 0;
}
.skill-text {
  margin-bottom: 50px;
}
.skill-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(4, 1fr);
  column-gap: 100px;
  row-gap: 50px;
}
.skill-item {
  display: flex;
  gap: 10px;
}
.skill-item .skill-left {
  width: 10%;
}
.skill-item .skill-left img {
  width: 50px;
}
.skill-item .skill-right {
  width: 90%;
}
.skill-item p {
  margin-bottom: 10px;
}
.skill-level {
  display: flex;
  column-gap: 10px;
}
.blue {
  width: 33%;
  height: 20px;
  background-color: #0abab5;
}
.white {
  width: 33%;
  border: 1px solid #0abab5;
}

.strengths-circle {
  display: flex;
  justify-content: center;
  margin-bottom: 50px;
}
.strengths-circle div {
  width: 300px;
  height: 300px;
  border: 1px solid #0abab5;
  border-radius: 50%;
  margin: 0 -15px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.strengths-circle div p {
  font-size: 25px;
}
.strengths-text ul li {
  display: flex;
  margin-bottom: 30px;
}
.left-text {
  width: 30%;
}
.left-text h5 {
  font-size: 30px;
  font-weight: normal;
}
.right-text {
  width: 70%;
  text-align: justify;
}
.background-table {
  border-spacing: 0 30px;
}
.background-table tr {
  vertical-align: top;
}
.background-table tr th {
  text-align: left;
  position: relative;
  font-size: 20px;
}
.background-table tr th::before {
  content: "";
  width: 20px;
  height: 20px;
  background-color: #0abab5;
  border-radius: 50%;
  position: absolute;
  left: -30px;
}
.background-table tr th::after {
  content: "";
  width: 1px;
  height: 200%;
  background-color: #0abab5;
  position: absolute;
  top: 0;
  left: -20px;
}
.background-table tr td:last-child {
  width: 60%;
}
.background-table tr:nth-child(5) td:last-child {
  appearance: none;
  display: none;
}
.personality-image-container {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(3, 1fr);
  gap: 100px;
  justify-content: space-between;
}
.image-item img {
  width: 100%;
}
.image-item {
  position: relative;
}

.image-item p {
  color: #fff;
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  opacity: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.image-item:hover p {
  opacity: 1;
}

@media (max-width: 600px) {
  .bread-list {
    margin-top: 100px;
  }
  .bread-list li {
    font-size: 14px;
  }
  .bread-list li a {
    font-size: 14px;
  }
  h3 {
    font-size: 50px;
  }
  .about-page section,
  .works-page section,
  .works-item-page section,
  .contact-page section {
    padding: 20px 20px 30px 20px;
    margin-bottom: 30px;
  }
  .name-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: 0.5fr, 1fr;
    gap: 20px;
    margin-bottom: 30px;
  }
  .name-container .image img {
    border-radius: 10px;
    height: 100%;
  }
  .name {
    display: block;
  }
  .name .heading-container {
    margin-bottom: 0;
  }
  p.my-name {
    text-align: right;
    font-size: 20px;
    text-indent: 0;
    margin-top: 10px;
  }
  .about-page section.name {
    margin-bottom: 0;
  }
  .heading-container {
    margin-bottom: 10px;
    display: flex;
    column-gap: 10px;
    align-items: baseline;
  }
  h4 {
    font-size: 25px;
    font-weight: normal;
  }
  section.plofile {
    margin-bottom: 0;
  }
  .plofile p {
    line-height: 1.5em;
  }
  .plofile-text p {
    margin-bottom: 5px;
  }
  .skill-text {
    margin-bottom: 30px;
  }
  .skill-container {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(8, 1fr);
    row-gap: 30px;
  }
  .skill-container .skill-item:first-child {
    grid-row: 1/2;
  }
  .skill-container .skill-item:nth-child(2) {
    grid-row: 5/6;
  }
  .skill-container .skill-item:nth-child(3) {
    grid-row: 2/3;
  }
  .skill-container .skill-item:nth-child(4) {
    grid-row: 6/7;
  }
  .skill-container .skill-item:nth-child(5) {
    grid-row: 3/4;
  }
  .skill-container .skill-item:nth-child(6) {
    grid-row: 8/9;
  }
  .skill-container .skill-item:nth-child(7) {
    grid-row: 4/5;
  }
  .skill-item p {
    font-size: 16px;
  }
  .skill-item .skill-left {
    width: 20%;
  }
  .skill-item .skill-left img {
    width: 45px;
  }
  .skill-item .skill-right {
    width: 80%;
  }
  .skill-item p {
    margin-bottom: 10px;
  }
  .skill-level {
    display: flex;
    column-gap: 10px;
  }
  .skill-level {
    column-gap: 5px;
  }
  .blue {
    height: 15px;
  }
  .strengths-circle {
    margin-bottom: 30px;
  }
  .strengths-circle div {
    width: 110px;
    height: 110px;
    margin: 0 -5px;
  }
  .strengths-circle div p {
    font-size: 14px;
  }
  .strengths-text ul li {
    display: block;
    margin-bottom: 20px;
  }
  .left-text {
    width: 100%;
    margin-bottom: 10px;
  }
  .left-text h5 {
    font-size: 25px;
  }
  .left-text p {
    font-size: 14px;
  }
  .right-text {
    width: 100%;
  }
  .background-table {
    border-spacing: 0 20px;
    margin-left: 25px;
  }
  .background-table tr {
    display: flex;
    flex-direction: column;
    gap: 5px;
  }
  .background-table tr th {
    font-size: 20px;
    margin-bottom: 5px;
  }
  .background-table tr th::before {
    width: 15px;
    height: 15px;
    top: 5px;
    left: -25px;
  }
  .background-table tr th::after {
    content: "";
    width: 1px;
    height: 1400%;
    background-color: #0abab5;
    position: absolute;
    top: 20px;
    left: -18px;
  }
  .background-table tr:nth-child(4) th::after {
    content: "";
    height: 200%;
  }
  .background-table tr:last-child th::after {
    content: "";
    height: 1000%;
  }
  .background-table tr td:first-child {
    font-size: 14px;
  }
  .background-table tr td:last-child {
    width: 100%;
    text-align: justify;
    margin-bottom: 20px;
  }
  .background-table tr:nth-child(4) td:last-child {
    appearance: none;
    display: none;
  }
  .background-table tr:nth-child(5) td:last-child {
    appearance: auto;
    display: block;
  }
  .personality-image-container {
    display: grid;
    width: 100%;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    justify-content: space-between;
  }
}
/* works-html *************************************/
.works-page-container {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 100px 50px;
  margin-bottom: 200px;
}
@media (max-width: 600px) {
  .works-page-container {
    grid-template-columns: repeat(1, 1fr);
    gap: 50px;
    margin-bottom: 100px;
  }
}

/* works.html********************************* */
.detail-page .bread-list li:nth-child(2)::after {
  content: "";
  width: 60%;
  height: 1px;
  background-color: #666;
  position: absolute;
  bottom: -2px;
  right: 0;
}
.detail-page .bread-list li:last-child::before {
  content: ">";
  padding: 0 15px;
  color: #555;
}
.detail-page h3 {
  letter-spacing: 0;
  margin-bottom: 20px;
  font-size: 80px;
}
.detail-page .categoly-list {
  margin-bottom: 100px;
}
.detail-image {
  width: 100%;
  background-color: #fff;
  margin-bottom: 50px;
  border-radius: 10px;
}
.detail-image img {
  display: block;
  width: 80%;
  margin: 0 auto;
  border-radius: 10px;
}
.detail-page .detail-text01 .text {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-bottom: 50px;
}
.detail-page .text ul {
  display: flex;
  gap: 30px;
  align-items: baseline;
  width: 30%;
}
.detail-page .text p {
  width: 70%;
  text-align: justify;
}
/* **************************************** */
.detail-page .text:last-child p {
  width: 100%;
  margin-bottom: 20px;
}
/* ***************************************** */

.detail-page .text div {
  width: 70%;
}
.detail-page .text ul li:first-child {
  font-size: 28px;
}
.text p {
  line-height: 1.5;
}
.detail-wrap .detail-text01,
.detail-wrap .detail-text02,
.detail-wrap .detail-text03,
.detail-wrap .detail-text04 {
  background-color: #fff;
  margin-bottom: 50px;
  border-radius: 10px;
  padding: 50px;
}
.detail-text-container {
  display: flex;
  gap: 50px;
  justify-content: center;
}
.detail-wrap .detail-text02,
.detail-wrap .detail-text03 {
  width: 50%;
}
.detail-page .detail-text02 .text ul,
.detail-page .detail-text03 .text ul,
.detail-page .detail-text02 .text p,
.detail-page .detail-text03 .text ul {
  width: 100%;
}
.detail-text02 ol {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  margin: 30px 0 0 20px;
}
.detail-text02 ol li {
  background-color: #0abab5;
  color: #fff;
  padding: 10px 20px;
  border-radius: 10px;
}
.detail-text03 table {
  margin: 10px 0 0 20px;
}
.detail-text03 table {
  border-spacing: 0 20px;
}
.detail-text03 table th {
  text-align: left;
  font-weight: normal;
}
.detail-text03 table td {
  padding-left: 50px;
}
.whole-image div {
  margin-top: 50px;
}
.whole-image div p {
  position: relative;
  display: inline;
}
.whole-image div p::after {
  content: "";
  width: 110%;
  height: 1px;
  background-color: #0abab5;
  position: absolute;
  bottom: -5%;
  left: -5%;
}
.pc_container,
.sp_container {
  margin-top: 50px;
  display: grid;
  gap: 50px;
}
.pc_container {
  grid-template-columns: repeat(2, 1fr);
}
.sp_container {
  grid-template-columns: repeat(4, 1fr);
}
.pc_container li,
.sp_container li {
  border: 1px solid #c5c5c5;
  height: fit-content;
}
.image-container {
  padding-top: 50px;
  width: 70%;
  margin: 0 auto;
}
.ig-post-image-container {
  padding-top: 50px;
  width: 90%;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
}
.ig-post-image-container img {
  width: 30%;
}

@media (max-width: 600px) {
  .detail-page h3 {
    font-size: 40px;
    margin-bottom: 10px;
  }
  .detail-page .categoly-list {
    margin-bottom: 50px;
  }
  .detail-image {
    width: 100%;
    height: 200px;
    margin-bottom: 20px;
  }
  .detail-image img {
    width: 100%;
  }
  .detail-page .detail-text01 .text {
    display: block;
    margin-bottom: 50px;
  }
  .detail-page .text ul {
    display: flex;
    gap: 20px;
    width: 100%;
    margin-bottom: 10px;
  }
  .detail-page .text p {
    width: 100%;
  }
  .detail-page .text div {
    width: 100%;
  }
  .detail-page .text ul li:first-child {
    font-size: 25px;
  }
  .detail-page .text ul li:last-child {
    font-size: 14px;
  }
  .detail-wrap .detail-text01,
  .detail-wrap .detail-text02,
  .detail-wrap .detail-text03,
  .detail-wrap .detail-text04 {
    margin-bottom: 30px;
    padding: 20px;
  }
  .detail-text-container {
    display: block;
  }
  .detail-wrap .detail-text02,
  .detail-wrap .detail-text03 {
    width: 100%;
  }
  .detail-text02 ol {
    gap: 20px;
    margin: 0;
  }
  .detail-text02 ol li {
    padding: 10px;
  }
  .detail-text03 table {
    margin: 0;
  }
  .detail-text03 table {
    border-spacing: 0 10px;
  }
  .detail-text03 table td {
    padding-left: 50px;
  }
  .whole-image div {
    margin-top: 30px;
  }
  .pc_container,
  .sp_container {
    margin-top: 10px;
    gap: 20px;
  }
  .pc_container {
    grid-template-columns: repeat(1, 1fr);
  }
  .sp_container {
    grid-template-columns: repeat(2, 1fr);
  }
  .pc_container li,
  .sp_container li {
    border: 1px solid #c5c5c5;
    height: fit-content;
  }
  /* .pc_container li img,
  .sp_container li img {
    width: 50%;
  } */
  .image-container {
    padding: 0;
    margin-top: 30px;
    width: 100%;
  }
  .ig-post-image-container {
    padding-top: 30px;
    width: 100%;
    margin: 0 auto;
    flex-direction: column;
    gap: 50px;
  }
  .ig-post-image-container img {
    width: 100%;
  }
}

/* color-container */
.color-container {
  display: flex;
  width: 100%;
}
/* works01********************************* */
.color-container li {
  width: 60%;
  height: 30px;
  background-color: #fff;
  border: 1px solid #c5c5c5;
  border-radius: 10px 0 0 10px;
  position: relative;
}
.color-container li::before {
  content: "#FFF";
  position: absolute;
  bottom: -30px;
  left: 0;
}
.color-container li:nth-child(2) {
  width: 30%;
  background-color: #004add;
  border-radius: 0;
  border: none;
}
.color-container li:nth-child(2)::before {
  content: "#004ADD";
}
.color-container li:last-child {
  width: 10%;
  background-color: #555;
  border-radius: 0 10px 10px 0;
  border: none;
}
.color-container li:last-child::before {
  content: "#555";
}
/* works02******************************* */
.works02-page .color-container li {
  width: 80%;
  background-color: #0b7b5d;
  border: none;
}
.works02-page .color-container li::before {
  content: "#0b7b5d";
}
.works02-page .color-container li:nth-child(2) {
  width: 10%;
  background-color: #7ac38c;
  border: none;
}
.works02-page .color-container li:nth-child(2)::before {
  content: "#7AC38C";
}
.works02-page .color-container li:last-child {
  width: 10%;
  background-color: #fff;
  border: 1px solid #c5c5c5;
}
.works02-page .color-container li:last-child::before {
  content: "#FFF";
}
/* works03************************************ */
.works03-page .color-container li {
  width: 70%;
  background-color: #fff;
  border: 1px solid #c5c5c5;
}
.works03-page .color-container li::before {
  content: "#FFF";
}
.works03-page .color-container li:nth-child(2) {
  width: 20%;
  background-color: #e12819;
}
.works03-page .color-container li:nth-child(2)::before {
  content: "#E12819";
}
.works03-page .color-container li:last-child {
  width: 10%;
  background-color: #000;
  border: none;
}
.works03-page .color-container li:last-child::before {
  content: "#000";
}
/* works04******************************** */
.works04-page .color-container li {
  width: 40%;
}
.works04-page .color-container li:nth-child(2) {
  width: 40%;
  background-color: #f8f8f8;
  border: 1px solid #c5c5c5;
}
.works04-page .color-container li:nth-child(2)::before {
  content: "#F8F8F8";
}
.works04-page .color-container li:last-child {
  width: 20%;
  background-color: #0abab5;
}
.works04-page .color-container li:last-child::before {
  content: "#0ABAB5";
}
/* works05********************************** */
.works05-page .color-container li {
  width: 70%;
  background-color: #f2f2f0;
}
.works05-page .color-container li::before {
  content: "#F2F2F0";
}
.works05-page .color-container li:nth-child(2) {
  width: 20%;
  background-color: #118b50;
  border: none;
}
.works05-page .color-container li:nth-child(2)::before {
  content: "#118B50";
}
.works05-page .color-container li:last-child {
  width: 10%;
  background-color: #bdb084;
}
.works05-page .color-container li:last-child::before {
  content: "#BDB084";
}
/* works06********************************** */
.works06-page .color-container li {
  width: 80%;
  background-color: #000;
  border: none;
}
.works06-page .color-container li::before {
  content: "#000";
}
.works06-page .color-container li:nth-child(2) {
  width: 10%;
  background-color: #0abab5;
  border: none;
}
.works06-page .color-container li:nth-child(2)::before {
  content: "#0ABAB5";
}
.works06-page .color-container li:last-child {
  width: 10%;
  background-color: #fff;
  border: 1px solid #c5c5c5;
}
.works06-page .color-container li:last-child::before {
  content: "#FFF";
}
.works06-page .sp_container {
  grid-template-rows: repeat(2, 1fr);
}
.works06-page .sp_container li:first-child {
  grid-row: 1/3;
}
.works06-page .sp_container li:nth-child(2) {
  grid-row: 1/3;
}
.works06-page .sp_container li:nth-child(5) {
  grid-column: 3/4;
  grid-row: 2/3;
}
.works06-page .sp_container li:nth-child(6) {
  grid-column: 4/5;
  grid-row: 2/3;
}
/* works09******************************** */
/* .works04-page .color-container li {
  width: 40%;
}
.works04-page .color-container li:nth-child(2) {
  width: 40%;
  background-color: #f8f8f8;
  border: 1px solid #c5c5c5;
}
.works04-page .color-container li:nth-child(2)::before {
  content: "#F8F8F8";
}
.works04-page .color-container li:last-child {
  width: 20%;
  background-color: #0abab5;
}
.works04-page .color-container li:last-child::before {
  content: "#0ABAB5";
} */

.works09-page .whole-image {
  display: grid;
  gap: 50px;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: repeat(5, 1fr);
}
.works09-page .whole-image div:first-child {
  grid-column: 1/2;
  grid-row: 1/6;
}
@media (max-width: 600px) {
  .works09-page .whole-image {
    grid-template-columns: repeat(1, 1fr);
    grid-template-rows: repeat(1, 1fr);
  }
}
