/* 共通 */

@charset "UTF-8";
*, *:before, *:after {
  box-sizing: border-box;
}

html, body {
  height: 100%;
}

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

a.link {
  color: #71221a;
  padding: 0 .3em;
  transition: all .3s;
}

a.link:hover {
  color: #fff;
  background-color: #71221a;
}

.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

.flexbox {
  display:-webkit-box;
  display:-moz-box;
  display: -ms-flex;
  display: -o-flex;
  display:box;
  display:-webkit-flex;
  display:flex;
  flex-wrap: wrap;
}

.center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/*フォント*/

@font-face {
  font-family: "Yu Gothic";
  src: local("Yu Gothic Medium");
  font-weight: 400;
}

html {
  font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", "Segoe UI", "Yu Gothic", YuGothic, sans-serif;
  font-size: 62.5%;
  color: #333;
}

body {
  height: 100%;
  margin: 0 auto;
  background-color: #fff;
  font-size: 1.5rem;
  line-height: 1.8;
  letter-spacing: .09em;
  min-width: 1280px;
}
@media screen and (max-width: 750px) {
  body {
    width: 100%;
    /* ブラウザの幅固定解除 */
    min-width: 100%;
    /* ブラウザの幅固定解除 */
  }
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.8rem;
  margin-bottom: 2rem;
}

h4 {
  font-size: 1.6rem;
}

em {
  text-decoration: none;
  font-style: normal;
  font-weight: 600;
  line-height: 2;
  letter-spacing: 0.1em;
}

/* テーブル */

#apply table , #company table {
  margin: 0 auto;
  width: 80%;
}

#apply table th , #company table th {
  text-align: left;
  padding: 20px 0 30px;
  vertical-align: top;
  border: none;
  border-top: 1px solid #71221a;
}

#apply table td , #company table td {
  padding: 24px 0 20px;
  text-align: left;
  vertical-align: top;
  border: none;
  border-top: 1px solid #ddd;
  padding-left: 30px;
}

/* トップに戻る */

.wrapper {
  position: relative;
  /*topBtnの親要素に指定*/
}

.topBtn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  color: #fff;
  text-decoration: none;
  font-weight: bold;
  font-size: 11px;
  width: 60px;
  height: 60px;
  text-align: center;
  line-height: 22px;
  border-radius: 30px;
  padding-top: 30px;
  box-sizing: border-box;
}

.topBtn:before {
  content: '\25B2';
  position: absolute;
  top: 10px;
  left: 0;
  width: 100%;
  text-align: center;
  font-size: 20px;
}

.topBtn:hover {
  opacity: 0.7;
}

/* アイコンフォント */

i {
  font-size: 1.1em;
}

/* リスト */

ul {
  list-style: none;
}

ol {
  counter-reset: number;
  /* 名前を付けたカウンターをリセット */
  list-style: none;
  /* olが数字を付けることをキャンセル */
  margin: 0;
  padding: 0;
}

ol.philosophy li:before {
  counter-increment: number;
  content: counter(number)".";
}
ol.history span{
  display: inline-block;
  width:3.5em;
}
/* コンテンツ */

.content {
  padding: 5rem 0 0;
  width: 100%;
}
.content:last-child {
  padding: 5rem 0 5rem;
}

.content-wp {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 2rem;
}

.sub_ttl {
  text-align: center;
  color: #71221a;
  font-size: 2.5rem;
  letter-spacing: 0.1em;
  margin:4rem 0 6rem;
}

.inner {
  width: 1100px;
  margin: 0 auto;
}

.inner:after {
  content: "";
  clear: both;
  display: block;
}

/* header */

.header-wp {
  width: 100%;
  position: fixed;
  z-index: 1;
}

#top-head {
  /*top: -100px;
  position: absolute;
  margin: 100px auto 0;*/
  width: 100%;
  margin: 0 auto;
  line-height: 1;
  z-index: 999;
  padding: 1rem 0;
  background: #000;
  background: rgba(0, 0, 0, .7);
}

#top-head a, #top-head {
  color: #fff;
  text-decoration: none;
}

#top-head .inner {
  position: relative;
  align-items: center;
  width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
@media screen and (max-width: 750px) {
  #top-head .inner {
    padding-left: 0;
    padding-right: 0;
  }
}
#top-head .logo {
  padding: 0 10px;
  display: block;
}

#top-head .logo h1 {
  float: left;
  padding-right: 15px;
}

#top-head .logo h1 img {
  width: 100%;
  height: auto;
  max-width: 149px;
  max-height: 52px;
}
#global-nav {
  margin-left: auto;
}
#global-nav ul {
  list-style: none;
  right: 0;
  bottom: 0;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
  width: auto;
  display: flex;
}

#global-nav ul li {
  float: left;
}

#global-nav ul li a {
  /* padding: 0 8px;*/
}

/* Fixed */

#top-head.fixed {
  margin-top: 0;
  top: 0;
  position: fixed;
  transition: top 0.65s ease-in;
  -webkit-transition: top 0.65s ease-in;
  -moz-transition: top 0.65s ease-in;
}

#top-head.fixed .logo {
  font-size: 24px;
  color: #333;
}

/* Toggle Button */

#nav-toggle {
  display: none;
  position: absolute;
  right: 2rem;
  top: 6px;
  height: 30px;
  width: 32px;
  cursor: pointer;
  z-index: 101;
}

#nav-toggle:after {
  position: absolute;
  left: 0
  right: 0;
  margin: auto;
  bottom: -16px;
  font-size: 10px;
  content: 'MENU';
  display: block;
  width: 100%;
  color: #fff;
  /* font-size: 16px; */
  text-decoration: none;
  text-align: center;
  white-space: nowrap;
  transition: all .4s;
}

#nav-toggle div {
  position: relative;
}

#nav-toggle span {
  display: block;
  position: absolute;
  height: 4px;
  width: 100%;
  background: #fff;
  left: 0;
  -webkit-transition: .35s ease-in-out;
  -moz-transition: .35s ease-in-out;
  transition: .35s ease-in-out;
}

#nav-toggle span:nth-child(1) {
  top: 0;
}

#nav-toggle span:nth-child(2) {
  top: 11px;
}

#nav-toggle span:nth-child(3) {
  top: 22px;
}

/* メイン */

.mv {
  background: url(../img/img_company_01.png) no-repeat bottom center;
  background-size: cover;
  width: 100%;
  height: 85%;
  max-height: 800px;
}

@media screen and (max-width: 750px) {
  .mv{
    max-height: 85%;
  }
}

.mv h2 {
  color: #fff;
  -ms-user-select: none;
  -webkit-user-select: none;
  user-select: none;
  filter: drop-shadow(10px 10px 10px rgba(0,0,0,0.6));
  width: 100%;
  max-width: 980px;
  padding: 30vh 10px 0;
  margin: 0 auto;
}


/* 当社について */

.aboutus-box h2 {
  text-align: center;
  margin: 0 0 2rem;
}
.aboutus-box,.contact-box{
  display: table;
  width: 100%;
  text-align: center;
}
.contact-box{
  padding:2rem 0 0;
}
.contact-box h3{
  white-space: nowrap;
}
.aboutus-box div,.contact-box div {
  display: table-cell;
  vertical-align: middle;
}

@media screen and (max-width: 750px) {
  .aboutus-box div,.contact-box div{
    display: block;
  }
  .contact-box div{
    padding:1rem 0;
  }
}
.aboutus-box div ol li {
  font-size: 17px;
  /*margin-left: 1em;*/
  padding-bottom: 1rem;
}

/*店舗概要*/

#shop {
  background-color: #f7f7f7;
  background:url(../img/bg_paper.jpg);
  padding-bottom: 5rem;
}

#shop .shop-box {
  max-width: 1100px;
  background-color: #fff;
}

.shopflex {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1100px;
  /*親要素に横幅を指定*/
  margin: 0 auto 20px;
}
.shopflex:last-child{
  margin: 0 auto;
}
#shop .flexbox-item {
  border: 1px solid #ccc;
  width: 320px;
  margin: 10px;
  padding: 5px;
  text-align: center;
}

.shopflex .empty-item {
  width: 300px;
  height: 0;
  margin: 10px;
  padding: 5px;
}
#shop .flexbox-item .photo {
  height: 340px;
  overflow: hidden;
  margin-bottom: 10px;
  position: relative;
}
@media screen and (max-width: 750px) {
  #shop .flexbox-item .photo {
    height: auto;
    overflow: auto;
    position: relative;
  }
}
#shop .flexbox-item .photo img{
  max-width: 300px;
  width: 100%;
  margin: 0 auto;
}

#shop .shop-inner {
 padding: 2rem;
}

#shop .flexbox-item li {
  margin: 10px 0;
}

#shop .flexbox-item ul{
  display: inline-block;
  text-align: left;
  padding: 0 12px;
  font-size: 0.95em;
}


#shop #kagoshima_box{
  margin: 0;
}
#shop .shop-box-wp .content:not(:last-child){
  padding: 5rem 0 0;
}

.fc_banner {
  text-align: center;
}

/*採用概要*/
#recruit{
  padding-top: 5rem;
}


#contact .flexbox div {
  -webkit-box-flex: 1;
  box-flex: 1;
  width: 100%;
  padding-bottom: 2rem;
}

#contact .flexbox a[href^="tel:"] {
  font-size: 2.5rem;
  font-weight: bold;
}

#contact .flexbox a[href^="mailto:"], #contact .flexbox i {
  font-size: 2.2rem;
}

.recruit-box {
  text-align: center;
}

.recruit-box h3 {
  margin-bottom: .5rem;
  color: #71221a;
}

#recruit .recruit-message .item-text h3 {
  color: #71221a;
}

#recruit .flexbox {
  margin: 2em 0;
  align-items: center;
}

#recruit .recruit-message .flexbox {
  margin: 4em 0;
}

#recruit .recruit-message .flexbox:last-child {
  margin: 0px;
}

.center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

#recruit .center h3 {
  margin: 2rem 0;
  color: #71221a;
}

.interview {
  position: relative;
}

.interview-box {
  width: 70%;
  height: auto;
  min-height: 380px;
  padding: 2em;
}

#recruit .item-photo{
  width: 50%;
}
#recruit .item-text{
  width: 50%;
}

.item-photo img {
  width:100%;
  height: auto;
}

.interview-box p:last-child {
  text-align: right;
  font-weight: bold;
  color: #71221a;
  margin-top: 2.5rem;
}

.interview:before, .interview:after {
  content: '';
  width: 20px;
  height: 30px;
  position: absolute;
  display: inline-block;
}

.interview:before {
  border-left: solid 8px #721e14;
  border-top: solid 8px #721e14;
  top: 0;
  left: 0;
}

.interview:after {
  border-right: solid 8px #721e14;
  border-bottom: solid 8px #721e14;
  bottom: 0;
  right: 0;
}

.interview p {
  margin: 0;
  padding: 0;
}

.senpai {
  position: absolute;
  bottom: 0;
  right: 5px;
}

/*お問い合わせ*/

#contact {
  text-align: center;
}

#contact .sub_ttl{
  margin: 0 0 4rem;
}

/*企業概要*/

#company {
  background-color: #f7f7f7;
  background:url(../img/bg_paper.jpg);
}

/*フッター*/

footer {
  background-color: #000;
  padding: 3rem 0;
  text-align: center;
}

footer p, footer a {
  color: #fff!important;
}

footer .copy {
  padding: 2rem 0 0;
  font-size: .8rem;
}

@media screen and (min-width: 750px) {
  .sp {
    display: none;
  }
  #recruit .flexbox {
    flex-wrap: nowrap;
    align-items: flex-start;
  }
  #recruit .flexbox:nth-child(odd) {
    flex-direction: row-reverse;
  }
  #recruit .flexbox .item-photo {
    margin: 0 30px 0 0;
  }
  #recruit .flexbox:nth-child(odd) .item-photo {
    margin: 0 0 0 30px;
  }
  #top-head {
    /*overflow-x: auto;
    overflow-y: hidden;
    white-space: nowrap;
    -webkit-overflow-scrolling: touch;*/
  }
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
    color: #333;
  }
}
@media screen and (min-width: 750px) {
  #global-nav ul li {
    padding-right: 2rem}
    #global-nav ul li:last-child {
      padding-right: 0;
    }
  }
  @media screen and (max-width: 750px) {
    .pc {
      display: none;
    }
    .sp {
      display: block;
    }
    #top-head .logo {
      display: block;
      width: 85%;
    }
    #top-head .logo h1 {
      float: left;
      padding-right: 10px;
      max-width: 50%;
    }
    .aboutus-box .flexbox-text {
      padding: 0 0 5rem;
    }
    .aboutus-box .logo {
      padding: 0;
    }
    #aboutus {
      margin-bottom: 0px;
    }
    table {
      width: 100%;
    }
    th, td {
      display: block;
      text-align: left;
      width: 100%;
    }
    .interview-box {
      width: 100%;
    }
    #recruit .flexbox {
      display: flex;
      flex-direction: column;
      justify-content: center;
      align-items: center;
    }
    #recruit .flexbox .item-photo {
      padding: 0;
      width: 100%;
    }
    #recruit .item-text{
      width: 100%;
    }
    #recruit .recruit-message .flexbox {
      margin: 2em 0;
    }
    /* ナビ */
    #top-head .inner {
      width: 100%;
      padding: 0;
    }
    #top-head {
      top: 0;
      position: fixed;
      margin-top: 0;
    }
    /* Fixed reset */
    #mobile-head {
      width: 100%;
      height: 60px;
      z-index: 999;
      position: relative;
    }
    #top-head.fixed .logo, #top-head .logo {
      position: absolute;
    }
  }


  @media screen and (max-width: 1180px) {
    #global-nav {
      position: absolute;
      /* 開いてないときは画面外に配置 */
      top: -476px;
      background: rgba(0, 0, 0, 0.7);
      width: 100%;
      text-align: center;
      padding: 10px 0;
      -webkit-transition: .5s ease-in-out;
      -moz-transition: .5s ease-in-out;
      transition: .5s ease-in-out;
    }
    #global-nav ul {
      list-style: none;
      position: static;
      right: 0;
      bottom: 0;
      font-size: 14px;
      display: block;
    }
    #global-nav ul li {
      float: none;
      position: static;
    }
    #top-head #global-nav ul li a, #top-head.fixed #global-nav ul li a {
      width: 100%;
      display: block;
      color: #fff;
      padding: 18px 0;
    }
    #nav-toggle {
      display: block;
    }
    /* #nav-toggle 切り替えアニメーション */
    .open #nav-toggle span:nth-child(1) {
      top: 11px;
      -webkit-transform: rotate(315deg);
      -moz-transform: rotate(315deg);
      transform: rotate(315deg);
    }
    .open #nav-toggle span:nth-child(2) {
      width: 0;
      left: 50%;
    }
    .open #nav-toggle span:nth-child(3) {
      top: 11px;
      -webkit-transform: rotate(-315deg);
      -moz-transform: rotate(-315deg);
      transform: rotate(-315deg);
    }
    /* #global-nav スライドアニメーション */
    .open #global-nav {
      /* #global-nav top + #mobile-head height */
      -moz-transform: translateY(541px);
      -webkit-transform: translateY(541px);
      transform: translateY(541px);
    }

    .shopflex .empty-item {
      height: 0;
      margin: 0;
      padding: 0;
    }
  }


  /*-----------------------------------------------------------------
  LINE 追加
  ----------------------------------------------------------------- */
  .line-inner {
    max-width: 100%;
  }

  .line-conter {
    margin: 5rem auto;
    width: 100%;
    max-width: 1060px;
    background: #fff;
    border: solid 6px #00B900;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
  }

  @media screen and (max-width: 750px) {
    .line-conter {
      margin: 4vh auto;
      width: 90%;
      background: #fff;
      border: solid 4px #00B900;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      align-items: center;
      flex-direction: column;
    }
  }

  .lineTxt {
    color: #000;
    text-align: center;
    padding-top: 1vh;
    padding-bottom: 1vw;
    font-weight: bold;
  }

  .lineTit {
    font-size: 3rem;
    font-weight: bold;
    color: #00B900;
  }

  @media screen and (max-width: 750px) {
    .padding {
      padding: 0 8%;
    }
  }

/*-----------------------------------------------------------------
2019/6/24 追加
----------------------------------------------------------------- */

#shop .flexbox-item .photo.photo-height {
  height: 250px;
}

.fc_container {
  margin: 40px auto;
  width: 100%;
}

.fc_banner img { width:100%; }

@media screen and (max-width: 750px) {
  .fc_container {
    margin: 10px auto 0;
  }
  .fc_banner {
    /* padding: 0 2rem; */
  }
}
#shop .flexbox-item .photo img {
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
}
@media screen and (max-width: 750px) {
  #shop .flexbox-item .photo img { position: static;}
}

/*-----------------------------------------------------------------
2019/11/05 追加
----------------------------------------------------------------- */

#shop span.fc {
  display: inline-block;
  color: #fff;
  background-color: #71221a;
  border-radius: 2px;
  padding: .2rem .5em;
  font-size: 12px;
}

#shop span.open {
  display: inline-block;
  color: #fff;
  background-color: #D71417;
  border-radius: 2px;
  padding: .2rem .5em;
  margin-left: 6px;
  font-size: 12px;
}

/*-----------------------------------------------------------------
2020/04/08 追加
----------------------------------------------------------------- */
.news-area {
  width: 100%;
  padding:20px 2rem;
  background-color: #FBF4EC;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .news-area {
    padding:12px 2rem;
    margin-bottom: 42px;
    text-align: left;
  }
}
.news-area a {
  color: #71221a;
  text-decoration: none;
  transition: 0.3s;
}
.news-area a:hover {
  opacity: 0.8;
  transition: 0.3s;
}
.news-area a span {
  font-weight: 400;
}
.news-area a span:hover {
  text-decoration: underline;
}

.youtube-takeshi {
  display: flex;
  width: 100%;
  justify-content: center;
  padding: 5rem 2rem;
  background-color: #FBF4EC;
}
@media screen and (max-width: 750px) {
  .youtube-takeshi {
  }
}

.ghostbtn {
  padding: 8px 16px;
  border: 2px solid #ffffff;
  background-color: #E60013;
  color: #ffffff;
  font-weight: bold;
}
@media screen and (max-width: 750px) {
  .ghostbtn {
    display: inline;
    padding: 8px 42px;
  }
}


/* instafield */
#instagram {
  padding: 5rem 0;
}
.insta {
  display: flex;
  flex-wrap: wrap;
  margin: 0;
  padding: 0;
  margin-bottom:25px;

}
.insta img {
  width: 100%;
  height: 100%;
  position: absolute;
  margin: auto;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  object-fit: cover;
}
@media all and (-ms-high-contrast: none) {
  .insta img {
    width: 100%;
    height: auto;
  }
}
.insta-item {
  margin-right: 1%;
  margin-bottom: 17px;
  /*
  margin-right: 22px;
  width: 190px;
  height: 190px;
  */
  width: 32.3333%;
  height: 320px;
  overflow: hidden;
  position: relative;
}
.insta_btn {
  display: block;
  text-align: center;
  color: #71221a;
}

@media (max-width: 750px) {
  .insta {
    margin-bottom: 0;
    justify-content: center;
  }
  .insta-item {
    width: 150px;
    height: 150px;
    margin-right: 2%;
  }
  /*
  .insta-item:last-child {
    display: none;
  }
  */
}




/* FC店募集 */
#fc_shops {
  background-color: #FBF4EC;
  padding: 5rem;
}

@media (max-width: 750px) {
  #fc_shops {
  padding: 3rem 0;
}
}

/*-----------------------------------------------------------------
2025/09/22 追加
----------------------------------------------------------------- */
.line-conter.instagram {
  border: solid 6px #F14079;
  margin: 10rem auto;
}

@media (max-width: 750px) {
  .line-conter.instagram {
    margin: 3rem auto;
  }
}


.line-conter.instagram .lineTit {
  color: #F14079;
}





.insta_btn2{/*ボタンの下地*/
  padding: 0 16px 2px;
  color: #FFF;/*文字・アイコン色*/
  border-radius: 7px;/*角丸に*/
  position: relative;
  display: inline-block;
  text-align: center;/*中身を中央寄せ*/
  font-size: 12px;/*文字のサイズ*/
  background: -webkit-linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;
  background: linear-gradient(135deg, #427eff 0%, #f13f79 70%) no-repeat;/*グラデーション①*/
  overflow: hidden;/*はみ出た部分を隠す*/
  text-decoration:none;/*下線は消す*/
}

.insta_btn2:before{/*グラデーション②*/
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;/*全体を覆う*/
  height: 100%;/*全体を覆う*/
  background: -webkit-linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
  background: linear-gradient(15deg, #ffdb2c, rgb(249, 118, 76) 25%, rgba(255, 77, 64, 0) 50%) no-repeat;
}

.insta_btn2 .fa-instagram{/*アイコン*/
  font-size: 21px;/*アイコンサイズ*/
  position: relative;
  top: 4px;/*アイコン位置の微調整*/
}

.insta_btn2 span {/*テキスト*/
  display:inline-block;
  position: relative;
  transition: .5s
}

.insta_btn2:hover span{/*ホバーで一周回転*/
  -webkit-transform: rotateX(360deg);
  -ms-transform: rotateX(360deg);
  transform: rotateX(360deg);
}

/*-----------------------------------------------------------------
2025/11/19 追加
----------------------------------------------------------------- */
#shop th {
  font-weight: 400;
  padding-right: 12px;
}