@charset "UTF-8";
html {
  font-size: 62.5%;
  width: 100%;
}

body {
  display: none;
  width: 100%;
  font-size: 1.4rem;
  background-color: #FFFBF6;
  font-family: "Noto Sans JP", "游ゴシック", YuGothic, "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, sans-serif;
  line-height: 1.7;
  color: #483A28;
}
@media screen and (min-width: 768px) {
  body {
    font-size: 1.6rem;
  }
}

a {
  text-decoration: none;
  color: inherit;
  cursor: pointer;
}
a:hover {
  opacity: 0.7;
}

@media screen and (min-width: 1100px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

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

li {
  list-style: none;
}

.l-inner {
  padding-right: 20px;
  padding-left: 20px;
}
@media screen and (min-width: 768px) {
  .l-inner {
    padding-right: 40px;
    padding-left: 40px;
  }
}

.u-flex {
  display: flex;
}

.u-flex_sp {
  display: flex;
}
@media screen and (min-width: 768px) {
  .u-flex_sp {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-flex_md {
    display: flex;
  }
}

@media screen and (min-width: 1100px) {
  .u-flex_pc {
    display: flex;
  }
}

.u-hidden {
  display: none;
}

@media screen and (max-width: 767px) {
  .u-hidden_sp {
    display: none;
  }
}

@media screen and (min-width: 768px) {
  .u-hidden_md {
    display: none;
  }
}

@media screen and (min-width: 1100px) {
  .u-hidden_pc {
    display: none;
  }
}

.u-show_sp {
  display: none;
}
@media screen and (max-width: 767px) {
  .u-show_sp {
    display: block;
  }
}

.u-show_pc {
  display: none;
}
@media screen and (min-width: 1100px) {
  .u-show_pc {
    display: block;
  }
}

.c-btn {
  display: inline-block;
  padding: 10px 30px;
  color: #fff;
  background-color: #3360A2;
}

.c-btn-nav__wrapper {
  height: 40px;
}

.c-btn__nav {
  padding: 3px 20px;
  margin: 3.4px 0;
}

.c-btn_viewMore__wrapper {
  text-align: right;
  display: block;
  width: 100%;
  margin-top: 40px;
}
@media screen and (max-width: 428px) {
  .c-btn_viewMore__wrapper {
    margin-top: 20px;
  }
}

.c-btn_viewMore {
  display: inline-block;
  color: #483A28;
  font-size: 1.2rem;
  background-color: inherit;
  position: relative;
  padding: 0 65px 0 0;
  white-space: nowrap;
}
.c-btn_viewMore::before {
  content: "";
  background-color: #483A28;
  width: 14px;
  height: 1px;
  position: absolute;
  top: 6px;
  right: -1px;
  transform: rotate(30deg);
}
.c-btn_viewMore::after {
  content: "";
  background-color: #483A28;
  width: 50px;
  height: 1px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 0;
}

.c-btn-viewMore_white {
  color: #fff;
}
.c-btn-viewMore_white::before {
  background-color: #fff;
}
.c-btn-viewMore_white::after {
  background-color: #fff;
}

.btnshine {
  position: relative;
  overflow: hidden;
}
.btnshine::before {
  content: "";
  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.3) 100%);
  transform: skewX(-25deg);
  opacity: 0;
}
.btnshine:hover {
  background-color: #771E1E;
  background-color: #00B2C6;
  opacity: 0.9;
}
.btnshine:hover::before {
  opacity: 0.7;
}

.btnshine:hover::before {
  -webkit-animation: shine 0.7s;
          animation: shine 0.7s;
}

@-webkit-keyframes shine {
  100% {
    left: 125%;
  }
}

@keyframes shine {
  100% {
    left: 125%;
  }
}
.c-title {
  font-size: 2rem;
  color: #97664C;
  text-align: center;
  padding-top: 50px;
  font-weight: bold;
  white-space: nowrap;
  position: relative;
}
@media screen and (min-width: 768px) {
  .c-title {
    font-size: 2.6rem;
    padding-top: 60px;
  }
}

.c-bg-title {
  font-size: 3.6rem;
  color: #D8CBCB;
  font-weight: normal;
  opacity: 0.4;
  position: absolute;
  top: 5px;
  left: 40%;
  transform: translateX(-50%);
  z-index: -1;
  font-family: "Tilt Warp", cursive, sans-serif;
}
@media screen and (min-width: 768px) {
  .c-bg-title {
    font-size: 6rem;
  }
}

.c-bg-title__access {
  color: #fff;
  opacity: 0.7;
}

.c-bg-title_page {
  left: 50%;
  transform: translateX(10%);
  font-family: cursive, sans-serif;
  top: 15px;
}
@media screen and (min-width: 768px) {
  .c-bg-title_page {
    top: -10px;
  }
}

.c-bg-title_page-women {
  left: 50%;
  transform: translateX(-15%);
  font-family: cursive, sans-serif;
}
@media screen and (min-width: 768px) {
  .c-bg-title_page-women {
    top: -20px;
  }
}

.breadcrumbs {
  margin: 16px 0;
}
@media screen and (min-width: 768px) {
  .breadcrumbs {
    margin: 30px 0;
  }
}

@media screen and (min-width: 1100px) {
  .l-sidebar {
    flex: 0 0 300px;
    position: -webkit-sticky;
    position: sticky;
    top: 0;
    left: 0;
    width: 300px;
    height: 100vh;
  }
}

.l-inner_max {
  width: 100%;
  max-width: 1366px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 40px;
}
@media screen and (min-width: 1100px) {
  .l-inner_max {
    margin-top: 0;
  }
}

.l-main__wrapper {
  width: 100%;
  max-width: 100%;
}
@media screen and (min-width: 1100px) {
  .l-main__wrapper {
    width: calc(100% - 300px);
  }
}

.l-introduce {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .l-introduce {
    margin-top: 140px;
  }
}

.l-home-news {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .l-home-news {
    margin-top: 140px;
  }
}

.l-home-news__inner {
  max-width: 770px;
  margin-right: auto;
  margin-left: auto;
}

.l-home-menu {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .l-home-menu {
    margin-top: 160px;
  }
}

.l-access {
  margin-top: 80px;
}
@media screen and (min-width: 768px) {
  .l-access {
    margin-top: 160px;
  }
}

#menu {
  background-image: url(../images/leaf.jpg);
}

.l-viewport {
  background-size: cover;
  background-position: center center;
  height: 250px;
  position: relative;
}

.bg-dark {
  background: rgba(0, 0, 0, 0.25);
  width: 100%;
  height: 250px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
}

.l-viewport__titles {
  color: #fff;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-weight: bold;
  z-index: 3;
  left: 20%;
}
@media screen and (max-width: 428px) {
  .l-viewport__titles {
    left: 16px;
  }
}
.l-viewport__titles div {
  font-size: 4rem;
  font-family: "Tilt Warp", cursive, sans-serif;
}
@media screen and (min-width: 768px) {
  .l-viewport__titles div {
    font-size: 5rem;
  }
}
.l-viewport__titles p {
  font-size: 2rem;
}
@media screen and (min-width: 768px) {
  .l-viewport__titles p {
    font-size: 2.6rem;
  }
}

.l-page-section__top {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .l-page-section__top {
    margin-top: 100px;
  }
}

.l-page-section__no-top {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .l-page-section__no-top {
    margin-top: 80px;
  }
}

.l-header {
  background-color: #2b2318;
  color: #fff;
  height: 40px;
  width: 100%;
}

.l-header_position {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 20;
}

.p-header {
  justify-content: space-between;
  align-items: center;
}

.header__logo {
  font-size: 1.8rem;
  font-weight: bold;
}

.p-header-nav__lists {
  justify-content: space-between;
  align-items: center;
}
.p-header-nav__lists li {
  font-size: 1.4rem;
}
.p-header-nav__lists li:not(:last-of-type) {
  margin-right: 1rem;
}
.p-header-nav__lists li a {
  padding: 8px;
}
.p-header-nav__lists li a:hover {
  background-color: #775454;
  opacity: 1;
}

.openbtn {
  position: relative;
  cursor: pointer;
  width: 40px;
  height: 40px;
  z-index: 999;
}

/*ボタン内側*/
.openbtn span {
  display: inline-block;
  transition: all 0.3s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 2px;
  background: #fff;
  width: 45%;
}

.openbtn span:nth-of-type(1) {
  top: 13px;
}

.openbtn span:nth-of-type(2) {
  top: 19px;
}

.openbtn span:nth-of-type(3) {
  top: 25px;
}

.openbtn.js-active span:nth-of-type(1) {
  top: 14px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.js-active span:nth-of-type(2) {
  opacity: 0;
}

.openbtn.js-active span:nth-of-type(3) {
  top: 26px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.bg-drawer {
  height: 100vh;
  position: fixed;
  top: 0;
  right: -105%;
  z-index: 39;
  opacity: 0;
}
.bg-drawer.js-active {
  opacity: 1;
  right: 0;
}

.bg-drawer_red {
  background-color: #E14040;
  z-index: 37;
  width: 100%;
  transition: right 0.1s;
}

.bg-drawer_white {
  background-color: #fff;
  margin-left: 30px;
  z-index: 38;
  width: 95%;
  transition: right 0.3s;
}

.bg-drawer_blue {
  background-color: #164C9C;
  margin-left: 30px;
  width: 90%;
  transition: right 0.5s;
}

.p-drawer {
  background-color: #2b2318;
  width: 500px;
  height: 100vh;
  max-width: 100%;
  padding: 0 20px;
  color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  z-index: 40;
  opacity: 0;
  right: -105%;
  transition: all 1s;
}
@media screen and (max-width: 767px) {
  .p-drawer {
    width: 100%;
  }
}
.p-drawer.js-active {
  opacity: 1;
  right: 0;
}

.p-drawer__contents {
  max-width: -webkit-fit-content;
  max-width: -moz-fit-content;
  max-width: fit-content;
  height: inherit;
  margin: 0 auto;
}

.p-drawer__logo {
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 40px;
}

.p-drawer__nav {
  margin-top: 40px;
  margin-left: 15px;
  font-weight: bold;
  font-style: italic;
}

.p-drawer-nav__lists li a {
  font-size: 1.6rem;
  padding: 10px;
  display: inline-block;
  width: 100%;
}

.c-btn__drawer_wrapper {
  margin-top: 10px;
  margin-left: 10px;
}
.c-btn__drawer_wrapper a {
  font-weight: bold;
  font-size: 1.6rem;
}

.p-drawer__tel {
  font-size: 2rem;
  font-weight: bold;
  margin-top: 20px;
}

.fa-phone:before {
  margin-right: 5px;
}

.p-sidebar__logo {
  color: #E14040;
  font-family: "Tilt Warp", cursive, sans-serif;
  font-style: italic;
  font-size: 3.8rem;
  transform: rotate(-10deg);
  width: -webkit-min-content;
  width: -moz-min-content;
  width: min-content;
  line-height: 1.4;
  margin: 0 auto;
}

.p-sidebar__nav {
  margin-top: 30px;
  font-size: 2rem;
  font-style: italic;
  max-width: 180px;
  margin-right: auto;
  margin-left: auto;
}

.p-sidebar-nav__lists li a {
  display: inline-block;
  padding: 5px;
  position: relative;
}
.p-sidebar-nav__lists li a::after {
  content: "";
  background-color: #53382A;
  width: 0%;
  height: 1px;
  position: absolute;
  bottom: 5px;
  left: 0;
  transition: all 0.4s;
  opacity: 0.5;
}
.p-sidebar-nav__lists li a::after:hover::after {
  width: 100%;
}

.c-btn-sidebar__wrapper {
  margin: 10px 0;
  text-align: center;
}

.c-btn__sidebar {
  padding: 10px 50px;
}

.p-sidebar__tel {
  font-size: 2.8rem;
  font-weight: bold;
  text-align: center;
}

.slider {
  position: relative;
  z-index: 1;
}

.slider-item01 {
  background-image: url(../images/barberShop_sp.jpg);
}
@media screen and (min-width: 768px) {
  .slider-item01 {
    background-image: url(../images/barberShop.jpg);
  }
}

.slider-item02 {
  background-image: url(../images/slide2_cut_sp.jpg);
}
@media screen and (min-width: 768px) {
  .slider-item02 {
    background-image: url(../images/slide2_cut.jpg);
  }
}

.slider-item03 {
  background-image: url(../images/shaving_sp.jpg);
}
@media screen and (min-width: 768px) {
  .slider-item03 {
    background-image: url(../images/slide3_shaving.jpg);
  }
}

.slider-item {
  width: 100%;
  height: 149vw;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}
@media screen and (min-width: 768px) {
  .slider-item {
    height: 58vw;
  }
}
@media screen and (min-width: 1100px) {
  .slider-item {
    height: 42vw;
    max-height: 615px;
  }
}

/*ドットナビゲーションの設定*/
.slick-dots {
  position: relative;
  z-index: 3;
  text-align: center;
  margin: -14px 0 0 0;
}
@media screen and (min-width: 768px) {
  .slick-dots {
    margin: -23px 0 0 0;
  }
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 30px;
  height: 5px;
  display: block;
  background: #EEEEEE;
}
@media screen and (min-width: 768px) {
  .slick-dots button {
    width: 50px;
    height: 7px;
  }
}
.slick-dots button:hover {
  cursor: pointer;
}

.slick-dots .slick-active button {
  background: #E14040;
}

.p-introduce__content {
  margin-top: 40px;
  align-items: center;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-introduce__content {
    margin-top: 50px;
  }
}

.kositu-ok__wrap {
  display: inline-block;
  position: absolute;
  top: -70px;
  right: 10%;
}

.kositu-ok {
  display: inline-block;
  color: #fff;
  font-size: 1.4rem;
  position: relative;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .kositu-ok {
    font-size: 1.8rem;
  }
}
.kositu-ok::before {
  content: "";
  background-color: rgba(225, 64, 64, 0.6);
  border-radius: 50%;
  width: 60px;
  height: 60px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media screen and (min-width: 768px) {
  .kositu-ok::before {
    width: 80px;
    height: 80px;
  }
}

.p-introduce__img {
  padding: 15px 13px;
  background-color: #6D583D;
  border-radius: 5px;
  box-shadow: #fff 0 0 10px inset;
  width: 50%;
  margin: 0 auto;
  margin-bottom: 30px;
}
@media screen and (max-width: 428px) {
  .p-introduce__img {
    width: 100%;
  }
}
@media screen and (min-width: 768px) {
  .p-introduce__img {
    margin-bottom: 0;
    width: 100%;
    flex: 0 0 36.459%;
  }
}

@media screen and (min-width: 768px) {
  .p-introduce__text {
    margin-left: 40px;
  }
}
.p-introduce__text p:not(:first-of-type) {
  margin-top: 10px;
}
@media screen and (min-width: 768px) {
  .p-introduce__text p:not(:first-of-type) {
    margin-top: 30px;
  }
}

.p-home-news__contents {
  margin-top: 50px;
  max-width: 700px;
  margin-right: auto;
  margin-left: auto;
}

.p-home-news__content {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-home-news__content {
    margin-top: 50px;
    align-items: center;
    justify-content: center;
  }
}

.p-home-news__articles {
  max-width: 500px;
  height: 150px;
  overflow-x: hidden;
  overflow-y: scroll;
  padding: 20px;
  background-color: #fff;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .p-home-news__articles {
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (min-width: 768px) {
  .p-home-news__articles {
    max-width: 100%;
    padding: 30px;
    height: 200px;
    margin-right: 30px;
    width: calc(100% - 200px);
  }
}
.p-home-news__articles::-webkit-scrollbar {
  width: 6px;
}
.p-home-news__articles::-webkit-scrollbar-track {
  background-color: #eee;
}
.p-home-news__articles::-webkit-scrollbar-thumb {
  background-color: #97664C;
  border-radius: 5px;
}

.c-home-blog__article {
  position: relative;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .c-home-blog__article {
    margin-top: 0;
    box-shadow: rgba(0, 0, 0, 0.1) 0 0 5px;
    background-color: #fff;
    display: block;
  }
}

.c-blog__article-link {
  padding: 10px 20px;
  border-bottom: 1px solid #D8CBCB;
  align-items: center;
}
@media screen and (max-width: 428px) {
  .c-blog__article-link {
    display: block;
  }
}
.c-blog__article-link:hover .c-blog__imgWrapper > img {
  transform: translate(-50%, -50%) scale(1.05);
}

.p-home-blog__link {
  font-size: 1.4rem;
  margin-top: 40px;
  border-top: 1px solid #D8CBCB;
}
@media screen and (min-width: 768px) {
  .p-home-blog__link {
    margin-top: 0;
    max-width: 200px;
    margin-right: auto;
    margin-left: auto;
    border: none;
    background-color: #fff;
    border-radius: 5px;
  }
}

.c-blog__left {
  flex: 0 0 200px;
  width: 200px;
}
@media screen and (max-width: 428px) {
  .c-blog__left {
    margin-right: auto;
    margin-left: auto;
  }
}

@media screen and (min-width: 768px) {
  .p-home-blog__left {
    width: 160px;
  }
}

.c-blog__imgWrapper {
  padding-top: 75%;
  position: relative;
  border-radius: 5px;
  overflow: hidden;
}
.c-blog__imgWrapper img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  transform: translate(-50%, -50%);
  transition: transform 0.4s;
}

.c-blog__right {
  margin-left: 25px;
  flex: 1 1 auto;
}
@media screen and (max-width: 428px) {
  .c-blog__right {
    margin-left: 0;
    margin-top: 20px;
  }
}
.c-blog__right p {
  font-size: 1.2rem;
  margin-left: 2rem;
  margin-top: 16px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.p-home-blog__right {
  margin-top: 0;
}
@media screen and (max-width: 428px) {
  .p-home-blog__right {
    margin-top: 14px;
  }
}
@media screen and (min-width: 768px) {
  .p-home-blog__right {
    margin-top: 14px;
    margin-left: 0;
  }
}

.c-blog__category {
  display: inline-block;
  font-size: 1.1rem;
  padding: 0.1rem 1rem;
  color: #3360A2;
  border: 1px solid #3360A2;
  border-radius: 3px;
  text-align: center;
}

.c-news__title {
  margin-top: 16px;
  font-size: 1.6rem;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
}

.c-home-news__title {
  font-size: 1.4rem;
}

.c-news__date {
  margin-top: 10px;
  text-align: right;
  font-size: 1.2rem;
  color: #6D583D;
}

.p-hone-news__point {
  width: -webkit-max-content;
  width: -moz-max-content;
  width: max-content;
  position: absolute;
  background-color: rgb(255, 166, 166);
  border-radius: 50%;
  padding: 10px 20px;
  color: #fff;
  font-size: 1.2rem;
  top: -25px;
  right: 10px;
}
@media screen and (min-width: 768px) {
  .p-hone-news__point {
    font-size: 1.4rem;
    top: -100px;
    left: auto;
  }
}
.p-hone-news__point::after {
  content: "";
  border-style: solid;
  border-width: 25px 8px 0 8px;
  border-color: rgb(255, 166, 166) transparent transparent transparent;
  position: absolute;
  bottom: -15px;
  left: 25px;
  transform: rotate(15deg);
}

.p-menu__link {
  display: block;
  max-width: 450px;
  margin-right: auto;
  margin-left: auto;
  color: #fff;
  background-color: #6D583D;
  padding: 10px;
  border-radius: 5px;
}
@media screen and (max-width: 428px) {
  .p-menu__link {
    max-width: 320px;
  }
}

.p-home-menu__wrapper {
  margin-top: 30px;
}
@media screen and (min-width: 768px) {
  .p-home-menu__wrapper {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  .p-home-menu__wrapper:not(:first-of-type) {
    margin-left: 20px;
  }
}

.p-menu__wrapper_women {
  background-color: rgba(216, 145, 140, 0.6);
}

.p-menu-women__content {
  align-items: center;
}
@media screen and (max-width: 428px) {
  .p-menu-women__content {
    display: block;
  }
}

.p-menu__inLine {
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 20px;
  border-radius: 5px;
  height: 100%;
}

@media screen and (max-width: 767px) {
  .p-menu__text {
    max-width: 200px;
    margin-right: auto;
    margin-left: auto;
  }
}
.p-menu__text h2 {
  font-size: 3rem;
  font-family: "Tilt Warp", cursive, sans-serif;
  line-height: 1.1;
}
.p-menu__text p {
  margin-top: 10px;
  font-size: 1.4rem;
}

.p-menu-women__imgWrap {
  width: 200px;
  max-width: 100%;
  background-color: #fff;
  padding: 5px;
  margin-right: 20px;
}
@media screen and (max-width: 428px) {
  .p-menu-women__imgWrap {
    margin: 0 auto;
    margin-bottom: 10px;
  }
}
@media screen and (max-width: 428px) {
  .p-menu-women__imgWrap img {
    width: 100%;
  }
}

.bg-shop {
  background: url(../images/barberShop.jpg) no-repeat center center;
  background-size: cover;
  padding: 30px;
  position: relative;
}
@media screen and (max-width: 428px) {
  .bg-shop {
    padding: 30px 0;
  }
}
@media screen and (min-width: 768px) {
  .bg-shop {
    padding: 50px;
  }
}
.bg-shop::after {
  content: "";
  background-color: rgba(0, 0, 0, 0.4);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
}

.p-access__contents {
  padding: 20px;
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 428px) {
  .p-access__contents {
    padding: 20px 0;
  }
}
@media screen and (min-width: 768px) {
  .p-access__contents {
    padding: 20px 60px 60px 60px;
  }
}
.p-access__contents::before {
  content: "";
  background-color: rgba(255, 255, 255, 0.5);
  box-shadow: #fff 0 0 5px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
}

.p-access__content {
  margin-top: 30px;
  background-color: #fff;
  justify-content: space-between;
  align-items: center;
  padding: 10px 10px 20px 10px;
}
@media screen and (min-width: 768px) {
  .p-access__content {
    padding: 10px 30px 10px 10px;
    margin-top: 50px;
  }
}

.p-access__map {
  flex: 0 1 50%;
  max-width: 100%;
}

.iframe__wrapper {
  width: 100%;
  padding-top: 83.33334%;
  position: relative;
}
.iframe__wrapper iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.p-access__detail {
  margin-top: 20px;
  padding: 0 20px;
}
@media screen and (min-width: 768px) {
  .p-access__detail {
    margin-top: 0;
    padding: 10px 0 10px 20px;
  }
}

.p-access-detail__text {
  font-size: 1.4rem;
}
.p-access-detail__text:not(:first-of-type) {
  margin-top: 10px;
}
.p-access-detail__text dl {
  flex: 0 0 80px;
}

.p-footer {
  background-color: #2b2318;
  padding: 20px 40px;
  color: #fff;
}

@media screen and (min-width: 768px) {
  .p-footer__wrapper {
    justify-content: space-between;
  }
}

.p-footer__left {
  text-align: center;
  flex: 1 1 70%;
}
@media screen and (min-width: 768px) {
  .p-footer__left {
    -moz-text-align-last: left;
         text-align-last: left;
  }
}

.p-footer__logo {
  display: inline-block;
  font-size: 2rem;
  font-weight: bold;
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .p-footer__logo {
    margin: auto;
    font-size: 2.4rem;
  }
}

.p-footer__right {
  padding-top: 20px;
}
@media screen and (max-width: 767px) {
  .p-footer__right {
    width: -webkit-fit-content;
    width: -moz-fit-content;
    width: fit-content;
    margin: 0 auto;
  }
}
.p-footer__right p {
  font-size: 1.2rem;
}
@media screen and (min-width: 768px) {
  .p-footer__right p {
    font-size: 1.4rem;
  }
}

.p-footer__tel {
  font-weight: bold;
  font-size: 1.8rem;
  margin-bottom: 10px;
}
@media screen and (min-width: 768px) {
  .p-footer__tel {
    font-size: 2.4rem;
  }
}

.p-footer__copyright {
  text-align: center;
  margin-top: 20px;
  font-size: 1rem;
}
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    font-size: 1.2rem;
  }
}

.p-menu-table-line {
  max-width: 400px;
  margin-right: auto;
  margin-left: auto;
  background-color: rgb(109, 88, 61);
  padding: 10px;
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-menu-table-line {
    max-width: 800px;
  }
}

.p-menu-table__Wrapper {
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 40px;
  justify-content: center;
}

.c-menu__table {
  flex: 0 1 50%;
}
.c-menu__table:not(:first-of-type) {
  margin-top: 50px;
}
@media screen and (min-width: 768px) {
  .c-menu__table:not(:first-of-type) {
    margin-left: 6%;
    margin-top: 0;
  }
}
.c-menu__table h3 {
  font-size: 1.8rem;
  margin: 20px 0;
  text-align: center;
  color: #98C1FF;
}
.c-menu__table table {
  color: #fff;
  width: 100%;
  border-collapse: collapse;
}
.c-menu__table tr {
  position: relative;
}
.c-menu__table tr::after {
  contain: "";
  background-color: #fff;
  width: 1px;
  height: 1px;
  border-radius: 50%;
  background-repeat: repeat-x;
  position: absolute;
  bottom: 0;
}
.c-menu__table th,
.c-menu__table td {
  padding: 7px 0;
  border-bottom: 1px dotted #fff;
}
.c-menu__table th {
  text-align: left;
}
.c-menu__table td {
  text-align: right;
  padding-left: 7px;
}
.c-menu__table .c-menu-table__title {
  color: #FFB2A4;
}

.l-menu__contents {
  max-width: 730px;
  margin-right: auto;
  margin-left: auto;
}
.l-menu__contents h2 {
  font-size: 2rem;
  padding-left: 20px;
  position: relative;
}
.l-menu__contents h2::before {
  content: "";
  background-color: #E14040;
  width: 5px;
  height: 20px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}

.p-menu-table__cut {
  color: #fff;
  font-size: 1.4rem;
  text-align: right;
  margin-top: 20px;
}

.l-menu__content:not(:first-of-type) {
  margin-top: 50px;
}

.l-menu__women {
  margin-top: 20px;
}

/*リンクの形状*/
#page-top a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  color: #D8CBCB;
  text-align: center;
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.6rem;
  transition: all 0.3s;
  opacity: 0.5;
}

#page-top a:hover {
  color: #97664C;
  opacity: 0.7;
}

.fa-circle-up {
  font-size: 4rem;
}

/*リンクを右下に固定*/
#page-top {
  position: fixed;
  right: 10px;
  bottom: 10px;
  z-index: 2;
  /*はじめは非表示*/
  opacity: 0;
  transform: translateY(100px);
}

/* 上に上がる動き */
#page-top.UpMove {
  -webkit-animation: UpAnime 0.5s forwards;
          animation: UpAnime 0.5s forwards;
}

@-webkit-keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes UpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
/* 下に下がる動き */
#page-top.DownMove {
  -webkit-animation: DownAnime 0.5s forwards;
          animation: DownAnime 0.5s forwards;
}

@-webkit-keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}

@keyframes DownAnime {
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 1;
    transform: translateY(100px);
  }
}
.p-shaving__wrapper {
  max-width: 400px;
  margin-right: auto;
  margin-left: auto;
  padding-top: 80px;
}
@media screen and (min-width: 768px) {
  .p-shaving__wrapper {
    padding-top: 120px;
    max-width: 800px;
  }
}

.p-shaving {
  background-color: #fff;
  box-shadow: 0 0 10px #fff;
  border-radius: 30px;
  padding: 20px;
}
@media screen and (min-width: 768px) {
  .p-shaving {
    padding: 40px;
    flex-direction: row-reverse;
    align-items: center;
  }
}

.p-shaving__imgWrapper {
  border-radius: 30px;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .p-shaving__imgWrapper {
    flex: 0 0 45%;
    margin-left: 5%;
  }
}
.p-shaving__texts {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .p-shaving__texts {
    margin-top: 0;
  }
}
.p-shaving__texts h3 {
  font-size: 1.6rem;
  color: #CE8578;
  font-weight: bold;
  padding-bottom: 10px;
  padding-left: 1rem;
  position: relative;
}
@media screen and (min-width: 768px) {
  .p-shaving__texts h3 {
    font-size: 2rem;
  }
}
.p-shaving__texts h3:not(:first-of-type) {
  margin-top: 30px;
}
.p-shaving__texts h3::before {
  content: "";
  background-color: #CE8578;
  height: 1px;
  width: 200px;
  border-radius: 999px;
  position: absolute;
  bottom: 5px;
  left: 0px;
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .p-shaving__texts h3::before {
    width: 250px;
    height: 2px;
  }
}
.p-shaving__texts h3::after {
  content: "";
  background-color: #CE8578;
  width: 200px;
  height: 1px;
  border-radius: 999px;
  position: absolute;
  bottom: 0;
  left: 5px;
  opacity: 0.5;
}
@media screen and (min-width: 768px) {
  .p-shaving__texts h3::after {
    width: 250px;
    height: 2px;
  }
}
.p-shaving__texts p {
  font-size: 1.4rem;
  margin-top: 16px;
}
@media screen and (min-width: 768px) {
  .p-shaving__texts p {
    font-size: 1.6rem;
  }
}

.p-news {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}

.p-blog {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
}

.p-blog__articles {
  margin-top: 40px;
}

.p-home-blog__article {
  max-width: 500px;
  margin-right: auto;
  margin-left: auto;
}

.c-news__articles {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .c-news__articles {
    margin-top: 60px;
  }
}

.c-news__article {
  border-bottom: 1px solid #D8CBCB;
  padding-bottom: 20px;
  padding-top: 20px;
}
.c-news__article:first-of-type {
  border-top: 1px solid #D8CBCB;
}
.c-news__article p {
  font-size: 1.2rem;
  margin-left: 2rem;
  margin-top: 14px;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
@media screen and (min-width: 768px) {
  .c-news__article p {
    font-size: 1.4rem;
  }
}

.p-home-news__article {
  padding-bottom: 20px;
}
.p-home-news__article:first-of-type {
  border-top: none;
  padding-top: 0;
}
@media screen and (min-width: 1100px) {
  .p-home-news__article:not(:first-of-type) {
    margin-top: 20px;
  }
}

.c-news-article__top {
  align-items: center;
}

.c-news-article__date {
  margin-top: 0;
  margin-right: 20px;
  color: #3360A2;
}

/*========= ローディング画面のためのCSS ===============*/
#splash {
  position: fixed;
  width: 100vh;
  height: 100vh;
  background: #FFFBF6;
  z-index: 9999999;
  text-align: center;
}

/*========= 画面遷移のためのCSS ===============*/
/*画面遷移アニメーション*/
.splashbg {
  display: none;
}

/*bodyにappearクラスがついたら「赤」出現*/
body.appear .splashbg_red {
  display: block;
  content: "";
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleX(0);
  background-color: rgb(225, 64, 64); /*伸びる背景色の設定*/
  -webkit-animation-name: PageAnime-red;
          animation-name: PageAnime-red;
  -webkit-animation-duration: 1s;
          animation-duration: 1s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes PageAnime-red {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  70% {
    transform-origin: left;
    transform: scaleX(1);
  }
  70.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

@keyframes PageAnime-red {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  70% {
    transform-origin: left;
    transform: scaleX(1);
  }
  70.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*bodyにappearクラスがついたら「白」出現*/
body.appear .splashbg_white {
  display: block;
  content: "";
  position: fixed;
  z-index: 998;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleX(0);
  background-color: #fff; /*伸びる背景色の設定*/
  -webkit-animation-name: PageAnime-white;
          animation-name: PageAnime-white;
  -webkit-animation-duration: 0.9s;
          animation-duration: 0.9s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes PageAnime-white {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  60% {
    transform-origin: left;
    transform: scaleX(1);
  }
  60.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

@keyframes PageAnime-white {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  60% {
    transform-origin: left;
    transform: scaleX(1);
  }
  60.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*bodyにappearクラスがついたら「青」出現*/
body.appear .splashbg_blue {
  display: block;
  content: "";
  position: fixed;
  z-index: 997;
  width: 100%;
  height: 100vh;
  top: 0;
  left: 0;
  transform: scaleX(0);
  background-color: rgb(22, 76, 156); /*伸びる背景色の設定*/
  -webkit-animation-name: PageAnime-blue;
          animation-name: PageAnime-blue;
  -webkit-animation-duration: 0.8s;
          animation-duration: 0.8s;
  -webkit-animation-timing-function: ease-in-out;
          animation-timing-function: ease-in-out;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
}

@-webkit-keyframes PageAnime-blue {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}

@keyframes PageAnime-blue {
  0% {
    transform-origin: left;
    transform: scaleX(0);
  }
  50% {
    transform-origin: left;
    transform: scaleX(1);
  }
  50.001% {
    transform-origin: right;
  }
  100% {
    transform-origin: right;
    transform: scaleX(0);
  }
}
/*画面遷移の後現れるコンテンツ設定*/
#container {
  opacity: 0; /*はじめは透過0に*/
}

/*bodyにappearクラスがついたら出現*/
body.appear #container {
  -webkit-animation-name: PageAnimeAppear;
          animation-name: PageAnimeAppear;
  -webkit-animation-duration: 0.3s;
          animation-duration: 0.3s;
  -webkit-animation-delay: 1s;
          animation-delay: 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes PageAnimeAppear {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-single__title_bottom {
  text-align: right;
}

.p-single__category {
  display: inline-block;
  margin-left: auto;
  padding: 0 5px;
  border-radius: 3px;
  border: 1px solid #164C9C;
  color: #164C9C;
  font-size: 1.2rem;
}

.p-single__time {
  font-size: 1rem;
  margin-top: 5px;
}

.p-single__imgWrapper {
  margin-top: 40px;
}

.p-single__img {
  padding-top: 56.25%;
  position: relative;
  overflow: hidden;
  height: 100%;
}
.p-single__img img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.p-single h2 {
  font-size: 2.2rem;
  margin-top: 40px;
  font-weight: bold;
  color: #97664C;
  padding-left: 2rem;
  background-color: rgba(216, 203, 203, 0.4);
}
@media screen and (min-width: 768px) {
  .p-single h2 {
    margin-top: 60px;
  }
}
.p-single h3 {
  font-size: 2rem;
  margin-top: 40px;
  font-weight: bold;
  color: #97664C;
  padding-left: 2rem;
  border-bottom: 3px solid #D8CBCB;
  padding-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .p-single h3 {
    margin-top: 60px;
  }
}
.p-single h4 {
  font-size: 1.8rem;
  margin-top: 40px;
  font-weight: bold;
  color: #97664C;
  padding-left: 2rem;
  border-bottom: 3px solid #D8CBCB;
  padding-bottom: 5px;
}
@media screen and (min-width: 768px) {
  .p-single h4 {
    margin-top: 60px;
  }
}
.p-single p {
  font-size: 1.6rem;
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-single p {
    margin-top: 40px;
  }
}
.p-single ul {
  margin-top: 20px;
}
@media screen and (min-width: 768px) {
  .p-single ul {
    margin-top: 40px;
  }
}
.p-single ul li {
  font-size: 1.6rem;
  padding-left: 20px;
  margin-top: 10px;
  position: relative;
}
.p-single ul li::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  left: 5px;
  background-color: #164C9C;
  width: 5px;
  height: 5px;
  border-radius: 50%;
}

.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 100%;
  position: relative;
  margin-top: 50px;
}

.page-numbers,
.post-page-numbers {
  display: inline-block;
  text-align: center;
  width: 40px;
  height: 40px;
  color: #382620;
  padding: 5px 0 10px 0;
  background-color: #fff;
  margin: 0 6px;
}

.current {
  background-color: #382620;
  color: #fff;
}

.p-contactForm {
  max-width: 600px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 50px;
}

.label_flex label {
  width: 180px;
  display: inline-block;
}

.p-contact__input {
  width: calc(100% - 180px - 40px);
}

.u-mt_16 {
  margin-top: 16px;
}

.u-mt_40 {
  margin-top: 40px;
}

.c-required {
  display: inline-block;
  color: #fff;
  background-color: #E14040;
  border-radius: 5px;
  font-size: 1.2rem;
  padding: 0 0.7rem;
  margin-left: 16px;
}

textarea {
  width: 100%;
  margin-top: 10px;
  padding: 16px;
}