@charset "UTF-8";
@import url("https://fonts.googleapis.com/css?family=Fredericka+the+Great");
@import url("https://fonts.googleapis.com/css?family=Chathura:400,700,800");
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Noto+Serif+JP:wght@200..900&display=swap");
/* ----------------------------------------------------------------------------------------------------
*  基本情報
* --------------------------------------------------------------------------------------------------*/
html,
body {
  height: 100%;
}

html {
  font-size: 62.5%;
  overflow-y: scroll;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
address,
ul,
ol,
li,
dl,
dt,
dd,
table,
th,
td,
img,
form {
  margin: 0;
  padding: 0;
  border: none;
  line-height: 100%;
  list-style-type: none;
  font-style: normal;
  font-family: "Noto Sans JP", sans-serif;
  text-align: left;
  color: #000;
  letter-spacing: 0;
}

input,
button,
textarea,
select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: none;
  border-radius: 0;
  resize: none;
  outline: none;
  background: none;
  font-family: "Noto Sans JP", sans-serif;
}

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

.font_midashi {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}

.font_mincho {
  font-family: "Noto Serif JP", serif;
}

.fredericka {
  font-family: "Fredericka the Great", cursive;
  font-weight: 400;
}

.en {
  font-family: "Chathura", sans-serif;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.bold_gothic {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: bold;
}

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

a {
  color: #000;
  text-decoration: none;
}

a,
button,
input[type=submit],
input[type=button] {
  transition: opacity 0.3s ease;
}

a:hover,
button:hover,
input[type=submit]:hover,
input[type=button]:hover {
  opacity: 0.7;
  cursor: pointer;
}

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

/* ------------------------------
    base
------------------------------ */
body {
  min-width: 1000px;
  width: 100%;
  padding-top: 60px !important;
}

section {
  position: relative;
}

p,
dt,
dd,
th,
td,
li {
  font-size: 1.7rem;
}

a {
  color: #000;
  text-decoration: none;
  outline: 1px solid transparent;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

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

.flex {
  display: flex;
  flex-wrap: wrap;
}

.left {
  float: left;
}

.right {
  float: right;
}

.center {
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.align_right {
  text-align: right;
}

.bold {
  font-weight: bold;
}

.wrap {
  width: 996px;
  margin: 0 auto;
  position: relative;
}

.wrap_box {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}

.fixed {
  position: fixed;
  top: 0;
  padding: 0;
}

@media screen and (min-width: 769px) {
  .sp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  .pc {
    display: none !important;
  }
  body {
    min-width: inherit;
  }
  .wrap {
    width: 100%;
    padding: 0 5%;
  }
  .wrap_box {
    width: 90%;
    padding: 0 5%;
    min-width: inherit;
  }
}
/* ------------------------------
    btn
------------------------------ */
.more_btn a {
  position: relative;
  width: 176px;
  height: 36px;
  display: block;
  margin: 0 auto;
  transition: 0.1s;
}
.more_btn a::after {
  content: "";
  position: absolute;
  display: block;
  top: 6px;
  left: 6px;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url(../img/common/bg_btn.png) repeat;
  transition: 0.2s;
}
.more_btn a span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background: rgba(255, 141, 0, 0.9);
  font-size: 3.3rem;
  text-align: center;
  line-height: 36px;
  z-index: 2;
  transition: 0.3s;
}
.more_btn a span::after {
  z-index: -1;
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  transition: 0.3s;
}
.more_btn a:hover {
  opacity: 1;
}
.more_btn a:hover span {
  transform: scale(1.1);
  color: #FF8D00;
}
.more_btn a:hover span::after {
  width: 100%;
  background: #fff;
}
.more_btn a:hover::after {
  top: -6px;
  left: -13px;
  width: calc(100% + 26px);
  height: calc(100% + 12px);
  animation: scrollBG 30s ease infinite;
}

@keyframes scrollBG {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}
.btn_l a {
  position: relative;
  width: 712px;
  height: 110px;
  display: block;
  margin: 0 auto;
  transition: 0.1s;
}
.btn_l a::after {
  content: "";
  position: absolute;
  display: block;
  top: 7px;
  left: 7px;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url(../img/common/bg_btn.png) repeat;
  transition: 0.2s;
}
.btn_l a span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background: rgba(255, 141, 0, 0.9);
  font-size: 3.2rem;
  text-align: center;
  line-height: 110px;
  z-index: 2;
  transition: 0.3s;
}
.btn_l a span::after {
  z-index: -1;
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  transition: 0.3s;
}
.btn_l a:hover {
  opacity: 1;
}
.btn_l a:hover span {
  color: #FF8D00;
}
.btn_l a:hover span::after {
  width: 100%;
  background: #fff;
}
.btn_l a:hover::after {
  top: -6px;
  left: -7px;
  width: calc(100% + 14px);
  height: calc(100% + 12px);
  animation: scrollBG 30s ease infinite;
}

@media screen and (max-width: 768px) {
  .more_btn a {
    width: 123px;
    height: 24px;
  }
  .more_btn a span {
    font-size: 2.3rem;
    line-height: 24px;
  }
  .more_btn a::after {
    top: 4px;
    left: 4px;
    background-size: 8px 8px;
  }
  .btn_l a {
    width: 90%;
    max-width: 330px;
    height: 55px;
  }
  .btn_l a span {
    font-size: 1.6rem;
    line-height: 55px;
  }
  .btn_l a::after {
    top: 5px;
    left: 5px;
    background-size: 8px 8px;
  }
}
/* ----------------------------------------------------------------------------------------------------
*  ヘッダー
* --------------------------------------------------------------------------------------------------*/
header {
  padding: 0;
  background: #000;
  position: fixed;
  top: 0;
  right: 0;
  width: 100%;
  height: 60px;
  z-index: 999;
}

header .wrap {
  position: relative;
}

header::after {
  content: "";
  display: block;
  position: absolute;
  width: calc((100% - 996px) / 2 + 185px);
  height: 100%;
  background: #FF8D00;
  right: 0;
  top: 0;
  margin-left: auto;
  z-index: 1;
}

header .logo {
  margin-right: 90px;
  padding-top: 10px;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  header .logo {
    padding-top: 0;
    padding-bottom: 0;
  }
}

header nav {
  width: calc(100% - 204px);
}

header .gnav {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  z-index: 2;
}

header .gnav > li + li {
  margin-left: 78px;
}

header .gnav > li.current {
  position: relative;
}

header .gnav > li.current::before {
  content: "";
  display: block;
  position: absolute;
  width: 72px;
  height: 3px;
  background: #FF8D00;
  left: 50%;
  bottom: 0;
  margin-left: -36px;
}

header .gnav > li.nav_recruit {
  position: absolute;
  right: 0;
  top: 0;
}

header .gnav > li > a {
  font-size: 3.6rem;
  display: flex;
  color: #fff;
  height: 60px;
  align-items: center;
  position: relative;
}
header .gnav > li > a::after {
  position: absolute;
  transition: 0.3s;
  content: "";
  width: 0;
  left: 50%;
  bottom: 0;
  height: 3px;
  background: #FF8D00;
}
header .gnav > li > a:hover::after {
  width: 100%;
  left: 0;
}

header .gnav > li.nav_recruit a {
  color: #000;
  position: relative;
}
header .gnav > li.nav_recruit a::after {
  content: "";
  position: absolute;
  left: -23%;
  top: 0;
  width: 0;
  height: 100%;
  background: #000;
  z-index: -1;
  transition: 0.4s;
}
header .gnav > li.nav_recruit a:hover {
  opacity: 1;
}
header .gnav > li.nav_recruit a:hover::after {
  background: #fff;
  width: 140%;
}

header .gnav > li > a > span {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: normal;
  font-size: 1.4rem;
  display: inline-block;
  vertical-align: baseline;
  letter-spacing: 0.1em;
}

header .gnav > li > a > span span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  margin: 0 4px;
}

@media screen and (max-width: 768px) {
  header {
    padding: 10px 0;
    width: 100%;
    height: 60px;
  }
  header::after {
    display: none;
  }
  header .logo {
    width: 100px;
    height: auto;
    position: absolute;
    left: 0;
    right: 0;
    top: 4px;
    margin: auto;
  }
  .toggle {
    position: fixed;
    width: 60px;
    height: 60px;
    top: 0;
    right: 0;
    background: #FF8D00;
    z-index: 999999;
    pointer-events: auto;
  }
  .toggle span {
    position: absolute;
    display: block;
    width: 22px;
    height: 2px;
    left: 0;
    right: 0;
    margin: auto;
    background: #000;
    transition: all 0.4s;
  }
  .toggle span:first-child {
    top: 20px;
  }
  .toggle span:nth-child(2) {
    top: 50%;
    margin-top: -1px;
  }
  .toggle span:last-child {
    bottom: 20px;
  }
  .toggle.active span {
    top: 50%;
    margin-top: -1px;
    transform: rotate(45deg);
  }
  .toggle.active span:nth-child(2) {
    opacity: 0;
  }
  .toggle.active span:last-child {
    bottom: auto;
    transform: rotate(-45deg);
  }
  header nav {
    position: fixed;
    width: 100%;
    height: calc(100% - 60px);
    top: 60px;
    left: 0;
    padding: 0;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    background-color: rgba(0, 0, 0, 0.8);
    z-index: 400;
    transition: all 0.4s;
    opacity: 0;
    z-index: 99999;
    pointer-events: none;
  }
  header nav.active {
    opacity: 1;
    pointer-events: auto;
  }
  header .gnav {
    height: 100%;
    position: relative;
    display: block;
    padding: 5% 0;
  }
  header .gnav > li {
    width: 100%;
  }
  header .gnav > li.current::before {
    display: none;
  }
  header .gnav > li + li {
    margin-left: 0;
  }
  header .gnav > li.nav_recruit {
    position: static;
    background: #FF8D00;
  }
  header .gnav > li.nav_recruit a {
    padding: 13px;
  }
  header .gnav > li > a {
    font-size: 3rem;
    display: block;
    height: auto;
    text-align: center;
    padding: 15px 0;
  }
  header .gnav > li > a > span {
    font-size: 1.2rem;
  }
  header .gnav > li > a > span span {
    font-size: 1.2rem;
    margin: 0 3px;
  }
}
/* ------------------------------
    page_ttl
------------------------------ */
.page_ttl {
  width: 100%;
  height: 300px;
}

.page_ttl .ttl_txt {
  display: inline-block;
  font-size: 14.9rem;
  color: #fff;
  text-align: center;
  position: relative;
  top: 46%;
  left: 50%;
  transform: translate(-50%, -46%);
  padding: 0 20px;
}

.page_ttl .ttl_txt::after {
  content: "";
  display: block;
  width: 100%;
  height: 44px;
  background: url(../img/common/stripe.png) repeat;
  position: absolute;
  bottom: 10px;
  left: 0;
  z-index: -1;
}

@media screen and (max-width: 768px) {
  .page_ttl {
    height: 150px;
  }
  .page_ttl .ttl_txt {
    font-size: 7.5rem;
    padding: 0 10px;
  }
  .page_ttl .ttl_txt::after {
    height: 22px;
    bottom: 5px;
  }
}
/* ------------------------------
    #link_area
------------------------------ */
/* common */
#link_area .ttl {
  margin-bottom: 42px;
}

#link_area .ttl span.en {
  font-size: 15rem;
  color: #fff;
}

#link_area .ttl span.sub {
  display: block;
  font-size: 2.4rem;
  color: #fff;
  margin-top: 34px;
  line-height: 1;
}

#link_area .more_btn {
  margin-top: 60px;
}

/* link_recruit */
#link_area .link_recruit {
  background: url(../img/common/bg_link_recruit.jpg) no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 100px 0;
}

#link_area .link_recruit .font_mincho {
  font-size: 3.5rem;
  color: #fff;
  line-height: 1.7;
}

#link_area .link_recruit .more_btn {
  margin-top: 42px;
}

/* link_shop */
#link_area .link_shop {
  background: url(../img/common/bg_link_shop.jpg) no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 124px 0 80px;
}

/* link_about */
#link_area .link_about {
  background: url(../img/common/bg_link_about.jpg) no-repeat;
  background-size: cover;
  background-position: top center;
  padding: 124px 0 80px;
}

#link_area .link_about .ttl,
#link_area .link_about .more_btn {
  width: 378px;
  margin-right: 0;
  margin-left: auto;
}

#link_area .link_about .ttl span.en,
#link_area .link_about .ttl span.sub {
  color: #000;
}

@media screen and (max-width: 768px) {
  /* common */
  #link_area .ttl {
    margin-bottom: 15px;
  }
  #link_area .ttl span.en {
    font-size: 7.5rem;
  }
  #link_area .ttl span.sub {
    font-size: 1.2rem;
    margin-top: 18px;
  }
  #link_area .more_btn {
    margin-top: 20px !important;
  }
  /* link_recruit */
  #link_area .link_recruit {
    background: url(../img/common/bg_link_recruit_sp.jpg) no-repeat;
    background-size: cover;
    background-position: center top;
    padding: 50px 0 52px;
  }
  #link_area .link_recruit .ttl span.sub {
    margin-top: 15px;
  }
  #link_area .link_recruit .font_mincho {
    font-size: 2.4rem;
    white-space: nowrap;
  }
  /* link_shop */
  #link_area .link_shop {
    background: url(../img/common/bg_link_shop_sp.jpg) no-repeat;
    background-size: cover;
    background-position: top center;
    padding: 64px 0 36px;
  }
  /* link_about */
  #link_area .link_about {
    background: url(../img/common/bg_link_about_sp.jpg) no-repeat;
    background-size: cover;
    background-position: top center;
    padding: 60px 0 40px;
  }
  #link_area .link_about .ttl,
  #link_area .link_about .more_btn {
    width: 50%;
    min-width: 170px;
  }
  #link_area .link_about .ttl span.en,
  #link_area .link_about .ttl span.sub {
    color: #000;
  }
}
/* ----------------------------------------------------------------------------------------------------
*  フッター
* --------------------------------------------------------------------------------------------------*/
footer {
  background: url(../img/common/bg03.png) repeat;
  padding: 54px 0 35px;
  position: relative;
}

footer .footer_logo {
  width: 201px;
  height: auto;
  margin-bottom: 14px;
}

/* f_middle */
footer .f_middle {
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

footer .f_middle p {
  color: #fff;
}

footer .f_middle p.address {
  font-size: 1.8rem;
  line-height: 1.6;
  font-feature-settings: "palt";
}

footer .f_middle p.tel {
  font-size: 9.9rem;
  letter-spacing: 0.015em;
}

footer .nav_footer {
  width: calc(100% - 201px);
  height: 70px;
  align-items: center;
  position: absolute;
  top: 0;
  right: 0;
}

footer .nav_footer li a.en,
footer .nav_footer li a span.en {
  font-size: 5.5rem;
}

footer .nav_footer li:not(.nav_recruit) a {
  padding: 0 16px 0 30px;
  position: relative;
  color: #fff;
  display: block;
}

footer .nav_footer li + li:not(.nav_recruit) a::before {
  content: "/";
  position: absolute;
  left: 0;
}

footer .nav_footer li.nav_recruit {
  position: absolute;
  right: 7px;
  top: 5px;
}

footer .nav_footer li.nav_recruit a > span {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  margin: 0 auto;
  background: rgba(255, 141, 0, 0.9);
  font-size: 2rem;
  text-align: center;
  line-height: 60px;
  z-index: 2;
  transition: 0.3s;
}
footer .nav_footer li.nav_recruit a > span::after {
  z-index: -1;
  position: absolute;
  content: "";
  width: 0;
  height: 100%;
  left: 0;
  top: 0;
  transition: 0.3s;
}

footer .nav_footer li.nav_recruit a > span > span.line {
  font-size: 2.3rem;
  margin: 0 5px;
}

footer .nav_footer li.nav_recruit a::after {
  content: "";
  position: absolute;
  display: block;
  top: 7px;
  left: 7px;
  width: 100%;
  height: 100%;
  z-index: 1;
  background: url(../img/common/bg_btn.png) repeat;
  transition: 0.2s;
}

footer .nav_footer li.nav_recruit a {
  position: relative;
  width: 374px;
  height: 60px;
  display: block;
  transition: 0.1s;
}
footer .nav_footer li.nav_recruit a:hover {
  opacity: 1;
}
footer .nav_footer li.nav_recruit a:hover span {
  color: #FF8D00;
}
footer .nav_footer li.nav_recruit a:hover span::after {
  width: 100%;
  background: #fff;
}
footer .nav_footer li.nav_recruit a:hover::after {
  top: -6px;
  left: -7px;
  width: calc(100% + 14px);
  height: calc(100% + 12px);
  animation: scrollBG 30s ease infinite;
}

/* shop_list */
footer .shop_list {
  width: 100%;
  margin-bottom: 40px;
}

footer .shop_list li + li {
  margin-left: calc((100% - 936px) / 3);
}

/* copyright */
footer .copyright {
  color: #fff;
  font-size: 1.4rem;
}

footer .shop_list {
  justify-content: space-between;
}

footer .shop_list li {
  width: 16%;
}

footer .shop_list li + li {
  margin-left: 0;
}

footer .f_middle p.tel {
  line-height: 0.8;
}

footer .f_middle .tel_close {
  font-size: 1.6rem;
  color: #fff;
}

@media screen and (max-width: 768px) {
  footer {
    padding: 28px 0 20px;
  }
  footer .footer_logo {
    width: 145px;
    height: auto;
    margin: 0 auto 14px;
  }
  /* f_middle */
  footer .f_middle {
    flex-direction: column;
    margin-bottom: 10px;
  }
  footer .f_middle p {
    text-align: center;
  }
  footer .f_middle p.address {
    font-size: 1.3rem;
  }
  footer .f_middle p.tel {
    font-size: 5.95rem;
  }
  footer .f_middle p.tel .tel_link,
  footer .f_middle p.tel .tel_link a {
    color: #fff;
  }
  footer .nav_footer {
    width: inherit;
    height: auto;
    position: static;
    justify-content: center;
  }
  footer .nav_footer li a.en {
    font-size: 4rem;
  }
  footer .nav_footer li:not(.nav_recruit) a {
    padding: 0 8px 0 15px;
  }
  footer .nav_footer li.nav_recruit {
    width: 100%;
    position: static;
    display: block;
  }
  footer .nav_footer li.nav_recruit a {
    width: 249px;
    height: 40px;
    margin: 25px auto 40px;
  }
  footer .nav_footer li.nav_recruit a > span {
    font-size: 1.4rem;
    text-align: center;
    line-height: 40px;
  }
  footer .nav_footer li a span.en {
    font-size: 3.5rem;
  }
  footer .nav_footer li.nav_recruit a > span > span.line {
    font-size: 1.5rem;
    margin: 0 5px;
  }
  footer .nav_footer li.nav_recruit a::after {
    top: 5px;
    left: 5px;
    background-size: 8px 8px;
  }
  /* shop_list */
  footer .shop_list {
    max-width: 320px;
    margin: auto;
    margin-bottom: 25px;
    flex-wrap: wrap;
    gap: 13px 10px;
  }
  footer .shop_list li {
    width: 48%;
  }
  footer .shop_list li:nth-child(odd) {
    margin-left: 0;
  }
  footer .shop_list li:nth-of-type(2) {
    margin-top: 0;
  }
  footer .shop_list li img {
    width: 100%;
  }
  footer .f_middle .tel_close {
    font-size: 1.3rem;
  }
  footer .f_middle .telwrap {
    text-align: center;
    margin-bottom: 1em;
  }
  /* copyright */
  footer .copyright {
    font-size: 0.7rem;
  }
}
/* ------------------------------
    clearfix
------------------------------ */
.cf:after {
  content: ".";
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
  visibility: hidden;
}

.cf {
  display: inline-block;
}

/* Hides from IE Mac */
* html .cf {
  height: 1%;
}

.cf {
  display: block;
}

/* End Hack */
.page_thanks {
  padding-top: 8rem;
  padding-bottom: 8rem;
}
.page_thanks .message {
  max-width: 640px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
.page_thanks h2,
.page_thanks h3,
.page_thanks p {
  font-family: "Noto Sans JP", sans-serif;
}
.page_thanks h2 {
  font-size: 2.8rem;
  line-height: 1.5;
  margin-bottom: 1em;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .page_thanks h2 {
    font-size: 6vw;
    text-align: left;
  }
}
.page_thanks h3 {
  font-size: 2.2rem;
  margin-bottom: 1em;
  margin-top: 1.8em;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .page_thanks h3 {
    font-size: 2rem;
  }
}
.page_thanks p {
  line-height: 1.8;
  margin-bottom: 1em;
  font-size: 1.6rem;
}
.page_thanks .tel {
  font-family: "Chathura", sans-serif;
  text-align: center;
  font-size: 8rem;
  margin-bottom: 1rem;
}
.page_thanks .more_btn span {
  font-size: 1.6rem;
  padding-top: 0.2em;
}
@media screen and (max-width: 768px) {
  .page_thanks .more_btn span {
    font-size: 1.3rem;
  }
}

.link-recruit {
  margin-top: 60px;
}
.link-recruit h3 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 37px;
}
.link-recruit h3::before, .link-recruit h3::after {
  content: "";
  width: 32px;
  height: 25px;
  display: inline-block;
  top: 2px;
  margin-bottom: -4px;
}
@media screen and (max-width: 768px) {
  .link-recruit h3::before, .link-recruit h3::after {
    width: 78px;
    height: 32px;
  }
}
.link-recruit h3::before {
  background: url(../img/shop/bg_slash_left.svg) no-repeat center;
  background-size: contain;
}
.link-recruit h3::after {
  background: url(../img/shop/bg_slash_right.svg) no-repeat center;
  background-size: contain;
}
.link-recruit ul {
  display: flex;
  justify-content: center;
  gap: 28px;
}
.link-recruit ul li a {
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 486px;
  height: 100px;
  border: 1px solid #000;
  position: relative;
}
.link-recruit ul li a::after {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  border-top: 2px solid #000;
  border-right: 2px solid #000;
  position: absolute;
  transform: rotate(45deg);
  right: 28px;
}

@media screen and (max-width: 768px) {
  .link-recruit {
    margin-top: 9vw;
  }
  .link-recruit h3 {
    text-align: center;
    font-size: 1.3rem;
    margin-bottom: 5vw;
  }
  .link-recruit h3::before, .link-recruit h3::after {
    width: 48px;
    height: 18px;
  }
  .link-recruit ul {
    flex-direction: column;
    gap: 0;
  }
  .link-recruit ul li {
    margin: 0 auto;
  }
  .link-recruit ul li + li {
    margin-top: 3vw;
  }
  .link-recruit ul li a {
    width: 65vw;
    height: 14vw;
  }
  .link-recruit ul li a::after {
    width: 5px;
    height: 5px;
    border-top: 1px solid #000;
    border-right: 1px solid #000;
    right: 4vw;
  }
  .link-recruit ul li a img {
    height: 7.5vw;
  }
  .link-recruit ul li.bnr-mynavi a img {
    height: 6vw;
  }
}/*# sourceMappingURL=common.css.map */