@import url("https://use.fontawesome.com/releases/v6.4.2/css/all.css");
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Raleway:ital,wght@0,100..900;1,100..900&display=swap");
:root {
  --color-main: #e60012;
  --color-main-rgb: 230, 0, 18;
  --color-main-light: #fff5f5;
  --color-bg-gray: #f8f7f6;
  --color-white: #fff;
  --color-black: #000;
  --color-black-rgb: 0, 0, 0;
  --radius-section: min(90px, 8vw);
  --radius-card: 15px;
  --radius-pill: 99px;
  --transition-base: 0.3s;
}

body {
  margin: 0;
  font-family: system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Hiragino Kaku Gothic ProN", "Yu Gothic", Meiryo, sans-serif;
  background-color: var(--color-main);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

img {
  max-width: 100%;
  border: none;
  vertical-align: bottom;
}

a {
  text-decoration: none;
}

@media only screen and (min-width: 1001px) {
  .sponly {
    display: none;
  }
}

@media only screen and (max-width: 1000px) {
  .pconly {
    display: none;
  }
}

.global_head {
  margin: 0;
}

.wrap {
  font-family: "Noto Sans JP";
}

.hero img {
  width: 100%;
}
.hero h1 {
  margin: 0;
}

.local-nav-btn {
  display: none;
  position: relative;
  width: 50px;
  height: 50px;
  cursor: pointer;
  z-index: 1001;
  background: rgba(var(--color-main-rgb), 0.94);
  border-radius: 14px;
}
@media only screen and (max-width: 1000px) {
  .local-nav-btn {
    display: block;
    position: fixed;
    top: 55px;
    right: 10px;
    transition: top var(--transition-base);
  }
  .local-nav-btn.scrolled {
    top: 20px;
  }
}
.local-nav-btn span {
  display: block;
  position: absolute;
  width: 20px;
  height: 2px;
  background-color: var(--color-white);
  transition: transform var(--transition-base), opacity var(--transition-base), top var(--transition-base), bottom var(--transition-base);
  left: 50%;
  transform: translateX(-50%);
}
.local-nav-btn span:nth-of-type(1) {
  top: 15px;
}
.local-nav-btn span:nth-of-type(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.local-nav-btn span:nth-of-type(3) {
  bottom: 15px;
}
.local-nav-btn.active span:nth-of-type(1) {
  top: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
}
.local-nav-btn.active span:nth-of-type(2) {
  opacity: 0;
}
.local-nav-btn.active span:nth-of-type(3) {
  bottom: auto;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-45deg);
}

.local-nav {
  background-color: var(--color-white);
  box-shadow: 0 10px 30px rgba(var(--color-black-rgb), 0.16);
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  justify-content: center;
  gap: 0 10px;
  padding: 10px;
  border-radius: 14px;
  width: -moz-fit-content;
  width: fit-content;
}
@media only screen and (min-width: 1001px) {
  .local-nav {
    margin: 0 auto;
    position: relative;
    top: 60px;
  }
  .local-nav.fixed {
    position: fixed;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 999;
  }
}
@media only screen and (max-width: 1000px) {
  .local-nav {
    border: 2px solid rgba(var(--color-main-rgb), 0.35);
    position: fixed;
    top: 115px;
    right: 10px;
    left: auto;
    width: 200px;
    flex-direction: column;
    gap: 8px 0;
    z-index: 999;
    border-radius: 14px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity var(--transition-base), visibility var(--transition-base), transform var(--transition-base), top var(--transition-base);
  }
  .local-nav.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
  .local-nav.scrolled {
    top: 80px;
  }
}
.local-nav__item {
  font-family: "Raleway";
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1;
  text-align: center;
  font-size: 1.5em;
}
.local-nav__item:hover a {
  color: var(--color-main);
}
@media only screen and (max-width: 1000px) {
  .local-nav__item {
    font-size: 0.92rem;
  }
}
.local-nav__item a {
  border: 2px solid rgba(var(--color-main-rgb), 0.35);
  border-radius: 12px;
  color: var(--color-black);
  display: block;
  padding: 12px 18px;
  transition: color 0.25s;
  white-space: nowrap;
}

h2 {
  font-family: "Raleway";
  text-align: center;
  font-size: 4.6rem;
  font-weight: 800;
  margin: 0 0 30px;
  line-height: 1;
}
@media only screen and (max-width: 1000px) {
  h2 {
    font-size: 2.5rem;
  }
}
h2 span {
  font-family: "Noto Sans JP";
  display: block;
  font-weight: normal;
  font-weight: 600;
  letter-spacing: 0.1rem;
}
@media only screen and (max-width: 1000px) {
  h2 span {
    font-size: 1rem;
    margin-top: 10px;
  }
}
@media only screen and (min-width: 1001px) {
  h2 span {
    font-size: 1.3rem;
    margin-top: 5px;
  }
}

.block {
  margin: 0 auto;
}
@media only screen and (max-width: 1000px) {
  .block {
    padding: 0 18px;
  }
}
@media only screen and (min-width: 1001px) {
  .block {
    max-width: 1300px;
    width: calc(100% - 40px);
  }
}

.intro {
  background-color: var(--color-main);
  text-align: center;
  padding: 150px 0 100px;
}
@media only screen and (max-width: 1000px) {
  .intro {
    padding: 60px 0;
  }
}
.intro__content {
  color: var(--color-white);
  margin: 0 auto;
}
@media only screen and (max-width: 1000px) {
  .intro__content {
    width: calc(100% - 50px);
  }
}
.intro__content p {
  margin: 0;
}
.intro__kicker {
  color: #fef103;
  font-weight: 700;
  font-size: 1.35rem;
  line-height: 1.7;
  letter-spacing: 0.09rem;
  margin-bottom: 20px !important;
}
@media only screen and (max-width: 1000px) {
  .intro__kicker {
    font-size: 1.1rem;
    margin-bottom: 20px !important;
  }
}
.intro__open {
  font-weight: 800;
  font-size: 3rem;
  line-height: 1.3;
  letter-spacing: 0.1rem;
  margin-bottom: 30px !important;
}
@media only screen and (max-width: 1000px) {
  .intro__open {
    font-size: 1.8rem;
    margin-bottom: 25px !important;
  }
}
.intro__text {
  font-weight: 600;
  font-size: 1.1rem;
  line-height: 1.95;
  letter-spacing: 0.09rem;
  display: grid;
  gap: 15px 0;
}
@media only screen and (max-width: 1000px) {
  .intro__text {
    font-size: 0.9rem;
    letter-spacing: 0.05rem;
    line-height: 2.1;
  }
}
.intro__note {
  background-color: var(--color-white);
  max-width: 900px;
  width: 100%;
  margin: 50px auto 0;
  padding: 35px 40px 40px;
  font-weight: 600;
  border-radius: 10px;
}
@media only screen and (max-width: 1000px) {
  .intro__note {
    max-width: 330px;
    margin: 40px auto 0;
    padding: 20px 25px 25px;
  }
}
.intro__note-text {
  color: var(--color-black);
}
.intro__note-text {
  font-size: 1.3rem;
  margin: 0 0 20px !important;
}
@media only screen and (max-width: 1000px) {
  .intro__note-text {
    font-size: 0.9rem;
    margin: 0 0 15px !important;
  }
}
.intro__note-closed {
  border: 2px dotted var(--color-main);
  color: var(--color-main);
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 0 55px;
  margin: 0 0 22px;
  padding: 15px 20px;
  font-size: 1.3rem;
}
@media only screen and (max-width: 1000px) {
  .intro__note-closed {
    display: block;
    margin: 0 0 17px;
    padding: 7px 15px 10px;
    text-align: center;
    font-size: 1rem;
  }
}
.intro__note-closed dt {
  border-right: 1px solid var(--color-main);
}
@media only screen and (max-width: 1000px) {
  .intro__note-closed dt {
    display: block;
    border-right: none;
    border-bottom: 1px solid var(--color-main);
    margin: 0 0 3px;
    padding: 0 0 3px;
  }
}
.intro__note-closed dd {
  text-align: left;
  margin: 0;
  font-size: 1.4rem;
}
@media only screen and (max-width: 1000px) {
  .intro__note-closed dd {
    text-align: center;
    font-size: 1.05rem;
  }
}
.intro__note-closed .intro__note-day-container {
  background-color: var(--color-main);
  color: var(--color-white);
  border-radius: 50%;
  width: 27px;
  height: 27px;
  font-size: 0.9rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 3px;
  position: relative;
  top: -3px;
}
@media only screen and (max-width: 1000px) {
  .intro__note-closed .intro__note-day-container {
    width: 20px;
    height: 20px;
    font-size: 0.7rem;
    top: -2px;
  }
}
.intro__note-closed .intro__note-day-container .intro__note-day {
  position: relative;
  top: -1px;
}
.intro__note-open {
  background-color: var(--color-main);
  color: var(--color-white);
  margin: 0;
  padding: 15px 25px;
  font-weight: 800;
  font-size: 2.4rem;
}
@media only screen and (max-width: 1000px) {
  .intro__note-open {
    padding: 7px 15px 10px;
    font-size: 1.4rem;
  }
}
.intro__note-open dt {
  display: block;
  border-bottom: 1px solid var(--color-white);
  margin: 0 0 5px;
  padding: 0 0 10px;
  font-weight: 600;
  font-size: 1.6rem;
}
@media only screen and (max-width: 1000px) {
  .intro__note-open dt {
    margin: 0 0 3px;
    padding: 0 0 3px;
    font-size: 1rem;
  }
}
.intro__note-open dd {
  margin: 0;
}
@media only screen and (max-width: 1000px) {
  .intro__note-open dd {
    line-height: 1.2;
  }
}
.intro__note-open .intro__note-day-container {
  background-color: var(--color-white);
  color: var(--color-main);
  border-radius: 50%;
  width: 39px;
  height: 39px;
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 0 5px 0 3px;
  position: relative;
  top: -4px;
}
@media only screen and (max-width: 1000px) {
  .intro__note-open .intro__note-day-container {
    width: 22px;
    height: 22px;
    font-size: 1rem;
    top: -2px;
  }
}
.intro__note-open .intro__note-day-container .intro__note-day {
  position: relative;
  top: -1px;
}

.topics {
  background-color: #222;
  color: var(--color-white);
  border-radius: var(--radius-section) 0 var(--radius-section) 0;
  margin-bottom: 60px;
  padding: 100px 0;
}
@media only screen and (max-width: 1000px) {
  .topics {
    margin-bottom: 50px;
    padding: 60px 0;
  }
}
.topics__head {
  font-family: "Noto Sans JP";
  color: var(--color-main);
  text-align: center;
  font-size: 3.5rem;
  max-width: 1000px;
  margin: 0 auto 70px;
  padding: 40px 0;
  background-color: #2a2a2a;
  border-radius: var(--radius-pill);
  line-height: 1;
  position: relative;
}
@media only screen and (max-width: 1000px) {
  .topics__head {
    font-size: 2rem;
    margin: 0 0 40px;
    padding: 30px 0;
  }
}
.topics__head span {
  font-family: "Raleway";
  font-weight: 600;
  letter-spacing: 0.1rem;
  display: block;
  color: #999;
}
@media only screen and (max-width: 1000px) {
  .topics__head span {
    font-size: 1rem;
    margin-top: 15px;
  }
}
@media only screen and (min-width: 1001px) {
  .topics__head span {
    font-size: 1.8rem;
    margin-top: 20px;
  }
}
.topics__head-pic img {
  position: absolute;
}
@media only screen and (max-width: 1000px) {
  .topics__head-pic img {
    width: 90px;
  }
}
@media only screen and (max-width: 1000px) {
  .topics__head-pic.topics-head-pic-left img {
    bottom: -15px;
    left: -10px;
  }
}
@media only screen and (min-width: 1001px) {
  .topics__head-pic.topics-head-pic-left img {
    bottom: -25px;
    left: 50%;
    transform: translateX(calc(-50% - 290px));
    width: 140px;
  }
}
@media only screen and (max-width: 1000px) {
  .topics__head-pic.topics-head-pic-right img {
    top: -35px;
    right: -10px;
  }
}
@media only screen and (min-width: 1001px) {
  .topics__head-pic.topics-head-pic-right img {
    top: -30px;
    left: 50%;
    transform: translateX(calc(-50% + 330px));
    width: 150px;
  }
}
.topics__note {
  background-color: var(--color-main);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  font-size: 1.1rem;
  padding: 10px 25px 13px;
  display: inline-block;
  position: absolute;
  top: -27px;
  left: 50%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 1000px) {
  .topics__note {
    font-size: 0.8rem;
    padding: 10px 20px;
    top: -25px;
  }
}
.topics__note::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  width: 15px;
  height: 8px;
  background: var(--color-main);
  clip-path: polygon(0 0, 100% 0, 50% 100%);
}
@media only screen and (max-width: 1000px) {
  .topics__note::after {
    width: 13px;
    height: 7px;
  }
}
.topics__nav {
  list-style: none;
  margin: 0 auto 60px;
  padding: 0;
  max-width: 700px;
  display: grid;
  grid-template-columns: 100px 1fr 1fr 1fr;
  gap: 10px;
}
@media only screen and (max-width: 1000px) {
  .topics__nav {
    margin: 0 auto 40px;
    max-width: 370px;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
  }
}
.topics__nav-item {
  height: 46px;
  background-color: var(--color-main-light);
  color: var(--color-main);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  padding: 0 3px;
  line-height: 1.3;
  cursor: pointer;
  font-weight: 700;
  transition: background-color var(--transition-base), color var(--transition-base);
}
@media only screen and (max-width: 1000px) {
  .topics__nav-item {
    font-size: 0.8rem;
    line-height: 1.2;
    padding: 0;
  }
}
.topics__nav-item:hover {
  background-color: var(--color-main);
  color: var(--color-white);
}
.topics__nav-item.active {
  background-color: var(--color-main);
  color: var(--color-white);
}
.topics__nav-item:nth-of-type(1) {
  grid-row: span 2;
  height: auto;
}
@media only screen and (max-width: 1000px) {
  .topics__nav-item:nth-of-type(1) {
    grid-row: auto;
    grid-column: 1/-1;
    width: 120px;
    height: 46px;
    margin: 0 auto;
    aspect-ratio: auto;
  }
}
.topics__nav-item:nth-of-type(4) {
  font-size: 0.9rem;
}
@media only screen and (max-width: 1000px) {
  .topics__nav-item:nth-of-type(4) {
    font-size: 0.67rem;
    padding-top: 0;
  }
}
.topics__nav-label {
  white-space: nowrap;
}
@media only screen and (max-width: 1000px) {
  .topics__nav-label {
    white-space: normal;
  }
}
.topics__list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 35px 30px;
  margin: 0 auto;
}
@media only screen and (max-width: 1000px) {
  .topics__list {
    gap: 20px;
  }
}
.topics__item {
  width: calc((100% - 90px) / 4);
  border: 2px solid #555;
  border-radius: var(--radius-card);
  transition: opacity var(--transition-base);
}
@media only screen and (max-width: 1000px) {
  .topics__item {
    width: calc((100% - 20px) / 2);
  }
}
.topics__item:hover {
  opacity: 0.7;
}
.topics__item:hover .topics__pic img {
  transform: scale(1.1);
}
.topics__item a {
  color: var(--color-white);
}
.topics__pic {
  background-color: #000;
  border-bottom: 2px solid #555;
  height: 200px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: var(--radius-card) var(--radius-card) 0 0;
}
@media only screen and (max-width: 1000px) {
  .topics__pic {
    height: 120px;
  }
}
.topics__pic img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
  transition: transform 0.4s;
}
.topics__pic img.noimage {
  -o-object-fit: cover;
     object-fit: cover;
}
.topics__text {
  padding: 15px 13px;
}
@media only screen and (max-width: 1000px) {
  .topics__text {
    padding: 8px 7px 10px;
  }
}
.topics__category {
  display: inline-block;
  background-color: var(--color-main);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  font-weight: 700;
  font-size: 0.7rem;
  line-height: 1;
  margin-bottom: 10px;
  padding: 3px 10px 5px;
}
@media only screen and (max-width: 1000px) {
  .topics__category {
    font-size: 0.6rem;
    margin-bottom: 8px;
    padding: 3px 8px;
  }
}
.topics__ttl {
  margin: 0 0 10px;
  font-size: 1.05rem;
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  height: 76px;
  font-weight: 600;
}
@media only screen and (max-width: 1000px) {
  .topics__ttl {
    margin: 0 0 5px;
    font-size: 0.8rem;
    line-height: 1.3;
    height: 52px;
  }
}
.topics__date {
  font-family: sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  display: block;
  color: #777;
}
@media only screen and (max-width: 1000px) {
  .topics__date {
    font-size: 0.65rem;
  }
}
.topics__link {
  display: none;
  text-align: center;
  margin-top: 40px;
}
@media only screen and (max-width: 1000px) {
  .topics__link {
    margin-top: 30px;
  }
}
.topics__link-btn {
  display: inline-flex;
  align-items: center;
  background-color: var(--color-main);
  color: var(--color-white);
  border-radius: var(--radius-pill);
  min-width: 220px;
  height: 60px;
  margin: 60px auto 0;
  padding: 0 65px 0 23px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: background-color var(--transition-base), border-color var(--transition-base), color var(--transition-base);
  position: relative;
}
@media only screen and (max-width: 1000px) {
  .topics__link-btn {
    min-width: 170px;
    height: 45px;
    margin: 50px auto 0;
    padding: 0 45px 0 20px;
    font-size: 0.8rem;
  }
}
.topics__link-btn:hover {
  background-color: var(--color-white);
  color: var(--color-main);
}
.topics__link-btn:hover .topics__arrow {
  background-color: var(--color-main);
}
.topics__link-btn:hover .topics__arrow::after {
  border-top: solid 2.5px var(--color-white);
  border-right: solid 2.5px var(--color-white);
}
.topics__arrow {
  background-color: var(--color-white);
  border-radius: 50%;
  width: 27px;
  height: 27px;
  position: absolute;
  top: 50%;
  right: 20px;
  translate: 0 -50%;
}
@media only screen and (max-width: 1000px) {
  .topics__arrow {
    width: 18px;
    height: 18px;
    right: 13px;
  }
}
.topics__arrow::after {
  content: "";
  width: 8px;
  height: 8px;
  border-top: solid 2.5px var(--color-main);
  border-right: solid 2.5px var(--color-main);
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%) rotate(45deg);
}
@media only screen and (max-width: 1000px) {
  .topics__arrow::after {
    width: 7px;
    height: 7px;
    right: 6.5px;
  }
}

.access {
  background-color: var(--color-white);
  border-radius: var(--radius-section) 0 var(--radius-section) 0;
  color: var(--color-main);
  margin-bottom: 40px;
  padding: 65px 25px;
}
@media only screen and (max-width: 1000px) {
  .access {
    margin-bottom: 0;
    padding: 50px 30px 60px;
  }
}
.access__content {
  position: relative;
}
.access__item {
  background-color: var(--color-white);
  color: var(--color-main);
  padding: 30px;
}
@media only screen and (max-width: 1000px) {
  .access__item {
    padding: 0;
  }
}
.access__ttl {
  font-family: "Raleway";
  font-weight: 800;
  line-height: 1;
}
@media only screen and (max-width: 1000px) {
  .access__ttl {
    text-align: center;
    margin: 0 0 30px;
    font-size: 2.8rem;
  }
}
@media only screen and (min-width: 1001px) {
  .access__ttl {
    position: absolute;
    top: 0;
    left: 0;
    font-size: 4.6rem;
    border-radius: 0 0 30px 0;
    padding: 30px 40px 40px 30px;
    box-shadow: 7px 7px 8px rgba(var(--color-black-rgb), 0.05);
  }
}
.access__ttl span {
  display: block;
  font-weight: normal;
  font-weight: 700;
  letter-spacing: 0.1rem;
}
@media only screen and (max-width: 1000px) {
  .access__ttl span {
    font-size: 1rem;
    margin-top: 10px;
  }
}
@media only screen and (min-width: 1001px) {
  .access__ttl span {
    font-size: 1.3rem;
    margin-top: 5px;
  }
}
.access__info {
  font-weight: 500;
}
@media only screen and (max-width: 1000px) {
  .access__info {
    margin: 20px 0 25px;
    font-size: 0.85rem;
    line-height: 1.7;
  }
}
@media only screen and (min-width: 1001px) {
  .access__info {
    position: absolute;
    right: 0;
    bottom: 0;
    border-radius: 30px 0 0 0;
    max-width: 400px;
    font-size: 0.95rem;
    box-shadow: -7px -7px 8px rgba(var(--color-black-rgb), 0.05);
  }
}
.access__info ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 10px 0;
}
.access__info ul li {
  font-feature-settings: "palt";
  padding-left: 1.7rem;
  text-indent: -1.7rem;
  letter-spacing: 0.1rem;
  line-height: 1.5;
}
.access__info ul li::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  margin-right: 0.5rem;
}
.access__info ul li:nth-of-type(1)::before {
  content: "\f3c5";
}
.access__info ul li:nth-of-type(2)::before {
  content: "\f239";
}
.access__map iframe {
  width: 100%;
  border-radius: 20px;
}
@media only screen and (max-width: 1000px) {
  .access__map iframe {
    height: 450px;
  }
}
@media only screen and (min-width: 1001px) {
  .access__map iframe {
    height: 650px;
  }
}

.recruit {
  color: var(--color-white);
  padding: 100px 0 110px;
}
@media only screen and (max-width: 1000px) {
  .recruit {
    padding: 60px 0 70px;
  }
}
@media only screen and (min-width: 1001px) {
  .recruit h2 {
    margin: 0 0 60px;
  }
}
.recruit p {
  text-align: center;
  font-weight: 600;
  letter-spacing: 0.05rem;
  font-size: 1.4rem;
  line-height: 1.8;
}
@media only screen and (max-width: 1000px) {
  .recruit p {
    font-size: 1.05rem;
    line-height: 1.8;
  }
}
.recruit__link {
  border: 2px solid var(--color-main);
  background-color: #cf0001;
  color: var(--color-white);
  font-weight: 700;
  font-size: 1.7rem;
  letter-spacing: 0.05rem;
  border-radius: var(--radius-card);
  max-width: 550px;
  height: 105px;
  margin: 60px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background-color var(--transition-base), color var(--transition-base);
}
@media only screen and (max-width: 1000px) {
  .recruit__link {
    font-size: 1.05rem;
    margin: 30px auto 0;
    max-width: 300px;
    height: 70px;
  }
}
.recruit__link:hover {
  background-color: var(--color-white);
  color: var(--color-main);
}
.recruit__link:hover .recruit__arrow {
  background-color: var(--color-main);
}
.recruit__link:hover .recruit__arrow::after {
  border-top: solid 2.8px var(--color-white);
  border-right: solid 2.8px var(--color-white);
}
.recruit__arrow {
  background-color: var(--color-white);
  width: 40px;
  height: 40px;
  right: 30px;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
@media only screen and (max-width: 1000px) {
  .recruit__arrow {
    width: 28px;
    height: 28px;
    right: 20px;
  }
}
.recruit__arrow::after {
  content: "";
  border-top: solid 2.8px var(--color-main);
  border-right: solid 2.8px var(--color-main);
  width: 11px;
  height: 11px;
  right: 16px;
  transform: rotate(45deg);
  position: absolute;
  top: 50%;
  translate: 0 -50%;
}
@media only screen and (max-width: 1000px) {
  .recruit__arrow::after {
    width: 9px;
    height: 9px;
    right: 11px;
  }
}

.sns {
  background-color: var(--color-white);
  padding: 100px 0 120px;
}
@media only screen and (max-width: 1000px) {
  .sns {
    padding: 60px 0 70px;
  }
}
.sns h2 {
  font-size: 2.2rem;
  margin: 0 0 60px;
}
@media only screen and (max-width: 1000px) {
  .sns h2 {
    font-size: 1.15rem;
    margin: 0 0 30px;
  }
}
.sns__list {
  display: flex;
  justify-content: center;
  gap: 0 50px;
}
@media only screen and (max-width: 1000px) {
  .sns__list {
    gap: 0 25px;
  }
}
.sns__item {
  color: var(--color-black);
  text-align: center;
}
.sns__item:hover {
  color: var(--color-main);
}
.sns__item:hover .sns__icon {
  background-color: var(--color-main);
}
.sns__icon {
  background-color: var(--color-black);
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: grid;
  place-content: center;
  margin: 0 auto 10px;
  transition: background-color var(--transition-base);
}
@media only screen and (max-width: 1000px) {
  .sns__icon {
    width: 58px;
    height: 58px;
    margin: 0 auto 7px;
  }
}
.sns__icon::before {
  content: "\e61b";
  font-family: "Font Awesome 6 Brands";
  font-weight: 900;
  display: block;
  font-size: 2rem;
  color: var(--color-white);
}
@media only screen and (max-width: 1000px) {
  .sns__icon::before {
    font-size: 1.8rem;
  }
}
.sns p {
  margin: 0;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}
@media only screen and (max-width: 1000px) {
  .sns p {
    font-size: 0.85rem;
  }
}

.scroll-to-top {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 50px;
  height: 50px;
  background-color: var(--color-white);
  border: 2px solid #ece8e8;
  border-radius: 50%;
  cursor: pointer;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--transition-base) ease, visibility var(--transition-base) ease, background-color var(--transition-base) ease;
}
@media only screen and (max-width: 1000px) {
  .scroll-to-top {
    width: 45px;
    height: 45px;
    bottom: 20px;
    right: 20px;
  }
}
.scroll-to-top:hover {
  background-color: #f1f1f1;
}
.scroll-to-top.show {
  opacity: 1;
  visibility: visible;
}
.scroll-to-top span {
  display: block;
  border-top: solid 2px #666;
  border-right: solid 2px #666;
  transform: rotate(315deg);
}
@media only screen and (max-width: 1000px) {
  .scroll-to-top span {
    width: 10px;
    height: 10px;
    margin-top: 5px;
  }
}
@media only screen and (min-width: 1001px) {
  .scroll-to-top span {
    width: 11px;
    height: 11px;
    margin-top: 6px;
  }
}/*# sourceMappingURL=style.css.map */