@charset "UTF-8";
html {
  overflow: auto;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

@media all and (max-width: 767px) {
  html.is-fixed {
    height: 100%;
    overflow: hidden;
  }
  html.is-fixed body {
    height: 100%;
    overflow: hidden;
  }
}

* {
  -webkit-box-sizing: border-box !important;
          box-sizing: border-box !important;
  padding: 0;
  margin: 0;
}

*::before, *::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 0;
  margin: 0;
}

body {
  font-family: 'Noto Serif JP', serif;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1.5;
  word-wrap: break-word;
  overflow: hidden;
  font-size: 62.5%;
  letter-spacing: .05em;
  min-width: 100%;
  width: 100%;
  background-image: url(./img/bg.jpg);
  background-repeat: repeat;
}

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

a {
  color: #333;
  text-decoration: none;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -ms-transition: all 0.5s;
  -o-transition: all 0.5s;
}

a:hover {
  opacity: .5;
}

ul {
  list-style: none;
}

.btn {
  border-radius: 10px;
}

.btn:hover {
  background: #333;
  color: #ddd;
  opacity: inherit;
}

.pc_only {
  display: block !important;
}

.sp_only {
  display: none !important;
}

@media only screen and (max-width: 768px) {
  .pc_only {
    display: none !important;
  }
  .sp_only {
    display: block !important;
  }
}

.jpn {
  display: block;
  font-size: .9rem;
  letter-spacing: 0.1em;
}

@media (min-width: 768px) {
  .jpn {
    font-size: 1rem;
  }
}

.product__inner {
  width: 90%;
  margin: 0 auto;
}

.header {
  height: 70px;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
}

.header__ttl {
  text-align: center;
}

.header__ttl a {
  color: #000;
}

.header__ttl a img {
  max-width: 60px;
}

.header__wrap {
  width: 100%;
  padding: 0 4%;
  background: rgba(255, 255, 255, 0.8);
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  height: 70px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.header__btn {
  font-size: 16px;
  color: #fff;
  padding: 10px 30px;
  border-radius: 30px;
}

.header__btn a {
  color: #fff;
}

.header__nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.header__nav--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  display: none;
  margin: 0;
  padding: 0;
  list-style: none;
}

.header__nav--item {
  text-align: center;
  font-weight: 600;
  font-size: 16px;
  margin: 0 20px 0 0;
}

.header__nav--item--contact {
  border-radius: 20px;
  padding: 15px 25px;
  color: #fff;
  letter-spacing: 0.15em;
}

.header__line--img {
  width: 50%;
  display: block;
  margin: 0 auto 20px;
  max-width: 60px;
}

.header__line--txt {
  font-size: 14px;
  margin: 0 auto 20px;
}

.header__line--btn {
  background: #06C755;
  color: #fff;
  width: 140px;
  height: 40px;
  margin: 0 auto;
}

.header__line--btn a {
  color: #fff;
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  position: relative;
  padding: 0 0 0 10px;
}

.header__line--btn a:before {
  position: absolute;
  content: "";
  background-image: url(./img/arrow-white.svg);
  background-size: contain;
  width: 12px;
  height: 12px;
  right: 5px;
}

@media (max-width: 768px) {
  .header {
    position: fixed;
    z-index: 50;
    width: 100%;
    background: rgba(255, 255, 255, 0.8);
    height: 55px;
    left: 0;
    top: 0 !important;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .header__ttl {
    font-size: calc(100vw * 20 / 390);
    color: #000;
    margin: 0;
    padding: 0 0 0 5%;
    text-align: left;
    font-size: 16px;
    position: relative;
  }
  .header__ttl a {
    color: #000;
  }
  .header__btn {
    padding: 8px 20px;
    font-size: calc(100vw * 16 / 390);
  }
}

@media screen and (min-width: 500px) and (max-width: 1000px) {
  .header__ttl a {
    color: #000;
  }
  .header__ttl a img {
    max-width: 60px;
  }
  .header__nav--item {
    font-size: 15px;
    margin: 0;
  }
  .header__line--img {
    margin: 0 auto 10px;
    max-width: 60px;
  }
  .header__line--txt {
    font-size: 12px;
    letter-spacing: 0;
  }
  .header__line--btn {
    background: #06C755;
    color: #fff;
    width: 100px;
    height: 40px;
    margin: 0 auto;
  }
  .header__line--btn a {
    font-size: 11px;
  }
  .header__line--btn a:before {
    position: absolute;
    content: "";
    background-image: url(./img/arrow-white.svg);
    background-size: contain;
    width: 12px;
    height: 12px;
    right: 5px;
  }
}

.nav-toggle {
  display: none;
  position: absolute;
  right: 16px;
  top: 20px;
  width: 25px;
  height: 25px;
  cursor: pointer;
  z-index: 101;
}

.nav-toggle div {
  position: relative;
}

.nav-toggle span {
  display: block;
  position: absolute;
  height: 2px;
  width: 25px;
  background: #333;
  left: 0;
  right: 0;
  margin: auto;
}

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

.nav-toggle span:nth-child(2) {
  top: 8px;
}

.nav-toggle span:nth-child(3) {
  top: 16px;
}

.nav-toggle span.nav-toggle-txt {
  height: 0;
  bottom: 0;
  width: 100%;
  height: 0;
  text-align: center;
}

#top-head.fixed .logo, #top-head .mobile-logo {
  text-align: left;
}

.p-header-nav {
  position: absolute;
  visibility: hidden;
  top: 0;
  background: rgba(0, 0, 0, 0.9);
  width: 100%;
  height: 65vh;
  height: 65svh;
  text-align: 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;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  padding: 10px 0;
  left: 0;
  right: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  justify-content: center;
  align-items: center;
  font-size: 24px;
  z-index: 100;
}

.p-header-nav ul {
  list-style: none;
  position: static;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.p-header-nav ul li {
  float: none;
  position: static;
  width: 100%;
  display: block;
  color: #fff;
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 3% 0;
  -webkit-transition: color .6s ease;
  transition: color .6s ease;
  font-size: 20px;
  margin: 0;
}

.p-header-nav ul li a {
  transition: none;
  -webkit-transition: none;
  -moz-transition: none;
  -ms-transition: none;
  -o-transition: none;
  color: #fff;
  font-size: 1.2rem;
}

.p-header-nav #top-head.fixed #global-nav ul li a {
  font-size: 1.5rem;
}

#nav-toggle {
  display: block;
}

.open #nav-toggle {
  position: fixed;
}

.open #nav-toggle span {
  background: #fff;
}

.open #nav-toggle span:nth-child(1) {
  top: 11px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
}

.open #nav-toggle span:nth-child(2) {
  width: 0;
  left: 50%;
}

.open #nav-toggle span:nth-child(3) {
  top: 11px;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.open #global-nav {
  visibility: visible;
  position: fixed;
}

.main {
  max-width: 1440px;
  margin: 70px 0 40px auto;
}

@media (max-width: 768px) {
  .main {
    width: 100%;
    margin: 55px auto 0;
  }
}

@media (min-width: 1441px) {
  .main {
    margin: 70px auto 40px;
  }
}

.content {
  margin: 100px auto;
}

@media (max-width: 768px) {
  .content {
    margin: 60px auto;
  }
}

.content__inner {
  width: 90%;
  max-width: 920px;
  margin: auto;
  position: relative;
}

@media (max-width: 768px) {
  .content__inner {
    width: 80%;
  }
}

.content__ttl {
  text-align: center;
  display: block;
  width: 100%;
  margin: 0 auto 60px;
  padding: 0 0 16px;
  font-size: 24px;
  position: relative;
}

.content__ttl::before, .content__ttl::after {
  content: '';
  position: absolute;
  margin: auto;
  left: 0;
  bottom: 0;
  width: 2em;
  background-color: #E21508;
  height: 3px;
  right: 2em;
}

.content__ttl::before {
  background-color: #E21508;
  left: 2em;
  width: 4em;
}

@media (max-width: 768px) {
  .content__ttl {
    margin-bottom: 20px;
    font-size: 20px;
  }
}

.content__inner {
  max-width: 90%;
  margin: 0 auto;
}

@media (min-width: 768px) {
  .content__inner {
    max-width: 1040px;
  }
}

/********************* メインビジュアル *********************/
.mv {
  scroll-margin-top: 100px;
  background-image: url(./img/mv.jpg);
  background-size: cover;
  color: #fff;
}

.mv__area {
  height: 700px;
  position: relative;
}

.mv__area--content {
  -ms-writing-mode: tb-rl;
  -webkit-writing-mode: vertical-rl;
          writing-mode: vertical-rl;
  position: absolute;
  right: 5%;
  top: 10%;
}

.mv__area--ttl {
  width: 100%;
  padding: 0;
  font-weight: 600;
  font-size: 32px;
  line-height: 2;
  letter-spacing: .25em;
}

@media (max-width: 768px) {
  .mv {
    background-image: url(./img/mv-sp.jpg);
  }
  .mv__area {
    height: auto;
    min-height: 500px;
    position: relative;
    display: block;
    padding: 0 0 30px;
  }
  .mv__area--content {
    position: initial;
    margin: 0 auto;
    padding: 10% 5% 0;
    width: 100%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 550px;
  }
  .mv__area--ttl {
    font-weight: 700;
    width: auto;
    margin: 0 0 5.3%;
    letter-spacing: .7em;
    padding: 0;
    font-size: calc(100vw * 20 / 390);
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
  }
  .mv__area--txt {
    font-size: calc(100vw * 18 / 375);
    letter-spacing: 0;
    line-height: 1.5;
    padding: 0;
    font-weight: 100;
  }
  .mv__area--point {
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    margin: auto 0 0;
  }
  .mv__area--item {
    font-size: 12px;
    line-height: 1.25;
    letter-spacing: 0;
    width: 110px;
    height: 110px;
    max-width: 32%;
    margin: 0;
  }
}

@media screen and (min-width: 768px) and (max-width: 1439px) {
  .mv {
    background-position: center;
  }
  .mv__area {
    min-height: 700px;
    height: 100%;
    padding: 0 3%;
  }
  .mv__area--content {
    width: 80%;
    margin: 5% 0 0 5%;
  }
  .mv__area--ttl {
    font-size: calc(100vw * 24 / 1280);
    height: 100%;
  }
  .mv__area--ttl--big {
    font-size: 36px;
  }
  .mv__area--txt {
    font-size: 24px;
  }
  .mv__area--img {
    margin: -50px 5% 0 0;
  }
}

/********************* メインビジュアル *********************/
/********************* いちむじんのこだわり *********************/
.about__inner {
  width: 90%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.about__content {
  width: 100%;
}

.about__content--box {
  width: 55%;
  margin: 40px auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}

.about__obsession {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.about__obsession--box {
  background: rgba(255, 255, 255, 0.4);
  width: 40%;
  height: 100%;
  line-height: 1.75;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  padding: 2% 0;
}

.about__obsession--no {
  font-size: 24px;
  width: 100%;
}

.about__obsession--ttl {
  font-size: 20px;
  width: 100%;
}

.about__obsession--txt {
  font-size: 16px;
  width: 100%;
}

.about__obsession--img {
  width: 55%;
}

.about__obsession-1 {
  margin: 0 auto 100px;
}

@media (max-width: 768px) {
  .about__inner {
    width: 90%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .about__content--box {
    width: 100%;
    margin: 0 auto;
  }
  .about__content--ttl {
    font-size: 20px;
  }
  .about__content--ttl--sub {
    margin-bottom: 20px;
  }
  .about__content--txt {
    font-size: 14px;
    margin: 0 0 24px;
  }
  .about__content--img {
    width: 100%;
  }
  .about__obsession {
    width: 100%;
    height: auto;
    position: relative;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .about__obsession--box {
    width: 100%;
    height: 100%;
    position: relative;
  }
  .about__obsession--no {
    font-size: 20px;
  }
  .about__obsession--ttl {
    font-size: 20px;
  }
  .about__obsession--txt {
    font-size: 15px;
    letter-spacing: -.025em;
  }
  .about__obsession--img {
    width: 100%;
  }
  .about__obsession-1 {
    background-image: none;
    margin: 0 auto 40px;
  }
  .about__obsession-2 {
    background-image: none;
  }
}

@media screen and (min-width: 500px) and (max-width: 1050px) {
  .about__obsession--ttl {
    font-size: 18px;
  }
  .about__obsession--txt {
    font-size: 14px;
  }
}

/********************* いちむじんのこだわり *********************/
/********************* メニュー *********************/
.menu__inner {
  width: 90%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

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

.menu__box {
  width: calc(96% / 3);
  margin: 0 2% 0 0;
}

.menu__box:nth-child(3n) {
  margin: 0;
}

.menu__box--sub {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.menu__box--item {
  margin: 0 auto 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.menu__box--img {
  margin: 0 auto 20px;
  display: block;
}

.menu__box--ttl {
  width: 70%;
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 10px;
}

.menu__box--price {
  width: 27%;
  font-size: 16px;
  font-weight: 400;
  margin: 0 3% 10px 0;
  text-align: right;
}

.menu__box--txt {
  font-size: 16px;
  width: 100%;
  text-align: left;
  line-height: 1.75;
}

.menu__detail {
  width: calc(96% / 2);
  margin: 0px 1%;
}

.menu__detail--headline {
  width: 100%;
  font-size: 20px;
  font-weight: 400;
  margin: 0 0 15px;
  padding: 0 0 5px;
  border-bottom: 2px solid #E21508;
}

.menu__detail--ttl {
  width: 36%;
  font-size: 16px;
  font-weight: 400;
  margin: 0 0 10px;
}

.menu__detail--price {
  width: 8.5%;
  font-size: 16px;
  font-weight: 400;
  margin: 0 5.5% 10px 0;
}

@media (max-width: 768px) {
  .menu__inner {
    width: 90%;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .menu__box {
    width: 100%;
    margin: 0 1%;
  }
  .menu__box--item {
    margin: 0 auto 10px;
  }
  .menu__box--img {
    margin: 0 auto 10px;
  }
  .menu__box--ttl {
    font-size: 15px;
    font-weight: 400;
  }
  .menu__box--price {
    font-size: 15px;
  }
  .menu__box--txt {
    padding: 0 4% 0 0;
  }
  .menu__detail {
    width: 100%;
  }
  .menu__detail--headline {
    width: 100%;
    font-size: 18px;
    font-weight: 400;
  }
  .menu__detail--ttl {
    width: 70%;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 10px;
  }
  .menu__detail--price {
    width: 27%;
    font-size: 16px;
    font-weight: 400;
    margin: 0 3% 10px 0;
  }
}

@media screen and (min-width: 500px) and (max-width: 1200px) {
  .menu__box {
    width: calc(96% / 2);
    margin: 0 2% 0 0;
  }
  .menu__box:nth-child(2n) {
    margin: 0;
  }
  .menu__box:nth-child(3n) {
    margin: 0 2% 0 0;
  }
  .menu__box--item {
    margin: 0 auto 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .menu__box--img {
    margin: 0 auto 20px;
    display: block;
  }
  .menu__box--ttl {
    width: 70%;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 10px;
  }
  .menu__box--price {
    width: 27%;
    font-size: 16px;
    font-weight: 400;
    margin: 0 3% 10px 0;
    text-align: right;
  }
  .menu__box--txt {
    font-size: 16px;
    width: 100%;
    text-align: left;
    line-height: 1.75;
  }
  .menu__detail {
    width: 100%;
    margin: 0px 1%;
  }
  .menu__detail--headline {
    width: 100%;
    font-size: 20px;
    font-weight: 400;
    margin: 0 0 15px;
    padding: 0 0 5px;
    border-bottom: 2px solid #E21508;
  }
  .menu__detail--ttl {
    width: 36%;
    font-size: 16px;
    font-weight: 400;
    margin: 0 0 10px;
  }
  .menu__detail--price {
    width: 8.5%;
    font-size: 16px;
    font-weight: 400;
    margin: 0 5.5% 10px 0;
  }
}

.tab_wrap {
  width: 100%;
}

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

.tab_area {
  font-size: 0;
  margin: 0 10px;
  text-align: center;
}

.tab_area label {
  width: 150px;
  margin: 0 5px;
  display: inline-block;
  padding: 10px 0;
  color: #E21508;
  background: #fff;
  border: 1px solid #E21508;
  text-align: center;
  font-size: 16px;
  cursor: pointer;
  -webkit-transition: ease 0.2s opacity;
  transition: ease 0.2s opacity;
  width: 35%;
}

@media (hover: hover) {
  .tab_area label:hover {
    opacity: 0.5;
  }
}

.tab_panel {
  width: 100%;
  padding: 40px 0 0;
  display: none;
}

#tab1:checked ~ .tab_area .tab1_label {
  background: #E21508;
  color: #fff;
}

#tab1:checked ~ .panel_area #panel1 {
  display: block;
}

#tab2:checked ~ .tab_area .tab2_label {
  background: #E21508;
  color: #fff;
}

#tab2:checked ~ .panel_area #panel2 {
  display: block;
}

@media (max-width: 768px) {
  .tab_wrap {
    width: 100%;
  }
  input[type="radio"] {
    display: none;
  }
  .tab_area {
    font-size: 0;
    margin: 0 10px;
    text-align: center;
  }
  .tab_area label {
    width: 150px;
    margin: 0 5px;
    display: inline-block;
    padding: 12px 0;
    color: #E21508;
    background: #fff;
    text-align: center;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: ease 0.2s opacity;
    transition: ease 0.2s opacity;
    width: 40%;
  }
  .tab_area label:hover {
    opacity: 1;
  }
  .tab_panel {
    width: 100%;
    padding: 20px 0;
    display: none;
  }
  #tab1:checked ~ .tab_area .tab1_label {
    background: #E21508;
    color: #fff;
  }
  #tab1:checked ~ .panel_area #panel1 {
    display: block;
  }
  #tab2:checked ~ .tab_area .tab2_label {
    background: #E21508;
    color: #fff;
  }
  #tab2:checked ~ .panel_area #panel2 {
    display: block;
  }
}

/********************* メニュー *********************/
/********************* 店内 *********************/
.floor__inner {
  width: 89%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.floor__content {
  max-width: 1000px;
  margin: 0 auto;
}

.floor__content--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  max-width: 900px;
  margin: 0 auto;
}

.floor__content--item {
  width: calc(94% / 2);
  margin: 0px 0% 50px 0px;
}

@media (max-width: 768px) {
  .floor__inner {
    width: 90%;
  }
  .floor__content {
    width: 100%;
  }
  .floor__content--ttl:before {
    right: -60%;
  }
  .floor__content--list {
    width: 100%;
  }
  .floor__content--item {
    width: 100%;
    margin: 0 0 3%;
  }
  .floor__content--item:last-child {
    margin: 0 auto;
  }
}

/********************* 店内 *********************/
/********************* 店舗紹介 *********************/
.shop__inner {
  width: 90%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.shop__content {
  max-width: 1000px;
  margin: 0 auto;
}

.shop__content--ttl:before {
  right: -60%;
}

.shop__content--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.shop__content--item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  width: 48%;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.shop__content--item--img {
  width: 100%;
  margin: 0 auto 20px;
}

.shop__content--item--box {
  font-size: 18px;
  width: 100%;
}

.shop__content--item--ttl {
  margin: 0 0 16px;
}

.shop__content--item--address {
  margin: 0 0 16px;
}

.shop__content--item--time {
  margin: 0 0 16px;
}

.shop__content--item--map {
  border: 1px solid #000;
  position: relative;
  height: 40px;
  width: 160px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.shop__content--item--map::before {
  position: absolute;
  content: "";
  background-image: url(./img/arrow.svg);
  width: 25px;
  height: 25px;
  right: 10px;
}

.shop__content--item--map a {
  font-size: 14px;
  width: 100%;
  height: 100%;
  padding: 0 0 0 20px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

@media (max-width: 768px) {
  .shop__inner {
    width: 90%;
  }
  .shop__content {
    width: 100%;
  }
  .shop__content--item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    margin: 0 0 50px 0;
    width: 100%;
  }
  .shop__content--item--img {
    margin: 0 0 20px;
  }
  .shop__content--item--box {
    font-size: 16px;
    margin: 0;
  }
  .shop__content--item--ttl {
    margin: 0 0 10px;
  }
  .shop__content--item--address {
    margin: 0 0 10px;
  }
  .shop__content--item--time {
    margin: 0 0 10px;
  }
  .shop__content--item--map {
    border: 1px solid #000;
    position: relative;
    height: 40px;
    width: 160px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

/********************* 店舗紹介 *********************/
/********************* 採用情報 *********************/
.recruit__inner {
  width: 90%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.recruit__content {
  max-width: 1000px;
  margin: 0 auto;
}

.recruit__content--txt {
  font-size: 16px;
  margin: 0 0 16px;
}

.recruit__content--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}

.recruit__content--item--ttl {
  margin: 20px 0;
  padding: 0 0 10px;
  border-bottom: 2px solid #E21508;
  width: 100%;
  display: block;
  font-size: 20px;
}

.recruit__content--item--txt {
  font-size: 16px;
  margin: 0 0 10px;
}

.recruit__content--employment {
  width: 45%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin: 0 10% 50px 0;
}

.recruit__content--treatment {
  width: 45%;
}

.recruit__content--contact {
  width: 100%;
  text-align: center;
}

.recruit__content--contact--ttl {
  border: none;
}

.recruit__content--contact--tel {
  font-size: 28px;
  color: #1437B1;
}

@media (max-width: 768px) {
  .recruit__inner {
    width: 90%;
  }
  .recruit__content {
    width: 100%;
  }
  .recruit__content--txt {
    font-size: 16px;
    margin: 0 4% 10px 0;
  }
  .recruit__content--list {
    width: 100%;
  }
  .recruit__content--item {
    width: 100%;
    padding: 0 4% 0 0;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 10px;
    margin: 0 0 20px;
  }
  .recruit__content--item:last-child {
    margin: 0 auto;
  }
  .recruit__content--item--ttl {
    font-size: 18px;
  }
  .recruit__content--item--txt {
    font-size: 16px;
    margin: 0 0 10px;
    width: 100%;
    display: block;
  }
  .recruit__content--contact {
    text-align: left;
  }
  .recruit__content--contact--ttl {
    border: none;
  }
  .recruit__content--contact--tel {
    font-size: 18px;
  }
}

/********************* 採用情報 *********************/
/********************* 採用情報 *********************/
.line__inner {
  width: 100%;
}

.line__area {
  width: 89%;
  margin: auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.line__content {
  width: 100%;
  text-align: center;
}

.line__content--txt {
  font-size: 16px;
  margin: 0 0 16px;
}

.line__content--img {
  margin: 0 0 20px;
}

.line__content--btn {
  background: #06C755;
  color: #fff;
  width: 360px;
  height: 70px;
  margin: 0 auto;
}

.line__content--btn a {
  color: #fff;
  width: 100%;
  height: 100%;
  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;
  font-size: 20px;
  position: relative;
}

.line__content--btn a:before {
  position: absolute;
  content: "";
  background-image: url(./img/arrow-white.svg);
  width: 25px;
  height: 25px;
  right: 10px;
}

@media (max-width: 768px) {
  .line__inner {
    width: 100%;
  }
  .line__content {
    margin: 0 auto;
  }
  .line__content--img {
    width: 50%;
    max-width: 80px;
  }
  .line__content--txt {
    margin: 0 0 10px;
    font-size: 15px;
  }
  .line__content--btn {
    width: 90%;
    max-width: 360px;
    height: 50px;
  }
  .line__content--btn a {
    font-size: 18px;
  }
  .line__content--btn a:before {
    background-size: contain;
    width: 18px;
    height: 18px;
  }
}

/********************* 採用情報 *********************/
.footer {
  margin: 34px 0 0;
  background: #000;
  color: #fff;
}

.footer__inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 5%;
}

.footer__logo {
  width: 100px;
  margin: 0 auto;
}

.footer__content {
  width: 100%;
}

.footer__nav {
  text-align: center;
  padding: 20px 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin: 0 auto 0;
  width: 90%;
}

.footer__nav--info {
  text-align: left;
  width: 60%;
}

.footer__nav--info--ttl {
  font-size: 24px;
  margin: 0 0 20px;
}

.footer__nav--info--access {
  font-size: 16px;
  margin: 0 0 16px;
}

.footer__nav--info--time {
  font-size: 16px;
  margin: 0 0 16px;
}

.footer__nav--info--tel {
  font-size: 20px;
}

.footer__nav--info--tel img {
  margin: 0 20px 0 0;
}

.footer__nav--list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
  text-align: left;
  width: 100%;
  margin: 20px 0 0;
}

.footer__nav--item {
  padding: 5px 0;
  width: calc(100% / 8);
  font-size: 14px;
  text-align: right;
}

.footer__nav--item a {
  color: #000;
  font-size: 14px;
}

.footer__bottom {
  text-align: right;
  margin: 0 auto 0;
  width: 90%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}

.footer__sns {
  margin: 0 20px 0 0;
}

.footer__copy {
  text-align: center;
  padding: 0 0 20px;
}

@media (max-width: 768px) {
  .footer {
    margin: 40px 0 60px;
  }
  .footer__inner {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer__nav {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer__nav--info {
    width: 100%;
  }
  .footer__nav--list {
    width: 100%;
    margin: 0 auto;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
  .footer__nav--item {
    width: 45%;
    text-align: center;
  }
  .footer__bottom {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
  }
  .footer__sns {
    width: 100%;
    margin: 0;
  }
  .footer__sns--item {
    text-align: center;
    margin: 0 auto 10px;
  }
  small {
    margin: 0 auto 10px;
    text-align: center;
    display: block;
    font-size: 10px;
  }
}

#page-top {
  position: fixed;
  bottom: 20px;
  right: 20px;
  font-size: 14px;
  line-height: 1;
  z-index: 99;
}

#page-top a {
  background: #fff;
  text-decoration: none;
  color: #fff;
  width: 40px;
  padding: 13px 5px 13px 8px;
  height: 40px;
  text-align: center;
  display: block;
  border-radius: 90px;
  opacity: 0.9;
  -webkit-transition: all .3s ease;
  transition: all .3s ease;
  border: 1px solid #4A5764;
}

@media (max-width: 768px) {
  #page-top {
    bottom: 80px;
  }
}

.fas {
  color: #4A5764;
}

.fa-brands, .fab {
  font-size: 20px;
}
/*# sourceMappingURL=style.css.map */