@charset "UTF-8";
html {
  font-size: 16px;
}

body {
  margin: 0;
  font-family: "Hiragino Kaku Gothic Pro", "Yu Gothic", sans-serif;
  color: #333333;
}

header .logo {
  font-weight: 300;
  font-family: "Hiragino Mincho Pro", "Yu Mincho", serif;
  font-size: 1.75rem;
  letter-spacing: .18rem;
}

@media screen and (max-width: 767px) {
  header .logo {
    font-size: 1.6rem;
  }
}

h2 {
  text-align: center;
}

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

wrapper

-------------------------------*/
.container {
  max-width: 1000px;
  width: 100%;
  margin: 0 auto;
}

@media screen and (max-width: 767px) {
  .container {
    padding: 0 3%;
    max-width: 780px;
  }
}

@media screen and (max-width: 1024px) {
  .container {
    padding: 0 3%;
    max-width: 1000px;
  }
}

.tb-br {
  display: none;
}

@media screen and (max-width: 1024px) {
  .tb-br {
    display: block;
  }
}

.sp-br {
  display: none;
}

@media screen and (max-width: 1024px) {
  .sp-br {
    display: block;
  }
}

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

ヘッダー

-------------------------------*/
.top-bar {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 19px 0px 8px 0px;
  font-family: 'Hiragino Mincho Pro';
}

@media screen and (max-width: 767px) {
  .top-bar {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
  }
}

h1 {
  font-size: 1rem;
  display: inline-block;
  letter-spacing: .12rem;
  margin-bottom: 3px;
}

.header__contact-group {
  padding-right: 5px;
}

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

ヘッダーメニューナビゲーション

-------------------------------*/
.navigation {
  border-top: solid 1px #666666;
  border-bottom: solid 5px #8c0000;
}

.menu ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: space-evenly;
      -ms-flex-pack: space-evenly;
          justify-content: space-evenly;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 13px 0 6px;
}

.menu ul li {
  position: relative;
  color: #666666;
  display: inline-block;
  text-align: center;
  width: 100%;
  font-size: 0.8rem;
  padding: 7px;
  font-weight: 600;
}

.menu ul li:before {
  position: absolute;
  display: block;
  content: "";
  top: calc(50% - 12px);
  left: 0;
  height: 24px;
  border-left: 1px solid #666666;
}

.menu ul li:last-child :after {
  position: absolute;
  display: block;
  content: "";
  top: calc(50% - 12px);
  right: 0;
  height: 24px;
  border-right: 1px solid #666666;
}

@media screen and (max-width: 767px) {
  .menu ul {
    display: block;
  }
	.menu{
		display: none;
	}
	.menu ul li:before,
	.menu ul li:last-child :after {
		display: none;
	}
}

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

TOPカバー画像エリア

-------------------------------*/
.cover {
  border-bottom: 1px solid #263859;
}

.cover__wrapper {
  max-width: 1500px;
  margin: 0 auto;
  height: 583px;
  background-image: url("../img/lawyer01.png");
  background-repeat: no-repeat;
  background-position: right bottom;
  position: relative;
}

@media screen and (max-width: 1024px) {
  .cover__wrapper {
    background-position: right -200px bottom 0;
  }
}

@media screen and (max-width: 767px) {
  .cover__wrapper {
    background-position: right -300px bottom 0;
  }
}

@media screen and (max-width: 767px) {
  .cover__txt {
    padding-left: 0;
  }
}

.cover__title {
  padding-top: 157px;
  padding-bottom: 60px;
  font-family: 'Hiragino Mincho Pro';
  font-weight: 600;
  font-size: 2.06rem;
  letter-spacing: 0.45rem;
  line-height: 1.8;
}

.cover__title::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.8) * .5em);
  content: "";
}

.cover__title::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.8) * .5em);
  content: "";
}

@media screen and (max-width: 1024px) {
  .cover__title {
    padding-top: 100px;
    text-shadow: rgba(255, 255, 255, 0.3) 1px 1px 1px;
  }
}

@media screen and (max-width: 767px) {
  .cover__title {
    padding-top: 230px;
    font-size: 1.5rem;
    padding-bottom: 20px;
    color: #ffffff;
    text-shadow: rgba(0, 0, 0, 0.8) 1px 1px 1px;
  }
}

.cover__profile {
  position: absolute;
  right: 25px;
  bottom: 15px;
  color: white;
  font-family: "Hiragino Mincho Pro", "Yu Mincho", serif;
  font-size: 0.72rem;
  letter-spacing: .15rem;
}

@media screen and (max-width: 767px) {
  .cover__profile {
    right: 5px;
    bottom: 5px;
    letter-spacing: .1rem;
  }
}

.cover__profile .profile-name {
  padding-bottom: 6px;
}

.cover__profile .p-txtl {
  font-size: 1.2rem;
  letter-spacing: .25rem;
}

.cover__profile .p-txtm {
  font-size: 0.85rem;
}

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

導入

-------------------------------*/
.intro__content {
  height: 605px;
  margin: 87px 0;
  background-image: url(../img/lawyer02.png);
  background-position: right;
  background-repeat: no-repeat;
  border: 1px solid #bbbbbb;
  border-left: 8px solid #8c0000;
}

@media screen and (max-width: 1024px) {
  .intro__content {
    background-position: right -120px bottom 0px;
  }
}

@media screen and (max-width: 767px) {
  .intro__content {
    height: auto;
    background-image: none;
    background-size: 100%;
    background-position: right 0px bottom 0px;
    border: none;
    margin: 50px 0;
  }
}

.intro__desc {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding: 0 0 0 35px;
}

@media screen and (max-width: 1024px) {
  .intro__desc {
    padding-left: 3%;
  }
}

@media screen and (max-width: 767px) {
  .intro__desc {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-left: 0;
  }
}

.intro__title {
  font-family: "Hiragino Mincho Pro", "Yu Mincho", serif;
  font-size: 1.5rem;
  line-height: 1.8;
  padding-top: 118px;
  padding-bottom: 70px;
}

.intro__title::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.8) * .5em);
  content: "";
}

.intro__title::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.8) * .5em);
  content: "";
}

@media screen and (max-width: 1024px) {
  .intro__title {
    padding-top: 50px;
    padding-bottom: 30px;
  }
}

@media screen and (max-width: 767px) {
  .intro__title {
    width: auto;
    padding-top: 0px;
    padding-bottom: 50px;
    font-size: 1.3rem;
  }
}

.intro__txt {
  max-width: 530px;
  font-size: 17px;
  line-height: 1.8;
}

.intro__txt::before {
  display: block;
  width: 0;
  height: 0;
  margin-top: calc((1 - 1.8) * .5em);
  content: "";
}

.intro__txt::after {
  display: block;
  width: 0;
  height: 0;
  margin-bottom: calc((1 - 1.8) * .5em);
  content: "";
}

@media screen and (max-width: 1024px) {
  .intro__txt {
    width: 65%;
  }
}

@media screen and (max-width: 767px) {
  .intro__txt {
    width: 100%;
  }
}

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

お問い合わせエリア

-------------------------------*/
.contact {
  background-color: #8c0000;
}

.contact__wrapper {
  width: 100%;
  padding: 55px 0 40px;
}

.contact__content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  background-color: white;
  padding: 0 28px 0 50px;
}

@media screen and (max-width: 1024px) {
  .contact__content {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: reverse;
        -ms-flex-direction: column-reverse;
            flex-direction: column-reverse;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 0 20px;
  }
}

.contact__desc {
  padding: 46px 0 30px;
  text-align: center;
  font-family: serif;
  width: 66%;
}

@media screen and (max-width: 767px) {
  .contact__desc {
    width: 100%;
    padding: 20px 0 30px;
  }
}

.contact__lead {
  padding-bottom: 10px;
}

.contact__lead .sp-br {
  display: none;
}

@media screen and (max-width: 767px) {
  .contact__lead .sp-br {
    display: block;
  }
}

.contact__lead p:nth-child(1) {
  padding-bottom: 25px;
}

@media screen and (max-width: 1024px) {
  .contact__lead p:nth-child(1) {
    padding-bottom: 10px;
  }
}

.contact__lead p:nth-child(2) {
  padding-bottom: 20px;
}

.contact__lead--txtl {
  font-size: 24px;
  font-size: 1.5rem;
  font-weight: 600;
}

.contact__lead--gold {
  color: #c6a434;
  font-size: 37px;
  font-size: 2.3125rem;
  font-weight: 600;
  letter-spacing: .1rem;
}

@media screen and (max-width: 767px) {
  .contact__lead--gold {
    font-size: 2rem;
  }
}

.contact__lead--red {
  border: 1px solid #d91812;
  color: #d91812;
  line-height: 1.2;
  padding: 5px;
}

.contact__info {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  text-align: right;
}

@media screen and (max-width: 1024px) {
  .contact__info {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 25px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.contact__info .tel-number {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1024px) {
  .contact__info .tel-number {
    padding-bottom: 20px;
  }
}

.contact__info .tel-number .phone-icon {
  margin-left: 4px;
  margin-right: 10px;
  width: 75px;
  height: 100%;
}

@media screen and (max-width: 1024px) {
  .contact__info .tel-number .phone-icon {
    margin-left: 0;
  }
}

@media screen and (max-width: 767px) {
  .contact__info .tel-number .phone-icon {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 50px;
  }
}

.contact__img {
  padding-top: 13px;
}

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

よくある相談内容

-------------------------------*/
.example__title {
  padding: 86px 0;
  font-family: "Hiragino Mincho Pro", "Yu Mincho", serif;
  font-weight: 600;
  font-size: 2.1rem;
  letter-spacing: .1rem;
}

.example__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-bottom: 98px;
}

@media screen and (max-width: 1024px) {
  .example__items {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.example__item {
  width: 49%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

@media screen and (max-width: 1024px) {
  .example__item {
    width: 100%;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .example__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100%;
  }
}

.example__item:not(:last-child) {
  padding-bottom: 45px;
}

.example__item-title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 182px;
  height: 163px;
  border: 1px solid #8c0000;
  border-left: 7px solid #8c0000;
  margin-right: 13px;
  font-size: 25px;
  font-size: 1.5625rem;
  font-family: serif;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .example__item-title {
    margin-bottom: 20px;
  }
}

.example__item-desc {
  width: 60%;
  line-height: 1.8;
}

@media screen and (max-width: 767px) {
  .example__item-desc {
    width: 100%;
  }
}

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

feature area

-------------------------------*/
.feature {
  background-image: url(../img/bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  background-color: #555555;
  position: relative;
  padding: 77px 0 33px;
}

.feature__title {
  font-family: 'Osaka', sans-serif;
  font-weight: 300;
  padding-bottom: 54px;
  color: white;
  font-size: 2.1rem;
}

.feature__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.feature__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-left: 8px solid #8c0000;
  background-color: #ffffff;
  padding: 50px 37px;
  margin-bottom: 35px;
  height: 280px;
}

@media screen and (max-width: 1024px) {
  .feature__item {
    height: auto;
  }
}

@media screen and (max-width: 767px) {
  .feature__item {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.feature__item-title {
  font-size: 1.45rem;
  color: #8c0000;
  padding-bottom: 25px;
}

.feature__txt {
  line-height: 1.8;
  padding-right: 22px;
  word-break: break-all;
}

@media screen and (max-width: 767px) {
  .feature__txt {
    padding-right: 0;
  }
}

.feature img {
  width: 230px;
  height: 168px;
  -o-object-fit: cover;
     object-fit: cover;
}

@media screen and (max-width: 767px) {
  .feature img {
    padding-bottom: 30px;
  }
}

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

解決事例＆コラム

-------------------------------*/
.blog-area__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding-top: 124px;
  padding-bottom: 83px;
}

@media screen and (max-width: 767px) {
  .blog-area__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-top: 50px;
    padding-bottom: 0;
  }
}

.blog {
  width: 49%;
  border: 1px solid #808080;
  border-top: 10px solid #8c0000;
  padding: 32px 2.5% 20px;
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  .blog {
    width: 100%;
    margin-bottom: 50px;
  }
}

.blog__title {
  line-height: 1.2;
  font-size: 23px;
  font-weight: 300;
  padding-bottom: 5px;
}

.blog-articles {
  margin-bottom: 25px;
}

.blog-article {
  border-top: 1px solid #dddddd;
  height: auto;
}

.blog-area article:last-child {
  border-bottom: 1px solid #dddddd;
}

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

解決事例

-------------------------------*/
.case__items {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}

.case__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: relative;
  padding-top: 50px;
  font-family: serif;
}

@media screen and (max-width: 1024px) {
  .case__item {
    padding-top: 20px;
  }
}

.case__heading {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  text-align: center;
  line-height: 1.8;
  font-weight: 600;
  margin-right: 15px;
  background: #999999;
  width: 106px;
  height: 100px;
  color: white;
  font-family: "Hiragino Mincho Pro", "Yu Mincho", serif;
}

@media screen and (max-width: 767px) {
  .case__heading {
    font-size: .8rem;
    margin-right: 10px;
  }
}

.case__txt-area {
  width: 75%;
	padding-bottom: 50px;
}

.case__article-title {
  font-size: 1.12rem;
  text-align: left;
  border-bottom: 2px solid #adadad;
}

.case__article-txt {
  line-height: 1.5;
}

.case__date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  position: absolute;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  right: 7px;
  bottom: 10px;
  font-size: .8rem;
  color: #666666;
}

.case__label {
  color: #344568;
  border: 1px solid #344568;
  margin-right: 10px;
  font-size: .8rem;
  padding: 5px 7px;
}

.case__label a{
	margin: 0 5px;
}

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

コラム

-------------------------------*/
.column__item {
  position: relative;
  text-align: left;
  padding: 32px 10px 35px;
}

@media screen and (max-width: 1024px) {
  .column__item {
    padding-top: 10px;
  }
}

.column__label {
  display: inline;
  top: 34px;
  left: 10px;
  background: #cfba79;
  color: white;
  font-size: .8rem;
  padding: 4px 8px;
  font-family: "Hiragino Mincho Pro", "Yu Mincho", serif;
}

.column__label a{
  color: white;
	margin: 0 5px;
}

.column__article-title {
  padding-top: 18px;
  font-size: 1.12rem;
  text-align: left;
  letter-spacing: .05rem;
  line-height: 1.5rem;
}

@media screen and (max-width: 767px) {
  .column__article-title {
    padding-top: 10px;
  }
}

.column__article-txt {
  font-family: "Hiragino Mincho Pro", "Yu Mincho", serif;
  line-height: 1.5;
}

.column__date {
  position: absolute;
  right: 7px;
  bottom: 10px;
  font-size: .8rem;
  font-family: "Hiragino Mincho Pro", "Yu Mincho", serif;
  color: #666666;
}

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

Google Map

-------------------------------*/
.google-map iframe {
  width: 100%;
  height: 486px;
}

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

アクセス

-------------------------------*/
.access__wrapper {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-family: "Hiragino Mincho Pro", "Yu Mincho", serif;
  padding: 28px 0;
}

@media screen and (max-width: 767px) {
  .access__wrapper {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
  }
}

@media screen and (max-width: 767px) {
  .access__info-left {
    padding-bottom: 15px;
  }
}

.access__info-left .access__logo {
  font-size: 2rem;
  letter-spacing: .26rem;
  padding-bottom: 10px;
  font-weight: 600;
}

@media screen and (max-width: 1024px) {
  .access__info-left .access__logo {
    font-size: 1.8rem;
  }
}

.access__info-left .access__address {
  font-size: 1.06rem;
}

@media screen and (max-width: 1024px) {
  .access__info-left .access__address {
    font-size: 1rem;
  }
}

@media screen and (max-width: 767px) {
  .access__info-left .access__address {
    text-align: center;
  }
}

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

フッター

-------------------------------*/
.footer {
  background-color: #999999;
  color: white;
}

.footer__menus {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 35px 0 44px;
}

@media screen and (max-width: 767px) {
  .footer__menus {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}

.footer-menu {
  font-family: "Hiragino Mincho Pro", "Yu Mincho", serif;
}

@media screen and (max-width: 767px) {
  .footer-menu {
    margin-bottom: 30px;
  }
}

.footer-menu h3 {
  display: inline-block;
  border-bottom: 1px solid white;
  margin-bottom: 12px;
}

.footer-menu li {
  font-size: .93rem;
}

.footer-menu li:not(:last-child) {
  padding-bottom: 10px;
}

.menu1 {
  font-family: "Hiragino Kaku Gothic Pro", "Yu Gothic", sans-serif;
}

.menu4 {
  margin-bottom: 20px;
}

.menu-center-left,
.menu-center-right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

@media screen and (max-width: 1024px) {
  .menu-left,
  .menu-center-left,
  .menu-center-right {
    padding-right: 15px;
  }
}

.footer-copyright {
  background: #8c0000;
}

.footer-copyright p {
  font-family: "Hiragino Mincho Pro", "Yu Mincho", serif;
  color: white;
  text-align: center;
  font-size: .8rem;
  padding: 10px 0;
}

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

テキスト

-------------------------------*/
.gold {
  color: #b28500;
}

.contact__info--gold {
  color: #c6a434;
  font-size: 37px;
  font-size: 2.3125rem;
  letter-spacing: .1rem;
  font-weight: 600;
}

@media screen and (max-width: 767px) {
  .contact__info--gold {
    font-size: 1.5rem;
  }
}

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

buttons

-------------------------------*/
.email-btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 9px 7px;
  background: #555555;
  font-size: 0.8rem;
  color: white;
  text-align: left;
}

.email-btn img {
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  .email-btn {
    -webkit-box-pack: space-evenly;
        -ms-flex-pack: space-evenly;
            justify-content: space-evenly;
    width: 100%;
    font-size: 1.2rem;
  }
}

.email-btn--lg {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 7px 10px;
  background: #555555;
  font-size: 1.37rem;
  color: white;
  text-align: left;
  font-weight: 600;
}

@media screen and (max-width: 1024px) {
  .email-btn--lg {
    font-size: 1rem;
  }
}

.email-btn--lg img {
  width: 56px;
  margin-right: 27px;
}

.blog-btn {
  display: inline-block;
  font-size: 1.4rem;
  text-align: center;
  width: 100%;
  padding: 22px 0;
  color: white;
  background: #999999;
  margin: 0 auto;
}

.blog-btn--gold {
  background-color: #cfba79;
}

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

お問い合わせ

-------------------------------*/
.contact-group {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}

@media screen and (max-width: 767px) {
  .contact-group {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.contact-group__price {
  text-align: center;
  margin-right: 10px;
}

@media screen and (max-width: 767px) {
  .contact-group__price {
    margin-bottom: 15px;
  }
}

.contact-group__price .red {
  font-size: 2.37rem;
  color: #fd1000;
  font-weight: 600;
}

.contact-group__price p {
  font-size: 0.75rem;
}

.contact-group__tel {
  margin-right: 10px;
  text-align: right;
}

@media screen and (max-width: 767px) {
  .contact-group__tel {
    margin-bottom: 15px;
  }
}

.contact-group__tel .tel {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 25px;
  letter-spacing: 0.05rem;
  font-weight: 600;
}

.contact-group__tel .tel img {
  margin-right: 5px;
}

.contact-group__tel .contact-group__time {
  font-size: .8rem;
}

.contact-group__mail p {
  padding-left: 10px;
  font-size: 0.8rem;
  color: white;
}

@media screen and (max-width: 767px) {
  .header__contact-group {
    display: none;
  }
}

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

チェックリスト

-------------------------------*/
.checklist {
  padding-left: 22px;
  padding-bottom: 75px;
}

@media screen and (max-width: 767px) {
  .checklist {
    padding-left: 0;
  }
}

.checklist > li {
  position: relative;
  padding: 0px 0px 0px 35px;
  margin: 0px;
  font-size: 1.4rem;
  letter-spacing: .2rem;
}

@media screen and (max-width: 767px) {
  .checklist > li {
    color: #ffffff;
    text-shadow: rgba(0, 0, 0, 0.5) 1px 1px 1px;
    font-size: 1.1rem;
  }
}

.checklist > li::before,
.checklist > li::after {
  position: absolute;
  top: 50%;
  height: 18px;
  content: "";
}

.checklist > li::before {
  left: 2px;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 18px;
  border: 1px solid #d9a300;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 1px;
          box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 1px;
}

.checklist > li::after {
  left: 0.5em;
  -webkit-transform: translateY(-75%) rotate(45deg);
          transform: translateY(-75%) rotate(45deg);
  width: 0.5em;
  border-bottom: 3px solid #d9a300;
  border-right: 3px solid #d9a300;
  -webkit-box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 1px;
          box-shadow: rgba(0, 0, 0, 0.1) 1px 1px 1px;
}

.checklist > li + li {
  margin: 33px 0px 0px;
}

@media screen and (max-width: 767px) {
  .checklist > li + li {
    margin: 20px 0px 0px;
  }
}

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

ハンバーガーメニュー

-------------------------------*/
.humburger-btn {
  display: none;
  position: relative;
  width: 32px;
  height: 64px;
  cursor: pointer;
}

@media screen and (max-width: 767px) {
  .humburger-btn {
    display: block;
  }
}

.humburger-btn .bar {
  position: absolute;
  left: 0;
  display: block;
  width: 32px;
  height: 1px;
  background: #333333;
}

.humburger-btn .bar_top {
  top: calc(50% - 8px);
}

.humburger-btn .bar_mid {
  top: 50%;
}

.humburger-btn .bar_bottom {
  top: calc(50% + 8px);
}
/*# sourceMappingURL=style.css.map */