@charset "UTF-8";

html,
body {
  width: 100vw;
  min-height: 100vh;
}

#wrapper {
  width: 100vw;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main {
  flex: 1 1 auto;
}

header {
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  height: 85px;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: space-between;
  overflow: hidden;
  transition: all 0.3s;
}
header h1 {
  margin: 0;
  width: 330px;
  background-color: #9b1f5b;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  padding: 3px 0 0;
}
header h1 img {
  width: 90%;
}
/*----------------ナビ　メイン----------------*/
header nav {
  position: absolute;
  top: 30px;
  right: 3%;
}
header nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
  position: relative;
  display: flex;
  align-items: center;
}
header nav ul li {
  font-size: 16px;
  position: relative;
}
header nav ul li a {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 0 20px;
}
header nav ul li a:hover {
  opacity: 1;
  color: #9b1f5b;
}
/*----------------トグル----------------*/
.nav-toggle {
  display: none;
}
@media screen and (max-width: 1050px) {
  header {
    height: 60px;
  }
  header h1 {
    width: 200px;
    padding: 7px 0 0;
  }
  /*----------------ナビ　メイン----------------*/
  header nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    width: 100%;
    height: 100vh;
    z-index: -1;
    background-color: rgba(0, 0, 0, 0.8);
    display: none;
  }
  header nav ul {
    display: block;
    width: auto;
    margin: 80px auto 0;
    height: 70%;
    overflow-x: hidden;
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    text-align: center;
  }
  header nav ul li a {
    font-family: hiragino-mincho-pron, sans-serif;
    font-weight: 600;
    font-style: normal;
    padding: 10px 0;
    font-size: 20px;
    letter-spacing: 2px;
    color: #fff;
  }
  /*----------------トグル----------------*/
  .nav-toggle {
    display: block;
    position: fixed;
    top: 0;
    right: 0;
    width: 70px;
    height: 60px;
    cursor: pointer;
    background-color: #000;
    z-index: 9999;
    overflow: hidden;
  }
  .nav-toggle span {
    display: block;
    position: absolute;
    height: 2.5px;
    width: 30px;
    background-color: #fff;
    left: 20.3px;
    -webkit-transition: 0.35s ease-in-out;
    -moz-transition: 0.35s ease-in-out;
    transition: 0.35s ease-in-out;
  }
  .nav-toggle span:nth-child(1) {
    top: 18px;
  }
  .nav-toggle span:nth-child(2) {
    top: 28px;
  }
  .nav-toggle span:nth-child(3) {
    top: 38px;
  }
  .open .nav-toggle span:nth-child(1) {
    top: 28px;
    transform: rotate(-45deg);
  }
  .open .nav-toggle span:nth-child(2) {
    left: 50%;
    opacity: 0;
    animation: active-menu-bar02 0.8s forwards;
  }
  .open .nav-toggle span:nth-child(3) {
    top: 28px;
    transform: rotate(45deg);
  }
  .open nav {
    display: block;
    animation-duration: 0.6s;
    animation-name: fade-in;
  }
  @keyframes fade-in {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
}
@charset "UTF-8";
/*-------------------フッター　スライド-------------------*/
.slide_footer {
  width: 100%;
  overflow: hidden;
  height: 300px;
  padding: 0;
}
.slide_footer ul.slider {
  margin: 0;
  padding: 0;
  list-style: none;
}
.slide_footer ul.slider img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}
/*-------------------フッター-------------------*/
footer {
  background-color: #9b1f5b;
}
footer .logo {
  margin: 40px auto 20px;
  width: 350px;
  text-align: center;
}
footer .logo img {
  width: 100%;
}
footer nav {
  background-color: #741744;
  padding: 30px 0;
}
footer nav ul {
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
footer nav ul li {
  font-size: 15px;
  margin: 0 2%;
}
footer nav ul li a {
  display: block;
  text-decoration: none;
  color: #fff;
}
footer small {
  display: block;
  font-size: 13px;
  color: #fff;
  text-align: center;
  padding: 20px 0;
}
@media screen and (max-width: 1050px) {
  footer .logo {
    margin: 40px auto 10px;
    width: 250px;
  }
  footer nav {
    padding: 20px 0;
  }
  footer nav ul {
    display: block;
    text-align: center;
  }
  footer nav ul li {
    font-size: 15px;
    margin: 0 auto;
    padding: 10px 0;
  }
}
@media (min-width: 751px) {
  a[href*='tel:'] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}

a {
  outline: none;
  opacity: 1;
  transition: all 0.3s;
}
a:hover {
  opacity: 0.8;
  transition: all 0.3s;
}
*:hover {
  transition: all 0.3s;
}
figure {
  margin: 0;
}
figure img {
  width: 100%;
  vertical-align: bottom;
}
/*アニメーション*/
.fadeUp {
  animation-name: fadeUpAnime;
  animation-duration: 1s;
  animation-fill-mode: forwards;
  opacity: 0;
}
@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
.fadeUpTrigger {
  opacity: 0;
}
/*アニメーションここまで*/
html {
  visibility: hidden;
}
html.wf-active {
  visibility: visible;
}
body {
  margin: 0;
  padding: 0;
  color: #000;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
  background-color: #fff;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
}
body.fixed {
  overflow: hidden;
}
#wrapper {
  min-width: 1100px;
  overflow: hidden;
}
.inner {
  width: 1100px;
  min-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
/*-------------------トップ-------------------*/
.top {
  width: 100%;
  height: 100vh;
  min-height: 600px;
  position: relative;
  overflow: hidden;
}
.top .video_box {
  width: 100%;
  height: 100vh;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.top .video_box:after {
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.top .video {
  height: 100%;
  left: 50%;
  max-width: none;
  min-height: 56.25vw;
  min-width: 100%;
  position: absolute;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}
.top .banner a {
  display: block;
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.9);
  color: #9b1f5b;
  text-align: center;
  font-family: hiragino-mincho-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 38px;
  letter-spacing: 2px;
  width: 400px;
  padding: 25px 0 40px;
  border-radius: 20px;
  position: fixed;
  right: 2%;
  bottom: 30px;
  z-index: 10;
}
.top .banner .sub {
  display: block;
  font-size: 17.5px;
  position: relative;
}
.top .banner .sub:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  margin: auto;
  width: 72%;
  height: 1px;
  background: #eee;
}
.top .banner .sub:before {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  bottom: -5px;
  margin: auto;
  width: 72%;
  height: 1px;
  background: #9b1f5b;
}
.top .banner .sub:after {
  animation: sdl 2s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes sdl {
  0% {
    transform: scale(0, 1);
    transform-origin: 0 0;
  }
  50% {
    transform: scale(1, 1);
    transform-origin: 0 0;
  }
  50.1% {
    transform: scale(1, 1);
    transform-origin: 100% 0;
  }
  100% {
    transform: scale(0, 1);
    transform-origin: 100% 0;
  }
}
/*-------------------トップ以下-------------------*/
.contents {
  padding: 70px 0 120px;
  border-radius: 50px 50px 0 0;
  margin-top: -50px;
  position: relative;
  z-index: 3;
}
.contents h3 {
  font-family: 'kazuraki-sp2n', serif;
  font-weight: 300;
  font-style: normal;
  font-size: 80px;
  margin: 0 auto 30px;
  text-align: center;
}
/*-------------------やっちゃん-------------------*/
.contents.yacchan {
  padding: 0;
  height: 800px;
}
.contents.yacchan:after {
  content: '';
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.contents.yacchan .inner {
  position: relative;
  height: 100%;
}
.contents.yacchan .txt {
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
  color: #fff;
  text-align: center;
  text-shadow: 0 0 20px #555;
}
.contents.yacchan h3 {
  font-size: 100px;
  color: #fff;
  margin: 0 !important;
}
.contents.yacchan p {
  font-family: hiragino-mincho-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 38px;
  line-height: 68px;
}
.contents.yacchan p .border {
  border-bottom: solid 1px #fff;
  padding-bottom: 10px;
}
.contents.yacchan ul.slider {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}
.contents.yacchan ul.slider li {
  height: 800px;
}
.contents.yacchan ul.slider img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/*-------------------こだわり-------------------*/
.contents.forte {
  background-color: #000;
  color: #fff;
}
.contents.forte .inner {
  width: 90%;
  max-width: 1300px;
}
.contents.forte ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.contents.forte ul li {
  margin: 100px auto;
  position: relative;
}
.contents.forte ul li:last-child {
  margin-bottom: 0;
}
.contents.forte ul li .no {
  display: block;
  font-family: ta-fuga-fude, sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 70px;
  text-align: center;
  color: #fff;
  width: 100px;
  height: 100px;
  line-height: 100px;
  border-radius: 100px;
  background-color: #741744;
  position: absolute;
  top: -50px;
  left: 50px;
  z-index: 2;
}
.contents.forte ul li .txt {
  width: 50%;
  position: absolute;
  top: -50px;
  left: 0;
  z-index: 2;
}
.contents.forte ul li:nth-child(2) .txt {
  position: absolute;
  top: -80px;
  left: auto;
  right: 0;
}
.contents.forte ul li .txt h4 {
  margin: 0 auto;
  width: 90%;
  transform: rotate(-10deg);
}
.contents.forte ul li .txt h4 img {
  width: 100%;
}
.contents.forte ul li .txt p {
  font-family: hiragino-mincho-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 28px;
  line-height: 58px;
  text-align: center;
  margin: 0;
}
.contents.forte ul li .txt p .border {
  border-bottom: solid 1px #fff;
  padding-bottom: 10px;
}
.contents.forte ul li .slide {
  width: 65%;
  margin: 0 0 0 auto;
}
.contents.forte ul li:nth-child(2) .slide {
  margin: 0 auto 0 0;
}
.contents.forte ul li .slide .swiper {
  width: 100%;
  height: 450px;
  border-radius: 20px;
  overflow: hidden;
  position: relative;
}
.contents.forte ul li .slide .swiper:after {
  content: '';
  background-color: rgba(0, 0, 0, 0.1);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  z-index: 1;
}
.contents.forte ul li .slide .swiper-slide {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
/*-------------------SDGs-------------------*/
.contents.sdgs {
  background-color: #d6e6de;
}
.contents.sdgs h3 {
  font-family: hiragino-mincho-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 38px;
  letter-spacing: 2px;
  margin: 0 auto 40px;
  text-align: center;
  color: #fff;
  background-color: #276143;
  border-radius: 50px;
  padding: 10px 0;
}
.contents.sdgs ul {
  margin: 0 auto 40px;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: space-between;
}
.contents.sdgs ul li {
  width: 42%;
  background-color: #fff;
  padding: 40px 3% 30px;
  border-radius: 20px;
}
.contents.sdgs ul li figure {
  width: 250px;
  margin: 0 auto 30px;
}
.contents.sdgs ul li .txt h4 {
  font-family: hiragino-mincho-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  font-size: 24px;
  margin: 0 auto 5px;
  color: #276143;
}
.contents.sdgs ul li .txt p {
  text-align: justify;
}
.contents.sdgs .p {
  font-family: hiragino-mincho-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  font-size: 28px;
  line-height: 58px;
  margin: 0;
  color: #276143;
}
.contents.sdgs .p .border {
  border-bottom: solid 1px #276143;
  padding-bottom: 10px;
}
/*-------------------お知らせ-------------------*/
.contents.news {
  background-color: #e1dece;
}
.contents.news h3 {
  font-family: hiragino-mincho-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 48px;
  letter-spacing: 2px;
  margin: 0 auto 30px;
  text-align: center;
}
.contents.news .dl_box {
  background-color: #fff;
  padding: 50px 5%;
  border-radius: 20px;
  margin-bottom: 30px;
}
.contents.news .dl_box dl {
  margin: 0;
}
.contents.news .dl_box dl a {
  text-decoration: none;
  color: #000;
  display: flex;
  align-items: stretch;
  position: relative;
}
.contents.news .dl_box dl a:hover {
  opacity: 1;
  color: #9b1f5b;
}
.contents.news .dl_box dl dt {
  width: 15%;
  padding: 20px 3%;
  border-bottom: solid 1px #000;
  text-align: center;
  font-weight: 500;
}
.contents.news .dl_box dl dd {
  margin: 0;
  width: 85%;
  padding: 20px 3%;
  border-bottom: solid 1px #eee;
}
.contents.news .dl_box dl:first-child dt {
  border-top: solid 1px #000;
}
.contents.news .dl_box dl:first-child dd {
  border-top: solid 1px #eee;
}
.contents.news .btn {
  margin: 0;
}
.contents.news .btn a {
  display: block;
  text-decoration: none;
  color: #fff;
  width: 300px;
  background-color: #000;
  border: solid 3px #fafafa;
  border-radius: 50px;
  padding: 20px 0;
  margin: 0 auto;
  text-align: center;
}
.contents.news .btn a:hover {
  opacity: 1;
  background-color: #9b1f5b;
}
/*-------------------会社情報など-------------------*/
.contents.other {
  background-color: #741744;
  padding: 70px 0;
}
.contents.other ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
}
.contents.other ul li {
  width: 48%;
  margin: 10px 1%;
  border-radius: 20px;
  background-color: #fafafa;
  border-bottom: solid 3px #ccc;
}
.contents.other ul li a {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #000;
}
.contents.other ul li a:hover {
  opacity: 1;
  color: #9b1f5b;
}
.contents.other ul li figure {
  width: 45%;
  height: 140px;
  overflow: hidden;
  border-radius: 20px 0 0 20px;
}
.contents.other ul li figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.contents.other ul li p {
  width: 55%;
  font-family: hiragino-mincho-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 28px;
  letter-spacing: 2px;
  text-align: center;
  margin: 0;
}
@media screen and (max-width: 1050px) {
  #wrapper {
    min-width: 100%;
  }
  .inner {
    width: 90%;
    min-width: 90%;
  }
  /*-------------------トップ-------------------*/
  .top {
    min-height: 400px;
  }
  .top .banner a {
    font-size: 28px;
    width: 270px;
    padding: 15px 0 25px;
    position: fixed;
    right: 5%;
  }
  .top .banner .sub {
    font-size: 12.5px;
  }
  .top .banner .sub:after {
    width: 80%;
  }
  .top .banner .sub:before {
    width: 80%;
  }
  /*-------------------トップ以下-------------------*/
  .contents {
    padding: 40px 0 70px;
    border-radius: 30px 30px 0 0;
    margin-top: -30px;
  }
  .contents h3 {
    font-size: 30px;
    line-height: 40px;
    margin: 0 auto 20px;
  }
  /*-------------------やっちゃん-------------------*/
  .contents.yacchan {
    height: 300px;
  }
  .contents.yacchan ul.slider li {
    height: 300px;
  }
  .contents.yacchan h3 {
    font-size: 35px;
    margin: 0 auto -10px !important;
  }
  .contents.yacchan p {
    font-size: 20px;
    line-height: 40px;
  }
  .contents.yacchan p .border {
    padding-bottom: 5px;
  }
  /*-------------------こだわり-------------------*/
  .contents.forte ul li {
    margin: 80px auto;
  }
  .contents.forte ul li .no {
    font-size: 36px;
    width: 60px;
    height: 60px;
    line-height: 60px;
    border-radius: 60px;
    position: absolute;
    top: -30px;
    left: auto;
    right: 20px;
  }
  .contents.forte ul li .txt {
    width: auto;
    position: static;
  }
  .contents.forte ul li:nth-child(2) .txt {
    position: static;
  }
  .contents.forte ul li .txt h4 {
    width: 240px;
    position: absolute;
    top: -70px;
    left: -10px;
    z-index: 1;
  }
  .contents.forte ul li .txt p {
    font-size: 20px;
    line-height: 40px;
    position: relative;
    z-index: 1;
  }
  .contents.forte ul li .txt p .border {
    padding-bottom: 5px;
  }
  .contents.forte ul li .slide {
    width: auto;
    margin: 0 auto 10px;
  }
  .contents.forte ul li:nth-child(2) .slide {
    margin: 0 auto 10px;
  }
  .contents.forte ul li .slide .swiper {
    height: 250px;
  }
  /*-------------------SDGs-------------------*/
  .contents.sdgs h3 {
    font-size: 20px;
    line-height: 30px;
    margin: 0 auto 20px;
    padding: 10px 7%;
  }
  .contents.sdgs ul {
    margin: 0 auto 20px;
    display: block;
  }
  .contents.sdgs ul li {
    width: auto;
    padding: 40px 5% 20px;
    margin: 0 auto 20px;
  }
  .contents.sdgs ul li figure {
    width: 180px;
    margin: 0 auto 20px;
  }
  .contents.sdgs ul li .txt h4 {
    font-size: 20px;
    margin: 0 auto -5px;
  }
  .contents.sdgs .p {
    font-size: 20px;
    line-height: 40px;
  }
  .contents.sdgs .p .border {
    padding-bottom: 5px;
  }
  /*-------------------お知らせ-------------------*/
  .contents.news h3 {
    font-size: 30px;
    margin: 0 auto 15px;
  }
  .contents.news .dl_box {
    padding: 30px 5%;
    margin-bottom: 20px;
  }
  .contents.news .dl_box dl a {
    display: block;
  }
  .contents.news .dl_box dl dt {
    width: auto;
    padding: 15px 0 10px;
    border: none;
    text-align: left;
  }
  .contents.news .dl_box dl dd {
    width: auto;
    padding: 0 0 15px;
    border-bottom: solid 1px #eee;
  }
  .contents.news .dl_box dl:first-child dt {
    border-top: solid 1px #eee;
  }
  .contents.news .dl_box dl:first-child dd {
    border-top: none;
  }
  .contents.news .btn a {
    width: 250px;
  }
  /*-------------------会社情報など-------------------*/
  .contents.other {
    padding: 30px 0;
  }
  .contents.other ul {
    display: block;
  }
  .contents.other ul li {
    width: auto;
    margin: 10px auto;
  }
  .contents.other ul li figure {
    height: 100px;
  }
  .contents.other ul li p {
    font-size: 20px;
  }
  /*-------------------フッター　スライド-------------------*/
  .slide_footer {
    height: 200px;
  }
  .slide_footer ul.slider img {
    height: 200px;
  }
}
@charset "UTF-8";
/*第二階層*/
.breadcrumb {
  width: 90%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.breadcrumb ul {
  padding: 0;
  margin: 0;
  list-style: none;
}
.breadcrumb ul li {
  display: inline-block;
  position: relative;
  margin: 0 0 0 20px;
  font-size: 15px;
}
.breadcrumb ul li.current {
  color: #fff;
}
.breadcrumb ul li:first-child:before {
  content: '';
  margin: 0;
  position: static;
}
.breadcrumb ul li:before {
  content: '';
  position: absolute;
  left: -15px;
  top: 2px;
  bottom: 0;
  margin: auto;
  width: 5px;
  height: 1px;
  background-color: #fff;
}
.breadcrumb ul li a {
  color: #9b1f5b;
  text-decoration: none;
}
.second .bg {
  padding: 150px 0 90px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.second .bg:before {
  content: '';
  background-color: rgba(0, 0, 0, 0.2);
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}
.second.company .bg {
  background-image: url('/assets/img/bg_ttl_company.jpg');
}
.second.shop .bg {
  background-image: url('/assets/img/bg_ttl_shop.jpg');
}
.second.recruit .bg {
  background-image: url('/assets/img/bg_ttl_recruit.jpg');
}
.second.contact .bg {
  background-image: url('/assets/img/bg_ttl_contact.jpg');
}
.second.pp .bg {
  background-image: url('/assets/img/bg_ttl_pp.jpg');
}
.second.news .bg {
  background-image: url('/assets/img/bg_ttl_news.jpg');
}
.second.not_found .bg {
  background-image: url('/assets/img/bg_ttl_404.jpg');
}
.second h2 {
  font-family: hiragino-mincho-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 58px;
  letter-spacing: 2px;
  color: #fff;
  text-align: center;
  position: relative;
  z-index: 1;
}
.second .inner section {
  margin-bottom: 80px;
}
.second .inner section:last-child {
  margin-bottom: 0;
}
.second .wrap {
  padding: 70px 0;
  border-radius: 50px 50px 0 0;
  margin-top: -50px;
  position: relative;
  z-index: 1;
  background-color: #fff;
}
/*-------------------会社概要-------------------*/
.second.company dl {
  margin: 0;
  display: flex;
  align-items: stretch;
}
.second.company dl dt {
  width: 20%;
  font-weight: 500;
  padding: 25px 3%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: solid 1px #9b1f5b;
}
.second.company dl dd {
  margin: 0;
  width: 80%;
  padding: 25px 3%;
  border-bottom: solid 1px #eee;
}
.second.company dl:first-child dt {
  border-top: solid 1px #9b1f5b;
}
.second.company dl:first-child dd {
  border-top: solid 1px #eee;
}
.second.company dl dd a {
  color: #000;
}
/*-------------------採用情報-------------------*/
.second.recruit .about {
  background-color: #9b1f5b;
  padding: 70px 0 120px;
}
.second.recruit .about h3 {
  font-family: hiragino-mincho-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 38px;
  letter-spacing: 2px;
  color: #fff;
  text-align: center;
  margin: 0 auto 30px;
}
.second.recruit .about .slide {
  width: 100%;
  overflow: hidden;
  height: 200px;
  padding: 0;
  margin-bottom: 30px;
}
.second.recruit .about .slide ul.slider {
  margin: 0;
  padding: 0;
  list-style: none;
}
.second.recruit .about .slide ul.slider li {
  margin: 0 10px;
  border-radius: 30px;
  overflow: hidden;
}
.second.recruit .about .slide ul.slider img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}
.second.recruit .about .dl_box {
  background-color: #fff;
  padding: 50px 5%;
  border-radius: 20px;
  margin-bottom: 30px;
}
.second.recruit .about dl {
  margin: 0;
  display: flex;
  align-items: stretch;
}
.second.recruit .about dl dt {
  width: 20%;
  font-weight: 500;
  padding: 25px 3%;
  display: flex;
  align-items: center;
  justify-content: center;
  border-bottom: solid 1px #9b1f5b;
}
.second.recruit .about dl dd {
  margin: 0;
  width: 80%;
  padding: 25px 3%;
  border-bottom: solid 1px #eee;
}
.second.recruit .about dl:first-child dt {
  border-top: solid 1px #9b1f5b;
}
.second.recruit .about dl:first-child dd {
  border-top: solid 1px #eee;
}
.second.recruit .about p {
  font-family: hiragino-mincho-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
  text-align: center;
  color: #fff;
  font-size: 24px;
  margin: 0;
}
.second.recruit .contact h3 {
  font-family: hiragino-mincho-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 38px;
  letter-spacing: 2px;
  text-align: center;
  margin: 0 auto 30px;
}
/*-------------------プライバシーポリシー-------------------*/
.second.pp .p {
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 28px;
  margin-bottom: 40px;
}
.second.pp section {
  text-align: justify;
  text-justify: inter-ideograph;
  line-height: 28px;
  margin-bottom: 40px;
}
.second.pp section h4 {
  font-weight: 600;
  font-size: 20px;
  color: #9b1f5b;
  margin: 0;
}
.second.pp section ol {
  padding: 0 0 0 20px;
}
.second.pp section ol li {
  margin-bottom: 5px;
}
.second.pp section ol.paren {
  padding: 0 0 0 15px;
}
.second.pp section ol.paren li {
  list-style-type: none;
  list-style-position: inside;
  counter-increment: cnt;
  padding-left: 1em;
  text-indent: -1.7em;
}
.second.pp section ol.paren li:before {
  display: marker;
  content: '' counter(cnt) ' ）';
}
.second.pp .right {
  text-align: right;
}
@media screen and (max-width: 1050px) {
  /*第二階層*/
  .breadcrumb {
    width: 90%;
  }
  .breadcrumb ul li {
    font-size: 13px;
  }
  .second .bg {
    padding: 80px 0 50px;
  }
  .second h2 {
    font-size: 30px;
  }
  .second .inner section {
    margin-bottom: 50px;
  }
  .second .wrap {
    padding: 40px 0;
    border-radius: 30px 30px 0 0;
    margin-top: -30px;
  }
  /*-------------------会社概要-------------------*/
  .second.company dl {
    display: block;
  }
  .second.company dl dt {
    width: auto;
    padding: 15px 0 10px;
    border: none;
    display: block;
    text-align: left;
    color: #9b1f5b;
  }
  .second.company dl dd {
    width: auto;
    padding: 0 0 20px;
  }
  .second.company dl:first-child dt {
    border-top: solid 1px #eee;
  }
  .second.company dl:first-child dd {
    border-top: none;
  }
  /*-------------------採用情報-------------------*/
  .second.recruit .about {
    padding: 40px 0 70px;
  }
  .second.recruit .about h3 {
    font-size: 20px;
    margin: 0 auto 20px;
  }
  .second.recruit .about .slide {
    height: 100px;
    margin-bottom: 20px;
  }
  .second.recruit .about .slide ul.slider li {
    margin: 0 5px;
    border-radius: 20px;
  }
  .second.recruit .about .slide ul.slider img {
    height: 100px;
  }
  .second.recruit .about .dl_box {
    padding: 30px 5%;
    margin-bottom: 20px;
  }
  .second.recruit .about dl {
    display: block;
  }
  .second.recruit .about dl dt {
    width: auto;
    padding: 15px 0 10px;
    border: none;
    display: block;
    text-align: left;
    color: #9b1f5b;
  }
  .second.recruit .about dl dd {
    width: auto;
    padding: 0 0 20px;
  }
  .second.recruit .about dl:first-child dt {
    border-top: solid 1px #eee;
  }
  .second.recruit .about dl:first-child dd {
    border-top: none;
  }
  .second.recruit .about p {
    font-size: 14px;
  }
  .second.recruit .contact h3 {
    font-size: 24px;
    margin: 0 auto 20px;
  }
  /*-------------------プライバシーポリシー-------------------*/
  .second.pp .p {
    line-height: 28px;
    margin-bottom: 30px;
  }
  .second.pp section {
    line-height: 28px;
    margin-bottom: 30px;
  }
  .second.pp section h4 {
    font-size: 18px;
    margin: 0 auto -5px;
  }
}
@media (min-width: 751px) {
  a[href*='tel:'] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
@charset "UTF-8";
.second.shop .wrap {
  background-color: #eee;
}
.second.shop .nav_box {
  margin-bottom: 70px;
}
.second.shop .nav_box ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
}
.second.shop .nav_box ul li {
  width: 25%;
  margin: 0 1%;
}
.second.shop .nav_box ul li a {
  display: block;
  text-decoration: none;
  text-align: center;
  color: #fff;
  background-color: #000;
  border: solid 2px #fff;
  border-radius: 50px;
  padding: 10px 0;
}
.second.shop .nav_box ul li a:hover {
  opacity: 1;
  background-color: #9b1f5b;
}
.second.shop h3 {
  font-family: hiragino-mincho-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 30px;
  letter-spacing: 2px;
  border-bottom: solid 1px #000;
  padding-bottom: 5px;
}
.second.shop .wrap section ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
}
.second.shop .wrap section ul li {
  width: 31.33%;
  margin: 0 1% 25px;
  border-radius: 20px;
  background-color: #fff;
}
.second.shop .wrap section ul li figure {
  height: 250px;
  overflow: hidden;
  border-radius: 20px 20px 0 0;
}
.second.shop .wrap section ul li figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.second.shop .wrap section ul li .txt {
  padding: 20px 5%;
}
.second.shop .wrap section ul li .txt h4 {
  font-size: 20px;
  font-weight: 600;
  color: #9b1f5b;
  text-align: center;
  margin: 0 auto 20px;
}
.second.shop .wrap section ul li .txt p {
  text-align: justify;
}
.second.shop .wrap section ul li .txt a {
  color: #000;
}
.second.shop .wrap section ul li .txt .map a {
  display: block;
  text-decoration: none;
  background-color: #9b1f5b;
  color: #fff !important;
  padding: 3px 15px 4.5px;
  border-radius: 50px;
  text-align: center;
  font-size: 13px;
  width: 50px;
  margin-top: 5px;
}
.second.shop .wrap section ul li .txt .map i {
  margin-right: 5px;
}
@media screen and (max-width: 1050px) {
  .second.shop .nav_box {
    margin-bottom: 30px;
  }
  .second.shop .nav_box ul {
    flex-wrap: wrap;
  }
  .second.shop .nav_box ul li {
    width: 48%;
    margin: 5px 1%;
  }
  .second.shop h3 {
    font-size: 24px;
    padding-bottom: 2px;
  }
  .second.shop .wrap section ul {
    display: block;
  }
  .second.shop .wrap section ul li {
    width: auto;
    margin: 0 auto 20px;
  }
  .second.shop .wrap section ul li:last-child {
    margin: 0;
  }
}
@charset "UTF-8";
/*お知らせ　第二階層*/
.second.news .wrap {
  background-color: #e1dece;
}
.second.news .inner {
  display: flex;
  justify-content: space-between;
}
/*内容*/
.second.news .contents {
  width: 74%;
  margin: 0 !important;
  padding: 0 !important;
}
/*サイド*/
.second.news aside {
  width: 20%;
}
.second.news aside .box {
  margin-bottom: 50px;
}
.second.news aside .box:last-child {
  margin-bottom: 0;
}
.second.news aside .box h5 {
  font-size: 18px;
  font-weight: 500;
  margin: 0;
  padding-bottom: 5px;
  border-bottom: solid 1px #000;
}
.second.news aside .box ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.second.news aside .box ul li a {
  display: block;
  text-decoration: none;
  color: #000;
  padding: 15px 0;
  border-bottom: solid 1px #eee;
  font-size: 15px;
  line-height: 25px;
  text-align: justify;
  text-justify: inter-ideograph;
}
.second.news aside .box ul li a:hover {
  opacity: 1;
  color: #9b1f5b;
}
/*一覧ページ*/
.second.news .dl_box {
  background-color: #fff;
  padding: 50px 5%;
  border-radius: 20px;
  margin-bottom: 30px;
}
.second.news .dl_box dl {
  margin: 0;
}
.second.news .dl_box dl a {
  text-decoration: none;
  color: #000;
  display: flex;
  align-items: stretch;
  position: relative;
}
.second.news .dl_box dl a:hover {
  opacity: 1;
  color: #9b1f5b;
}
.second.news .dl_box dl dt {
  width: 20%;
  padding: 20px 3%;
  border-bottom: solid 1px #000;
  text-align: center;
  font-weight: 500;
}
.second.news .dl_box dl dd {
  margin: 0;
  width: 80%;
  padding: 20px 3%;
  border-bottom: solid 1px #eee;
}
.second.news .dl_box dl:first-child dt {
  border-top: solid 1px #000;
}
.second.news .dl_box dl:first-child dd {
  border-top: solid 1px #eee;
}
/*一覧ページ ページネーション*/
.second.news .pagination h2 {
  display: none;
}
.second.news .pagination {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
  text-align: center;
}
.second.news .pagination .nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
}
.second.news .pagination a {
  text-decoration: none;
  color: #000;
}
.second.news .pagination .page-numbers {
  margin: 0 5px;
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 40px;
  color: #000;
  background-color: #fff;
}
.second.news .pagination .current {
  width: 40px;
  height: 40px;
  line-height: 40px;
  border-radius: 40px;
  color: #fff;
  background-color: #9b1f5b;
}
.second.news .pagination a.prev.page-numbers,
.second.news .pagination a.next.page-numbers {
  width: auto !important;
  height: auto !important;
  color: #111 !important;
}
.second.news .pagination .prev,
.second.news .pagination .next {
  background: transparent;
  box-shadow: none;
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
}
.second.news .pagination .dots {
  background: transparent;
  box-shadow: none;
  color: #000;
}
/*投稿ページ*/
.second.news.single article {
  background-color: #fff;
  padding: 50px 5%;
  border-radius: 20px;
  margin-bottom: 30px;
}
.second.news.single article .date {
  font-size: 16px;
  margin: 0 auto 20px;
}
.second.news.single article h3 {
  font-family: hiragino-mincho-pron, sans-serif;
  font-weight: 600;
  font-style: normal;
  font-size: 30px;
  line-height: 40px;
  margin: 0 auto 20px;
  padding-bottom: 5px;
  text-align: justify;
  text-justify: inter-ideograph;
  border-bottom: solid 1px #000;
}
.second.news.single article .content {
  line-height: 28px;
  text-align: justify;
  text-justify: inter-ideograph;
}
.second.news.single article .content a {
  color: #000;
}
.second.news.single article img {
  max-width: 100%;
  height: auto;
}
/*投稿ページ ページネーション*/
.second.single .pagination02 ul {
  width: 60%;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  justify-content: center;
  align-items: center;
}
.second.single .pagination02 ul li {
  width: 40%;
  margin: 0 4%;
  position: relative;
}
.second.single .pagination02 ul li a {
  display: block;
  text-decoration: none;
  color: #fff;
  background-color: #000;
  border: solid 3px #fff;
  text-align: center;
  padding: 15px 0;
  border-radius: 50px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
.second.single .pagination02 ul li a:hover {
  opacity: 1 !important;
  background-color: #9b1f5b;
}
@media screen and (max-width: 1050px) {
  /*お知らせ　第二階層*/
  .second.news .inner {
    display: block;
  }
  /*内容*/
  .second.news .contents {
    width: auto;
    margin-bottom: 50px !important;
  }
  /*サイド*/
  .second.news aside {
    width: auto;
  }
  .second.news aside .box h5 {
    font-size: 18px;
  }
  /*一覧ページ*/
  .second.news .dl_box dl a {
    display: block;
  }
  .second.news .dl_box dl dt {
    width: auto;
    padding: 15px 0 10px;
    border: none;
    text-align: left;
  }
  .second.news .dl_box dl dd {
    width: auto;
    padding: 0 0 15px;
    border-bottom: solid 1px #eee;
  }
  .contents.news .dl_box dl:first-child dt {
    border-top: solid 1px #eee;
  }
  .contents.news .dl_box dl:first-child dd {
    border-top: none;
  }
  /*一覧ページ ページネーション*/
  .second.news .pagination .page-numbers {
    margin: 0 3px;
    width: 30px;
    height: 30px;
    line-height: 30px;
  }
  /*投稿ページ*/
  .second.news.single article {
    padding: 40px 5%;
  }
  .second.news.single article .date {
    margin: 0 auto 10px;
  }
  .second.news.single article h3 {
    font-size: 20px;
    line-height: 30px;
  }
  /*投稿ページ ページネーション*/
  .second.single .pagination02 ul {
    width: auto;
  }
}

@charset "UTF-8";
.contact dl {
  margin: 0;
  display: flex;
  align-items: stretch;
}
.contact dl dt {
  width: 25%;
  font-weight: 500;
  padding: 25px 3%;
  display: flex;
  align-items: center;
  border-bottom: solid 1px #9b1f5b;
  position: relative;
}
.contact dl dd {
  margin: 0;
  width: 85%;
  padding: 25px 3%;
  border-bottom: solid 1px #eee;
}
.contact dl:first-child dt {
  border-top: solid 1px #9b1f5b;
}
.contact dl:first-child dd {
  border-top: solid 1px #eee;
}
.contact dl dd input {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 94%;
  font-size: 16px;
  padding: 15px 3%;
  border: none;
  outline: none;
  background-color: #eee;
  border-radius: 5px;
}
.contact dl dd .input02 input {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 15%;
  font-size: 16px;
  padding: 15px 3%;
  border: none;
  outline: none;
  background-color: #eee;
  border-radius: 5px;
  margin-bottom: 10px;
}
.contact dl dd .input03 input {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 15%;
  font-size: 16px;
  padding: 15px 3%;
  border: none;
  outline: none;
  background-color: #eee;
  border-radius: 5px;
}
.contact dl dd textarea {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 94%;
  font-size: 16px;
  padding: 15px 3%;
  border: none;
  outline: none;
  background-color: #eee;
  border-radius: 5px;
  display: block;
  height: 150px;
}
.contact .required {
  position: absolute;
  right: 10%;
  font-size: 12px;
  color: #fff;
  background-color: #9b1f5b;
  margin-left: 10px;
  padding: 3px 15px 4.5px;
  border-radius: 50px;
}
::placeholder {
  color: #aaa;
}
/*ラジオボックス*/
.contact .radio_box span.wpcf7-list-item {
  display: inline-block;
  margin-right: 25px;
}
.contact .radio_box input[type='radio'] {
  display: none;
}
.contact .radio_box input[type='radio'] + .wpcf7-list-item-label {
  position: relative;
  cursor: pointer;
  padding-left: 30px;
}
.contact .radio_box input[type='radio'] + .wpcf7-list-item-label:before,
.contact .radio_box input[type='radio'] + .wpcf7-list-item-label:after {
  position: absolute;
  content: '';
  top: 50%;
  border-radius: 100%;
}
.contact .radio_box input[type='radio'] + .wpcf7-list-item-label:before {
  left: 0;
  width: 18px;
  height: 18px;
  margin-top: -10px;
  border: 1px solid #9b1f5b;
  background-color: #fff;
}
.contact .radio_box input[type='radio'] + .wpcf7-list-item-label:hover:before {
  background: #fff;
}
.contact .radio_box input[type='radio'] + .wpcf7-list-item-label:after {
  opacity: 0;
  left: 3px;
  width: 14px;
  height: 14px;
  margin-top: -7px;
  background: #9b1f5b;
}
.contact .radio_box input[type='radio']:checked + .wpcf7-list-item-label:before {
  background: #fff;
  border: 1px solid #9b1f5b;
}
.contact .radio_box input[type='radio']:checked + .wpcf7-list-item-label:after {
  opacity: 1;
}
/*チェックボックス*/
.contact .check_box input[type='checkbox'] {
  display: none;
}
.contact .check_box input[type='checkbox'] + .wpcf7-list-item-label {
  padding-left: 30px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.contact .check_box input[type='checkbox'] + .wpcf7-list-item-label:before {
  border: 1px solid #9b1f5b;
  background-color: #fff;
  border-radius: 2px;
  content: '';
  display: block;
  height: 18px;
  left: 0;
  margin-top: -8.5px;
  position: absolute;
  top: 50%;
  width: 18px;
}
.contact .check_box input[type='checkbox'] + .wpcf7-list-item-label:after {
  border-right: 3px solid #9b1f5b;
  border-bottom: 3px solid #9b1f5b;
  content: '';
  display: block;
  height: 9px;
  left: 6px;
  margin-top: -6.5px;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: rotate(45deg);
  width: 5px;
}
.contact .check_box input[type='checkbox']:checked + .wpcf7-list-item-label:after {
  opacity: 1;
}
.contact p.check_box {
  text-align: center;
  margin: 40px auto;
}
.contact p.check_box a {
  color: #000;
}
.contact p.check_box .wpcf7-list-item {
  margin: 0 !important;
}
.contact .btn_box {
  display: flex;
  justify-content: center;
}
.contact .wpcf7-form-control.wpcf7-submit {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 100%;
  color: #fff;
  background: no-repeat;
  border: none;
  padding: 20px 0;
  text-align: center;
  font-size: 18px;
  cursor: pointer;
  outline: none;
}
.contact .submit.clear {
  font-family: noto-sans-cjk-jp, sans-serif;
  font-weight: 400;
  font-style: normal;
  width: 100%;
  color: #fff;
  background: no-repeat;
  border: none;
  padding: 20px 0;
  text-align: center;
  font-size: 18px;
  cursor: pointer;
  outline: none;
}
.contact .btn {
  width: 35%;
  margin: 0 3%;
  color: #fff;
  background-color: #9b1f5b;
  border-radius: 50px;
  transition: all 0.3s;
}
.contact .btn.clear {
  background-color: #888;
}
.contact .btn:hover {
  background-color: #741744;
  transition: all 0.3s;
}
.contact .btn.clear:hover {
  background-color: #555;
  transition: all 0.3s;
}
.wpcf7 .wpcf7-submit:disabled {
  background-color: #ccc;
  border-radius: 50px;
}
.wpcf7-not-valid-tip {
  color: #ce2615 !important;
  font-weight: 500 !important;
}
.wpcf7-spinner {
  display: none !important;
}
.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output {
  border-color: none;
  color: #ce2615;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
.wpcf7 form.sent .wpcf7-response-output {
  border-color: none;
  color: #287417;
  font-size: 18px;
  font-weight: 500;
  text-align: center;
}
.wpcf7 form .wpcf7-response-output {
  border: none !important;
}
span.wpcf7-form-control-wrap {
  width: 100%;
}
@media screen and (max-width: 1050px) {
  .contact dl {
    display: block;
  }
  .contact dl dt {
    width: auto;
    padding: 15px 0 10px;
    border: none;
  }
  .contact dl dd {
    width: auto;
    padding: 0 0 20px;
  }
  .contact dl:first-child dt {
    border-top: solid 1px #eee;
  }
  .contact dl:first-child dd {
    border-top: none;
  }
  /*ラジオボックス*/
  .contact .radio_box span {
    display: block;
    margin: 5px auto;
  }
  .recruit .contact .radio_box span.wpcf7-list-item {
    display: inline-block;
    margin-right: 20px;
  }
  .contact dl dd .input02 input {
    width: 20%;
  }
  .contact dl dd .input03 input {
    width: 20%;
  }
  .contact textarea {
    height: 100px;
  }
  .contact .required {
    position: absolute;
    right: 0;
  }
  .contact p.check_box {
    margin: 30px auto;
  }
  .contact .wpcf7-form-control.wpcf7-submit {
    padding: 15px 0;
  }
  .contact .submit.clear {
    padding: 15px 0;
  }
  .contact .btn {
    width: 40%;
  }
  input[type='reset'] {
    -webkit-appearance: none;
  }
  input[type='submit'] {
    -webkit-appearance: none;
  }
  input[type='button'] {
    -webkit-appearance: none;
  }
  .wpcf7 form.invalid .wpcf7-response-output,
  .wpcf7 form.unaccepted .wpcf7-response-output {
    font-size: 16px;
  }
  .wpcf7 form.sent .wpcf7-response-output {
    font-size: 16px;
  }
}
