@charset "UTF-8";
@media screen and (max-width: 750px) {
  .display--pc {
    display: none;
  }
}
@media screen and (min-width: 751px) {
  .display--sp {
    display: none;
  }
}

html {
  font-size: 62.5%;
  font-family: "Figtree", sans-serif;
  font-weight: 500;
}

/*
Theme Name: toraworks
Theme URL: toraworks
Description: toraworkのスタイル
Author: iwayaseina
Version: 0.1
License: iwayaseina
*/
html {
  overflow-x: hidden;
}

main {
  background: #fafafa;
}

img {
  max-width: 100%;
  height: auto;
}

.header {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  align-items: baseline;
  padding: 32px 50px 0;
}
@media screen and (max-width: 750px) {
  .header {
    grid-column-gap: 10px;
    padding: 20px 20px 0;
  }
}
.header__title {
  grid-column: 1/2;
  font-size: clamp(1.2rem, 0.75vw, 2.4rem);
}
@media screen and (max-width: 750px) {
  .header__title {
    grid-column: 1/4;
    font-weight: 600;
  }
}
.header__list, .footer__list {
  display: flex;
  justify-content: space-between;
  align-items: center;
  grid-column: 6/7;
  font-size: clamp(1.2rem, 0.75vw, 2.4rem);
}
@media screen and (max-width: 1000px) {
  .header__list, .footer__list {
    grid-column: 5/7;
  }
}
@media screen and (max-width: 750px) {
  .header__list, .footer__list {
    grid-column: 4/7;
    font-size: 1.2rem;
  }
}
.header__item:not(:first-of-type) .header__link {
  transition: 0.3s;
}
.header__item:not(:first-of-type) .header__link:hover {
  opacity: 0.6;
}
.header__link--current, .footer__link--current {
  border-bottom: 1px solid #181819;
}

.textList {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: 1fr;
  grid-column-gap: 20px;
  margin: 180px 50px 0;
  font-family: "Figtree", "Sawarabi Gothic", sans-serif;
  font-size: clamp(1.2rem, 0.75vw, 2.4rem);
}
@media screen and (max-width: 750px) {
  .textList {
    margin: 88px 20px 0;
    grid-template-rows: repeat(2, 1fr);
    grid-gap: 36px 10px;
  }
}
.textList__item:first-of-type {
  grid-column: 2/3;
}
@media screen and (max-width: 750px) {
  .textList__item:nth-of-type(2n+1) {
    grid-column: 1/4;
  }
}
@media screen and (max-width: 750px) {
  .textList__item:nth-of-type(2n) {
    grid-column: 4/7;
  }
}
.textList__data {
  margin-top: 8px;
}

.footer {
  background: #fafafa;
  text-align: center;
}
.footer__check {
  padding: 36px;
  border-top: 1px solid #727272;
  background: #fafafa;
  font-size: clamp(1.5rem, 0.9375vw, 3rem);
  font-weight: 600;
  text-align: center;
}
.footer__checkLink {
  transition: 0.3s;
}
.footer__checkLink:hover {
  opacity: 0.6;
}
.footer__mail:hover .footer__dono::after {
  transform: scale(1, 1);
}
.footer__address {
  padding: 130px 24px 150px;
  border-top: 1px solid #181819;
  border-bottom: 1px solid #181819;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .footer__address {
    padding: 68px 24px 95px;
    background: #fafafa;
  }
}
.footer__caption {
  font-size: clamp(1.5rem, 0.9375vw, 3rem);
  font-weight: 500;
}
.footer__dono {
  display: inline;
  position: relative;
  font-size: clamp(4.8rem, 3vw, 5.6rem);
  font-weight: 400;
}
.footer__dono::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #181819;
  transition: all 1s;
  transform: scale(0, 1);
  transform-origin: center top;
}
@media screen and (max-width: 750px) {
  .footer__dono {
    font-size: 3.6rem;
  }
}
.footer__menu {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-gap: 40px 20px;
  align-items: baseline;
  padding: 50px 50px 32px;
  font-size: clamp(1.2rem, 0.75vw, 2.4rem);
}
@media screen and (max-width: 750px) {
  .footer__menu {
    display: block;
    padding: 114px 50px 20px;
  }
}
.footer__item:not(:first-of-type) .footer__link {
  transition: 0.3s;
}
.footer__item:not(:first-of-type) .footer__link:hover {
  opacity: 0.6;
}
.footer__copy {
  grid-column: 6/7;
  grid-row: 2/3;
  text-align: end;
}