@charset "UTF-8";
/* ============================================================ */
/* reset */
/* ============================================================ */
* {
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  box-sizing: border-box;
  font: inherit;
  font-family: inherit;
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit;
  text-decoration: none;
  vertical-align: baseline;
}

html {
  font-size: 62.5%;
  width: 100%;
  height: 100%;
}

body {
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  position: relative;
  -webkit-text-size-adjust: 100%;
     -moz-text-size-adjust: 100%;
          text-size-adjust: 100%;
  font-smoothing: antialiased;
  width: 100%;
  height: 100%;
}

article,
aside,
dialog,
figure,
footer,
header,
main,
menu,
nav,
section {
  display: block;
}

audio,
canvas,
video {
  display: inline-block;
}

hr {
  display: block;
}

ol,
ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

input,
select {
  vertical-align: middle;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
  empty-cells: show;
}

img {
  max-width: 100%;
  vertical-align: bottom;
  -webkit-backface-visibility: hidden;
}

/* =======================================================================
--------------------------------------------------------------------------
0.setting
1.utilities
2.base
3.common
4.contents
======================================================================= */
/* ============================================================ */
/* 0.setting */
/* ============================================================ */
/* font
------------------------------------------------------------ */
/* font size vw 計算
------------------------------------------------------------ */
/* ============================================================ */
/* utilities */
/* ============================================================ */
.u-color-red {
  color: #F9857D;
}

.u-pc-view {
  display: none;
}

.u-sp-view {
  display: block;
}

@media (min-width: 1025px) {
  .u-pc-view {
    display: block;
  }
  .u-sp-view {
    display: none;
  }
}
/* ============================================================ */
/* base */
/* ============================================================ */
body {
  color: #4B3F38;
  font-family: "Jun 501";
  font-size: 16px;
  font-size: 4.2666666667vw;
}
@media (min-width: 1025px) {
  body {
    font-size: 2rem;
  }
}

a {
  color: #4B3F38;
  transition: 0.3s;
}
a:hover {
  opacity: 0.7;
}

/* ============================================================ */
/* header */
/* ============================================================ */
.header {
  position: relative;
  z-index: 150;
}
.header__inner {
  padding-left: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.1019607843);
  height: 70px;
}
@media (min-width: 1025px) {
  .header__inner {
    height: 80px;
    padding: 0 40px;
  }
}

.toggle {
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  display: block;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 250;
  margin: 0;
  padding: 0;
  width: 42px;
  height: 42px;
  border: none;
  border-radius: 50%;
  background-color: #F9857D;
  transition: background-color 0.2s ease;
  cursor: pointer;
}
@media (min-width: 1025px) {
  .toggle {
    display: none;
  }
}
.toggle > span, .toggle:before, .toggle:after {
  display: block;
  position: absolute;
  left: 50%;
  width: 20px;
  height: 2px;
  margin: -2px 0 0 -10px;
  border-radius: 2px;
  background-color: #ffffff;
}
.toggle > span {
  transition: opacity 0.3s ease;
  will-change: opacity;
}
.toggle::before, .toggle::after {
  content: "";
  transition: background-color 0.3s ease;
}
.toggle::before {
  transform: translateY(-10px);
}
.toggle::after {
  transform: translateY(10px);
}
.toggle[aria-expanded=true] > span {
  opacity: 0;
}
.toggle[aria-expanded=true]::before, .toggle[aria-expanded=true]::after {
  background-color: white;
}
.toggle[aria-expanded=true]::before {
  animation: 0.3s ease closeBar1 forwards;
}
.toggle[aria-expanded=true]::after {
  animation: 0.3s ease closeBar2 forwards;
}
.toggle[aria-expanded=false] > span {
  top: 50%;
}
.toggle[aria-expanded=false]::before {
  top: 55%;
}
.toggle[aria-expanded=false]::after {
  top: 45%;
}
.toggle.-close::before {
  animation: 0.3s ease closeBar1Rev forwards;
}
.toggle.-close::after {
  animation: 0.3s ease closeBar2Rev forwards;
}

.nav {
  display: flex;
  justify-content: center;
  align-content: center;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 200;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #ffffff;
  color: black;
  transition: opacity 0.3s ease, visibility 0.3s ease;
}
@media (min-width: 1025px) {
  .nav {
    opacity: 1;
    visibility: visible;
    width: auto;
    height: auto;
    position: initial;
  }
}
.nav[aria-hidden=true] {
  visibility: hidden;
  opacity: 0;
}
@media (min-width: 1025px) {
  .nav[aria-hidden=true] {
    opacity: 1;
    visibility: visible;
  }
}
.nav[aria-hidden=false] {
  visibility: visible;
  opacity: 1;
  pointer-events: auto;
}
@media (min-width: 1025px) {
  .nav[aria-hidden=false] {
    opacity: 1;
    visibility: visible;
  }
}
@media (min-width: 1025px) {
  .nav__list {
    display: flex;
    align-items: center;
  }
}
.nav__item {
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
  font-size: 4.8vw;
}
@media (min-width: 1025px) {
  .nav__item {
    margin: 0 0 0 40px;
    font-size: 1.6rem;
    text-align: left;
  }
}
.nav__item:last-child {
  margin-bottom: 0;
}
.nav__item-btn {
  display: inline-block;
  padding: 15px 30px 15px 50px;
  color: #ffffff;
  background-color: #F9857D;
  border-radius: 100px;
}
@media (min-width: 600px) {
  .nav__item-btn {
    padding: 4% 5% 4% 18%;
  }
}
@media (min-width: 1025px) {
  .nav__item-btn {
    padding: 15px 30px 15px 50px;
  }
}
.nav__item-mail {
  background-image: url(/common/images/common/ico_mail.svg);
  background-position: 25px center;
  background-repeat: no-repeat;
  background-size: 5vw;
}
@media (min-width: 1025px) {
  .nav__item-mail {
    background-size: 18px;
  }
}

@keyframes closeBar1 {
  0% {
    transform: translateY(-10px);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(45deg);
  }
}
@keyframes closeBar2 {
  0% {
    transform: translateY(10px);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(0) rotate(-45deg);
  }
}
@keyframes closeBar1Rev {
  0% {
    transform: translateY(0) rotate(45deg);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(-10px);
  }
}
@keyframes closeBar2Rev {
  0% {
    transform: translateY(0) rotate(-45deg);
  }
  50% {
    transform: translateY(0) rotate(0);
  }
  100% {
    transform: translateY(10px);
  }
}
/* ============================================================ */
/* contact-area */
/* ============================================================ */
.contact-area {
  padding: 50px 15px 80px 15px;
  text-align: left;
  background: url(/common/images/common/bg_content.svg) top center;
  background-size: contain;
  position: relative;
}
@media (min-width: 600px) {
  .contact-area {
    padding-bottom: 150px;
  }
}
@media (min-width: 1025px) {
  .contact-area {
    padding: 80px 0 230px 0;
    text-align: center;
    background-size: cover;
  }
}
.contact-area::after {
  display: block;
  width: 100%;
  height: 66px;
  content: "";
  background: url(/common/images/common/bg_footer_sp.png) no-repeat;
  background-size: cover;
  background-position-x: center;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media (min-width: 600px) {
  .contact-area::after {
    height: 100px;
    background: url(/common/images/common/bg_footer_pc.png) no-repeat;
    background-size: cover;
  }
}
@media (min-width: 1025px) {
  .contact-area::after {
    height: 209px;
    background: url(/common/images/common/bg_footer_pc.png) no-repeat;
    background-size: cover;
    background-position-x: center;
  }
}
.contact-area__text {
  line-height: 2.5;
}
.contact-area__btn {
  margin-top: 40px;
}
@media (min-width: 1025px) {
  .contact-area__btn__list {
    display: flex;
    justify-content: center;
  }
}
.contact-area__btn__item {
  margin-bottom: 15px;
}
@media (min-width: 1025px) {
  .contact-area__btn__item {
    margin-right: 20px;
    width: 400px;
  }
  .contact-area__btn__item:last-child {
    margin-right: 0;
  }
}

.btn {
  text-align: center;
  padding: 25px 20px;
  display: block;
  border-radius: 100px;
}

.btn-mail {
  color: #ffffff;
  background-color: #F9857D;
}
.btn-mail span {
  padding: 5px 0 5px 40px;
  background: url(/common/images/common/ico_mail.svg) no-repeat left center;
}

.btn-instagram {
  color: #ffffff;
  background-color: #C95193;
}
.btn-instagram span {
  padding: 5px 0 5px 40px;
  background: url(/common/images/common/ico_Instagram.svg) no-repeat left center;
}

.btn-facebook {
  color: #ffffff;
  background-color: #4867AA;
}
.btn-facebook span {
  padding: 5px 0 5px 40px;
  background: url(/common/images/common/ico_facebook.svg) no-repeat left center;
}

.btn-youtube {
  color: #ffffff;
  background-color: #C84A4A;
}
.btn-youtube span {
  padding: 5px 0 5px 40px;
  background: url(/common/images/common/ico_youtube.svg) no-repeat left center;
}

.btn-line {
  color: #ffffff;
  background-color: #57AE71;
}
.btn-line span {
  padding: 5px 0 5px 40px;
  background: url(/common/images/common/ico_line.svg) no-repeat left center;
}

/* ============================================================ */
/* footer */
/* ============================================================ */
.footer {
  position: relative;
}
.footer__cp {
  padding: 25px;
  text-align: center;
  color: #ffffff;
  background-color: #6E564C;
  font-size: 14px;
  font-size: 3.7333333333vw;
}
@media (min-width: 1025px) {
  .footer__cp {
    font-size: 1.4rem;
  }
}/*# sourceMappingURL=common.css.map */