/*
Theme Name: blankslate-child
Template: blankslate
Theme URI: https://github.com/tidythemes/blankslate
Author: TidyThemes
Author URI: https://github.com/tidythemes
Description: CASAの仲介 custom child theme based on BlankSlate
Tags: accessibility-ready, one-column, two-columns, custom-menu, featured-images, microformats, sticky-post, threaded-comments, translation-ready
Version: 2024
Requires at least: 5.2
Tested up to: 6.5
Requires PHP: 7.0
License: GNU General Public License v3 or Later
License URI: https://www.gnu.org/licenses/gpl.html
Text Domain: blankslate

BlankSlate WordPress Theme © 2011-2024 TidyThemes
BlankSlate is distributed under the terms of the GNU GPL
*/
/* ============================================================
 * Base styles (supplementing BlankSlate reset)
 * ============================================================ */
/* Reset */
html,body,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,sub,sup,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,article,aside,canvas,details,embed,figure,figcaption,footer,header,hgroup,menu,nav,output,ruby,section,summary,time,mark,audio,video{margin:0;padding:0;border:0;font-size:100%;font:inherit;vertical-align:baseline}
*{box-sizing:border-box;-webkit-tap-highlight-color:transparent}
/* Headings */
h1, h2, h3, h4, h5, h6 {
    clear: both;
    font-weight: 700;
    margin: 0;
    text-rendering: optimizeLegibility;
}
/* bodyの基本typography */
body {
    line-height: 1.75;
    word-wrap: break-word;
}
/* Typography: form elements */
body,
button,
input,
select,
textarea {
    color: #1a1a1a;
    font-size: 16px;
    font-size: 1rem;
    line-height: 1.75;
}
/* Forms */
input {
    line-height: normal;
}
/* Text inputs */
input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="week"],
input[type="month"],
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="tel"],
input[type="number"],
textarea {
    background: #f7f7f7;
    background-image: -webkit-linear-gradient(rgba(255,255,255,0),rgba(255,255,255,0));
    border: 1px solid #d1d1d1;
    border-radius: 2px;
    color: #686868;
    padding: 0.625em 0.4375em;
    width: 100%;
}
input[type="date"]:focus,
input[type="time"]:focus,
input[type="datetime-local"]:focus,
input[type="week"]:focus,
input[type="month"]:focus,
input[type="text"]:focus,
input[type="email"]:focus,
input[type="url"]:focus,
input[type="password"]:focus,
input[type="search"]:focus,
input[type="tel"]:focus,
input[type="number"]:focus,
textarea:focus {
    background-color: #fff;
    border-color: #007acc;
    color: #1a1a1a;
    outline: 0;
}
/* disabled state */
button[disabled],
html input[disabled] {
    cursor: default;
    opacity: .5;
}
/* button / input[type=submit] の基本スタイル */
button,
button[disabled]:hover,
button[disabled]:focus,
input[type="button"],
input[type="button"][disabled]:hover,
input[type="button"][disabled]:focus,
input[type="reset"],
input[type="reset"][disabled]:hover,
input[type="reset"][disabled]:focus,
input[type="submit"],
input[type="submit"][disabled]:hover,
input[type="submit"][disabled]:focus {
    background: #1a1a1a;
    border: 0;
    border-radius: 2px;
    color: #fff;
    font-family: Montserrat, "Helvetica Neue", sans-serif;
    font-weight: 700;
    letter-spacing: 0.046875em;
    line-height: 1;
    padding: 0.84375em 0.875em 0.78125em;
    text-transform: uppercase;
    cursor: pointer;
}
button:hover,
input[type="button"]:hover,
input[type="reset"]:hover,
input[type="submit"]:hover {
    background: #007acc;
}
input[type="submit"][disabled]:hover {
    line-height: 1.4;
}
/* submit button: desktop base size */
input[type="submit"] {
    display: block;
    width: 30%;
    padding: 20px 0;
    margin: 20px auto 60px;
}
/* checkbox / radio */
input[type="checkbox"],
input[type="radio"] {
    box-sizing: border-box;
    margin-right: 0.4375em;
    padding: 0;
}
/* fieldset */
fieldset {
    border: 1px solid #d1d1d1;
    margin: 0 0 1.75em;
    min-width: inherit;
    padding: 0.875em;
}
/* textarea */
textarea {
    overflow: auto;
    vertical-align: top;
}
/* placeholder */
::-webkit-input-placeholder { color: #686868; }
:-ms-input-placeholder      { color: #686868; }
::placeholder               { color: #686868; }
/* Tables (class-less only; .freesatei_table / .satei_table handled separately below) */
table:not([class]) {
    border-collapse: collapse;
    border-spacing: 0;
    border-width: 1px 0 0;
    margin: 0 0 1.75em;
    width: 100%;
}
table:not([class]) th,
table:not([class]) td {
    border-bottom: 1px solid #d1d1d1;
    padding: 0.4375em;
    text-align: left;
}
table:not([class]) th {
    font-weight: 700;
}
/* .freesatei_table / .satei_table: box-sizing and border reset */
.freesatei_table,
.freesatei_table *,
.satei_table,
.satei_table * {
    box-sizing: content-box;
}
/* .freesatei_table / .satei_table: base border (overridden by page custom CSS) */
.freesatei_table,
.satei_table {
    border: 1px solid #d1d1d1;
    border-collapse: collapse;
    border-spacing: 0;
    border-width: 1px 0 0 1px;
    width: 100%;
    table-layout: fixed;
    margin: 0 0 1.75em;
}
.freesatei_table th,
.freesatei_table td,
.satei_table th,
.satei_table td {
    border: 1px solid #d1d1d1;
    border-width: 0 1px 1px 0;
    padding: 0.4375em;
    font-weight: normal;
    text-align: left;
}
.freesatei_table th,
.satei_table th {
    font-weight: 700;
}
.satei_table th span {
    color: red;
    margin: 0 20px;
}
/* .keiyaku_table base */
.keiyaku_table {
    border-collapse: collapse;
    border-spacing: 0;
    border-width: 1px 0 0 1px;
    border: 1px solid #d1d1d1;
    width: 100%;
    table-layout: fixed;
    margin: 0 0 1.75em;
}
.keiyaku_table th,
.keiyaku_table td {
    border: 1px solid #d1d1d1;
    border-width: 0 1px 1px 0;
    padding: 0.4375em;
    text-align: left;
    font-weight: normal;
}
.keiyaku_table th {
    font-weight: 700;
}
/* .cm_shop_info_table width */
.cm_shop_info_table {
    width: 100%;
}
/* Footer link color */
.sell__footer_inner a,
.sell__footer__contact a {
    color: #fff;
}
/* Footer tel link (SP) */
.sell__footer_shop_tel a {
    color: #fff;
}
/* Headings (page content) */
:where(.sell__common_page_area, .page_area, article.hentry) h1 {
    font-size: 2em;
}
:where(.sell__common_page_area, .page_area, article.hentry) h2 {
    font-size: 1.5em;
    margin-bottom: 0.5em;
}
:where(.sell__common_page_area, .page_area, article.hentry) h3 {
    font-size: 1.1em;
    margin-bottom: 0.4em;
}
/* ============================================================ */
/**************************************************************************************************************************
======================== ADD CSS ======================== ADD CSS ======================== ADD CSS ========================
**************************************************************************************************************************/
p {
  margin: 0px;
}
a {
  text-decoration: none;
}
a:link {
  color: #004CCA;
}
a:visited {
  color: #6219DB;
}
a:hover {
  color: #048ADE;
  text-decoration: none;
}
a:active {
  color: #048ADE;
  text-decoration: none;
}
img {
  max-width: 100%;
}
ul {
padding: 0px;
list-style: none;
}
.oh {
    overflow: hidden;
}
.L {
    float: left;
}
.R {
    float: right;
}
.sp {
    display: none;
}
.pr {
  position: relative;
}
#menu {
    display: none;
}
body {
font-family: -apple-system, BlinkMacSystemFont, 'Hiragino Sans', 'Hiragino Kaku Gothic ProN', '游ゴシック  Medium', meiryo, sans-serif;
}
.wrap_wide {
    min-width: 1300px;
    max-width: 1600px;
    padding: 0 40px;
    margin: auto;
}
footer .wrap_wide {
    width: 100%;
    padding: 0 20px;
    margin: auto;
    min-width: unset;
    max-width: unset;
}
.logo {
    overflow: hidden;
    float: left;
    margin: 20px 0;
}
.logo_img {
    float: left;
    width: 60px;
}
.logo_txt {
    font-size: 11px;
    width: 180px;
    float: left;
    padding: 15px 0 15px 25px;
    line-height: 15px;
    text-align: left;
}
header.site_hd .wrap_wide {
    overflow: hidden;
}
.hd_menu {
    letter-spacing: -.4em;
    text-align: center;
    display: inline-block;
}
.hd_menu a {
    display: inline-block;
    letter-spacing: normal;
    line-height: 100px;
    padding: 0 30px;
    text-align: center;
    color: #121212;
    font-size: 13px;
}
.hd_contact {
    float: right;
}
header.site_hd {
    text-align: center;
}
.hd_contact a {
    display: block;
    line-height: 40px;
    background: #e95513;
    color: #fff;
    font-size: 14px;
    width: 260px;
    text-align: center;
    border-radius: 20px;
    margin: 32px 0 20px;
    overflow: hidden;
    padding-left: 15px;
    box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.45);
}
.hd_contact a span {
    float: right;
    margin-right: 10px;
}
a {
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    transition: 0.2s linear;
}
.hd_menu a:hover {
    background: #0c2e44;
    color: #fff;
}
.slider > div {
    height: 600px;
    background-repeat: no-repeat;
    background-size: cover;
    position: relative;
    background-position: center;
}
.slide01 {
    background-image: url(../../uploads/2017/11/top_img.png);
}
.slide02 {
    background-image: url(../../uploads/2017/11/sldie02.png);
}
.slide03 {
    background-image: url(../../uploads/2017/11/sldie03.png);
}
.slide04 {
    background-image: url(../../uploads/2017/11/sldie04.png);
}
.top_txt {
    font-size: 40px;
    font-family: serif;
    color: #fff;
    font-style: italic;
    text-shadow: 1px 2px 2px rgba(0, 0, 0, 0.5);
}
.slide01 .top_txt span {
    font-size: 60px;
}
.slide01 .top_txt {
    letter-spacing: 4px;
    position: absolute;
    top: 25%;
    left: 50px;
}
.slide02 .top_txt span {
    display: block;
    font-size: 24px;
}
.slide02 .top_txt {
    position: absolute;
    left: 50px;
    top: 25%;
}
.slide03 .top_txt {
    position: absolute;
    left: 50px;
    top: 25%;
}
.slide03 .top_txt span {
    font-size: 60px;
    margin-left: 20px;
}
.slide04 .top_txt {
    position: absolute;
    top: 25%;
    left: 50px;
}
.slide04 .top_txt span {
    font-size: 60px;
    margin-left: 10px;
}
.bx-wrapper {
    border: none;
    box-shadow: none;
    margin: 0;
}
section.top {
    position: relative;
}
.top_box {
    position: absolute;
    height: 450px;
    width: 370px;
    top: 0;
    bottom: 0;
    margin: auto;
    right: 100px;
    background: #fff;
    border-radius: 7px;
    overflow: hidden;
}
.top_box_txt {
    text-align: center;
    background: #002d43;
    color: #fff;
    font-size: 22px;
    line-height: 60px;
    letter-spacing: 10px;
    margin-bottom: 40px;
}
.top_box form {
    padding: 0 20px;
}
.top_box label {
    display: block;
    font-size: 21px;
    font-weight: bold;
    padding-left: 25px;
    background-image: url(../../uploads/2017/11/top_box_check.png);
    background-repeat: no-repeat;
    background-position: left center;
}
.top_box select {
    -webkit-appearance: none;
    width: 100%;
    border-radius: 0;
    border-width: 2px;
    background: #fff;
    font-size: 14px;
    line-height: 40px;
    padding-left: 15px;
    margin-bottom: 10px;
    font-family: unset;
}
.top_box input[type="submit"] {
    width: 100%;
    border-radius: 20px;
    background: #e95733;
    margin: 10px 0;
    box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.4);
    -webkit-transition: 0.1s linear;
    -moz-transition: 0.1s linear;
    -o-transition: 0.1s linear;
    transition: 0.1s linear;
}
.top_box input[type="submit"]:hover {
    box-shadow: 0 0 0;
    margin: 12px 0 8px;
}
h2.top_h2 {
    text-align: center;
    line-height: 80px;
    font-size: 34px;
    font-family: 'Oswald', sans-serif;
    font-weight: 500;
    margin-bottom: 20px;
}
.sec01_L {
    width: 30%;
}
h3.sec01_h3 {
    text-align: center;
    font-size: 23px;
    font-weight: 400;
    letter-spacing: 5px;
    background-image: url(../../uploads/2017/11/sec01_icon.png);
    line-height: 44px;
    background-repeat: no-repeat;
    background-position-x: 30%;
    margin-bottom: 30px;
}
.txtc {
    text-align: center;
    font-size: 12px;
    line-height: 2;
    font-weight: 300;
    margin-bottom: 30px;
}
.btn_box {
    letter-spacing: -.4em;
}
.btn_box a {
    display: inline-block;
    letter-spacing: normal;
    width: 46%;
    margin: 2%;
    border: 1px solid #002d43;
    text-align: center;
    line-height: 40px;
    font-size: 13px;
    color: #121212;
    font-weight: 600;
    overflow: hidden;
    padding-left: 20px;
}
.btn_box a span {
    float: right;
    margin-right: 10px;
}
section.sec01 .wrap_wide {
    background-image: url(../../uploads/2017/11/sec02_bg.png);
    background-repeat: no-repeat;
    background-position: 150% center;
}
.sec02 .wrap_wide {
    text-align: center;
    letter-spacing: -.4em;
}
.sec02box {
    display: inline-block;
    letter-spacing: normal;
    width: 27%;
    margin: 0% 2% 50px;
    text-align: left;
    border: solid 1px #eee;
    vertical-align: top;
    height: 470px;
}
.txt {
    font-size: 13px;
    font-weight: 300;
    line-height: 1.7;
}
.link_txt {
    font-size: 12px;
    margin-top: 10px;
}
.sec2_ttl {
    font-weight: bold;
    font-size: 18px;
    position: relative;
    line-height: 1;
    margin: 20px 0;
    padding-left: 50px;
    font-family: 'Oswald', sans-serif;
}
.sec2_ttl span {
    display: block;
    margin-top: 6px;
    font-weight: 300;
    font-size: 13px;
    color: #9b9b9b;
}
.sec2_ttl.set01:before {
    content: "1";
}
.sec2_ttl.set02:before {
    content: "2";
}
.sec2_ttl.set03:before {
    content: "3";
}
.sec2_ttl.set04:before {
    content: "4";
}
.sec2_ttl.set05:before {
    content: "5";
}
.sec2_ttl.set06:before {
    content: "6";
}
.sec2_ttl.set07:before {
    content: "7";
}
.sec2_ttl.set08:before {
    content: "8";
}
.sec2_ttl::before {
    position: absolute;
    left: 15px;
    font-size: 40px;
    line-height: 40px;
    color: #999;
    font-weight: 500;
}
.link_txt span {
    margin-right: 5px;
}
.pa {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.sec02box {
    -webkit-transition: 0.2s linear;
    -moz-transition: 0.2s linear;
    -o-transition: 0.2s linear;
    transition: 0.2s linear;
}
.sec02box:hover {
    box-shadow: 0 5px 7px rgba(0, 0, 0, 0.3);
}
.txt {
    padding: 0 17px 17px;
}
.link_txt {
    padding: 0 10px;
}
footer.site_ft {
    background-color: #202121;
    padding: 30px 0 10px;
    color: #fff;
}
footer.site_ft .wrap_wide {
    overflow: hidden;
}
.ft_menu {
    width: 100%;
    letter-spacing: -.4em;
    float: none;
    text-align: center;
    margin-bottom: 15px;
}
.ft_menu a {
    display: inline-block;
    color: #fff;
    font-size: 12px;
    font-weight: 100;
    width: 48%;
    letter-spacing: normal;
    margin-bottom: 4px;
}
.ft_wrap {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
address {
    clear: both;
    font-size: 9px;
    font-weight: 100;
    margin: 0;
    text-align: center;
}
.ft_logo {
    width: 280px;
    margin: auto;
    margin-bottom: 15px;
}
.ft_com {
    font-size: 13px;
    font-weight: 100;
    margin-bottom: 20px;
}
.ft_com span {
    display: block;
}
.ft_tel {
    font-size: 42px;
    padding-left: 40px;
    background-image: url(../../uploads/2017/11/ft_tel_icon.png);
    background-repeat: no-repeat;
    background-position: center left;
}
a.ft_contact {
    display: block;
    line-height: 40px;
    text-align: center;
    background: #e95733;
    color: #fff;
    border-radius: 30px;
    overflow: hidden;
    padding-left: 30px;
    margin-bottom: 40px;
}
a.ft_contact span {
    float: right;
    margin-right: 20px;
}
.ft_menu a.gaibu {
    background-repeat: no-repeat;
    background-image: url(../../uploads/2017/11/gaibu_icon.png);
    background-position: 100% center;
}
.top_sec {
    position: relative;
}
.top_01 {
    width: 33.57615%;
}
.top_02 {
    width: 27.5074%;
    position: absolute;
    top: 0;
    left: 33.57615%;
}
.top_03 {
    width: 19.45825%;
    position: absolute;
    top: 0;
    left: 61.08355%;
}
.top_04 {
    width: 19.45825%;
    position: absolute;
    top: 0;
    right: 0;
}
.top_05 {
    width: 16.8%;
}
.top_05-2 {
    width: 16.8%;
    position: absolute;
    bottom: 0;
    left: 16.8%;
}
.top_06 {
    position: absolute;
    bottom: 0;
    width: 18.067%;
    left: 33.57615%;
}
.top_07 {
    width: 16.899%;
    position: absolute;
    bottom: 0;
    left: 51.64315%;
}
.top_08 {
    width: 31.4327%;
    position: absolute;
    bottom: 0;
    right: 0;
}
.top_09 {
    width: 34.491%;
    position: absolute;
    left: 33.57615%;
    top: 36%;
}
.wrap_1100 {
    width: 92%;
    margin: auto;
    overflow: hidden;
}
.satei_ul {
    overflow: hidden;
    width: 810px;
    float: left;
}
.satei_ul li {
    background-color: #fff;
    width: 250px;
    float: left;
    margin-right: 20px;
    line-height: 2;
    font-size: 14px;
    padding-left: 10px;
    border-radius: 4px;
}
.satei_sec .wrap_1100 {
    position: relative;
}
input.satei_btn {
    background-color: #f87a1d;
    color: #fff;
    width: 320px;
    text-align: center;
    margin-top: 15px;
    line-height: 3;
    position: absolute;
    right: 0;
    bottom: 10px;
    padding: 0;
}
div.satei_sec form {
    display: block;
    clear: both;
    padding-top: 10px;
}
div.satei_sec form select {
/*    -webkit-appearance: none;*/
    border-radius: 0;
    display: inline-block;
    width: 225px;
    margin-right: 10px;
    padding: 0 10px;
    font-family: unset;
}
.satei_sec h2 {
    font-size: 19px;
    color: #fff;
    width: 770px;
    float: left;
}
#hoge {
    margin: 0 auto;
}
#hoge {
    position: relative;
    height: 790px;
}
#hoge .num_area {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    padding-top: 50px;
}
.num_h2 {
    text-align: center;
    font-size: 29px;
}
.num_h2 span {
    display: block;
    font-size: 27px;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    color: #002d43;
}
.num_ul {
    overflow: hidden;
    padding: 0 40px;
}
.num_ul li {
    width: 33%;
    float: left;
    padding: 0 23px;
}
.num {
    font-family: 'Oswald', sans-serif;
    text-align: center;
    color: #002d43;
}
.demo {
    font-family: 'Oswald', sans-serif;
    font-size: 100px;
    font-weight: 500;
}
.tani {
    font-size: 28px;
    font-weight: bold;
}
.num_h3 {
    text-align: center;
    font-family: 'Oswald', sans-serif;
    font-size: 25px;
    margin-bottom: 13px;
}
.num_pic {
    width: 50%;
    margin: auto;
}
.sec_dengon {
    background-color: #f6f6f6;
    padding-top: 60px;
    padding-bottom: 60px;
}
.dengon_en {
    font-size: 57px;
    font-family: 'Oswald', sans-serif;
    font-weight: 400;
    color: #002d43;
}
.dengon_btn li {
    width: 48%;
    float: left;
    text-align: center;
    background-color: #002d43;
    margin-right: 20px;
    line-height: 4;
    transition: 0.2s;
}
.dengon_btn li:hover {
    background-color: #124c69;
}
.dengon_btn a {
    display: block;
    color: #fff;
}
.dengon_h2 {
    margin-bottom: 10px;
}
.dengon_btn {
    overflow: hidden;
    margin-top: 30px;
    margin-bottom: 60px;
}
.dengon_slider {
    background-color: #fff;
    border: solid 2px;
    width: 1090px;
    box-shadow: #333 3px 3px 0px;
    margin-bottom: 40px;
    position: relative;
    height: auto;
    padding-top: 40px;
}
.dengon_slider.dengon_slider_house {
    margin-bottom: 40px;
}
.pin_01 {
    width: 15px;
    position: absolute;
    top: 0px;
    left: 10px;
    z-index: 10;
}
.pin_02 {
    width: 15px;
    position: absolute;
    top: 0px;
    right: 10px;
    z-index: 10;
}
.slide_L {
    width: 300px;
    float: left;
}
.slide_R {
    width: 650px;
    float: right;
}
.slide_LR {
    width: 1000px;
    margin: auto;
        margin-top: auto;
    margin-top: auto;
    margin-top: auto;
    overflow: hidden;
    height: 270px;
}
.dengon_slide_area {
    background-color: #f0b72e;
    font-size: 12px;
    display: inline-block;
    position: relative;
    top: -2px;
    padding: 0 10px;
    margin-left: 20px;
}
.dengon_date {
    font-size: 12px;
}
.dengon_message {
    font-size: 13px;
}
.sec02 {
    padding-top: 50px;
}
.top_sec img {
    width: 100%;
}
.staff_page_title {
  background-image: url(../../uploads/2017/11/staff_titile.png);
}
.company_page_title {
    background-image: url(../../uploads/2022/05/company_titile.jpg);
    margin-bottom: 0px !important;
}
.sell_page_title {
  background-image: url(../../uploads/2017/11/sell_title.png);
}
.service_page_title {
  background-image: url(../../uploads/2017/12/service_title.png);
}
.poli_page_title {
  background-image: url(../../uploads/2017/12/policy_title.png);
}
.page_titile {
    background-size: cover;
    height: 25vw;
    margin-bottom: 50px;
}
.page_title_mask {
    background-color: rgba(0, 0, 0, 0.47);
    height: 25vw;
}
.page_h1 {
  text-align: center;
  padding-top: 9vw;
  color: #fff;
  font-size: 39px;
}
.page_h1 span {
  display: block;
  font-size: 20px;
}
.page_h1 span:after {
  content: '';
  background-color: #fff;
  height: 1px;
  width: 30px;
  background-color: #fff;
  display: block;
  margin: auto;
  margin-top: 10px;
}
.page_area {
   width: 92%;
    margin: auto;
}
.page_text_first {
    text-align: center;
    margin-bottom: 40px;
}
.staff_L_01 {
  width: 400px;
  float: left;
}
.staff_R_01 {
  width: 650px;
  float: right;
}
.staff_LR {
    overflow: hidden;
    margin-bottom: 90px;
}
.staff_name span {
    display: block;
    font-size: 14px;
    margin-bottom: 5px;
    font-family: 'Oswald', sans-serif;
}
.staff_name {
    font-size: 35px;
    font-weight: bold;
    margin-bottom: 10px;
}
.staff_pr span {
    font-family: 'Oswald', sans-serif;
    background-color: #002d43;
    color: #fff;
    font-weight: 300;
    font-size: 10px;
    letter-spacing: 2px;
    border-radius: 3px;
    display: block;
    width: 80px;
    text-align: center;
    margin-bottom: 5px;
}
.staff_pr {
    font-size: 14px;
    margin-bottom: 10px;
}
.staff_ms span {
    font-family: 'Oswald', sans-serif;
    background-color: #002d43;
    color: #fff;
    font-weight: 300;
    font-size: 10px;
    letter-spacing: 2px;
    border-radius: 3px;
    display: block;
    width: 80px;
    text-align: center;
    margin-bottom: 5px;
}
.staff_ms {
    font-size: 14px;
}
.staff_R_02 {
    width: 400px;
    float: right;
}
.staff_L_02 {
    width: 650px;
    float: left;
}
.staff_area {
    font-size: 14px;
    border-top: solid 1px #eee;
    padding-top: 5px;
    margin-bottom: 10px;
    font-weight: bold;
}
.compnay_name {
    text-align: center;
    font-size: 30px;
    margin-bottom: 20px;
}
.compnay_name span {
    display: block;
    font-size: 17px;
    font-family: 'Oswald', sans-serif;
}
.com_table {
    width: 100%;
    font-size: 14px;
}
.com_table tr:nth-child(2n+1) {
    background-color: #eee;
}
.com_table th {
    width: 30%;
    padding: 3%;
    border: solid 2px #fff;
}
.com_table td {
    padding: 3%;
    border: solid 2px #fff;
}
.com_pic_ul li {
    width: 350px;
    float: left;
    margin-right: 24px;
    margin-bottom: 25px;
}
.com_pic_ul li:nth-child(3n) {
    margin-right: 0;
}
.com_pic {
    margin-bottom: 10px;
}
.com_pic_text {
    font-size: 14px;
}
.com_pic_ul {
    overflow: hidden;
}
.com_map {
    height: 320px;
}
.com_area {
    margin-bottom: 80px;
}
.com_L {
    width: 45%;
    float: left;
}
.com_R {
    width: 50%;
    float: right;
}
.com_LR {
    overflow: hidden;
}
.hide {
    display: none;
}
.tab {
    overflow: hidden;
    margin-bottom: 40px;
}
.tab li.select {
    background-color: #0c2e44;
    color: #fff;
}
.tab li {
    width: 49%;
    background-color: #eee;
    float: left;
    text-align: center;
    line-height: 90px;
    cursor: pointer;
    margin-right: 1%;
}
.tab li span {
    font-family: 'Oswald', sans-serif;
    font-size: 39px;
    margin-right: 20px;
    position: relative;
    top: 7px;
}
.flow_h2 {
    position: relative;
    padding-left: 60px;
}
.h2_maru {
    display: block;
    position: absolute;
    top: 9px;
    left: 0;
    width: 36px;
    height: 36px;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
    background-color: #ffde38;
    border: 2px solid #333;
}
.h2_num {
    display: block;
    text-align: center;
    color: #333;
    font-size: 20px;
}
.flow_h2 {
    position: relative;
    padding-left: 54px;
    font-size: 30px;
    margin-bottom: 20px;
}
.h2_under_line {
    border-bottom: solid 3px #333;
    padding-bottom: 4px;
}
.h2_color {
    color: #213690;
}
.flow_text_01 {
    border: solid 3px #333;
    padding: 4%;
    font-size: 14px;
    background-color: #fff299;
    font-weight: bold;
    margin-bottom: 30px;
}
.flow_text_01 span {
    color: #fb1810;
}
.flow_h3 {
    background-image: url(../../uploads/2017/11/h3_arrow.png);
    background-repeat: no-repeat;
    background-size: 31px;
    padding-left: 47px;
    font-size: 19px;
    background-position: 1px;
    margin-bottom: 10px;
}
.flow_text {
    font-size: 14px;
    margin-bottom: 20px;
}
.flow_02 {
    width: 320px;
    margin-bottom: 30px;
}
.flow_03 {
    margin-bottom: 30px;
}
.h2_sub {
    background-color: #0c2e44;
    color: #fff;
    text-align: center;
    line-height: 2;
    font-size: 22px;
    margin-bottom: 30px;
}
.flow_05 {
    margin-bottom: 30px;
}
.flow_sec {
    margin-bottom: 60px;
}
.flow_08 {
    text-align: center;
    margin-bottom: 50px;
}
.flow_09 {
    text-align: center;
}
.flow_07 {
    text-align: center;
}
.flow_05 {
    text-align: center;
    width: 100%;
    margin: 30px auto;
}
.flow_06 {
    text-align: center;
}
.flow_pic_01 {
    text-align: center;
}
.flow_03 {
    margin-bottom: 30px;
    text-align: center;
}
.flow_02 {
    width: 350px;
    margin: auto;
        margin-bottom: auto;
    margin-bottom: 30px;
}
.company_area01 {
    text-align: center;
    font-size: 15px;
    padding: 5% 3%;
    background-color: #1F2E55;
    color: #fff;
    line-height: 24px;
    letter-spacing: 2px;
}
.company_map {
    position: relative;
    height: 500px;
    background: url(../../uploads/2017/12/hokusetsu_map.png);
    background-position: center;
    background-size: cover; 
}
.company_map p.map {
width: 100%;
}
.company_map .text {
    position: absolute;
    left: 50%;
    margin-left: -500px;
    top: 20px;
    width: 520px;
}
.company_map .text p.la01{
    font-size: 34px;
    letter-spacing: 7px;
    color:#1F2E55;
    font-weight: bold ;
}
.company_map .text p.la02{
margin-bottom: 15px;
}
.company_map .text p.sm01 {
color: #1F2E55;
font-size:13px;
}
.shop_tab {
    padding: 90px 0px;
    width: 1000px;
    margin: auto;
}
.shop_tab h2{
text-align: center;
font-size: 24px;
}
.shop_tab h2 span{
display: block;
font-size: 20px;
font-family: 'Oswald', sans-serif;
font-weight: 400;
color: #002d43;
}
.shop_tab ul.content li.hide {
display:none;
}
.shop_tab .shop_sec01 {

}
.shop_tab .shop_sec01 .list_all {
    overflow: hidden;
}
.shop_tab .shop_sec01 .list_all div{
width: 25%;
float: left;
}
.shop_tab .shop_sec01 .list_all div.clear{
width: 25%;
height: 179px;
}
.shop_tab .inbox{
    position: relative;
    /* height: 1200px; */
}
.shop_tab .tab li {
    position: absolute;
    width: 25%;
    background-color: #fff;
    float: none;
    line-height: auto;
    margin: 0px;
    background: url(../../uploads/2017/12/shop_arrow.png)no-repeat center 158px;
    background-size: 18px;
    overflow: hidden ;
}
.shop_tab .tab li.shop00 {
color: #002d43;
border: 1px solid #002d43;
position: absolute ;
right:0px;
top:-50px;
width: 180px;
line-height: 30px;
font-size: 13px;
border-radius: 16px;
letter-spacing: 1px;
font-weight: 500 ;
}
.shop_tab .tab li.shop01 {
    left: 25%;
    height: 179px;
    top: 0px;
    padding: 20px 41px 10px;
    border-top: 1px solid #a3a3a3;
    transition: 0.3s;
}
.shop_tab .tab li .off{
display:none;
}
.shop_tab .tab li .mask {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: #1F2E55;
    left: 100%;
    top: 0px;
    transition: 0.3s;
}
.shop_tab .tab li:hover .mask {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    background: #1F2E55;
    left: 0px;
    top: 0px;
}
.shop_tab .tab li:hover .on{
    display: none;
    transition: 0.3s;
}
.shop_tab .tab li:hover .off{
    display: block;
    position: absolute;
    left: 0px;
    top: 0px;
    padding: 20px 41px 10px;
    transition: 0.3s;
}
.shop_tab .tab li.shop02 {
    right: 0%;
    height: 179px;
    top: 0px;
    padding: 20px 41px 10px;
    border-right: 1px solid #a3a3a3;
    border-top: 1px solid #a3a3a3;
}
li.shop02 {}
.shop_tab .tab li.shop03 {
    left: 0%;
    height: 179px;
    top: 179px;
    padding: 20px 41px 10px;
    border-left: 1px solid #a3a3a3;
}
.shop_tab .tab li.shop04 {
    left: 50%;
    height: 179px;
    bottom: 179px;
    padding: 20px 41px 10px;
}
.shop_tab .tab li.shop05 {
    left: 25%;
    bottom: 0;
    height: 179px;
    padding: 20px 41px 10px;
    border-bottom: 1px solid #a3a3a3;
}
.shop_tab .tab li.shop06 {
    right: 0%;
    bottom: 0;
    height: 179px;
    padding: 20px 41px 10px;
    border-right: 1px solid #a3a3a3;
    border-bottom: 1px solid #a3a3a3;
}
.shop_tab .tab li img{
transition: 0.3s;
}
.shop_tab ul.content li.shop_sec02 {
    background: #fff;
    left: 0px;
    top: 0px;
    padding-top: 50px;
    z-index: 10000;
    position:relative 
}
.shop_tab ul.content .shop_logo {
width: 200px;
margin: auto;
margin-bottom: 50px;
}
.shop_tab .com_table th {
    width: 20%;
    padding: 12px;
}
.shop_tab .com_table td {
padding: 12px;
}
.shop_tab .shop_pic {

}
.shop_tab .shop_pic .shop_picCell{
display: inline-block ;
vertical-align: top;
width: 43.5%;
margin: 3%;
}
.shop_tab .shop_pic .shop_picCell p.pic{

}
.shop_tab .shop_pic .shop_picCell p.text{
font-size: 13px;
padding: 10px;
}
.tab {
    margin: 0;
        margin-top: 0px;
    margin-top: 30px;
}
.inbox ul {
    margin: 0;
}
.shop_pic {
    overflow: hidden;
    margin-bottom: 20px;
}
.shop_pic_image {
    width: 33.33333%;
    float: left;
    padding: 1px;
}
.shop_map {
    height: 340px;
}
.shop_intro {
    font-size: 14px;
    line-height: 2.5;
    margin-bottom: 50px;
    text-align: center;
    font-weight: bold;
}
ul.dengon_slide li a {
    position:  absolute;
    top: 0;
    left:  0;
    width:  100%;
    height:  100%;
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}
ul.dengon_slide li a:hover {
    background: rgba(255, 255, 255, 0.4);
}
.slide_house {
    padding-left: 50px;
}
ul.dengon_slide2 li {
    padding-bottom:  20px;
}
ul.dengon_slide2 li a {
    position:  absolute;
    top: 0;
    left:  0;
    width:  100%;
    height:  100%;
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
}
ul.dengon_slide2 li a:hover {
    background: rgba(255, 255, 255, 0.4);
}
.choumei_tab{overflow:hidden;}
.choumei_tab li.selects {
    background: #464242;
    position: relative;
    color: #fff;
}
.hiden {display:none;}
.wrap {
    width: 92%;
    margin: 0 auto;
}
h1.choumei_pagettl {
    font-size:  20px;
    font-weight: 500;
    line-height:  70px;
}
.choumei_top_txt {
    font-size:  15px;
    margin-bottom:  40px;
}
.choumei_type_link > span,.choumei_type_link > a {
    display:  inline-block;
    letter-spacing:  normal;
    width:  30%;
    text-align:  center;
    border: solid #464242;
    font-size:  14px;
    font-weight:  bold;
    color:  #212121;
    border-width:  1px 1px 0;
    margin-right:  10px;
    border-radius:  5px 5px 0 0;
    vertical-align:  bottom;
}
.choumei_type_link {
    letter-spacing:  -.4em;
    margin-bottom:  -1px;
    position:  relative;
    z-index:  10;
}
.choumei_type_link span {line-height:  40px;background:  #464242;color: #fff;}
.choumei_type_link a {
    line-height:  35px;
    background: #fff;
    color:  #504f4f;
    -webkit-transition: 0.2s ease-in-out;
    -moz-transition: 0.2s ease-in-out;
    -o-transition: 0.2s ease-in-out;
    transition: 0.2s ease-in-out;
    font-weight: bold;
    border-bottom:  solid 1px #464242;
}
.choumei_page_content {
    padding-top: 20px;
    margin-bottom: 50px;
    border: 1px solid #ccc;
    border-radius: 0 0px 10px 10px;
    border-top: solid 7px #464242;
}
ul.choumei_tab {
    margin: 0;
    padding-bottom: 30px;
}
ul.choumei_tab li {
    display:  inline-block;
    padding: 5px 0;
    width: 120px;
    text-align:  center;
    font-size:  14px;
    margin-left: 10px;
    border-radius: 6px;
    background:  #fff;
    border:  1px solid #464242;
    cursor: pointer;
    float: left;
    margin-bottom: 30px;
}
.choumei_tab li.selects:after {
    content: "";
    height:  0;
    width:  0;
    position:  absolute;
    border-left: 5px solid transparent;
    border-right: 5px solid transparent;
    border-top: 10px solid #464242;
    left:  0;
    right:  0;
    margin:  auto;
    bottom: -10px;
}
ul.choumei_content {
    margin:  0 10px;
}
.aiueo_ttl {
    font-size: 16px;
    border-bottom: 1px solid #ccc;
    margin-bottom: 10px;
    font-weight: bold;
    color: #464242;
}
.choumei_box {
    letter-spacing:  -.4em;
    margin-bottom:  30px;
}
.choumei_box a {
    display: block;
}
.choumei_box br {
    display:  none;
}
.choumei_box a:hover {
    text-decoration:  underline;
}
h1.archives_title {
    font-size:  20px;
    background: #fafafa;
    padding: 15px 40px;
    position:  relative;
    margin: 40px 0;
}
h1.archives_title:after {
    content: "";
    position:  absolute;
    height: 80%;
    left: 10px;
    width: 7px;
    background: #002d43;
    top: 0;
    bottom: 0;
    margin:  auto;
}
.mansion_img {
    width: 20%;
    padding: 4% 2% 2%;
    border: solid #ccc;
    border-width: 0 1px 1px 0;
}
.mansion_name {
    position: absolute;
    background: #f0b72e;
    color: #212121;
    font-weight: bold;
    line-height: 1;
    padding: 5px 10px;
    font-size: 11px;
    top: 9px;
    left: 19px;
}
.mansion_comment {
    width: 70%;
    font-size: 11px;
    line-height: 1.2;
    display: table-cell;
    padding: 2%;
    vertical-align: top;
    border: solid #ccc;
    border-width: 0 1px 1px 0;
}
.fudo_list_page {border:  solid #ccc;border-width:  1px 0 0 1px;}
.fudo_list_page .oh.pr {
    display:  table-row;
}
.fudo_list_page article {display:  table;width: 100%;}
.mansion_img {
    display: table-cell;
    position: relative;
}
.mansion_btn {
    display: table-cell;
    vertical-align:  middle;
    border:  solid #ccc;
    border-width:  0 1px 1px 0;
    width: 10%;
}
.mansion_btn a {
    font-size: 11px;
    background: #e95533;
    color:  #fff;
    display:  block;
    width: 90%;
    line-height: 50px;
    text-align:  center;
    margin:  auto;
    border-radius:  10px;
    box-shadow: 1px 2px 3px rgba(0, 0, 0, 0.4);
}
.pager {
    margin:  20px 0 0;
}
.pager > div span,.pager > div a {
    width: 60px;
    display:  inline-block;
    text-align:  center;
    border-radius:  3px;
    line-height:  30px;
    vertical-align:  top;
}
h1.single_satei {
    font-size: 2em;
    margin:  40px 0;
}
h1.single_satei span {
    background: #f0b72e;
    font-size:  15px;
    padding:  2px 10px;
    margin-left:  30px;
}
.satei_table td input[type="date"],
.satei_table td input[type="time"],
.satei_table td input[type="datetime-local"],
.satei_table td input[type="week"],
.satei_table td input[type="month"],
.satei_table td input[type="text"],
.satei_table td input[type="email"],
.satei_table td input[type="url"],
.satei_table td input[type="password"],
.satei_table td input[type="search"],
.satei_table td input[type="tel"],
.satei_table td input[type="number"],
.satei_table td textarea {
    box-sizing: border-box;
}
h2.keiyaku_h2 {
    margin: 0;
}
.type-house .satei_table th,
.type-mansion .satei_table th {
    vertical-align: middle;
}
table.satei_table .title {
    display:  inline-block;
    background:  #333;
    color:  #fff;
    padding:  0 10px;
}
table.satei_table .text {
    margin-bottom:  10px;
}
.house_comment {
    display: table-cell;
    font-size: 12px;
    padding: 4% 2% 2%;
    border: solid #ccc;
    border-width: 0 1px 1px 0;
}
.service_ul li {
  width: 100%;
  float: none;
  padding: 0;
  margin-bottom: 20px;
  height: auto;
}
.service_ul {
  overflow: hidden;
}
.service_h2 span {
  font-family: Montserrat, "Helvetica Neue", sans-serif;
  margin-right: 10px;
  font-size: 21px;
  color: #ccc;
}
.service_h2 {
  font-size: 22px;
}
.service_pic {
  margin-bottom: 10px;
}
.service_text {
  font-size: 14px;
  margin-bottom: 5px;
}
.service_link {
  font-size: 14px;
}
.policy p {
    font-size: 15px;
    margin-bottom: 30px;
}
.shop_contact {
    background-color: #e95733;
    text-align: center;
    width: 100%;
    margin: 50px auto 0;
    line-height: 2;
    border-radius: 60px;
    font-size: 13px;
}
.shop_contact a {
    display: block;
    color: #fff;
    font-size: 20px;
}
span.tophikitsugi {
    display:  inline-block;
    width: 30%;
    margin-right:  10px;
}
table.satei_table span.set01 {
    display:  inline-block;
    width:  15%;
    margin-right:  10px;
}
table.satei_table span.set02 {
    display:  inline-block;
    width:  20%;
    margin-left:  10px;
}
.page_h1 span.no_span {
    display: inline-block !important;
    margin-left: 4px;
    margin-right: 4px;
}
.page_h1 span.no_span::after {
    display: inline-block !important;
    background: no-repeat;
    width: auto;
}
ul.cheack_ul {
    margin-bottom: 40px;
}
.choumei_box li {
    letter-spacing: normal;
    display: inline-block;
    width: 19%;
    margin-right: 1%;
    margin-bottom: 4px;
    font-size: 14px;
}
.mansion_img img {
    width: 100% !important;
}
.dengon_img {
    margin-bottom: 50px;
}
.dengon_mv{
    width: 100%;
}
.top_img_bg {
    background-image: url(../../uploads/2018/07/campaign_top_bg.png);
    background-size: cover;
    background-position: center;
    padding: 80px 0;
    position: relative;
}
.top_img_text_area {
    width: 900px;
    margin: auto;
}
.top_img_text_area_h1 {
    text-align: center;
    margin-bottom: 30px;
}
.top_img_text_area_p {
    color: #fff;
    font-size: 16px;
    letter-spacing: 4px;
    line-height: 2;
    text-align: center;
    margin-bottom: 40px;
}
.top_img_text_area_ul {
    text-align: center;
}
.top_img_text_area_ul li {
    display: inline-block;
    margin: 0 15px;
}
.top_img_human_01 {
    position: absolute;
    top: 90px;
    left: 50%;
    margin-left: -580px;
}
.top_img_human_02 {
    position: absolute;
    top: 270px;
    left: 50%;
    margin-left: 510px;
}
.top_img_human_03 {
    position: absolute;
    top: 460px;
    left: 50%;
    margin-left: -600px;
}
.campaign_area {
    width: 1100px;
    margin: 80px auto;
}
.campaign_area_inner {
    position: relative;
    height: 470px;
    margin-bottom: 120px;
    padding-top: 20px;
}
.campaign_area_text {
    position: absolute;
    background-color: rgba(6, 69, 122, 0.94);
    padding: 30px 70px;
    width: 680px;
    margin: 4px;
    box-shadow: #484848 0 0 4px;
    color: #fff;
    animation-delay: 500ms;
    animation-name: fadeInUp;
    z-index: 100;
}
.campaign_area_text.campaign_area_text_01 {
    top: 70px;
    right: 0;
}
.campaign_area_text.campaign_area_text_01 h2 {
    background-image: url(../../uploads/2018/07/campaign_num_01.png);
}
.campaign_area_text.campaign_area_text_02 h2 {
    background-image: url(../../uploads/2018/07/campaign_num_02.png);
}
.campaign_area_text.campaign_area_text_03 h2 {
    background-image: url(../../uploads/2018/07/campaign_num_03.png);
}
.campaign_area_text h2 {
    font-size: 28px;
    margin-bottom: 20px;
    padding: 20px 0 20px 120px;
    background-repeat: no-repeat;
    background-size: 108px;
}
.campaign_area_btn {
    background-color: #fff;
    border-radius: 40px;
    line-height: 4;
    text-align: center;
    background-image: url(../../uploads/2018/07/campaign_arrow.png);
    background-repeat: no-repeat;
    background-size: 19px;
    background-position: 92%;
    transition: 0.2s;
}
.campaign_area_btn a {
    display: block;
    color: #144f81;
}
.campaign_area_text p:last-child {
    display: none;
}
.campaign_area_text p {
    font-size: 14px;
    margin-bottom: 30px;
    line-height: 2.5;
}
.campaign_pic_01 {
    width: 530px;
    animation-delay: 300ms;
    animation-name: fadeInUp;
}
.campaign_pic_02 {
    width: 530px;
    float: right;
    animation-delay: 300ms;
    animation-name: fadeInUp;
}
.campaign_area_text.campaign_area_text_02 {
    top: 70px;
}
.campaign_area_text.campaign_area_text_03 {
    right: 0;
    top: 70px;
}
.campaign_pic_03 {
    width: 530px;
    animation-delay: 300ms;
    animation-name: fadeInUp;
}
.yougo {
    border: solid 1px #ccc;
    margin: 4px;
    box-shadow: #cbc4c4 0 0 3px;
    padding: 40px 60px;
}
.yougo h3 {
    font-size: 29px;
    margin-bottom: 20px;
}
.yougo h3 span {
    font-size: 15px;
    color: #02316a;
    margin-left: 20px;
}
.yougo h4 {
    background-image: url(../../uploads/2018/07/yougo_check.png);
    background-size: 16px;
    background-position: left;
    background-repeat: no-repeat;
    padding-left: 30px;
    border-bottom: solid 1px #0f4e80;
    margin-bottom: 13px;
}
.yougo p {
    font-size: 13px;
    margin-bottom: 30px;
}
.top_img_text_area_ul li:nth-child(1) {
    animation-delay: 500ms;
    animation-name: fadeIn;
}
.top_img_text_area_ul li:nth-child(2) {
    animation-delay: 700ms;
    animation-name: fadeIn;
}
.top_img_text_area_ul li:nth-child(3) {
    animation-delay: 900ms;
    animation-name: fadeIn;
}
.top_img_text_area_ul li:hover {
    opacity: 0.8;
}
.campaign_area_btn:hover {
    box-shadow: #07243c 0 0 20px;
    background-position: 94%;
}
.cam_time {
    color: #fff;
    font-size: 12px;
    position: absolute;
    bottom: 20px;
    right: 30px;
}
.kinjite_01 {
    text-align: center;
    margin-bottom: 120px;
    border-top: solid 7px #e60012;
    padding-top: 80px;
}
.kinjite_01 img {
    width: 410px;
}
.kinjite_02_01 {
  text-align: center;
  padding-top: 90px;
}
.kinjite_02 {
    position: relative;
    margin-bottom: 70px;
}
.kinjite_02_02 {
    position: absolute;
    top: 0;
    left: 50%;
    animation-delay: 300ms;
    animation-name: bounceInDown;
}
.kinjite_02_03 {
    position: absolute;
    top: -80px;
    right: 0;
    animation-delay: 600ms;
    animation-name: bounceInRight;
}
.kinjite_04 {
    width: 900px;
    margin: 0 auto 60px;
}
.kinjite_04 h2 {
  text-align: center;
  font-size: 40px;
}
.kinjite_04_ul li {
  background-color: #d4d9dc;
  text-align: center;
  width: 280px;
  float: left;
  margin: 10px;
  height: 250px;
}
.kinjite_04_ul {
  overflow: hidden;
}
.kinjite_04_num {
  font-family: 'Oswald', sans-serif;
  font-weight: bold;
  font-size: 60px;
}
.kinjite_04_text {
  font-weight: bold;
  font-size: 27px;
  line-height: 1.3;
  margin-bottom: 10px;
}
.kinjite_04_text_02 {
  font-size: 12px;
}
.kinjite_05 {
    font-size: 29px;
    font-weight: bold;
    text-align: center;
    margin-bottom: 40px;
}
.kinjite_06 img {
    width: 230px;
}
.kinjite_06 {
    text-align: center;
    margin-bottom: 60px;
}
.kinjite_07 {
    text-align: center;
    margin-bottom: 40px;
    margin-top: -20px;
}
.kinjite_07 img {
    width: 90px;
}
#post-2276 {
    overflow: hidden;
}
.fax-img {
    width: 100%;
    margin: 0 auto 30px;
}
/**************************************************************************************************************************
========================  SP CSS ========================  SP CSS ========================  SP CSS ========================
**************************************************************************************************************************/
/*フッター外部リンク*/
.external__footer_link_area {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  width: 100%;
  margin: 10px auto 30px;
}
.external__footer_link_area img {
  width: 100%;
}
/* input[type="image"] は img セレクターに該当しないため個別に指定 */
.external__footer_link_area input[type="image"] {
  width: 100%;
  cursor: pointer;
  vertical-align: middle;
  display: block;
}
/* form要素をaタグと同等のflexアイテムとして扱う */
.external__footer_link_area form {
  width: 49%;
  margin-bottom: 5px;
  transition: .2s;
  line-height: 0;
}
.external__footer_link_area form:hover {
  opacity: .8;
}
.external__footer_link_img:hover {
  opacity: .6;
  cursor: pointer;
}
.external__footer_link_area a {
    width: 49%;
    margin-bottom: 5px;
    transition: .2s;
}
.external__footer_link_area a:hover {
    opacity: .8;
}
.external__footer_link_area::after {
  content: "";
  display: block;
  width: 240px;
  height: 0;
}
.external__footer_link_area::before {
  height: 0;
  content: "";
  display: block;
  width: 240px;
  height: 0;
  order: 1;
}
/* ===================================================================
 * リニューアル    
 =================================================================== */
.page {
  width: 100%;
}
.sell__common_page_area {
    margin: 0 auto;
    max-width: 1200px;
    padding: 0 20px;
}
/********************** トップPC **********************/
.sell__common_page_top_box {
    position: absolute;
    background-color: #002d78;
    width: 380px;
    right: 0;
    left: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 240px;
}
.sell__common_page_top {
    position: relative;
}
.sell__common_page_top img {
    width: 100%;
}
.sell__common_page_top_text {
    text-align: center;
    color: #FFF;
    margin-top: 80px;
}
.sell__common_page_top_text p {
    font-size: 12px;
}
.sell__common_page_top_text h1 {
    font-size: 20px;
    position: relative;
}
.sell__common_page_top_text h1::after {
    content: "";
    display: block;
    width: 45px;
    height: 1px;
    background-color: #FFF;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    bottom: -15px;
}
/**********************見出しPC **********************/
.sell__common_inner_midashi
 {
    font-size: 18px;
    text-align: center;
    margin: 0 0 45px;
    padding-top: 25px;
    position: relative;
}
.sell__common_inner_midashi::after {
    content: "";
    display: block;
    width: 60px;
    height: 3px;
    background-color: #002d78;
    position: absolute;
    right: 0;
    left: 0;
    margin: auto;
    bottom: -15px;
}
/********************** 共通PC **********************/
.sell__common_title .sell__main_ttl,
.sell__common_title h2 {
    font-size: 22px;
    color: #002d78;
    font-weight: bold;
}
.sell__common_title p {
    font-size: 14px;
}
.sell__contents_flex {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
}
.sell__common_title {
    text-align: center;
    margin-bottom: 30px;
}
/********************** トップPC **********************/
/**フォーム**/
.sell__top_form div.satei_sec form select {
    width: 33%;
    margin: auto;
    background-color: #fff;
}
.sell__top_form input.satei_btn {
    width: 100%;
    position: initial;
    margin-bottom: 0;
}
.sell__top_form .wrap_1100 {
    width: initial;
    padding: 30px 50px;
    background: #002d78;
}
.sell__top_form div.satei_sec form {
    display: flex;
flex-wrap: wrap;
}
.sell__top_title {
    margin-bottom: 90px;
}
.sell__top_sec {
    position: relative;
    margin-bottom: 80px;
    border-bottom: solid 1px;
}
/*動画*/
.sell__top_movie {
    height: auto;
}
.sell__top_movie_bg {
    width: 100%;
    height: 33.2vw;
    display: inline-block;
    position: absolute;
    mix-blend-mode: multiply;
}
.sell__top_movie_logo_30 {
    width: 600px;
    position: absolute;
    top: 200px;
    margin: auto;
    left: 0;
    right: 0;
}
.sell__top_movie_logo_casa {
    top: 0px;
    position: absolute;
    width: 10.5vw;
}
.sell__top_video {
    width: 100%;
    margin-bottom: 260px;
}
/*査定フォーム*/
.sell__top_form {
    width: 1000px;
    background-color: #002d78;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 31vw;
}
.sell__30logo {
  width: 30%;
  margin: 50px auto 0;
}
/********************** お役立ちコンテンツPC **********************/
.sell__contents_sec {
    margin: 30px 0;
}
.sell__contents_graybox h3 {
    font-size: 16px;
    padding-top: 35px;
}
.sell__contents_flex li a {
    color: #000;
}
.sell__contents_graybox {
    background-color: #ededed;
    text-align: center;
    position: relative;
}
.sell__contents_graybox p {
    font-size: 12px;
    padding-bottom: 25px;
}
.sell__contents_graybox .sell__contents_number{
    background-color: #002d78;
    border-radius: 25px;
    width: 50px;
    height: 50px;
    font-size: 24px;
    color: #FFF;
    text-align: center;
    line-height: 50px;
    margin-right: 20px;
    position: absolute;
    top: -25px;
    left: 0;
    right: 0;
    margin: auto;
    font-weight: bold;
}
.sell__contents_flex li {
    width: 47%;
    padding-top: 20px;
}
img {
    height: auto;
    max-width: 100%;
    vertical-align: middle;
}
.map-img{
    width: 100%;
}
/********************** PC５つの強み **********************/
.sell__strength_sec {
    margin: 0 auto;
    margin-bottom: 150px;
    width: 1420px;
    position: relative;
    max-width: 1500px;
}
.sell__strength_list {
   width:250px;
   height:175px;
   background-size: cover;
   position: relative;
   display: flex;
   justify-content: center;
   align-items: center;
   color: #fff;
   text-align: center;
   padding: 2rem;
}
.sell__strength_list::before {
   content: "";
   width:250px;
   height:175px;
   z-index: 0;
   display: block;
   position: absolute;
   top: 0;
   left: 0;
   background-color: rgba(0,0,0,0.5);
}
.sell__strength_more_button a {
    color: #000;
    display: block;
    padding: 10px;
}
.sell__strength_list_title {
   width: 100%;
   height: 100%;
   position: absolute;
   top: 0;
   left: 0;
   z-index: 1;
   display: flex;
   justify-content: center;
   align-items: center;
   color: #fff;
   text-align: center;
   padding: 2rem;
}
.sell__strength_list {
    position: relative;
}
.sell__strength_list_bg {
    background-color: #000;
}
.sell__strength_list_bg img {
    opacity: .5;
    display: block;
}
.sell__strength_list_title {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    font-size: 36px;
    text-align: center;
    width: 100%;
    color: #fff;
    font-weight: 700;
    line-height: 46px;
    height: auto;
    letter-spacing: 10px;
}
.sell__strength_list_number {
    background-color: #002d78;
    border-radius: 25px;
    width: 50px;
    height: 50px;
    font-size: 24px!important;
    color: #FFF;
    text-align: center;
    line-height: 50px!important;
    margin-right: 20px;
    font-weight: bold!important;
}
.sell__strength_list_gray {
    background-color: #e8e8e8;
    min-height: 450px;
    width: 41%;
    margin-top: 35px;
    margin-left: 40px;
}
.sell__strength_list_gray_inner {
    padding: 60px 0 0 60px;
    width: 430px;
}
.sell__strength_list_gray_inner p {
    font-size: 14px;
    line-height: 30px;
}
.sell__strength_list_flex {
    display: flex;
    margin-bottom: 20px;
}
.sell__strength_list_flex h3 {
    font-size: 21px;
}
.sell__strength_list.sell__strength_list_bg {
    width: 900px;
    height: auto;
    position: absolute;
    right: 0;
    padding: 0;
}
.sell__strength_more_button {
    border: solid 1px;
    text-align: center;
    width: 200px;
    margin: 40px 0;
    font-size: 13px;
}
.sell__strength_more_button:hover {
    transition: all 0.5s;
    background-color: #FFF;
}
.sell__strength_list.sell__strength_list_bg.left {
    left: 0;
}
.sell__strength_list_gray.right {
    margin-left: 810px;
}
.sell__strength_list_gray.right .sell__strength_list_gray_inner {
    margin-left: 90px;
}
.wrap_1100 div h2 {
    font-size: 24px;
    color: #ffec00;
    text-align: center;
    margin-bottom: 0px;
    line-height: 30px;
    
}
.wrap_1100 div .kantan {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #FFF;
    font-size: 18px;
    font-weight: bold;
}
.wrap_1100 div .kantan::before, .wrap_1100 div .kantan::after {
    content: '';
    width: 35px;
    height: 3px;
    background-color: #FFF;
}
.wrap_1100 div .kantan::before{transform: rotate(60deg)}
.wrap_1100 div .kantan::after{transform: rotate(-60deg)}
.wrap_1100 div {
    display: flex;
}
.satei_sec form {
    display: block;
    clear: both;
    padding-top: 30px;
}
.satei_btn {
    background-color: #ffec00!important;
    color: #002d78!important;
}
.sell__top_suuzi {
    font-weight: bold;
    display: flex;
    align-items: center;
    justify-content: center;
}
.sell__top_text_01 {
    font-size: 27px!important;
    margin-right: 10px;
}
.sell__text_02 {
    font-size: 60px!important;
    color: #002d78;
}
.sell__text_02 span {
    font-size: 40px!important;
}
.agree_page_title {
    background-image: url(../../uploads/2017/12/agree_title.png);
}
.satei_page_title {
    background-image: url(../../uploads/2017/12/satei_page_title.png);
}
.sell__contents_flex img {
    width: 100%;
    height: 110px;
    object-fit: cover;
}
.sell__contents_flex img:hover {
    opacity: 0.5;
    transition: 0.5s all;
}
/*2024/01/08追加*/
.contact_sosinbtn { 
    text-align: center;
    margin: 40px auto;
}
.wpcf7-spinner {
    margin: 0;
}
/* ===================================================================      
 * スマホ       
 =================================================================== */
/* Responsive */
@media screen and (min-width: 751px) {
    .wrap {
        width: 1000px;
        max-width: 100%;
    }
    .wrap_1100 {
        width: 1100px;
        max-width: 100%;
    }
    .page_area {
        width: 1100px;
        max-width: 100%;
    }
    footer .wrap_wide {
        width: 1100px;
        padding: 0 40px;
    }
    .shop_contact {
        width: 600px;
        line-height: 4;
        font-size: 16px;
    }
    .external__footer_link_area {
        width: auto;
        margin: 50px auto;
    }
    .external__footer_link_area a {
        width: auto;
        margin-bottom: 15px;
    }
    .external__footer_link_area img,
    .external__footer_link_area input[type="image"] {
        width: 240px;
    }
    .external__footer_link_area form {
        width: auto;
        margin-bottom: 15px;
    }
    .service_ul li {
        width: 33%;
        float: left;
        padding: 0 25px;
        height: 390px;
        margin-bottom: 0;
    }
    .sell__common_page_area {
        padding: 0;
    }
    footer.site_ft {
        padding: 50px 0;
    }
    .ft_wrap {
        flex-direction: row;
    }
    .ft_menu {
        width: 40%;
        text-align: left;
        margin-bottom: 0;
    }
    .ft_menu a {
        width: 33.33%;
        font-size: 13px;
        margin-bottom: 7px;
    }
    .ft_menu a.gaibu {
        background-position: 80% center;
    }
    .ft_logo {
        width: 360px;
        margin: 0 0 20px;
    }
    a.ft_contact {
        margin-bottom: 0;
    }
    address {
        font-size: 11px;
        text-align: left;
    }
    .sell__contents_flex img {
        height: 17vw;
    }
    .flow_05 {
        width: 740px;
    }
    .fax-img {
        width: 600px;
        margin-bottom: 50px;
    }
    .company_area01 {
        font-size: 17px;
        padding: 30px 0;
        line-height: 28px;
    }
    .flow_text_01 {
        padding: 20px 30px;
        font-size: 19px;
    }
    .sell__common_page_top_text h1 {
        font-size: 26px;
    }
    .sell__common_inner_midashi {
        font-size: 24px;
        margin: 0 0 60px;
        padding-top: 100px;
    }
    .sell__common_title .sell__main_ttl,
    .sell__common_title h2 {
        font-size: 33px;
    }
    .sell__contents_flex {
        padding: 0;
    }
    .sell__contents_flex li {
        width: 32%;
    }
    .sell__contents_sec {
        margin: 0 200px 100px;
    }
    .sell__contents_graybox h3 {
        font-size: 20px;
        padding-top: 40px;
    }
    .sell__contents_graybox p {
        font-size: 14px;
        padding-bottom: 40px;
    }
}
/* assessment2 freesatei table th */
@media screen and (min-width: 751px) {
    .freesatei_table th {
        box-sizing: border-box;
        vertical-align: middle;
    }
}

/* SP base (moved from max-width) */
.sp_hd {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 10000;
}
.sp_pr {
    position: relative;
}
.slicknav_menu .slicknav_menutxt {
    display: none !important;
}
.slicknav_menu .slicknav_icon {
    width: 100%;
    margin: 0;
}
.slicknav_menu .slicknav_icon-bar {
width: 30px !important;
height: 2px !important;
margin-bottom: 5px;
}
a.slicknav_btn {
background-color: rgb(0, 45, 67);
border-radius: 1px;
}
a.slicknav_btn.slicknav_open span.slicknav_icon-bar:first-child {
    top: 5px;
    -moz-transform: rotate(405deg);
    -webkit-transform: rotate(405deg);
    -o-transform: rotate(405deg);
    -ms-transform: rotate(405deg);
    transform: rotate(405deg);
    position: absolute;
}
a.slicknav_btn.slicknav_open span.slicknav_icon-bar:nth-child(3) {
    top: 2.4px;
    -moz-transform: rotate(-405deg);
    -webkit-transform: rotate(-405deg);
    -o-transform: rotate(-405deg);
    -ms-transform: rotate(-405deg);
    transform: rotate(-405deg);
    position: absolute;
}
a.slicknav_btn.slicknav_open span.slicknav_icon-bar:nth-child(2) {
    opacity: 0;
}
span.slicknav_icon-bar {
    transition: all 0.5s ease-out;
    -o-transition: all 0.5s ease-out;
    -moz-transition: all 0.5s ease-out;
    -webkit-transition: all 0.5s ease-out;
    -ms-transition: all 0.5s ease-out;
}
.slicknav_menu .slicknav_icon {
    width: 100% !important;
    margin: 0 !important;
    float: none !important;
    position: relative;
}
.slicknav_menu .slicknav_menutxt {
    display: none;
}
.slicknav_menu {
    background-color: #fff;
}
a.slicknav_btn {
    margin: 0;
    padding: 10px 10px 3px;
    height: 46px;
}
.slicknav_menu .slicknav_icon {
    height: 16px !important;
    display: block;
}
.slicknav_menu .slicknav_icon:after {
content: "MENU";
display: block;
font-size: 9px;
text-align: center;
color: #fff;
position: absolute;
left: 0;
right: 0;
bottom: -20px;
margin: 0 auto;
}
.slicknav_nav a {
    color: #333 !important;
    display: inline-block;
    font-weight: bold;
    line-height: 2;
    width: 50%;
    text-align: left;
    margin: 0;
    letter-spacing: normal;
    font-size: 80%;
    border: solid #ccc;
    border-width: 0 1px 1px 0;
    line-height: 30px;
    background-image: url();
    background-size: 5px;
    background-repeat: no-repeat;
    background-position: 10px center;
    padding-left: 25px;
}
.sp_hd_logo {
    position: absolute;
    width: 200px;
    top: 4.5px;
    left: 15px;
}
.slicknav_nav {
    letter-spacing: -.4em;
}
.satei_sec h2 {
width: 100%;
font-size: 15px;
}
section.satei_sec form select {
    margin: 0px;
        margin-bottom: 0px;
    margin-bottom: 10px;
    width: 100%;
    line-height: 2.4;
    color: #444;
    font-size: 14px;
    background-color: #fff;
}
input.satei_btn {
position: static ;
}
.num_h2 {
font-size: 20px;
width: 92%;
margin: auto;
}
.num_h2 span {
font-size: 17px;
}
.num_ul {
width: 92%;
margin: auto;
padding: 0px;
}
.num_ul li {
width: 100%;
float: none;
padding: 0px;
border-bottom: 1px dotted #797979;
}
.demo {
font-size: 60px;
}
.num_h3 {
font-size: 20px;
}
.num_text {
font-size: 14px;
}
#hoge {
    height: auto;
}
#hoge .num_area {
    position: static;
}
canvas.particles-js-canvas-el {
width: 100%;
height: 100%;
position: absolute;
left: 0px;
top: 0px;
}
.dengon_en {
font-size: 32px;
}
.dengon_h2 {
font-size: 20px;
}
p {
    font-size: 14px;
}
.dengon_btn li {
margin: 0;
float: none;
width: 100%;
line-height: 3;
margin-bottom: 6px;
}
.dengon_slider {
width: 100%;
height: auto;
padding: 30px 2% 10px;
}
.dengon_slider.sp {
display: block !important;
}
.slide_LR {
width: 100%;
height: auto;
}
.slide_L {
width: 100%;
float: none;
height: 200px;
overflow: hidden;
text-align: center;
margin-bottom: 15px;
}
.slide_L img {
width: auto;
height: auto;
max-width: 100%;
max-height: 100%;
display: inline-block;;
}
.slide_R {
width: 100%;
float: none;
}
.wrap_wide {
min-width: 1px;
width: 92%;
margin: auto;
padding: 0px;
}
h2.top_h2 {
font-size: 32px;
}
.sec02box {
height: auto !important;
width: 100%;
margin:0px;
margin-bottom: 10px;
}
.sec02box .img {
width: 100%;
overflow: hidden;
}
body {
padding-top: 56px;
}
.sp_hd_logo {
width: 45px;
}
.sp_hd_logo img {
    display: block;
}
.sp_hd .logo_txt {
position: absolute;
top: 13px;
left: 75px;
padding: 0px;
font-weight: bold ;
}
.slide_house {
padding-left: 0px;
width: 100%;
}
.dengon_message {
padding-bottom: 15px;
}
.sec_dengon {
    padding-bottom: 30px;
}
h1.choumei_pagettl {
line-height: 30px;
padding-top: 20px;
padding-bottom: 15px;
margin-bottom: 15px;
border-bottom: 1px dotted #333;
}
.choumei_top_txt {
font-size: 14px;
}
.choumei_type_link > span,.choumei_type_link > a {
width: 48%;
margin-right: 1%;
}
.choumei_page_content {
    border-radius: 0 4px 4px 4px;
}
.choumei_tab li.selects:after {
display: none;
}
ul.choumei_tab li {
width: 31.333%;
margin:1%;
font-size: 11px;
}
h1.archives_title {
font-size: 20px;
margin-top: 10px;
padding: 10px 10px 10px 20px;
}
h1.archives_title:after {
left: 0px;
}
h1.single_satei {
font-size: 20px;
margin-top: 10px;
padding: 10px 10px 10px 20px;
position: relative;
}
h1.single_satei:after {
content: "";
position: absolute;
height: 80%;
left: 0px;  
width: 7px;
background-image: initial;
background-position-x: initial;
background-position-y: initial;
background-size: initial;
background-repeat-x: initial;
background-repeat-y: initial;
background-attachment: initial;
background-origin: initial;
background-clip: initial;
background-color: rgb(0, 45, 67);
top: 0px;
bottom: 0px;
margin-top: auto;
margin-right: auto;
margin-bottom: auto;
margin-left: auto;
}
.house_comment {
    display: block;
    width: 100%;
    padding-top: 40px;
}
.mansion_btn {
display: block;
width: 100%;
padding: 15px;
}
.mansion_btn a {
line-height: 35px;
}
.satei_table th {
display: block;
width: 100% !important;
padding: 10px;
}
.satei_table td {
display: block;
width: 100% !important;
padding: 10px;
}
table.satei_table .text {
margin-left: 10px;
display: inline-block;
}
.page_titile,.page_title_mask {
    height: 150px;
}
.page_h1 {
    padding-top: 11vw;
    font-size: 20px;
}
.keiyaku_table th {
display: block;
width: 100% !important;
text-align: left !important;
}
.keiyaku_table td {
display: block;
width: 100% !important;
text-align: left !important;
}
.keiyaku_table td span.sp {
display: block !important;
font-style: italic;
font-size: 12px;
}
.contact_area {
    width: 92% !important;
    margin:auto !important;
}
#post-569 .tab li span {
    display: block;
    margin: 0px;
    line-height: 40px;
    font-size: 24px;
    margin-bottom: 10px;
}
#post-569 .tab li {
    padding: 0px 3% 10px;;
    line-height: 25px;
}
.flow_h2 {
    font-size: 20px;
}
.keiyaku_h2 {
    background-position: left 10px !important;
}
.cheack_ul li {
    background-position: left 6px !important;
}
.cheack_ul li {
    font-size: 15px !important;
    font-weight: normal !important;
}
.inspe_L,.inspe_L_02 {
    width: 100%  !important;
    float: none !important;
}
.inspe_R,.inspe_R_02 {
    width: 100%  !important;
    float: none !important;
}
.shop_tab {
    width: 100%;
}
.shop_tab .tab li {
width: 50%;
}
.shop_tab .tab li:hover .off {
height: 35.8vw;
padding: 20% 30%;
width: 100%;
}
.shop_tab .tab li.shop01 {
left: 50%;
background-position: center 95%;
height: 35.8vw;
padding: 10px 10%;
}
.shop_tab .tab li.shop02 {
left: 50%;
top: 36vw;
background-position: center 95%;
height: 35.8vw;
padding: 10px 10%;
border-right: none;
}
.shop_tab .tab li.shop03 {
left: 0%;
top: 70vw;
background-position: center 95%;
height: 35.8vw;
padding: 10px 10%;
border-left: none;
border-bottom: 1px solid #a3a3a3;
}
.shop_tab .tab li.shop04 {
left: 0%;
top:107vw;
background-position: center 95%;
height: 35.8vw;
padding: 10px 10%;
border-left: none;
}
.shop_tab .tab li.shop05 {
    left: 50%;
    bottom: 36vw;
    background-position: center 95%;
    height: 35.8vw;
    padding: 10px 10%;
}
.shop_tab .tab li.shop06 {
    left: 50%;
    bottom: 0%;
    background-position: center 95%;
    height: 35.8vw;
    padding: 10px 10%;
}
.shop_tab .tab li.shop00 {

right: 10px;
width: 120px;
font-size: 11px;
}
.shop_tab ul.content li.shop_sec02 {
padding: 20px 4%;
}
.shop_tab .shop_sec01 .list_all div {
width: 50%;
height: 35.8vw;
}
.shop_tab .shop_sec01 .list_all div.clear {
width: 50%;
height: 35.8vw;
}
.top_09 {
width: 50%;
left: 25%;
top: 24%;
}
.flow_02 {
width:100%;
}
.mansion_comment {
    display: block;
    width: 100%;
    padding-top: 40px;
}
.mansion_img {
    display: block;
    width: 100%;
}
.choumei_box li {
    width: 32%;
    font-size: 12px;
}
.top_img_bg {
    padding: 15px 2% 30px;
}
.top_img_text_area {
  width: 100%;
}
.top_img_text_area_p {
    font-size: 13px;
    letter-spacing: 2px;
    margin-bottom: 0px;
}
.top_img_text_area_ul li {
    width: 32%;
    margin: 0;
}
.campaign_area {
    width: 100%;
    padding: 10px;
    margin: 0;
}
.campaign_area_inner {
    height: auto;
    margin-bottom: 30px;
}
.campaign_area_text {
    position: static;
    width: 100%;
    padding: 40px 15px;
    margin: 0;
    background-color: rgb(6, 69, 122);
}
.campaign_area_text h2 {
    background-position: center 11px;
    padding-top: 110px;
    padding-left: 0;
    text-align: center;
    background-size: 120px;
    padding-bottom: 0;
}
.campaign_area_text p {
    font-size: 14px;
    line-height: 2;
}
.campaign_pic_sp {
    margin-bottom: 20px;
}
.campaign_area_text {
    animation-delay: 200ms;
}
.yougo {
    padding: 20px;
    margin: 0;
}
.yougo h3 {
    font-size: 21px;
    text-align: center;
}
.yougo h3 span {
    display: block;
    margin: 0;
    font-size: 11px;
}
.yougo p {
    font-size: 12px;
}
.cam_time {
    position: static;
    text-align: center;
    font-size: 12px;
}
.kinjite_01 img {
    width: 70%;
}
.kinjite_02_03 {
    position: static;
    text-align: right;
    animation-name: initial !important;
}
.kinjite_02_03 img {
    width: 80%;
}
.kinjite_01 {
    padding-top: 40px;
    margin-bottom: 40px;
}
.kinjite_02_01 {
    padding: 16% 2%;
}
.kinjite_02_02 {
    top: -3vw;
}
.kinjite_04 {
    width: 90%;
    margin: auto;
}
.kinjite_04 h2 {
    font-size: 23px;
}
.kinjite_04_ul li {
    margin: 0;
        margin-bottom: 0px;
    width: 100%;
    margin-bottom: 20px;
    height: auto;
    padding: 20px;
}
.kinjite_04 h2 {
    font-size: 23px;
}
.kinjite_04_num {
    font-size: 35px;
    line-height: 1;
    margin-bottom: 15px;
}
.kinjite_04_text {
    font-size: 20px;
}
.kinjite_04_text br {
    display: none;
}
.kinjite_05 {
    font-size: 18px;
    padding: 0 5%;
}
.kinjite_06 img {
    width: 40%;
}
.kinjite_06 {
    margin-bottom: 20px;
}
input[type="submit"] {
    width: 84%;
}
.sell__common_page_area .buying_flow_flex_box h2 {
    font-size: 15px;
}
body {
    overflow-x: hidden;
}
.freesatei_table th,.freesatei_table td,.satei_table th,.satei_table td {
    box-sizing: border-box;
}
.freesatei_table td input[type="date"],.freesatei_table td input[type="time"],.freesatei_table td input[type="datetime-local"],.freesatei_table td input[type="week"],.freesatei_table td input[type="month"],.freesatei_table td input[type="text"],.freesatei_table td input[type="email"],.freesatei_table td input[type="url"],.freesatei_table td input[type="password"],.freesatei_table td input[type="search"],.freesatei_table td input[type="tel"],.freesatei_table td input[type="number"],.freesatei_table td textarea {
    box-sizing: border-box;
    width: 100%;
}
.satei_table td input[type="date"],.satei_table td input[type="time"],.satei_table td input[type="datetime-local"],.satei_table td input[type="week"],.satei_table td input[type="month"],.satei_table td input[type="text"],.satei_table td input[type="email"],.satei_table td input[type="url"],.satei_table td input[type="password"],.satei_table td input[type="search"],.satei_table td input[type="tel"],.satei_table td input[type="number"],.satei_table td textarea {
    box-sizing: border-box;
    width: 100%;
}
.sell__common_page_top_box {
    background-color: rgba(0,0,0,0);
    width: 100%;
}
.pc { display: none;
}
.sp { display: block;
}
a.slicknav_btn {
    margin: 0;
    padding: 10px 10px 3px;
    height: 46px;
    background-color: #002d78;
}
.sell__top_movie_bg {
    height: 56.15vw;
}
.sell__top_movie_logo_casa {
    width: 12vw;
}
.sell__top_video {
    margin-bottom: 180px;
}
.sell__top_form div.satei_sec form {
    display: block;
}
.sell__top_form div.satei_sec form select {
    width: 100%;
    margin-bottom: 5px;
    height: 40px;
border: 1px solid #fff;
color: #393939;
}
.sell__top_form .wrap_1100 {
    padding: 20px;
}
.sell__top_sec {
    margin-bottom: 30px;
    margin-top: 0px;
}
.sell__top_movie_logo_30 {
    width: 260px;
    top: 54px;
}
.sell__top_video {
    margin-bottom: 340px;
}
.sell__top_form {
    width: 90%;
    height: 120px;
    top: 190px;
}
.sell__top_title {
    margin-bottom: 30px;
}
.wrap_1100 div {
    display: block;
}
.wrap_1100 div .kantan {
    padding: 0;
}
.wrap_1100 div h2 {
    padding: 0;
    margin-bottom: 10px;
}
.sell__30logo {
  width: 78%;
  margin: 35px auto 0;
}
.sell__strength_sec {
    margin-bottom: 26px;
    width: 100%;
}
.sell__strength_list_gray {
    width: 100%;
    margin: 0;
    height: auto;
    min-height: auto;
}
.sell__strength_list_gray_inner {
    width: 100%;
    padding: 20px;
    margin-bottom: 20px;
}
.sell__strength_list_gray.right {
    margin-left: 0px;
}
.sell__strength_list_gray.right .sell__strength_list_gray_inner {
    margin-left: 0;
    padding: 20px;
}
.sell__strength_list.sell__strength_list_bg {
    width: 100%;
    position: relative;
}
.sell__strength_list_flex h3 {
    font-size: 18px;
}
.sell__strength_list_title {
    font-size: 20px;
    letter-spacing: 8px;
}
.sell__strength_list_gray_inner p {
    width: 100%;
}
.sell__strength_more_button {
    margin: auto;
    margin-top: 20px;
    margin-bottom: 30px;
}
.sell__strength_list_gray_inner .sell__strength_list_number {
    width: 50px;
}
.sell__top_text_01 {
    font-size: 20px!important;
        line-height: 40px;
}
.sell__top_suuzi {
    display: block;
    padding-top: 11px;
}
.sell__text_02 {
    line-height: 50px;
}
.sell__text_02 span {
    font-size: 26px;
}
#navTgl:checked ~ .contents {
    transform: translateX(250px);
}
#navTgl {
    display: none;
}
label {
    cursor: pointer;
    position: fixed;
    top: 0;
    right: 0;
}
.open {
    z-index: 1001;
    width: 45px;
    height: 45px;
    background: #002d78;
    transition: background .6s, transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
    margin: 4px;
}
.open::before,.open::after {
    content: "";
}
.open span,.open::before,.open::after {
    content: "";
    position: absolute;
    top: calc(50% - 1px);
    left: 30%;
    width: 40%;
    border-bottom: 2px solid white;
    transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.open::before {
    transform: translateY(-8px);
}
.open::after {
    transform: translateY(8px);
}
.close {
    z-index: 1;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transition: background .6s;
}
#navTgl:checked + .open span {
    transform: scaleX(0);
}
#navTgl:checked + .open::before {
    transform: rotate(45deg);
}
#navTgl:checked + .open::after {
    transform: rotate(-45deg);
}
#navTgl:checked ~ .close {
    pointer-events: auto;
    background: #FFF;
}
.menu {
    z-index: 1;
    position: fixed;
    overflow: auto;
    top: 0;
    left: 0;
    width: 250px;
    height: 100%;
    margin: 0;
    padding: 10px;
    box-sizing: border-box;
    background: #FFF;
    transform: translateX(-100%);
    transition: transform .6s cubic-bezier(0.215, 0.61, 0.355, 1);
}
.menu h2,.menu a {
    color: #000;
}
.menu h2 {
    text-align: center;
}
.menu ul {
    margin: 0;
    padding: 0;
}
.menu li {
    font-size: .8em;
    line-height: 1.4;
}
.menu li:not(:first-child) {
    border-top: 1px solid rgba(255,255,255,.6);
}
.menu a {
    display: block;
    padding: 1em 2em;
    text-decoration: inherit;
    transition: background .6s;
}
.menu a:hover {
    background: black;
}
#navTgl:checked ~ .menu {
    transform: none;
}
.menu {
  padding-top: 10px;
    width: 100%;
    display: flex;
    flex-direction: column;
}
.menu_top {
  display: flex;
  align-items: center;
}
.menu_logo {
  margin-left: 10px;
}
.menu_logo a {
  padding: 0;
  width: 45px;
}
.menu_logo_txt {
  font-size: 11px;
  font-weight: bold;
  width: 50%;
  margin-left: 15px;
  line-height: 1.5;
}
.menu ul {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  margin-top: 30px;
}
.menu_list li {
  border-bottom: 1px solid #eee;
  width: 50%;
}
.menu_list li a {
  position: relative;
  padding: 20px 10px;
}
.menu_list li a::after {
  content: "";
  background-image: url(../../uploads/2022/02/yajirushi.png);
  background-size: contain;
  width: 10px;
  height: 10px;
  display: block;
  background-repeat: no-repeat;
  right: 10px;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}
.menu_satei {
  background: #002d78;
  text-align: center;
  margin-top: 20px;
}
.menu_satei a {
  color: #fff;
  padding: 20px;
  font-size: 15px;
  font-weight: bold;
}
.menu_list .menu_satei a::after {
    content: unset;
}
.sp_hd {
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    height: 55px;
    background-color: #FFF;
    padding: 1px;
}
html {
        overflow-x: hidden;
}

@media screen and (min-width: 751px) {
.sp_hd {
    position: revert;
    width: revert;
    top: revert;
    z-index: revert;
}
.sp_pr {
    position: revert;
}
.slicknav_menu .slicknav_menutxt {
    display: revert;
}
.slicknav_menu .slicknav_icon {
    width: revert;
    margin: revert;
}
.slicknav_menu .slicknav_icon-bar {
    width: revert;
    height: revert;
    margin-bottom: revert;
}
a.slicknav_btn {
    background-color: revert;
    border-radius: revert;
}
a.slicknav_btn.slicknav_open span.slicknav_icon-bar:first-child {
    top: revert;
    -moz-transform: revert;
    -webkit-transform: revert;
    -o-transform: revert;
    -ms-transform: revert;
    transform: revert;
    position: revert;
}
a.slicknav_btn.slicknav_open span.slicknav_icon-bar:nth-child(3) {
    top: revert;
    -moz-transform: revert;
    -webkit-transform: revert;
    -o-transform: revert;
    -ms-transform: revert;
    transform: revert;
    position: revert;
}
a.slicknav_btn.slicknav_open span.slicknav_icon-bar:nth-child(2) {
    opacity: revert;
}
span.slicknav_icon-bar {
    transition: revert;
    -o-transition: revert;
    -moz-transition: revert;
    -webkit-transition: revert;
    -ms-transition: revert;
}
.slicknav_menu .slicknav_icon {
    width: revert;
    margin: revert;
    float: revert;
    position: revert;
}
.slicknav_menu .slicknav_menutxt {
    display: revert;
}
.slicknav_menu {
    background-color: revert;
}
a.slicknav_btn {
    margin: revert;
    padding: revert;
    height: revert;
}
.slicknav_menu .slicknav_icon {
    height: revert;
    display: revert;
}
.slicknav_menu .slicknav_icon:after {
    content: revert;
    display: revert;
    font-size: inherit;
    text-align: inherit;
    color: inherit;
    position: revert;
    left: revert;
    right: revert;
    bottom: revert;
    margin: revert;
}
.slicknav_nav a {
    color: inherit;
    display: revert;
    font-weight: inherit;
    line-height: inherit;
    width: revert;
    text-align: inherit;
    margin: revert;
    letter-spacing: inherit;
    font-size: inherit;
    border: revert;
    border-width: revert;
    line-height: inherit;
    background-image: revert;
    background-size: revert;
    background-repeat: revert;
    background-position: revert;
    padding-left: revert;
}
.sp_hd_logo {
    position: revert;
    width: revert;
    top: revert;
    left: revert;
}
.slicknav_nav {
    letter-spacing: inherit;
}
.satei_sec h2 {
    width: 770px;
    font-size: 19px;
}
section.satei_sec form select {
    margin: revert;
    margin-bottom: revert;
    margin-bottom: revert;
    width: revert;
    line-height: inherit;
    color: inherit;
    font-size: inherit;
    background-color: revert;
}
input.satei_btn {
    position: absolute;
}
.num_h2 {
    font-size: 29px;
    width: revert;
    margin: revert;
}
.num_h2 span {
    font-size: 27px;
}
.num_ul {
    width: revert;
    margin: revert;
    padding: 0 40px;
}
.num_ul li {
    width: 33%;
    float: left;
    padding: 0 23px;
    border-bottom: revert;
}
.demo {
    font-size: 100px;
}
.num_h3 {
    font-size: 25px;
}
.num_text {
    font-size: inherit;
}
#hoge {
    height: 790px;
}
#hoge .num_area {
    position: absolute;
}
canvas.particles-js-canvas-el {
    width: revert;
    height: revert;
    position: revert;
    left: revert;
    top: revert;
}
.dengon_en {
    font-size: 57px;
}
.dengon_h2 {
    font-size: inherit;
}
p {
    font-size: inherit;
}
.dengon_btn li {
    margin: revert;
    float: left;
    width: 48%;
    line-height: 4;
    margin-bottom: revert;
}
.dengon_slider {
    width: 1090px;
    height: auto;
    padding: revert;
}
.dengon_slider.sp {
    display: revert;
}
.slide_LR {
    width: 1000px;
    height: 270px;
}
.slide_L {
    width: 300px;
    float: left;
    height: revert;
    overflow: revert;
    text-align: inherit;
    margin-bottom: revert;
}
.slide_L img {
    width: revert;
    height: revert;
    max-width: revert;
    max-height: revert;
    display: revert;
}
.slide_R {
    width: 650px;
    float: right;
}
.wrap_wide {
    min-width: 1300px;
    width: revert;
    margin: auto;
    padding: 0 40px;
}
h2.top_h2 {
    font-size: 34px;
}
.sec02box {
    height: 470px;
    width: 27%;
    margin: 0% 2% 50px;
    margin-bottom: revert;
}
.sec02box .img {
    width: revert;
    overflow: revert;
}
body {
    padding-top: revert;
}
.sp_hd_logo {
    width: revert;
}
.sp_hd_logo img {
    display: revert;
}
.sp_hd .logo_txt {
    position: revert;
    top: revert;
    left: revert;
    padding: revert;
    font-weight: inherit;
}
.slide_house {
    padding-left: 50px;
    width: revert;
}
.dengon_message {
    padding-bottom: revert;
}
.sec_dengon {
    padding-bottom: 60px;
}
h1.choumei_pagettl {
    line-height: 70px;
    padding-top: revert;
    padding-bottom: revert;
    margin-bottom: revert;
    border-bottom: revert;
}
.choumei_top_txt {
    font-size: 15px;
}
.choumei_type_link > span,.choumei_type_link > a {
    width: 30%;
    margin-right: 10px;
}
.choumei_page_content {
    border-radius: 0 0px 10px 10px;
}
.choumei_tab li.selects:after {
    display: revert;
}
ul.choumei_tab li {
    width: 120px;
    margin: revert;
    font-size: 14px;
}
h1.archives_title {
    font-size: 20px;
    margin-top: revert;
    padding: 15px 40px;
}
h1.archives_title:after {
    left: 10px;
}
h1.single_satei {
    font-size: 2em;
    margin-top: revert;
    padding: revert;
    position: revert;
}
h1.single_satei:after {
    content: revert;
    position: revert;
    height: revert;
    left: revert;
    width: revert;
    background-image: revert;
    background-position-x: revert;
    background-position-y: revert;
    background-size: revert;
    background-repeat-x: revert;
    background-repeat-y: revert;
    background-attachment: revert;
    background-origin: revert;
    background-clip: revert;
    background-color: revert;
    top: revert;
    bottom: revert;
    margin-top: revert;
    margin-right: revert;
    margin-bottom: revert;
    margin-left: revert;
}
.house_comment {
    display: table-cell;
    width: revert;
    padding-top: revert;
}
.mansion_btn {
    display: table-cell;
    width: 10%;
    padding: revert;
}
.mansion_btn a {
    line-height: 50px;
}
.satei_table th {
    display: revert;
    width: revert;
    padding: revert;
}
.satei_table td {
    display: revert;
    width: revert;
    padding: revert;
}
table.satei_table .text {
    margin-left: revert;
    display: revert;
}
.page_titile,.page_title_mask {
    height: revert;
}
.page_h1 {
    padding-top: 9vw;
    font-size: 39px;
}
.keiyaku_table th {
    display: revert;
    width: revert;
    text-align: inherit;
}
.keiyaku_table td {
    display: revert;
    width: revert;
    text-align: inherit;
}
.keiyaku_table td span.sp {
    display: revert;
    font-style: inherit;
    font-size: inherit;
}
.contact_area {
    width: revert;
    margin: revert;
}
#post-569 .tab li span {
    display: revert;
    margin: revert;
    line-height: inherit;
    font-size: inherit;
    margin-bottom: revert;
}
#post-569 .tab li {
    padding: revert;
    line-height: inherit;
}
.flow_h2 {
    font-size: 30px;
}
.keiyaku_h2 {
    background-position: revert;
}
.cheack_ul li {
    background-position: revert;
}
.cheack_ul li {
    font-size: inherit;
    font-weight: inherit;
}
.inspe_L,.inspe_L_02 {
    width: revert;
    float: revert;
}
.inspe_R,.inspe_R_02 {
    width: revert;
    float: revert;
}
.shop_tab {
    width: 1000px;
}
.shop_tab .tab li {
    width: 25%;
}
.shop_tab .tab li:hover .off {
    height: revert;
    padding: 20px 41px 10px;
    width: revert;
}
.shop_tab .tab li.shop01 {
    left: 25%;
    background-position: revert;
    height: 179px;
    padding: 20px 41px 10px;
}
.shop_tab .tab li.shop02 {
    left: revert;
    top: 0px;
    background-position: revert;
    height: 179px;
    padding: 20px 41px 10px;
    border-right: 1px solid #a3a3a3;
}
.shop_tab .tab li.shop03 {
    left: 0%;
    top: 179px;
    background-position: revert;
    height: 179px;
    padding: 20px 41px 10px;
    border-left: 1px solid #a3a3a3;
    border-bottom: revert;
}
.shop_tab .tab li.shop04 {
    left: 50%;
    top: revert;
    background-position: revert;
    height: 179px;
    padding: 20px 41px 10px;
    border-left: revert;
}
.shop_tab .tab li.shop05 {
    left: 25%;
    bottom: 0;
    background-position: revert;
    height: 179px;
    padding: 20px 41px 10px;
}
.shop_tab .tab li.shop06 {
    left: revert;
    bottom: 0;
    background-position: revert;
    height: 179px;
    padding: 20px 41px 10px;
}
.shop_tab .tab li.shop00 {
    right: 0px;
    width: 180px;
    font-size: 13px;
}
.shop_tab ul.content li.shop_sec02 {
    padding: revert;
}
.shop_tab .shop_sec01 .list_all div {
    width: 25%;
    height: revert;
}
.shop_tab .shop_sec01 .list_all div.clear {
    width: 25%;
    height: 179px;
}
.top_09 {
    width: 34.491%;
    left: 33.57615%;
    top: 36%;
}
.flow_02 {
    width: 350px;
}
.mansion_comment {
    display: table-cell;
    width: 70%;
    padding-top: revert;
}
.mansion_img {
    display: table-cell;
    width: 20%;
}
.choumei_box li {
    width: 19%;
    font-size: 14px;
}
.top_img_bg {
    padding: 80px 0;
}
.top_img_text_area {
    width: 900px;
}
.top_img_text_area_p {
    font-size: 16px;
    letter-spacing: 4px;
    margin-bottom: 40px;
}
.top_img_text_area_ul li {
    width: revert;
    margin: 0 15px;
}
.campaign_area {
    width: 1100px;
    padding: revert;
    margin: 80px auto;
}
.campaign_area_inner {
    height: 470px;
    margin-bottom: 120px;
}
.campaign_area_text {
    position: absolute;
    width: 680px;
    padding: 30px 70px;
    margin: 4px;
    background-color: rgba(6, 69, 122, 0.94);
}
.campaign_area_text h2 {
    background-position: revert;
    padding-top: revert;
    padding-left: revert;
    text-align: inherit;
    background-size: 108px;
    padding-bottom: revert;
}
.campaign_area_text p {
    font-size: 14px;
    line-height: 2.5;
}
.campaign_pic_sp {
    margin-bottom: revert;
}
.campaign_area_text {
    animation-delay: 500ms;
}
.yougo {
    padding: 40px 60px;
    margin: 4px;
}
.yougo h3 {
    font-size: 29px;
    text-align: inherit;
}
.yougo h3 span {
    display: revert;
    margin: revert;
    font-size: 15px;
}
.yougo p {
    font-size: 13px;
}
.cam_time {
    position: absolute;
    text-align: inherit;
    font-size: 12px;
}
.kinjite_01 img {
    width: 410px;
}
.kinjite_02_03 {
    position: absolute;
    text-align: inherit;
    animation-name: bounceInRight;
}
.kinjite_02_03 img {
    width: revert;
}
.kinjite_01 {
    padding-top: 80px;
    margin-bottom: 120px;
}
.kinjite_02_01 {
    padding: revert;
}
.kinjite_02_02 {
    top: 0;
}
.kinjite_04 {
    width: 900px;
    margin: 0 auto 60px;
}
.kinjite_04 h2 {
    font-size: 40px;
}
.kinjite_04_ul li {
    margin: 10px;
    margin-bottom: revert;
    width: 280px;
    margin-bottom: revert;
    height: 250px;
    padding: revert;
}
.kinjite_04 h2 {
    font-size: 40px;
}
.kinjite_04_num {
    font-size: 60px;
    line-height: inherit;
    margin-bottom: revert;
}
.kinjite_04_text {
    font-size: 27px;
}
.kinjite_04_text br {
    display: revert;
}
.kinjite_05 {
    font-size: 29px;
    padding: revert;
}
.kinjite_06 img {
    width: 230px;
}
.kinjite_06 {
    margin-bottom: 60px;
}
input[type="submit"] {
    width: 30%;
}
.sell__common_page_area .buying_flow_flex_box h2 {
    font-size: inherit;
}
body {
    overflow-x: revert;
}
.freesatei_table th,.freesatei_table td,.satei_table th,.satei_table td {
    box-sizing: border-box;
}
.freesatei_table td input[type="date"],.freesatei_table td input[type="time"],.freesatei_table td input[type="datetime-local"],.freesatei_table td input[type="week"],.freesatei_table td input[type="month"],.freesatei_table td input[type="text"],.freesatei_table td input[type="email"],.freesatei_table td input[type="url"],.freesatei_table td input[type="password"],.freesatei_table td input[type="search"],.freesatei_table td input[type="tel"],.freesatei_table td input[type="number"],.freesatei_table td textarea {
    box-sizing: border-box;
    width: revert;
}
.satei_table td input[type="date"],.satei_table td input[type="time"],.satei_table td input[type="datetime-local"],.satei_table td input[type="week"],.satei_table td input[type="month"],.satei_table td input[type="text"],.satei_table td input[type="email"],.satei_table td input[type="url"],.satei_table td input[type="password"],.satei_table td input[type="search"],.satei_table td input[type="tel"],.satei_table td input[type="number"],.satei_table td textarea {
    box-sizing: border-box;
    width: revert;
}
.sell__common_page_top_box {
    background-color: #002d78;
    width: 380px;
}
.pc {
    display: revert;
}
.sp {
    display: none;
}
a.slicknav_btn {
    margin: revert;
    padding: revert;
    height: revert;
    background-color: revert;
}
.sell__top_movie_bg {
    height: 33.2vw;
}
.sell__top_movie_logo_casa {
    width: 10.5vw;
}
.sell__top_video {
    margin-bottom: 260px;
}
.sell__top_form div.satei_sec form {
    display: flex;
}
.sell__top_form div.satei_sec form select {
    width: 33%;
    margin-bottom: revert;
    height: revert;
    border: revert;
    color: inherit;
}
.sell__top_form .wrap_1100 {
    padding: 30px 50px;
}
.sell__top_sec {
    margin-bottom: 80px;
    margin-top: revert;
}
.sell__top_movie_logo_30 {
    width: 600px;
    top: 200px;
}
.sell__top_video {
    margin-bottom: 260px;
}
.sell__top_form {
    width: 1000px;
    height: revert;
    top: 31vw;
}
.sell__top_title {
    margin-bottom: 90px;
}
.wrap_1100 div {
    display: flex;
justify-content: center;
}
.wrap_1100 div .kantan {
    padding: revert;
}
.wrap_1100 div h2 {
    padding: revert;
    margin-bottom: 0px;
width: inherit;
}
.sell__30logo {
    width: 30%;
    margin: 50px auto 0;
}
.sell__strength_sec {
    margin-bottom: 150px;
    width: 1420px;
}
.sell__strength_list_gray {
    width: 41%;
    margin: revert;
    height: revert;
    min-height: 450px;
}
.sell__strength_list_gray_inner {
    width: 430px;
    padding: 60px 0 0 60px;
    margin-bottom: revert;
}
.sell__strength_list_gray.right {
    margin-left: 810px;
}
.sell__strength_list_gray.right .sell__strength_list_gray_inner {
    margin-left: 90px;
    padding: revert;
}
.sell__strength_list.sell__strength_list_bg {
    width: 900px;
    position: absolute;
}
.sell__strength_list_flex h3 {
    font-size: 21px;
}
.sell__strength_list_title {
    font-size: 36px;
    letter-spacing: 10px;
}
.sell__strength_list_gray_inner p {
    width: revert;
}
.sell__strength_more_button {
    margin: 40px 0;
    margin-top: revert;
    margin-bottom: revert;
}
.sell__strength_list_gray_inner .sell__strength_list_number {
    width: revert;
}
.sell__top_text_01 {
    font-size: 27px!important;
    line-height: inherit;
}
.sell__top_suuzi {
    display: flex;
    padding-top: revert;
}
.sell__text_02 {
    line-height: inherit;
}
.sell__text_02 span {
    font-size: 40px!important;
}
#navTgl:checked ~ .contents {
    transform: revert;
}
#navTgl {
    display: revert;
}
label {
    cursor: inherit;
    position: revert;
    top: revert;
    right: revert;
}
.open {
    z-index: revert;
    width: revert;
    height: revert;
    background: revert;
    transition: revert;
    margin: revert;
}
.open::before,.open::after {
    content: revert;
}
.open span,.open::before,.open::after {
    content: revert;
    position: revert;
    top: revert;
    left: revert;
    width: revert;
    border-bottom: revert;
    transition: revert;
}
.open::before {
    transform: revert;
}
.open::after {
    transform: revert;
}
.close {
    z-index: revert;
    width: revert;
    height: revert;
    pointer-events: revert;
    transition: revert;
}
#navTgl:checked + .open span {
    transform: revert;
}
#navTgl:checked + .open::before {
    transform: revert;
}
#navTgl:checked + .open::after {
    transform: revert;
}
#navTgl:checked ~ .close {
    pointer-events: revert;
    background: revert;
}
.menu {
    z-index: revert;
    position: revert;
    overflow: revert;
    top: revert;
    left: revert;
    width: revert;
    height: revert;
    margin: revert;
    padding: revert;
    box-sizing: border-box;
    background: revert;
    transform: revert;
    transition: revert;
}
.menu h2,.menu a {
    color: inherit;
}
.menu h2 {
    text-align: inherit;
}
.menu ul {
    margin: revert;
    padding: revert;
}
.menu li {
    font-size: inherit;
    line-height: inherit;
}
.menu li:not(:first-child) {
    border-top: revert;
}
.menu a {
    display: revert;
    padding: revert;
    text-decoration: revert;
    transition: revert;
}
.menu a:hover {
    background: revert;
}
#navTgl:checked ~ .menu {
    transform: revert;
}
.menu {
    padding-top: revert;
    width: revert;
    display: revert;
    flex-direction: revert;
}
.menu_top {
    display: revert;
    align-items: revert;
}
.menu_logo {
    margin-left: revert;
}
.menu_logo a {
    padding: revert;
    width: revert;
}
.menu_logo_txt {
    font-size: inherit;
    font-weight: inherit;
    width: revert;
    margin-left: revert;
    line-height: inherit;
}
.menu ul {
    display: revert;
    flex-wrap: revert;
    justify-content: revert;
    align-items: revert;
    margin-top: revert;
}
.menu_list li {
    border-bottom: revert;
    width: revert;
}
.menu_list li a {
    position: revert;
    padding: revert;
}
.menu_list li a::after {
    content: revert;
    background-image: revert;
    background-size: revert;
    width: revert;
    height: revert;
    display: revert;
    background-repeat: revert;
    right: revert;
    position: revert;
    top: revert;
    transform: revert;
}
.menu_satei {
    background: revert;
    text-align: inherit;
    margin-top: revert;
}
.menu_satei a {
    color: inherit;
    padding: revert;
    font-size: inherit;
    font-weight: inherit;
}
.menu_list .menu_satei a::after {
    content: revert;
}
.sp_hd {
    position: revert;
    width: revert;
    top: revert;
    z-index: revert;
    height: revert;
    background-color: revert;
    padding: revert;
}
html {
    overflow-x: revert;
}
.sp_hd, .sp_pr, .sp_hd_logo, .slicknav_menu, .slicknav_nav, #navTgl, .open, .close, .menu, .menu_top, .menu_logo, .menu_list, .menu_satei { display: none; }
}

@media screen and (min-width: 751px) {
    .sell__strength_list_gray_inner .sell__strength_list_number {
        width: 50px;
    }
    .sell__strength_more_button {
        margin: 40px 0;
    }
    .sell__strength_list_gray {
        margin: 0;
        margin-top: 35px;
        margin-left: 40px;
        min-height: 450px;
        width: 41%;
    }
    .sell__strength_list_gray_inner {
        width: 430px;
        padding: 60px 0 0 60px;
        margin-bottom: 0;
    }
    .sell__strength_sec {
        width: 1420px;
        margin-bottom: 150px;
    }
    .page_titile,
    .page_title_mask {
        height: 25vw;
    }
    #post-569 .tab li {
        line-height: 90px;
        padding: 0;
    }
    #post-569 .tab li span {
        display: inline;
        font-size: 39px;
        line-height: normal;
        margin: 0 20px 0 0;
    }
    ul.choumei_tab li {
        margin: 0 0 30px 10px;
    }
    .house_comment {
        padding: 4% 2% 2%;
    }
    .mansion_comment {
        padding: 2%;
    }
    .satei_table th,
    .satei_table td {
        padding: 0.4375em;
    }
}

@media screen and (min-width: 751px) {
    .sell__strength_list_gray.right {
        margin-left: 810px;
    }
    .sell__strength_list_gray.right .sell__strength_list_gray_inner {
        margin-left: 90px;
        padding: 60px 0 0 60px;
    }
    .satei_table td input[type="date"],
    .satei_table td input[type="time"],
    .satei_table td input[type="datetime-local"],
    .satei_table td input[type="week"],
    .satei_table td input[type="month"],
    .satei_table td input[type="text"],
    .satei_table td input[type="email"],
    .satei_table td input[type="url"],
    .satei_table td input[type="password"],
    .satei_table td input[type="search"],
    .satei_table td input[type="tel"],
    .satei_table td input[type="number"],
    .satei_table td textarea {
        width: 100%;
    }
    .freesatei_table td input[type="date"],
    .freesatei_table td input[type="time"],
    .freesatei_table td input[type="datetime-local"],
    .freesatei_table td input[type="week"],
    .freesatei_table td input[type="month"],
    .freesatei_table td input[type="text"],
    .freesatei_table td input[type="email"],
    .freesatei_table td input[type="url"],
    .freesatei_table td input[type="password"],
    .freesatei_table td input[type="search"],
    .freesatei_table td input[type="tel"],
    .freesatei_table td input[type="number"],
    .freesatei_table td textarea {
        width: 100%;
    }
}

.satei_table td .mwform-tel-field input[type="text"] {
    width: auto;
}
