@charset "utf-8";
/* CSS Document */

html {
  font-size: 62.5%;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 14px;
  font-size: 1.4rem;
  line-height: 1.8;
  margin: 0;
  padding: 0;
  color: #000000;
}

@media screen and (min-width:768px){
  body {
    font-size: 16px;
    font-size: 1.6rem;
    line-height: 1.6;
  }
}


/*------------------
ナビメニュー
------------------*/

.header {
  position: sticky; /* headerを追従にする */
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 50px;
  background-color: #EB612A;
  z-index: 9999;
}
.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 50px;
  padding: 0;
}
.logo {
  height: 20px;
  display: block;
  padding-left: 20px;
}
.logo img {
  height: 100%;
}

@media screen and (min-width:768px){
  .header {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(90deg, #EB612A 0%, #EB612A 50%, #000000 50%, #000000 100%);
overflow: hidden;
  }
  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    max-width: 1200px;
    margin: 0 auto;
  }
  .logo {
    height: 36px;
    padding-left: 20px;
  }
}


/* ハンバーガーボタンのデザイン */
.drawer__button {
  position: relative;
  width: 50px;
  height: 100%;
  background-color: #000000;
  border: none;
  cursor: pointer;
  z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
}

@media screen and (min-width:768px){
  .drawer__button {
    display: none;
    width: 3rem;
    height: 3rem;
    background-color: transparent;
    border: none;
    cursor: pointer;
    z-index: 999; /* メニューを開いている時もクリックできるよう設定 */
  }
}



/* ハンバーガーボタン内の線 */
.drawer__button > span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 2rem;
  height: 2px;
  background-color: #FFFFFF;
  transform: translateX(-50%);
}
.drawer__button > span:first-child {
  transform: translate(-50%, calc(-50% - 0.5rem));
  transition: transform 0.3s ease;
}
.drawer__button > span:nth-child(2) {
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease;
}
.drawer__button > span:last-child {
  transform: translate(-50%, calc(-50% + 0.5rem));
  transition: transform 0.3s ease;
}
/* 展開時のデザイン */
.drawer__button.active > span:first-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}
.drawer__button.active > span:nth-child(2) {
  opacity: 0;
}
.drawer__button.active > span:last-child {
  transform: translate(-50%, -50%) rotate(45deg);
}


/* メニューのデザイン */
.drawer__nav {
  position: fixed; /* 追従ヘッダーなどでも表示できるよう設定しておく */
  top: 50px;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  transition: opacity 0.5s ease;
  opacity: 0;
  visibility: hidden;
  z-index: 9999;
}
.drawer__nav.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s ease;

}
.drawer__nav__inner {
  position: relative;
  width: 80%;
  height: 100%;
  background-color: #d5d5d5;
  padding: 4rem 3rem 1rem;
  margin: 0 0 0 auto;
  overflow: auto;
  transition: transform 0.5s ease;
}
.drawer__nav.active .drawer__nav__inner {
  transition: opacity 0.5s ease;
}
.drawer__nav__menu {
  list-style: none;
  padding-left: 0;
  margin-bottom: 50px;
}
.drawer__nav__link {
  display: block;
  color: #000000;
  text-decoration: none;
  padding: 1rem 1rem;
  white-space: nowrap;
  position: relative;
  font-weight: 700;
  font-size: 14px;
}
.drawer__nav__link::after {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(../images/arrow_spmenu.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  margin: auto 0 auto 10px;
  top:0;
  bottom: 0;
}

@media screen and (min-width:768px){
  .drawer__nav {
    position: relative;
    top: 0;
    left: 0;
    width: 50%;
    min-width: 500px;
    height: 50px;
    transition: opacity 0.5s ease;
    opacity: 1;
    visibility: visible;
    background-color: #000000;
  }
  .drawer__nav.active {
    opacity: 1;
    visibility: visible;
    transition: opacity 0.5s ease;
  }
  .drawer__nav__inner {
    position: relative;
    width: auto;
    height: auto;
    background-color: #000000;
    padding: 0;
    margin: 0 0 0 auto;
    overflow: hidden;
    transition: transform 0.5s ease;
  }
  .drawer__nav.active .drawer__nav__inner {
    transition: opacity 0.5s ease;
  }
  .drawer__nav__menu {
    list-style: none;
    padding-left: 0;
    display: flex;
    justify-content: flex-end;
    margin: 0;
  }
  .drawer__nav__link {
  display: block;
  color: #FFFFFF;
  text-decoration: none;
  padding: 1rem 1rem;
  }
  .drawer__nav__link::after {
    display: none;
  }
}


/* ハンバーガーメニュー展開時、背景を固定 */
body.active {
  height: 100%;
  overflow: hidden;
}




/*------------------
ヘッダ固定のCTA
------------------*/
.head_cta_sp {
  
}
.btn_tel_sp {
  border: 1px solid #EB612A;
  display: flex;
  flex-direction:column;
  align-items:center;
  text-decoration: none;
  line-height: 1;
  padding: 10px;
  margin-bottom: 20px;
}
.btn_tel_no_sp {
  color: #EB612A;
  font-size: 20px;
  font-family: "Open Sans", sans-serif;
  font-weight: 700;
  display: block;
  position: relative;
  padding-left: 20px;
}
.btn_tel_no_sp::before {
  content: "";
  background-image: url(../images/ico_tel.png);
  background-repeat: no-repeat;
  position: absolute;
  display: block;
  width: 15px;
  height: 15px;
  left: 0;
  top: 8px;
  background-size: cover;
}
.btn_tel_time_sp {
  display: block;
  color: #3C3C3D;
  font-size: 12px;
}
.btn_contact_sp {
  font-size: 14px;
  font-weight: 700;
  display: block;
  text-decoration: none;
  background-color: #EB612A;
  color: #FFFFFF;
  padding: 15px;
  text-align: center;
}

.head_cta_pc {
  display: none;
}
@media screen and (min-width:768px){
  .head_cta_sp {
    display: none;
  }
  .head_cta_pc {
    display: block;
    position: sticky; /* headerを追従にする */
    top: 50px;
    left: 0;
    right: 0;
    width: 100%;
    overflow: hidden;
    z-index: 9999;
  }
  .head_cta_pc_inner {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: flex-end;
  }
  .head_cta_pc_block {
    background-color: #000000;    
    display: flex;
    justify-content: flex-end;
    column-gap: 20px;
    width: 330px;
    height: 30px;
    padding-bottom: 10px;
    line-height: 1;
    position: relative;
  }
  .head_cta_pc_block::before {
    content: "";
    width: 25px;
    height: 100%;
    position: absolute;
    background: linear-gradient(60deg, hsla(0,0%,0%,0.00) 0%, hsla(0,0%,0%,0.00) 50%, #000000 50%, #000000 100%);
    left: -25px;
    top: 0;
  }
  .head_cta_pc_block::after {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    right: -330px;
    top: 0;
    background-color: #000000;
  }
  .btn_tel_pc {
    display: block;
    text-align: right;
  }
  .btn_tel_no_pc {
    color: #EB612A;
    font-size: 20px;
    font-family: "Open Sans", sans-serif;
    font-weight: 700;
    display: block;
    position: relative;
    padding: 0 0 0 20px;
    margin: 0;
  }
  .btn_tel_no_pc::before {
    content: "";
    background-image: url(../images/ico_tel.png);
    background-repeat: no-repeat;
    position: absolute;
    display: block;
    width: 16px;
    height: 16px;
    left: 0;
    top: 2px;
    background-size: cover;
  }
  .btn_tel_time_pc {
    color: #FFFFFF;
    font-size: 12px;
    display: block;
    padding: 0;
  }
  .btn_contact_pc {
    display: flex;
    justify-content: center;
    align-items: center;
    text-decoration: none;
    color: #FFFFFF;
    background-color: #EB612A;
    width: 150px; 
  }
}



/*------------------
コンテンツ共通
------------------*/

.sp {
  display: block;
}
.pc {
  display: none;
}
.section {
  padding: 60px 0;
}
.inner_section {
  padding: 0 20px;
}

.wrapper {
  width: 100%;
  padding: 0;
  margin: -50px 0;
  overflow: hidden;
}

h1.page_h1 {
  font-size: 22px;
  font-weight: 700;
  margin-bottom: 40px;
}

.sp_tap:active {
  transform: scale(.95);
}

@media screen and (min-width:768px){
  .sp {
    display: none;
  }

  .pc {
    display: block;
  }
  .section {
    padding: 50px 0;
  }

  .inner_section {
    max-width: 1000px;
    margin: 0 auto;
  }
  .wrapper {
    padding: 0;
  }
  h1.page_h1 {
    font-size: 28px;
    margin-bottom: 50px;
  }
  
}


/* 右側に三角が並ぶ見出し */

.cont_head_wh {
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 10px 30px 20px;
  padding: 0;
  color: #FFFFFF;
  position: relative;
  z-index: 0;
}
.cont_head_wh::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 24px;
  background-image: url("../images/bg_cont_head_wh_sp.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0% bottom;
}
@media screen and (min-width:768px){
  .cont_head_wh {
    font-size: 38px;
    line-height: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    position: relative;
  }
  .cont_head_wh span {
    padding-right: 50px;
  }
  .cont_head_wh::after {
    display: inline;
    width: calc( 100vw - ( 100vw - 100% ) / 2 );
    height: 34px;
    background-image: url(../images/bg_cont_head_wh_pc.png);
    background-repeat: repeat-x;
    background-size: auto 25px;
    background-position: left bottom;
  }
}

.cont_head_or {
  font-family: "Open Sans", sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1.2;
  margin: 0 10px 30px 20px;
  padding: 0;
  color: #EB612A;
  position: relative;
  z-index: 0;
}
.cont_head_or::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 24px;
  background-image: url("../images/bg_cont_head_or_sp.png");
  background-repeat: no-repeat;
  background-size: 100% auto;
  background-position: 0% bottom;
}
@media screen and (min-width:768px){
  .cont_head_or {
    font-size: 38px;
    line-height: 1;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    position: relative;
  }
  .cont_head_or span {
    padding-right: 50px;
  }
  .cont_head_or::after {
    display: inline;
    width: calc( 100vw - ( 100vw - 100% ) / 2 );
    height: 34px;
    background-image: url(../images/bg_cont_head_or_pc.png);
    background-repeat: repeat-x;
    background-size: auto 25px;
    background-position: left bottom;
  }
}




/*------------------
ヒーローイメージ
------------------*/

.hero {
  width: 100%;
  background-color: #EB612A;
  line-height: 1;
  padding: 0;
  margin: 0;
}

.hero img {
  width: 100%;
  height: auto;
  display: block;
  padding: 0;
  margin: 0;
}


/*------------------
メッセージ
------------------*/

.message {
  color: #FFFFFF;
  background-color: #EB612A;
}
.message_block {
  margin-bottom: 30px;
}
.message_h2 {
  font-family: "Open Sans", sans-serif;
  font-weight: 800;
  font-size: 28px;
  margin-bottom: 25px;
}
.message_subtitle {
  font-weight: 900;
  margin-bottom: 20px;
  font-size: 16px;
}
.message_txt {

}
.message_copy {
  width: 100%;
  margin-bottom: -200px;
}
.message_copy img {
  width: 100%;
}

@media screen and (min-width:768px){
  .message {
    position: relative;
  }
  .message::after {
  content: "";
  background-image: url(../images/message_pc.png);
  width: 40%;
  height: 75%;
  background-position: left center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  top: 70px;
  right: 0;
  z-index: 0;
  border-top-left-radius: 50px;
  border-bottom-left-radius: 50px;
  }
  .message_block {
    width: 50%;
    margin-bottom: 30px;
  }
  .message_h2 {
    font-size: 40px;
    margin-bottom: 25px;
  }
  .message_subtitle {
    margin-bottom: 20px;
    font-size: 22px;
  }
  .message_txt {
    line-height: 2;
  }
  .message_copy {
    margin: 0 0 0 -5px;
    z-index: 100;
    display: block;
    position: relative;
  }
  .message_copy img {
  }

}


/*------------------
新着情報
------------------*/

.news {
  background-color: #FAF1E6;
  padding-top: 200px;
}
.news_wrap {
  line-height: 1;
}
.news_h2 {
  font-size: 18px;
  font-weight: 700;
  padding: 0 15px;
  margin-bottom: 20px;
}
.news_h2 span {
  display: block;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 800;
  color: #EB612A;
  margin-bottom: 8px;
}
.news_list {
  list-style-type: none;
  font-size: 10px;
  border-top: 1px solid #D5D5D5;
}
.news_list li {
  border-bottom: 1px solid #D5D5D5;
}
.news_list li a {
  padding: 15px 15px 15px 15px;
  background-image: url(../images/arrow_orange.png);
  background-repeat: no-repeat;
  background-position: right 15px bottom 15px;
  background-size: 7px 11px;
  text-decoration: none;
  color: #000000;
  display: block;
}
.news_day {
  display: block;
}
.news_cont {
  display: block;
}
.news_link {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: #EB612A;
  text-decoration: none;
  padding: 15px 40px;
  background-image: url(../images/arrow_orange.png);
  background-repeat: no-repeat;
  background-position: right 15px top 15px;
  background-size: 9px 15px;
  text-align: right;
}

@media screen and (min-width:768px){
  .news {
    padding: 70px 0 40px 0;
  }
  .news_wrap {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
  }
  .news_h2 {
    font-size: 26px;
    padding: 0;
    width: 20%;
  }
  .news_h2 span {
    font-size: 20px;
    margin-bottom: 8px;
  }
  .news_list {
    font-size: 14px;
    width: 80%;
  }
  .news_list li {

  }
  .news_list li a {
    padding: 20px 50px 20px 20px;
    background-position: right 15px center;
    background-size: 9px 15px;
    display: flex;
  }
  .news_day {
    width: 10em;
  }
  .news_cont {
    
  }
  .news_link {
    display: block;
    font-size: 18px;
    padding: 20px 25px;
    background-image: url(../images/arrow_orange.png);
    background-repeat: no-repeat;
    background-position: right top 20px;
    background-size: 12px 20px;
    text-align: right;
  }
}

/*------------------
新着情報一覧
------------------*/

.news_all {
  background-color: #FAF1E6;
  padding-top: 200px;
}
.news_all_inner {
  padding-bottom: 50px;
}
.news_all_block {
  margin-bottom: 40px;
  clear: right;
}
.news_all_block a {
  display: block;
  float: right;
}

@media screen and (min-width:768px){
  .news_all {
    padding: 70px 0 40px 0;
  }
 
}

/*------------------
新着情報詳細ページ
------------------*/

.news_single {
  background-color: #FAF1E6;
  padding-bottom: 80px;
}
.news_single_inner {
  
}
.news_contents {
  padding-bottom: 40px;
}
.to_all {
  display: inline-block;
  text-align: left;
}



/*------------------
選ばれる理由
------------------*/

.reason {
  background-color: #EB612A;
  padding: 40px 0;
  border-bottom: 7px solid #000000;
}
.reason_h2 {
  font-size: 30px;
  font-weight: 900;
  line-height: 1.4;
  padding-top: 30px;
  margin-bottom: 40px;
}
.reason_h2 span {
  color: #FFFFFF;  
}

.reason_wrap {
  
}
.reason_block {
  margin-bottom: 20px;
}
.reason_tab {
  background-color: #000000;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  font-family: "Open Sans", sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  color: #FFFFFF;
  width: 8em;
  padding: 10px 15px 20px 15px;
  margin-bottom: -15px;
  text-align: center;
}
.reason_cont {
  border: 3px solid #000000;
  border-radius: 14px;
  background-color: #FAF1E6;
}
.reason_txt {
  padding: 20px;
}
.reason_title {
  font-size: 20px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 20px;
}
.reason_title span {
  font-size: 14px;
  display: block;
  margin-bottom: 10px;
}
.reason_img {
  
}
.reason_img img {
  width: 100%;
}

.reason_img_1 {
  margin: 0 -10px -30px -10px;
}

@media screen and (min-width:768px){
  .reason {
    padding: 30px 0;
    border-bottom: 10px solid #000000;
  }
  .reason_h2 {
    font-size: 50px;
    line-height: 1.4;
  }
  .reason_wrap {

  }
  .reason_block {
    margin-bottom: 25px;
  }
  .reason_tab {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    font-size: 26px;
    width: 6em;
    padding: 20px 30px 40px 30px;
    margin-bottom: -30px;
  }
  .reason_cont {
    border: 5px solid #000000;
    border-radius: 20px;
    padding: 40px 30px 0 50px;
    display: flex;
  }
  .reason_txt {
    padding: 0;
    width: 50%;
    margin-bottom: 40px;
  }
  .reason_title {
    font-size: 30px;
    line-height: 1;
    margin-bottom: 20px;
  }
  .reason_title span {
    font-size: 20px;
    margin-bottom: 10px;
  }
  .reason_img {
    width: 50%;
    padding: 0 0 0 40px;
  }
  .reason_img img {
    width: 100%;
  }

  .reason_img_1 {
    margin: -90px 0 auto 0;
  }
}


/*------------------
物件情報
------------------*/

.property {
  
}
.property_h2 {
  font-weight: 900;
  font-size: 30px;
  padding-top: 30px;
  margin-bottom: 40px;
}
.property_wrap {

}
.property_block {

}

.property_tab {
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  font-size: 16px;
  width: 8em;
  padding: 10px 15px 20px 15px;
  margin-bottom: -15px;
}
.property_cont {
  border: 2px solid #000000;
  border-radius: 14px;
  margin-bottom: 10px;
}
.property_img {
  
}
.property_img img {
  width: 100%;
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  display: block;
  margin: 0;
}
.property_title {
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 700;
  padding: 20px;
  background-color: #EB612A;
  border-bottom-left-radius: 14px;
  border-bottom-right-radius: 14px;
}
.property_txt {
  font-size: 12px;
  margin-bottom: 10px;
}
.property_date {
  display: block;
}
.btn_property {
  display: block;
  color: #EB612A;
  background-color: #FFFFFF;
  border: 3px solid #EB612A;
  border-radius: 24px;
  padding: 15px;
  text-align: center;
  font-size: 14px;
  font-weight: 900;
  line-height: 1;
  text-decoration: none;
}

@media screen and (min-width:768px){
  .property {

  }
  .property_h2 {
    font-size: 50px;
    padding-top: 30px;
    margin-bottom: 70px;
  }
  .property_wrap {
    display: flex;
    flex-wrap: wrap;
    column-gap: 5%;
  }
  .property_block {
    width: 30%;
    margin-bottom: 40px;
  }

  .property_tab {
    background-color: #000000;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    font-family: "Open Sans", sans-serif;
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
    color: #FFFFFF;
    width: 8em;
    padding: 10px 15px 20px 15px;
    margin-bottom: -15px;
  }
  .property_cont {
    border: 2px solid #000000;
    border-radius: 14px;
    margin-bottom: 10px;
  }
  .property_img {

  }
  .property_img img {
    width: 100%;
    border-top-left-radius: 14px;
    border-top-right-radius: 14px;
    display: block;
    margin: 0;
  }
  .property_title {
    font-size: 20px;
    padding: 20px;
    border-bottom-left-radius: 14px;
    border-bottom-right-radius: 14px;
    height: 120px;
  }
  .property_txt {
    font-size: 16px;
    margin-bottom: 10px;
    min-height: 7em;
  }
  .property_date {
    font-size: 14px;
  }
  .btn_property {
    border: 4px solid #EB612A;
    border-radius: 30px;
    padding: 18px;
    font-size: 20px;
  }
}

/*------------------
物件情報詳細
------------------*/
.property_single {
  padding-bottom: 50px;
  margin-bottom: 50px;
}
.property_single_inner {
  margin-bottom: 40px;
}
.property_single_img {
  max-width: 80%;
  height: auto;
}
.property_single_comment {
  padding: 30px 0;
}


/*------------------
相談会情報
------------------*/

.consul {
  background-color: #343434;  
}
.consul_h2 {
  font-weight: 900;
  font-size: 30px;
  padding-top: 30px;
  margin-bottom: 40px;
  color: #FFFFFF;
}
.consul_p {
  font-weight: 900;
  font-size: 16px;
  color: #FFFFFF;
}
.consul_tags {
  color: #FFFFFF;
  font-weight: 600;
  font-size: 14px;
  margin-bottom: 40px;
}
.consul_tags span {
  border: 1px solid #FFFFFF;
  padding: 5px 15px;
  margin: 0 10px 10px 0;
  display: inline-block;
}
.consul_imgs {
  display: flex;
  flex-wrap: wrap;
  column-gap: 4%;
}
.consul_imgs img {
  display: block;
  width: 48%;
  margin-bottom: 4%;
}
.consul_overview {
  color: #FFFFFF;  
}
.consul_exp {
  
}
.consul_exp_h3 {
  font-weight: 900;
  font-size: 22px;
  line-height: 1.4;
  margin-bottom: 20px;
}
.consul_exp_txt {
  font-size: 14px;
  font-weight: 500;
  margin-bottom: 30px;
}
.check {
  color: #EB612A;
  font-weight: 900;
  font-size: 20px;
  margin-bottom: 40px;
}
.check span {
  display: block;
  padding-left: 35px;
  background-image: url(../images/check.png);
  background-repeat: no-repeat;
  background-position: left center;
  background-size: 20px 20px;
}
.theme {
  border: 2px solid #FFFFFF;
  padding: 10px 20px 20px;
  margin-bottom: 50px;
}
.theme_h4 {
  font-weight: 800;
  font-size: 16px;
  background-image: url(../images/line_theme.png);
  background-repeat: no-repeat;
  background-position: center bottom;
  background-size: 100% auto;
  padding-bottom: 20px;
  text-align: center;
}
.theme_ex {
  list-style-type: none;
  list-style-position: outside;
}
.theme_ex li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 5px;
}
.theme_ex li::before {
  position: absolute;
  left: 0;
}
.theme_ex li:nth-child(1)::before {
  content: "⑴";
}
.theme_ex li:nth-child(2)::before {
  content: "⑵"
}
.theme_ex li:nth-child(3)::before {
  content: "⑶"
}
.theme_ex li:nth-child(4)::before {
  content: "⑷"
}
.theme_ex li:nth-child(5)::before {
  content: "⑸"
}
.theme_ex li:nth-child(6)::before {
  content: "⑹"
}
.expert_h3 {
  font-weight: 800;
  font-size: 16px;
  color: #FFFFFF;
  margin-bottom: 40px;
}
.expert_wrap {
  
}
.expert_block {
  background-color: #FFFFFF; 
  margin-bottom: 40px;
}

.expert_head {
  position: relative;
  padding: 20px 20px 0 20px;
}
.expert_head::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  border-top: 8px solid #EB612A;
  border-left: 8px solid #EB612A;
  top: -4px;
  left: -4px;
}
.expert_head::after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  border-top: 8px solid #EB612A;
  border-right: 8px solid #EB612A;
  top: -4px;
  right: -4px;
}
.expert_img {
  width: 150px;
  height: 160px;
  display: block;
  margin: -40px auto 20px auto;
}
.expert_img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.expert_info {
  
}
.position {
  font-weight: 700;
  font-size: 13px;
  margin-bottom: 8px;
  display: block;
}
.expert_info_h4 {
  font-weight: 900;
  font-size: 18px;
  border-left: 4px solid #EB612A;
  color: #EB612A;
  line-height: 1.4;
  padding: 2px 0 2px 15px;
}
.expert_info_h4 span {
  font-weight: 700;
  font-size: 13px;
  display: block;
  color: #000000;
}

.expert_profile {
  position: relative;
  padding: 20px;
}

.expert_profile::before {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  border-bottom: 8px solid #EB612A;
  border-left: 8px solid #EB612A;
  bottom: -4px;
  left: -4px;
}
.expert_profile::after {
  content: "";
  width: 30px;
  height: 30px;
  position: absolute;
  border-bottom: 8px solid #EB612A;
  border-right: 8px solid #EB612A;
  bottom: -4px;
  right: -4px;
}

@media screen and (min-width:768px){
  .consul {
    padding-bottom: 100px;
    
  }
  .consul_h2 {
    font-size: 50px;
    padding-top: 30px;
    margin-bottom: 40px;
  }
  .consul_p {
    font-size: 22px;
    margin-bottom: 10px;
  }
  .consul_tags {
    font-size: 20px;
    margin-bottom: 50px;
  }
  .consul_tags span {
    padding: 5px 15px;
    margin: 0 20px 0 0;
  }
  .consul_imgs {
    column-gap: 30px;
    justify-content: center;
  }
  .consul_imgs img {
    width: 200px;
    margin-bottom: 4%;
  }
  .consul_overview {
    display: flex;
    justify-content: space-between;
  }
  .consul_exp {
    width: 50%;
  }
  .consul_exp_h3 {
    font-size: 30px;
    margin-bottom: 30px;
  }
  .consul_exp_txt {
    font-size: 18px;
    margin-bottom: 40px;
  }
  .check {
    font-size: 26px;
    margin-bottom: 40px;
    display: flex;
  }
  .check span {
    padding-left: 45px;
    background-size: 25px 25px;
    margin-right: 40px;
  }
  .theme {
    max-width: 480px;
    border: 3px solid #FFFFFF;
    padding: 15px 25px 25px;
    margin-bottom: 50px;
  }
  .theme_h4 {
    font-size: 22px;
    background-size: 100% auto;
    padding-bottom: 25px;
    margin-bottom: 5px;
  }
  .theme_ex {

  }
  .theme_ex li {
    padding-left: 25px;
  }

  .expert_h3 {
    font-size: 22px;
    margin-bottom: 40px;
  }
  .expert_wrap {
    display: flex;
    flex-wrap: wrap;
    column-gap: 4%;
  }
  .expert_block {
    width: 48%;
    margin-bottom: 4%;
  }
  .expert_head {
    padding: 35px 35px 0 35px;
    display: flex;
    flex-direction:row-reverse;
    justify-content: space-between;
  }
  .expert_head::before {
    width: 45px;
    height: 45px;
    border-top: 12px solid #EB612A;
    border-left: 12px solid #EB612A;
    top: -6px;
    left: -6px;
  }
  .expert_head::after {
    width: 45px;
    height: 45px;
    border-top: 12px solid #EB612A;
    border-right: 12px solid #EB612A;
    top: -6px;
    right: -6px;
  }
  .expert_img {
    width: 180px;
    height: 180px;
    display: block;
    margin: 0;
  }
  .expert_img img {
    width: 100%;
    height: 100%;
  }
  .expert_info {

  }
  .position {
    font-size: 16px;
    margin-bottom: 8px;
  }
  .expert_info_h4 {
    font-size: 24px;
    border-left: 6px solid #EB612A;
    line-height: 1.4;
    padding: 2px 0 2px 15px;
  }
  .expert_info_h4 span {
    font-size: 16px;
  }

  .expert_profile {
    padding: 35px;
    height: 180px;
  }

  .expert_profile::before {
    width: 45px;
    height: 45px;
    border-bottom: 12px solid #EB612A;
    border-left: 12px solid #EB612A;
    bottom: -6px;
    left: -6px;
  }
  .expert_profile::after {
    width: 45px;
    height: 45px;
    border-bottom: 12px solid #EB612A;
    border-right: 12px solid #EB612A;
    bottom: -6px;
    right: -6px;
  }
}


/*------------------
会社概要
------------------*/

.company {
  padding: 0 0 80px 0;
}
.company_head {
  background-color: #D5D5D5;
  padding-top: 40px;
  margin-bottom: 40px;
}
.company_head_inner {
  padding: 0 20px;
}
.company_head_txt {
  
}
.company_h2 {
  font-weight: 900;
  font-size: 30px;
  padding-top: 30px;
  margin-bottom: 40px;
}
.company_head_txt p {
  line-height: 1.8;
}
.company_head_txt p span {
  font-weight: 700;
  font-size: 16px;
  display: block;
  text-align: right;
}
.company_head_img {
  width: 100%;
}
.company_head_img img {
  width: 100%;
  display: block;
}

.company_overview {
  border-top: 1px solid #D0D0D0;
  font-size: 12px;
  margin-bottom: 50px;
  width: 80%;
}
.company_overview th,
.company_overview td {
  border-bottom: 1px solid #D0D0D0;
}
.company_overview th {
  padding: 10px 20px;
  text-align: left;
  font-weight: 500;
}
.company_overview td {
  padding: 10px 20px 10px 0;
  font-weight: 500;
}

.map {
  width: 100%;
  height: 130px;
}
.map iframe {
  width: 100%;
  height: 130px;
}


@media screen and (min-width:768px){
  .company {
    padding: 0 0 140px 0;
  }
  .company_head {
    padding-top: 60px;
    margin-bottom: 80px;
  }
  .company_head_inner {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0;
    display: flex;
  }
  .company_head_txt {
    width: 50%;
  }
  .company_h2 {
    font-weight: 900;
    font-size: 30px;
    padding-top: 30px;
    margin-bottom: 40px;
  }
  .company_head_txt p span {
    font-weight: 700;
    font-size: 16px;
    display: block;
    text-align: right;
  }
  .company_head_img {
    width: 50%;
  }
  .company_head_img img {
    width: 100%;
  }
  
  .company_overview {
    font-size: 16px;
    width: 80%;
    max-width: 800px;
    margin: 0 auto 80px;
  }
  .company_overview th {
    padding: 20px 30px;
    text-align: left;
    font-weight: 800;
  }
  .company_overview td {
    padding: 20px 30px 20px 0;
  }

  .map {
    max-width: 1000px;
    height: 400px;
    margin: 0 auto;
  }
  .map iframe {
    width: 100%;
    height: 400px;
  }
}












/*------------------
フッター
------------------*/

.footer {
  background-color: #000000;
  padding-bottom: 40px; 
}
.footer_inner {
  padding: 50px 20px;
  border-bottom: 1px solid #FFFFFF;
	margin-top:80px;
}
.foot_logo {
  width: 60%;
  margin: 0 auto 40px auto;
}
.foot_logo img {
  width: 100%;
}

.foot_menu {
  display: flex;
  flex-wrap: wrap;
  padding: 0 20px;
  margin: 0 auto 50px;
  width: 80%;
}
.foot_menu a {
  font-weight: 700;
  font-size: 14px;
  color: #FFFFFF;
  text-decoration: none;
  display: block;
  margin-bottom: 20px;
}
.foot_menu a.foot_menu_home {
  width: 100%;
}
.foot_menu_under {
  padding-left: 15px;
  position: relative;
  
}
.foot_menu_under::before {
  content: "";
  position: absolute;
  height: 2px;
  width: 10px;
  background-color: #FFFFFF;
  top: 0;
  bottom: 0;
  left: 0;
  right: auto;
  margin: auto 0;
}
.foot_menu div {
  width: 50%;
}

.foot_cta {
  width: 90%;
  margin: 0 auto;
}
.foot_cta .btn_contact_sp {
  font-size: 14px;
  font-weight: 700;
  display: block;
  text-decoration: none;
  background-color: #EB612A;
  color: #FFFFFF;
  padding: 15px;
  text-align: center;
  margin-bottom: 15px;
}
.foot_cta .btn_tel_sp {
  margin-bottom: 50px;
}
.foot_cta .btn_tel_time_sp {
  color: #ffffff;
}
.sns {
  display: flex;
  justify-content: center;
  column-gap: 20px;
}
.sns img {
  height: 28px;
  width: auto;
}
.copyright {
  text-align: center;
  font-size: 14px;
  padding: 40px 20px;
}
.copyright a {
  display: block;
  color: #FFFFFF;
  margin-bottom: 30px;
}
.copyright small {
  color: #FFFFFF;
}


@media screen and (min-width:768px){
  .footer {
    padding-bottom: 20px; 
  }
  .footer_inner {
    max-width: 1000px;
    padding: 80px 100px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
	  margin-top: 100px;
	  
  }
  .foot_logo {
    max-width: 235px;
    margin: 0;
  }
  
  .foot_menu {
    padding: 0 20px;
    margin: 0 auto;
    width: auto;
  }
  .foot_menu a {
    font-size: 16px;
    margin-bottom: 20px;
  }
  .foot_cta {
    width: 220px;
    margin: 0 auto;
  }
  .foot_cta .btn_tel_sp {
    margin-bottom: 20px;
  }
  .sns {
    justify-content: flex-start;
    column-gap: 20px;
  }
  .copyright {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 20px 0;
  }
  .copyright a {
    margin-bottom: 0;
  }
}




/*------------------
スマホ用追従CTA
------------------*/

.sp_fix_cta {
  position: fixed;
  bottom: 0;
  width: 100%;
  padding: 1%;
  background-color: #FBD41F;
  display: flex;
  column-gap: 1%;
}
.btn_fix_contact {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #EB612A;
  color: #FFFFFF;
  width: 50%;
  height: 40px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.btn_fix_contact::before {
  content: "";
  width: 20px;
  height: 12px;
  background-image: url(../images/ico_mail.png);
  background-repeat: no-repeat;
  background-size: cover;
}
.btn_fix_tel {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #EB612A;
  background-color: #000000;
  width: 50%;
  height: 40px;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}
.btn_fix_tel::before {
  content: "";
  width: 15px;
  height: 15px;
  background-image: url("../images/ico_tel.png");
  background-repeat: no-repeat;
  background-size: cover;
}

@media screen and (min-width:768px){
  .sp_fix_cta {
    display: none;
  }
}






@media screen and (min-width:768px){
  /*タブレット以上　画面幅を768pxまでに設定*/
}




/*contact form7 250625*/
.cf7-form-wrap {
  max-width: 600px;
  margin: 0 auto;
  padding: 20px;
  font-family: sans-serif;
}

.form-row {
  margin-bottom: 20px;
}

.form-label {
  display: block;
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 16px;
}

.required {
  color: red;
  margin-right: 8px;
  font-weight: bold;
}

.cf7-form-wrap input[type="text"],
.cf7-form-wrap input[type="tel"],
.cf7-form-wrap input[type="email"],
.cf7-form-wrap textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-size: 16px;
}

.cf7-form-wrap textarea {
  height: 150px;
  resize: vertical;
}

.radio-group label {
  margin-right: 20px;
  font-weight: normal;
}

.cf7-form-wrap input[type="submit"] {
  background-color: #0073aa;
  color: white;
  padding: 12px 24px;
  border: none;
  border-radius: 5px;
  font-size: 16px;
  cursor: pointer;
}

.cf7-form-wrap input[type="submit"]:hover {
  background-color: #005177;
}

.cf7-form-section{
	width:90%;
	margin:100px 10px auto;
	
}

.cf7-form-h2{
	text-align:center;
}


/*contact form 7 complete message */
/*
.wpcf7-response-output {
	margin-bottom:100px; !important;
  display: block !important;
  visibility: visible !important;
  opacity: 1 !important;
  margin-top: 20px;
  padding: 10px 15px;
  background-color: #d4edda;
  border: 1px solid #28a745;
  color: #155724;
  border-radius: 4px;
	
}
*/