@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

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

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type="checkbox"],
input[type="radio"] {
  display: none;
}

input[type="submit"],
input[type="button"],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}

.header {
  width: 100%;
  height: 180px;
}
@media only screen and (max-width: 780px) {
  .header {
    height: 23vw;
    min-height: 105px;
  }
}

.header__inner {
  width: 100%;
  height: inherit;
}
@media only screen and (max-width: 780px) {
  .header__inner {
    position: relative;
    height: 100%;
  }
}

.header__logo {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-inline: auto;
  height: 130px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 780px) {
  .header__logo {
    height: inherit;
  }
}
.header__logo img {
  width: 135px;
  height: 115px;
  -o-object-fit: cover;
  object-fit: cover;
}
@media only screen and (max-width: 780px) {
  .header__logo img {
    width: 18.8vw;
    height: 100%;
    min-width: 90px;
  }
}

.header__menu {
  background-color: #db0000;
  height: 50px;
  position: relative;
}
.header__menu ul {
  display: flex;
  justify-content: center;
  align-items: center;
  height: inherit;
}
.header__menu li {
  padding-left: 30px;
  height: inherit;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
}
.header__menu li::after {
  height: 12px;
  width: 1px;
  content: "";
  display: block;
  background-color: #fff;
  margin-left: 30px;
}
.header__menu li:first-child {
  padding-left: 0;
}
.header__menu li:last-child:after {
  content: none;
}

.header__menu li:first-of-type:after {
  margin-left: 40px;
}

li.is-active > .header__menu-link {
  display: inline-flex;
  align-items: center;
  position: relative;
}
li.is-active > .header__menu-link:before {
  content: "";
  display: block;
  width: 15px;
  height: 13px;
  background-image: url(../images/top-icon.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 10px;
}
li.is-active > .header__menu-link:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: 12px;
  left: 0;
}

li:not(.is-active) > .header__menu-link {
  position: relative;
}
li:not(.is-active) > .header__menu-link:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background-color: #fff;
  position: absolute;
  bottom: 12px;
  left: 0;
  visibility: hidden;
}
li:not(.is-active) > .header__menu-link:hover:after {
  visibility: visible;
}

.header__menu-link {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 400;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 15px;
  line-height: 1.84;
  color: #fff;
  height: inherit;
}

.megamenu:hover .megamenu__content {
  opacity: 1;
  visibility: visible;
}

.megamenu__content {
  opacity: 0;
  height: 120px;
  visibility: hidden;
  position: absolute;
  z-index: 1000;
  top: 100%;
  left: 0;
  width: 100%;
  padding-top: 25px;
  padding-bottom: 28px;
  background-color: rgba(255, 255, 255, 0.9);
}

.megamenu__list {
  display: flex;
  flex-direction: column;
  width: 700px;
  margin-inline: auto;
}

.megamenu__list-wrap {
  display: flex;
  align-items: center;
}
.megamenu__list-wrap a {
  width: 125px;
  padding-bottom: 5px;
  border-bottom: 1px solid #000;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 400;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  color: #333;
}
.megamenu__list-wrap a:after {
  content: "";
  border: 0;
  border-top: solid 1px #333;
  border-right: solid 1px #333;
  display: inline-block;
  transform: rotate(45deg) translateY(-50%);
  width: 8px;
  height: 8px;
  margin-right: 7px;
  margin-top: 5px;
}
.megamenu__list-wrap a + a {
  margin-left: 60px;
}

.megamenu__list-wrap + .megamenu__list-wrap {
  margin-top: 15px;
}

.hamburger {
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  position: absolute;
  z-index: 9999;
  top: 50%;
  transform: translateY(-50%);
  right: 10%;
  cursor: pointer;
}
@media only screen and (max-width: 375px) {
  .hamburger {
    right: 4%;
    width: 45px;
  }
}

.hamburger span {
  display: block;
  width: 40px;
  height: 5px;
  background-color: #333;
  position: absolute;
  top: 0;
}
@media only screen and (max-width: 375px) {
  .hamburger span {
    width: 45px;
    height: 5px;
  }
}
.hamburger span:first-child {
  top: 0%;
  left: 0;
}
@media only screen and (max-width: 780px) {
  .hamburger span:first-child {
    top: 2%;
  }
}
.hamburger span:nth-child(2) {
  top: 46%;
  transform: translateY(-50%);
  left: 0;
}
.hamburger span:last-child {
  top: 75%;
  left: 0;
}

.js-hamburger.is-active span:first-child {
  transform: rotate(-45deg);
  top: 16px;
}
.js-hamburger.is-active span:nth-child(2) {
  opacity: 0;
}
.js-hamburger.is-active span:nth-child(3) {
  transform: rotate(45deg);
  top: 16px;
}

.drawer {
  width: 100%;
  height: 100%;
  position: fixed;
  z-index: 5000;
  right: -100%;
  top: 0;
  background-color: #fff;
  transition: right 0.3s ease;
  overflow-y: auto;
  overscroll-behavior-y: none;
}

.js-drawer.is-active {
  display: block;
  right: 0;
}

.drawer__inner {
  padding-left: 20px;
  padding-right: 20px;
}

.drawer__content {
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}

.drawer__logo {
  padding-top: 30px;
  width: 100%;
  height: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.drawer__logo img {
  width: 22.8vw;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.drawer__nav {
  margin-top: 41px;
}
.drawer__nav ul li {
  width: 100%;
  padding-bottom: 41px;
  padding-top: 43px;
  border-bottom: 1px dashed #efefef;
  display: inline-flex;
  align-items: center;
  position: relative;
}
.drawer__nav ul li::before {
  content: "";
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 26px;
}
.drawer__nav ul li::after {
  content: "";
  position: absolute;
  border: 0;
  border-top: solid 2px #363636;
  border-right: solid 2px #363636;
  display: block;
  transform: rotate(45deg) translateY(-50%);
  width: 9px;
  height: 9px;
  top: 50%;
  right: 49px;
}
.drawer__nav ul li a {
  font-weight: normal;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: clamp(14px, 4vw, 30px);
  color: #333;
  width: 100%;
}
.drawer__nav li.flyer-menu__list:after {
  content: none;
}
.drawer__nav .drawer__nav-item .js-slide::after {
  content: none;
}
.drawer__nav ul li:nth-child(1)::before {
  background-image: url(../images/footer-icon01.png);
  width: 26px;
  height: 23px;
}
.drawer__nav ul li:nth-child(2)::before {
  background-image: url(../images/footer-icon02.png);
  width: 28px;
  height: 21px;
}
.drawer__nav ul li:nth-child(3)::before {
  background-image: url(../images/footer-icon03.png);
  width: 23px;
  height: 25px;
}
.drawer__nav ul li:nth-child(4)::before {
  background-image: url(../images/footer-icon04.png);
  width: 26px;
  height: 23px;
}
.drawer__nav ul li:nth-child(5)::before {
  background-image: url(../images/footer-icon05.png);
  width: 22px;
  height: 25px;
}
.drawer__nav ul li:nth-child(6) {
  margin-right: 0;
}
.drawer__nav ul li:nth-child(6)::before {
  background-image: url(../images/footer-icon06.png);
  width: 23px;
  height: 23px;
}

.mv {
  width: 100%;
  height: 500px;
  background-image: url(../images/fv.jpg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  padding-top: 180px;
  padding-bottom: 45px;
}
@media only screen and (max-width: 780px) {
  .mv {
    background-image: url(../images/mv-sp.png);
    height: 112.56vw;
    padding-top: 57vw;
    padding-bottom: 12.8vw;
  }
}

.mv__copy {
  background-color: rgba(255, 255, 255, 0.6);
  padding-top: 40px;
  padding-left: 108px;
  width: 865px;
  height: 277px;
  position: relative;
  margin-left: auto;
  text-align: center;
}
@media only screen and (max-width: 1024px) {
  .mv__copy {
    width: 84.4vw;
  }
}
@media only screen and (max-width: 780px) {
  .mv__copy {
    width: 89.7vw;
    padding-left: 0;
    margin-right: auto;
    margin-left: auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 42.2vw;
    padding-bottom: 6.67vw;
    padding-top: 8.33vw;
  }
}
.mv__copy img {
  display: block;
  position: relative;
  z-index: 3;
}
@media only screen and (max-width: 780px) {
  .mv__copy img {
    margin-inline: auto;
  }
}
.mv__copy img:nth-of-type(1) {
  width: 476px;
  height: 134px;
  aspect-ratio: 476/134;
}
@media only screen and (max-width: 780px) {
  .mv__copy img:nth-of-type(1) {
    width: 66.2vw;
    height: auto;
  }
}
.mv__copy img:nth-of-type(2) {
  width: 528px;
  height: 81px;
  aspect-ratio: 528/81;
  margin-left: -25px;
}
@media only screen and (max-width: 780px) {
  .mv__copy img:nth-of-type(2) {
    margin-inline: auto;
    width: 71.28vw;
    height: auto;
  }
}
.mv__copy::before {
  position: absolute;
  content: "";
  position: absolute;
  display: block;
  width: 211px;
  height: 176px;
  top: -115px;
  left: 344px;
  transform: translateX(-50%);
  background-image: url(../images/mv-logo.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 3;
}
@media only screen and (max-width: 780px) {
  .mv__copy::before {
    left: 50%;
    top: -38%;
    width: 27vw;
    height: 22.56vw;
  }
}

.top-location__section {
  width: 100%;
  padding-top: 61px;
  overflow-x: hidden;
}

.top-location__img {
  width: 98px;
  margin-inline: auto;
}
.top-location__img img {
  width: 98px;
  aspect-ratio: 98/65;
}

.top-location__title {
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 46px;
  color: #333;
  margin-top: 12px;
  text-align: center;
}
@media only screen and (max-width: 780px) {
  .top-location__title {
    font-size: clamp(40px, 4vw, 54px);
  }
}

.top-location__wrapper {
  margin-top: 7px;
}

.top-location__block {
  padding: 61px 51px;
}
@media only screen and (max-width: 780px) {
  .top-location__block {
    padding-top: 81px;
    padding-bottom: 70px;
    padding-left: 0;
    padding-right: 0;
  }
}
.top-location__block:nth-of-type(3)
  .top-location__block-content
  .info
  .info__content
  .info__text
  .info__text-wrap:nth-of-type(6) {
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .top-location__block:nth-of-type(3)
    .top-location__block-content
    .info
    .info__content
    .info__text
    .info__text-wrap:nth-of-type(6) {
    white-space: initial;
  }
}
.top-location__block:nth-of-type(3) .top-location__block-content .info__banner {
  margin-left: -199px;
  margin-top: 26px;
}
@media only screen and (max-width: 1024px) {
  .top-location__block:nth-of-type(3) .top-location__block-content .info__banner {
    margin-left: 0;
    margin-top: 75px;
  }
}
.top-location__block:nth-of-type(4) {
  padding-top: 47px;
  padding-bottom: 39px;
}

.top-location__block.top-location__block--color {
  position: relative;
}
.top-location__block.top-location__block--color:after {
  content: "";
  position: absolute;
  display: block;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  height: 100%;
  background-color: #ffffec;
  bottom: 0;
  left: 0;
  z-index: -5;
}

.top-location__block.top-location__block--logo {
  position: relative;
}
.top-location__block.top-location__block--logo:after {
  content: "";
  position: absolute;
  display: block;
  width: 607px;
  height: 557px;
  background-image: url(../images/logo-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  bottom: -52px;
  left: 0;
  z-index: -5;
  margin: 0 calc(50% - 50vw);
}
@media only screen and (max-width: 780px) {
  .top-location__block.top-location__block--logo:after {
    content: none;
  }
}

.top-location__block-title {
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 28px;
  color: #333;
  display: inline-flex;
  align-items: center;
}
@media only screen and (max-width: 780px) {
  .top-location__block-title {
    font-size: clamp(28px, 4vw, 42px);
  }
}
.top-location__block-title::before {
  content: "";
  display: block;
  width: 32px;
  height: 28px;
  background-image: url(../images/location-icon.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 14px;
}

.top-location__block-content {
  display: flex;
  justify-content: space-between;
  margin-top: 18px;
}
@media only screen and (max-width: 1024px) {
  .top-location__block-content {
    display: block;
  }
}

.top-location__block-image {
  width: 40%;
  border-radius: 10px;
}
@media only screen and (max-width: 1024px) {
  .top-location__block-image {
    width: 100%;
  }
}
.top-location__block-image img {
  width: 400px;
  -o-object-fit: cover;
  object-fit: cover;
  border-radius: 10px;
}
@media only screen and (max-width: 1024px) {
  .top-location__block-image img {
    width: 100%;
    height: 100%;
  }
}

.top-location__block-info {
  width: 57%;
}
@media only screen and (max-width: 1024px) {
  .top-location__block-info {
    width: 100%;
    margin-top: 50px;
  }
}

.info__heading {
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 18px;
  color: #333;
  padding-bottom: 3px;
  border-bottom: 1px solid #333;
}
@media only screen and (max-width: 780px) {
  .info__heading {
    font-size: clamp(18px, 4vw, 34px);
  }
}

.info__content {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}
@media only screen and (max-width: 1024px) {
  .info__content {
    display: block;
  }
}
@media only screen and (max-width: 780px) {
  .info__content {
    margin-top: 44px;
  }
}

.info__text-wrap {
  display: flex;
}
@media only screen and (max-width: 375px) {
  .info__text-wrap {
    flex-direction: column;
  }
}
.info__text-wrap p {
  font-weight: 400;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 15px;
  line-height: 2;
  color: #333;
  margin-top: 6px;
}
@media only screen and (max-width: 780px) {
  .info__text-wrap p {
    font-size: clamp(14px, 4vw, 30px);
    line-height: 1.47;
  }
}
.info__text-wrap p:nth-of-type(1) {
  width: 70px;
}
@media only screen and (max-width: 780px) {
  .info__text-wrap p:nth-of-type(1) {
    width: 22%;
    margin-right: 66px;
  }
}
@media only screen and (max-width: 375px) {
  .info__text-wrap p:nth-of-type(1) {
    width: 100%;
    margin-top: 15px;
  }
}
.info__text-wrap p:nth-of-type(2) {
  padding-left: 24px;
  white-space: nowrap;
}
@media only screen and (max-width: 780px) {
  .info__text-wrap p:nth-of-type(2) {
    white-space: initial;
    padding-left: 8.97vw;
    padding-left: 0;
  }
}

@media only screen and (max-width: 780px) {
  .info__text-wrap + .info__text-wrap {
    margin-top: 5vw;
  }
}

.info__banner {
  position: relative;
  width: 290px;
  margin-top: 20px;
}
@media only screen and (max-width: 1024px) {
  .info__banner {
    margin-top: 69px;
  }
}
.info__banner img {
  width: 290px;
  height: 149px;
  aspect-ratio: 290/149;
  -o-object-fit: contain;
  object-fit: contain;
}
@media only screen and (max-width: 1024px) {
  .info__banner img {
    margin-left: -46px;
    width: 660px;
    height: 100%;
  }
}
@media only screen and (max-width: 780px) {
  .info__banner img {
    width: 84.4vw;
    height: 100%;
    margin-left: -18px;
  }
}
@media only screen and (max-width: 1024px) {
  .info__banner {
    width: 100%;
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: center;
  }
}

.info__recruit-button.button {
  margin-top: 19px;
  margin-left: auto;
}
@media only screen and (max-width: 1024px) {
  .info__recruit-button.button {
    margin-top: 44px;
  }
}
@media only screen and (max-width: 780px) {
  .info__recruit-button.button {
    width: 100%;
    margin-right: auto;
  }
}

.info__recruit-button.button.button--more::after {
  content: none;
}
@media only screen and (max-width: 780px) {
  .info__recruit-button.button.button--more::after {
    content: "";
  }
}

.top-location__block-event {
  margin-top: 43px;
}

.top-location__block:nth-child(1) .top-location__block-event {
  margin-top: 44px;
}

.top-location__block:nth-child(2) .top-location__block-content .info .info__banner {
  margin-left: -24px;
  margin-top: 16px;
}
@media only screen and (max-width: 1024px) {
  .top-location__block:nth-child(2) .top-location__block-content .info .info__banner {
    margin-left: 0;
  }
}
@media only screen and (max-width: 780px) {
  .top-location__block:nth-child(2) .top-location__block-content .info .info__banner {
    margin-top: 48px;
  }
}

.top-location__block:nth-child(3) {
  padding-top: 55px;
}
@media only screen and (max-width: 780px) {
  .top-location__block:nth-child(3) {
    padding-top: 77px;
  }
}
.top-location__block:nth-child(3) .top-location__block-content .info .info__content {
  margin-top: 0;
}
@media only screen and (max-width: 780px) {
  .top-location__block:nth-child(3) .top-location__block-content .info .info__content {
    margin-top: 55px;
  }
}
.top-location__block:nth-child(3) .top-location__block-event {
  margin-top: 36px;
}

.top-location__block:nth-child(4) .top-location__block-content .info .info__content {
  margin-top: 25px;
}
.top-location__block:nth-child(4) .top-location__block-content .info .info__content .info__banner {
  margin-top: 9px;
  margin-left: -10px;
}
@media only screen and (max-width: 1024px) {
  .top-location__block:nth-child(4) .top-location__block-content .info .info__content .info__banner {
    margin-top: 0;
    margin-top: 75px;
  }
}
.top-location__block:nth-child(4) .top-location__block-event {
  margin-top: 37px;
}
@media only screen and (max-width: 780px) {
  .top-location__block:nth-child(4) .top-location__block-event {
    margin-top: 90px;
  }
}

.top-event__title {
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 18px;
  color: #333;
  padding-bottom: 4px;
  border-bottom: 1px solid #333;
}
@media only screen and (max-width: 780px) {
  .top-event__title {
    font-size: clamp(16px, 4vw, 32px);
  }
}

.top-event__list {
  margin-top: 24px;
}
.top-event__list ul {
  display: flex;
  align-items: baseline;
}
@media only screen and (max-width: 1024px) {
  .top-event__list ul {
    display: grid;
    row-gap: 44px;
    -moz-column-gap: 30px;
    column-gap: 30px;
    grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  }
}
.top-event__list li {
  width: 23.5%;
  margin-right: 20px;
}
@media only screen and (max-width: 1024px) {
  .top-event__list li {
    margin-right: 0;
    width: 100%;
  }
}
.top-event__list li:last-child {
  margin-right: 0;
}

.top-event__box img {
  aspect-ratio: 236/144;
  -o-object-fit: cover;
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 10px;
}

.top-event__text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 15px;
}
@media only screen and (max-width: 780px) {
  .top-event__text {
    flex-direction: column-reverse;
    align-items: baseline;
  }
}
.top-event__text p {
  font-weight: 400;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 15px;
  color: #333;
}
@media only screen and (max-width: 1024px) {
  .top-event__text p {
    font-size: 1vw;
  }
}
@media only screen and (max-width: 780px) {
  .top-event__text p {
    font-size: clamp(14px, 4vw, 30px);
    line-height: 1.47;
  }
}
.top-event__text time {
  font-weight: 400;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 15px;
  color: #333;
}
@media only screen and (max-width: 1024px) {
  .top-event__text time {
    font-size: 1vw;
  }
}
@media only screen and (max-width: 780px) {
  .top-event__text time {
    font-size: clamp(13px, 4vw, 26px);
  }
}

.top-event__button.button {
  margin-top: 26px;
  margin-left: auto;
}
@media only screen and (max-width: 780px) {
  .top-event__button.button {
    width: 100%;
    margin-top: 66px;
  }
}

.top-event__button.button.button--more::after {
  content: none;
}
@media only screen and (max-width: 780px) {
  .top-event__button.button.button--more::after {
    content: "";
  }
}

.project__section {
  width: 100%;
  padding-top: 65px;
  padding-bottom: 75px;
}
@media only screen and (max-width: 780px) {
  .project__section {
    padding-top: 55px;
    padding-top: 72px;
  }
}

.project__inner {
  max-width: 1105px;
  padding-top: 63px;
  padding-bottom: 63px;
  margin-inline: auto;
  padding-left: 50px;
  padding-right: 50px;
  background: repeating-linear-gradient(-45deg, #f3f3f3, #f3f3f3 5px, #eeeeee 5px, #eeeeee 10px);
}
@media only screen and (max-width: 780px) {
  .project__inner {
    padding-top: 5.38vw;
    padding-bottom: 5.38vw;
  }
}

.project__title {
  padding-top: 15px;
  padding-bottom: 15px;
  background-color: #db0000;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 28px;
  color: #fff;
  max-width: 747px;
  text-align: center;
  margin-inline: auto;
  display: block;
  align-items: center;
  justify-content: center;
  border-radius: 15px;
  position: relative;
  z-index: 2;
}
@media only screen and (max-width: 780px) {
  .project__title {
    max-width: 71.8vw;
    font-size: clamp(14px, 4vw, 30px);
    padding-top: 25px;
    padding-bottom: 25px;
  }
}
.project__title span {
  display: inline-block;
  width: 22px;
  height: 19px;
  background-image: url(../images/project-icon.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 9px;
  margin-left: 10px;
}
.project__title:nth-of-type(1) {
  padding-right: 10px;
}
.project__title:nth-of-type(2) {
  margin-top: 70px;
}
.project__title::after {
  position: absolute;
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 25px 25px 0 25px;
  border-color: #db0000 transparent transparent transparent;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
}

.project__desc {
  padding-left: 58px;
  padding-right: 58px;
  margin-top: 35px;
  position: relative;
}
@media only screen and (max-width: 780px) {
  .project__desc {
    padding-left: 8vw;
    padding-right: 8vw;
  }
}
.project__desc:nth-of-type(2) {
  background-color: #fff;
  padding-top: 97px;
  padding-bottom: 42px;
  padding-right: 50px;
  padding-left: 50px;
  border-radius: 15px;
  margin-top: -39px;
}
@media only screen and (max-width: 780px) {
  .project__desc:nth-of-type(2) {
    padding-right: 8vw;
    padding-left: 8vw;
    padding-top: 56px;
    padding-bottom: 47px;
    margin-top: 46px;
  }
}
.project__desc:nth-of-type(2) p:first-of-type {
  padding-bottom: 23px;
}
@media only screen and (max-width: 1024px) {
  .project__desc:nth-of-type(2) p:first-of-type {
    margin-top: 54px;
  }
}
@media only screen and (max-width: 780px) {
  .project__desc:nth-of-type(2) p:first-of-type {
    padding-bottom: 39px;
  }
}
.project__desc:nth-of-type(2) p:nth-of-type(2) {
  padding-top: 21px;
  padding-bottom: 27px;
  padding-left: 14px;
  border-bottom: 1px solid #000;
  border-top: 1px solid #000;
  width: 34.2vw;
  white-space: nowrap;
}
@media only screen and (max-width: 780px) {
  .project__desc:nth-of-type(2) p:nth-of-type(2) {
    white-space: initial;
    padding-top: 43px;
    padding-bottom: 38px;
    width: 100%;
  }
}
.project__desc:nth-of-type(2) p:last-of-type {
  padding-top: 15px;
}
@media only screen and (max-width: 780px) {
  .project__desc:nth-of-type(2) p:last-of-type {
    padding-top: 48px;
  }
}
.project__desc p {
  font-weight: 400;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 15px;
  line-height: 2;
  color: #333;
}
@media only screen and (max-width: 780px) {
  .project__desc p {
    font-size: clamp(14px, 4vw, 30px);
  }
}
.project__desc p .line {
  background: linear-gradient(transparent 35%, #ecf3d2 35%);
  padding-bottom: 4px;
}
.project__desc p .check {
  display: inline-block;
  width: 12px;
  height: 8px;
  background-image: url(../images/check-icon.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 6px;
  margin-bottom: 2px;
}
@media only screen and (max-width: 780px) {
  .project__desc p .check {
    width: 25px;
    height: 18px;
  }
}

.project__image {
  background-image: url(../images/project-image.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  content: "";
  position: absolute;
  display: block;
  width: 292px;
  height: 263px;
  bottom: 53px;
  right: 65px;
}
@media only screen and (max-width: 1024px) {
  .project__image {
    width: 28.5vw;
    height: 25.6vw;
    bottom: 14px;
    right: 40px;
  }
}
@media only screen and (max-width: 780px) {
  .project__image {
    width: 32.4vw;
    height: 29.2vw;
    bottom: -25px;
    right: -25px;
  }
}
@media only screen and (max-width: 375px) {
  .project__image {
    width: 84px;
    height: 74px;
    bottom: -18px;
    bottom: -25px;
  }
}

.top-company__section {
  width: 100%;
  display: flex;
  height: 400px;
}
@media only screen and (max-width: 780px) {
  .top-company__section {
    flex-direction: column-reverse;
    height: auto;
  }
}

.top-company__left {
  width: 15.6%;
  background-image: url(../images/top-company.jpg);
  background-position: 49% 7%;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1601px) {
  .top-company__left {
    width: 42%;
  }
}

.top-company__center {
  width: 25.9%;
  min-width: 412px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #eeeeee;
  padding-left: 15px;
  padding-right: 15px;
}
.top-company__center p {
  margin-top: 30px;
  font-weight: 400;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 15px;
  line-height: 2;
  color: #333;
}
@media only screen and (max-width: 780px) {
  .top-company__center p {
    font-size: clamp(14px, 4vw, 28px);
  }
}
@media only screen and (max-width: 780px) {
  .top-company__center {
    width: 100%;
    padding-top: 11.15vw;
    padding-bottom: 10.64vw;
    min-width: 100%;
  }
}

.top-company__title {
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 28px;
  color: #333;
  display: inline-flex;
  align-items: center;
}
.top-company__title::before {
  content: "";
  display: block;
  width: 32px;
  height: 39px;
  background-image: url(../images/top-company-icon.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 18px;
}
@media only screen and (max-width: 780px) {
  .top-company__title {
    font-size: clamp(28px, 4vw, 40px);
  }
}

.top-company__button.button {
  margin-top: 40px;
}
@media only screen and (max-width: 780px) {
  .top-company__button.button {
    width: 72.4vw;
    font-size: clamp(16px, 4vw, 32px);
    padding-top: 3.84vw;
    padding-bottom: 3.84vw;
  }
}

.top-company__right {
  width: 58.5vw;
  background-image: url(../images/top-company.jpg);
  background-position: 61% 9%;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 780px) {
  .top-company__right {
    height: 521px;
    width: 100%;
    background-image: url(../images/top-company-sp.jpg);
    background-size: cover;
    background-position: center;
  }
}

.top-recruit__section {
  width: 100%;
  display: flex;
  height: 400px;
}
@media only screen and (max-width: 780px) {
  .top-recruit__section {
    flex-direction: column;
    height: auto;
  }
}

.top-recruit__left {
  width: 59.3vw;
  background-image: url(../images/top-recluit.jpg);
  background-position: bottom center;
  background-repeat: no-repeat;
}
@media only screen and (max-width: 780px) {
  .top-recruit__left {
    height: 520px;
    width: 100%;
    background-image: url(../images/top-recruit-sp.jpg);
    background-size: cover;
    background-position: center;
  }
}

.top-recruit__center {
  width: 26vw;
  min-width: 415px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #eeeeee;
}
.top-recruit__center p {
  margin-top: 24px;
  font-weight: 400;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 15px;
  line-height: 2;
  color: #333;
}
@media only screen and (max-width: 780px) {
  .top-recruit__center p {
    font-size: clamp(14px, 4vw, 28px);
  }
}
@media only screen and (max-width: 780px) {
  .top-recruit__center {
    width: 100%;
    padding-top: 11.15vw;
    padding-bottom: 13.33vw;
    min-width: 100%;
  }
}

.top-recruit__title {
  margin-top: 11px;
  margin-left: -6px;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 28px;
  color: #333;
  display: inline-flex;
  align-items: center;
}
.top-recruit__title::before {
  content: "";
  display: block;
  width: 34px;
  height: 36px;
  background-image: url(../images/top-recruit-icon.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 16px;
}
@media only screen and (max-width: 780px) {
  .top-recruit__title {
    font-size: clamp(28px, 4vw, 40px);
  }
}

.top-recruit__button.button {
  margin-top: 39px;
}
@media only screen and (max-width: 780px) {
  .top-recruit__button.button {
    width: 72.4vw;
    font-size: clamp(16px, 4vw, 32px);
    padding-top: 3.84vw;
    padding-bottom: 3.84vw;
  }
}

.top-recruit__right {
  width: 15.4%;
  background-image: url(../images/top-recluit.jpg);
  background-position: 93% 88%;
  background-repeat: no-repeat;
}
@media screen and (min-width: 1601px) {
  .top-recruit__right {
    width: 42%;
  }
}

.footer {
  position: relative;
  width: 100%;
  padding-top: 45px;
  padding-bottom: 48px;
  border-top: 8px solid #db0000;
}

.page-top {
  position: fixed;
  z-index: 100;
  bottom: 200px;
  right: 80px;
  width: 91px;
  height: 91px;
  background-color: #db0000;
  border-radius: 50%;
  border: 2px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.page-top img {
  width: 60px;
  height: 57px;
  aspect-ratio: 60/57;
  margin-top: 5px;
  margin-inline: auto;
  margin-top: 21px;
}
.page-top:before {
  content: "";
  position: absolute;
  border: 0;
  border-top: solid 1px #fff;
  border-left: solid 1px #fff;
  display: inline-block;
  transform: rotate(45deg);
  width: 8px;
  height: 8px;
  top: 14px;
  left: 40%;
}
@media only screen and (max-width: 780px) {
  .page-top:before {
    left: 46%;
  }
}

.js-page-top {
  transition: opacity 0.5s;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-right: auto;
  margin-left: auto;
  max-width: 1200px;
  padding-left: 1.2vw;
  padding-right: 1.2vw;
}
@media only screen and (max-width: 780px) {
  .footer__inner {
    flex-direction: column;
    padding-left: 7.7vw;
    padding-right: 7.7vw;
  }
}

.footer__info-wrapper {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 1024px) {
  .footer__info-wrapper {
    margin-right: 100px;
  }
}
@media only screen and (max-width: 780px) {
  .footer__info-wrapper {
    margin-right: 0;
  }
}

.footer__logo {
  width: 208px;
  height: 118px;
  display: flex;
  margin-right: 1vw;
}
@media only screen and (max-width: 780px) {
  .footer__logo {
    width: 48vw;
    height: 27vw;
    margin-right: 0;
  }
}
@media only screen and (max-width: 780px) {
  .footer__logo img {
    width: 48vw;
    height: 100%;
    aspect-ratio: 375/212;
  }
}

.footer__info {
  font-weight: 400;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 15px;
  color: #333;
  line-height: 1.8;
}
@media only screen and (max-width: 780px) {
  .footer__info {
    font-size: 3.84vw;
    margin-left: 20px;
  }
}
.footer__info P {
  white-space: nowrap;
}
@media only screen and (max-width: 768px) {
  .footer__info P {
    white-space: inherit;
  }
}

.footer__info .footer__name {
  font-weight: 700;
  font-size: 16px;
  margin-bottom: 12px;
  margin-top: 7px;
}
@media only screen and (max-width: 780px) {
  .footer__info .footer__name {
    font-size: 4.36vw;
    white-space: nowrap;
  }
}

.footer__menu {
  height: inherit;
  display: flex;
  flex-direction: column;
  margin-right: 4.1vw;
  max-width: 61%;
}
@media only screen and (max-width: 1024px) {
  .footer__menu {
    width: 100%;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
}
@media only screen and (max-width: 780px) {
  .footer__menu {
    margin-right: 0;
    max-width: 100%;
    margin-top: 62px;
  }
}
.footer__menu ul {
  display: flex;
  margin-bottom: 80px;
  margin-top: 20px;
}
@media only screen and (max-width: 1024px) {
  .footer__menu ul {
    flex-direction: column;
    width: 100%;
    margin-bottom: 40px;
  }
}
@media only screen and (max-width: 780px) {
  .footer__menu ul {
    margin-bottom: 100px;
  }
}
.footer__menu ul li {
  margin-right: 1.2vw;
  display: inline-flex;
  align-items: center;
}
@media only screen and (max-width: 780px) {
  .footer__menu ul li {
    margin-right: 0;
    padding-bottom: 42px;
    padding-top: 42px;
    border-bottom: 1px solid #cfcfcf;
  }
}
.footer__menu ul li::before {
  margin-right: 7px;
  content: "";
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}
.footer__menu ul li a {
  font-weight: 400;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 15px;
  color: #333;
  display: flex;
}
@media only screen and (max-width: 780px) {
  .footer__menu ul li a {
    font-size: clamp(14px, 4vw, 30px);
    align-items: center;
    width: 100%;
    position: relative;
  }
}
@media only screen and (max-width: 780px) {
  .footer__menu ul li a:after {
    content: "";
    display: inline-block;
    border: 0;
    border-top: solid 2px #a8a5a4;
    border-right: solid 2px #a8a5a4;
    display: inline-block;
    transform: rotate(45deg) translateY(-50%);
    width: 13px;
    height: 13px;
    top: 50%;
    right: 10%;
    position: absolute;
  }
}
.footer__menu ul li:nth-child(1)::before {
  background-image: url(../images/footer-icon01.png);
  width: 16px;
  height: 14px;
}
@media only screen and (max-width: 780px) {
  .footer__menu ul li:nth-child(1)::before {
    width: 26px;
    height: 23px;
  }
}
.footer__menu ul li:nth-child(2)::before {
  background-image: url(../images/footer-icon02.png);
  width: 17px;
  height: 13px;
}
@media only screen and (max-width: 780px) {
  .footer__menu ul li:nth-child(2)::before {
    width: 28px;
    height: 21px;
  }
}
.footer__menu ul li:nth-child(3)::before {
  background-image: url(../images/footer-icon03.png);
  width: 14px;
  height: 15px;
}
@media only screen and (max-width: 780px) {
  .footer__menu ul li:nth-child(3)::before {
    width: 23px;
    height: 25px;
  }
}
.footer__menu ul li:nth-child(4)::before {
  background-image: url(../images/footer-icon04.png);
  width: 16px;
  height: 14px;
}
@media only screen and (max-width: 780px) {
  .footer__menu ul li:nth-child(4)::before {
    width: 26px;
    height: 23px;
  }
}
.footer__menu ul li:nth-child(5)::before {
  background-image: url(../images/footer-icon05.png);
  width: 13px;
  height: 15px;
}
@media only screen and (max-width: 780px) {
  .footer__menu ul li:nth-child(5)::before {
    width: 22px;
    height: 25px;
  }
}
.footer__menu ul li:nth-child(6) {
  margin-right: 0;
}
.footer__menu ul li:nth-child(6)::before {
  background-image: url(../images/footer-icon06.png);
  width: 14px;
  height: 14px;
}
@media only screen and (max-width: 780px) {
  .footer__menu ul li:nth-child(6)::before {
    width: 23px;
    height: 23px;
  }
}
@media only screen and (max-width: 1024px) {
  .footer__menu ul li + li {
    margin-top: 15px;
  }
}
@media only screen and (max-width: 375px) {
  .footer__menu ul {
    margin-top: 0;
  }
}

small {
  text-align: right;
  font-size: 13px;
  font-weight: 400;
  color: #333;
}
@media only screen and (max-width: 780px) {
  small {
    font-size: 3vw;
  }
}

.breadcrumb {
  padding-top: 14px;
  padding-bottom: 14px;
  background-color: #f7f7f7;
}
.breadcrumb a,
.breadcrumb p {
  font-weight: 400;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 15px;
  color: #333;
}
@media only screen and (max-width: 780px) {
  .breadcrumb a,
  .breadcrumb p {
    font-size: clamp(15px, 4vw, 28px);
  }
}
.breadcrumb span {
  font-weight: 400;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 15px;
  color: #333;
  padding-left: 5px;
  padding-right: 5px;
}
@media only screen and (max-width: 780px) {
  .breadcrumb span {
    font-size: clamp(15px, 4vw, 28px);
  }
}

.breadcrumb__inner.inner {
  display: flex;
  align-items: center;
}
@media only screen and (max-width: 780px) {
  .breadcrumb__inner.inner {
    justify-content: center;
  }
}

.location__section {
  width: 100%;
}

.location__caption.caption {
  background-image: url(../images/location-mv.jpg);
}

.location__caption h2 {
  letter-spacing: 0.1em;
}

.location__wrapper {
  padding-top: 62px;
  padding-bottom: 133px;
  display: flex;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(490px, 1fr));
  row-gap: 50px;
  -moz-column-gap: 42px;
  column-gap: 42px;
}
@media only screen and (max-width: 780px) {
  .location__wrapper {
    display: block;
  }
}

.location__box {
  padding: 30px 30px 30px 25px;
  border: 1px solid #333;
}
@media only screen and (max-width: 780px) {
  .location__box {
    width: 100%;
  }
}

@media only screen and (max-width: 780px) {
  .location__box + .location__box {
    margin-top: 60px;
  }
}

.location__box-title {
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 18px;
  color: #333;
  display: inline-flex;
  align-items: center;
  padding-bottom: 9px;
  border-bottom: 1px solid #333;
  width: 100%;
}
@media only screen and (max-width: 780px) {
  .location__box-title {
    font-size: clamp(18px, 4vw, 36px);
  }
}
.location__box-title::before {
  content: "";
  display: block;
  width: 24px;
  height: 20px;
  background-image: url(../images/location-icon.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 10px;
}

.location__info {
  display: flex;
  flex-direction: row-reverse;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
}
@media only screen and (max-width: 780px) {
  .location__info {
    flex-direction: column-reverse;
    align-items: baseline;
  }
}

.location__img {
  width: 206px;
  border-radius: 10px;
  margin-left: 26px;
}
@media only screen and (max-width: 780px) {
  .location__img {
    width: 100%;
    margin-left: 0;
    margin-top: 40px;
  }
}
.location__img img {
  width: 100%;
  height: 100%;
  aspect-ratio: 206/146;
  border-radius: 10px;
}

.location__desc {
  display: flex;
}
@media only screen and (max-width: 780px) {
  .location__desc {
    flex-wrap: wrap;
  }
}
.location__desc p {
  font-weight: 400;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 15px;
  line-height: 1.87;
  color: #333;
}
@media only screen and (max-width: 780px) {
  .location__desc p {
    font-size: clamp(14px, 4vw, 30px);
  }
}
.location__desc p:nth-of-type(1) {
  width: 60px;
  margin-right: 20px;
}
@media only screen and (max-width: 780px) {
  .location__desc p:nth-of-type(1) {
    width: 150px;
  }
}

.location__desc + .location__desc {
  margin-top: 20px;
}

.location__buttons {
  margin-top: 60px;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 780px) {
  .location__buttons {
    display: block;
  }
}

.location__box:nth-of-type(3) .location__buttons {
  margin-top: 36px;
}

.location__button.button {
  width: 222px;
}
@media only screen and (max-width: 780px) {
  .location__button.button {
    width: 100%;
  }
}

.location__button + .location__button {
  margin-left: 31px;
}
@media only screen and (max-width: 780px) {
  .location__button + .location__button {
    margin-left: 0;
    margin-top: 30px;
  }
}

.project__section.page-project {
  padding-top: 0;
}

.page-project__wrapper {
  padding-top: 73px;
  padding-bottom: 72px;
}

.event__section {
  width: 100%;
}

.event__wrapper {
  padding: 75px 50px 70px 50px;
}
@media only screen and (max-width: 780px) {
  .event__wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

.event__shop-names {
  display: flex;
  flex-wrap: wrap;
  -moz-column-gap: 127px;
  column-gap: 127px;
  row-gap: 20px;
  align-items: center;
}
@media only screen and (max-width: 780px) {
  .event__shop-names {
    -moz-column-gap: 40px;
    column-gap: 40px;
  }
}

.event__shop-name {
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  color: #333;
  display: inline-flex;
  align-items: center;
  border-bottom: 2px solid #333;
  padding-right: 3px;
}
@media only screen and (max-width: 780px) {
  .event__shop-name {
    font-size: 14px;
  }
}
.event__shop-name span {
  content: "";
  border: 0;
  border-bottom: solid 1px #333;
  border-right: solid 1px #333;
  display: inline-block;
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
  margin-left: 26px;
}
@media only screen and (max-width: 780px) {
  .event__shop-name span {
    margin-left: 18px;
  }
}

.event__shop-name:not(.is-active) {
  cursor: pointer;
  border-bottom: none;
}
.event__shop-name:not(.is-active) span {
  content: "";
  border: 0;
  border-top: solid 1px #333;
  border-right: solid 1px #333;
  display: inline-block;
  transform: rotate(45deg);
  width: 6px;
  height: 6px;
  margin-left: 26px;
}

.event__content {
  width: 100%;
  margin-top: 145px;
  display: grid;
  justify-content: center;
  row-gap: 60px;
  -moz-column-gap: 35px;
  column-gap: 35px;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
}
@media only screen and (max-width: 780px) {
  .event__content {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    margin-top: 70px;
  }
}

.article__image {
  width: 100%;
  position: relative;
  background-color: #eeeeee;
}
.article__image img {
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 311/197;
  width: 100%;
  height: 100%;
}

.article__tag {
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 87px;
  padding-top: 10px;
  padding-bottom: 10px;
  color: #fff;
  background-color: #db0000;
}

.article__text {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
.article__text time {
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 14px;
  color: #333;
}
@media only screen and (max-width: 780px) {
  .article__text time {
    font-size: 12px;
  }
}

.article__title {
  font-weight: bold;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 15px;
  color: #333;
}
@media only screen and (max-width: 780px) {
  .article__title {
    font-size: 14px;
  }
}

nav.pagination {
  margin-top: 77px;
}

.nav-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
@media only screen and (max-width: 780px) {
  .nav-links {
    justify-content: center;
  }
}

.nav-links a.page-numbers {
  width: 43px;
  height: 43px;
  background-color: #fff;
  color: #db0000;
  border: 1px solid #db0000;
  font-size: 16px;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 375px) {
  .nav-links a.page-numbers {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
}

.nav-links span.page-numbers.current {
  width: 43px;
  height: 43px;
  border: 1px solid #db0000;
  font-size: 16px;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #db0000;
  color: #fff;
}
@media only screen and (max-width: 375px) {
  .nav-links span.page-numbers.current {
    width: 30px;
    height: 30px;
    font-size: 13px;
  }
}

.page-numbers + .page-numbers {
  margin-left: 19px;
}
@media only screen and (max-width: 780px) {
  .page-numbers + .page-numbers {
    margin-left: 15px;
  }
}

.next.page-numbers {
  display: none !important;
}

.company-vision__section {
  width: 100%;
  background-color: #ffffec;
  position: relative;
}
.company-vision__section::after {
  content: "";
  position: absolute;
  display: block;
  width: 552px;
  height: 528px;
  top: 86px;
  left: 51%;
  transform: translateX(-50%);
  background-image: url(../images/company-logo-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
@media only screen and (max-width: 780px) {
  .company-vision__section::after {
    width: 70.7vw;
    width: 67.7vw;
  }
}

.vision__content {
  padding: 93px 50px 88px 50px;
}
@media only screen and (max-width: 780px) {
  .vision__content {
    padding-top: 88px;
    padding-bottom: 88px;
    padding-left: 0;
    padding-right: 0;
  }
}

.vision__block {
  text-align: center;
}
.vision__block:nth-of-type(2) {
  margin-top: 91px;
}
@media only screen and (max-width: 780px) {
  .vision__block:nth-of-type(2) {
    margin-top: 81px;
  }
}
.vision__block:nth-of-type(3) {
  margin-top: 99px;
}
@media only screen and (max-width: 780px) {
  .vision__block:nth-of-type(3) {
    margin-top: 91px;
  }
}

.company-heading {
  margin-left: -47px;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 38px;
  color: #333;
  padding-bottom: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media only screen and (max-width: 780px) {
  .company-heading {
    font-size: clamp(32px, 6vw, 42px);
    margin-left: 0;
  }
}
.company-heading::before {
  content: "";
  display: block;
  width: 32px;
  height: 28px;
  background-image: url(../images/location-icon.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 13px;
}
.company-heading:after {
  content: "";
  position: absolute;
  display: block;
  width: 96px;
  height: 2px;
  background-color: #333;
  bottom: 5px;
  left: 51%;
  transform: translateX(-50%);
}
@media only screen and (max-width: 780px) {
  .company-heading:after {
    width: 53.5px;
    width: 12vw;
  }
}

.vision__text {
  margin-top: 43px;
  text-align: center;
  font-weight: 700;
  font-family: "游明朝体", "游明朝", YuMincho, "ヒラギノ明朝 Pro", "ヒラギノ明朝 Pro", "MS P明朝", "MS P明朝", serif;
  font-size: 26px;
  line-height: 1.54;
  color: #460000;
}
@media only screen and (max-width: 780px) {
  .vision__text {
    font-size: clamp(14px, 4vw, 30px);
    margin-top: 51px;
  }
}

.campany-vision__box {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 52px;
}
@media only screen and (max-width: 780px) {
  .campany-vision__box {
    flex-direction: column;
  }
}

.vision__text-wrap {
  width: 50.5%;
}
@media only screen and (max-width: 780px) {
  .vision__text-wrap {
    width: 100%;
  }
}

.vision__message {
  font-weight: 400;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 15px;
  line-height: 2;
  color: #333;
  text-align: left;
}
@media only screen and (max-width: 780px) {
  .vision__message {
    font-size: clamp(14px, 4vw, 30px);
  }
}

.vision__message + .vision__message {
  margin-top: 24px;
}

.vision__name {
  font-weight: 700;
  font-family: "游明朝体", "游明朝", YuMincho, "ヒラギノ明朝 Pro", "ヒラギノ明朝 Pro", "MS P明朝", "MS P明朝", serif;
  font-size: 16px;
  color: #333;
  margin-top: 46px;
  text-align: left;
}
@media only screen and (max-width: 780px) {
  .vision__name {
    font-size: clamp(16px, 4vw, 36px);
    text-align: right;
  }
}

.vision__image {
  margin-left: 37px;
  width: 47%;
  border-radius: 15px;
  margin-top: -54px;
}
@media only screen and (max-width: 780px) {
  .vision__image {
    width: 100%;
    margin-top: 90px;
    margin-left: 0;
  }
}
.vision__image img {
  width: 100%;
  aspect-ratio: 464/330;
  border-radius: 15px;
}

.company-history__section {
  width: 100%;
  padding-top: 74px;
  padding-bottom: 55px;
}

.history__table-content {
  padding-left: 50px;
  padding-right: 50px;
}
@media only screen and (max-width: 780px) {
  .history__table-content {
    padding-left: 0;
    padding-right: 0;
  }
}

.history__table {
  margin-top: 68px;
  width: 100%;
  border: 1px solid #eeeeee;
  border-collapse: collapse;
}
@media only screen and (max-width: 780px) {
  .history__table {
    display: block;
    border: none;
  }
}

@media only screen and (max-width: 780px) {
  table.history__table tbody {
    display: block;
    width: 100%;
  }
}
table.history__table tbody tr {
  border-bottom: 1px solid #eeeeee;
}
@media only screen and (max-width: 780px) {
  table.history__table tbody tr {
    display: block;
    width: 100%;
    border-bottom: none;
  }
}
table.history__table tbody tr th {
  padding-top: 23px;
  padding-bottom: 23px;
  width: 20.3%;
  text-align: right;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  line-height: 2.13;
  font-size: 15px;
  color: #333;
  background-color: #fafafa;
  padding-right: 60px;
  vertical-align: baseline;
}
@media only screen and (max-width: 780px) {
  table.history__table tbody tr th {
    display: block;
    width: 100%;
    font-size: clamp(14px, 4vw, 30px);
    text-align: left;
    padding: 24px;
    background-color: #eeeeee;
  }
}
@media only screen and (max-width: 780px) {
  table.history__table tbody tr th span {
    display: inline;
  }
}
table.history__table tbody tr td {
  padding-top: 23px;
  padding-bottom: 23px;
  width: 79.7%;
  padding-left: 52px;
  padding-right: 86px;
  font-weight: 400;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 15px;
  color: #333;
  line-height: 2.13;
  vertical-align: baseline;
}
@media only screen and (max-width: 780px) {
  table.history__table tbody tr td {
    display: block;
    width: 100%;
    font-size: clamp(14px, 4vw, 30px);
    padding: 24px;
  }
}
table.history__table tbody tr:nth-of-type(7),
table.history__table tbody tr:nth-of-type(11) {
  border-bottom: none;
}
table.history__table tbody tr:nth-of-type(7) th,
table.history__table tbody tr:nth-of-type(11) th {
  padding-bottom: 0;
  padding-top: 32px;
}
@media only screen and (max-width: 780px) {
  table.history__table tbody tr:nth-of-type(7) th,
  table.history__table tbody tr:nth-of-type(11) th {
    padding-bottom: 24px;
    padding-top: 24px;
  }
}
table.history__table tbody tr:nth-of-type(7) td,
table.history__table tbody tr:nth-of-type(11) td {
  padding-bottom: 0;
  padding-top: 32px;
}
@media only screen and (max-width: 780px) {
  table.history__table tbody tr:nth-of-type(7) td,
  table.history__table tbody tr:nth-of-type(11) td {
    padding-bottom: 24px;
    padding-top: 24px;
  }
}
table.history__table tbody tr:nth-of-type(8) th {
  padding-top: 18px;
  padding-bottom: 38px;
}
@media only screen and (max-width: 780px) {
  table.history__table tbody tr:nth-of-type(8) th {
    padding-bottom: 25px;
    padding-top: 25px;
  }
}
table.history__table tbody tr:nth-of-type(8) td {
  padding-top: 18px;
  padding-bottom: 38px;
}
@media only screen and (max-width: 780px) {
  table.history__table tbody tr:nth-of-type(8) td {
    padding-bottom: 25px;
    padding-top: 25px;
  }
}
table.history__table tbody tr:last-of-type th {
  padding-top: 30px;
}
table.history__table tbody tr:last-of-type td {
  padding-top: 30px;
}

.company-data__section {
  width: 100%;
  padding-top: 105px;
  padding-bottom: 39px;
  background-color: #ffffec;
  margin-bottom: 37px;
}

.company-data__section .company-heading {
  margin-left: 0;
}
.company-data__section .company-heading:after {
  left: 50%;
}

.data__wrapper {
  padding-left: 50px;
  padding-right: 50px;
}
@media only screen and (max-width: 780px) {
  .data__wrapper {
    padding-left: 0;
    padding-right: 0;
  }
}

.data__note {
  margin-top: 39px;
  font-weight: 400;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 13px;
  color: #333;
}
@media only screen and (max-width: 780px) {
  .data__note {
    margin-top: 95px;
    font-size: clamp(13px, 4vw, 28px);
  }
}

.data-list {
  display: flex;
  flex-wrap: wrap;
  margin-top: 13px;
}
@media only screen and (max-width: 780px) {
  .data-list {
    display: block;
  }
}
.data-list dt {
  width: 14.4%;
  padding-top: 23px;
  padding-bottom: 28px;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 15px;
  line-height: 2.13;
  color: #333;
  padding-left: 3.1vw;
  text-align: right;
  border-bottom: 1px solid #eeeeee;
}
@media only screen and (max-width: 780px) {
  .data-list dt {
    padding: 25px;
    font-size: clamp(14px, 4vw, 30px);
    width: 100%;
    background-color: #eeeeee;
    text-align: left;
    padding-left: 2.95vw;
  }
}
.data-list dt:nth-of-type(1) {
  border-top: 1px solid #eeeeee;
}
@media screen and (min-width: 1601px) {
  .data-list dt {
    white-space: nowrap;
  }
}
.data-list dd {
  width: 85.6%;
  padding-top: 22px;
  padding-bottom: 11px;
  font-weight: 400;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 15px;
  color: #333;
  line-height: 2.13;
  padding-left: 13.2vw;
  border-bottom: 1px solid #eeeeee;
}
@media only screen and (max-width: 780px) {
  .data-list dd {
    padding: 25px;
    font-size: clamp(14px, 4vw, 30px);
    width: 100%;
    padding-left: 2.95vw;
  }
}
.data-list dd:nth-of-type(1) {
  border-top: 1px solid #eeeeee;
}
.data-list dd span {
  font-weight: 700;
  border-bottom: 1px solid #333;
}

.data__content.data-list dt {
  border-top: none;
}
.data__content.data-list dd {
  border-top: none;
}
.data__content.data-list dd:nth-of-type(7) {
  line-height: 1.8;
  padding-bottom: 33px;
}
.data__content.data-list dd:nth-of-type(7) span {
  margin-left: 35px;
  border-bottom: none;
}
.data__content.data-list dd:nth-of-type(9) {
  padding-bottom: 30px;
  line-height: 1.86;
}
.data__content.data-list dd:nth-of-type(9) span {
  border-bottom: none;
  margin-left: 34px;
}
.data__content.data-list dd:nth-of-type(10) {
  line-height: 1.86;
}
.data__content.data-list dd:nth-of-type(10) span {
  border-bottom: none;
  margin-left: 35px;
}

.recruit__section {
  background-color: #ffffec;
  position: relative;
}
.recruit__section:after {
  content: "";
  position: absolute;
  display: block;
  width: 535px;
  height: 557px;
  bottom: 278px;
  left: 0;
  background-image: url(../images/logo-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.recruit__caption.caption {
  background-image: url(../images/recruit-mv.jpg);
}

.recruit__wrapper {
  margin-top: 53px;
}

.recruit__message {
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: "游明朝体", "游明朝", YuMincho, "ヒラギノ明朝 Pro", "ヒラギノ明朝 Pro", "MS P明朝", "MS P明朝", serif;
  font-size: 20px;
  line-height: 1.5;
  color: #333;
  text-align: center;
  margin-right: 105px;
}
@media only screen and (max-width: 780px) {
  .recruit__message {
    font-size: clamp(18px, 3.5vw, 30px);
    margin-right: 0;
  }
}
.recruit__message img {
  width: 97px;
  aspect-ratio: 97/85;
  margin-right: 16px;
  display: block;
}

.recruit__content.data-list dt {
  padding-left: 6vw;
  text-align: left;
}
@media only screen and (max-width: 780px) {
  .recruit__content.data-list dt {
    padding-left: 25px;
  }
}
.recruit__content.data-list dd {
  padding-left: 9.2vw;
}
@media only screen and (max-width: 780px) {
  .recruit__content.data-list dd {
    padding-left: 25px;
  }
}
.recruit__content.data-list dd:nth-of-type(3) {
  line-height: 1.86;
}

.recruit__table {
  margin-top: 44px;
  padding-bottom: 88px;
}

.recruit__banner {
  background-color: #ffff40;
  padding-top: 54px;
  padding-bottom: 42px;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 780px) {
  .recruit__banner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.recruit__banner-img {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.recruit__banner-img img:nth-of-type(1) {
  width: 533px;
  aspect-ratio: 533/35;
}
@media only screen and (max-width: 780px) {
  .recruit__banner-img img:nth-of-type(1) {
    width: 68.3vw;
    height: 100%;
  }
}
.recruit__banner-img img:nth-of-type(2) {
  width: 287px;
  aspect-ratio: 287/28;
}
@media only screen and (max-width: 780px) {
  .recruit__banner-img img:nth-of-type(2) {
    width: 36.8vw;
    height: 100%;
  }
}
.recruit__banner-img img + img {
  margin-top: 15px;
}

.entry__button {
  position: relative;
  margin-inline: auto;
  background-color: #db0000;
  padding-top: 25px;
  padding-bottom: 25px;
  color: #fff;
  font-weight: 400;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 5px solid #fff;
  margin-top: 27px;
  width: 695px;
  border-radius: 10px;
}
@media only screen and (max-width: 780px) {
  .entry__button {
    font-size: clamp(14px, 4vw, 20px);
    width: 80%;
  }
}
.entry__button:after {
  position: absolute;
  content: "";
  border: 0;
  border-top: solid 2px rgba(255, 255, 255, 0.9);
  border-right: solid 2px rgba(255, 255, 255, 0.9);
  display: inline-block;
  transform: rotate(45deg) translateY(-50%);
  width: 8px;
  height: 8px;
  top: 50%;
  right: 44px;
}
.entry__button img {
  bottom: -24px;
  left: 70px;
  position: absolute;
  width: 107px;
  aspect-ratio: 107/134;
}
@media only screen and (max-width: 780px) {
  .entry__button img {
    width: 100%;
    bottom: -30%;
    left: 5%;
  }
}

.shop__section {
  width: 100%;
  padding-top: 105px;
  padding-bottom: 35px;
  background-color: #ffffec;
}
@media only screen and (max-width: 780px) {
  .shop__section {
    padding-top: 75px;
    padding-bottom: 115px;
  }
}

.shop__content {
  padding-left: 50px;
  padding-right: 50px;
}
@media only screen and (max-width: 780px) {
  .shop__content {
    padding-left: 0px;
    padding-right: 0px;
  }
}

.shop__title {
  display: flex;
  align-items: center;
  width: 100%;
  padding-bottom: 24px;
  border-bottom: 2px dashed #99998f;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 32px;
  color: #333;
}
@media only screen and (max-width: 780px) {
  .shop__title {
    font-size: clamp(30px, 4vw, 40px);
  }
}
.shop__title:before {
  content: "";
  display: block;
  width: 32px;
  height: 28px;
  background-image: url(../images/location-icon.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  margin-right: 12px;
}

.shop__figure {
  margin-top: 62px;
  display: flex;
  justify-content: center;
}
@media only screen and (max-width: 780px) {
  .shop__figure {
    flex-direction: column;
    width: 100%;
  }
}
.shop__figure img {
  width: 48%;
  height: 100%;
  aspect-ratio: 483/350;
  -o-object-fit: cover;
  object-fit: cover;
  margin-right: 4vw;
}
@media only screen and (max-width: 780px) {
  .shop__figure img {
    margin-right: 0;
    width: 100%;
  }
}

.shop__map {
  width: 48%;
  aspect-ratio: 480/350;
}
@media only screen and (max-width: 780px) {
  .shop__map {
    margin-top: 42px;
  }
}
.shop__map iframe {
  aspect-ratio: 480/350;
  width: 100%;
  height: 100%;
}
@media only screen and (max-width: 780px) {
  .shop__map {
    width: 100%;
    height: 514px;
  }
}

.shop__desc {
  padding-top: 110px;
}
@media only screen and (max-width: 780px) {
  .shop__desc {
    padding-top: 75px;
  }
}

.shop__desc-title {
  width: 100%;
  text-align: center;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 24px;
  color: #333;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 780px) {
  .shop__desc-title {
    font-size: clamp(20px, 4vw, 36px);
  }
}
.shop__desc-title:before {
  content: "";
  display: block;
  width: 2px;
  height: 24px;
  background-color: #db0000;
  margin-right: 15px;
}

.shop__desc-wrapper {
  margin-top: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 780px) {
  .shop__desc-wrapper {
    flex-direction: column;
    margin-top: 30px;
  }
}

.shop__desc-block dl {
  display: flex;
  flex-direction: column;
}
.shop__desc-block dt,
.shop__desc-block dd {
  font-weight: 400;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 15px;
  color: #333;
}
@media only screen and (max-width: 780px) {
  .shop__desc-block dt,
  .shop__desc-block dd {
    font-size: clamp(14px, 4vw, 30px);
  }
}
.shop__desc-block dt + dd {
  margin-top: 20px;
}
.shop__desc-block dt {
  margin-top: 30px;
}
.shop__desc-block dd {
  padding-bottom: 24px;
}

.shop__desc-wrapper .shop__desc-block:nth-of-type(1) {
  margin-right: 40px;
  width: 48%;
}
@media only screen and (max-width: 780px) {
  .shop__desc-wrapper .shop__desc-block:nth-of-type(1) {
    width: 100%;
    margin-right: 0;
  }
}
.shop__desc-wrapper .shop__desc-block:nth-of-type(1) dd {
  border-bottom: 1px solid #eeeeee;
}

.shop__desc-wrapper .shop__desc-block:nth-of-type(2) {
  width: 48%;
}
@media only screen and (max-width: 780px) {
  .shop__desc-wrapper .shop__desc-block:nth-of-type(2) {
    width: 100%;
  }
}
.shop__desc-wrapper .shop__desc-block:nth-of-type(2) dd {
  border-bottom: 1px solid #eeeeee;
}

.shop__desc-block:nth-child(3) {
  width: 100%;
}
.shop__desc-block:nth-child(3) dd {
  padding-bottom: 26px;
  border-bottom: 1px solid #eeeeee;
}

.shop__desc-wrap {
  margin-top: 37px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media only screen and (max-width: 780px) {
  .shop__desc-wrap {
    flex-direction: column;
  }
}

.shop__flyer {
  width: 48%;
  margin-right: 40px;
}
@media only screen and (max-width: 780px) {
  .shop__flyer {
    width: 100%;
    margin-right: 0;
  }
}
.shop__flyer p {
  font-weight: 400;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 15px;
  color: #333;
}
@media only screen and (max-width: 780px) {
  .shop__flyer p {
    font-size: clamp(14px, 4vw, 30px);
  }
}

.flyer__button.button {
  width: 100%;
  margin-top: 23px;
}

.shop__desc-recruit {
  width: 48%;
}
@media only screen and (max-width: 780px) {
  .shop__desc-recruit {
    width: 100%;
    margin-top: 64px;
  }
}
.shop__desc-recruit p {
  font-weight: 400;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 15px;
  color: #333;
}
@media only screen and (max-width: 780px) {
  .shop__desc-recruit p {
    font-size: clamp(14px, 4vw, 30px);
  }
}

.recruit__button.button {
  width: 100%;
  margin-top: 23px;
}

.shop__desc-event {
  margin-top: 57px;
}
.shop__desc-event p {
  font-weight: 400;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 15px;
  color: #333;
}
@media only screen and (max-width: 780px) {
  .shop__desc-event p {
    font-size: clamp(14px, 4vw, 30px);
  }
}

.shop-event__button {
  display: block;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin-top: 37px;
  margin-left: auto;
  font-weight: 400;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  line-height: 1;
  color: #333;
  border-bottom: 1px solid #333;
}
.shop-event__button span {
  color: #e2332f;
  border-bottom: 1px solid #db0000;
}

.shop__desc-recruit-button.button {
  margin-inline: auto;
  margin-top: 17px;
  width: 246px;
}
@media only screen and (max-width: 780px) {
  .shop__desc-recruit-button.button {
    width: 100%;
    margin-top: 56px;
  }
}

.shop__desc-recruit-button.button.button--more:after {
  content: none;
}
@media only screen and (max-width: 780px) {
  .shop__desc-recruit-button.button.button--more:after {
    content: "";
  }
}

.recruit-shop__section {
  width: 100%;
  background-color: #ffffec;
  position: relative;
}
.recruit-shop__section:after {
  content: "";
  position: absolute;
  display: block;
  width: 535px;
  height: 557px;
  bottom: 0px;
  left: 0;
  background-image: url(../images/logo-bg.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
}

.recruit-shop__caption.caption {
  text-align: center;
  background-image: url(../images/recruit-mv.jpg);
}

.recruit__table-title {
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 24px;
  color: #333;
  display: inline-flex;
  align-items: center;
}
@media only screen and (max-width: 780px) {
  .recruit__table-title {
    font-size: clamp(16px, 4vw, 18px);
  }
}
.recruit__table-title:before {
  content: "";
  display: block;
  width: 2px;
  height: 24px;
  background-color: #db0000;
  margin-right: 20px;
}
@media only screen and (max-width: 780px) {
  .recruit__table-title:before {
    height: 18px;
  }
}

.detail__section {
  padding-top: 100px;
  padding-bottom: 120px;
}

.detail-article__title {
  width: 100%;
  padding-bottom: 10px;
  border-bottom: 1px solid #333;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 30px;
  color: #333;
}
@media only screen and (max-width: 780px) {
  .detail-article__title {
    font-size: clamp(20px, 4vw, 30px);
  }
}

.detail-article__title-wrapper {
  position: relative;
}

.detail-article__title-small {
  position: absolute;
  right: 0;
  bottom: 11px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.detail-article__title-small time {
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 13px;
  color: #333;
  margin-top: 10px;
}
@media only screen and (max-width: 780px) {
  .detail-article__title-small time {
    font-size: 13px;
  }
}

.detail-article__category {
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 15px;
  color: #333;
}
@media only screen and (max-width: 780px) {
  .detail-article__category {
    font-size: 13px;
  }
}

.detail-article__thumbnail {
  margin-top: 60px;
  padding-left: 50px;
  padding-right: 50px;
  width: 100%;
}
.detail-article__thumbnail img {
  width: 100%;
  height: 100%;
  aspect-ratio: 1200/630;
  -o-object-fit: cover;
  object-fit: cover;
}

.detail-article__content {
  padding-left: 50px;
  padding-right: 50px;
  margin-top: 60px;
}

.detail-article__content p {
  font-weight: 400;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 15px;
  line-height: 2;
  color: #333;
}
@media only screen and (max-width: 780px) {
  .detail-article__content p {
    font-size: clamp(15px, 3vw, 20px);
  }
}

.detail-article__content a {
  display: block;
  font-weight: 400;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 15px;
  line-height: 2;
  color: #0072bc;
}
@media only screen and (max-width: 780px) {
  .detail-article__content a {
    font-size: clamp(15px, 3vw, 20px);
  }
}

.detail-article__pagination {
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.detail-article__pagination a + a {
  margin-left: 30px;
}

.inner {
  width: 100%;
  max-width: 1155px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 25px;
  padding-right: 25px;
}
@media only screen and (max-width: 780px) {
  .inner {
    max-width: 100%;
    padding-left: 5.13vw;
    padding-right: 5.13vw;
  }
}
@media only screen and (max-width: 375px) {
  .inner {
    padding-left: 20px;
    padding-right: 20px;
  }
}

.button {
  display: block;
  width: 245px;
  background-color: #fff;
  border: 3px solid #db0000;
  border-radius: 10px;
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 16px;
  color: #db0000;
  padding-top: 0.7rem;
  padding-bottom: 0.7rem;
  text-align: center;
}
@media only screen and (max-width: 780px) {
  .button {
    padding-top: 4.6vw;
    padding-bottom: 4.6vw;
    font-size: clamp(14px, 4vw, 32px);
  }
}

.button.button--more {
  position: relative;
}
@media only screen and (max-width: 780px) {
  .button.button--more {
    padding-right: 25px;
    padding-left: 0;
  }
}
.button.button--more:after {
  content: "";
  position: absolute;
  border: 0;
  border-top: solid 2px #db0000;
  border-right: solid 2px #db0000;
  display: inline-block;
  transform: rotate(45deg) translateY(-50%);
  width: 8px;
  height: 8px;
  top: 50%;
  right: 32px;
}
@media only screen and (max-width: 1024px) {
  .button.button--more:after {
    right: 20px;
  }
}
@media only screen and (max-width: 780px) {
  .button.button--more:after {
    border-top: solid 4px #db0000;
    border-right: solid 4px #db0000;
    width: 13px;
    height: 13px;
    right: 5%;
  }
}

.button.button--next {
  position: relative;
  padding-right: 25px;
  padding-left: 25px;
}
@media only screen and (max-width: 780px) {
  .button.button--next {
    padding-left: 0;
  }
}
.button.button--next::before {
  content: "";
  position: absolute;
  border: 0;
  border-bottom: solid 2px #db0000;
  border-left: solid 2px #db0000;
  display: inline-block;
  transform: rotate(45deg) translateY(-50%);
  width: 8px;
  height: 8px;
  top: 50%;
  left: 32px;
}
@media only screen and (max-width: 1024px) {
  .button.button--next::before {
    left: 20px;
  }
}
@media only screen and (max-width: 780px) {
  .button.button--next::before {
    border-bottom: solid 4px #db0000;
    border-left: solid 4px #db0000;
    width: 13px;
    height: 13px;
    left: 5%;
  }
}

.button.button--color {
  background-color: #db0000;
  color: #fff;
  position: relative;
}
.button.button--color:after {
  content: "";
  position: absolute;
  border: 0;
  border-top: solid 2px #fff;
  border-right: solid 2px #fff;
  display: inline-block;
  transform: rotate(45deg) translateY(-50%);
  width: 8px;
  height: 8px;
  top: 50%;
  right: 32px;
}
@media only screen and (max-width: 1024px) {
  .button.button--color:after {
    right: 20px;
  }
}
@media only screen and (max-width: 780px) {
  .button.button--color:after {
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    width: 12px;
    height: 12px;
    right: 10%;
  }
}

.caption {
  width: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  height: 209px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-image: url(../images/subpage-mv.jpg);
}

.caption__title {
  font-weight: 700;
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
  font-size: 38px;
  color: #fff;
  display: block;
}
@media only screen and (max-width: 780px) {
  .caption__title {
    font-size: clamp(30px, 4vw, 38px);
  }
}

.md-none {
  display: block;
}
@media only screen and (max-width: 780px) {
  .md-none {
    display: none;
  }
}

.lg-none {
  display: none;
}
@media only screen and (max-width: 1024px) {
  .lg-none {
    display: block;
  }
}

.pc-none {
  display: none;
}
@media only screen and (max-width: 780px) {
  .pc-none {
    display: block;
  }
}
/*# sourceMappingURL=style.css.map */
