@charset "utf-8";

.is-sp {
  display: none;
}

header {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans",
    sans-serif;
}

.site-discription {
  display: none;
}

.site-header {
  padding-top: 0;
}

.site-branding {
  background: #eb5e00;
  color: #fff;
  height: 80px;
  margin-bottom: 0;
}

.site-branding .inner {
  display: flex;
}

.site-branding .right {
  margin-left: auto;
}

.site-branding .header-list {
  display: flex;
  margin-left: 20px;
}

.header-list li {
  width: 80px;
  border-right: 1px solid #fff;
}

.header-list .favorite {
  border-left: 1px solid #fff;
}

.header-list a,
.header-list .menu {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 15px 0;
  height: 80px;
  padding: 0 5px;
}

.header-list a span,
.header-list .menu span {
  font-size: 12px;
  color: #fff;
}

.header-list .menu.bg {
  background: #616874;
}

.header-list .menu {
  padding: 0;
}

.site-branding .right li {
  margin-left: 0;
}

header .info p {
  font-size: 12px;
}

header .info span {
  font-size: 20px;
  font-weight: bold;
  margin-left: 5px;
  letter-spacing: 0.08em;
}

header .gnavi li a {
  font-weight: bold;
  color: #222;
  height: 100%;
  line-height: 50px;
}

header .gnavi {
  height: 50px;
}

.gnavi ul {
  height: 50px;
}

.gnavi li {
  position: relative;
}

.gnavi li::after {
  position: absolute;
  content: "";
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: #cccccc;
}

.gnavi li:first-of-type::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 1px;
  height: 20px;
  background: #cccccc;
}

/* メニュー */
.Button {
  position: relative;
  z-index: 30;
  height: 100%;
  width: 100%;
  border: none;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 25px 0;
  cursor: pointer;
}

.Button .bar {
  position: relative;
  width: 20px;
}

.Button-Line__Top {
  position: absolute;
  top: -4px;
  width: 20px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s;
}

.Button-Line__Top__isOpen {
  transform: translateY(5.5px) rotate(45deg);
}

.Button-Line__Medium {
  width: 20px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s;
  position: absolute;
  top: 2px;
}

.Button-Line__Medium__isOpen {
  opacity: 0;
}

.Button-Line__Bottom {
  position: absolute;
  top: 8px;
  width: 20px;
  height: 2px;
  background-color: #fff;
  transition: all 0.3s;
}

.Button-Line__Bottom__isOpen {
  transform: translateY(-7.5px) rotate(-45deg);
}

.Button.isOpen .menu-open {
  display: none;
  transition: all 0.3s;
}

.Button .menu-close {
  display: none;
  transition: all 0.3s;
}

.Button.isOpen .menu-close {
  display: block;
  transition: all 0.3s;
}

.Overlay {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  width: 0;
  height: 0;
  background-color: rgba(0, 0, 0, 0.4);
  opacity: 0;
  transition: opacity 0.3s;
  top: 132px;
}

.Overlay__isOpen {
  width: 100vw;
  height: 100vh;
  opacity: 1;
}

.Menu {
  position: fixed;
  top: 132px;
  right: 0;
  z-index: 20;
  width: 80%;
  max-width: 800px;
  height: 100vh;
  background-color: #fff;
  transform: translateX(100%);
  transition: all 0.5s;
  z-index: 101;
  overflow-y: scroll;
}

.Menu-Header {
  width: 100%;
  height: 60px;
  background-color: #6ba6e7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: bold;
  font-size: 32px;
}

.Menu-List {
  padding: 14px 0 200px;
}

.Menu-List-Item {
  border-bottom: 1px solid #ccc;
  /* padding-top: 16px;
    padding-bottom: 16px;
    padding-left: 32px; */
  font-weight: bold;
  position: relative;
}

.Menu-List-Item a {
  padding: 16px 30px;
  display: block;
}

.Menu-List .Menu-List-Item:nth-of-type(2) {
  margin-top: 20px;
}

.Menu-List-Item::after {
  content: "";
  position: absolute;
  background: url(/assets/images/header/icon-arrow.png) no-repeat center center /
    contain;
  width: 8px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  right: 30px;
}

.Menu-Top ul {
  padding: 0 10px;
}

.Menu-Top li {
  border: 1px solid #999999;
  border-radius: 8px;
  position: relative;
}

.Menu-Top li::after {
  content: "";
  position: absolute;
  background: url(/assets/images/header/icon-arrow.png) no-repeat center center /
    contain;
  width: 8px;
  height: 12px;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
}

.Menu-Top li.contact::after {
  background: url(/assets/images/header/icon-arrow02.png) no-repeat center
    center / contain;
}

.Menu-Top li + li {
  margin-top: 10px;
}

.Menu-Top li a {
  display: flex;
  align-items: center;
  gap: 0 15px;
  color: #eb5e00;
  font-weight: bold;
  padding: 13px 18px;
}

.Menu-Top li.contact {
  border: none;
}

.Menu-Top li.contact a {
  color: #fff;
}

.Menu-Top li.contact {
  background: #eb5e00;
}

button {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  background: transparent;
  padding: 0;
  margin: 0;
  border-radius: 0;
  text-align: inherit;
  text-transform: inherit;
}

.Menu-isOpen {
  transform: translateX(0);
}

.IsScrollAllowed {
  overflow: hidden;
}

.slide {
  padding-top: 0;
}

.slick-dots li {
  margin: 0 !important;
}

.slick-dots li button:before {
  font-size: 12px !important;
}

.front .front-header h1 {
  font-weight: normal;
}

.linebox {
  border-radius: 10px 0 0 10px;
  cursor: pointer;
}

.instabox {
  position: absolute;
  top: 400px;
  right: -10px;
  /* padding: 10px;
    padding-right: 15px; */
  box-shadow: 0px 0px 10px rgba(0, 0, 0, 0.4);
  background-color: #fff;
  border-radius: 10px 0 0 10px;
  border: #da2778 3px solid;
  z-index: 99;
}

.instabox .sp {
  display: none;
}

.instabox a {
  display: block;
  padding: 10px;
  padding-right: 15px;
}

.article-list .box .icn-new {
  top: 0;
  left: 0;
}

.sell-wrap {
  font-family: "メイリオ", Meiryo, "ヒラギノ角ゴシック", "Hiragino Sans",
    sans-serif;
  background: #f6f7f8;
  padding: 22px 0 20px;
  margin-bottom: 40px;
}

.sell-wrap .inner {
  display: flex;
  gap: 0 20px;
}

.sell-wrap h2 {
  font-weight: bold;
  line-height: 100%;
  height: 20px;
  margin-bottom: 10px;
}

.sell-wrap .sale h2 {
  font-size: 20px;
}

.sell-wrap .area h2 {
  font-size: 16px;
  position: relative;
  padding-left: 10px;
}

.sell-wrap .area h2::before {
  position: absolute;
  content: "";
  width: 4px;
  height: 100%;
  background: #ea5e00;
  top: 40%;
  transform: translateY(-50%);
  left: 0;
}

.sell-wrap .inner .item {
  width: 100%;
}

.sell-wrap .sale .btn-wrap,
.sell-wrap .area .btn-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0 10px;
  justify-content: center;
}

.sell-wrap .area .btn-wrap {
  justify-content: left;
}

.sell-wrap .sale .btn-wrap a,
.sell-wrap .area .btn-wrap a {
  width: 48%;
}

.sell-wrap .sell-map {
  margin-top: 30px;
  height: auto;
}

@media screen and (max-width: 51em) {
  .is-sp {
    display: block;
  }

  .site-header {
    background: #eb5e00;
    padding: 0;
    padding-left: 20px;
  }

  .site-branding-sp {
    height: 50px;
    justify-content: space-between;
  }

  .site-branding-sp .logo a {
    display: block;
  }

  .site-branding-sp .header-list {
    display: flex;
  }

  .header-list li {
    width: 50px;
  }

  .header-list a span,
  .header-list .menu span {
    font-size: 8px;
  }

  .header-list a,
  .header-list .menu {
    height: 50px;
  }

  .header-list a img {
    width: 15px;
  }

  .site-branding-sp li.contact {
    margin-right: 0;
  }

  .Menu {
    top: 51px;
  }

  .Menu-List .Menu-Top {
    padding-right: 10px;
  }

  .Overlay {
    top: 51px;
  }

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

  .float-btn {
    margin-left: -10px;
    margin-right: -10px;
    width: 100vw;
    bottom: 0;
    position: -webkit-sticky;
    position: sticky;
    display: flex;
    height: 45px;
    z-index: 9;
  }

  #banner,
  .linebox dl dt {
    height: 100%;
  }

  .instabox .pc {
    display: none;
  }

  .instabox .sp {
    display: block;
  }

  .linebox,
  .instabox {
    border-radius: 0;
    box-shadow: none;
  }

  .instabox a {
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .linebox #banner a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 3px;
  }

  .instabox {
    width: 50vw;
    position: static;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 5px;
  }

  .pagetop {
    bottom: 50px;
  }

  .sell-wrap {
    padding-right: calc(50vw - 50%);
    padding-left: calc(50vw - 50%);
    margin-right: calc(50% - 50vw);
    margin-left: calc(50% - 50vw);
  }

  .sell-wrap .inner {
    flex-wrap: wrap;
    gap: 20px 0;
  }

  .sell-wrap .sell-map {
    margin-top: 0;
  }
}

@media screen and (max-width: 380px) {
  .site-branding-sp .logo {
    margin-right: 10px;
  }
}

/* 相続サロン */
/* font-family: 'メイリオ', Meiryo,YuGothic,'Yu Gothic','Hiragino Kaku Gothic ProN','ヒラギノ角ゴ ProN W3',sans-serif; */
/* @import url('https://fonts.googleapis.com/css2?family=M+PLUS+Rounded+1c:wght@400;500;700;800&display=swap'); */
/* article.souzokusalon {
    font-family: 'M PLUS Rounded 1c', sans-serif;
} */

body.souzokusalon * {
  /* outline: 1px solid magenta; */
}

body.souzokusalon .is-sp {
  display: none;
}

body.souzokusalon .content-header {
  display: none;
  box-sizing: border-box;
}

.souzokusalon .inner {
  box-sizing: border-box;
}

.souzokusalon h2 {
  font-size: 30px;
  font-weight: 500;
  text-align: center;
}

.souzokusalon .mv {
  background: url(/assets/images/souzokusalon/mv_pc.jpg) no-repeat center center /
    cover;
  height: 390px;
  padding-top: 40px;
  padding-bottom: 10px;
}

.souzokusalon .mv .inner {
  margin-top: 30px;
}

.souzokusalon .mv .inner h1 {
  font-family: "メイリオ", Meiryo, YuGothic, "Yu Gothic",
    "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  font-size: 30px;
  font-weight: bold;
}

.souzokusalon .mv .inner h1 span {
  font-size: 39px;
  color: #eb5e00;
  margin: 0 3px;
}

.souzokusalon .mv .mv-contents-wrap {
  display: flex;
  margin-top: 30px;
  justify-content: space-between;
}

.souzokusalon .mv .mv-contents-wrap .name {
  font-size: 17px;
  font-weight: 700;
}

.souzokusalon .mv .mv-contents-wrap .logo {
  width: 210px;
  margin-top: -70px;
  margin-right: -40px;
}

@media screen and (max-width: 1150px) {
  .souzokusalon .mv .mv-contents-wrap .logo {
    margin-right: 0;
  }
}

.souzokusalon .mv-cta {
  margin-top: -30px;
}

.souzokusalon .mv-cta .inner {
  background: #eb5e00;
  padding: 35px 60px;
  display: flex;
  border-radius: 10px;
  align-items: flex-start;
  align-items: center;
  flex-wrap: wrap;
  max-width: 1000px;
  box-sizing: border-box;
}

.souzokusalon .mv-cta p {
  color: #fff;
  font-size: 26px;
  font-weight: 800;
  margin-right: auto;
}

.souzokusalon .mv-cta .btn-block {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.souzokusalon .cta-btn {
  font-size: 18px;
  color: #ea5e00;
  font-weight: 700;
  background: #fff;
  padding: 20px;
  display: block;
  width: 280px;
  text-align: center;
  border-radius: 5px;
  border: 2px solid #fff;
  position: relative;
  box-shadow: 0 5px 0px #b04600;
  box-sizing: border-box;
}

.souzokusalon .mv-cta .btn-block .cta-btn::after {
  position: absolute;
  content: "";
  background: url(/assets/images/souzokusalon/icon-arrow_or.png) no-repeat
    center center / contain;
  width: 13px;
  height: 11px;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  transition: 0.3s;
}

.souzokusalon .mv-cta .btn-block .cta-btn:hover {
  background: #eb5e00;
  color: #fff;
  opacity: 1;
}

.souzokusalon .mv-cta .btn-block .cta-btn:hover::after {
  background: url(/assets/images/souzokusalon/icon-arrow_wh.png) no-repeat
    center center / contain;
  transition: 0.3s;
}

.souzokusalon section {
  margin-top: 60px;
  padding-top: 0;
  padding-bottom: 0;
}

.souzokusalon .check .head-wrap {
  color: #ea5e00;
  font-weight: 500;
  text-align: center;
}

.souzokusalon .check .head-wrap .head-top {
  font-size: 24px;
}

.souzokusalon .check .head-wrap .head-top img {
  width: 26px;
  margin-right: 5px;
}

.souzokusalon .check .head-wrap h2 {
  font-size: 26px;
}

.souzokusalon .check .head-wrap h2 span {
  font-size: 30px;
}

.souzokusalon .check .check-contents {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 24px;
}

.souzokusalon .check .check-contents .img {
  width: 100px;
  margin: auto;
}

.souzokusalon .check .check-contents .check-item {
  background: #fbefdb;
  padding: 20px;
  width: 196px;
  border-radius: 5px;
  box-sizing: border-box;
}

.souzokusalon .check .check-contents .check-item p {
  font-size: 17px;
  font-weight: 500;
  text-align: center;
  margin-top: 10px;
}

.souzokusalon .cta {
  margin-top: 80px;
  background: #fedc7f;
  padding: 56px 0 80px;
  text-align: center;
}

.souzokusalon .cta .read {
  margin-top: 20px;
}

.souzokusalon .cta .cta-btn-wrap {
  display: flex;
  gap: 40px;
  margin-top: 30px;
}

.souzokusalon .cta .cta-btn-wrap .btn-contents {
  width: 100%;
  /* padding: 9px; */
  border-radius: 6px;
}

.souzokusalon .cta .cta-btn-wrap .btn-contents.or {
  background: #ea5e00;
}

.souzokusalon .cta .cta-btn-wrap .btn-contents.wh {
  background: #fff;
}

.souzokusalon .cta .cta-btn-wrap .btn-contents .btn-inner {
  /* border: 2px solid #fff; */
  padding: 20px 0;
  border-radius: 6px;
}

.souzokusalon .cta .cta-btn-wrap .btn-contents.wh .btn-inner {
  border-color: #ea5e00;
}

.souzokusalon .cta .cta-btn-wrap .btn-contents p {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 20px;
  color: #fff;
}

.souzokusalon .cta .cta-btn-wrap .btn-contents.wh p {
  color: #ea5e00;
}

.souzokusalon .cta .cta-btn-wrap .cta-btn {
  margin: auto;
  border: none;
}

.souzokusalon .cta .cta-btn-wrap .cta-btn.or {
  background: #ea5e00;
  color: #fff;
}

.souzokusalon .cta .cta-btn-wrap .cta-btn::after {
  content: "";
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  position: absolute;
}

.souzokusalon .cta .cta-btn-wrap .cta-btn.wh::after {
  background: url(/assets/images/souzokusalon/icon-blank.png) no-repeat center
    center / contain;
  width: 20px;
  height: 21px;
}

.souzokusalon .cta .cta-btn-wrap .cta-btn.or::after {
  background: url(/assets/images/souzokusalon/icon-arrow_wh.png) no-repeat
    center center / contain;
  width: 13px;
  height: 11px;
}

.souzokusalon .support .support-contents {
  margin-top: 30px;
}

.souzokusalon .support .support-contents .item {
  display: flex;
  gap: 35px;
}

.souzokusalon .support .support-contents .item + .item {
  margin-top: 60px;
}

.souzokusalon .support .support-contents .item:nth-child(even) {
  flex-direction: row-reverse;
}

.souzokusalon .support .support-contents .item .img {
  width: 100%;
}

.souzokusalon .support .support-contents .item .text {
  width: 100%;
  margin-top: 50px;
}

.souzokusalon .support .support-contents .item .text h3 {
  color: #ea5e00;
  font-size: 26px;
  font-weight: 500;
}

.souzokusalon .support .support-contents .item .text p {
  margin-top: 12px;
}

.souzokusalon .video .read {
  margin-top: 20px;
  text-align: center;
}

.souzokusalon .video .video-contents {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
  margin-top: 30px;
}

.souzokusalon .video .video-contents .item {
  width: 305px;
}

.souzokusalon .video .video-contents .item .iframe-wrap {
  height: 180px;
}

.souzokusalon .video .video-contents .item .iframe-wrap iframe {
  width: 100%;
  height: 100%;
}

.souzokusalon .video .video-contents .item p {
  margin-top: 16px;
  text-align: center;
  font-size: 18px;
  font-weight: 500;
}

@media screen and (max-width: 1020px) {
  .souzokusalon .inner {
    padding: 0 20px;
  }

  .souzokusalon .video .video-contents,
  .souzokusalon .check .check-contents {
    justify-content: center;
  }

  .souzokusalon .mv-cta {
    padding: 0 20px;
  }

  .souzokusalon .mv-cta .inner {
    max-width: unset;
    width: 100%;
    flex-direction: column;
    gap: 20px;
  }

  .souzokusalon .mv-cta p {
    margin-right: unset;
    text-align: center;
  }
}

@media screen and (max-width: 767px) {
  body.souzokusalon .is-sp {
    display: block;
  }

  body.souzokusalon .is-pc {
    display: none;
  }

  .souzokusalon .mv {
    background: url(/assets/images/souzokusalon/mv_sp.png) no-repeat top center /
      cover;
    height: 500px;
    /* padding-top: 200px; */
    position: relative;
    padding-bottom: 130px;
  }

  .souzokusalon .mv .inner {
    position: absolute;
    top: 50%;
  }

  .souzokusalon .mv-cta {
    margin-top: 30px;
    padding: 0 20px;
  }

  .souzokusalon .mv-cta p {
    text-align: center;
  }

  .souzokusalon .mv-cta .inner {
    justify-content: center;
    padding: 25px;
  }

  .souzokusalon .mv-cta p {
    margin-right: unset;
  }

  .souzokusalon .mv-cta .btn-block {
    justify-content: center;
    margin-top: 30px;
  }

  .souzokusalon .check .check-contents .check-item {
    width: calc(50% - 5px);
    padding: 10px;
  }

  .souzokusalon .cta .cta-btn-wrap {
    flex-wrap: wrap;
  }

  .souzokusalon .support .support-contents .item,
  .souzokusalon .support .support-contents .item:nth-child(even) {
    flex-direction: column;
    gap: 15px;
  }

  .souzokusalon .support .support-contents .item .text {
    margin-top: 0;
  }

  .souzokusalon .cta-btn {
    width: 100%;
  }

  .souzokusalon .check .head-wrap h2 span {
    /* display: block; */
  }

  section {
    padding-right: 0;
    padding-left: 0;
  }

  .souzokusalon .cta .cta-btn-wrap .btn-contents .btn-inner {
    padding-right: 15px;
    padding-left: 15px;
  }

  .souzokusalon .video .video-contents .item {
    width: 100%;
  }

  .souzokusalon .mv .inner h1 {
    font-size: 22px;
  }

  .souzokusalon .mv .inner h1 span {
    font-size: 34px;
  }

  .souzokusalon .mv .logo {
    position: absolute;
    top: 50%;
    width: 150px;
    right: 0px;
  }
}

@media screen and (max-width: 600px) {
  .souzokusalon .mv {
    height: 450px;
  }

  .souzokusalon .mv .logo {
    top: 30%;
  }
}

@media screen and (max-width: 51em) {
  body.souzokusalon .mv {
    margin-left: -10px;
    margin-right: -10px;
  }
}

.request select {
  padding: 10px;
  border-radius: 5px;
}

/* --------------------------0507------------------------- */
.souzokusalon .page-content .salon-about .about-box {
  display: grid;
  background: #fbefdb;
  gap: 0 40px;
  padding: 40px;
}
.souzokusalon .page-content .salon-about .about-box img {
  width: 240px;
  grid-row: 1 / 3;
  grid-column: 1 / 2;
}
.souzokusalon .page-content .salon-about .about-box h2 {
  text-align: left;
  grid-row: 1 / 2;
  grid-column: 2 / 3;
}
.souzokusalon .page-content .salon-about .about-box p {
  margin-top: 20px;
  line-height: 2;
  grid-row: 2 / 3;
  grid-column: 2 / 3;
}
.souzokusalon .page-content .strengths {
  margin-top: 80px;
}
.souzokusalon .page-content .strengths .strengths-title p {
  color: #ea5e00;
  text-align: center;
  margin-bottom: 20px;
}
.souzokusalon .page-content .strengths .strengths-content {
  margin-top: 60px;
  display: flex;
  gap: 40px;
}
.souzokusalon .page-content .strengths .strengths-content .strengths-item {
  border: solid 2px #ea5e00;
  border-radius: 5px;
  position: relative;
  padding: 20px;
  width: 33%;
}
.souzokusalon .page-content .strengths .strengths-content .strengths-item img {
  position: absolute;
  width: 64px;
  top: -30px;
  left: 10px;
}
.souzokusalon .page-content .strengths .strengths-content .strengths-item h3 {
  text-align: center;
  font-weight: 500;
  font-size: 22px;
}
.souzokusalon
  .page-content
  .strengths
  .strengths-content
  .strengths-item
  h3
  span {
  font-size: 26px;
}
.souzokusalon .page-content .strengths .strengths-content .strengths-item p {
  margin-top: 10px;
}
.souzokusalon .page-content .flow {
  margin-top: 70px;
}
.souzokusalon .page-content .flow .flow-content {
  display: flex;
  margin-top: 40px;
}
.souzokusalon .page-content .flow .flow-content div {
  border-left: solid 1px #cccccc;
  width: 33.3%;
  padding: 18px;
  padding-top: 0;
}
.souzokusalon .page-content .flow .flow-content div h2 {
  background: #eb5e00;
  color: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}
.souzokusalon .page-content .flow .flow-content div h3 {
  color: #ea5e00;
  text-align: center;
  font-size: 22px;
  font-weight: 500;
  margin-top: 20px;
  line-height: 1.5;
}
.souzokusalon .page-content .flow .flow-content div p {
  margin-top: 30px;
}
.souzokusalon .page-content .flow .flow-content div:first-of-type {
  border-left: none;
  padding-left: 0;
}
.souzokusalon .page-content .flow .flow-content div:last-of-type {
  padding-right: 0;
}
.souzokusalon .page-content .customer {
  margin-top: 100px;
}
.souzokusalon .page-content .customer .customer-item {
  display: flex;
  gap: 30px;
  background: #fbefdb;
  margin-bottom: 20px;
  border-radius: 5px;
  padding: 40px;
  padding-top: 30px;
}
.souzokusalon .page-content .customer .customer-item:first-of-type {
  margin-top: 40px;
}
.souzokusalon .page-content .customer .customer-item img {
  width: 150px;
}
.souzokusalon .page-content .customer .customer-item p {
  margin-top: 12px;
  margin-bottom: 20px;
}
.souzokusalon .page-content .cta .tell-box {
  background: #fff;
  margin-top: 30px;
  border-radius: 5px;
  padding: 30px;
}
.souzokusalon .page-content .cta .tell-box h3 {
  font-weight: 700;
}
.souzokusalon .page-content .cta .tell-box h3 span {
  font-size: 26px;
}
.souzokusalon .page-content .cta .tell-box p {
  margin-top: 10px;
}
.souzokusalon .page-content .check .head-wrap h2 {
  color: #000;
}
@media screen and (max-width: 768px) {
  .souzokusalon .page-content .salon-about .about-box {
    display: block;
    padding: 20px;
  }
  .souzokusalon .page-content .salon-about .about-box img {
    width: 200px;
    display: block;
    margin: auto;
    margin-top: 30px;
  }
  .souzokusalon .page-content .salon-about .about-box h2 {
    text-align: center;
  }
  .souzokusalon .page-content .salon-about .about-box p {
    margin-top: 20px;
  }
  .souzokusalon .page-content .strengths {
    margin-top: 80px;
  }
  .souzokusalon .page-content .strengths .strengths-title p {
    margin-bottom: 20px;
  }
  .souzokusalon .page-content .strengths .strengths-content {
    margin-top: 60px;
    display: block;
  }
  .souzokusalon .page-content .strengths .strengths-content .strengths-item {
    padding: 20px;
    margin-bottom: 40px;
    width: calc(100% - 40px);
  }
  .souzokusalon
    .page-content
    .strengths
    .strengths-content
    .strengths-item
    img {
    position: absolute;
    width: 64px;
    top: -30px;
    left: 10px;
  }
  .souzokusalon .page-content .strengths .strengths-content .strengths-item h3 {
    font-size: 22px;
  }
  .souzokusalon
    .page-content
    .strengths
    .strengths-content
    .strengths-item
    h3
    span {
    font-size: 26px;
  }
  .souzokusalon .page-content .strengths .strengths-content .strengths-item p {
    margin-top: 10px;
  }
  .souzokusalon .page-content .flow {
    margin-top: 70px;
  }
  .souzokusalon .page-content .flow .flow-content {
    display: block;
    margin-top: 40px;
  }
  .souzokusalon .page-content .flow .flow-content div {
    border-bottom: solid 1px #cccccc;
    border-left: none;
    width: 100%;
    padding: 0px;
    margin-bottom: 20px;
    padding-bottom: 20px;
  }
  .souzokusalon .page-content .flow .flow-content div h2 {
    width: 50px;
    height: 50px;
    font-size: 26px;
  }
  .souzokusalon .page-content .flow .flow-content div h3 {
    font-size: 22px;
    margin-top: 20px;
    line-height: 1.5;
  }
  .souzokusalon .page-content .flow .flow-content div p {
    margin-top: 30px;
  }
  .souzokusalon .page-content .flow .flow-content div:first-of-type {
    padding-left: 0;
  }
  .souzokusalon .page-content .flow .flow-content div:last-of-type {
    padding-right: 0;
  }
  .souzokusalon .page-content .customer {
    margin-top: 100px;
  }
  .souzokusalon .page-content .customer .customer-item {
    display: flex;
    gap: 20px;
    background: #fbefdb;
    margin-bottom: 20px;
    border-radius: 5px;
    padding: 10px;
    padding-top: 20px;
  }
  .souzokusalon .page-content .customer .customer-item:first-of-type {
    margin-top: 40px;
  }
  .souzokusalon .page-content .customer .customer-item img {
    width: 75px;
    height: 100%;
  }
  .souzokusalon .page-content .customer .customer-item p {
    margin-top: 12px;
    margin-bottom: 20px;
  }
  .souzokusalon .page-content .cta .tell-box {
    background: #fff;
    margin-top: 30px;
    border-radius: 5px;
    padding: 30px;
  }
  .souzokusalon .page-content .cta .tell-box h3 {
    font-weight: 700;
  }
  .souzokusalon .page-content .cta .tell-box h3 span {
    font-size: 26px;
  }
  .souzokusalon .page-content .cta .tell-box p {
    margin-top: 10px;
    font-size: 14px;
  }
}

/* --------------------------0507------------------------- */
/* --------------------------1224------------------------- */
.site-branding .left > img {
  height: 100%;
}
/* --------------------------1224------------------------- */
@media screen and (max-width: 51em) {
  .linebox {
    width: 100%;
  }
}
