@charset "UTF-8";
/*! destyle.css v4.0.0 | MIT License | https://github.com/nicolas-cusan/destyle.min.css */
*, ::before, ::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p, table, blockquote, address, pre, iframe, form, figure, dl {
  margin: 0;
}

h1, h2, h3, h4, h5, h6 {
  font-size: inherit;
  font-weight: inherit;
  margin: 0;
}

ul, ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

dt {
  font-weight: 700;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
  text-decoration: underline dotted;
}

b, strong {
  font-weight: bolder;
}

code, kbd, samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

svg, img, embed, object, iframe {
  vertical-align: bottom;
}

button, input, optgroup, select, textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

button, [type=button], [type=reset], [type=submit] {
  cursor: pointer;
}

button:disabled, [type=button]:disabled, [type=reset]:disabled, [type=submit]:disabled {
  cursor: default;
}

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  min-width: 0;
}

legend {
  padding: 0;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button, [type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

[type=number] {
  -moz-appearance: textfield;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

td, th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: 700;
}

/* destyleにスタイル追加 */
li {
  list-style: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
}

img {
  width: 100%;
  height: auto;
  vertical-align: middle;
}

address {
  font-style: normal;
}

sup {
  font-size: smaller;
  vertical-align: super;
}

/* destyleにスタイル追加②フォーム系 */
button,
input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
  color: inherit;
  text-transform: none;
  border-radius: 0;
}

textarea {
  resize: vertical;
}

[type=number] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
  appearance: textfield;
}
[type=number]::-webkit-outer-spin-button, [type=number]::-webkit-inner-spin-button {
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}

[type=radio],
[type=checkbox] {
  cursor: pointer;
}

button,
[type=submit],
[type=reset] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  cursor: pointer;
  background: none;
  border: none;
}

label {
  cursor: pointer;
}

/* --------------------------------------------
 font
-------------------------------------------- */
@font-face {
  font-family: "NotoSansJP";
  font-weight: 700;
  src: url("../font/NotoSansJP-Bold.woff") format("woff");
}
@font-face {
  font-family: "NotoSansJP";
  font-weight: 500;
  src: url("../font/NotoSansJP-Medium.woff") format("woff");
}
@font-face {
  font-family: "NotoSansJP";
  font-weight: 400;
  src: url("../font/NotoSansJP-Regular.woff") format("woff");
}
/* --------------------------------------------
 base
-------------------------------------------- */
body {
  overflow-x: hidden;
  font-family: "YakuHanJPs", "NotoSansJP", sans-serif;
  font-size: 0.8125rem;
  font-weight: 400;
  color: #1E1E1E;
}
@media (min-width: 768px) {
  body {
    font-size: 1rem;
  }
}

/* br */
.pc-only {
  display: none;
}
@media (min-width: 768px) {
  .pc-only {
    display: block;
  }
}

/* 非表示要素 */
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --------------------------------------------
layout
-------------------------------------------- */
.wrapper {
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  padding: 0 5px 5px;
}
@media (min-width: 768px) {
  .wrapper {
    padding: 0 13px 13px;
  }
}

main {
  flex: 1;
}

.container {
  max-width: 1200px;
  padding-inline: 6.4102564103vw;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container {
    padding-inline: 4.1666666667vw;
  }
}

/* --------------------------------------------
 header
-------------------------------------------- */
.header {
  position: sticky;
  top: 0;
  z-index: 40;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background: #FFF;
}
@media (min-width: 768px) {
  .header {
    padding-inline: 5.5555555556vw;
  }
}

.header-container {
  display: flex;
  justify-content: center;
  padding-top: 10px;
  padding-bottom: 8px;
}
@media (min-width: 768px) {
  .header-container {
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    padding-block: 15px;
    margin: 0 auto;
  }
}

.header__header-title {
  display: none;
}
@media (min-width: 768px) {
  .header__header-title {
    display: block;
    font-size: 1.4375rem;
    color: #CACACA;
  }
}

/* グローバルメニューopenボタン */
.header__menu-btn {
  position: relative;
  width: 3.125rem;
  height: 3.125rem;
  text-align: center;
  border: 1px solid #CACACA;
  border-radius: 50%;
}
@media (min-width: 768px) {
  .header__menu-btn {
    display: none;
  }
}

.header__menu-text {
  position: absolute;
  top: 50%;
  left: 50%;
  font-weight: 700;
  color: #CACACA;
  transform: translate(-50%, -50%);
}

/* グローバルメニューコンテンツ */
@media (max-width: 768px) {
  .header-nav__wrapper {
    display: flex;
    flex-direction: column;
    justify-content: space-around;
    height: 100%;
  }
}

.header-nav {
  position: fixed;
  top: 0;
  right: -80%;
  z-index: 50;
  width: 80%;
  height: 100%;
  margin: auto;
  visibility: hidden;
  background: #FFF;
  box-shadow: -5px 0 10px 0 rgba(148, 151, 134, 0.3);
  opacity: 0;
  transition: all 0.4s;
}
@media (min-width: 768px) {
  .header-nav {
    position: relative;
    right: auto;
    left: 0;
    width: auto;
    margin: 0;
    visibility: visible;
    background: transparent;
    box-shadow: none;
    opacity: 1;
    transform: none;
  }
}

/* メニューclose オーバーレイ */
.header-nav__overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  visibility: hidden;
  background: rgba(223, 223, 223, 0.6);
  -webkit-backdrop-filter: blur(1px);
  backdrop-filter: blur(1px);
  opacity: 0;
  transition: opacity 0.5s, visibility 0.5s;
}
@media (min-width: 768px) {
  .header-nav__overlay {
    display: none;
  }
}

/* メニューclose ボタン */
.header-nav__close-btn {
  padding: 10px;
  font-size: 1.125rem;
  font-weight: 700;
  color: #CACACA;
  letter-spacing: 0.04em;
}
@media (min-width: 768px) {
  .header-nav__close-btn {
    display: none;
  }
}

.header-nav__top {
  text-align: center;
  opacity: 0;
  transition: opacity 0.2s;
}
@media (min-width: 768px) {
  .header-nav__top {
    text-align: unset;
    opacity: 1;
  }
}

.header-nav-list {
  padding: 60px 30px 30px;
  margin: 10px;
  text-align: center;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .header-nav-list {
    display: flex;
    gap: 3.8194444444vw;
    padding: 0;
  }
}

.header-nav-list__item {
  width: 100%;
  transition: opacity 0.3s;
}
@media (min-width: 768px) {
  .header-nav-list__item {
    width: auto;
    padding: 2px;
  }
  .header-nav-list__item:hover {
    opacity: 0.5;
  }
}

.header-nav-list__item:not(:last-child) {
  padding-bottom: 30px;
}
@media (min-width: 768px) {
  .header-nav-list__item:not(:last-child) {
    padding-bottom: 0;
  }
}

.header-nav-list__link {
  display: block;
  padding: 10px;
  font-size: 1.1875rem;
  font-weight: 700;
  background: #FFF;
  border: 1px solid #93A86A;
  border-radius: 5px;
}
@media (min-width: 768px) {
  .header-nav-list__link {
    padding: 2px;
    border: transparent;
  }
}

/* メニュー内サイトタイトル */
.header-nav__bottom {
  padding: 0% 5% 40%;
  margin: 10px;
  background-position: bottom;
  background-size: contain;
  border-radius: 10px;
  background-image: url("../img/_common/image_bg-trees.webp");
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .header-nav__bottom {
    display: none;
  }
}

.header-nav-title {
  max-width: 300px;
  margin: 0 auto;
  text-align: center;
  opacity: 0;
  transition: opacity 2s 0.2s;
}

.header-nav-title__img {
  max-width: 100px;
  padding-bottom: 8px;
  margin: 0 auto;
}

.header-nav-title__name {
  padding-right: 6px;
  background: linear-gradient(90deg, rgb(135, 154, 57) 9%, rgb(157, 182, 113) 30%, rgb(87, 139, 101) 83%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.header-nav-title__heading {
  font-size: min(5.1282051282vw, 25px);
  font-weight: 500;
  border-bottom: 1px solid #e8e8e8;
}

/* グローバルメニュー オープン */
@media (max-width: 768px) {
  body.is-open {
    overflow: hidden;
  }
  body.is-open .header-nav {
    right: 0%;
    visibility: visible;
    opacity: 1;
  }
  body.is-open .header-nav__overlay {
    visibility: visible;
    opacity: 1;
  }
  body.is-open .header-nav__top {
    opacity: 1;
  }
  body.is-open .header-nav-title {
    opacity: 1;
  }
}
/* --------------------------------------------
 link
-------------------------------------------- */
/* ページ内リンク調整 */
.anchor {
  padding-top: 100px;
  margin-top: -100px;
}

/* リンクボタン */
.page-link {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90%;
  padding-block: 0.875rem;
  margin: 0 auto;
  border: 0.5px transparent solid;
  border-radius: 50px;
  transition: opacity 0.2s, box-shadow 0.2s;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  .page-link {
    display: inline-flex;
    width: auto;
    padding-inline: 1.25rem;
  }
}

.page-link__text {
  padding-right: 20px;
  font-size: 0.875rem;
}

.page-link__arrow {
  position: relative;
  width: 30px;
  height: 13px;
  overflow: hidden;
}
.page-link__arrow::before {
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-size: contain;
  transition: transform 0.3s;
  background-image: url("../img/_common/icon_arrow-to-right.svg");
  background-repeat: no-repeat;
}

/* リンクボタン ホバー時 */
@media (min-width: 768px) {
  .page-link:hover {
    border: 0.5px #CACACA solid;
    box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0);
  }
  .page-link:hover .page-link__arrow::before {
    transform: translateX(3px);
  }
}
/* --------------------------------------------
components
-------------------------------------------- */
/* 大きい見出し */
.main-heading {
  padding-top: 24px;
  padding-bottom: 40px;
  font-size: 20px;
  text-align: center;
}
@media (min-width: 768px) {
  .main-heading {
    padding-bottom: 80px;
    font-size: 40px;
  }
}

/* --------------------------------------------
 loading
-------------------------------------------- */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  pointer-events: none;
  background-color: #fff;
}

body.is-fixed {
  overflow: hidden;
}

.loading-pulse {
  width: 60px;
  height: 60px;
  margin: 100px auto;
  background-color: #93A86A;
  border-radius: 100%;
  opacity: 0;
}

/* --------------------------------------------
 animation
-------------------------------------------- */
/* 上にふわっと */
.fadeup-animation {
  opacity: 0;
  transition: opacity 0.7s, transform 0.7s;
  transform: translateY(10px);
}

.fadeup-animation.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ふわっと */
.fadein-animation {
  opacity: 0;
  transition: opacity 1s 0.2s;
}

.fadein-animation.visible {
  opacity: 1;
}

/* --------------------------------------------
 footer
-------------------------------------------- */
/* topへ戻る */
.page-top {
  text-align: center;
  border-top: 1px solid #CACACA;
}

.page-top__link {
  display: block;
  padding-block: 0.5rem;
}

.page-top__icon {
  width: 18px;
  padding-bottom: 5px;
  margin-right: 5px;
}

.page-top__text {
  font-size: 0.9375rem;
  color: #CACACA;
}

/* フッター共通 */
.footer-container {
  position: relative;
  padding-inline: 7.6923076923vw;
  padding-top: 40px;
  overflow: hidden;
  border-radius: 15px;
}
.footer-container::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background-color: #1E1E1E;
  border-radius: 15px;
  mix-blend-mode: multiply;
  opacity: 0.9;
}
@media (min-width: 768px) {
  .footer-container {
    padding-inline: 4.1666666667vw;
    border-radius: 20px;
  }
  .footer-container::after {
    border-radius: 20px;
  }
}

.footer__copyright {
  position: relative;
  z-index: 5;
  padding-bottom: 12px;
  color: #4a4a4a;
  text-align: center;
}
@media (min-width: 768px) {
  .footer__copyright {
    font-size: 0.875rem;
  }
}

/* TOP・ABOUTのフッター */
.footer-container--base::before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  filter: blur(5px);
  background-size: cover;
  border-radius: 15px;
  opacity: 0;
  background-image: url("../img/_common/image_basic-footer.webp");
  background-repeat: no-repeat;
}
@media (min-width: 768px) {
  .footer-container--base::before {
    background-position: 50% 70%;
    border-radius: 20px;
  }
}

footer.visible .footer-container--base::before {
  animation: fade-in 2.5s ease-in-out forwards;
}
@media (min-width: 768px) {
  footer.visible .footer-container--base::before {
    animation: fade-in 2s ease-in-out forwards;
  }
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.footer__main {
  position: relative;
  z-index: 5;
  display: flex;
  flex-direction: column-reverse;
  gap: 100px;
  margin-bottom: 60px;
  color: #FFF;
}
@media (min-width: 768px) {
  .footer__main {
    flex-direction: row;
    gap: unset;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    margin-bottom: 100px;
  }
}

.footer__wrapper {
  display: flex;
  flex-direction: column-reverse;
  gap: 50px;
  max-width: 400px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .footer__wrapper {
    display: block;
    width: auto;
    margin: 0;
  }
}

.footer-nav-list {
  display: flex;
  gap: 12.8205128205vw;
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .footer-nav-list {
    gap: unset;
    justify-content: space-between;
    margin-bottom: 140px;
  }
}

.footer-nav-list__item {
  font-size: 1.0625rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .footer-nav-list__item {
    font-size: 1.25rem;
    transition: opacity 0.3s;
  }
  .footer-nav-list__item:hover {
    opacity: 0.5;
  }
}

@media (min-width: 768px) {
  .contact__wrapper {
    display: flex;
    gap: 35px;
    align-items: baseline;
  }
}

.contact__title {
  padding-bottom: 13px;
  font-size: 1.0625rem;
  font-weight: 500;
}
@media (min-width: 768px) {
  .contact__title {
    padding-bottom: 0;
    font-size: 1.25rem;
  }
}

.contact__text {
  font-size: 1.25rem;
}
@media (min-width: 768px) {
  .contact__text {
    font-size: 1.5625rem;
  }
}

.contact__link {
  display: block;
  padding-top: 13px;
  font-size: 0.8125rem;
  color: #808080;
  text-decoration: underline;
}

/* フッター サイトタイトル */
.footer-title {
  text-align: center;
}
@media (min-width: 768px) {
  .footer-title {
    text-align: right;
  }
}

.footer-title__heading {
  padding-bottom: 10px;
  font-size: clamp(23px, 6.6666666667vw, 28px);
}

.footer-title__name {
  padding-right: 6px;
  background: linear-gradient(90deg, rgb(135, 154, 57) 9%, rgb(157, 182, 113) 30%, rgb(87, 139, 101) 83%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.footer-title__catch {
  padding-top: 10px;
  font-size: clamp(15px, 3.8461538462vw, 17px);
  font-weight: 500;
}

/* ****** ここからTOPページ固有 ****** */
/* --------------------------------------------
 mv-section
-------------------------------------------- */
.mv-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  padding-top: 80px;
  padding-bottom: 110px;
  background: linear-gradient(180deg, rgb(255, 255, 255) 88%, rgb(241, 241, 241) 100%);
  border-radius: 15px;
}
@media (min-width: 768px) {
  .mv-container {
    flex-wrap: nowrap;
    gap: 6.9444444444vw;
    align-items: center;
    padding-top: 68px;
    margin-bottom: 15px;
  }
}

/* mv 写真 */
.mv__img {
  width: 74.358974359vw;
  max-width: 500px;
}
@media (min-width: 768px) {
  .mv__img {
    width: 38.1944444444vw;
    max-width: 560px;
  }
}

/* mvサイトタイトル */
.mv-title {
  order: -1;
  padding-bottom: 50px;
  text-align: center;
  opacity: 0;
}
@media (min-width: 768px) {
  .mv-title {
    order: 1;
  }
}

.site-title__heading {
  overflow: hidden;
  font-size: min(7.1794871795vw, 50px);
  font-weight: 500;
  border-bottom: 1px solid #e8e8e8;
}
@media (min-width: 768px) {
  .site-title__heading {
    font-size: clamp(32px, 3.125vw, 45px);
  }
  .site-title__heading:first-child {
    padding-bottom: 5px;
  }
}

.site-title__name {
  padding-right: 6px;
  background: linear-gradient(90deg, rgb(135, 154, 57) 9%, rgb(157, 182, 113) 30%, rgb(87, 139, 101) 83%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-title__catch {
  padding-top: 15px;
  overflow: hidden;
  font-size: min(4.1025641026vw, 27px);
  font-weight: 700;
}
@media (min-width: 768px) {
  .site-title__catch {
    padding-top: 25px;
    font-size: clamp(22px, 1.8055555556vw, 26px);
  }
}
.site-title__catch span {
  display: inline-block;
  padding: 0 1px;
  visibility: visible;
  opacity: 0;
  transform: translateY(-100%);
}

.mv-title__img {
  width: 33.3333333333vw;
  max-width: 230px;
  padding-bottom: 8px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .mv-title__img {
    width: 15.2777777778vw;
    max-width: 215px;
  }
}

/* --------------------------------------------
 lead-section
-------------------------------------------- */
.lead-section {
  border-bottom: 1px solid #8D8D8D;
}

.container--lead {
  padding-top: 30px;
  padding-bottom: 120px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .container--lead {
    padding-top: 100px;
  }
}

.lead__wrapper {
  display: flex;
  flex-direction: column;
  margin-bottom: 25px;
}
@media (min-width: 768px) {
  .lead__wrapper {
    flex-flow: row wrap;
    align-items: flex-end;
    justify-content: space-between;
  }
}

.lead__heading {
  margin-bottom: 40px;
  font-size: 1.125rem;
  line-height: 1.7777777778;
}
@media (min-width: 768px) {
  .lead__heading {
    font-size: 2rem;
    line-height: 2;
  }
}

.lead__description {
  line-height: 2;
  margin-bottom: 30px;
  opacity: 0;
  transition: opacity 0.7s, transform 0.7s;
  transform: translateY(10px);
}

.lead__description.visible {
  opacity: 1;
  transform: translateY(0);
}

.lead__img {
  width: 90px;
  margin: 0 auto;
}
@media (min-width: 768px) {
  .lead__img {
    width: 12%;
    margin-bottom: -50px;
  }
}

/* --------------------------------------------
 works-section
-------------------------------------------- */
@media (min-width: 768px) {
  .works-section {
    margin-bottom: 60px;
  }
}

/* web制作物リスト */
.web-list {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .web-list {
    margin-bottom: 120px;
  }
}

.web-list__item {
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  .web-list__item {
    display: flex;
    -moz-column-gap: 3.4722222222vw;
    column-gap: 3.4722222222vw;
    align-items: center;
    justify-content: center;
    margin-bottom: 80px;
  }
}

.web-list__thumb {
  margin-bottom: 20px;
  transition: transform 0.3s ease;
  box-shadow: 0 3px 8px 0 rgba(0, 0, 0, 0.2);
}
@media (min-width: 768px) {
  .web-list__thumb {
    width: min(46.5277777778vw, 670px);
    margin-bottom: 0;
  }
}

@media (min-width: 768px) {
  .web-list__content {
    width: 30%;
  }
}

.web-list__works-meta {
  margin-bottom: 15px;
  font-weight: 700;
  color: #CACACA;
}
@media (min-width: 768px) {
  .web-list__works-meta {
    font-size: 0.9375rem;
  }
}

.web-list__works-cat {
  padding: 1px 5px;
  margin-right: 10px;
  border: 1px solid #CACACA;
  border-radius: 6px;
}

.web-list__works-title {
  margin-bottom: 10px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.1em;
}
@media (min-width: 768px) {
  .web-list__works-title {
    margin-bottom: 15px;
    font-size: 1.4375rem;
    text-decoration-thickness: 0.05em;
  }
}

/* web制作物　ホバー時 */
@media (min-width: 768px) {
  .web-list__link:hover .web-list__thumb {
    transform: scale(1.01);
  }
}

/* graphic制作物リスト */
@media (min-width: 768px) {
  .graphic-list {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    -moz-column-gap: 3%;
    column-gap: 3%;
  }
}

.graphic-list__item {
  margin-bottom: 60px;
}

.graphic-list__link {
  display: block;
}

.graphic-list__thumb {
  margin-bottom: 20px;
  overflow: hidden;
}

.graphic-list__works-meta {
  margin-bottom: 15px;
  font-weight: 700;
  color: #CACACA;
}
@media (min-width: 768px) {
  .graphic-list__works-meta {
    font-size: 0.9375rem;
  }
}

.graphic-list__works-cat {
  padding: 1px 5px;
  margin-right: 10px;
  border: 1px solid #CACACA;
  border-radius: 6px;
}

.graphic-list__works-title {
  margin-bottom: 8px;
  font-size: 0.9375rem;
  font-weight: 500;
  text-decoration: underline;
  text-underline-offset: 0.1em;
  transition: opacity 0.3s ease;
}
@media (min-width: 768px) {
  .graphic-list__works-title {
    font-size: 1.125rem;
    text-decoration-thickness: 0.05em;
  }
}

/* graphic制作物ホバー時 */
.graphic-list__thumb > img {
  transition: transform 0.3s ease-out;
}
.graphic-list__thumb > img:hover {
  transform: scale(1.02);
}

/* --------------------------------------------
 blog-section
-------------------------------------------- */
.blog-section {
  margin-bottom: 60px;
}
@media (min-width: 768px) {
  .blog-section {
    margin-bottom: 160px;
  }
}

.blog-container {
  display: flex;
  flex-direction: column;
  gap: 3%;
  max-width: 1030px;
  padding: 20px;
  margin: 0 auto;
  text-align: left;
  border: 1px solid #93A86A;
  border-radius: 10px;
}
@media (min-width: 768px) {
  .blog-container {
    flex-direction: row;
    /* 記事が増えたら */
    /* align-items: flex-start; */
    align-items: center;
    justify-content: space-between;
    padding: 20px 50px;
    font-size: 0.875rem;
    border-radius: 20px;
  }
}

.blog__wrapper {
  width: 85%;
  margin: 0 auto 13px;
}
@media (min-width: 768px) {
  .blog__wrapper {
    width: 47%;
    margin: 0 auto;
    text-align: left;
  }
}

.blog__img {
  max-width: 400px;
  margin: 0 auto 10px;
}
@media (min-width: 768px) {
  .blog__img {
    width: 100%;
  }
}

.blog__description {
  line-height: 1.4615384615;
}
@media (min-width: 768px) {
  .blog__description {
    padding-left: 10px;
  }
}

@media (min-width: 768px) {
  .blog-list {
    width: 70%;
  }
}

.blog-list__item {
  padding-bottom: 5px;
}

.blog-list__link {
  display: block;
  gap: 2.3076923077vw;
  padding: 15px;
  background: #EFEFEF;
}
@media (min-width: 768px) {
  .blog-list__link {
    display: flex;
    align-items: baseline;
    padding: 20px;
    transition: opacity 0.3s;
  }
  .blog-list__link:hover {
    opacity: 0.6;
  }
}

.blog-list__date {
  display: block;
  margin-bottom: 9px;
  color: #808080;
  white-space: pre;
}
@media (min-width: 768px) {
  .blog-list__date {
    margin-bottom: 0;
  }
}

.blog-list__title {
  display: flex;
  gap: 10px;
  align-items: center;
  text-decoration: underline;
  text-underline-offset: 0.1em;
  line-height: 1.4615384615;
}
.blog-list__title span {
  flex-shrink: 0;
  width: 30px;
  height: 30px;
}
.blog-list__title span img {
  background: #fff;
}