@charset "UTF-8";
/* ------------------------------------------------------------
// design
------------------------------------------------------------ */
.about-page-title-img {
  background: url(../images/about/page-title-image.jpg) no-repeat center center/cover;
}

/* アンカーリンク全体のスタイル */
ul.anchor-links {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 100px;
}
ul.anchor-links li a {
  display: inline-block;
  padding: 10px 20px 8px;
  font-size: 16px;
  font-weight: 500;
  color: #333333;
  border-radius: 10px;
  box-shadow: inset 0px 0px 30px rgba(255, 255, 255, 0.6), inset 8px 8px 20px rgba(0, 0, 0, 0.1);
  transition: transform 0.2s, background-color 0.3s;
}
ul.anchor-links li a:hover {
  font-weight: 700;
  transform: scale(1.05);
}
@media print, screen and (max-width: 767px) {
  ul.anchor-links {
    justify-content: flex-start;
    gap: 8px;
    margin-bottom: 80px;
  }
  ul.anchor-links li a {
    font-size: 13px;
    padding: 8px 6px 7px;
  }
}

/* 色を個別にカスタマイズ */
ul.anchor-links li:nth-child(1) a {
  background-color: #fdb1b1;
}

ul.anchor-links li:nth-child(2) a {
  background-color: #c8f3ca;
}

ul.anchor-links li:nth-child(3) a {
  background-color: #b3e5f6;
}

ul.anchor-links li:nth-child(4) a {
  background-color: #f9ecc1;
}

ul.anchor-links li:nth-child(5) a {
  background-color: #fdd6b1;
}

ul.anchor-links li:nth-child(6) a {
  background-color: #f7b1fd;
}

ul.anchor-links li:nth-child(7) a {
  background-color: #cccccc;
}

.philosophy-box {
  text-align: center;
  max-width: 800px;
  margin: 40px auto;
  padding: 40px 30px;
  background: #fff5f5;
  background-image: radial-gradient(circle, #ffffff 1px, transparent 1px);
  background-size: 10px 10px;
  border-radius: 10px;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
  border: 2px solid #ffffff;
}
.philosophy-box div:not(:last-child) {
  margin-bottom: 20px;
}
.philosophy-box div span {
  display: block;
  font-size: 32px;
  font-weight: 700;
  line-height: 1.2;
}
.philosophy-box div p {
  font-size: 18px;
  color: #333333;
}
.philosophy-box div:nth-child(1) {
  color: #e8521d;
}
.philosophy-box div:nth-child(2) {
  color: #f29600;
}
.philosophy-box div:nth-child(3) {
  color: #00a99d;
}

.studio-text {
  margin-bottom: 40px;
  padding: 40px 30px;
  background: #f5f5f5;
  background-image: radial-gradient(circle, #fafafa 1px, transparent 1px);
  background-size: 10px 10px;
  border: 2px solid #ffffff;
  border-radius: 10px;
}

.table-about {
  margin-bottom: 40px;
}

.google-maps iframe {
  border-radius: 10px;
}

.diagonal-line-background {
  width: 100%;
  height: 16px;
  margin: 100px 0;
  background-size: auto auto;
  background: #ffffff;
  background-image: repeating-linear-gradient(-45deg, transparent, transparent 6px, #f5f5f5 6px, #f5f5f5 8px);
}
@media print, screen and (max-width: 767px) {
  .diagonal-line-background {
    height: 10px;
    margin: 50px 0;
  }
}

.public-box:not(:last-child) {
  margin-bottom: 60px;
}
.public-box .public-title {
  font-size: 20px;
  font-weight: 700;
  margin-bottom: 20px;
  padding: 10px 5px;
  border-top: 2px solid #cccccc;
  border-bottom: 2px solid #cccccc;
}
.public-box ul {
  display: flex;
  flex-wrap: wrap;
  margin: 0 30px;
  gap: 20px 10px;
}
.public-box ul li {
  width: calc((100% - 20px) / 3);
}
.public-box ul li a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  color: #333333;
  width: 100%;
  height: 60px;
  padding: 0 50px;
  background: #ffe056;
  border-radius: 10px;
  transition: 0.3s;
}
.public-box ul li a img {
  position: absolute;
  right: 20px;
}
.public-box ul li a:hover {
  color: #ffffff;
}
@media print, screen and (max-width: 991px) {
  .public-box .public-title {
    border-top: 1px solid #cccccc;
    border-bottom: 1px solid #cccccc;
  }
  .public-box ul li {
    width: calc((100% - 10px) / 2);
  }
  .public-box ul li a {
    font-size: 16px;
    height: 50px;
  }
}
@media print, screen and (max-width: 767px) {
  .public-box:not(:last-child) {
    margin-bottom: 40px;
  }
  .public-box ul li {
    width: 100%;
  }
}