@charset "UTF-8";
/* ---------------------------------
ヘッダー
--------------------------------- */
.header {
  width: 100%;
  height: 95px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  padding: 0 25px;
  align-items: center;
  background-color: #fff;
  position: fixed;
  z-index: 999;
  /*----------------------------
  * ハンバーガーメニュー
  *----------------------------*/
  /* Hamburger menu button */
  /* Hamburger menbu text */
  /* Hamburger Menu Animation Start */
}
@media (width <= 768px) {
  .header {
    margin: 0;
  }
}
.header .nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.header .logo {
  padding-right: 80px;
  position: relative;
}
@media (width <= 400px) {
  .header .logo {
    padding-right: 0;
  }
}
.header .logo::after {
  content: "";
  display: inline-block;
  width: 0.5px;
  height: 60px;
  background-color: #707070;
  position: absolute;
  top: 4px;
  right: 40px;
}
@media (width <= 1120px) {
  .header .logo::after {
    display: none;
  }
}
.header .logo-img {
  width: 135px;
}
.header .list {
  display: flex;
  height: 95px;
  align-items: center;
}
.header .list .item {
  line-height: 80px;
  text-align: center;
  position: relative;
  padding-right: 80px;
  font-size: 17px;
}
@media (width <= 1300px) {
  .header .list .item {
    padding-right: 75px;
  }
}
.header .list .item:hover {
  opacity: 0.6;
}
.header .list .item::after {
  content: "";
  display: inline-block;
  width: 0.5px;
  height: 60px;
  background-color: #707070;
  position: absolute;
  top: 9px;
  right: 40px;
}
@media (width <= 1300px) {
  .header .list .item::after {
    right: 37px;
  }
}
@media (width <= 1120px) {
  .header .list .item {
    display: none;
  }
}
.header .list .br {
  display: inline-block;
  margin: 0;
  line-height: 1.4;
}
@media (width <= 1120px) {
  .header .list .br {
    display: none;
  }
}
.header .list .br::after {
  content: "";
  display: inline-block;
  width: 0.5px;
  height: 60px;
  background-color: #707070;
  position: absolute;
  top: -6px;
  right: 40px;
}
.header-cta {
  color: #707070;
  font-size: 18px;
  background-color: #F0EEE2;
  border: 1px solid #F0EEE2;
  padding: 20px 38px;
}
@media (width <= 1120px) {
  .header-cta {
    display: none;
  }
}
.header-cta:hover {
  opacity: 0.7;
}
.header .hamburger {
  position: absolute;
  width: 100%;
  height: auto;
  top: 40px;
  left: 0;
  margin-top: 52px;
  clear: both;
  background: rgba(255, 255, 255, 0.9137254902);
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
  transform: scale(1, 0);
  transform-origin: top;
}
.header .hamburger-btn:checked ~ .hamburger {
  transform: scale(1, 1);
  transform-origin: top;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
.header .hamburger a {
  text-decoration: none;
  letter-spacing: 2px;
  font-size: 16px;
  text-transform: capitalize;
  color: #484848;
  transition: 0.5s;
}
.header .hamburger a:hover {
  color: #BABABA;
}
.header .hamburger li {
  border-top: 1px solid #707070;
  padding: 15px 0;
  width: 80%;
  margin: 0 auto;
  text-align: center;
  transition: 0.5s;
  opacity: 0.6;
}
.header .hamburger li:last-child {
  border-bottom: 1px solid #707070;
}
.header .hamburger-btn:checked ~ .hamburger a,
.header .hamburger-btn:checked ~ .hamburger li {
  opacity: 1;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.2s;
}
.header .hamburger-btn {
  display: none;
}
.header .hamburger-icon {
  display: none;
}
@media (width <= 1120px) {
  .header .hamburger-icon {
    display: inline-block;
    position: relative;
    cursor: pointer;
    padding: 24px 14px;
  }
}
@media (width <= 400px) {
  .header .hamburger-icon {
    padding: 0;
  }
}
.header .navicon {
  background: #707070;
  display: block;
  height: 3px;
  width: 30px;
  position: relative;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
.header .navicon:before,
.header .navicon:after {
  content: "";
  display: block;
  height: 90%;
  width: 100%;
  position: absolute;
  background: #707070;
  transition: 0.3192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}
.header .navicon:before {
  top: 9px;
}
.header .navicon:after {
  bottom: 9px;
}
.header .hamburger-btn:checked ~ .hamburger-icon .navicon:before {
  transform: rotate(-45deg);
}
.header .hamburger-btn:checked ~ .hamburger-icon .navicon:after {
  transform: rotate(45deg);
}
.header .hamburger-btn:checked ~ .hamburger-icon:not(.steps) .navicon:before {
  top: 0;
}
.header .hamburger-btn:checked ~ .hamburger-icon:not(.steps) .navicon:after {
  bottom: 0;
}
.header .hamburger-btn:checked ~ .hamburger-icon .navicon {
  background: rgba(0, 0, 0, 0);
  transition: 0.2192s cubic-bezier(0.04, 0.04, 0.12, 0.96) 0.1008s;
}

/* ---------------------------------
共通
--------------------------------- */
html {
  scroll-behavior: smooth;
}
@media (width <= 768px) {
  html {
    scroll-behavior: unset;
  }
}

body {
  font-family: "Hiragino Mincho ProN", serif;
  margin: 0 auto;
  width: 100%;
  color: #484848;
}

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

li {
  list-style: none;
}

.title {
  text-align: center;
  font-size: 32px;
  padding-bottom: 30px;
  letter-spacing: 5.75px;
}
@media (width <= 768px) {
  .title {
    font-size: 23px;
  }
}
@media (width <= 400px) {
  .title {
    font-size: 19px;
    letter-spacing: 4.5px;
  }
}

.line {
  width: 85px;
  margin: 0 auto;
}

/* ---------------------------------
サイドバー
ページ内リンク
--------------------------------- */
.wrap {
  display: flex;
}
@media (width <= 768px) {
  .wrap {
    display: block;
  }
}

.sidebar {
  width: 16%;
}
@media (width <= 1120px) {
  .sidebar {
    width: 22%;
  }
}
@media (width <= 768px) {
  .sidebar {
    display: none;
  }
}
.sidebar-list {
  position: relative;
  width: 180px;
}
.sidebar-list::before {
  content: "";
  width: 2.5px;
  height: 90px;
  background-color: #C9C9C9;
  position: absolute;
  top: 4px;
  left: 0px;
}
.sidebar-list a {
  display: block;
  text-decoration: none;
  color: #666;
  padding: 30px;
  transition: all 0.3s;
}
.sidebar .current::after {
  content: "";
  width: 2.5px;
  height: 90px;
  background-color: #6c1111;
  position: absolute;
  top: 4px;
  left: 0px;
}
.sidebar-normal {
  position: relative;
}
.sidebar-normal ::before {
  content: "";
  width: 2.5px;
  height: 180px;
  background-color: #C9C9C9;
  position: absolute;
  left: 0px;
}
.sidebar-normal a {
  display: block;
  text-decoration: none;
  color: #666;
  padding: 50px 30px 130px;
  transition: all 0.3s;
}
.sidebar-normal .current::after {
  content: "";
  width: 2.5px;
  height: 180px;
  background-color: #6c1111;
  position: absolute;
  left: 0px;
}

/*スティッキーアイテム*/
.sidebar-sticky-info {
  margin-bottom: 50px;
  position: sticky;
  position: -webkit-sticky;
  top: 50px;
}

.g-nav {
  position: fixed;
  top: 160px;
  left: 30px;
  padding: 20px;
}
@media (width <= 1120px) {
  .g-nav {
    left: 15px;
    padding: 10px;
  }
}

/* ---------------------------------
md以下のページ内リンク
--------------------------------- */
.page-link {
  display: none;
}
@media (width <= 768px) {
  .page-link {
    display: block;
    justify-content: center;
    padding-top: 130px;
  }
}
.page-link li {
  list-style: none;
  border-bottom: solid 1.5px #BABABA;
  width: 280px;
  margin: 0 auto;
  padding: 12px 0;
  text-align: left;
  position: relative;
}
.page-link li a {
  color: #707070;
  padding: 0 30px;
  text-decoration: none;
}
.page-link li a::after {
  border-right: solid 2px #707070;
  border-top: solid 2px #707070;
  content: "";
  display: inline-block;
  width: 9px;
  height: 9px;
  position: absolute;
  right: 30px;
  top: 35%;
  transform: rotate(135deg);
  transition: transform 0.3s ease-in-out, top 0.3s ease-in-out;
}

/* ---------------------------------
aboutページ上部説明
--------------------------------- */
.about-main {
  background-image: url(../img/washitexture09_TP_V.jpg);
  background-size: cover;
  background-position: center;
  height: auto;
  width: 100%;
  /* ---------------------------------
  3つのこだわり
  --------------------------------- */
  /* ---------------------------------
  営業ポリシー
  --------------------------------- */
}
.about-main .description {
  display: flex;
  padding-top: 65px;
  padding-left: 20px;
  padding-right: 50px;
  width: 100%;
  margin: 0 auto;
}
@media (width <= 1120px) {
  .about-main .description {
    display: block;
    margin: 0;
  }
}
@media (width <= 768px) {
  .about-main .description {
    padding: 0 30px;
  }
}
.about-main .description-image {
  width: 420px;
  height: 290px;
  margin-right: 25px;
}
@media (width <= 1120px) {
  .about-main .description-image {
    display: block;
    margin: 0 auto;
  }
}
@media (width <= 400px) {
  .about-main .description-image {
    width: 300px;
    height: 220px;
  }
}
.about-main .description-item {
  line-height: 2;
  padding: 7px 0;
}
.about-main .description-heading {
  padding-bottom: 15px;
  letter-spacing: 3.33px;
}
@media (width <= 1120px) {
  .about-main .description-heading {
    text-align: center;
  }
}
@media (width <= 400px) {
  .about-main .description-heading {
    letter-spacing: 2px;
  }
}
@media (width <= 400px) {
  .about-main .description-heading br {
    display: none;
  }
}
.about-main .description-text {
  letter-spacing: 2.65px;
}
@media (width <= 400px) {
  .about-main .description-text {
    letter-spacing: 1.8px;
  }
}
.about-main .main-contents {
  width: 84%;
  padding-top: 100px;
}
@media (width <= 1120px) {
  .about-main .main-contents {
    width: 78%;
  }
}
@media (width <= 768px) {
  .about-main .main-contents {
    width: 100%;
    padding-top: 50px;
  }
}
.about-main .summary {
  height: auto;
  padding-top: 100px;
  padding-bottom: 30px;
}
.about-main .summary-title-line {
  border-bottom: 3px solid #6D2C17;
}
.about-main .summary-item {
  width: 94%;
  margin: 0 auto;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: space-around;
}
@media (width <= 1120px) {
  .about-main .summary-item {
    width: 98%;
  }
}
@media (width <= 768px) {
  .about-main .summary-item {
    display: block;
  }
}
.about-main .summary-box {
  width: 30%;
  height: auto;
  margin: 70px auto;
  background-color: #FFFFFF;
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1607843137);
}
@media (width <= 1120px) {
  .about-main .summary-box {
    width: 32%;
  }
}
@media (width <= 768px) {
  .about-main .summary-box {
    width: 80%;
    margin: 30px auto;
  }
}
@media (width <= 400px) {
  .about-main .summary-box {
    width: 86%;
  }
}
.about-main .summary-box-img {
  width: 100%;
}
.about-main .summary-box-text {
  padding: 30px 20px;
}
@media (width <= 400px) {
  .about-main .summary-box-text {
    padding: 20px 8px;
  }
}
.about-main .summary-box-name {
  font-size: 22px;
  padding-bottom: 25px;
}
@media (width <= 1120px) {
  .about-main .summary-box-name {
    font-size: 18px;
  }
}
.about-main .summary-box-description {
  font-size: 16px;
  line-height: 2;
  text-align: left;
  letter-spacing: 1.8px;
}
@media (width <= 1120px) {
  .about-main .summary-box-description {
    font-size: 15px;
    line-height: 1.8;
  }
}
@media (width <= 400px) {
  .about-main .summary-box-description {
    font-size: 16px;
    line-height: 1.6;
    padding-bottom: 10px;
  }
}
.about-main .policy {
  height: auto;
  padding-top: 100px;
  padding-bottom: 20px;
}
.about-main .policy-wrapper {
  box-shadow: 1px 1px 10px rgba(0, 0, 0, 0.1607843137);
  background-color: #FFFFFF;
  width: 91%;
  margin: 0 auto;
  padding: 50px 0;
}
@media (width <= 768px) {
  .about-main .policy-wrapper {
    width: 85%;
  }
}
@media (width <= 400px) {
  .about-main .policy-wrapper {
    padding: 20px 0;
  }
}
.about-main .policy-title {
  text-align: center;
  padding-bottom: 60px;
}
@media (width <= 400px) {
  .about-main .policy-title {
    padding-bottom: 40px;
  }
}
.about-main .policy-content {
  display: flex;
  width: 55%;
  margin: 0 auto;
  justify-content: space-around;
  padding-bottom: 20px;
}
@media (width <= 1120px) {
  .about-main .policy-content {
    width: 70%;
  }
}
@media (width <= 768px) {
  .about-main .policy-content {
    display: block;
  }
}
.about-main .policy-content-text {
  font-size: 21px;
  line-height: 2.1;
}
@media (width <= 1120px) {
  .about-main .policy-content-text {
    font-size: 18px;
  }
}
@media (width <= 400px) {
  .about-main .policy-content-text {
    font-size: 17px;
  }
}

/* ---------------------------------
社会貢献
--------------------------------- */
.social {
  width: 91%;
  margin: 30px auto;
  height: auto;
  padding-top: 100px;
}
.social-text {
  margin: 60px auto;
  width: 80%;
}
@media (width <= 400px) {
  .social-text {
    width: 100%;
  }
}
.social-contents {
  padding: 0 20px;
  margin-bottom: 30px;
}
@media (width <= 400px) {
  .social-contents {
    padding: 0 10px;
  }
}
.social-contents-title {
  font-size: 21px;
}
@media (width <= 400px) {
  .social-contents-title {
    text-align: center;
    font-size: 19px;
    padding: 0px;
    padding-bottom: 10px;
  }
}
.social-box {
  display: flex;
  align-items: start;
}
@media (width <= 400px) {
  .social-box {
    display: block;
    text-align: center;
  }
}
.social-box-image {
  width: 160px;
}
@media (width <= 400px) {
  .social-box-image {
    width: 280px;
  }
}
.social-box-text {
  text-align: left;
  line-height: 35px;
  padding: 0 12px;
}
@media (width <= 1120px) {
  .social-box-text {
    font-size: 15px;
    line-height: 30px;
    padding: 0 8px;
  }
}
@media (width <= 768px) {
  .social-box-text {
    line-height: 26px;
  }
}
@media (width <= 400px) {
  .social-box-text {
    padding-top: 8px;
    letter-spacing: 1.5px;
  }
}

/* ---------------------------------
蒼海宿について
--------------------------------- */
.points {
  margin: 0 auto;
  width: 91%;
  height: auto;
  padding-top: 100px;
  padding-bottom: 110px;
}
.points-text {
  width: 98%;
  line-height: 35px;
  margin-bottom: 30px;
}
@media (width <= 400px) {
  .points-text {
    line-height: 30px;
    font-size: 15px;
  }
}
.points-image {
  display: none;
  width: 98%;
}

/* ---------------------------------

惣菜一覧ページ

--------------------------------- */
/* ---------------------------------
お惣菜一覧
--------------------------------- */
.menu-main {
  /* ---------------------------------
  メニュー
  --------------------------------- */
}
.menu-main .menu-all {
  margin-top: 70px;
  padding-bottom: 50px;
  width: 100%;
}
@media (width <= 768px) {
  .menu-main .menu-all {
    padding-top: 0px;
  }
}
@media (width <= 400px) {
  .menu-main .menu-all {
    margin-top: 0;
  }
}
.menu-main .menu-all-text {
  text-align: center;
  margin: 50px auto;
  letter-spacing: 2.65px;
}
@media (width <= 1120px) {
  .menu-main .menu-all-text {
    text-align: left;
    margin: 50px 20px;
  }
}
@media (width <= 1120px) {
  .menu-main .menu-all-text br {
    display: none;
  }
}
.menu-main .menu-all .box {
  display: flex;
  align-items: center;
  width: 94%;
  margin: 10px auto;
  justify-content: space-around;
}
.menu-main .menu-all .box-name {
  border: 1px solid #484848;
  background: #484848;
  width: 22%;
  text-align: center;
  color: #FFFFFF;
  padding: 6px 0;
}
@media (width <= 1120px) {
  .menu-main .menu-all .box-name {
    font-size: 14px;
  }
}
.menu-main .menu-all .box-text {
  border: 1px solid #EDEDED;
  background: #EDEDED;
  width: 74%;
  text-align: left;
  color: #484848;
  padding: 6px 15px;
}
@media (width <= 1120px) {
  .menu-main .menu-all .box-text {
    font-size: 14px;
    padding: 5px 10px;
  }
}
.menu-main .normal {
  width: 100%;
  height: auto;
}
.menu-main .normal:last-child {
  padding-bottom: 120px;
}
.menu-main .normal-title {
  padding-top: 70px;
}
.menu-main .normal-text {
  margin: 0 auto;
  letter-spacing: 2.65px;
  text-align: center;
}
@media (width <= 768px) {
  .menu-main .normal-text {
    margin: 0 20px;
  }
}
.menu-main .normal .group {
  display: flex;
  flex-wrap: wrap;
  margin-left: -5px;
  margin-right: -5px;
}
@media (width <= 768px) {
  .menu-main .normal .group {
    margin: 0 auto;
  }
}
.menu-main .normal .group .box {
  width: 24%;
  padding: 40px 10px 0;
  width: 280px;
  margin-left: 25px;
  margin-bottom: 20px;
}
@media (width <= 1300px) {
  .menu-main .normal .group .box {
    width: 32.3333333333%;
    margin-left: 0;
    margin-bottom: 40px;
  }
}
@media (width <= 768px) {
  .menu-main .normal .group .box {
    width: 48.5%;
    padding-left: 30px;
  }
}
@media (width <= 400px) {
  .menu-main .normal .group .box {
    width: 96%;
    margin-bottom: 15px;
  }
}
.menu-main .normal .group .box-image {
  width: 265px;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  margin-bottom: 3px;
}
@media (width <= 1300px) {
  .menu-main .normal .group .box-image {
    width: 95%;
    height: 55%;
  }
}
@media (width <= 1120px) {
  .menu-main .normal .group .box-image {
    width: 98%;
    height: 52%;
  }
}
@media (width <= 400px) {
  .menu-main .normal .group .box-image {
    height: 57%;
  }
}
.menu-main .normal .group .box-tag {
  border: 1px solid #76260E;
  background: #76260E;
  color: #FFFFFF;
  text-align: center;
  padding: 1px 15px;
  font-size: 14px;
  display: inline-flex;
  letter-spacing: 2px;
}
.menu-main .normal .group .box-name {
  font-size: 19px;
  letter-spacing: 2.5px;
  padding: 7px 0;
}
@media (width <= 1120px) {
  .menu-main .normal .group .box-name {
    font-size: 17px;
  }
}
.menu-main .normal .group .box-text {
  font-size: 14px;
  line-height: 28px;
}
.menu-main .normal .group .box-price {
  font-size: 20px;
  text-align: right;
  padding-top: 10px;
  padding-right: 20px;
}
@media (width <= 1120px) {
  .menu-main .normal .group .box-price {
    font-size: 17px;
  }
}

/* ---------------------------------

ご予約フォーム

--------------------------------- */
/* ---------------------------------
予約CSS
--------------------------------- */
.cta {
  background-image: url(../img/washitexture09_TP_V.jpg);
  background-size: cover;
  background-position: center;
  height: auto;
  width: 100%;
  padding-top: 180px;
  color: #707070;
  /* ---------------------------------
  予約フォーム
  --------------------------------- */
}
.cta-title {
  color: #484848;
}
.cta-title-line {
  border-bottom: 3px solid #6D2C17;
}
.cta-description {
  width: 100%;
  margin: 0 auto;
  margin-top: 50px;
  text-align: center;
  font-size: 18px;
}
@media (width <= 400px) {
  .cta-description {
    width: 90%;
    font-size: 17px;
    padding: 20px 0;
  }
}
@media (width <= 400px) {
  .cta-description br {
    display: none;
  }
}
.cta-detail {
  width: 52%;
  margin: 20px auto;
}
@media (width <= 768px) {
  .cta-detail {
    width: 80%;
  }
}
@media (width <= 400px) {
  .cta-detail {
    width: 90%;
  }
}
.cta-detail p {
  line-height: 35px;
}
@media (width <= 768px) {
  .cta-detail p {
    line-height: 30px;
  }
}
@media (width <= 400px) {
  .cta-detail p {
    font-size: 15px;
  }
}
.cta-border {
  width: 80%;
  margin: 0 auto;
  border: 1px solid #707070;
  opacity: 0.5;
  margin-top: 50px;
}
.cta-form {
  padding-top: 50px;
}
.cta-reserve {
  width: 52%;
  margin: 0 auto;
  letter-spacing: 3.33px;
}
@media (width <= 768px) {
  .cta-reserve {
    width: 80%;
  }
}
@media (width <= 400px) {
  .cta-reserve {
    width: 90%;
  }
}
.cta-reserve-list {
  margin-bottom: 20px;
}
.cta-reserve-name {
  font-size: 20px;
  font-weight: bold;
  padding-bottom: 8px;
}
@media (width <= 1120px) {
  .cta-reserve-name {
    font-size: 18px;
  }
}
.cta-reserve-name span {
  color: #76260E;
}
.cta-reserve-textbox {
  border: 2px solid #707070;
  opacity: 0.5;
  padding: 10px 16px;
  width: 320px;
  font-size: 20px;
  letter-spacing: 3px;
  background-color: #FFFFFF;
}
@media (width <= 1120px) {
  .cta-reserve-textbox {
    font-size: 18px;
  }
}
.cta-reserve .position {
  position: absolute;
}
@media (width <= 400px) {
  .cta-reserve-date {
    border: 2px solid #707070;
    opacity: 0.5;
    padding: 10px 16px;
    font-size: 20px;
    letter-spacing: 3px;
    background-color: #FFFFFF;
    width: 260px;
    height: 52px;
  }
}
.cta-reserve-checkbox {
  position: relative;
  top: 30px;
  left: -18px;
  padding-bottom: 500px;
  /* チェックボックス */
}
.cta-reserve-checkbox input[type=checkbox] {
  position: relative;
  width: 18px;
  height: 18px;
  margin-right: 6px;
  border: 1px solid #707070;
  vertical-align: -3px;
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.cta-reserve-checkbox input[type=checkbox]:checked {
  border: 1px solid #2F2F2F;
  background: #2F2F2F;
}
.cta-reserve-checkbox input[type=checkbox]:checked:before {
  position: absolute;
  top: 2px;
  left: 5px;
  transform: rotate(50deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  content: "";
}
.cta-reserve .wpcf7-form-control .last {
  margin-bottom: 40px;
}
.cta-reserve-textarea {
  width: 100%;
  font-size: 20px;
  background-color: #FFFFFF;
  border: 2px solid #707070;
  opacity: 0.5;
  padding: 10px 16px;
}
@media (width <= 1120px) {
  .cta-reserve-textarea {
    font-size: 18px;
  }
}
@media (width <= 768px) {
  .cta-reserve-textarea {
    font-size: 16px;
  }
}
@media (width <= 768px) {
  .cta-reserve-textarea {
    font-size: 16px;
  }
}
.cta-reserve-privacy {
  font-size: 20px;
  position: relative;
  top: -2px;
  left: -18px;
}
@media (width <= 1120px) {
  .cta-reserve-privacy {
    font-size: 18px;
  }
}
@media (width <= 768px) {
  .cta-reserve-privacy {
    font-size: 16px;
  }
}
@media (width <= 768px) {
  .cta-reserve-privacy {
    font-size: 16px;
  }
}
.cta-reserve .more {
  color: #76260E;
}
.cta-reserve .border-bottom {
  border-bottom: 1px solid #000;
}
.cta-reserve .submit-box {
  width: 240px;
  margin: 0 auto;
  margin-top: 70px;
  padding-bottom: 0;
}
.cta-reserve-submit {
  background-color: #2F2F2F;
  border: 2px solid #707070;
  width: 240px;
  padding: 15px 0;
  font-size: 20px;
  color: #FFFFFF;
}
@media (width <= 1120px) {
  .cta-reserve-submit {
    font-size: 18px;
  }
}
@media (width <= 768px) {
  .cta-reserve-submit {
    font-size: 16px;
  }
}
.cta-reserve-submit:hover {
  background-color: #707070;
}
.cta span.wpcf7-list-item {
  display: block;
  font-size: 20px;
}
@media (width <= 1120px) {
  .cta span.wpcf7-list-item {
    font-size: 18px;
  }
}
@media (width <= 768px) {
  .cta span.wpcf7-list-item {
    font-size: 16px;
  }
}
.cta .wpcf7-form-control-wrap {
  /* チェックボックス */
}
.cta .wpcf7-form-control-wrap input[type=checkbox] {
  position: relative;
  width: 18px;
  height: 18px;
  border: 1px solid #707070;
  cursor: pointer;
  border-radius: 0%;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  vertical-align: middle;
}
.cta .wpcf7-form-control-wrap input[type=checkbox]:checked {
  border: 1px solid #2F2F2F;
  background: #2F2F2F;
}
.cta .wpcf7-form-control-wrap input[type=checkbox]:checked:before {
  position: absolute;
  top: 2px;
  left: 5px;
  transform: rotate(50deg);
  width: 6px;
  height: 10px;
  border-right: 2px solid #FFFFFF;
  border-bottom: 2px solid #FFFFFF;
  content: "";
}

.wpcf7 form {
  background-image: url(../img/washitexture09_TP_V.jpg);
  background-size: cover;
  background-position: center;
  height: auto;
  width: 100%;
  padding-bottom: 80px;
}

.wpcf7 form.sent .wpcf7-response-output { /* 送信ボタン下完了時 */
  border-color: #BABABA;
}

.wpcf7 form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output { /* 送信ボタン下未入力警告 */
  border-color: #76260E;
}

/* ---------------------------------
固定ページ
--------------------------------- */
.page-main {
  background-image: url(../img/washitexture09_TP_V.jpg);
  background-size: cover;
  background-position: center;
  height: auto;
  width: 100%;
  padding-bottom: 120px;
  color: #707070;
}

/* ---------------------------------
フッター
--------------------------------- */
.footer {
  background-color: #2F2F2F;
  height: auto;
}
.footer-menu {
  width: 100%;
  margin: 0 auto;
  padding-top: 60px;
}
@media (width <= 1120px) {
  .footer-menu {
    text-align: center;
  }
}
.footer-list {
  display: flex;
  align-items: center;
  text-align: center;
  justify-content: center;
  width: 1280px;
  margin: 0 auto;
  margin-bottom: 40px;
}
@media (width <= 1300px) {
  .footer-list {
    width: 100%;
  }
}
@media (width <= 1120px) {
  .footer-list {
    display: block;
    text-align: center;
    width: 100%;
  }
}
.footer-list-item {
  color: #BABABA;
  text-align: center;
  align-items: center;
  justify-content: space-around;
  position: relative;
  line-height: 1.3;
  font-size: 19px;
  padding: 0 50px;
}
@media (width <= 1300px) {
  .footer-list-item {
    padding: 0 20px;
  }
}
@media (width <= 1120px) {
  .footer-list-item {
    line-height: 1.8;
  }
}
@media (width <= 400px) {
  .footer-list-item {
    font-size: 17px;
  }
}
.footer-list-item::after {
  content: "";
  display: block;
  width: 0.5px;
  height: 60px;
  background-color: #BABABA;
  position: absolute;
  top: -16px;
  right: 0%;
}
@media (width <= 1120px) {
  .footer-list-item::after {
    display: none;
  }
}
.footer-list-br {
  display: inline-block;
  margin: 0;
}
.footer-list-br::after {
  content: "";
  display: inline-block;
  width: 0.5px;
  height: 60px;
  background-color: #BABABA;
  position: absolute;
  top: -2px;
  right: 0%;
}
@media (width <= 1120px) {
  .footer-list-br::after {
    display: none;
  }
}
@media (width <= 1120px) {
  .footer-list-br p {
    display: inline-block;
  }
}
.footer-list-last::after {
  display: none;
}
.footer-link {
  color: #FFFFFF;
  font-size: 18px;
  padding-left: 120px;
}
@media (width <= 1120px) {
  .footer-link {
    padding-left: 0;
  }
}
@media (width <= 400px) {
  .footer-link {
    font-size: 16px;
  }
}
.footer-icon {
  width: 45px;
  height: 45px;
  margin-top: 15px;
  margin-left: 115px;
}
@media (width <= 1120px) {
  .footer-icon {
    margin-left: 0;
  }
}
@media (width <= 768px) {
  .footer-icon {
    margin-bottom: 20px;
  }
}
@media (width <= 400px) {
  .footer-icon {
    width: 40px;
    height: 40px;
  }
}
.footer-copyright {
  color: #919191;
  text-align: center;
  padding-top: 70px;
  padding-bottom: 8px;
  font-size: 14px;
}
@media (width <= 768px) {
  .footer-copyright {
    font-size: 12px;
    padding-top: 0px;
  }
}

/* ---------------------------------
共通
--------------------------------- */
body {
  margin: 0 auto;
  width: 100%;
  color: #484848;
}

a {
  text-decoration: none;
}

li {
  list-style: none;
}

.title {
  text-align: center;
  font-size: 28px;
  padding-bottom: 30px;
  letter-spacing: 5.75px;
}
@media (width <= 768px) {
  .title {
    font-size: 25px;
  }
}
@media (width <= 400px) {
  .title {
    font-size: 22px;
  }
}

.line {
  width: 85px;
  margin: 0 auto;
}

/* ---------------------------------
メイン画像
--------------------------------- */
.fv {
  position: relative;
  top: 95px;
  margin: 0;
  padding: 0;
}
.fv .xo-slider .swiper-slide > img {
  -o-object-fit: cover;
     object-fit: cover;
  min-height: 500px;
  -o-object-position: 80% 50%;
     object-position: 80% 50%;
}
@media (width <= 768px) {
  .fv .xo-slider .swiper-slide > img {
    min-height: 400px;
    -o-object-position: 85% 50%;
       object-position: 85% 50%;
  }
}
@media (width <= 400px) {
  .fv .xo-slider .swiper-slide > img {
    min-height: 300px;
  }
}
.fv .copy-boxes__item {
  width: 600px;
  height: 64px;
  position: absolute;
  top: 75px;
  left: 110px;
  text-align: left;
  background: #000;
}
@media (width <= 1120px) {
  .fv .copy-boxes__item {
    top: 60px;
    left: 80px;
  }
}
@media (width <= 768px) {
  .fv .copy-boxes__item {
    width: 390px;
    height: 41px;
    top: 30px;
    left: 10px;
  }
}
@media (width <= 400px) {
  .fv .copy-boxes__item {
    width: 360px;
  }
}
.fv .copy-boxes__item-text {
  font-size: 31px;
  font-weight: 400;
  color: #FFFFFF;
  letter-spacing: 2.2px;
  margin: 0 auto;
  text-align: center;
  padding: 10px;
}
@media (width <= 768px) {
  .fv .copy-boxes__item-text {
    font-size: 20px;
    padding: 6px;
  }
}
@media (width <= 400px) {
  .fv .copy-boxes__item-text {
    font-size: 18px;
    padding: 10px 6px;
  }
}
.fv .copy-boxes__item-button {
  color: #000;
  letter-spacing: 1.8px;
  font-size: 27px;
  font-weight: 700;
  padding: 12px 0 0 15px;
}
@media (width <= 768px) {
  .fv .copy-boxes__item-button {
    font-size: 21px;
    padding: 10px 0;
  }
}
@media (width <= 400px) {
  .fv .copy-boxes__item-button {
    font-size: 19px;
    padding: 10px 0;
  }
}
.fv .copy-boxes__item2 {
  width: 270px;
  top: 160px;
}
@media (width <= 1120px) {
  .fv .copy-boxes__item2 {
    top: 140px;
  }
}
@media (width <= 768px) {
  .fv .copy-boxes__item2 {
    width: 185px;
    top: 80px;
  }
}
@media (width <= 400px) {
  .fv .copy-boxes__item2 {
    width: 170px;
  }
}
.fv .copy-boxes__item3 {
  width: 510px;
  height: 60px;
  background: #FFFFFF;
  top: 400px;
}
.fv .copy-boxes__item3:hover {
  opacity: 0.7;
}
@media (width <= 1300px) {
  .fv .copy-boxes__item3 {
    top: 350px;
  }
}
@media (width <= 768px) {
  .fv .copy-boxes__item3 {
    width: 400px;
    height: 46px;
    top: 300px;
  }
}
@media (width <= 400px) {
  .fv .copy-boxes__item3 {
    width: 370px;
    height: 42px;
    top: 215px;
  }
}

/* ---------------------------------
about
--------------------------------- */
.about {
  background-image: url(../img/washitexture09_TP_V.jpg);
  background-size: cover;
  background-position: center;
  height: auto;
  width: 100%;
  padding: 100px 0;
}
.about-video {
  margin-bottom: 40px;
  width: 620px;
  height: 370px;
}
@media (width <= 1120px) {
  .about-video {
    width: 530px;
    height: 310px;
  }
}
@media (width <= 768px) {
  .about-video {
    margin-bottom: 25px;
    width: 90%;
    height: 95%;
  }
}
.about-item {
  margin: 0 auto;
  text-align: center;
  padding-top: 80px;
  color: #484848;
  line-height: 2.4;
}
@media (width <= 400px) {
  .about-item {
    line-height: 2;
    padding: 0 10px;
    padding-top: 80px;
  }
}
.about-text {
  padding-bottom: 50px;
  font-size: 22px;
  letter-spacing: 3.45px;
}
@media (width <= 768px) {
  .about-text {
    font-size: 19px;
    letter-spacing: 2.6px;
  }
}
@media (width <= 400px) {
  .about-text {
    font-size: 17px;
    letter-spacing: 2px;
  }
}
.about-button {
  border: 1px solid #707070;
  color: #707070;
  padding: 14px 40px;
  margin-bottom: 0px;
}
@media (width <= 400px) {
  .about-button {
    padding: 14px 30px;
  }
}
.about-button:hover {
  opacity: 0.7;
}

/* ---------------------------------
定番メニュー
--------------------------------- */
.menu {
  background-image: linear-gradient(rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.4)), url(../img/top_bg.jpg);
  background-size: cover;
  background-position: center;
  height: auto;
  width: 100%;
  padding-top: 90px;
  padding-bottom: 100px;
}
.menu-title {
  color: #FFFFFF;
}
.menu-title-line {
  border-bottom: 3px solid #FFFFFF;
}
.menu-item {
  width: 62%;
  margin: 0 auto;
  text-align: center;
  display: flex;
}
@media (width <= 1120px) {
  .menu-item {
    width: 90%;
  }
}
@media (width <= 768px) {
  .menu-item {
    display: block;
  }
}
.menu-box {
  width: 38%;
  height: auto;
  margin: 60px auto;
  background-color: #FFFFFF;
}
@media (width <= 768px) {
  .menu-box {
    width: 90%;
  }
}
@media (width <= 400px) {
  .menu-box {
    width: 100%;
  }
}
.menu-box-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
  height: 50%;
}
.menu-box-text {
  padding: 30px 25px;
}
@media (width <= 400px) {
  .menu-box-text {
    padding: 20px 10px;
  }
}
.menu-box-name {
  font-size: 22px;
  padding-bottom: 12px;
}
@media (width <= 400px) {
  .menu-box-name {
    font-size: 17px;
  }
}
.menu-box-description {
  font-size: 18px;
  line-height: 2.5;
}
@media (width <= 400px) {
  .menu-box-description {
    font-size: 16px;
    line-height: 1.6;
    padding-bottom: 10px;
  }
}
.menu-box-price {
  font-size: 18px;
  position: relative;
  bottom: -35px;
}
@media (width <= 400px) {
  .menu-box-price {
    font-size: 16px;
  }
}
.menu-button {
  border: 1px solid #FFFFFF;
  color: #FFFFFF;
  padding: 14px 67px;
  display: flex;
  width: 280px;
  margin: 0 auto;
}
.menu-button:hover {
  opacity: 0.7;
}

/* ---------------------------------
店舗情報・アクセス
--------------------------------- */
.access {
  background-image: url(../img/washitexture09_TP_V.jpg);
  background-size: cover;
  background-position: center;
  height: auto;
  width: 100%;
  padding-top: 90px;
  padding-bottom: 120px;
}
.access-title {
  color: #484848;
}
.access-title-line {
  border-bottom: 3px solid #6D2C17;
  margin-bottom: 80px;
}
.access-box {
  width: 85%;
  margin: 0 auto;
}
@media (width <= 1120px) {
  .access-box {
    width: 90%;
  }
}
.access-box-detail {
  display: flex;
  margin-bottom: 40px;
  justify-content: center;
}
@media (width <= 768px) {
  .access-box-detail {
    display: block;
  }
}
.access-box-img {
  -o-object-fit: cover;
     object-fit: cover;
  width: 650px;
  height: 400px;
  margin-right: 30px;
}
@media (width <= 1120px) {
  .access-box-img {
    width: 56%;
  }
}
@media (width <= 768px) {
  .access-box-img {
    width: 100%;
    margin-bottom: 20px;
  }
}
@media (width <= 400px) {
  .access-box-img {
    height: 50%;
  }
}
.access-box-item {
  width: 40%;
}
@media (width <= 768px) {
  .access-box-item {
    width: 100%;
  }
}
.access-box-name {
  font-weight: 700;
  font-size: 18px;
  padding-bottom: 10px;
}
.access-box-text {
  letter-spacing: 2.2px;
  line-height: 1.8;
  padding-bottom: 40px;
}
@media (width <= 1120px) {
  .access-box-text {
    letter-spacing: 2px;
    line-height: 1.8;
  }
}
.access-box-map {
  width: 100%;
  height: 350px;
  margin: 0 auto;
}
.access-box-button {
  border: 1px solid #F0EEE2;
  background-color: #F0EEE2;
  padding: 30px 30px;
  width: 660px;
  height: 170px;
  margin: 0 auto;
  text-align: center;
  margin-top: 100px;
}
@media (width <= 768px) {
  .access-box-button {
    width: 100%;
  }
}
.access-box-title {
  font-size: 22px;
  padding-bottom: 35px;
}
.access-box-about {
  -webkit-text-decoration: underline solid #484848;
          text-decoration: underline solid #484848;
}
.access-box-about:hover {
  opacity: 0.7;
}/*# sourceMappingURL=style.css.map */