@charset "UTF-8";
/* =============================================================
mixin
============================================================= */
/* =============================================================
colors
============================================================= */
/* =============================================================
common - 全体に共通するスタイル
============================================================= */
@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;700&display=swap");
@media screen and (max-width: 767px) {
  .is-pc {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .is-sp {
    display: none;
  }
}
@media screen and (min-width: 1000px) {
  .is-1000px {
    display: none;
  }
}
@media screen and (max-width: 330px) {
  .is-330px {
    display: none;
  }
}
body {
  font-size: 16px;
  color: #393327;
  font-family: "Lora", "Yu Mincho Light", "YuMincho", "Yu Mincho", "游明朝体", "ヒラギノ明朝 ProN", "Hiragino Mincho ProN", sans-serif;
  line-height: 1.6875;
  letter-spacing: 1.5;
}

img {
  width: 100%;
}

.inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 180px;
  box-sizing: content-box;
}
@media screen and (min-width: 768px) and (max-width: 1160px) {
  .inner {
    padding: 0 60px;
  }
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 15px;
  }
}

.section-title {
  text-align: center;
}

.section-sub-title {
  position: relative;
  padding-bottom: 22px;
}
.section-sub-title::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 20px;
  height: 1px;
  background: #393327;
}
@media screen and (max-width: 767px) {
  .section-sub-title {
    font-size: 12px;
  }
}

.section-main-title {
  margin-top: 28px;
  font-size: 32px;
}
@media screen and (max-width: 767px) {
  .section-main-title {
    font-size: 24px;
    margin-top: 15px;
  }
}

.is-gold {
  color: #8B6C3A;
}
.is-gold::after {
  background: #8B6C3A;
}

/* =============================================================
header
============================================================= */
.header {
  background: rgba(57, 51, 39, 0.9);
  height: 100px;
  position: fixed;
  width: 100%;
  box-shadow: 0 3px 3px rgba(0, 0, 0, 0.16);
  z-index: 100;
  top: 0;
  left: 0;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .header {
    height: 80px;
  }
}
@media screen and (max-width: 767px) {
  .header {
    height: 60px;
  }
}

.header-inner {
  display: flex;
  align-items: center;
  height: inherit;
  width: 100%;
  padding: 0 140px;
}
@media screen and (min-width: 768px) and (max-width: 1260px) {
  .header-inner {
    padding: 0 40px;
  }
}
@media screen and (max-width: 767px) {
  .header-inner {
    padding: 0 20px;
  }
}

.header-logo-text {
  color: #fff;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .header-logo-text {
    font-size: 12px;
  }
}

.header-nav {
  display: flex;
  align-items: center;
  margin-left: auto;
}
@media screen and (max-width: 1000px) {
  .header-nav {
    display: none;
  }
}
.header-nav li:not(:first-child) {
  margin-left: 40px;
}
.header-nav li a {
  color: #fff;
  text-decoration: none;
  position: relative;
  transition: all 0.3s ease 0s;
}
.header-nav li a:hover::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #B19464;
}
.header-nav li a.is-active::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 100%;
  height: 2px;
  background: #B19464;
}

.header-button {
  display: flex;
  margin-left: 40px;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .header-button {
    margin-left: auto;
    margin-right: 15px;
  }
}
@media screen and (max-width: 767px) {
  .header-button {
    margin-left: auto;
    margin-right: 30px;
  }
}

.offer-button {
  display: inline-block;
  padding: 10px 50px;
  background: linear-gradient(to bottom, #8B6C3A, #B19464 50%, #8B6C3A 100%);
  color: #fff;
  position: relative;
}
.offer-button:hover {
  background: #fff;
  color: #8B6C3A;
  border: 2px solid #8B6C3A;
  transition: all 0.3s 0s ease;
}
.offer-button::after {
  content: "\f054";
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .offer-button {
    padding: 8px 40px 8px 30px;
    font-size: 16px;
  }
}
@media screen and (max-width: 767px) {
  .offer-button {
    padding: 5px 30px 5px 20px;
    font-size: 14px;
  }
}

.drawer-icon {
  position: fixed;
  right: 16px;
  z-index: 300;
}
.drawer-icon.is-active .drawer-icon__bar1 {
  transform: rotate(-45deg);
  transition: all 0.3s 0s ease;
  top: 8px;
}
.drawer-icon.is-active .drawer-icon__bar2 {
  display: none;
}
.drawer-icon.is-active .drawer-icon__bar3 {
  transform: rotate(45deg);
  transition: all 0.3s 0s ease;
  top: 8px;
}
@media screen and (min-width: 1000px) {
  .drawer-icon {
    display: none;
  }
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .drawer-icon {
    top: 30px;
  }
}
@media screen and (max-width: 767px) {
  .drawer-icon {
    top: 20px;
  }
}

.drawer-icon__bars {
  width: 22px;
  height: 20px;
  display: block;
}

.drawer-icon__bar1,
.drawer-icon__bar2,
.drawer-icon__bar3 {
  position: absolute;
  height: 1px;
  width: 22px;
  background: #fff;
  top: 0;
  left: 0;
}

.drawer-icon__bar1 {
  top: 0;
}

.drawer-icon__bar2 {
  top: 8px;
}

.drawer-icon__bar3 {
  top: 16px;
}

.drawer-content {
  width: 270px;
  height: 100%;
  position: fixed;
  right: 0;
  top: 80px;
  background: #393327;
  z-index: 299;
  transform: translateX(105%);
}
@media screen and (max-width: 767px) {
  .drawer-content {
    top: 60px;
  }
}
.drawer-content.is-active {
  transform: translateX(0);
}
.drawer-content.is-close {
  transform: translateX(200px);
}

.drawer-content__items {
  margin-top: 60px;
  text-align: center;
}

.drawer-content__item a {
  display: block;
  color: #fff;
  text-decoration: none;
  padding: 24px 20px;
  position: relative;
}
.drawer-content__item a::after {
  content: "";
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
  height: 11px;
  background: url(../img/arrow-b@2x.png) no-repeat center center/contain;
}

.drawer-background {
  position: fixed;
  top: 80px;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(177, 148, 100, 0.7);
  z-index: 298;
  display: none;
}
@media screen and (max-width: 767px) {
  .drawer-background {
    top: 60px;
  }
}
.drawer-background.is-active {
  display: block;
}
.drawer-background.is-close {
  display: none;
}

.drawer-sns-items {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}
@media screen and (max-width: 767px) {
  .drawer-sns-items {
    justify-content: center;
  }
}

.drawer-sns-item {
  display: inline-block;
  padding: 8px;
  border-radius: 50%;
  background: #fff;
}
.drawer-sns-item:nth-child(1) {
  margin-right: 20px;
}
.drawer-sns-item:nth-child(2) {
  margin-left: 20px;
}
.drawer-sns-item img {
  width: 30px;
  height: 30px;
}

/* =============================================================
top
============================================================= */
.top {
  background: url(../img/visualsofdana-IfsRTQu6Djk-unsplash.jpg) no-repeat center center/cover;
  height: 820px;
  position: relative;
  filter: brightness(120%);
  opacity: 0.8;
  z-index: -3;
}
@media screen and (max-width: 767px) {
  .top {
    height: 500px;
  }
}

.top-text {
  position: absolute;
  top: 280px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .top-text {
    top: 140px;
  }
}

.top-main-sentence {
  font-size: 50px;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .top-main-sentence {
    font-size: 36px;
  }
}
@media screen and (max-width: 767px) {
  .top-main-sentence {
    font-size: 28px;
  }
}

.top-sub-sentence {
  margin-top: 50px;
  font-size: 28px;
}
@media screen and (min-width: 768px) and (max-width: 1000px) {
  .top-sub-sentence {
    font-size: 24px;
    margin-top: 36px;
  }
}
@media screen and (max-width: 767px) {
  .top-sub-sentence {
    font-size: 16px;
    margin-top: 20px;
  }
}

/* =============================================================
concept
============================================================= */
.concept {
  padding: 80px 0;
  background: url(../img/concept-bg.png) center center/cover;
  position: relative;
  z-index: -2;
}
@media screen and (max-width: 767px) {
  .concept {
    padding: 40px 0;
    background: url(../img/Rectangle\ 127.png) center center/cover;
  }
}

.concept-text {
  margin-top: 40px;
  font-size: 20px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .concept-text {
    margin-top: 24px;
    font-size: 18px;
  }
}

.concept-items {
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  margin: 80px auto 0;
}
@media screen and (max-width: 767px) {
  .concept-items {
    margin: 30px auto 0;
  }
}

.concept-item {
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: rgba(177, 148, 100, 0.2);
  position: relative;
  flex-shrink: 0;
}
.concept-item:nth-child(1) {
  top: 130px;
  margin-right: 20px;
}
@media screen and (max-width: 767px) {
  .concept-item:nth-child(1) {
    margin-right: -40px;
  }
}
@media screen and (max-width: 325px) {
  .concept-item:nth-child(1) {
    margin-right: -57px;
  }
}
.concept-item:nth-child(3) {
  top: 130px;
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .concept-item:nth-child(3) {
    margin-left: -40px;
  }
}
@media screen and (max-width: 325px) {
  .concept-item:nth-child(3) {
    margin-left: -57px;
  }
}
@media screen and (max-width: 767px) {
  .concept-item {
    width: 130px;
    height: 130px;
  }
}

.concept-item-text {
  font-size: 14px;
  white-space: nowrap;
  position: absolute;
  display: inline-block;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}

.concept-item-img {
  width: 168px;
  height: 168px;
  margin: 40px auto 0;
}
@media screen and (max-width: 767px) {
  .concept-item-img {
    width: 100px;
    height: 100px;
    margin: 120px auto 0;
  }
}

.down-arrows {
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .down-arrows {
    margin-top: 14px;
  }
}

.down-arrow {
  margin: 0 auto;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 21px 7.5px 0 7.5px;
  border-color: #b19364 transparent transparent transparent;
}
.down-arrow + .down-arrow {
  margin-top: 10px;
}

.cencept-background {
  position: absolute;
  width: 95%;
  background: #FCF7F0;
  height: 100%;
  opacity: 0.4;
  top: -6%;
  right: 0;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  .cencept-background {
    top: -3%;
  }
}

/* =============================================================
service
============================================================= */
.service {
  padding: 80px 0;
  background: #FFFCF8;
}
@media screen and (max-width: 767px) {
  .service {
    padding: 40px 0;
  }
}

.service-inner {
  width: 970px;
  max-width: 100%;
  margin: 0 auto;
  padding: 0 40px;
}
@media screen and (max-width: 767px) {
  .service-inner {
    padding: 0 20px;
  }
}

.service-items {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .service-items {
    margin-top: 40px;
  }
}

.service-item {
  display: flex;
  align-items: center;
}
.service-item + .service-item {
  margin-top: 45px;
}
@media screen and (max-width: 767px) {
  .service-item {
    display: block;
  }
}

.service-item-img {
  width: 41.2%;
}
@media screen and (max-width: 767px) {
  .service-item-img {
    width: 100%;
  }
}

.service-item-text {
  width: 54.8%;
  margin-left: 4%;
}
@media screen and (max-width: 767px) {
  .service-item-text {
    width: 100%;
    margin-left: 0;
  }
}

.service-item-title {
  font-size: 28px;
  font-weight: 700;
  padding-left: 20px;
  border-left: 1px solid #8B6C3A;
}
@media screen and (max-width: 767px) {
  .service-item-title {
    font-size: 24px;
    margin-top: 20px;
  }
}

.service-item-detail {
  margin-top: 40px;
}
@media screen and (max-width: 767px) {
  .service-item-detail {
    margin-top: 20px;
  }
}

.service-down-arrows {
  margin-top: 40px;
}

/* =============================================================
feature
============================================================= */
.feature {
  padding: 80px 0;
  background: url(../img/Rectangle\ 73.png) center center/cover;
}
@media screen and (max-width: 767px) {
  .feature {
    padding: 40px 0;
  }
}

.feature-items {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .feature-items {
    display: block;
    margin-top: 40px;
  }
}

.feature-item {
  width: calc(33% - 56.6666666667px);
  text-align: center;
  padding: 35px 20px;
  background: #FFFCF8;
}
@media screen and (min-width: 930px) and (max-width: 1320px) {
  .feature-item {
    width: calc(33.3% - 33.3333333333px);
  }
}
@media screen and (min-width: 768px) and (max-width: 930px) {
  .feature-item {
    width: calc(33.3% - 16.6666666667px);
  }
}
@media screen and (max-width: 767px) {
  .feature-item {
    width: 90%;
    margin: 0 auto;
  }
  .feature-item + .feature-item {
    margin-top: 40px;
  }
}

.feature-item-img {
  width: 130px;
  margin: 0 auto;
}

.feature-item-title {
  margin-top: 20px;
  font-size: 20px;
  font-weight: 700;
}

.feature-item-detail {
  margin-top: 20px;
}

/* =============================================================
price
============================================================= */
.price {
  padding: 80px 0;
  background: #FFFCF8;
}
@media screen and (max-width: 767px) {
  .price {
    padding: 40px 0;
  }
}

.price-down-arrows {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .price-down-arrows {
    margin-top: 30px;
  }
}

.price-text {
  margin-top: 40px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .price-text {
    margin-top: 25px;
    font-size: 13px;
  }
}

.price-table-item {
  margin-top: 20px;
}

.table {
  border-collapse: collapse;
  border: 1px solid #8B6C3A;
  background: #FFFFFF;
  width: 100%;
  max-width: 880px;
  margin: 0 auto;
  table-layout: fixed;
}
.table th,
.table td {
  border: 1px solid #8B6C3A;
  padding: 0 24px;
  height: 80px;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .table th,
.table td {
    padding: 0 8px;
  }
}
.table th {
  background: #8B6C3A;
  border: 1px solid #fff;
  color: #fff;
  text-align: center;
  font-weight: 700;
  font-size: 24px;
}
.table th:nth-child(1) {
  width: 40%;
}
@media screen and (max-width: 767px) {
  .table th:nth-child(1) {
    width: 45%;
  }
}
@media screen and (max-width: 767px) {
  .table th {
    font-size: 16px;
    text-align: left;
  }
}
.table td {
  text-align: center;
  background: #FCF7F0;
  font-size: 24px;
}
@media screen and (max-width: 767px) {
  .table td {
    font-size: 16px;
    text-align: left;
  }
}

/* =============================================================
flow
============================================================= */
.flow {
  padding: 80px 0 20px;
  background: #FCF7F0;
  position: relative;
  margin-bottom: calc(8vw + 10px);
}
.flow::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 0;
  height: 0;
  border-width: 8vw 50vw 0 50vw;
  border-style: solid;
  border-color: #FCF7F0 transparent transparent transparent;
}
@media screen and (max-width: 767px) {
  .flow {
    padding: 40px 0 20px;
  }
}

.flow-items {
  margin-top: 80px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  .flow-items {
    margin-top: 40px;
    display: block;
  }
}

.flow-item {
  width: 25.9666666667%;
}
@media screen and (max-width: 767px) {
  .flow-item {
    width: 80%;
    margin: 0 auto;
  }
}

.flow-item-img {
  position: relative;
}

.flow-item-text {
  margin-top: 20px;
  text-align: center;
}

.flow-item-title {
  font-size: 20px;
  font-weight: 700;
}

.flow-item-detail {
  margin-top: 20px;
}

.right-arrow {
  margin-top: 11%;
}

.under-arrow {
  width: 40px;
  height: 28px;
  margin: 20px auto;
}

/* =============================================================
closing
============================================================= */
.closing {
  margin-top: -180px;
  padding: 280px 0 80px;
  background: url(../img/クロージングbg.png) center center/cover;
}
@media screen and (max-width: 767px) {
  .closing {
    margin-top: -220px;
  }
}
@media screen and (max-width: 767px) {
  .closing {
    padding: 280px 0 40px;
  }
}

.closing-content {
  text-align: center;
  padding: 40px 30px;
  background: rgba(177, 148, 100, 0.5);
}
@media screen and (max-width: 767px) {
  .closing-content {
    padding: 25px 10px;
  }
}

.closing-content-main-message {
  font-size: 30px;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .closing-content-main-message {
    font-size: 20px;
  }
}

.closing-content-sub-message {
  margin-top: 15px;
}
@media screen and (max-width: 767px) {
  .closing-content-sub-message {
    font-size: 14px;
  }
}

.closing-button {
  margin-top: 20px;
}

.closing-button-link {
  color: #fff;
  display: inline-block;
  width: 600px;
  max-width: 100%;
  height: 80px;
  line-height: 80px;
  font-size: 30px;
  background: linear-gradient(to bottom, rgb(57, 51, 39), rgba(57, 51, 39, 0.61) 50%, rgb(57, 51, 39) 100%);
  position: relative;
}
.closing-button-link::after {
  content: "\f054";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  right: 30px;
  width: 12px;
  height: 12px;
}
.closing-button-link:hover {
  background: #fff;
  color: #8B6C3A;
  border: 2px solid #8B6C3A;
  transition: all 0.3s 0s ease;
}
@media screen and (max-width: 767px) {
  .closing-button-link {
    width: 80%;
    font-size: 20px;
  }
  .closing-button-link::after {
    right: 5%;
  }
}

/* =============================================================
qa
============================================================= */
.qa {
  padding: 80px 0;
  background: #FFFCF8;
}
@media screen and (max-width: 767px) {
  .qa {
    padding: 40px 0;
  }
}

.qa-items {
  width: 880px;
  max-width: 100%;
  margin: 0 auto;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .qa-items {
    margin-top: 40px;
  }
}

.qa-item {
  padding-bottom: 45px;
  border-bottom: 1px solid #393327;
  position: relative;
}
.qa-item::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 5px;
  height: 5px;
  background: #393327;
  transform: rotate(45deg);
}
.qa-item + .qa-item {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .qa-item {
    padding-bottom: 20px;
  }
}

.qa-box__q {
  margin-left: 20px;
  padding-left: 40px;
  font-size: 20px;
  font-weight: 700;
  position: relative;
}
.qa-box__q::before {
  content: "Q";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #8B6C3A;
}
@media screen and (max-width: 767px) {
  .qa-box__q::before {
    top: 0;
    transform: translateY(0%);
  }
}
@media screen and (max-width: 767px) {
  .qa-box__q {
    font-size: 16px;
    margin-left: 0;
    padding-left: 30px;
  }
}

.qa-box__a {
  margin-left: 20px;
  margin-top: 40px;
  padding-left: 40px;
  position: relative;
}
.qa-box__a::before {
  content: "A";
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  color: #393327;
}
@media screen and (max-width: 767px) {
  .qa-box__a::before {
    top: 0;
    transform: translateY(0%);
  }
}
@media screen and (max-width: 767px) {
  .qa-box__a {
    font-size: 16px;
    margin-top: 20px;
    margin-left: 0;
    padding-left: 30px;
  }
}

.qa-down-arrows {
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .qa-down-arrows {
    margin-top: 30px;
  }
}

/* =============================================================
 profile
============================================================= */
.profile {
  padding: 80px 0 240px;
  position: relative;
  margin-bottom: calc(8vw + 10px);
  background: #fff;
  z-index: 2;
}
.profile::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  width: 0;
  height: 0;
  border-width: 8vw 50vw 0 50vw;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}
@media screen and (max-width: 767px) {
  .profile {
    padding: 40px 0;
  }
}

.profile-contents {
  width: 880px;
  max-width: 100%;
  margin: 60px auto 0;
  position: relative;
}

.profile-content-img {
  width: 33.3%;
  height: 320px;
}

.profile-content {
  width: 66%;
  padding: 30px 20px;
  background: #FCF7F0;
  position: absolute;
  top: 12%;
  left: 31%;
}

.profile-content-name {
  margin-top: 15px;
  vertical-align: middle;
}

.profile-content-name_jp {
  font-size: 22px;
  display: inline-block;
}

.profile-content-name_en {
  margin-left: 20px;
  display: inline-block;
  line-height: 37px;
}

.profile-content-certification {
  margin-top: 35px;
}

.profile-content-certification_box {
  margin-top: 10px;
  padding: 20px 10px;
  background: #fff;
}

.profile-content-bg {
  position: absolute;
  width: 92%;
  height: 81.1%;
  background: #B19464;
  z-index: -1;
  right: -50px;
  top: 120px;
}

.sp-profile-content-img {
  width: 66%;
  position: relative;
  margin: 50px auto 0;
}

.sp-profile-content-img-bg {
  position: absolute;
  background: #B19464;
  opacity: 0.6;
  width: 100%;
  height: 95%;
  top: -8%;
  left: -8%;
  z-index: -3;
}

.sp-profile-content-detail {
  margin-top: 12px;
}

.sp-profile-content-position {
  font-size: 14px;
}

.sp-profile-content-name {
  position: relative;
  padding-bottom: 10px;
}
.sp-profile-content-name::before {
  position: absolute;
  content: "";
  height: 1px;
  width: 135px;
  background: #393327;
  bottom: 0;
  left: 0;
}
.sp-profile-content-name::after {
  content: "";
  position: absolute;
  bottom: -1px;
  left: 134px;
  width: 3px;
  height: 3px;
  background: #393327;
  transform: rotate(45deg);
}

.sp-profile-content-name_jp {
  font-size: 18px;
  margin-top: 8px;
}

.sp-profile-content-name_en {
  font-size: 14px;
  margin-top: 8px;
}

.sp-profile-content-certification {
  margin-top: 20px;
}

.sp-profile-content-certification_box {
  margin-top: 10px;
}

.sp-profile-content-certification-item {
  padding-left: 20px;
  position: relative;
  font-size: 14px;
}
.sp-profile-content-certification-item::before {
  position: absolute;
  content: "・";
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.sp-profile-content-certification-item + .sp-profile-content-certification-item {
  margin-top: 8px;
}

/* =============================================================
footer
============================================================= */
.footer {
  padding: 30px 0;
  background: #393327;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 20px 0;
  }
}

.footer-content {
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer-content {
    display: block;
  }
}

.footer-left {
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .footer-left {
    text-align: center;
    font-size: 18px;
  }
}

.footer-right {
  margin-left: auto;
}

.footer-menu-items {
  display: flex;
}
@media screen and (max-width: 767px) {
  .footer-menu-items {
    display: block;
    margin-top: 30px;
  }
}

.footer-menu-item + .footer-menu-item {
  margin-left: 24px;
}
@media screen and (max-width: 767px) {
  .footer-menu-item + .footer-menu-item {
    margin-left: 0;
    margin-top: 20px;
  }
}
@media screen and (max-width: 767px) {
  .footer-menu-item {
    text-align: center;
  }
}

.footer-menu-item-link {
  color: #fff;
  display: inline-block;
  position: relative;
}
.footer-menu-item-link:hover::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  height: 2px;
  background: #B19464;
}

.footer-sns-items {
  display: flex;
  justify-content: right;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  .footer-sns-items {
    justify-content: center;
  }
}

.footer-sns-item {
  display: inline-block;
  padding: 8px;
  border-radius: 50%;
  background: #fff;
}
.footer-sns-item + .footer-sns-item {
  margin-left: 20px;
}
.footer-sns-item img {
  width: 30px;
  height: 30px;
}

.footer-copyright {
  margin-top: 20px;
  text-align: right;
  font-size: 13px;
}
@media screen and (max-width: 767px) {
  .footer-copyright {
    text-align: center;
  }
}

.footer__totop {
  position: fixed;
  right: 24px;
  bottom: 24px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease 0s;
  z-index: 100;
}
.footer__totop i {
  font-size: 50px;
  color: #393327;
}
.footer__totop.is-show {
  opacity: 1;
  visibility: visible;
}