@charset "UTF-8";
body {
  font-family: "Noto Serif JP", serif;
  color: #393327;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

img {
  width: 100%;
}

.inner {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 1061px) {
  .inner {
    max-width: 1120px;
    padding-left: 30px;
    padding-right: 30px;
    margin-left: auto;
    margin-right: auto;
  }
}

.pc-hidden {
  display: block;
}
@media (min-width: 1061px) {
  .pc-hidden {
    display: none;
  }
}

.hidden {
  overflow: hidden;
}

/*==============================
header
==============================*/
.header {
  height: 68px;
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: #fff;
}
@media (min-width: 1061px) {
  .header {
    height: 120px;
  }
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 68px;
}
@media (min-width: 1061px) {
  .header__inner {
    height: 120px;
    position: relative;
  }
}

@media (min-width: 1061px) {
  .header__logo {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
}
.header__logo a img {
  width: 76px;
}
@media (min-width: 1061px) {
  .header__logo a img {
    width: 130px;
  }
}

.header__right {
  display: flex;
  gap: 21px;
  align-items: center;
}
@media (min-width: 1061px) {
  .header__right {
    display: none;
  }
}

.header__line a {
  padding: 7px 28px;
  display: inline-block;
  background: linear-gradient(258.82deg, #8b6c3a 21.4%, #b19464 58.78%, #8b6c3a 96.8%);
  border-radius: 2px;
  color: #fff;
}

.header__button {
  width: 28px;
  height: 21px;
}

.drawer-button {
  position: relative;
}
.drawer-button.is-open .drawer-button__bar:nth-of-type(1) {
  top: 10px;
  transform: rotate(45deg);
}
.drawer-button.is-open .drawer-button__bar:nth-of-type(2) {
  display: none;
}
.drawer-button.is-open .drawer-button__bar:nth-of-type(3) {
  width: 100%;
  top: 10px;
  transform: rotate(-45deg);
}

.drawer-button__bar {
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  background-color: #393327;
  transition: all 0.3s ease;
}
.drawer-button__bar:nth-of-type(1) {
  top: 0;
  width: 100%;
}
.drawer-button__bar:nth-of-type(2) {
  width: 22px;
  top: 10px;
}
.drawer-button__bar:nth-of-type(3) {
  width: 15px;
  top: 20px;
}

.header__nav-contents {
  display: none;
}
@media (min-width: 1061px) {
  .header__nav-contents {
    display: flex;
    justify-content: space-between;
    width: 100%;
    align-items: center;
  }
}

.header__nav-list {
  display: flex;
  gap: 32px;
  align-items: center;
}

.header__nav-link {
  font-size: 15px;
  letter-spacing: 0.1em;
}
@media (min-width: 1061px) {
  .header__nav-link {
    transition: all 0.3s ease;
  }
  .header__nav-link:hover {
    color: #8b6c3a;
  }
}

.header__nav-button {
  display: inline-block;
  padding: 18px 40px;
  color: #fff;
  background: linear-gradient(258.82deg, #8b6c3a 21.4%, #b19464 58.78%, #8b6c3a 96.8%);
  line-height: 1;
  margin-left: 25px;
  letter-spacing: 0.2em;
}
@media (min-width: 1061px) {
  .header__nav-button {
    transition: all 0.3s ease;
  }
  .header__nav-button:hover {
    opacity: 0.7;
  }
}

/*==============================
drawer
==============================*/
.drawer {
  background-color: rgba(140, 109, 59, 0.7);
  position: fixed;
  top: 68px;
  right: -100%;
  width: 100%;
  z-index: 10;
  transition: all 0.3s ease;
}
@media (min-width: 1061px) {
  .drawer {
    display: none;
  }
}
.drawer.is-open {
  right: 0;
}

.drawer__contents {
  padding-top: 56px;
  width: 250px;
  height: 100vh;
  background-color: #fff;
  margin-left: auto;
}

.drawer__nav {
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.drawer__sns-contents {
  margin-top: 56px;
  display: flex;
  justify-content: center;
  gap: 24px;
}
.drawer__sns-contents a img {
  width: 40px;
}

/*==============================
fv
==============================*/
.fv {
  background: url(../img/sp/mv-bg.png) no-repeat center center/cover;
  padding-top: 40px;
  padding-bottom: 400px;
  margin-top: 68px;
}
@media (min-width: 1061px) {
  .fv {
    background: url(../img/mv-bg.png) no-repeat center center/cover;
    padding-top: 210px;
    padding-bottom: 272px;
    margin-top: 129px;
  }
}

.fv__text-contents {
  text-align: center;
  letter-spacing: 0.1em;
}
@media (min-width: 1061px) {
  .fv__text-contents {
    text-align: left;
  }
}

.fv__text-main {
  font-size: 24px;
  font-weight: 600;
}
@media (min-width: 1061px) {
  .fv__text-main {
    font-size: 40px;
  }
}

.fv__text-sub {
  margin-top: 12px;
  letter-spacing: 0;
  font-size: 14px;
  font-weight: 600;
}
@media (min-width: 1061px) {
  .fv__text-sub {
    font-size: 22px;
    margin-top: 32px;
  }
}

@media (min-width: 1061px) {
  .fv-small {
    font-size: 32px;
  }
}

/*==============================
voice
==============================*/
.voice {
  padding-top: 56px;
}
@media (min-width: 1061px) {
  .voice {
    padding-top: 96px;
  }
}

.voice__main-text {
  font-size: 20px;
  color: #8b6c3a;
  font-weight: 600;
  text-align: center;
}
@media (min-width: 1061px) {
  .voice__main-text {
    font-size: 32px;
  }
}

.voice__items {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}
@media (min-width: 1061px) {
  .voice__items {
    gap: 82px;
    margin-top: 80px;
  }
}

.voice__item {
  display: flex;
  flex-direction: column-reverse;
}
@media (min-width: 1061px) {
  .voice__item {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
  .voice__item:nth-child(2n) {
    flex-direction: row-reverse;
  }
}

.voice__item-text-contents {
  margin-top: 24px;
}
@media (min-width: 1061px) {
  .voice__item-text-contents {
    width: 49.0566037736%;
    margin-top: 0;
  }
}

.voice__item-main {
  font-size: 18px;
  font-weight: 600;
}
@media (min-width: 1061px) {
  .voice__item-main {
    font-size: 24px;
    letter-spacing: 0.1em;
  }
}

.voice__item-text {
  margin-top: 8px;
  line-height: 1.8;
}
@media (min-width: 1061px) {
  .voice__item-text {
    margin-top: 20px;
  }
}

.voice__item-person {
  margin-top: 12px;
  font-size: 14px;
}
@media (min-width: 1061px) {
  .voice__item-person {
    text-align: right;
    margin-top: 17px;
    font-size: 16px;
  }
}

@media (min-width: 1061px) {
  .voice__item-image {
    width: 42.4528301887%;
    flex-shrink: 0;
  }
}
/*==============================
section共通
==============================*/
.section-heading {
  text-align: center;
}
.section-heading.is-left {
  text-align: left;
}
.section-heading.is-left .section-heading__en {
  position: relative;
  display: inline-block;
}
.section-heading.is-left .section-heading__en::after {
  content: "";
  position: absolute;
  width: 340px;
  height: 1px;
  background: #393327;
  top: 50%;
  left: calc(100% + 32px);
  transform: translateY(-50%);
}
@media (max-width: 1060px) {
  .section-heading.is-left .section-heading__en::after {
    display: none;
  }
}

.section-heading__en {
  font-size: 28px;
  font-family: "Lora", serif;
  display: block;
  letter-spacing: 0.08em;
}
@media (min-width: 1061px) {
  .section-heading__en {
    line-height: 1;
    font-size: 56px;
  }
}

.section-heading__ja {
  display: block;
  font-size: 14px;
}
@media (min-width: 1061px) {
  .section-heading__ja {
    margin-top: 40px;
    font-size: 16px;
    line-height: 1;
    letter-spacing: 0.1em;
  }
}

/*==============================
owner
==============================*/
.owner {
  padding-top: 96px;
  padding-bottom: 80px;
}
@media (min-width: 1061px) {
  .owner {
    padding-top: 192px;
    padding-bottom: 96px;
  }
}

@media (min-width: 1061px) {
  .owner__inner {
    max-width: 938px;
  }
}

.owner__contents {
  margin-top: 40px;
}
@media (min-width: 1061px) {
  .owner__contents {
    display: flex;
    justify-content: center;
    gap: 90px;
    margin-top: 80px;
  }
}

@media (min-width: 1061px) {
  .owner__image {
    width: 360px;
  }
}
.owner__image img {
  width: 100%;
}

.owner__text-contents {
  margin-top: 32px;
}
@media (min-width: 1061px) {
  .owner__text-contents {
    width: 428px;
    margin-top: 0px;
  }
}

.owner__name-contents {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.owner__name {
  font-size: 24px;
  line-height: 1;
  font-weight: 600;
  letter-spacing: 0.1em;
}

.owner__sns {
  display: flex;
  gap: 24px;
}

@media (min-width: 1061px) {
  .owner__sns-icon {
    transition: all 0.3s ease;
  }
  .owner__sns-icon:hover {
    opacity: 0.7;
  }
}
.owner__sns-icon img {
  width: 40px;
}

.owner__text {
  margin-top: 24px;
  letter-spacing: 0.02em;
  line-height: 1.8;
}
@media (min-width: 1061px) {
  .owner__text {
    line-height: 2;
  }
}

.owner__message {
  margin-top: 48px;
  border: 1px solid #8b6c3a;
  padding: 24px 20px;
}
@media (min-width: 1061px) {
  .owner__message {
    padding: 64px 90px;
    margin-top: 80px;
  }
}

.owner__message-title {
  font-size: 40px;
  line-height: 1;
  font-family: "Allura", cursive;
  color: #8b6c3a;
  text-align: center;
  letter-spacing: 0.1em;
}
@media (min-width: 1061px) {
  .owner__message-title {
    font-size: 56px;
  }
}

.owner__message-text {
  margin-top: 16px;
  letter-spacing: 0.02em;
  line-height: 1.8;
}
@media (min-width: 1061px) {
  .owner__message-text {
    line-height: 2;
    letter-spacing: 0.1em;
  }
}

/*==============================
onayama
==============================*/
.onayami {
  background-color: #fafafa;
  padding-bottom: 56px;
}
@media (min-width: 1061px) {
  .onayami {
    position: relative;
    padding-top: 98px;
    padding-bottom: 96px;
  }
}

@media (min-width: 1061px) {
  .onayami__bg {
    position: absolute;
    inset: 0;
  }
  .onayami__bg img {
    width: 100%;
    height: 481px;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.onayami__inner {
  margin-top: 40px;
}
@media (min-width: 1061px) {
  .onayami__inner {
    position: relative;
    max-width: 938px;
    margin-top: 0;
    display: flex;
    align-items: center;
    min-height: 100%;
  }
}

.onayami__main {
  font-size: 20px;
}
@media (min-width: 1061px) {
  .onayami__main {
    font-size: 24px;
  }
}

.onayami__list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
@media (min-width: 1061px) {
  .onayami__list {
    margin-top: 32px;
    gap: 20px;
  }
}

.onayami__item {
  display: flex;
  gap: 8px;
}

.onayami__check {
  flex-shrink: 0;
}
.onayami__check img {
  width: 24px;
}

.onayami__text {
  letter-spacing: 0.02em;
}
@media (min-width: 1061px) {
  .onayami__text {
    font-size: 18px;
  }
}

/*==============================
feature
==============================*/
.feature {
  padding-top: 48px;
  padding-bottom: 56px;
}
@media (min-width: 1061px) {
  .feature {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}

.feature__top-text {
  font-weight: 600;
  text-align: center;
  color: #8b6c3a;
  line-height: 1.68;
}
@media (min-width: 1061px) {
  .feature__top-text {
    font-size: 32px;
    letter-spacing: 0.1em;
    line-height: 2;
  }
}

.feature__arrow {
  text-align: center;
  margin-top: 16px;
}
@media (min-width: 1061px) {
  .feature__arrow {
    margin-top: 26px;
  }
}
.feature__arrow img {
  width: 43px;
  height: 43px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1061px) {
  .feature__arrow img {
    width: 66px;
    height: 66px;
  }
}

.feature__contents {
  margin-top: 31px;
}
@media (min-width: 1061px) {
  .feature__contents {
    margin-top: 75px;
  }
}

.feature__list {
  margin-top: 40px;
  display: flex;
  flex-direction: column;
  gap: 42px;
}
@media (min-width: 1061px) {
  .feature__list {
    gap: 80px;
    margin-top: 80px;
  }
}

@media (min-width: 1061px) {
  .feature__item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 69px;
  }
}

@media (min-width: 1061px) {
  .feature__image {
    width: 42.4528301887%;
  }
}
.feature__text-contens {
  margin-top: 20px;
}
@media (min-width: 1061px) {
  .feature__text-contens {
    width: 50.9433962264%;
  }
}

.feature__title {
  font-weight: 600;
  font-size: 18px;
  line-height: 1.8;
  padding-left: 8px;
  position: relative;
}
@media (min-width: 1061px) {
  .feature__title {
    font-size: 28px;
    font-weight: 400;
    padding-left: 20px;
    letter-spacing: 0.1em;
    line-height: 1.78;
  }
}
.feature__title::before {
  content: "";
  position: absolute;
  height: 65px;
  width: 1px;
  background-color: #8b6c3a;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (min-width: 1061px) {
  .feature__title::before {
    height: 100px;
  }
}

.feature__text {
  margin-top: 12px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media (min-width: 1061px) {
  .feature__text {
    margin-top: 32px;
    line-height: 2;
  }
}

/*==============================
menber-voice
==============================*/
.menber-voice {
  margin-top: -56px;
  padding-top: 112px;
  padding-bottom: 56px;
  background: url(../img/voice-bg.png) no-repeat center center/cover;
}
@media (min-width: 1061px) {
  .menber-voice {
    margin-top: -96px;
    padding-top: 192px;
    padding-bottom: 96px;
  }
}

.menber-voice__contents {
  margin-top: 40px;
}
@media (min-width: 1061px) {
  .menber-voice__contents {
    margin-top: 80px;
  }
}

.menber-voice__items {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1061px) {
  .menber-voice__items {
    gap: 80px;
  }
}

@media (min-width: 1061px) {
  .menber-voice__item {
    display: flex;
    gap: 71px;
    flex-direction: row;
  }
  .menber-voice__item:nth-child(2n) {
    flex-direction: row-reverse;
  }
}

@media (min-width: 1061px) {
  .menber-voice__image {
    width: 42.4528301887%;
  }
}
.menber-voice__text-contents {
  margin-top: 20px;
}
@media (min-width: 1061px) {
  .menber-voice__text-contents {
    width: 50.9433962264%;
  }
}

.menber-voice__title {
  font-size: 18px;
  font-weight: 600;
  color: #8b6c3a;
}
@media (min-width: 1061px) {
  .menber-voice__title {
    font-size: 24px;
  }
}

.menber-voice__person {
  padding-top: 12px;
  font-size: 14px;
}
@media (min-width: 1061px) {
  .menber-voice__person {
    margin-top: 20px;
    font-size: 16px;
  }
}

.menber-voice__text {
  margin-top: 10px;
  line-height: 1.8;
}
@media (min-width: 1061px) {
  .menber-voice__text {
    margin-top: 24px;
  }
}

/*==============================
price
==============================*/
.price {
  padding-top: 56px;
  padding-bottom: 56px;
  background: url(../img/price-bg.png) no-repeat center center/cover;
}

.price__contents {
  margin-top: 40px;
}

.price__price {
  text-align: center;
  color: #8b6c3a;
  display: flex;
  align-items: baseline;
  justify-content: center;
  gap: 3px;
}

.price-middle {
  font-size: 22px;
  letter-spacing: 0.1em;
  line-height: 0.9;
  margin-right: 5px;
}

.price-icon {
  font-size: 32px;
  line-height: 1.4;
  letter-spacing: 0.1em;
}

.price-large {
  font-size: 50px;
  line-height: 1;
  letter-spacing: 0.1em;
}

.price-small {
  font-size: 16px;
  line-height: 1.25;
}

.price__text-contents {
  margin-top: 32px;
  text-align: center;
}

.price__text-main {
  font-size: 18px;
  font-weight: 600;
  color: #8b6c3a;
}

.price__text-text {
  font-size: 14px;
  letter-spacing: 0.1em;
  color: #8b6c3a;
}

.price__text-attention {
  margin-top: 33px;
  letter-spacing: 0.02em;
  line-height: 1.68;
}

/*==============================
campain
==============================*/
.campain {
  padding-top: 56px;
  padding-bottom: 56px;
  background: url(../img/sp/campaign-bg-sp.png) no-repeat center center/cover;
}
@media (min-width: 1061px) {
  .campain {
    padding-top: 96px;
    padding-bottom: 96px;
    background: url(../img/campaign-bg-pc.png) no-repeat center center/cover;
  }
}

.campain__contents {
  padding: 40px 10px;
  background-color: #fff;
  border: 1px solid #8b6c3a;
}
@media (min-width: 1061px) {
  .campain__contents {
    padding: 64px 87px;
  }
}

.campain__main {
  text-align: center;
  padding: 12px 0;
  font-size: 20px;
  font-weight: 600;
  color: #8b6c3a;
  border-top: 1px solid #8b6c3a;
  border-bottom: 1px solid #8b6c3a;
}
@media (min-width: 1061px) {
  .campain__main {
    padding: 20px 0;
    font-size: 40px;
  }
}

.campain__text-contents {
  max-width: 221px;
  margin-left: auto;
  margin-right: auto;
  padding-top: 78px;
  position: relative;
}
@media (min-width: 1061px) {
  .campain__text-contents {
    max-width: 606px;
    text-align: center;
    padding-top: 120px;
  }
}

.campain__image {
  margin-top: 24px;
  position: absolute;
  top: 0;
  right: -37px;
  width: 124px;
}
@media (min-width: 1061px) {
  .campain__image {
    margin-top: 46px;
    right: -28px;
    width: 236px;
  }
}

.campain__course {
  letter-spacing: 0.15em;
}
@media (min-width: 1061px) {
  .campain__course {
    font-size: 28px;
    text-align: left;
  }
}

.campain__price {
  display: flex;
  flex-direction: row;
  gap: 12px;
  align-items: center;
}
@media (min-width: 1061px) {
  .campain__price {
    justify-content: flex-start;
    gap: 0;
  }
}

.campain__price-left {
  display: flex;
  flex-direction: column;
}
@media (min-width: 1061px) {
  .campain__price-left {
    text-align: left;
    padding-right: 97px;
  }
}

@media (min-width: 1061px) {
  .ampain__price-left--nomal {
    font-size: 24px;
    line-height: 1;
  }
}

.ampain__price-left--bold {
  font-size: 24px;
}
@media (min-width: 1061px) {
  .ampain__price-left--bold {
    font-size: 40px;
  }
}

.campain__price-center img {
  width: 24px;
  height: 25.41px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media (min-width: 1061px) {
  .campain__price-center img {
    width: 49px;
    height: 51.88px;
  }
}

.campain__price-right {
  color: #8b6c3a;
}
@media (min-width: 1061px) {
  .campain__price-right {
    padding-left: 58px;
  }
}

.ampain__price-right--nomal {
  font-size: 40px;
  line-height: 1.8;
}
@media (min-width: 1061px) {
  .ampain__price-right--nomal {
    font-size: 72px;
  }
}

.ampain__price-right--bold {
  font-size: 72px;
  line-height: 1;
}
@media (min-width: 1061px) {
  .ampain__price-right--bold {
    font-size: 160px;
  }
}

.campain__date {
  margin-top: 16px;
}
@media (min-width: 1061px) {
  .campain__date {
    display: flex;
    gap: 20px;
    justify-content: center;
    align-items: center;
  }
}

.campain__date-title {
  padding: 5px 7px 6px 6px;
  font-size: 14px;
  border: 1px solid #393327;
  text-align: center;
  display: inline-block;
}
@media (min-width: 1061px) {
  .campain__date-title {
    padding: 9px 16px 9px 15px;
    font-size: 18px;
  }
}

.campain__date-text {
  margin-top: 10px;
  letter-spacing: -0.02em;
}
@media (min-width: 1061px) {
  .campain__date-text {
    margin-top: 0;
    font-size: 20px;
  }
}

.campain__button {
  margin-top: 32px;
  text-align: center;
}
@media (min-width: 1061px) {
  .campain__button {
    margin-top: 52px;
    transition: all 0.3s ease;
  }
  .campain__button:hover {
    opacity: 0.7;
  }
}

.campain-button {
  padding: 20px 33px;
  display: inline-block;
  background: linear-gradient(265.98deg, #8b6c3a 23.24%, #b19464 55.28%, #8b6c3a 85.32%, #8b6c3a 85.32%);
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.16);
  border-radius: 2px;
  color: #fff;
  font-weight: 600;
}
@media (min-width: 1061px) {
  .campain-button {
    padding: 26px 68px;
    font-size: 28px;
    letter-spacing: 0.2em;
  }
}

/*==============================
flow
==============================*/
.flow {
  padding-top: 56px;
  padding-bottom: 56px;
  background: #fafafa;
}
@media (min-width: 1061px) {
  .flow {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}

.flow__contents {
  margin-top: 40px;
}
@media (min-width: 1061px) {
  .flow__contents {
    margin-top: 80px;
  }
}

.flow__list {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 1061px) {
  .flow__list {
    flex-direction: row;
    gap: 80px;
  }
}

@media (min-width: 1061px) {
  .flow__item {
    width: calc(33.3% - 53.3333333333px);
  }
}

.flow__text-contents {
  margin-top: 24px;
}

.flow__step {
  line-height: 1;
  color: #8b6c3a;
  letter-spacing: 0.1em;
}

.flow__main {
  margin-top: 16px;
  font-size: 18px;
  font-weight: 600;
}
@media (min-width: 1061px) {
  .flow__main {
    font-size: 22px;
    line-height: 1;
  }
}

.flow__text {
  margin-top: 8px;
  line-height: 1.8;
  letter-spacing: 0.02em;
}
@media (min-width: 1061px) {
  .flow__text {
    margin-top: 16px;
  }
}

/*==============================
qa
==============================*/
.qa {
  padding-top: 56px;
  padding-bottom: 56px;
}
@media (min-width: 1061px) {
  .qa {
    padding-top: 96px;
    padding-bottom: 96px;
  }
}

@media (min-width: 1061px) {
  .qa__inner {
    max-width: 877px;
  }
}

.qa__contents {
  margin-top: 40px;
}
@media (min-width: 1061px) {
  .qa__contents {
    margin-top: 80px;
  }
}

.qa__item {
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #e8e8e8;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.qa__item:first-child {
  padding-top: 0;
}
.qa__item:last-child {
  border-bottom: none;
}
@media (min-width: 1061px) {
  .qa__item {
    gap: 36px;
  }
}

.qa__q {
  display: flex;
  flex-direction: row;
  gap: 13px;
}

.qa__q-icon {
  font-size: 20px;
  line-height: 1;
  color: #8b6c3a;
}

.qa__q-text {
  font-weight: 600;
}
@media (min-width: 1061px) {
  .qa__q-text {
    line-height: 2;
  }
}

.qa__a {
  display: flex;
  flex-direction: row;
  gap: 14px;
}

.qa__a-icon {
  font-size: 20px;
  line-height: 1;
}
@media (min-width: 1061px) {
  .qa__a-icon {
    padding-top: 5px;
  }
}

@media (min-width: 1061px) {
  .qa__a-text {
    line-height: 2;
  }
}

/*==============================
access
==============================*/
.access {
  padding-top: 56px;
  padding-bottom: 56px;
}

.access__inner {
  padding-left: 0;
  padding-right: 0;
}

.access-title {
  padding-left: 20px;
}
@media (min-width: 1061px) {
  .access-title {
    padding-left: 0;
  }
}

.access__contents {
  margin-top: 40px;
}
@media (min-width: 1061px) {
  .access__contents {
    display: flex;
    justify-content: space-between;
    margin-top: 80px;
  }
}

.access__text-contents {
  padding-left: 20px;
  padding-right: 20px;
}
@media (min-width: 1061px) {
  .access__text-contents {
    width: 36.7924528302%;
    padding-left: 0;
    padding-right: 0;
  }
}

.access__shop-name {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.access__shop-name-en {
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
@media (min-width: 1061px) {
  .access__shop-name-en {
    font-size: 24px;
    line-height: 1;
  }
}

.access__shop-name-ja {
  letter-spacing: 0.02em;
  font-size: 14px;
}
@media (min-width: 1061px) {
  .access__shop-name-ja {
    font-size: 16px;
  }
}

.access__shop-info {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 20px;
}
@media (min-width: 1061px) {
  .access__shop-info {
    margin-top: 40px;
    gap: 40px;
  }
}

.access__shop-address {
  letter-spacing: 0.02em;
}
@media (min-width: 1061px) {
  .access__shop-address {
    line-height: 2;
    letter-spacing: 0.1em;
  }
}

.access__shop-walk {
  letter-spacing: 0.02em;
}
@media (min-width: 1061px) {
  .access__shop-walk {
    letter-spacing: 0.1em;
    line-height: 1;
  }
}

.access__shop-tell {
  letter-spacing: 0.1em;
}
@media (min-width: 1061px) {
  .access__shop-tell {
    line-height: 1;
  }
}

.access__shop-time {
  letter-spacing: 0.1em;
}
@media (min-width: 1061px) {
  .access__shop-time {
    line-height: 1;
  }
}

.access__map {
  margin-top: 40px;
}
@media (min-width: 1061px) {
  .access__map {
    width: 49.0566037736%;
    margin-top: 0;
  }
}

/*==============================
footer
==============================*/
.footer {
  padding-top: 32px;
  padding-bottom: 28px;
}
@media (min-width: 1061px) {
  .footer {
    padding-top: 48px;
    padding-bottom: 40px;
  }
}

.footer__contents {
  text-align: center;
}
@media (min-width: 1061px) {
  .footer__contents {
    display: flex;
    justify-content: space-between;
  }
}

.footer__logo img {
  width: 76px;
}
@media (min-width: 1061px) {
  .footer__logo img {
    width: 130px;
  }
}

.footer__link-contents {
  margin-top: 32px;
}
@media (min-width: 1061px) {
  .footer__link-contents {
    margin-top: 0;
  }
}

.footer__nav {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}
@media (min-width: 1061px) {
  .footer__nav {
    flex-direction: row;
    gap: 32px;
  }
}

.footer__nav-link {
  letter-spacing: 0.1em;
  transition: all 0.3s ease;
}
@media (min-width: 1061px) {
  .footer__nav-link {
    font-size: 14px;
    line-height: 1;
    letter-spacing: 0.1em;
  }
  .footer__nav-link:hover {
    color: #8b6c3a;
  }
}

.footer__sns-contents {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  flex-direction: row;
  gap: 24px;
}
@media (min-width: 1061px) {
  .footer__sns-contents {
    justify-content: flex-end;
    margin-top: 40px;
  }
}
.footer__sns-contents a {
  display: inline-block;
  transition: all 0.3s ease;
}
.footer__sns-contents a:hover {
  opacity: 0.7;
}
.footer__sns-contents a img {
  width: 40px;
}

.footer__copyright {
  margin-top: 40px;
}
@media (min-width: 1061px) {
  .footer__copyright {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 64px;
  }
}

.footer__copyright-attention {
  font-size: 12px;
  letter-spacing: 0.02em;
}
@media (min-width: 1061px) {
  .footer__copyright-attention {
    line-height: 1.1;
  }
}

.copyright {
  margin-top: 40px;
  font-size: 12px;
  letter-spacing: 0.1em;
  display: inline-block;
  text-align: center;
  display: block;
}
@media (min-width: 1061px) {
  .copyright {
    margin-top: 0;
    text-align: right;
    line-height: 1.1;
  }
}/*# sourceMappingURL=style.css.map */