
/*
Theme Name: hiraku-design
*/
body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  color: #222222;
  letter-spacing: 0.02em;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 14px;
  }
}

.u-sp-only {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-sp-only {
    display: block;
  }
}

.roboto {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
}

.l-inner {
  max-width: 1320px;
  margin: 0 auto;
}
@media screen and (max-width: 1560px) {
  .l-inner {
    max-width: 1100px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .l-inner {
    width: 94%;
  }
}
@media screen and (max-width: 768px) {
  .l-inner {
    width: 89.866666666%;
  }
}

.l-outer {
  max-width: 1320px;
  margin: 0 auto;
}
@media screen and (max-width: 1560px) {
  .l-outer {
    max-width: 1100px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1280px) {
  .l-outer {
    margin-right: 3vw;
    margin-left: 3vw;
  }
}
@media screen and (max-width: 768px) {
  .l-outer {
    width: 90%;
  }
}

@media screen and (max-width: 768px) {
  .l-fixpage-inner {
    width: 90%;
  }
}

.c-btn {
  text-transform: uppercase;
  width: 180px;
  height: 36px;
  color: #FFFFFF;
  background-color: #222222;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 16px;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .c-btn {
    width: 201px;
    height: 35px;
    font-size: 14px;
  }
}

.header {
  width: 100%;
  position: fixed;
  z-index: 9;
  top: 25px;
}
@media screen and (max-width: 768px) {
  .header {
    top: 17px;
  }
}
.header__inner {
  width: 90%;
  margin: 0 auto;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header__title {
  font-size: 28px;
  font-weight: 900;
  color: #FFFFFF;
}
@media screen and (max-width: 768px) {
  .header__title {
    font-size: 22px;
  }
}
.header__hamburger {
  width: 44px;
  height: 26px;
  position: relative;
}
.header__hamburger-bar {
  background-color: #D9D9D9;
  left: 10px;
  height: 2px;
  transition: 0.7s;
  position: absolute;
}
.header__hamburger-bar:nth-of-type(1) {
  top: 0;
  width: 20px;
}
.header__hamburger-bar:nth-of-type(2) {
  top: 10px;
  width: 30px;
}
.header__hamburger-bar:nth-of-type(3) {
  top: 20px;
  width: 40px;
}
.header__hamburger.open .header__hamburger-bar:nth-of-type(1) {
  width: 40px;
  top: 16px;
  transform: rotate(45deg);
}
.header__hamburger.open .header__hamburger-bar:nth-of-type(2) {
  opacity: 0;
}
.header__hamburger.open .header__hamburger-bar:nth-of-type(3) {
  width: 40px;
  top: 16px;
  transform: rotate(-45deg);
}

.drawer {
  position: fixed;
  z-index: 3;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(66, 66, 66, 0.7);
  opacity: 0;
  visibility: hidden;
  transition: 0.7s;
}
.drawer.open {
  opacity: 1;
  visibility: visible;
}
.drawer__wrapper {
  width: 600px;
  margin-top: 110px;
  margin-left: 88px;
}
@media screen and (max-width: 1024px) {
  .drawer__wrapper {
    width: 55%;
    margin-left: 6vw;
  }
}
.drawer__heading {
  font-size: 28px;
  font-weight: 900;
  text-transform: uppercase;
  padding-bottom: 20px;
  border-bottom: 1px solid #FFFFFF;
  color: #FFFFFF;
  padding-left: 17px;
}
@media screen and (max-width: 768px) {
  .drawer__heading {
    padding-bottom: 17px;
  }
}
.drawer__list {
  text-align: left;
  margin-top: 24px;
}
.drawer__item {
  margin-bottom: 1.79rem;
}
.drawer__item a {
  font-size: 22px;
  font-weight: 900;
  letter-spacing: 0.095rem;
  line-height: 1.65;
  transition: 0.7s;
  text-transform: uppercase;
  color: #FFFFFF;
  padding-left: 17px;
}
@media screen and (max-width: 768px) {
  .drawer__item a {
    line-height: 1.5;
  }
}
.drawer__item a:hover {
  opacity: 0.5;
}
.drawer__item--recruit {
  border: 1px solid #684B2A;
  border-radius: 100px;
  padding: 7px 0;
  background-color: #FFFFFF;
  width: 141px;
  margin: 0 auto;
  display: block;
}
.drawer__item--recruit a {
  font-size: 14px;
}

.hero {
  position: relative;
  z-index: 2;
}
.hero::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  aspect-ratio: 770/720;
  width: 53%;
  height: auto;
  background-color: #424242;
  display: block;
  z-index: -1;
}
@media screen and (max-width: 1520px) and (min-width: 1280px) {
  .hero::after {
    width: 770px;
    height: 720px;
  }
}
@media screen and (max-width: 768px) {
  .hero::after {
    aspect-ratio: 286/640;
    width: 76%;
    height: auto;
  }
}
.hero__img {
  aspect-ratio: 1120/640;
  width: 77%;
  height: auto;
}
@media screen and (max-width: 1520px) and (min-width: 1280px) {
  .hero__img {
    width: 1120px;
    height: 640px;
  }
}
@media screen and (max-width: 768px) {
  .hero__img {
    aspect-ratio: 274/565;
    width: 73%;
    height: auto;
  }
  .hero__img img {
    -o-object-fit: cover;
       object-fit: cover;
  }
}
.hero__content {
  position: absolute;
  top: 15vw;
  right: 16vw;
  width: 338px;
}
@media screen and (max-width: 1520px) and (min-width: 1280px) {
  .hero__content {
    top: 179px;
    left: 886px;
  }
}
@media screen and (max-width: 1280px) {
  .hero__content {
    top: 7vw;
    right: 11vw;
  }
}
@media screen and (max-width: 1024px) {
  .hero__content {
    right: 6vw;
  }
}
@media screen and (max-width: 768px) {
  .hero__content {
    top: 57.79vw;
    left: inherit;
    right: 4vw;
    width: auto;
  }
}
.hero__text {
  font-size: 24px;
  color: #FFFFFF;
}
@media screen and (max-width: 1560px) {
  .hero__text {
    width: 224px;
  }
}
@media screen and (max-width: 768px) {
  .hero__text {
    font-weight: 900;
    font-size: 16px;
    line-height: 1.8;
  }
}
.hero__catch {
  font-size: 96px;
  color: #FFFFFF;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}
@media screen and (max-width: 1024px) {
  .hero__catch {
    font-size: 80px;
  }
}
@media screen and (max-width: 768px) {
  .hero__catch {
    font-size: 62px;
  }
}
.hero-sub::after {
  aspect-ratio: 770/400;
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 53.472222222%;
  height: auto;
  background-color: #424242;
  display: block;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .hero-sub::after {
    aspect-ratio: 286/360;
    width: 76%;
  }
}
.hero-sub__img {
  aspect-ratio: 1120/325;
  width: 77.777777777%;
  height: auto;
}
@media screen and (max-width: 768px) {
  .hero-sub__img {
    aspect-ratio: 274/330;
    width: 73%;
  }
}
.hero-sub__img {
  position: relative;
}
.hero-sub__img::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-image: url(../img/Rectangle\ 3.png);
}
.hero-sub__img img {
  -o-object-fit: cover;
     object-fit: cover;
}
.hero-sub__content {
  top: 12vw;
  width: inherit;
  left: inherit;
  top: 11.11vw;
}
@media screen and (max-width: 1439px) {
  .hero-sub__content {
    top: 10.5vw;
  }
}
@media screen and (max-width: 768px) {
  .hero-sub__content {
    top: 38.67vw;
  }
}
.hero-sub__content--topics {
  right: 16vw;
}
@media screen and (max-width: 1580px) {
  .hero-sub__content--topics {
    right: 9.07vw;
  }
}
@media screen and (max-width: 768px) {
  .hero-sub__content--topics {
    right: 13.89vw;
  }
}
.hero-sub__content--aboutus {
  right: 10.83vw;
}
@media screen and (min-width: 1280px) {
  .hero-sub__content--aboutus {
    width: 21rem;
  }
}
@media screen and (max-width: 768px) {
  .hero-sub__content--aboutus {
    right: 12vw;
  }
}
.hero-sub__content--culture {
  right: 13.47vw;
}
@media screen and (max-width: 768px) {
  .hero-sub__content--culture {
    right: 11.73vw;
  }
}
.hero-sub__content--contact {
  width: 413px;
  left: initial;
  right: 9vw;
}
@media screen and (max-width: 1580px) {
  .hero-sub__content--contact {
    right: 4.93vw;
  }
}
@media screen and (max-width: 768px) {
  .hero-sub__content--contact {
    width: initial;
    right: 4vw;
  }
}
.hero-sub__catch {
  font-size: 68px;
}
@media screen and (max-width: 1024px) {
  .hero-sub__catch {
    font-size: 60px;
  }
}
@media screen and (max-width: 768px) {
  .hero-sub__catch {
    font-size: 5rem;
  }
}
@media screen and (max-width: 540px) {
  .hero-sub__catch {
    font-size: 38px;
  }
}
.hero-sub {
  /*
          position: absolute;
  top: 15vw;
  right: 16vw;
  width: 338px;
  @media screen and (max-width: 1520px) and (min-width: 1280px){
      top: 179px;
      left: 886px;
  }
  @media screen and (max-width:1280px){
      top: 7vw;
      right: 11vw;
  }
  @media screen and (max-width: 768px){
      top: 57.79vw;
      left: inherit;
      right: 4vw;
      width: auto;
  }
  */
}

.message {
  position: relative;
  z-index: 1;
  background-image: url(./img/message.png);
  background-size: cover;
  background-repeat: no-repeat;
  max-width: 1300px;
  margin: 200px auto;
}
@media screen and (max-width: 1560px) {
  .message {
    max-width: 1100px;
  }
}
@media screen and (max-width: 1024px) {
  .message {
    margin-top: 20vw;
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1100px) {
  .message {
    width: 94%;
  }
}
@media screen and (max-width: 768px) {
  .message {
    margin-top: 40.8vw;
    width: 100%;
    margin-bottom: 0;
  }
}
@media screen and (max-width: 430px) {
  .message {
    margin-top: 153px;
  }
}
.message__inner {
  padding: 130px 0;
}
@media screen and (max-width: 768px) {
  .message__inner {
    padding: 60px 0;
  }
}
.message__content {
  background-color: #FFFFFF;
  width: 600px;
  padding: 100px 46px;
  margin-left: 60px;
}
@media screen and (max-width: 768px) {
  .message__content {
    width: 100%;
    padding: 50px 25px 60px;
    margin-left: 0;
  }
}
.message__heading {
  font-size: 40px;
  margin-bottom: 29px;
}
@media screen and (max-width: 768px) {
  .message__heading {
    font-size: 28px;
    margin-bottom: 40px;
  }
}
.message__text {
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .message__text {
    margin: 0 auto;
    line-height: 2.057;
  }
}

.option {
  padding-top: 222px;
  padding-bottom: 110px;
  margin-top: -307px;
}
@media screen and (max-width: 768px) {
  .option {
    margin-top: 0;
    padding-top: 59px;
    padding-bottom: 80px;
  }
}
.option {
  background-color: #F6F6F6;
}
.option__heading {
  font-size: 36px;
  text-transform: uppercase;
  margin-bottom: 30px;
}
@media screen and (max-width: 768px) {
  .option__heading {
    margin-bottom: 14px;
    font-size: 26px;
  }
}
.option__text {
  margin-top: 20px;
  margin-bottom: 21px;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .option__text {
    margin: 11px 0 6px;
    letter-spacing: 0;
    font-weight: 900;
  }
}
.option__list {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .option__list {
    flex-direction: column;
  }
}
.option__item {
  width: 47.2%;
}
@media screen and (max-width: 768px) {
  .option__item {
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .option__item:nth-of-type(1) {
    margin-bottom: 60px;
  }
}
.option__item img {
  aspect-ratio: 520/347;
}

.topic {
  margin-top: 111px;
}
@media screen and (max-width: 768px) {
  .topic {
    margin-top: 60px;
  }
}
.topic__headline {
  line-height: 1.8;
  padding-top: 18px;
}
@media screen and (max-width: 768px) {
  .topic__headline {
    font-weight: 900;
    line-height: 1;
    padding-top: 6px;
  }
}
.topic__heading {
  font-size: 48px;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .topic__heading {
    font-size: 32px;
  }
}
.topic__list {
  margin-left: auto;
  width: 740px;
  margin-bottom: 43px;
  margin-top: 25px;
}
@media screen and (max-width: 1024px) {
  .topic__list {
    width: 67%;
  }
}
@media screen and (max-width: 768px) {
  .topic__list {
    width: 100%;
    margin-top: 36px;
    margin-bottom: 36px;
  }
}
.topic__item {
  border-bottom: 1px solid rgba(136, 136, 136, 0.53);
  padding: 0 0 7px;
}
.topic__item:not(:nth-of-type(1)) {
  padding-top: 17px;
}
@media screen and (max-width: 768px) {
  .topic__item:not(:nth-of-type(1)) {
    padding-top: 15px;
  }
}
@media screen and (max-width: 768px) {
  .topic__item {
    padding-bottom: 8px;
  }
}
.topic__date {
  color: #888888;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .topic__date {
    font-size: 13px;
    margin-bottom: 6px;
  }
}
.topic__btn {
  margin-left: auto;
}
@media screen and (max-width: 768px) {
  .topic__btn {
    margin-right: auto;
    margin-left: initial;
  }
}

.contact {
  background-color: #F6F6F6;
  padding: 140px 0;
  margin-top: 110px;
}
@media screen and (max-width: 768px) {
  .contact {
    margin-top: 100px;
    padding: 60px 0 54px;
  }
}
.contact__inner {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .contact__inner {
    align-items: center;
  }
}
@media screen and (max-width: 768px) {
  .contact__inner {
    flex-direction: column-reverse;
  }
}
.contact__heading {
  font-size: 48px;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .contact__heading {
    font-size: 32px;
    margin-top: 40px;
  }
}
.contact img {
  aspect-ratio: 560/374;
  width: 560px;
  height: 374px;
}
@media screen and (max-width: 1280px) {
  .contact img {
    width: 48%;
    height: auto;
  }
}
@media screen and (max-width: 1024px) {
  .contact img {
    width: 50%;
  }
}
@media screen and (max-width: 768px) {
  .contact img {
    width: 100%;
    aspect-ratio: 338/226;
    height: auto;
  }
}
.contact__text {
  margin: 59px 0;
  line-height: 1.8;
}
@media screen and (max-width: 768px) {
  .contact__text {
    margin: 16px 0 40px;
    font-weight: 900;
    font-size: 12px;
    line-height: 2.4;
    width: 100%;
  }
}
.contact__content {
  width: 42%;
}
@media screen and (max-width: 1024px) {
  .contact__content {
    width: 44%;
  }
}
@media screen and (max-width: 768px) {
  .contact__content {
    width: 100%;
  }
}

footer {
  background-color: #222222;
  color: #FFFFFF;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  footer {
    font-size: 13px;
  }
}

.fixpage-content {
  max-width: 800px;
  margin: 218px auto 180px;
  padding: 22px 30px 50px;
}
@media screen and (max-width: 768px) {
  .fixpage-content {
    margin-top: 172px;
    margin-bottom: 98px;
    padding: 0;
  }
}
.fixpage__heading {
  font-weight: 900;
  font-size: 36px;
  margin-bottom: 60px;
}
@media screen and (max-width: 768px) {
  .fixpage__heading {
    font-size: 25px;
    margin-bottom: 40px;
  }
}
.fixpage__text {
  font-weight: 400;
  line-height: 1.75;
}
@media screen and (max-width: 1280px) {
  .fixpage__text {
    line-height: 2;
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .fixpage__text--message {
    width: initial;
  }
}
@media screen and (max-width: 768px) {
  .fixpage__text--message {
    line-height: 1.5;
  }
}
.fixpage-message {
  position: relative;
  z-index: 2;
  max-width: 1100px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .fixpage-message {
    padding-top: 50px;
    background-color: #F6F6F6;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .fixpage-message__heading {
    font-size: 28px;
    margin-bottom: 13px;
  }
}
.fixpage-message__content {
  margin-left: auto;
  background-color: #F6F6F6;
  width: 821px;
  position: relative;
  top: 188px;
  padding: 87px 191px 132px 237px;
  z-index: -1;
}
@media screen and (max-width: 1280px) {
  .fixpage-message__content {
    width: 74.6%;
    padding: 87px 8vw 132px 20vw;
  }
}
@media screen and (max-width: 1100px) {
  .fixpage-message__content {
    padding: 13vw 10vw 12vw 10vw;
  }
}
@media screen and (max-width: 768px) {
  .fixpage-message__content {
    width: 100%;
    padding: 28px 5% 50px;
    top: 0;
  }
}
.fixpage-message img {
  aspect-ratio: 480/320;
  width: 480px;
  height: auto;
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1320px) {
  .fixpage-message img {
    width: 43.6%;
  }
}
@media screen and (max-width: 1100px) {
  .fixpage-message img {
    left: 2rem;
  }
}
@media screen and (max-width: 768px) {
  .fixpage-message img {
    aspect-ratio: 338/226;
    left: 0;
    height: auto;
    width: 90%;
    margin: 0 auto;
    display: block;
    position: inherit;
  }
}
.fixpage-message--culture {
  margin-bottom: 328px;
}
@media screen and (max-width: 768px) {
  .fixpage-message--culture {
    margin-bottom: 0;
  }
}

.aboutpage__company {
  max-width: 1100px;
  margin-top: 348px;
  margin-bottom: 120px;
}
@media screen and (max-width: 768px) {
  .aboutpage__company {
    margin-top: 80px;
    margin-bottom: 80px;
    border-bottom: 1px solid #000000;
  }
}
.aboutpage__company table {
  width: 700px;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .aboutpage__company table {
    width: 63.636363636%;
  }
}
@media screen and (max-width: 768px) {
  .aboutpage__company table {
    width: 91%;
    margin: 0 auto;
  }
}
.aboutpage__company tr {
  border-bottom: 1px solid #000000;
}
@media screen and (max-width: 768px) {
  .aboutpage__company tr {
    border-bottom: none;
    margin: 0 5%;
  }
}
@media screen and (max-width: 768px) {
  .aboutpage__company tr:nth-of-type(1), .aboutpage__company tr:nth-of-type(2), .aboutpage__company tr:nth-of-type(3) {
    border-bottom: 1px solid #000000;
  }
}
.aboutpage__company tr:nth-of-type(2) td {
  font-size: 18px;
}
.aboutpage__company th, .aboutpage__company td {
  padding: 26px 0;
}
@media screen and (max-width: 768px) {
  .aboutpage__company th, .aboutpage__company td {
    display: inline-block;
  }
}
.aboutpage__company th {
  padding-left: 7px;
  width: 224px;
  font-size: 18px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .aboutpage__company th {
    width: 100%;
    padding: 16px 2.625rem 0;
  }
}
.aboutpage__company td {
  font-size: 18px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .aboutpage__company td {
    padding: 0 2.625rem 16px;
    font-size: 15px;
  }
}
.aboutpage__headline {
  font-size: 32px;
  font-weight: 900;
  text-transform: capitalize;
  padding-bottom: 36px;
  border-bottom: 1px solid #000000;
}
@media screen and (max-width: 768px) {
  .aboutpage__headline {
    padding-bottom: 20px;
    text-align: center;
  }
}

.breadcrumb {
  margin-top: 136px;
}
@media screen and (max-width: 768px) {
  .breadcrumb {
    margin-top: 89px;
  }
}
.breadcrumb__list {
  display: flex;
  align-items: center;
  gap: 10px;
}
.breadcrumb__item a {
  font-size: 15px;
  font-weight: 900;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .breadcrumb__item a {
    font-family: "Noto Sans JP", sans-serif;
    font-size: 12px;
  }
}

.topics {
  margin-top: 106px;
}
@media screen and (max-width: 768px) {
  .topics {
    margin-top: 58px;
  }
}
.topics__heading {
  font-size: 48px;
  font-weight: 900;
  text-transform: uppercase;
}
@media screen and (max-width: 768px) {
  .topics__heading {
    font-size: 32px;
  }
}
.topics__container {
  margin-top: 25px;
  width: 740px;
  margin-left: auto;
}
@media screen and (max-width: 1024px) {
  .topics__container {
    width: 67.2%;
  }
}
@media screen and (max-width: 768px) {
  .topics__container {
    width: 100%;
    margin-top: 36px;
  }
}
.topics__date {
  margin-bottom: 18px;
  font-size: 15px;
  font-weight: 900;
  color: #888888;
}
@media screen and (max-width: 768px) {
  .topics__date {
    font-size: 13px;
    margin-bottom: 6px;
  }
}
.topics__headline {
  font-size: 15px;
  font-weight: 500;
  margin-top: 18px;
}
@media screen and (max-width: 768px) {
  .topics__headline {
    font-size: 14px;
    margin-top: 6px;
  }
}
.topics__item {
  padding-bottom: 18px;
}
@media screen and (max-width: 768px) {
  .topics__item {
    padding-bottom: 8px;
  }
}
.topics__item:not(:first-of-type) {
  padding-top: 17px;
}
@media screen and (max-width: 768px) {
  .topics__item:not(:first-of-type) {
    padding-top: 15px;
  }
}
.topics__item {
  border-bottom: 1px solid rgba(136, 136, 136, 0.53);
}
.topics-article {
  margin-top: 103px;
  margin-bottom: 367px;
}
@media screen and (max-width: 768px) {
  .topics-article {
    margin-top: 56px;
    margin-bottom: 130px;
  }
}
.topics-article__header {
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(136, 136, 136, 0.53);
}
@media screen and (max-width: 768px) {
  .topics-article__header {
    padding-bottom: 17px;
  }
}
.topics-article__heading {
  margin-bottom: 29px;
  font-size: 43px;
  line-height: 1;
}
@media screen and (max-width: 768px) {
  .topics-article__heading {
    font-size: 24px;
    font-weight: 700;
    font-family: "Noto Sans JP", sans-serif;
    margin-bottom: 15px;
  }
}
.topics-article__message {
  margin-top: 52px;
  margin-bottom: 26px;
}
@media screen and (max-width: 768px) {
  .topics-article__message {
    margin-top: 32px;
    margin-bottom: 27px;
  }
}
.topics-article__message .topics-article__text:nth-of-type(2) {
  margin-top: 26px;
}
@media screen and (max-width: 768px) {
  .topics-article__message .topics-article__text:nth-of-type(2) {
    margin-top: 23px;
  }
}
.topics-article__date {
  color: #2D2D2D;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .topics-article__date {
    font-size: 13px;
  }
}
.topics-article__text {
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .topics-article__text {
    line-height: 1.714;
  }
}
.topics-article__text--last {
  margin-top: 0;
}
.topics-article__headline {
  font-size: 28px;
  font-weight: 700;
  padding-bottom: 15px;
  border-bottom: 1px solid rgba(136, 136, 136, 0.53);
  margin-bottom: 26px;
  line-height: 0.857;
}
@media screen and (max-width: 768px) {
  .topics-article__headline {
    padding-bottom: 5px;
    margin-bottom: 17px;
    font-size: 22px;
  }
}
.topics-article__caption {
  margin-bottom: 26px;
  font-size: 23px;
  font-weight: 700;
  line-height: 1.043;
}
@media screen and (max-width: 768px) {
  .topics-article__caption {
    margin-bottom: 17px;
    font-size: 19px;
  }
}
.topics-article__subheading {
  font-size: 20px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 26px;
}
@media screen and (max-width: 768px) {
  .topics-article__subheading {
    font-size: 17px;
  }
}
.topics-article__list {
  margin-left: 15px;
}
.topics-article__list--firstly {
  margin-top: 23px;
  list-style-type: disc;
}
@media screen and (max-width: 768px) {
  .topics-article__list--firstly {
    margin-top: 31px;
  }
}
.topics-article__list--secondary {
  list-style-type: decimal;
  margin-top: 32px;
  margin-bottom: 34px;
}
@media screen and (max-width: 768px) {
  .topics-article__list--secondary {
    margin-top: 24px;
    margin-bottom: 36px;
  }
}
.topics-article__item {
  font-weight: 500;
  line-height: 1.5;
}
.topics-article__item:not(:last-of-type) {
  margin-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .topics-article__item:not(:last-of-type) {
    margin-bottom: 8px;
  }
}
@media screen and (max-width: 768px) {
  .topics-article__content text {
    margin-top: 17px;
  }
}

.pagination {
  margin-top: 72px;
  margin-bottom: 269px;
}
@media screen and (max-width: 768px) {
  .pagination {
    margin-top: 10px;
    margin-bottom: 81px;
  }
}
.pagination__list {
  list-style: none;
  padding: 0;
  display: flex;
  align-items: center;
  gap: 15px;
  justify-content: center;
  margin: 0 auto;
}
.form {
  margin: 271px auto 0;
  max-width: 1104px;
}
@media screen and (max-width: 768px) {
  .form {
    margin: 112px auto 0;
  }
}
.form__heading {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .form__heading {
    font-size: 24px;
    font-family: "Noto Sans JP", sans-serif;
    margin-bottom: 21px;
  }
}
.form__text {
  font-weight: 400;
  line-height: 1.5;
}
@media screen and (max-width: 1120px) {
  .form__text {
    padding-left: 3vw;
  }
}
@media screen and (max-width: 768px) {
  .form__text {
    padding-left: 0;
    width: 91.2%;
    margin: 0 auto;
    font-size: 13px;
    line-height: 1.846;
  }
}
.form__container {
  width: 720px;
  margin: 57px auto 234px;
}
@media screen and (max-width: 768px) {
  .form__container {
    width: 84.266666666%;
    margin: 34px auto 90px;
  }
}
.form__btn {
  width: 201px;
  height: 35px;
  margin: 82px auto 0;
  display: block;
  background-color: #222222;
  color: #FFFFFF;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  .form__btn {
    margin-top: 21px;
    font-size: 12px;
    width: 101px;
    height: 17.6px;
  }
}

.input:nth-of-type(1) {
  margin-bottom: 54px;
}
.input:nth-of-type(2) {
  margin-bottom: 45px;
}
.input:nth-of-type(3) {
  margin-bottom: 40px;
}
.input:nth-of-type(4) {
  margin-bottom: 57px;
}
@media screen and (max-width: 768px) {
  .input:not(:last-of-type) {
    margin-bottom: 23px;
  }
}
.input__headline {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .input__headline {
    margin-bottom: 15px;
  }
}
.input__tag {
  color: #CA0707;
  font-weight: 700;
  font-size: 18px;
}
@media screen and (max-width: 768px) {
  .input__tag {
    font-size: 13px;
  }
}
.input__heading {
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  .input__heading {
    font-size: 15px;
  }
}
.input input, .input textarea {
  border: 1px solid #000000;
}
.input input.wpcf7-not-valid, .input textarea.wpcf7-not-valid {
  border: 1px solid #dc3232 !important;
  background-color: rgba(220, 50, 50, 0.05);
}
.input input.wpcf7-not-valid:focus, .input textarea.wpcf7-not-valid:focus {
  background-color: rgb(0, 0, 0);
}
.input input {
  width: 418px;
  height: 50px;
}
@media screen and (max-width: 768px) {
  .input input {
    width: 66.772151898%;
    height: 25px;
  }
}
.input textarea {
  width: 720px;
  height: 197px;
}
@media screen and (max-width: 768px) {
  .input textarea {
    width: 93.037974683%;
    height: 100px;
  }
}

.c-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.8rem;
  margin-top: 72px;
  margin-bottom: 269px;
  font-weight: 400;
  font-size: 15px;
}
@media screen and (max-width: 1024px) {
  .c-pagination {
    margin-top: 5vw;
    margin-bottom: 18.68vw;
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .c-pagination {
    margin: 10px 0 81px;
  }
}
.c-pagination .page-numbers.current {
  font-weight: 700;
}

.header-title {
  text-transform: uppercase;
}
.header-title span {
  font-family: "Roboto", sans-serif;
  font-weight: 900;
  font-size: 15px;
}
@media screen and (max-width: 768px) {
  .header-title span {
    font-weight: 700;
    font-size: 12px;
    font-family: "Noto Sans JP", sans-serif;
  }
}

.wpcf7-spinner {
  display: none !important;
}/*# sourceMappingURL=style.css.map */