/*****************************************
dgreen common css
header & footer only!
*****************************************/
/* 基本設定とPC共通設定 */
body {
  margin: 0;
  color: #303030;
}
img{
  vertical-align: bottom;
}
main{
  overflow: hidden;
}
.post, .page{
  margin: 0;
}
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #fff;
  z-index: 1000;
  box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

/* 飾りライン */
.header-line {
  height: 4px;
  background-color: #6EA305;
  width: 100%;
}

.header-container {
  margin: 0 auto;
}

.header-title h1 {
  max-width: 1000px;
  margin: 0 auto;
  font-weight: normal;
}

.header-main {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.pc-contact {
  display: flex;
  align-items: flex-end;
  gap: 20px;
  margin: -8px 0 15px;
}

.corp-link {
  font-size: 14px;
  color: #333;
  text-decoration: none;
}

.tel-image {}
.tel-image img {
  height: 88px; /* 電話番号画像の高さに合わせて調整 */
}

.arrow__link {
  position: relative;
  padding: 10px 40px 10px 0;
  text-decoration: underline;
  color: #313131 !important;
}
.arrow__link::after {
  content: "";
  position: absolute;
  display: block;
  width: 32px;
  height: 32px;
  background-size: contain;
  background-position: right center;
  background-image: url(https://www.asahihome.com/reform/assets25/img/arrow01.png);
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
}
.arrow__link:hover {
  color: #6EA305;
}

.arrow-prev{
  padding: 10px 0 10px 40px;
  margin: 60px 0 0;
  display: block;
}
.arrow-prev::after{
  background-image: url(https://www.asahihome.com/reform/assets25/img/arrow05.png);
  left: 0;
  right: auto;
}

@media screen and (min-width: 769px) {
  .sp{
    display: none !important;
  }
  .logo img {
    height: 75px;
  }
  .header-title h1 {
    font-size: 14px;
    padding: 6px 0 2px;
  }
}
@media screen and (max-width: 768px) {
  .pc{
    display: none !important;
  }
  .logo {
    width: 65%;
  }
  .logo img {
    width: 100%;
    max-width: 191px;
  }
  .header-title h1 {
    font-size: 11px;
  }
  .tel-image img{
    height: auto;
  }
}
/* -------------------------------------------------- */
/* レスポンシブ対応 (スマートフォン) */
/* -------------------------------------------------- */
body {
  padding-top: 200px;
}
@media all and (max-width: 768px) {
  body {
    padding-top: 92px;
  }

  .header-container {}

  .header-title {
    width: 100%;
    text-align: center;
    padding: 4px 0 0;
  }

  .sp-title-line {
    display: block;
    height: 1px;
    background-color: #ccc;
    margin-top: 2px;
  }

  .header-main {
    width: 100%;
    justify-content: space-between;
    padding: 0 0 0 10px;
  }

  .pc-contact {
    display: none;
  }
}
/*=======================================
header nav
=======================================*/
/* 共通 */
.header-nav {
  background-color: #6EA305;
}
.header-nav ul {
  list-style: none;
  padding: 0;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  max-width: 1000px;
}
.header-nav li {
  position: relative;
  text-align: center;
}
.header-nav li a {
  display: block;
  padding: 24px 42px;
  text-decoration: none;
  color: #fff;
  font-size: 20px;
  line-height: 24px;
  height: 72px;
  box-sizing: border-box;
  transition: all 0.3s;
}
.header-nav li a:hover {
  background-color: #E44D30;
}
.header-nav .last-menu {
  background: none; /* 共通化したので色はhoverのみ */
}

/* サブメニュー（PCのみ表示） */
.header-nav li.has-submenu > a::after {
  content: "▼";
  font-size: 12px;
  margin-left: 6px;
}
.header-nav li.has-submenu .submenu {
  display: none;
  position: absolute;
  top: 72px;
  left: 0;
  background: #6EA305;
  min-width: 332px;
  z-index: 1000;
}
.header-nav li.has-submenu:hover .submenu {
  display: block;
}
.header-nav li.has-submenu .submenu li a {
  padding: 14px 30px;
  font-size: 23px;
  text-align: left;
  height: auto;
}
.header-nav li.has-submenu .submenu li a span{
  font-size: 17px;
  display: block;
}
.header-nav li.has-submenu .submenu li a:hover {
  background-color: #E44D30;
}

.contact-btn {
  display: block;
  background-color: #e44d30;
  color: #fff;
  text-decoration: none;
  padding: 20px 20px;
  border-radius: 10px;
  font-weight: bold;
  margin-bottom: 15px;
  position: relative;
}
.contact-btn::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 32px;
  height: 32px;
  background: url('https://www.asahihome.com/apartment/assets25/img/arrow02.png') no-repeat center/contain;
}
.contact-btn:hover, .contact-btn:visited {
  color: #fff;
}

/* PC */
@media all and (min-width: 769px) {
  .header-nav-wrap{
    background-color: #6EA305;
  }
  .sp-menu-overlay {
    display: none;
  }
}

/* SP */
@media all and (max-width: 768px) {
  .header-nav { display: none; }

  .sp-menu-overlay {
    position: fixed;
    top: 92px;
    left: 0;
    width: 100%;
    height: auto;
    background-color: #6EA305;
    z-index: 999;
    padding: 20px 20px 60px;
    display: none;
  }
  .sp-menu-overlay.is-open {
    display: block;
    overflow-y: scroll;
  }
  .sp-menu-overlay nav ul {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .sp-menu-overlay nav li a {
    display: block;
    padding: 6px 15px 10px 40px;
    color: #fff;
    text-decoration: none;
    font-size: 18px;
    background-image: url(https://www.asahihome.com/reform/assets25/img/arrow02.png);
    background-size: 24px;
    background-position: left center;
    background-repeat: no-repeat;
  }
  .sp-menu-bottom {
    margin-top: 30px;
    text-align: center;
  }
  .sp-contact-wrap{
    background: #FFFFFF;
    padding: 20px 30px 20px;
    border-radius: 10px;
  }
  .sp-menu-bottom .tel-image {
    display: block;
    margin: 0 auto 20px;
  }
  .sp-menu-bottom .corp-link {
    color: #fff !important;
    font-size: 14px;
    margin: 30px auto 0;
    display: block;
    max-width: 130px;
  }
  .sp-menu-bottom .corp-link::after{
    background-image: url(https://www.asahihome.com/reform/assets25/img/arrow02.png);
  }
}

/* =========================
   ハンバーガーメニュー
========================= */
.hamburger-menu{
  display: none;
}
/* SP表示用 */
@media all and (max-width: 768px) {
  /* ハンバーガーメニューの基本スタイル（三本線） */
  .hamburger-menu {
    display: flex;
    flex-direction: column; /* 縦に並べる */
    justify-content: center;
    align-items: center;
    width: 64px;
    height: 64px;
    background-color: #6EA305;
    cursor: pointer;
    box-sizing: border-box; /* paddingを含めて幅と高さを計算 */
    position: relative; /* 子要素のposition: absoluteの基準に */
    padding-top: 10px; /* メニューの文字と線との間にスペースを作る */
  }

  /* 一番上の線と一番下の線 */
  .hamburger-menu::before,
  .hamburger-menu::after {
    content: '';
    position: absolute;
    left: 50%; /* 中央寄せ */
    transform: translateX(-50%);
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
  }

  /* 一番上の線 */
  .hamburger-menu::before {
    top: 15px;
  }

  /* 真ん中の線 */
  .hamburger-menu span:first-child {
    width: 25px;
    height: 2px;
    background-color: #fff;
    transition: all 0.3s ease;
    position: absolute;
    top: 23px;
    left: 50%;
    transform: translateX(-50%);
  }

  /* 一番下の線 */
  .hamburger-menu::after {
    top: 31px;
  }

  /* 「メニュー」の文字 */
  .hamburger-menu span:last-child {
    font-size: 12px;
    color: #fff;
    margin-top: 22px; /* 線と文字の間に余白を確保 */
    display: block; /* メニューの文字をブロック要素に */
    transition: opacity 0.3s;
  }

  /* 「閉じる」ボタンのスタイル */
  .hamburger-menu.is-active::before {
    top: 24px;
    transform: translateX(-50%) rotate(45deg);
  }

  .hamburger-menu.is-active::after {
    top: 24px;
    transform: translateX(-50%) rotate(-45deg);
  }

  .hamburger-menu.is-active span:first-child {
    opacity: 0;
  }

  .hamburger-menu.is-active span:last-child {
    opacity: 1; /* 「閉じる」の文字は常に表示 */
  }
}

/*=======================================
footer
=======================================*/
footer {
  border-top: 1px solid #E1E1E1;
}

/* 上部セクション（CONTACTとボタン） */
.footer-contact {
  background-color: #fff;
  padding: 67px 20px 40px;
}
.tel-number {
  width: 100%;
  max-width: 450px;
}

/* 下部セクション（ロゴ、住所、コピーライト） */
.footer-bottom {
  padding: 40px 20px;
}

.bottom-inner {
  max-width: 1240px;
  margin: 0 auto;
}

.logo-and-address {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 20px;
}

.logo-area {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 435px;
}
.logo-area img{
  max-width: 408px;
}
.logo-area p{
  margin: 0;
}
.logo-area p a{}
.contact-info {
  max-width: 406px;
}
.contact-info .footer-tel{
  margin: 0 0 10px;
}

.copyright {
  font-size: 13px;
  color: #fff;
  margin: 0;
  background: #6EA305;
  padding: 11px 20px 11px;
  text-align: center;
}

@media (min-width: 769px) {}

/* スマートフォン向けのスタイル */
@media all and (max-width: 768px) {
  /* 上部セクション（CONTACTとボタン） */
  .footer-contact {
    padding: 32px 10px 32px;
  }
  .tel-number {
    height: auto;
    margin-right: 0;
  }

  .business-hours {
    font-size: 14px;
    margin-top: 5px;
    margin-bottom: 24px;
  }

  /* 下部セクション（ロゴ、住所、コピーライト） */
  .footer-bottom {
    padding: 40px 20px 55px;
  }

  .logo-and-address {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .logo-area {
    margin-bottom: 28px;
  }

  .address-info {
    font-size: 15px;
    margin-bottom: 20px;
  }
  .logo-area img{
    max-width: 270px;
    display: block;
    margin: 0 auto;
  }
}



/*=======================================
common title
=======================================*/
.has-h2-wrap{
  text-align: center;
}
.h2-wrap {
  position: relative;
  line-height: 1.4;
  display: inline-block;
  top: 0;
}

.h2-wrap:before, .h2-wrap:after {
  position: absolute;
  top: 0;
  content:'';
  width: 8px;
  height: 100%;
  display: inline-block;
}
.h2-wrap:before {
  border-left: solid 1px #231815;
  border-top: solid 1px #231815;
  border-bottom: solid 1px #231815;
  left: 0;
}
.h2-wrap:after {
  content: '';
  border-top: solid 1px #231815;
  border-right: solid 1px #231815;
  border-bottom: solid 1px #231815;
  right: 0;
}

.h2-wrap span{
  color: #6EA305;
  font-weight: bold;
}
.h2-wrap h2{
  font-size: 72px;
  color: #303030;
  font-weight: bold;
  margin: 0;
  line-height: 1;
}

/*pc*/
@media all and (min-width:769px) {
  .h2-wrap {
    padding: 10px 70px 15px;
  }
  .h2-wrap span{
    font-size: 20px;
  }
}
/*sp*/
@media all and (max-width: 768px) {
  .h2-wrap {
    padding: 10px 50px 15px;
  }
  .h2-wrap span{
    font-size: 11px;
  }
  .h2-wrap h2{
    font-size: 42px;
  }
}

/*=======================================
top
=======================================*/
.bg-yellow{
  background: #F9F7EE;
}
.top-sec .contents-wrap{}
.top-contents-txt{
  font-size: 17px;
  margin: 37px 0 70px;
}
.btn-wrap{}
.btn-center{
  text-align: center;
}

.detail-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 20px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.06em;
  color: #303030;
  background: #fff;
  border: 2px solid #e44d30;
  border-radius: 16px;
  text-decoration: none;
  box-sizing: border-box;
  position: relative;
  width: 100%;
}

/* 右側の赤丸＋矢印を疑似要素で追加 */
.detail-btn::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: url('https://www.asahihome.com/apartment/assets25/img/arrow03.png') no-repeat center/contain;
}

.apply-btn {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 20px;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.06em;
  color: #fff;
  background-color: #e44d30;
  border-radius: 16px;
  text-decoration: none;
  box-sizing: border-box;
  position: relative;
  width: 100%;
}

/* 右側の白い丸＋矢印画像 */
.apply-btn::after {
  content: "";
  position: absolute;
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  background: url('https://www.asahihome.com/apartment/assets25/img/arrow02.png') no-repeat center/contain;
}

  .btn-wrap a{
    color: #fff;
  }

/*pc*/
@media all and (min-width:769px) {
  .detail-btn, .apply-btn {
    max-width: 406px;
    height: 91px;
  }
  .btn-wrap a{
    margin: 0 38px;
  }
  .detail-btn::after, .apply-btn::after {
    width: 46px;
    height: 46px;
    font-size: 23px;
  }
  .top-contents-txt{
    text-align: center;
  }
  .top-sec{
    padding: 100px 0 90px;
  }
}
/*sp*/
@media all and (max-width: 768px) {
  .detail-btn{
    margin: 0 0 10px;
  }
  .detail-btn, .apply-btn {
    max-width: 294px;
    height: 66px;
    font-size: 16px;
  }
  .detail-btn::after, .apply-btn::after {
    width: 33px;
    height: 33px;
  }
  .top-contents-txt{
    text-align: left;
    padding: 0 20px;
  }
  .top-sec{
    padding: 46px 0 30px;
  }
}
/*=======================================
top-event
=======================================*/
.event-section {
  max-width: 1280px;
  margin: 0 auto;
}

.event-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
  margin: 20px 0 30px;
}

.event-left {
  max-width: 434px;
  width: 100%;
}

.event-title {
  font-size: 36px;
  font-weight: bold;
  color: #E44D30;
  margin-bottom: 30px;
  line-height: 1.4;
}

.event-details {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
}

.event-details li {
  margin-bottom: 8px;
  font-size: 17px;
  position: relative;
  padding-left: 52px;
}

.event-details .label {
  background: #E44D30;
  color: #fff;
  font-size: 14px;
  padding: 2px 8px;
  border-radius: 6px;
  margin-right: 8px;
  display: inline-block;
  position: absolute;
  left: 0;
}

.event-separator {
  border: none;
  border-top: 1px solid #ddd;
  margin: 16px 0 19px;
}

.event-desc {
  font-size: 16px;
  line-height: 1.6;
  color: #333;
}

.event-right {
  max-width: 740px;
}

.event-image {}

.event-image img {}

  /*pc*/
  @media all and (min-width:769px) {
    .event-section {
      padding: 48px 20px 27px;
    }
  }

/* スマホ対応 */
@media (max-width: 768px) {
  .event-inner {
    flex-direction: column;
    margin: 0 0 30px;
  }
  .event-left, .event-right {
    flex: 1 1 100%;
  }
  .event-title {
    font-size: 28px;
  }
  .event-section {
    padding: 0 20px 27px;
  }
}


/*=======================================
main-visual
=======================================*/
#main-visual .slick-slide img{
  width: 100%;
}
/*pc*/
@media all and (min-width:769px) {}
/*sp*/
@media all and (max-width: 768px) {}
/*=======================================
header
=======================================*/
.bottom-inner {
  max-width: 1240px;
  margin: 0 auto;
}
/*pc*/
@media all and (min-width:769px) {}
/*sp*/
@media all and (max-width: 768px) {}
/*=======================================
concept
=======================================*/
.concept-lists{
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 1290px;
  margin: 60px auto 0;
}
.concept-list{
  max-width: 380px;
  margin: 0 25px;
}
.concept-list:nth-child(1), .concept-list:nth-child(2), .concept-list:nth-child(3) {
    margin: 0 25px 50px;
}
.concept-list .text-wrap{
  background: #FFF;
  padding: 10px 20px 10px;
  border-radius: 0 0 10px 10px;
}
.concept-list .text-wrap h3{
  font-size: 24px;
  text-align: center;
  margin: 10px 0 10px;
}
.concept-list .text-wrap h3 span{
  color: #E44D30;
}
.concept-list .text-wrap p{
  font-size: 17px;
}


/*pc*/
@media all and (min-width:769px) {}
/*sp*/
@media all and (max-width: 768px) {}

/*=======================================
top-product
=======================================*/
#top-product{}
.product-lists{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 20px;
}

/*pc*/
@media all and (min-width:769px) {
  .product-lists a{
    max-width: 588px;
    width: 48%;
    margin: 20px 0 20px;
  }
}
/*sp*/
@media all and (max-width: 768px) {
  .product-lists a{
    width: 100%;
    margin: 20px 0 20px;
  }
}

/*=======================================
page
=======================================*/
.page-hero {
  width: 100%;
  height: 320px;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  position: relative;
}

#page-lead-wrap {}
#page-lead-wrap .contents-wrap {
  padding: 60px 20px 36px;
}
.page-lead-large {
  font-size: 28px;
  text-align: center;
  margin: 77px 0 46px;
}
.page-lead-large .orange {
  font-size: 41px;
  color: #E44D30;
}
#page-lead-wrap .contents-wrap .page-lead {
  text-align: center;
  font-size: 20px;
}

.product-contents {
  padding: 40px 20px 40px;
}

.product-contents > div {
  max-width: 1280px;
  margin: 0 auto;
}

.flex-wrap01 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px 0;
}

.flex-wrap01 .left {
  max-width: 562px;
  width: 46%;
}
.flex-wrap01 .right {
  max-width: 580px;
  width: 47%;
}

.flex-wrap01 .left h3 {}

.flex-wrap01 .left img {}


/* 建物の特徴 */
.features-title {
  position: relative;
  font-size: 24px;
  color: #E44D30;
  font-weight: bold;
  margin-bottom: 22px;
  border-bottom: 4px solid #E44D30;
  padding-bottom: 5px;
}

.features-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.features-list li {
  position: relative;
  font-size: 17px;
  color: #303030;
  line-height: 1.8;
  padding-left: 24px; /* 丸のスペース */
  margin-bottom: 8px;
}

.features-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 13px;
  height: 13px;
  background-color: #E44D30;
  border-radius: 50%;
}

/* flex-wrap02 追加画像横並び */
.flex-wrap02 {
  display: flex;
  justify-content: space-between;
  padding: 0 20px 0;
}

.flex-wrap02 img {
  max-width: 610px;
  width: 49%;
}

/* サブタイトル */
.h4-line {
  border-top: 4px solid #E44D30;
  border-bottom: 4px solid #E44D30;
  text-align: center;
  padding: 14px 20px 15px;
  font-size: 30px;
  color: #E44D30;
  max-width: calc(1280px - 40px);
  margin: 50px auto 30px;
}

.h4-line span {
  font-size: 20px;
}

.product-contents .madori{
  margin: 0 auto;
  display: block;
  max-width: calc(1280px - 40px);
  width: 100%;
}

.contact-tel{
  display: block;
  text-align: center;
  margin: 10px 0 50px;
}

/* =======================================
レスポンシブ対応
======================================= */
@media screen and (max-width: 768px) {
  .page-hero {
    height: 100px;
  }
  .page-lead-large .orange{
    display: block;
  }
  .page-lead-large{
    font-size: 22px;
  }

  .flex-wrap01 {
    flex-wrap: wrap;
    padding: 0;
  }
  .flex-wrap02 {
    flex-wrap: wrap;
    padding: 0;
  }
  .flex-wrap01 .left,
  .flex-wrap01 .right {
    width: 100%;
  }
  .flex-wrap02 img {
    width: 100%;
    margin: 0 0 10px;
  }
  .h4-line span{
    display: block;
  }
}



/*pc*/
@media all and (min-width:769px) {}
/*sp*/
@media all and (max-width: 768px) {}
/*=======================================
header
=======================================*/
#contact-form {
  padding: 80px 20px 83px;
  margin-bottom: 70px;
}
#contact-form .contact-wrap{
  background: #fff;
  max-width: 1240px;
  margin: 0 auto;
}
#contact-form .contact-wrap p.txt{
  padding: 30px 10px 14px;
  margin: 0 auto;
  max-width: 1000px;
  font-size: 17px;
}
#contact-form .contact-wrap p.txt span{
  color: #E44D30;
}
#wpcf7-f6-o1{
  max-width: 1000px;
  margin: 0 auto;
}
.wpcf7-spinner{
  display: none;
}
table{
  margin: 0 0 30px;
}
table tr{}
table th{
  background: #F5F5F5;
  width: 244px;
  text-align: left;
  padding: 23px 26px 29px;
  margin: 0;
}
table td{
  padding: 12px 39px;
}
table th,table td{
  border: 3px solid #fff;
}
table th p{
  color: #E44D30;
}
table td p{}
table th p,table td p{
  margin: 0;
}
input[type="text"],
input[type="email"],
input[type="url"],
input[type="password"],
input[type="search"],
input[type="number"],
input[type="tel"],
input[type="range"],
input[type="date"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="datetime"],
input[type="datetime-local"],
input[type="color"]{
  font-size: 18px;
  padding: 13px 27px 14px;
  border: 1px solid #C1C1C1;
  border-radius: 0;
  max-width: 545px;
  width: 100%;
}
textarea{
  font-size: 18px;
  padding: 13px 27px 14px;
  border: 1px solid #C1C1C1;
  border-radius: 0;
  max-width: 643px;
  width: 100%;
}
.wpcf7-radio, .wpcf7-select{}
.wpcf7-list-item{
  margin: 8px 30px 8px 0;
}
[type="radio"]{
  width: 18px;
  height: 18px;
  position: relative;
  top: 3px;
}
[type="checkbox"]{}
.wpcf7-list-item-label{
  margin-left: 3px;
}
input[type="text"]::placeholder, .wpcf7 input[type="tel"]::placeholder{
  color: #AFAFAF;
}
.wpcf7-acceptance [type="checkbox"]{
  width: 29px;
  height: 29px;
  position: relative;
  top: 7px;
}
.wpcf7-acceptance{
  font-size: 18px;
  color: #290909;
  display: block;
  margin: 50px auto 40px;
  text-align: center;
}
.wpcf7-acceptance .wpcf7-list-item{
  margin: 0;
}
.wpcf7-acceptance .wpcf7-list-item-label{
  font-size: 18px;
  color: #290909;
  margin-left: 12px;
}
#wpcf7-f6-o1 .center{
  font-size: 20px;
  text-align: center;
  color: #290909;
  margin: 0 0 38px;
}
#wpcf7-f6-o1 .wpcf7-submit{
  display: block;
  background-color: #e44d30;
  color: #fff;
  text-decoration: none;
  padding: 34px 20px;
  border-radius: 10px;
  font-weight: bold;
  position: relative;
  border: 0;
  max-width: 406px;
  width: 100%;
  margin: 0 auto;
  font-size: 23px;
}
#wpcf7-f6-o1 .check{
  text-align: center;
  margin: 0;
  padding: 7px 0 90px;
  font-size: 14px;
  color: #858585;
}
#wpcf7-f6-o1 .check a{
  color: #858585;
}
#wpcf7-f6-o1 .check a:hover{
  opacity: 0.8;
}
/*pc*/
@media all and (min-width:769px) {}
/*sp*/
@media all and (max-width: 768px) {
  table th,table td{
    width: 100%;
    display: block;
    padding: 12px 20px;
  }
  .wpcf7-acceptance .wpcf7-list-item-label{
    font-size: 15px;
    color: #290909;
    margin-left: 6px;
  }
  .wpcf7-acceptance [type="checkbox"] {
    width: 18px;
    height: 18px;
    top: 3px;
  }
  #wpcf7-f6-o1 .center{
    font-size: 16px;
    padding: 0 20px;
  }
  #wpcf7-f6-o1 .wpcf7-submit{
    font-size: 18px;
    padding: 22px 20px;
    max-width: 256px;
  }
  #wpcf7-f6-o1 .check{
    padding: 0 20px 50px;
  }
}
/*=======================================
header
=======================================*/
/*header
_______________________________________*/
/*pc*/
@media all and (min-width:769px) {}
/*sp*/
@media all and (max-width: 768px) {}
/*=======================================
header
=======================================*/
/*header
_______________________________________*/
/*pc*/
@media all and (min-width:769px) {}
/*sp*/
@media all and (max-width: 768px) {}
/*=======================================
header
=======================================*/
/*header
_______________________________________*/
/*pc*/
@media all and (min-width:769px) {}
/*sp*/
@media all and (max-width: 768px) {}

/*=======================================
common
=======================================*/
/*media
_______________________________________*/
/*pc*/
@media all and (min-width:769px) {}
/*sp*/
@media all and (max-width: 768px) {}

/*=======================================
header
=======================================*/
/*header
_______________________________________*/
/*pc*/
@media all and (min-width:769px) {}
/*sp*/
@media all and (max-width: 768px) {}
/*=======================================
common
=======================================*/
/*media
_______________________________________*/
/*pc*/
@media all and (min-width:769px) {}
/*sp*/
@media all and (max-width: 768px) {}

/*=======================================
header
=======================================*/
/*header
_______________________________________*/
/*pc*/
@media all and (min-width:769px) {}
/*sp*/
@media all and (max-width: 768px) {}
/*=======================================
header
=======================================*/
/*header
_______________________________________*/
/*pc*/
@media all and (min-width:769px) {}
/*sp*/
@media all and (max-width: 768px) {}
/*=======================================
header
=======================================*/
/*header
_______________________________________*/
/*pc*/
@media all and (min-width:769px) {}
/*sp*/
@media all and (max-width: 768px) {}
/*=======================================
header
=======================================*/
/*header
_______________________________________*/
/*pc*/
@media all and (min-width:769px) {}
/*sp*/
@media all and (max-width: 768px) {}
/*=======================================
header
=======================================*/
/*header
_______________________________________*/
/*pc*/
@media all and (min-width:769px) {}
/*sp*/
@media all and (max-width: 768px) {}

/*=======================================
common
=======================================*/
/*media
_______________________________________*/
/*pc*/
@media all and (min-width:769px) {}
/*sp*/
@media all and (max-width: 768px) {}

/*=======================================
header
=======================================*/
/*header
_______________________________________*/
/*pc*/
@media all and (min-width:769px) {}
/*sp*/
@media all and (max-width: 768px) {}
/*=======================================
header
=======================================*/
/*header
_______________________________________*/
/*pc*/
@media all and (min-width:769px) {}
/*sp*/
@media all and (max-width: 768px) {}
/*=======================================
header
=======================================*/
/*header
_______________________________________*/
/*pc*/
@media all and (min-width:769px) {}
/*sp*/
@media all and (max-width: 768px) {}
/*=======================================
header
=======================================*/
/*header
_______________________________________*/
/*pc*/
@media all and (min-width:769px) {}
/*sp*/
@media all and (max-width: 768px) {}
/*=======================================
header
=======================================*/
/*header
_______________________________________*/
/*pc*/
@media all and (min-width:769px) {}
/*sp*/
@media all and (max-width: 768px) {}

/*=======================================
common
=======================================*/
/*media
_______________________________________*/
/*pc*/
@media all and (min-width:769px) {}
/*sp*/
@media all and (max-width: 768px) {}

/*=======================================
header
=======================================*/
/*header
_______________________________________*/
/*pc*/
@media all and (min-width:769px) {}
/*sp*/
@media all and (max-width: 768px) {}
  /*=======================================
  header
  =======================================*/
  /*header
  _______________________________________*/
  /*pc*/
  @media all and (min-width:769px) {}
  /*sp*/
  @media all and (max-width: 768px) {}
  /*=======================================
  header
  =======================================*/
  /*header
  _______________________________________*/
  /*pc*/
  @media all and (min-width:769px) {}
  /*sp*/
  @media all and (max-width: 768px) {}
  /*=======================================
  header
  =======================================*/
  /*header
  _______________________________________*/
  /*pc*/
  @media all and (min-width:769px) {}
  /*sp*/
  @media all and (max-width: 768px) {}
  /*=======================================
  header
  =======================================*/
  /*header
  _______________________________________*/
  /*pc*/
  @media all and (min-width:769px) {}
  /*sp*/
  @media all and (max-width: 768px) {}

  /*=======================================
  common
  =======================================*/
  /*media
  _______________________________________*/
  /*pc*/
  @media all and (min-width:769px) {}
  /*sp*/
  @media all and (max-width: 768px) {}

  /*=======================================
  header
  =======================================*/
  /*header
  _______________________________________*/
  /*pc*/
  @media all and (min-width:769px) {}
  /*sp*/
  @media all and (max-width: 768px) {}
  /*=======================================
  header
  =======================================*/
  /*header
  _______________________________________*/
  /*pc*/
  @media all and (min-width:769px) {}
  /*sp*/
  @media all and (max-width: 768px) {}
  /*=======================================
  header
  =======================================*/
  /*header
  _______________________________________*/
  /*pc*/
  @media all and (min-width:769px) {}
  /*sp*/
  @media all and (max-width: 768px) {}
  /*=======================================
  header
  =======================================*/
  /*header
  _______________________________________*/
  /*pc*/
  @media all and (min-width:769px) {}
  /*sp*/
  @media all and (max-width: 768px) {}
  /*=======================================
  header
  =======================================*/
  /*header
  _______________________________________*/
  /*pc*/
  @media all and (min-width:769px) {}
  /*sp*/
  @media all and (max-width: 768px) {}

  /*=======================================
  common
  =======================================*/
  /*media
  _______________________________________*/
  /*pc*/
  @media all and (min-width:769px) {}
  /*sp*/
  @media all and (max-width: 768px) {}

  /*=======================================
  header
  =======================================*/
  /*header
  _______________________________________*/
  /*pc*/
  @media all and (min-width:769px) {}
  /*sp*/
  @media all and (max-width: 768px) {}
  /*=======================================
  common
  =======================================*/
  /*media
  _______________________________________*/
  /*pc*/
  @media all and (min-width:769px) {}
  /*sp*/
  @media all and (max-width: 768px) {}

  /*=======================================
  header
  =======================================*/
  /*header
  _______________________________________*/
  /*pc*/
  @media all and (min-width:769px) {}
  /*sp*/
  @media all and (max-width: 768px) {}
  /*=======================================
  header
  =======================================*/
  /*header
  _______________________________________*/
  /*pc*/
  @media all and (min-width:769px) {}
  /*sp*/
  @media all and (max-width: 768px) {}
  /*=======================================
  header
  =======================================*/
  /*header
  _______________________________________*/
  /*pc*/
  @media all and (min-width:769px) {}
  /*sp*/
  @media all and (max-width: 768px) {}
  /*=======================================
  header
  =======================================*/
  /*header
  _______________________________________*/
  /*pc*/
  @media all and (min-width:769px) {}
  /*sp*/
  @media all and (max-width: 768px) {}
  /*=======================================
  header
  =======================================*/
  /*header
  _______________________________________*/
  /*pc*/
  @media all and (min-width:769px) {}
  /*sp*/
  @media all and (max-width: 768px) {}

  /*=======================================
  common
  =======================================*/
  /*media
  _______________________________________*/
  /*pc*/
  @media all and (min-width:769px) {}
  /*sp*/
  @media all and (max-width: 768px) {}

  /*=======================================
  header
  =======================================*/
  /*header
  _______________________________________*/
  /*pc*/
  @media all and (min-width:769px) {}
  /*sp*/
  @media all and (max-width: 768px) {}
  /*=======================================
  header
  =======================================*/
  /*header
  _______________________________________*/
  /*pc*/
  @media all and (min-width:769px) {}
  /*sp*/
  @media all and (max-width: 768px) {}
  /*=======================================
  header
  =======================================*/
  /*header
  _______________________________________*/
  /*pc*/
  @media all and (min-width:769px) {}
  /*sp*/
  @media all and (max-width: 768px) {}
  /*=======================================
  header
  =======================================*/
  /*header
  _______________________________________*/
  /*pc*/
  @media all and (min-width:769px) {}
  /*sp*/
  @media all and (max-width: 768px) {}
  /*=======================================
  header
  =======================================*/
  /*header
  _______________________________________*/
  /*pc*/
  @media all and (min-width:769px) {}
  /*sp*/
  @media all and (max-width: 768px) {}

  /*=======================================
  common
  =======================================*/
  /*media
  _______________________________________*/
  /*pc*/
  @media all and (min-width:769px) {}
  /*sp*/
  @media all and (max-width: 768px) {}

  /*=======================================
  header
  =======================================*/
  /*header
  _______________________________________*/
  /*pc*/
  @media all and (min-width:769px) {}
  /*sp*/
  @media all and (max-width: 768px) {}
  /*=======================================
