@charset "UTF-8";
html {
  font-size: 62.5%;
}
@media screen and (max-width: 750px) {
  html {
    font-size: 1.33333vw;
  }
}
html * {
  box-sizing: border-box;
}

body {
  font-family: "游ゴシック体", YuGothic, "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック", "Yu Gothic", "Noto Sans JP", sans-serif;
  color: #222222;
}

a {
  color: #bc8d7c;
}

p,
a,
li,
dd,
dt,
th,
td {
  font-size: 1.8rem;
  line-height: 2.25;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
  p,
  a,
  li,
  dd,
  dt,
  th,
  td {
    font-size: 2.8rem;
    line-height: 1.75;
    letter-spacing: 0.02em;
  }
}

.lwrap {
  width: 100%;
  max-width: 1130px;
  margin: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}
@media screen and (max-width: 750px) {
  .lwrap {
    padding-left: 4rem;
    padding-right: 4rem;
  }
}

img {
  max-width: 100%;
}

.tel a {
  pointer-events: none;
}
@media screen and (max-width: 750px) {
  .tel a {
    pointer-events: auto;
  }
}

/* float
*******************/
.fl-l {
  float: left;
}
.fl-r {
  float: right;
}

/* clear
*******************/
.clearfix::after {
  content: "";
  display: block;
  clear: both;
}

/* txt 揃え
*******************/
.alignCenter {
  text-align: center;
}
.alignLeft {
  text-align: left;
}
.alignRight {
  text-align: right;
}

/* flex
*******************/
.flex {
  display: flex;
}
.flex.col-2 {
  flex-wrap: wrap;
}
.flex.col-2 .item {
  width: 48%;
  margin-right: 4%;
}
.flex.col-2 .item:nth-child(2n) {
  margin-right: 0;
}
.flex.col-3 {
  flex-wrap: wrap;
}
.flex.col-3 .item {
  width: 32%;
  margin-right: 2%;
}
.flex.col-3 .item:nth-child(3n) {
  margin-right: 0;
}
.flex.col-4 {
  flex-wrap: wrap;
}
.flex.col-4 .item {
  width: 23.5%;
  margin-right: 2%;
}
.flex.col-4 .item:nth-child(4n) {
  margin-right: 0;
}
.flex.col-5 {
  flex-wrap: wrap;
}
.flex.col-5 .item {
  width: 18.4%;
  margin-right: 2%;
}
.flex.col-5 .item:nth-child(5n) {
  margin-right: 0;
}

/* border
*******************/
.border-solid-top {
  border-top: 1px solid #cccccc;
}
.border-solid-left {
  border-left: 1px solid #cccccc;
}
.border-solid-right {
  border-right: 1px solid #cccccc;
}
.border-solid-bottom {
  border-bottom: 1px solid #cccccc;
}
.border-dashed-top {
  border-top: 1px dashed #cccccc;
}
.border-dashed-left {
  border-left: 1px dashed #cccccc;
}
.border-dashed-right {
  border-right: 1px dashed #cccccc;
}
.border-dashed-bottom {
  border-bottom: 1px dashed #cccccc;
}
.border-dotted-top {
  border-top: 1px dotted #cccccc;
}
.border-dotted-left {
  border-left: 1px dotted #cccccc;
}
.border-dotted-right {
  border-right: 1px dotted #cccccc;
}
.border-dotted-bottom {
  border-bottom: 1px dotted #cccccc;
}

/* circle
*******************/
.circle {
  display: inline-block;
  width: 10rem;
  height: 10rem;
  border-radius: 100%;
  background-color: #cccccc;
  text-align: center;
  position: relative;
}
.circle > span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
}

/* square
*******************/
.square {
  display: inline-block;
  width: 10rem;
  height: 10rem;
  background-color: #cccccc;
  text-align: center;
  position: relative;
}
.square > span {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
}

/* 角丸
*******************/
.round-15 {
  border-radius: 1.5rem;
}
.round-30 {
  border-radius: 3rem;
}
.round-60 {
  border-radius: 6rem;
}
.round-90 {
  border-radius: 9rem;
}
.round-100 {
  border-radius: 100%;
}

/* box shadow
*******************/
.b-shadow {
  box-shadow: 0.5rem 0.5rem 0.4rem rgba(0, 0, 0, 0.2);
}

/* text shadow
*******************/
.t-shadow {
  text-shadow: 0.43rem 0.43rem 0.323rem rgba(0, 0, 0, 0.6);
}

/* marker
*******************/
.marker-yellow {
  background: linear-gradient(transparent 0%, #ffee58 0%);
}

/*******************
スマホ
******************/
.sec {
  padding-top: 15rem;
  padding-bottom: 15rem;
}
@media screen and (max-width: 750px) {
  .sec {
    padding-top: 7rem;
    padding-bottom: 8rem;
  }
}

.lead {
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}
@media screen and (max-width: 750px) {
  .lead {
    text-align: start;
  }
}

.logo a {
  display: inline-block;
  color: #583827;
  text-decoration: none;
  transition: all 0.3s ease;
}
.logo a:hover {
  opacity: 0.8;
}
.logo a .main {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  font-size: 3.4rem;
}
.logo a .sub {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 400;
  margin-left: 1.3rem;
  letter-spacing: normal;
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  background-color: #fff;
  box-shadow: 0 3px 6px rgba(34, 34, 34, 0.16);
  z-index: 9990;
  transition: all 0.3s ease;
}
.header_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 4rem;
  transition: all 0.3s ease;
}
.header_logo {
  position: relative;
  z-index: 9999;
}

/*******************
トップページファーストビュー
******************/
@media screen and (min-width: 751px) {
  .home .header:not(.active) {
    background-color: transparent;
    box-shadow: 0 0 0 rgba(34, 34, 34, 0.16);
  }
  .home .header:not(.active) .header_logo a {
    color: #fff;
  }
  .home .header:not(.active) .gnav_menu_item_link.-insta img {
    filter: none;
  }
  .home .header:not(.active) .gnav_menu_item_link.-twitter img {
    filter: none;
  }
  .home .header.nav-open {
    background-color: #fff;
  }
  .home .header.nav-open .header_container {
    padding: 1rem 4rem;
  }
  .home .header.nav-open .header_logo a {
    color: #583827;
  }
}
/*******************
全ページ追従後の余白
******************/
.header.active .header_container {
  padding: 1rem 4rem;
}

@media (min-width: 751px) and (max-width: 1700px) {
  .header_container {
    padding: 1.675rem 4rem;
  }
  .header_logo a .main {
    font-size: 2.8rem;
  }
  .header_logo a .sub {
    font-size: 1.68rem;
  }
}
@media (min-width: 1101px) and (max-width: 1530px) {
  .header_logo a .main,
  .header_logo a .sub {
    display: block;
    margin: 0;
    line-height: 1.4;
  }
}
/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  .header {
    height: 9rem;
  }
  .header_container {
    height: 100%;
    padding: 1rem 4rem;
  }
}
.header_btn {
  display: none;
  position: relative;
  width: 40px;
  height: 40px;
  z-index: 9999;
  background-color: transparent;
  border: none;
  cursor: pointer;
}
.header_btn span {
  position: absolute;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 2px;
  background-color: #583827;
  border-radius: 100vh;
}
.header_btn span:first-child {
  top: 10px;
}
.header_btn span:nth-child(2) {
  top: 50%;
  transform: translate(-50%, -50%);
}
.header_btn span:last-child {
  bottom: 10px;
}
.header_btn.active span {
  background-color: #583827 !important;
}
.header_btn.active span:first-child {
  transform: translate(-50%, 10px) rotate(-45deg);
  transition: transform 0.3s ease;
}
.header_btn.active span:nth-child(2) {
  opacity: 0;
  transition: opacity 0.3s ease;
}
.header_btn.active span:last-child {
  transform: translate(-50%, -8px) rotate(45deg);
  transition: transform 0.3s ease;
}

@media (min-width: 751px) and (max-width: 1280px) {
  .header_container {
    padding: 1.675rem 1.5rem;
  }
  .header.active .header_container {
    padding: 1rem 1.5rem;
  }
}
@media (min-width: 751px) and (max-width: 1100px) {
  .header_container {
    padding: 1.675rem 4rem;
  }
  .header.active .header_container {
    padding: 1rem 4rem;
  }
  .header_btn {
    display: block;
  }
}
/*******************
トップページファーストビュー
******************/
@media screen and (min-width: 751px) {
  .home .header:not(.active) .header_btn span {
    background-color: #fff;
  }
}
.gnav {
  flex-grow: 1;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 3.5rem;
}
.gnav_menu {
  display: flex;
  justify-content: flex-end;
  gap: 2.9rem;
}
.gnav_menu_item {
  line-height: 1;
}
.gnav_menu_item_link {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  color: #583827;
  text-decoration: none;
  line-height: 1;
  font-size: 1.6rem;
}
.gnav_menu_item_link::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background-color: #583827;
  transition: 0.6s;
  position: relative;
  bottom: -6px;
}
.gnav_menu_item_link:hover::after {
  width: 100%;
}
.gnav_menu_item_link.active::after {
  width: 100%;
}
.gnav_menu_item_link.-insta img {
  width: 2.2rem;
  filter: brightness(0) saturate(100%) invert(22%) sepia(6%) saturate(4459%) hue-rotate(336deg) brightness(93%) contrast(88%);
}
.gnav_menu_item_link.-twitter img {
  width: 2.46rem;
  filter: brightness(0) saturate(100%) invert(22%) sepia(6%) saturate(4459%) hue-rotate(336deg) brightness(93%) contrast(88%);
}

/*******************
トップページファーストビュー
******************/
@media screen and (min-width: 751px) {
  .home .header:not(.active) .gnav_menu_item_link {
    color: #fff;
  }
}
@media screen and (max-width: 1700px) {
  .gnav {
    gap: 1rem;
    padding-left: 1rem;
  }
  .gnav_menu {
    gap: 2rem;
  }
}
@media (min-width: 751px) and (max-width: 1400px) {
  .gnav_menu_item_link {
    font-size: 1.6rem;
  }
}
@media (min-width: 751px) and (max-width: 1280px) {
  .gnav_menu_item_link {
    font-size: 1.4rem;
  }
}
@media (min-width: 751px) and (max-width: 1100px) {
  .gnav {
    position: fixed;
    top: 0;
    left: 100%;
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
    height: 100%;
    background-color: #fff;
    padding: 12rem 1.5rem 1.5rem;
    z-index: 9990;
    transition: all 0.3s ease;
  }
  .gnav_menu {
    flex-direction: column;
    justify-content: flex-start;
    width: 100%;
  }
  .gnav_menu_item_link {
    display: block;
    border-bottom: dotted 1px #707070;
    color: #583827 !important;
    text-decoration: none;
    padding: 3rem 2rem;
    font-size: 1.8rem;
  }
  .gnav_menu_item_link::before {
    content: "▶︎";
    color: #bc8d7c;
    margin-right: 1em;
  }
  .gnav_menu_item:first-of-type .gnav_menu_item_link {
    border-top: dotted 1px #707070;
  }
  .gnav.active {
    left: 0;
  }
}
/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  .gnav {
    display: none;
  }
}
.header_sns_menu {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4rem;
  margin-top: 0.3rem;
}
.header_sns_menu_item {
  line-height: 1;
}
.header_sns_menu_item_link {
  color: #583827;
  line-height: 1;
}
.header_sns_menu_item_link i {
  font-size: 2.6rem;
}

/*******************
トップページファーストビュー
******************/
@media screen and (min-width: 751px) {
  .home .header:not(.active) .header_sns_menu_item_link {
    color: #fff;
  }
}
@media (min-width: 1101px) and (max-width: 1700px) {
  .header_sns_menu {
    gap: 1rem;
    margin-left: 1rem;
  }
}
@media (min-width: 751px) and (max-width: 1100px) {
  .header_sns_menu {
    gap: 3rem;
  }
  .header_sns_menu_item_link {
    font-size: 3.6rem;
    color: #583827 !important;
  }
  .header_sns_menu_item_link i {
    font-size: 3.6rem;
  }
}
/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  .header_sns_menu {
    display: none;
  }
}
.footer {
  background-color: #ebe5db;
}
.footer_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1750px;
  padding: 8rem 1.5rem 8.5rem;
  margin-left: auto;
  margin-right: auto;
}
.footer_logo {
  margin-bottom: 1rem;
}
.footer_right {
  margin-top: 1rem;
}
.footer_nav {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3.5rem;
}
.footer_nav_menu {
  display: grid;
  gap: 2rem;
}
.footer_nav_menu_item {
  line-height: 1.9;
  font-size: 1.6rem;
}
.footer_nav_menu_item_link {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  color: inherit;
  text-decoration: none;
  transition: all 0.3s ease;
  font-size: 1.6rem;
  line-height: 1.7;
}
.footer_nav_menu_item_link:hover {
  color: #bc8d7c;
}
.footer_nav_menu_item_link::before {
  content: "▶︎";
  color: #bc8d7c;
  margin-right: 1rem;
}

.copyright {
  border-top: solid 1px #707070;
}
.copyright > * {
  font-size: 1.2rem;
  line-height: 3rem;
  text-align: end;
  padding-right: 3rem;
}

@media (min-width: 750px) and (max-width: 1800px) {
  .footer_container {
    padding: 8rem 3.5rem 8.5rem;
  }
}
@media (min-width: 750px) and (max-width: 1100px) {
  .footer_left {
    width: 100%;
  }
  .footer_right {
    width: 100%;
    margin-top: 4rem;
  }
}
/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  .footer_left {
    width: 100%;
    text-align: center;
    margin-bottom: 10rem;
  }
  .footer_right {
    margin-top: 0;
  }
  .footer_container {
    padding: 10rem 4rem;
  }
  .footer_nav_menu {
    width: 100%;
  }
  .footer_nav_menu_item {
    font-size: 2.8rem;
  }
  .footer_nav_menu_item_link {
    font-size: 2.8rem;
  }
  .copyright {
    padding-bottom: 13rem;
  }
  .copyright > * {
    font-size: 2.1rem;
    line-height: 5.25rem;
  }
}
.btn, .btn_container button {
  display: inline-block;
  font-size: 1.6rem;
  color: #fff;
  text-decoration: none;
  width: 100%;
  max-width: 43rem;
  background-color: #bc8d7c;
  line-height: 1;
  text-align: center;
  border: solid 1px #bc8d7c;
  border-radius: 1rem;
  padding: 2.6rem 1rem;
  transition: all 0.3s ease;
}
.btn::after, .btn_container button::after {
  content: "▶︎";
  margin-left: 1em;
  transition: all 0.3s ease;
}
.btn:hover, .btn_container button:hover {
  background-color: rgb(205.2575757576, 170.3636363636, 157.7424242424);
  border-color: rgb(205.2575757576, 170.3636363636, 157.7424242424);
}
.btn:hover::after, .btn_container button:hover::after {
  transform: translateX(-4px);
}

/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  .btn, .btn_container button {
    font-size: 2.8rem;
    max-width: none;
    padding: 4.55rem 1rem;
  }
}
.btn_container {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 2rem 8rem;
}

.title {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  font-size: 3rem;
  font-weight: 500;
  color: #bc8d7c;
  text-align: center;
  margin-bottom: 8rem;
  letter-spacing: 0.1em;
}
.title span {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
}
.title span::after {
  content: "";
  width: 100%;
  border-bottom: solid 1px #bc8d7c;
  margin-top: 2rem;
}

/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  .title {
    font-size: 4.375rem;
    letter-spacing: 0.02em;
  }
}
.grid {
  display: grid;
  gap: 1rem 1rem;
}
.grid-1 {
  grid-template-columns: repeat(1, 1fr);
}
@media screen and (max-width: 750px) {
  .grid-1 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media screen and (max-width: 750px) {
  .grid-2 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}
@media screen and (max-width: 750px) {
  .grid-3 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}
@media screen and (max-width: 750px) {
  .grid-4 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.grid-5 {
  grid-template-columns: repeat(5, 1fr);
}
@media screen and (max-width: 750px) {
  .grid-5 {
    grid-template-columns: repeat(1, 1fr);
  }
}
.grid-6 {
  grid-template-columns: repeat(6, 1fr);
}
@media screen and (max-width: 750px) {
  .grid-6 {
    grid-template-columns: repeat(1, 1fr);
  }
}

.page-header {
  position: relative;
  width: 100%;
  height: 40rem;
  margin-top: 9.65rem;
  background-position: center 15%;
  background-size: cover;
  background-image: url(../images/00_common/page-header_bg.jpg);
  background-repeat: no-repeat;
}
.page-header_ttl {
  position: absolute;
  bottom: 18%;
  right: 17%;
}
.page-header_ttl span {
  display: block;
}
.page-header_ttl .en {
  position: relative;
  right: 55%;
  margin-bottom: -5%;
}
@media screen and (max-width: 750px) {
  .page-header {
    margin-top: 9rem;
  }
  .page-header_ttl {
    right: 5rem;
  }
}

.reading .page-header {
  background-position: center 25%;
  background-image: url(../images/20_reading/reading_header.jpg);
}
.reading .page-header_ttl {
  bottom: 18%;
  right: 16%;
}
.reading .page-header_ttl .en {
  right: 55%;
  margin-bottom: -5%;
}
.reading .page-header_ttl .en img {
  width: 27rem;
}
.reading .page-header_ttl .ja img {
  width: 32rem;
}
@media screen and (max-width: 750px) {
  .reading .page-header_ttl {
    right: 5rem;
  }
  .reading .page-header_ttl .en {
    right: 5rem;
  }
}

.lesson .page-header {
  background-position: center 25%;
  background-image: url(../images/30_lesson/lesson_header.jpg);
}
.lesson .page-header_ttl {
  bottom: 18%;
  right: 16%;
}
.lesson .page-header_ttl .en {
  right: 10%;
  margin-bottom: -2%;
}
.lesson .page-header_ttl .en img {
  width: 19rem;
}
.lesson .page-header_ttl .ja img {
  width: 56rem;
}
@media screen and (max-width: 750px) {
  .lesson .page-header_ttl {
    right: 5rem;
  }
  .lesson .page-header_ttl .en {
    right: 5rem;
  }
}

.works .page-header {
  background-position: center 47%;
  background-image: url(../images/40_works/works_header.jpg);
}
.works .page-header_ttl {
  bottom: 12%;
  right: 15.5%;
}
.works .page-header_ttl .en {
  right: 33%;
  margin-bottom: -10%;
}
.works .page-header_ttl .en img {
  width: 18rem;
}
.works .page-header_ttl .ja img {
  width: 39rem;
}
@media screen and (max-width: 750px) {
  .works .page-header_ttl {
    right: 5rem;
  }
  .works .page-header_ttl .en {
    right: 5rem;
    margin-bottom: -6%;
  }
}

.faq .page-header {
  background-position: center 76%;
  background-image: url(../images/50_faq/faq_header.jpg);
}
.faq .page-header_ttl {
  bottom: 20%;
  right: 13%;
}
.faq .page-header_ttl .en {
  right: 13%;
  margin-bottom: -1%;
}
.faq .page-header_ttl .en img {
  width: 15rem;
}
.faq .page-header_ttl .ja img {
  width: 36.6rem;
}
@media screen and (max-width: 750px) {
  .faq .page-header_ttl {
    right: 5rem;
  }
  .faq .page-header_ttl .en {
    display: inline-block;
    right: -5rem;
  }
}

.contact .page-header_ttl,
.completion .page-header_ttl {
  right: 15%;
}
.contact .page-header_ttl .en,
.completion .page-header_ttl .en {
  right: 32%;
  margin-bottom: 1%;
}
.contact .page-header_ttl .en img,
.completion .page-header_ttl .en img {
  width: 23rem;
}
.contact .page-header_ttl .ja img,
.completion .page-header_ttl .ja img {
  width: 40rem;
}
@media screen and (max-width: 750px) {
  .contact .page-header_ttl,
  .completion .page-header_ttl {
    right: 5rem;
  }
  .contact .page-header_ttl .en,
  .completion .page-header_ttl .en {
    right: 5rem;
  }
}

.privacy .page-header_ttl {
  right: 14.5%;
}
.privacy .page-header_ttl .en {
  right: 22%;
  margin-bottom: 0%;
}
.privacy .page-header_ttl .en img {
  width: 48rem;
}
.privacy .page-header_ttl .ja img {
  height: 5.5rem;
}
@media screen and (max-width: 750px) {
  .privacy .page-header_ttl {
    right: 5rem;
  }
  .privacy .page-header_ttl .en {
    right: 5rem;
  }
}

.sitemap .page-header_ttl {
  right: 16.5%;
}
.sitemap .page-header_ttl .en {
  right: 47%;
  margin-bottom: 2%;
}
.sitemap .page-header_ttl .en img {
  width: 23rem;
}
.sitemap .page-header_ttl .ja img {
  width: 34rem;
}
@media screen and (max-width: 750px) {
  .sitemap .page-header_ttl {
    right: 5rem;
  }
  .sitemap .page-header_ttl .en {
    right: 5rem;
  }
}

.terms .page-header {
  background-position: center 47%;
  background-image: url(../images/40_works/works_header.jpg);
}
.terms .page-header_ttl {
  bottom: 12%;
  right: 3%;
}
.terms .page-header_ttl .en {
  right: 47%;
  margin-bottom: -8%;
}
.terms .page-header_ttl .en img {
  width: 41.3rem;
}
.terms .page-header_ttl .ja img {
  width: 31.1rem;
}
@media screen and (max-width: 750px) {
  .terms .page-header_ttl {
    right: 5rem;
  }
  .terms .page-header_ttl .en {
    right: 9rem;
    margin-bottom: -6%;
  }
  .terms .page-header_ttl .ja {
    text-align: right;
  }
}

.table {
  width: 100%;
}
.table tr {
  border-bottom: solid 1px #999999;
}
.table tr:first-of-type {
  border-top: solid 1px #999999;
}
.table th {
  font-weight: 400;
  text-align: start;
  width: 20%;
  background-color: #faf8f4;
  padding: 0.5rem 1rem 0.5rem 3rem;
}
.table td {
  padding: 0.5rem 1rem 0.5rem 4rem;
}

/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  .table th {
    width: 40%;
    padding: 1rem 2rem;
  }
  .table td {
    padding: 1rem 2rem;
  }
}
.sp-nav {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  background-color: #bc8d7c;
  z-index: 9990;
}
.sp-nav_menu {
  display: flex;
  position: relative;
  z-index: 9999;
}
.sp-nav_menu_item {
  width: 33.3333333333%;
}
.sp-nav_menu_item_link {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  gap: 1.6rem;
  width: 100%;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  font-size: 2.1rem;
  height: 12.5rem;
  color: #fff;
  background-color: #bc8d7c;
  text-decoration: none;
  line-height: 1;
  text-transform: capitalize;
  padding-bottom: 2rem;
}
.sp-nav_menu_item_link::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  width: 1px;
  height: 92%;
  background-color: #cccccc;
  transform: translateY(-50%);
}
.sp-nav_menu_item_link img {
  width: auto;
  height: 4rem;
}
.sp-nav_menu_item:last-child .sp-nav_menu_item_link {
  background-color: #583827;
}
.sp-nav_menu_item:last-child .sp-nav_menu_item_link::after {
  content: none;
}

.sp-gnav {
  position: fixed;
  top: 9rem;
  left: 100%;
  width: 100%;
  height: calc(100% - 9rem - 12.5rem);
  background-color: #fff;
  padding: 0 4rem 1rem;
  z-index: 9990;
  transition: all 0.3s ease;
  overflow: scroll;
}
.sp-gnav_menu {
  width: 100%;
}
.sp-gnav_menu_item_link {
  display: block;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  font-size: 3.2rem;
  border-bottom: dotted 1px #707070;
  color: #583827;
  text-decoration: none;
  padding: 2rem 2rem;
}
.sp-gnav_menu_item_link::before {
  content: "▶︎";
  color: #bc8d7c;
  margin-right: 1em;
}
.sp-gnav_menu_item:first-of-type .gnav_menu_item_link {
  border-top: dotted 1px #707070;
}
.sp-gnav_close {
  position: fixed;
  top: 2rem;
  right: 2rem;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}
.sp-gnav_close img {
  width: 5rem;
}
.sp-gnav.active {
  left: 0;
}
.sp-gnav.active .sp-gnav_close {
  opacity: 1;
  visibility: visible;
}

@media screen and (max-width: 750px) {
  .sp-gnav_menu {
    padding-top: 5rem;
  }
}
.top-mv {
  position: relative;
}
.top-mv_img {
  position: relative;
  width: 100%;
  height: 100vh;
}
.top-mv_img > img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.top-mv_txt {
  position: absolute;
  top: 25%;
  left: 8%;
}
.top-mv_txt img {
  width: 42.5vw;
  max-width: 81.5rem;
}
.top-mv_scroll {
  position: absolute;
  bottom: 0.5rem;
  left: 50%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  color: #fff;
  text-decoration: none;
  transform: translateX(-50%);
}
.top-mv_scroll::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  width: 1.1rem;
  height: 7.3rem;
  background-position: center center;
  background-size: contain;
  background-image: url(../images/10_top/icon_scroll.svg);
  background-repeat: no-repeat;
  animation: top-mv_scroll_move 1.5s ease-in-out infinite;
}

@keyframes top-mv_scroll_move {
  0% {
    transform: translateY(0);
  }
  30% {
    transform: translateY(1rem);
  }
  100% {
    transform: translateY(0);
  }
}
/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  .top-mv {
    margin-top: 9rem;
  }
  .top-mv_img {
    height: calc(100vh - 9rem - 12.5rem);
  }
  .top-mv_txt {
    top: 20rem;
    left: 5rem;
  }
  .top-mv_txt img {
    width: 50rem;
    max-width: none;
  }
}
.top-consept_ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  font-size: 3.6rem;
  font-weight: 500;
  color: #583827;
  text-align: center;
  line-height: 2;
  letter-spacing: 0.1em;
  margin-bottom: 5rem;
}

/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  .top-consept_ttl {
    font-size: 3.4rem;
    text-align: start;
    line-height: 1.75;
    margin-bottom: 3rem;
  }
}
.top-profile {
  background-color: #faf8f4;
}
.top-profile_flex {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.top-profile_flex_index {
  position: relative;
  width: 41%;
  padding-top: 2%;
}
.top-profile_flex_index::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 95%;
  height: 100%;
  max-height: 42rem;
  border-top-right-radius: 10rem;
  background-color: #ebe5db;
  z-index: 0;
}
.top-profile_flex_index > * {
  position: relative;
  z-index: 1;
}
.top-profile_flex_index_ttl {
  display: flex;
  justify-content: flex-end;
  align-items: flex-start;
  margin-bottom: 9rem;
}
.top-profile_flex_index_ttl .sub {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  font-size: 7rem;
  font-weight: 400;
  color: #bc8d7c;
}
.top-profile_flex_index_ttl .main {
  position: relative;
  top: 7rem;
  right: 5rem;
  display: inline-block;
}
.top-profile_flex_index_ttl .main img {
  width: 20rem;
}
.top-profile_flex_index_img {
  position: relative;
  width: 100%;
  max-width: 27rem;
  margin-left: auto;
  margin-right: 0;
}
.top-profile_flex_index_img::before {
  content: "";
  display: block;
  aspect-ratio: 270/380;
}
.top-profile_flex_index_img > img {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 1rem;
}
.top-profile_flex_content {
  width: 53%;
}
.top-profile_flex_content_ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  font-size: 3rem;
  font-weight: 500;
  color: #bc8d7c;
  margin-bottom: 4.6rem;
}
.top-profile_flex_content_txt:not(:last-child) {
  margin-bottom: 4rem;
}

/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  .top-profile_flex {
    row-gap: 8rem;
  }
  .top-profile_flex_index {
    position: relative;
    width: 100%;
    padding-top: 6%;
  }
  .top-profile_flex_index::before {
    width: 73%;
    height: 30rem;
    max-height: none;
  }
  .top-profile_flex_index_ttl {
    justify-content: flex-start;
    padding-left: 11rem;
    padding-bottom: 7rem;
    margin-bottom: 7rem;
  }
  .top-profile_flex_index_img {
    width: 20rem;
    position: absolute;
    top: 6rem;
    right: 9.5rem;
  }
  .top-profile_flex_content {
    width: 100%;
    padding-left: 4rem;
    padding-right: 4rem;
  }
  .top-profile_flex_content_ttl {
    font-size: 4.2rem;
    line-height: 1.5;
    margin-bottom: 3rem;
  }
}
.top-blog .grid {
  gap: 2.5rem 2.5rem;
  margin-left: auto;
  margin-right: auto;
}
.top-blog_item_link {
  position: relative;
  display: inline-block;
  width: 100%;
  transition: all 0.3s ease;
}
.top-blog_item_link:hover {
  opacity: 0.8;
}
.top-blog_item_link > img {
  width: 100%;
  height: 100%;
  max-width: 700px;
  object-fit: cover;
}

.top-bnr .lwrap {
  max-width: 700px;
}

.top-bnr__flex {
  display: flex;
  flex-wrap: wrap;
  gap: 3rem;
}

.top-bnr__item {
  width: calc(50% - 1.5rem);
}
.top-bnr__item:nth-child(3) {
  width: 100%;
}
.top-bnr__item a {
  display: block;
  text-decoration: none;
  color: #222222;
  text-align: center;
  line-height: 1;
  transition: 0.3s;
}
@media (hover: hover) {
  .top-bnr__item a:hover {
    opacity: 0.8;
  }
}
.top-bnr__item p {
  line-height: 1.5;
}

/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  .top-bnr__flex {
    gap: 5rem;
  }
  .top-bnr__item {
    width: 100%;
  }
}
.method {
  padding-top: 13rem;
  padding-bottom: 13rem;
}
.method .title {
  margin-bottom: 6rem;
}
.method .lead:first-of-type {
  margin-bottom: 4.5rem;
}
.method_flex {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4rem;
  max-width: 93rem;
  margin: 0 auto 6.8rem;
}
.method_txt {
  margin-bottom: 8rem;
}
.method .btn_container {
  justify-content: space-between;
  gap: 3rem;
}
.method .btn_container .btn {
  max-width: 33rem;
}

/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  .method_flex {
    gap: 2rem;
  }
  .method .btn_container .btn {
    max-width: 100%;
    width: 100%;
  }
}
.obsession {
  padding-top: 13rem;
  padding-bottom: 11.5rem;
}
.obsession .grid {
  gap: 3.5rem 7rem;
  margin-bottom: 7rem;
}
.obsession_item {
  position: relative;
  width: 100%;
  background-color: #ebe5db;
  border-radius: 100%;
}
.obsession_item::before {
  content: "";
  display: block;
  padding-top: 100%;
}
.obsession_item > * {
  position: absolute;
  top: 50%;
  left: 50%;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  font-size: 3rem;
  color: #583827;
  text-align: center;
  white-space: nowrap;
  line-height: 1.6;
  transform: translate(-50%, -50%);
}
.obsession_txt {
  margin-bottom: 6rem;
}

@media (min-width: 751px) and (max-width: 1100px) {
  .obsession_item span {
    font-size: 2.65vw;
  }
}
/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  .obsession .grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
  }
  .obsession_item {
    width: calc(50% - 3.5rem);
  }
  .obsession_item > * {
    font-size: 2.8rem;
  }
}
.flow {
  padding-top: 13rem;
  padding-bottom: 13rem;
  background-color: #FAF8F4;
}
.flow .title {
  margin-bottom: 8.5rem;
}
.flow_contents {
  max-width: 84rem;
  margin-left: auto;
  margin-right: auto;
}
.flow_contents:not(:last-of-type) {
  margin-bottom: 10rem;
}
.flow_ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  font-size: 3.6rem;
  color: #583827;
  font-weight: 600;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 6rem;
}
.flow_chart {
  display: grid;
  gap: 7rem;
  list-style: none;
  margin-bottom: 5rem;
}
.flow_chart_item {
  position: relative;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  font-size: 2.4rem;
  color: #583827;
  text-align: center;
  border: solid 1px #bc8d7c;
  border-radius: 1rem;
  padding: 1rem 1rem;
  background-color: #fff;
}
.flow_chart_item a {
  font-size: 2.4rem;
  color: #583827;
}
.flow_chart_item:last-child {
  background-color: #ebe5db;
  border: none;
}
.flow_chart_item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: calc(100% + 2rem);
  left: 50%;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3rem 3rem 0 3rem;
  border-color: #bc8d7c transparent transparent transparent;
  transform: translateX(-50%);
}
.flow_remarks li {
  letter-spacing: 0.1em;
}
.flow_remarks li::before {
  content: "※";
}
.flow_price {
  border: solid 1px #bc8d7c;
  border-radius: 1rem;
  padding: 1.5rem 1rem;
  margin-bottom: 4rem;
}
.flow_price_txt {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 600;
  line-height: 2.25;
  letter-spacing: 0.1em;
  color: #583827;
  text-align: center;
}

/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  .flow_chart_item {
    font-size: 2.8rem;
  }
  .flow_chart_item a {
    font-size: 2.8rem;
  }
  .flow_remarks li {
    letter-spacing: 0.02em;
  }
  .flow_price_txt {
    font-size: 3.15rem;
    letter-spacing: 0.02em;
  }
}
.reading .c-explanation .title {
  margin-bottom: 6rem;
}
.reading .c-explanation .example_ttl {
  margin-bottom: 2rem;
}
.reading .c-explanation .table {
  margin-bottom: 3rem;
}
.reading .c-explanation .table a {
  text-decoration: none;
  color: #222222;
}
.reading .c-explanation .-paypal {
  background-color: #F8E81E;
  border-color: #F8E81E;
  color: #222222;
  max-width: 33rem;
}
.reading .c-explanation .-paypal::after {
  content: none;
}
.reading .paypal {
  margin-bottom: 3rem;
  text-align: center;
}
.reading .pp-M3M2TLZMATU3E {
  text-align: center;
  border: none;
  border-radius: 6rem;
  min-width: 30rem;
  padding: 0 2rem;
  height: 5rem;
  font-weight: bold;
  background-color: #FFD140;
  color: #000000;
  font-size: 2rem;
  line-height: 1.5rem;
  cursor: pointer;
  margin-bottom: 1rem;
}

@media screen and (max-width: 750px) {
  .reading .c-explanation .-paypal {
    max-width: 100%;
  }
  .reading .pp-M3M2TLZMATU3E {
    font-size: 3rem;
    height: 7rem;
    min-width: 36rem;
  }
}
.style {
  padding-top: 13rem;
  padding-bottom: 16rem;
}
.style_img {
  margin-bottom: 10rem;
}
.style .title {
  margin-bottom: 6rem;
}
.style .lead:first-of-type {
  margin-bottom: 7.5rem;
}
.style .btn_container {
  margin-top: 6rem;
}
.style_point {
  margin-bottom: 10rem;
}
.style_point_ttl {
  position: relative;
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  font-size: 2.4rem;
  color: #583827;
  background-color: #ebe5db;
  border-radius: 1rem;
  padding: 1.6rem 1rem 1.3rem 16rem;
  letter-spacing: 0.1em;
  margin-bottom: 3rem;
}
.style_point_ttl::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 16rem;
  height: 16rem;
  display: inline-block;
  vertical-align: middle;
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.style_point_ttl:nth-of-type(1)::before {
  left: 0.5rem;
  width: 12.7rem;
  background-image: url(../images/30_lesson/icn-style01.png);
}
.style_point_ttl:nth-of-type(2)::before {
  width: 14.2rem;
  left: 2rem;
  background-image: url(../images/30_lesson/icn-style02.png);
}
.style_point_ttl:nth-of-type(3)::before {
  background-image: url(../images/30_lesson/style3.png);
}
.style_point_txt {
  letter-spacing: 0.1em;
}
.style_point_txt:not(:last-of-type) {
  margin-bottom: 12.5rem;
}
.style .example_ttl {
  margin-bottom: 3rem;
}
.style .example_ttl + p {
  margin-bottom: 4rem;
}

/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  .style_point_ttl {
    font-size: 2.8rem;
    letter-spacing: 0.02em;
  }
  .style_point_txt {
    letter-spacing: 0.02em;
  }
}
.works .sec-first {
  padding-top: 12rem;
  padding-bottom: 13rem;
}
.works .sec-first .lead:first-of-type {
  margin-bottom: 4rem;
}
.works .sec-first .lead:last-of-type {
  margin-bottom: 6rem;
}

/*******************
スマホ
******************/
.profile {
  padding-top: 0;
  padding-bottom: 9rem;
}
.profile .title {
  margin-bottom: 5.5rem;
}

/*******************
スマホ
******************/
.example {
  padding-top: 0;
  padding-bottom: 13rem;
}
.example_contents:not(:last-of-type) {
  margin-bottom: 7rem;
}
.example_ttl {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  font-size: 2.4rem;
  color: #583827;
  background-color: #ebe5db;
  border-radius: 1rem;
  padding: 2.7rem 3rem;
  margin-bottom: 4rem;
}

/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  .example_ttl {
    font-size: 2.8rem;
  }
}
body.faq .sec-first {
  padding-top: 12rem;
  padding-bottom: 13rem;
}
body.faq .sec-first .lead {
  margin-bottom: 6rem;
}

/*******************
スマホ
******************/
.sec-faq {
  padding-top: 10rem;
  padding-bottom: 6rem;
  margin-bottom: 17rem;
}

/*******************
スマホ
******************/
.faq-accordion:not(:last-of-type) {
  margin-bottom: 1.5rem;
}
.faq-accordion_ttl {
  position: relative;
  font-weight: 700;
  color: #583827;
  background-color: #ebe5db;
  border-radius: 1rem;
  padding-left: 3rem;
  cursor: pointer;
}
.faq-accordion_ttl::before {
  content: "Q";
  font-size: 2.8rem;
  color: #bc8d7c;
  margin-right: 1.8rem;
}
.faq-accordion_ttl::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 2rem;
  display: inline-block;
  vertical-align: middle;
  width: 3rem;
  height: 3rem;
  background-position: center center;
  background-size: 1.4rem 2.4rem;
  background-image: url(../images/50_faq/icon_faq-accordion_+.svg);
  background-repeat: no-repeat;
  background-color: #fff;
  border-radius: 0.5rem;
  transform: translateY(-50%);
  transition: all 0.3s ease;
}
.faq-accordion_ttl.active::after {
  background-size: 1.2rem 1.2rem;
  background-image: url(../images/50_faq/icon_faq-accordion_-.svg);
}
.faq-accordion_txt {
  letter-spacing: 0.1em;
  padding-top: 1rem;
  padding-bottom: 2rem;
}
.faq-accordion:not(:first-of-type) .faq-accordion_txt {
  display: none;
}

/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  .faq-accordion:not(:first-of-type) {
    margin-bottom: 3rem;
  }
  .faq-accordion_ttl {
    display: flex;
    align-items: center;
    padding: 2rem 5rem 2rem 2rem;
  }
  .faq-accordion_ttl::before {
    font-size: 4.2rem;
  }
  .faq-accordion_ttl::after {
    right: 1rem;
  }
  .faq-accordion_txt {
    letter-spacing: 0.02em;
    padding-top: 2rem;
  }
}
.contact .sec-first {
  padding-top: 7rem;
  padding-bottom: 13rem;
}
.contact .sec-first .lead:first-of-type {
  margin-bottom: 4rem;
}
.contact .sec-first .lead:last-of-type {
  margin-bottom: 6rem;
}
.contact_caution {
  border: solid 1px #583827;
  padding: 2rem 3rem;
  margin-bottom: 7rem;
}
.contact_caution_ttl {
  font-size: 1.8rem;
  line-height: 2.25;
}
.contact_caution_list li {
  letter-spacing: 0.05em;
}
.contact_caution_list li::before {
  content: "●";
}

/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  .contact_caution_ttl {
    font-size: 3.15rem;
  }
}
.contact_form {
  padding-top: 11.5rem;
  padding-bottom: 10rem;
  margin-bottom: 17rem;
}
.contact_form .title {
  margin-bottom: 3.5rem;
}
.contact_form table {
  width: 100%;
  margin-bottom: 5rem;
}
.contact_form table tr {
  border-bottom: solid 1px #999999;
}
.contact_form table tr:first-of-type {
  border-top: solid 1px #999999;
}
.contact_form table th {
  font-weight: 700;
  color: #583827;
  text-align: start;
  vertical-align: middle;
  width: 33%;
  background-color: #ebe5db;
  padding: 1rem 1.5rem 1rem 3rem;
  line-height: 1;
}
.contact_form table th.vtop {
  vertical-align: top;
  padding-top: 2.7rem;
}
.contact_form table td {
  vertical-align: middle;
  background-color: #fff;
  padding: 1.8rem 2rem;
  line-height: 1;
}

span.req {
  background-color: #bc8d7c;
  padding: 0.35rem 0.8rem;
  margin-left: 1rem;
  line-height: 1;
  display: inline-block;
}
span.req::before {
  content: "必須";
  display: inline-block;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}
@media screen and (max-width: 750px) {
  span.req::before {
    font-size: 1.8rem;
    position: relative;
    top: -0.5rem;
  }
}

/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  .contact_form table th,
  .contact_form table td {
    display: block;
    width: 100%;
    padding: 3rem;
  }
}
input,
textarea {
  width: 100% !important;
  background-color: #eeeeee;
  border-radius: 0.5rem;
  padding: 0.2rem 1rem;
  line-height: 2.25;
}

textarea {
  height: 16rem !important;
}

.wpcf7-radio {
  display: grid;
  line-height: 1.7;
}
.wpcf7-radio label > span {
  position: relative;
  padding-left: 2.4rem;
}
.wpcf7-radio label > span::before, .wpcf7-radio label > span::after {
  content: "";
  position: absolute;
  top: 50%;
  border-radius: 100%;
  transform: translateY(-50%);
}
.wpcf7-radio label > span::before {
  left: 0;
  width: 1.6rem;
  height: 1.6rem;
  border: solid 1px #222222;
}
.wpcf7-radio label > span::after {
  left: 0.4rem;
  width: 1rem;
  height: 1rem;
  border-color: #bc8d7c;
  background-color: #bc8d7c;
  opacity: 0;
}
.wpcf7-radio .mfp_checked span::after {
  opacity: 1;
}
.wpcf7-radio input[type=radio] {
  display: none;
}
.wpcf7-radio input[type=radio]:checked + span::after {
  opacity: 1;
}
@media screen and (max-width: 750px) {
  .wpcf7-radio label > span {
    padding-left: 5rem;
  }
  .wpcf7-radio label > span::before {
    width: 2.8rem;
    height: 2.8rem;
  }
  .wpcf7-radio label > span::after {
    left: 0.6rem;
    width: 2rem;
    height: 2rem;
  }
}

/*******************
送信完了画面
******************/
.completion .sec {
  padding-top: 8rem;
  padding-bottom: 12.5rem;
}
.completion .sec .title {
  margin-bottom: 6rem;
  line-height: 1.35;
}
@media screen and (max-width: 750px) {
  .completion .sec .title {
    font-size: 3.8rem;
  }
}

/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  input,
  textarea {
    font-size: 3.2rem;
    padding: 1.5rem;
  }
  textarea {
    height: 26rem !important;
  }
  .wpcf7-list-item {
    margin-bottom: 1.5rem;
  }
  .wpcf7-list-item:last-child {
    margin-bottom: 0;
  }
}
.privacy .sec {
  padding-top: 7rem;
}
.privacy_content * {
  font-size: 1.8rem;
  line-height: 2.25;
}
.privacy_content h2 {
  color: #583827;
  margin-top: 9rem;
  margin-bottom: 2rem;
}
.privacy_content ul li::before {
  content: "●";
}

/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  .privacy_content * {
    font-size: 2.8rem;
    line-height: 2;
  }
}
.sec-sitemap {
  padding-top: 8.5rem;
  padding-bottom: 17rem;
}

/*******************
スマホ
******************/
.sitemap_contents {
  display: flex;
  flex-wrap: wrap;
  padding-top: 1.4rem;
  padding-bottom: 1.4rem;
  border-bottom: dashed 1px #999999;
}
.sitemap_contents:first-of-type {
  border-top: dashed 1px #999999;
}
.sitemap_contents dt {
  width: 34%;
  padding-left: 3rem;
}
.sitemap_contents dt a {
  font-family: "游明朝体", "Yu Mincho", YuMincho, "Noto Serif JP", serif;
  color: #583827;
  text-decoration: none;
}
.sitemap_contents dt a::before {
  content: "▶︎";
  color: #bc8d7c;
  margin-right: 1rem;
}
.sitemap_contents dd {
  width: 66%;
}

/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  .sitemap_contents {
    padding-top: 3rem;
    padding-bottom: 3rem;
  }
  .sitemap_contents dt {
    width: 100%;
    padding-left: 0;
    margin-bottom: 1rem;
  }
  .sitemap_contents dd {
    width: 100%;
  }
}
.terms_wrap .example_ttl {
  margin-bottom: 3rem;
}
.terms_wrap dl:not(:last-child) {
  margin-bottom: 8rem;
}
.terms_wrap dt {
  margin-bottom: 1rem;
  font-weight: 600;
}
.terms_wrap dd:not(:last-child) {
  margin-bottom: 4rem;
}
.terms_wrap ul {
  list-style: disc;
  margin-left: 2rem;
}
/*******************
スマホ
******************/
@media screen and (max-width: 750px) {
  .terms_wrap ul {
    margin-left: 3rem;
  }
}
.sp {
  display: none !important;
}

@media screen and (max-width: 750px) {
  .pc {
    display: none !important;
  }
  .sp {
    display: block !important;
  }
}
.c-white {
  color: #fff !important;
}

.bg-white {
  background-color: #fff !important;
}

.bc-white {
  border-color: #fff !important;
}

.c-black {
  color: #222222 !important;
}

.bg-black {
  background-color: #222222 !important;
}

.bc-black {
  border-color: #222222 !important;
}

.c-brown {
  color: #bc8d7c !important;
}

.bg-brown {
  background-color: #bc8d7c !important;
}

.bc-brown {
  border-color: #bc8d7c !important;
}

.c-deep-brown {
  color: #583827 !important;
}

.bg-deep-brown {
  background-color: #583827 !important;
}

.bc-deep-brown {
  border-color: #583827 !important;
}

.c-light-brown {
  color: #ebe5db !important;
}

.bg-light-brown {
  background-color: #ebe5db !important;
}

.bc-light-brown {
  border-color: #ebe5db !important;
}

.c-light {
  color: #faf8f4 !important;
}

.bg-light {
  background-color: #faf8f4 !important;
}

.bc-light {
  border-color: #faf8f4 !important;
}

.pt-0 {
  padding-top: 0rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-0 {
    padding-top: 0rem !important;
  }
}

.pt-5 {
  padding-top: 0.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-5 {
    padding-top: 0.5rem !important;
  }
}

.pt-10 {
  padding-top: 1rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-10 {
    padding-top: 1rem !important;
  }
}

.pt-15 {
  padding-top: 1.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-15 {
    padding-top: 1.5rem !important;
  }
}

.pt-20 {
  padding-top: 2rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-20 {
    padding-top: 2rem !important;
  }
}

.pt-25 {
  padding-top: 2.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-25 {
    padding-top: 2.5rem !important;
  }
}

.pt-30 {
  padding-top: 3rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-30 {
    padding-top: 3rem !important;
  }
}

.pt-35 {
  padding-top: 3.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-35 {
    padding-top: 3.5rem !important;
  }
}

.pt-40 {
  padding-top: 4rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-40 {
    padding-top: 4rem !important;
  }
}

.pt-45 {
  padding-top: 4.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-45 {
    padding-top: 4.5rem !important;
  }
}

.pt-50 {
  padding-top: 5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-50 {
    padding-top: 5rem !important;
  }
}

.pt-55 {
  padding-top: 5.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-55 {
    padding-top: 5.5rem !important;
  }
}

.pt-60 {
  padding-top: 6rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-60 {
    padding-top: 6rem !important;
  }
}

.pt-65 {
  padding-top: 6.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-65 {
    padding-top: 6.5rem !important;
  }
}

.pt-70 {
  padding-top: 7rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-70 {
    padding-top: 7rem !important;
  }
}

.pt-75 {
  padding-top: 7.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-75 {
    padding-top: 7.5rem !important;
  }
}

.pt-80 {
  padding-top: 8rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-80 {
    padding-top: 8rem !important;
  }
}

.pt-85 {
  padding-top: 8.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-85 {
    padding-top: 8.5rem !important;
  }
}

.pt-90 {
  padding-top: 9rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-90 {
    padding-top: 9rem !important;
  }
}

.pt-95 {
  padding-top: 9.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-95 {
    padding-top: 9.5rem !important;
  }
}

.pt-100 {
  padding-top: 10rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-100 {
    padding-top: 10rem !important;
  }
}

.pt-105 {
  padding-top: 10.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-105 {
    padding-top: 10.5rem !important;
  }
}

.pt-110 {
  padding-top: 11rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-110 {
    padding-top: 11rem !important;
  }
}

.pt-115 {
  padding-top: 11.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-115 {
    padding-top: 11.5rem !important;
  }
}

.pt-120 {
  padding-top: 12rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-120 {
    padding-top: 12rem !important;
  }
}

.pt-125 {
  padding-top: 12.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-125 {
    padding-top: 12.5rem !important;
  }
}

.pt-130 {
  padding-top: 13rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-130 {
    padding-top: 13rem !important;
  }
}

.pt-135 {
  padding-top: 13.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-135 {
    padding-top: 13.5rem !important;
  }
}

.pt-140 {
  padding-top: 14rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-140 {
    padding-top: 14rem !important;
  }
}

.pt-145 {
  padding-top: 14.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-145 {
    padding-top: 14.5rem !important;
  }
}

.pt-150 {
  padding-top: 15rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pt-150 {
    padding-top: 15rem !important;
  }
}

.pb-0 {
  padding-bottom: 0rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-0 {
    padding-bottom: 0rem !important;
  }
}

.pb-5 {
  padding-bottom: 0.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-5 {
    padding-bottom: 0.5rem !important;
  }
}

.pb-10 {
  padding-bottom: 1rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-10 {
    padding-bottom: 1rem !important;
  }
}

.pb-15 {
  padding-bottom: 1.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-15 {
    padding-bottom: 1.5rem !important;
  }
}

.pb-20 {
  padding-bottom: 2rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-20 {
    padding-bottom: 2rem !important;
  }
}

.pb-25 {
  padding-bottom: 2.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-25 {
    padding-bottom: 2.5rem !important;
  }
}

.pb-30 {
  padding-bottom: 3rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-30 {
    padding-bottom: 3rem !important;
  }
}

.pb-35 {
  padding-bottom: 3.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-35 {
    padding-bottom: 3.5rem !important;
  }
}

.pb-40 {
  padding-bottom: 4rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-40 {
    padding-bottom: 4rem !important;
  }
}

.pb-45 {
  padding-bottom: 4.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-45 {
    padding-bottom: 4.5rem !important;
  }
}

.pb-50 {
  padding-bottom: 5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-50 {
    padding-bottom: 5rem !important;
  }
}

.pb-55 {
  padding-bottom: 5.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-55 {
    padding-bottom: 5.5rem !important;
  }
}

.pb-60 {
  padding-bottom: 6rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-60 {
    padding-bottom: 6rem !important;
  }
}

.pb-65 {
  padding-bottom: 6.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-65 {
    padding-bottom: 6.5rem !important;
  }
}

.pb-70 {
  padding-bottom: 7rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-70 {
    padding-bottom: 7rem !important;
  }
}

.pb-75 {
  padding-bottom: 7.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-75 {
    padding-bottom: 7.5rem !important;
  }
}

.pb-80 {
  padding-bottom: 8rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-80 {
    padding-bottom: 8rem !important;
  }
}

.pb-85 {
  padding-bottom: 8.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-85 {
    padding-bottom: 8.5rem !important;
  }
}

.pb-90 {
  padding-bottom: 9rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-90 {
    padding-bottom: 9rem !important;
  }
}

.pb-95 {
  padding-bottom: 9.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-95 {
    padding-bottom: 9.5rem !important;
  }
}

.pb-100 {
  padding-bottom: 10rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-100 {
    padding-bottom: 10rem !important;
  }
}

.pb-105 {
  padding-bottom: 10.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-105 {
    padding-bottom: 10.5rem !important;
  }
}

.pb-110 {
  padding-bottom: 11rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-110 {
    padding-bottom: 11rem !important;
  }
}

.pb-115 {
  padding-bottom: 11.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-115 {
    padding-bottom: 11.5rem !important;
  }
}

.pb-120 {
  padding-bottom: 12rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-120 {
    padding-bottom: 12rem !important;
  }
}

.pb-125 {
  padding-bottom: 12.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-125 {
    padding-bottom: 12.5rem !important;
  }
}

.pb-130 {
  padding-bottom: 13rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-130 {
    padding-bottom: 13rem !important;
  }
}

.pb-135 {
  padding-bottom: 13.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-135 {
    padding-bottom: 13.5rem !important;
  }
}

.pb-140 {
  padding-bottom: 14rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-140 {
    padding-bottom: 14rem !important;
  }
}

.pb-145 {
  padding-bottom: 14.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-145 {
    padding-bottom: 14.5rem !important;
  }
}

.pb-150 {
  padding-bottom: 15rem !important;
}

@media screen and (max-width: 750px) {
  .sp-pb-150 {
    padding-bottom: 15rem !important;
  }
}

.mt-0 {
  margin-top: 0rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-0 {
    margin-top: 0rem !important;
  }
}

.mt-5 {
  margin-top: 0.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-5 {
    margin-top: 0.5rem !important;
  }
}

.mt-10 {
  margin-top: 1rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-10 {
    margin-top: 1rem !important;
  }
}

.mt-15 {
  margin-top: 1.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-15 {
    margin-top: 1.5rem !important;
  }
}

.mt-20 {
  margin-top: 2rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-20 {
    margin-top: 2rem !important;
  }
}

.mt-25 {
  margin-top: 2.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-25 {
    margin-top: 2.5rem !important;
  }
}

.mt-30 {
  margin-top: 3rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-30 {
    margin-top: 3rem !important;
  }
}

.mt-35 {
  margin-top: 3.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-35 {
    margin-top: 3.5rem !important;
  }
}

.mt-40 {
  margin-top: 4rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-40 {
    margin-top: 4rem !important;
  }
}

.mt-45 {
  margin-top: 4.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-45 {
    margin-top: 4.5rem !important;
  }
}

.mt-50 {
  margin-top: 5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-50 {
    margin-top: 5rem !important;
  }
}

.mt-55 {
  margin-top: 5.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-55 {
    margin-top: 5.5rem !important;
  }
}

.mt-60 {
  margin-top: 6rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-60 {
    margin-top: 6rem !important;
  }
}

.mt-65 {
  margin-top: 6.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-65 {
    margin-top: 6.5rem !important;
  }
}

.mt-70 {
  margin-top: 7rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-70 {
    margin-top: 7rem !important;
  }
}

.mt-75 {
  margin-top: 7.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-75 {
    margin-top: 7.5rem !important;
  }
}

.mt-80 {
  margin-top: 8rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-80 {
    margin-top: 8rem !important;
  }
}

.mt-85 {
  margin-top: 8.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-85 {
    margin-top: 8.5rem !important;
  }
}

.mt-90 {
  margin-top: 9rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-90 {
    margin-top: 9rem !important;
  }
}

.mt-95 {
  margin-top: 9.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-95 {
    margin-top: 9.5rem !important;
  }
}

.mt-100 {
  margin-top: 10rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-100 {
    margin-top: 10rem !important;
  }
}

.mt-105 {
  margin-top: 10.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-105 {
    margin-top: 10.5rem !important;
  }
}

.mt-110 {
  margin-top: 11rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-110 {
    margin-top: 11rem !important;
  }
}

.mt-115 {
  margin-top: 11.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-115 {
    margin-top: 11.5rem !important;
  }
}

.mt-120 {
  margin-top: 12rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-120 {
    margin-top: 12rem !important;
  }
}

.mt-125 {
  margin-top: 12.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-125 {
    margin-top: 12.5rem !important;
  }
}

.mt-130 {
  margin-top: 13rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-130 {
    margin-top: 13rem !important;
  }
}

.mt-135 {
  margin-top: 13.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-135 {
    margin-top: 13.5rem !important;
  }
}

.mt-140 {
  margin-top: 14rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-140 {
    margin-top: 14rem !important;
  }
}

.mt-145 {
  margin-top: 14.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-145 {
    margin-top: 14.5rem !important;
  }
}

.mt-150 {
  margin-top: 15rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mt-150 {
    margin-top: 15rem !important;
  }
}

.mb-0 {
  margin-bottom: 0rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-0 {
    margin-bottom: 0rem !important;
  }
}

.mb-5 {
  margin-bottom: 0.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-5 {
    margin-bottom: 0.5rem !important;
  }
}

.mb-10 {
  margin-bottom: 1rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-10 {
    margin-bottom: 1rem !important;
  }
}

.mb-15 {
  margin-bottom: 1.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-15 {
    margin-bottom: 1.5rem !important;
  }
}

.mb-20 {
  margin-bottom: 2rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-20 {
    margin-bottom: 2rem !important;
  }
}

.mb-25 {
  margin-bottom: 2.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-25 {
    margin-bottom: 2.5rem !important;
  }
}

.mb-30 {
  margin-bottom: 3rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-30 {
    margin-bottom: 3rem !important;
  }
}

.mb-35 {
  margin-bottom: 3.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-35 {
    margin-bottom: 3.5rem !important;
  }
}

.mb-40 {
  margin-bottom: 4rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-40 {
    margin-bottom: 4rem !important;
  }
}

.mb-45 {
  margin-bottom: 4.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-45 {
    margin-bottom: 4.5rem !important;
  }
}

.mb-50 {
  margin-bottom: 5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-50 {
    margin-bottom: 5rem !important;
  }
}

.mb-55 {
  margin-bottom: 5.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-55 {
    margin-bottom: 5.5rem !important;
  }
}

.mb-60 {
  margin-bottom: 6rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-60 {
    margin-bottom: 6rem !important;
  }
}

.mb-65 {
  margin-bottom: 6.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-65 {
    margin-bottom: 6.5rem !important;
  }
}

.mb-70 {
  margin-bottom: 7rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-70 {
    margin-bottom: 7rem !important;
  }
}

.mb-75 {
  margin-bottom: 7.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-75 {
    margin-bottom: 7.5rem !important;
  }
}

.mb-80 {
  margin-bottom: 8rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-80 {
    margin-bottom: 8rem !important;
  }
}

.mb-85 {
  margin-bottom: 8.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-85 {
    margin-bottom: 8.5rem !important;
  }
}

.mb-90 {
  margin-bottom: 9rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-90 {
    margin-bottom: 9rem !important;
  }
}

.mb-95 {
  margin-bottom: 9.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-95 {
    margin-bottom: 9.5rem !important;
  }
}

.mb-100 {
  margin-bottom: 10rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-100 {
    margin-bottom: 10rem !important;
  }
}

.mb-105 {
  margin-bottom: 10.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-105 {
    margin-bottom: 10.5rem !important;
  }
}

.mb-110 {
  margin-bottom: 11rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-110 {
    margin-bottom: 11rem !important;
  }
}

.mb-115 {
  margin-bottom: 11.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-115 {
    margin-bottom: 11.5rem !important;
  }
}

.mb-120 {
  margin-bottom: 12rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-120 {
    margin-bottom: 12rem !important;
  }
}

.mb-125 {
  margin-bottom: 12.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-125 {
    margin-bottom: 12.5rem !important;
  }
}

.mb-130 {
  margin-bottom: 13rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-130 {
    margin-bottom: 13rem !important;
  }
}

.mb-135 {
  margin-bottom: 13.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-135 {
    margin-bottom: 13.5rem !important;
  }
}

.mb-140 {
  margin-bottom: 14rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-140 {
    margin-bottom: 14rem !important;
  }
}

.mb-145 {
  margin-bottom: 14.5rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-145 {
    margin-bottom: 14.5rem !important;
  }
}

.mb-150 {
  margin-bottom: 15rem !important;
}

@media screen and (max-width: 750px) {
  .sp-mb-150 {
    margin-bottom: 15rem !important;
  }
}