@charset "UTF-8";
/*--------------------------------------------------------------
Reset
--------------------------------------------------------------*/
*,
*:before,
*:after {
  box-sizing: border-box;
}

* {
  margin: 0;
  padding: 0;
}

html {
  font-size: 62.5%;
  /* 10px */
}

body {
  width: 100%;
  color: #333333;
  font-family: YuMincho, "Yu Mincho", serif;
  font-size: 13px;
  line-height: 1.692;
  word-break: break-word;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
}

/*----------------------------------------
	HTML5
----------------------------------------*/
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

section {
  margin-bottom: 2em;
}

/*----------------------------------------
	Text
----------------------------------------*/
h1, h2, h3, h4, h5, h6 {
  margin: 0 auto 1.6rem;
  padding: 0;
  line-height: 1.4;
}

pre {
  margin: 1.5em 25px;
  padding: 1em;
  overflow: scroll;
  font-family: "Yu Gothic medium", YuGothic Medium, "游ゴシック", "Hiragino Kaku Gothic ProN", "メイリオ", sans-serif;
  line-height: 1.9;
}

blockquote {
  margin: 1.5em 1px;
  border: 5px solid #9f998f;
  color: #77471c;
  background-color: #f5f5f5;
  background-repeat: repeat-x;
  background-position: left bottom;
}

blockquote[title]::before {
  padding: 0.2em 10px 0.4em 10px;
  content: attr(title);
  display: block;
  color: #fff;
  background-color: #9f998f;
  font-weight: bold;
}

blockquote[cite]::after {
  margin: 0.5em 10px;
  content: attr(cite);
  display: block;
  text-align: right;
  font-size: 85%;
}

blockquote * {
  color: #333 !important;
}

em {
  color: #000;
}

pre {
  background: #eee;
  font-family: "Courier 10 Pitch", Courier, monospace;
  font-size: 15px;
  font-size: 1.5rem;
  line-height: 1.6;
  margin-bottom: 1.6em;
  max-width: 100%;
  overflow: auto;
  padding: 1.6em;
}

pre em {
  font-weight: bold;
  background-image: none;
}

q {
  text-decoration: underline;
}

b,
strong {
  font-weight: bold;
}

cite {
  display: block;
  text-align: right;
}

dfn,
cite,
em,
i {
  font-style: italic;
}

kbd {
  background-color: #f5f5f5;
  font-family: "Osaka|", monospace;
  text-transform: uppercase;
  padding: 0 0.4em;
  border: 1px solid #6a8eaa;
}

del {
  text-decoration: line-through;
}

ins {
  border-top: 10px solid #3cadd6;
  border-bottom: 10px solid #3cadd6;
  border: 7px solid #3cadd6;
  margin: 2em 1px;
  padding: 1px 0;
  display: block;
  text-decoration: none;
}

mark {
  background: #fff9c0;
  text-decoration: none;
}

ins * {
  color: #666 !important;
  background: #fff9c0;
  text-decoration: none;
}

abbr,
acronym {
  border-bottom: 1px dotted #666;
  cursor: help;
}

address {
  margin: 0 0 1.5em;
}

sup,
sub {
  font-size: 75%;
  height: 0;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sup {
  bottom: 1ex;
}

sub {
  top: 0.5ex;
}

small {
  font-size: 75%;
}

big {
  font-size: 125%;
}

hr {
  background-color: #ccc;
  border: 0;
  height: 1px;
  margin-bottom: 1.5em;
}

/*----------------------------------------
	List
----------------------------------------*/
ul,
ol,
dl {
  margin: 0;
  padding: 0;
}

ul,
ol {
  list-style: none;
}

li,
dt,
dd {
  list-style-type: none;
  list-style-position: outside;
}

/*----------------------------------------
	Image
----------------------------------------*/
figure {
  margin: 0;
  line-height: 1;
}

img {
  display: block;
  margin: 0 auto;
  height: auto;
  max-width: 100%;
  border: none;
  vertical-align: baseline;
  -webkit-backface-visibility: hidden;
}

/*----------------------------------------
	Anchor
----------------------------------------*/
a {
  color: #333;
  text-decoration: none;
  transition: 0.3s;
}

a:hover,
a:focus,
a:active {
  color: #404040;
  outline: none;
  text-decoration: underline;
}

a img {
  transition: 0.3s;
}

a:hover img {
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
    text-decoration: none;
  }
}
/*----------------------------------------
	Table
----------------------------------------*/
table {
  margin: 0 0 2em;
  width: 100%;
  border-collapse: collapse;
}

/*----------------------------------------
	Form
----------------------------------------*/
fieldset,
legend {
  border: none;
}

legend {
  display: none;
}

input[type=text],
textarea {
  padding: 0.2em;
  border: 1px solid #d1d1d1;
  background-color: #fff;
}

input {
  line-height: 1.2;
}

input[type=text]:focus,
textarea:focus {
  border: 1px solid #069;
  background-color: #fff;
}

input.button {
  padding: 0;
  border: none;
  background-image: none;
  vertical-align: top;
}

/* iOSでのデフォルトスタイルをリセット */
input[type=submit],
input[type=button] {
  border-radius: 0;
  -webkit-box-sizing: content-box;
  appearance: button;
  border: none;
  box-sizing: border-box;
  cursor: pointer;
}

input[type=submit]::-webkit-search-decoration,
input[type=button]::-webkit-search-decoration {
  display: none;
}

input[type=submit]::focus,
input[type=button]::focus {
  outline-offset: -2px;
}

/* COMMON
----------------------------------------------------------*/
.soudanButton {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}
.soudanButton li {
  padding: 0 15px;
  width: 100%;
}
.soudanButton li a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 40px;
  color: #fff;
  font-size: 18px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
  position: relative;
}
.soudanButton li a::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../../images/common/soudanButton_bg.png);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.soudanButton li a:hover {
  text-decoration: none;
  opacity: 0.7;
}
.soudanButton li.btn01 a {
  background-color: #735F3C;
}
.soudanButton li.btn02 a {
  background-color: #365233;
}

@media screen and (min-width: 768px) {
  .soudanButton li {
    width: 50%;
  }
}
/* WRAPPER
----------------------------------------------------------*/
.wrapper {
  padding-bottom: 60px;
  overflow: hidden;
}

@media screen and (min-width: 768px) {
  .wrapper {
    padding-bottom: 130px;
  }
}
.site-main {
  padding: 0 0 50px;
}

/* HEADER
----------------------------------------------------------*/
.site-header {
  padding: 5px 10px 10px;
}

.header__logo {
  margin-bottom: 10px;
  text-align: center;
}
.header__logo img {
  max-width: 214px;
}
.header__info {
  display: flex;
  flex-wrap: wrap;
}
.header__info__tel {
  display: none;
  width: 100%;
}
.header__info__buttons {
  width: 100%;
}
.header__info__buttons .soudanButton {
  margin: 0 -5px;
}
.header__info__buttons .soudanButton li {
  margin: 0;
  padding: 0 5px;
  width: 50%;
}
.header__info__buttons .soudanButton li a {
  font-size: 17px;
  box-shadow: none;
}

@media screen and (min-width: 992px) {
  .headerWrap {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
  }
  .header {
    padding: 3px 10px 14px;
  }
  .header__logo {
    margin: 0;
    padding: 0 0 5px 18px;
    width: 25%;
  }
  .header__logo img {
    margin: 0;
    max-width: 260px;
  }
  .header__info {
    flex-wrap: nowrap;
    align-items: center;
    width: 62%;
    max-width: 895px;
  }
  .header__info__tel {
    display: block;
    width: 35%;
  }
  .header__info__tel a {
    display: block;
    width: 100%;
    max-width: 290px;
  }
  .header__info__tel img {
    width: 70%;
  }
  .header__info__buttons {
    width: 65%;
    max-width: 582px;
  }
  .header__info__buttons .soudanButton {
    margin: 0 -10px;
  }
  .header__info__buttons .soudanButton li {
    padding: 0 10px;
  }
  .header__info__buttons .soudanButton li a {
    width: 100%;
    height: 56px;
    max-width: 280px;
    font-size: 17px;
  }
}
@media screen and (min-width: 1200px) {
  .header__info__buttons .soudanButton li a {
    font-size: 21px;
  }
}
/* FOOTER
----------------------------------------------------------*/
.site-footer {
  padding: 10px 30px 5px;
  background-color: #fff;
  background-image: url(../../images/common/bg_block.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
  border-top: 1px solid #000;
}

.footer__contact {
  margin: 30px auto;
  width: 100%;
  max-width: 590px;
  text-align: center;
}
.footer__buttons {
  margin: 0 auto;
  width: 100%;
  max-width: 590px;
}
.footer__buttons .soudanButton {
  margin: 0 auto;
  width: 100%;
  max-width: 280px;
}
.footer__buttons .soudanButton li {
  padding: 0;
}
.footer__buttons .soudanButton li:not(:last-child) {
  margin-bottom: 15px;
}
.footer__buttons .soudanButton li a {
  height: 50px;
}
.footer__logo {
  margin: 30px auto;
  max-width: 260px;
  text-align: center;
}
.footer__nav {
  margin: 20px auto;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.footer__nav li {
  padding: 0 0 0 14px;
  width: 50%;
  line-height: 1.3em;
}
.footer__nav li a {
  font-size: 10px;
}

@media screen and (min-width: 768px) {
  .site-footer {
    padding: 40px 30px 5px;
  }
  .footer__buttons .soudanButton {
    margin: 0 -15px;
    max-width: 590px;
  }
  .footer__buttons .soudanButton li {
    margin: 0 !important;
    padding: 0 15px;
  }
  .footer__logo {
    margin: 41px auto;
  }
  .footer__nav {
    max-width: 520px;
  }
  .footer__nav li {
    padding: 0 20px;
    position: relative;
    width: 58%;
    line-height: 1.5em;
  }
  .footer__nav li:nth-child(odd) {
    width: 42%;
  }
  .footer__nav li a {
    font-size: 12px;
  }
}
/*-----------------------------------------------

COPYRIGHT

-----------------------------------------------*/
.copyright {
  padding: 10px 0;
  font-size: 10px;
  text-align: center;
  letter-spacing: 0.2em;
  background-color: #fff;
}

@media screen and (min-width: 768px) {
  .copyright {
    padding: 16px 0;
    font-size: 12px;
    letter-spacing: 0.2em;
  }
}
/*---------------------------------------------*/
/*-----------------------------------------------

ページ下部　固定MENU

-----------------------------------------------*/
.fixedMenu {
  width: 100%;
  position: fixed;
  left: 0;
  bottom: 0;
  z-index: 99;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s ease;
}
.fixedMenu.fixed {
  visibility: visible;
  opacity: 1;
  pointer-events: all;
}
.fixedMenu_flexBox {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 6px;
  width: 100%;
  height: 60px;
  background-color: rgba(36, 31, 13, 0.9);
}
.fixedMenu ul.fixedMenu_buttons {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -8px;
  width: 100%;
  max-width: 590px;
}
.fixedMenu ul.fixedMenu_buttons li {
  padding: 0 8px;
  width: 50%;
}

@media screen and (min-width: 768px) {
  .fixedMenu_flexBox {
    padding: 0 15px;
    height: 130px;
  }
  .fixedMenu ul.fixedMenu_buttons li {
    padding: 0 15px;
  }
}
/*---------------------------------------------*/
section .inner {
  margin: 0 auto;
  padding: 0 30px;
  width: 100%;
  max-width: 1270px;
}

/*-----------------------------------------------

メインビジュアル

-----------------------------------------------*/
.mvBlock {
  position: relative;
}
.mvBlock__mv {
  position: relative;
}
.mvBlock__mv_btnWrap {
  padding: 20px 30px;
}
.mvBlock__mv_buttons {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -10px;
}
.mvBlock__mv_buttons li {
  margin: 10px 0;
  padding: 0 10px;
  width: 100%;
}
.mvBlock__mv_buttons li a {
  display: block;
  margin: 0 auto;
  max-width: 320px;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
}
@media screen and (min-width: 768px) {
  .mvBlock__mv {
    margin: 0;
  }
  .mvBlock__mv_btnWrap {
    padding: 0;
    width: 60%;
    max-width: 830px;
    position: absolute;
    bottom: 3%;
    left: 50%;
    transform: translateX(-50%);
  }
  .mvBlock__mv_buttons li {
    width: 50%;
  }
  .mvBlock__mv_buttons li a {
    max-width: 400px;
  }
}

/*-----------------------------------------------

〇〇タワーマンション注目物件

-----------------------------------------------*/
.galleryBlock {
  padding: 44px 0;
  background-color: #fff;
  background-image: url(../../images/common/bg_block.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.galleryBlock h2 {
  margin-bottom: 14px;
  color: #735F3C;
  font-size: 30px;
  text-align: center;
  line-height: 1.4;
}
.galleryBlock .leadText {
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 2;
}
.galleryBlock .galleryWrap {
  margin: 0 -30px;
}
.galleryBlock .galleryItem {
  margin-bottom: 50px;
  position: relative;
}
.galleryBlock .galleryItem figure {
  position: relative;
  z-index: 1;
}
.galleryBlock .itemInfoBox {
  margin: -30px auto 0;
  padding: 30px 20px 0;
  width: 100%;
  max-width: 320px;
  background-color: #fff;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 2;
}
.galleryBlock .itemInfoBox h3 {
  color: #365233;
  font-size: 18px;
  text-align: center;
  line-height: 1.66;
}
.galleryBlock .itemInfoBox span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 30px;
  font-size: 12px;
  border: 1px solid #999999;
}
.galleryBlock .itemInfoBox p {
  padding: 5px 0;
  font-size: 12px;
  line-height: 1.83;
}
.galleryBlock .itemInfoBox p.t2, .galleryBlock .itemInfoBox p.t3 {
  padding: 10px 0;
  text-align: center;
  letter-spacing: 0.1em;
}
.galleryBlock .itemInfoBox figcaption {
  display: inline-block;
  padding: 3px 6px;
  color: #fff;
  font-size: 10px;
  line-height: 1;
  background-color: rgba(51, 51, 51, 0.7);
  position: absolute;
  bottom: 100%;
  right: 0;
}
.galleryBlock .galleryItemlinkBtn {
  margin: 0 -20px;
}
.galleryBlock .galleryItemlinkBtn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 36px;
  color: #fff;
  font-size: 14px;
  text-align: center;
  background-color: rgba(66, 61, 47, 0.6);
}
.galleryBlock .galleryItemlinkBtn a:hover {
  text-decoration: none;
  opacity: 0.7;
}
.galleryBlock__searchBtn {
  margin: 0 auto;
  width: 260px;
  height: 60px;
}
.galleryBlock__searchBtn a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 60px;
  color: #fff;
  font-size: 18px;
  background-color: #423D2F;
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.4);
  position: relative;
}
.galleryBlock__searchBtn a::after {
  content: "";
  width: 100%;
  height: 100%;
  background-image: url(../../images/common/soudanButton_bg.png);
  background-repeat: no-repeat;
  background-position: 100% 100%;
  background-size: 100% 100%;
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.galleryBlock__searchBtn a:hover {
  text-decoration: none;
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  .galleryBlock {
    margin: 0;
    padding: 140px 0 100px;
  }
  .galleryBlock h2 {
    margin-bottom: 24px;
    font-size: 42px;
    letter-spacing: 0.08em;
  }
  .galleryBlock .leadText {
    margin-bottom: 96px;
    font-size: 20px;
    text-align: center;
  }
  .galleryBlock .galleryItem {
    margin-bottom: 90px;
  }
  .galleryBlock .itemInfoBox {
    margin: -52px auto 0;
    padding: 30px 40px 0;
    max-width: 540px;
  }
  .galleryBlock .itemInfoBox .itemInfo_01 .col-md-4 {
    flex: 0 0 110px;
    max-width: 110px;
  }
  .galleryBlock .itemInfoBox .itemInfo_01 .col-md-4 span {
    height: 70px;
  }
  .galleryBlock .itemInfoBox .itemInfo_01 .col-md-8 {
    flex: 0 0 calc(100% - 110px);
    max-width: calc(100% - 110px);
    display: flex;
    align-items: center;
  }
  .galleryBlock .itemInfoBox .itemInfo_02 {
    margin-top: 12px;
  }
  .galleryBlock .itemInfoBox .itemInfo_02_1 .col-md-4 {
    flex: 0 0 110px;
    max-width: 110px;
  }
  .galleryBlock .itemInfoBox .itemInfo_02_1 .col-md-4 span {
    height: 30px;
  }
  .galleryBlock .itemInfoBox .itemInfo_02_1 .col-md-8 {
    flex: 0 0 calc(100% - 110px);
    max-width: calc(100% - 110px);
    display: flex;
    align-items: center;
  }
  .galleryBlock .itemInfoBox .itemInfo_02_2 .col-md-4 {
    flex: 0 0 110px;
    max-width: 110px;
  }
  .galleryBlock .itemInfoBox .itemInfo_02_2 .col-md-4 span {
    height: 30px;
  }
  .galleryBlock .itemInfoBox .itemInfo_02_2 .col-md-8 {
    flex: 0 0 calc(100% - 110px);
    max-width: calc(100% - 110px);
    display: flex;
    align-items: center;
  }
  .galleryBlock .itemInfoBox h3 {
    margin-bottom: 34px;
    padding-bottom: 20px;
    font-size: 20px;
    border-bottom: 1px solid #999999;
  }
  .galleryBlock .itemInfoBox span {
    width: 80px;
    height: 30px;
    font-size: 14px;
  }
  .galleryBlock .itemInfoBox p {
    margin: 0;
    padding: 0 !important;
    font-size: 14px;
    text-align: left !important;
    line-height: 1.7;
  }
  .galleryBlock .galleryItemlinkBtn {
    margin: 30px -40px 0;
  }
  .galleryBlock__searchBtn {
    margin-top: 10px;
    width: 400px;
    height: 80px;
  }
  .galleryBlock__searchBtn a {
    font-size: 24px;
    height: 80px;
  }
}
/*-----------------------------------------------

GOOGLE MAP

-----------------------------------------------*/
.googlemapBlock {
  margin: 0;
  padding: 50px 20px;
  text-align: center;
}
.googlemapBlock p {
  margin: 0;
}

/*---------------------------------------------*/
/*-----------------------------------------------

〇〇タワーマンションなら 大京穴吹不動産 〇〇店へお任せください！

-----------------------------------------------*/
.infoBlock {
  margin: 0;
  padding: 34px 0 42px;
  color: #fff;
  background-image: url(../../images/nishishinjuku/information_bg.jpg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.infoBlock h2 {
  font-size: 20px;
  text-align: center;
  line-height: 1.6;
}
.infoBlock h3 {
  margin-bottom: 8px;
  font-size: 16px;
  text-align: center;
  line-height: 1.875;
  letter-spacing: 0.1em;
}
.infoBlock dl {
  display: flex;
  align-items: stretch;
  margin: 0 auto 8px;
  width: 100%;
  max-width: 280px;
}
.infoBlock dt {
  display: flex;
  align-items: center;
  margin: 0;
}
.infoBlock dt span {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 22px;
  font-size: 12px;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.5);
}
.infoBlock dt span.b_adrr {
  height: 34px;
}
.infoBlock dd {
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 0 0 15px;
  font-size: 12px;
  line-height: 1.83;
}
.infoBlock p {
  margin: 0;
}
.infoBlock__buttons {
  margin: 0 auto;
  padding: 16px 0;
  width: 100%;
  max-width: 280px;
}
.infoBlock__buttons a {
  display: block;
  margin: 7px 0;
}
.infoBlock .information_ph {
  margin: 0 auto;
  width: 100%;
  max-width: 150px;
}

@media screen and (min-width: 768px) {
  .infoBlock {
    padding: 85px 0 78px;
  }
  .infoBlock h2 {
    margin-bottom: 26px;
    font-size: 32px;
    line-height: 1.625;
    letter-spacing: 0.1em;
  }
  .infoBlock .inner {
    max-width: 1240px;
  }
  .infoBlock .row .col-md-8 {
    flex: 0 0 69%;
    max-width: 69%;
  }
  .infoBlock .row .col-md-4 {
    flex: 0 0 31%;
    max-width: 31%;
  }
  .infoBlock h3 {
    margin-bottom: 20px;
    font-size: 24px;
    text-align: left;
  }
  .infoBlock dl {
    margin: 0 0 15px;
    max-width: 100%;
  }
  .infoBlock dt span {
    width: 100px;
    height: 30px;
    font-size: 16px;
  }
  .infoBlock dd {
    font-size: 16px;
  }
  .infoBlock p {
    letter-spacing: 0.1em;
  }
  .infoBlock__buttons {
    margin: 0;
    max-width: 100%;
  }
  .infoBlock__buttons .row {
    margin: 0 -10px;
  }
  .infoBlock__buttons .col-md-4:nth-of-type(1) {
    flex: 0 0 36%;
    max-width: 36%;
    padding: 0 10px;
  }
  .infoBlock__buttons .col-md-4:nth-of-type(2) {
    flex: 0 0 32%;
    max-width: 32%;
    padding: 0 10px;
  }
  .infoBlock__buttons .col-md-4:nth-of-type(3) {
    flex: 0 0 32%;
    max-width: 32%;
    padding: 0 10px;
  }
  .infoBlock .information_ph {
    margin: 10px 0 0 60px;
    max-width: 280px;
  }
}
/*---------------------------------------------*/
/*-----------------------------------------------

〇〇タワーマンションオーナーさまへ

-----------------------------------------------*/
.prBlock {
  margin: 50px 0 0;
  padding: 0;
}
.prBlock h2 {
  margin: 0 15px 20px;
  padding-bottom: 20px;
  color: #735F3C;
  font-size: 30px;
  text-align: center;
  line-height: 1.4;
  border-bottom: 1px solid rgba(115, 95, 60, 0.8);
}
.prBlock .leadText {
  margin: 0 -20px;
  font-size: 14px;
  text-align: center;
  line-height: 2.28;
}
.prBlock .leadText span {
  color: #735F3C;
  font-size: 16px;
  line-height: 2.25;
  background-color: rgba(115, 95, 60, 0.1);
}
.prBlock .pr_1 {
  display: block;
  margin-right: -15px;
}
.prBlock .pr_2 {
  display: block;
  margin-bottom: 10px;
}
.prBlock .linkBtn {
  margin-top: 30px;
}
.prBlock .linkBtn a {
  display: block;
  margin: 0 auto;
  max-width: 640px;
}

@media screen and (min-width: 768px) {
  .prBlock {
    margin: 150px 0 0;
  }
  .prBlock h2 {
    margin: 0 auto 36px;
    padding-bottom: 40px;
    max-width: 1180px;
    font-size: 40px;
    letter-spacing: 0.05em;
  }
  .prBlock .inner {
    max-width: 1230px;
  }
  .prBlock .leadText {
    margin-bottom: 12px;
    font-size: 16px;
    line-height: 2.8;
  }
  .prBlock .leadText span {
    display: inline-block;
    margin: 0 3px;
    padding: 0 6px;
    font-size: 18px;
    line-height: 1.5;
  }
  .prBlock .pr_1 {
    margin: 0 auto;
  }
  .prBlock .linkBtn {
    margin-top: 100px;
  }
  .prBlock .linkBtn a {
    max-width: 400px;
  }
}
/*---------------------------------------------*/
/*-----------------------------------------------

買い取りサービスについて

-----------------------------------------------*/
.svBlock {
  margin: 10px auto 0;
  width: 100%;
  max-width: 1008px;
}
.svBlock .inner {
  padding: 0 24px;
}
.svBlock h2 {
  color: #735F3C;
  font-size: 18px;
  text-align: center;
  position: relative;
}
.svBlock h2 span {
  display: inline-block;
  padding: 20px;
  background-color: #fff;
  position: relative;
  z-index: 2;
}
.svBlock h2::after {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background-color: rgba(115, 95, 60, 0.5);
  position: absolute;
  left: 0;
  top: 50%;
  z-index: 1;
}
.svBlock ul li {
  margin-left: 1em;
  font-size: 12px;
  line-height: 1.8;
  list-style: disc outside;
}
.svBlock p.cap {
  margin-top: 10px;
}
.svBlock p.cap small {
  font-size: 10px;
  display: block;
  line-height: 1.692;
}

@media screen and (min-width: 768px) {
  .svBlock {
    margin-top: 50px;
  }
  .svBlock h2 {
    font-size: 22px;
  }
  .svBlock ul li {
    font-size: 14px;
  }
  .svBlock p.cap {
    margin-top: 15px;
  }
  .svBlock p.cap small {
    font-size: 11px;
  }
}
/*---------------------------------------------*/
/* 追加　　「今の不動産市況は？」　*/
.hudosanNow__wrap {
  margin: 80px auto;
  padding: 0 30px;
  width: 100%;
  max-width: 1000px;
}
.hudosanNow__title {
  margin: 0 0 15px;
  padding: 0;
  color: #735F3C;
  font-size: 23px;
  text-align: center;
}
.hudosanNow__bg {
  padding: 20px 0;
  border-top: 2px solid #735F3C;
}
.hudosanNow__h3 {
  color: #735F3C;
  font-size: 18px;
  font-weight: 700;
  line-height: 33px;
  letter-spacing: 0.01em;
  text-align: center;
}
.hudosanNow__txtArea span.large {
  font-size: 30px;
}
.hudosanNow__txtArea span.small {
  font-size: 14px;
}
.hudosanNow__txtArea span.orange {
  color: #FE7521;
}
.hudosanNow__txtArea p {
  font-size: 13px;
  line-height: 22px;
  font-weight: 400;
}
.hudosanNow__chartArea {
  margin-top: 20px;
}
.hudosanNow__chartArea img {
  display: block;
}
.hudosanNow__note {
  font-size: 10px;
}

@media screen and (min-width: 768px) {
  .hudosanNow__wrap {
    margin-bottom: 50px;
    padding: 0 20px;
  }
  .hudosanNow__title {
    margin-bottom: 30px;
    font-size: 30px;
  }
  .hudosanNow__bg {
    padding: 50px 0;
  }
  .hudosanNow__flexBox {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    margin: 0 -15px;
  }
  .hudosanNow__txtArea {
    flex: 0 0 43%;
    max-width: 43%;
    padding: 0 15px;
  }
  .hudosanNow__h3 {
    font-size: 22px;
    line-height: 37px;
    letter-spacing: 0.1em;
    text-align: left;
  }
  .hudosanNow__txtArea span.large {
    font-size: 36px;
  }
  .hudosanNow__txtArea span.small {
    font-size: 20px;
  }
  .hudosanNow__txtArea p {
    font-size: 14px;
    line-height: 26px;
  }
  .hudosanNow__chartArea {
    flex: 0 0 57%;
    max-width: 57%;
    padding: 0 15px;
  }
  .hudosanNow__note {
    font-size: 11px;
  }
}
@media screen and (min-width: 1200px) {
  .hudosanNow__h3 {
    letter-spacing: 0.2em;
  }
}/*# sourceMappingURL=style.css.map */