@charset "utf-8";
@import url(‘https://fonts.googleapis.com/css?family=Noto+Sans+JP&subset=japanese’);

html {
  scroll-behavior: smooth;
}
body {
  margin: auto;
  /* width: 750px; */
  font-family: ‘Hiragino Kaku Gothic Pro’, ‘Noto Sans JP’, sans-serif;
  font-size: 4.2656vw;
  color: #333;
}

/*------------------------------
 ▼共通デザイン（モバイル向け）
 -------------------------------*/
/*** ボタン全体 ***/
.menu-btn {
  float: right;
  display: block;
  position: relative; /*線の起点*/
  width: 50px; /*ボタンの幅*/
  height: 50px; /*ボタンの高さ*/
  cursor: pointer; /*クリック可能を伝える*/
  z-index: 100; /*最前面*/
}

a {
  cursor: pointer;
}

header {
  width: 100%;
  position: fixed;
  z-index: 99;
}

/*** ボタンの三本線（共通） ***/
.menu-btn span {
  position: absolute;
  width: 40%; /*線の長さ*/
  height: 2px; /*線の太さ*/
  left: calc(50% - 40% / 2); /*中央から長さの半分を引く*/
  background: #000; /*線の色*/
  transition: 0.4s;
}

/* 順に上・中・下の線 */
.top-bar {
  top: calc(35% - 2px / 2); /*上から35%の位置*/
}
.center-bar {
  top: calc(50% - 2px / 2); /*上から50%の位置*/
}
.under-bar {
  top: calc(65% - 2px / 2); /*上から65%の位置*/
}

/** クリック後(✔が入った後)の線 **/
/*上の線*/
#open:checked ~ .menu-btn > .top-bar {
  top: calc(50% - 2px / 2); /*中央*/
  transform: rotate(45deg); /*45度回転*/
}
/*中の線*/
#open:checked ~ .menu-btn > .center-bar {
  opacity: 0; /*真ん中の線は透過*/
}
/*下の線*/
#open:checked ~ .menu-btn > .under-bar {
  top: calc(50% - 2px / 2); /*中央*/
  transform: rotate(-45deg); /*-45度回転*/
}

/*** チェックボックスは非表示に ***/
#open {
  display: none;
}

/*** メニュー内容 ***/
.inner-menu {
  position: fixed; /*画面固定*/
  top: 0;
  left: 0;
  width: 100vw; /*全画面*/
  height: 100vh;
  box-sizing: border-box;
  padding: 50px 60px; /*ボタンと被らない位には*/
  background: #eee; /*背景*/
  opacity: 0; /*透明*/
  visibility: hidden; /*標準で非表示*/
  transition: 0.5s;
  z-index: 99; /*ボタンより背面(小さい値)*/
  overflow-y: scroll; /*スクロール可*/
  text-align: center;
}
/*リスト*/
.inner-menu ul {
  list-style: none; /*丸を消す*/
  padding-left: 0;
}
/*リンク*/
.inner-menu a {
  color: inherit;
  text-decoration: none;
}

/*** クリックで(✔が入ったら)メニューを表示 ***/
#open:checked ~ .inner-menu {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

/***サンプル装飾用***/
body {
  background: none;
}

/* p {
  padding: .5rem;
} */

div.section-inner {
  width: 90%;
  margin: auto;
}

/* mainここから */
main {
  width: 100%;
}

/* headerここから */
.header-bar-inner {
  display: none;
}
/* section-topここから */

.section-top,
.footer {
  background-image: url(../grande_img/jpeg/top_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
}

.section-top {
  margin-bottom: 20px;
}

.top-logo {
  padding-top: 10vh;
  width: 30vw;
  margin: auto;
  margin-bottom: 5vh;
}

/* font-size24px,line-height50px共通 */
.top-headline,
.worries-list li,
.maintenance-part-sentence,
p.worries-guidance-sentence-beside,
.section-example-title,
.guide-sentence,
.section-mail_form h3,
.copyright,
p.section-maintenance-sentence {
  /* width: 100%; */
  margin: auto;
  font-size: 0.8rem;
  line-height: 24px;
}

.top-headline {
  font-size: 0.8em;
  position: relative;
  z-index: 2;
  text-align: center;
  margin-bottom: -45px;
  line-height: 1.9;
}

/* section-topここまで */

/* キービジュアルここから */
.keyvisual {
  width: 80vw;
  margin: 3vh auto;
}
/* .keyvisual-photo {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
} */

/* section-recruitmentここから */
.section-recruitment .section-inner {
  text-align: center;
}

.section-recruitment h2 {
  margin-bottom: 40px;
  font-size: 38px;
  font-weight: 600;
  transform: skewX(-12deg);
  text-decoration: underline;
  text-decoration-thickness: 20px;
  text-decoration-color: rgba(230, 199, 78, 1);
  text-underline-offset: -12px;
  text-decoration-skip-ink: none;
}

.section-recruitment p {
  margin-bottom: 30px;
}

/* ボタン共通 */
.inquiry-btn {
  width: 80%;
  padding: 10px;
  background-color: #603813;
  margin: auto;
}

.inquiry-btn a {
  font-size: 1.2em;
  color: #ffffff;
}

.section-recruitment {
  margin-bottom: 40px;
}

/* section-newsここから */
.section-news {
  margin-bottom: 60px;
}

.section-news h2 {
  margin: auto;
  padding-bottom: 55px;
  width: 30vw;
}

#newsWrap {
  margin: -75px auto 0;
  padding-top: 45px;
  max-width: 613px;
  /* width: 100%; */
  border: 10px solid #e2dad2;
  border-radius: 35px;
}
/* section-newsここまで */

/* section-snsここから */
.section-sns {
  text-align: center;
  margin-bottom: 60px;
}

.sns-title {
  width: 60vw;
  margin: 0 auto 30px;
}

.sns-icon {
  width: 20vw;
  margin: 0 auto 20px;
}

/* .sns-title-instagram {
} */

/* section-snsここまで */

/* section-worriesここから */
.section-worries {
  background: linear-gradient(
    180deg,
    #fff9e8 0%,
    #fff9e8 87.5%,
    #ffffff 87.5%,
    #ffffff 100%
  );
}

/* @media screen and (max-width: 280px) {
  .section-worries {
    background: linear-gradient(
      180deg,
      #fff9e8 0%,
      #fff9e8 40%,
      #ffffff 40%,
      #ffffff 100%
    );
  }
} */

.worries-illust {
  text-align: center;
  margin-bottom: 45px;
}

.worries-list {
  max-width: 665px;
  margin: 0 auto;
  padding-bottom: 5px;
}

.worries-list li {
  font-size: 0.7em;
  background-color: #fff;
  line-height: 2.5em;
  padding: 0 10px;
  margin-bottom: 15px;
  border-radius: 40px;
  border: 2px dashed #e2dad2;
}

.section-worries-bg {
  padding-top: 50px;
  background-color: #e8eeff;
}

.section-worries-arrow {
  height: 75px;
  border-left: 49vw solid transparent;
  border-right: 49vw solid transparent;
  border-top: 5vh solid #e8eeff;
  /* border-bottom: 66px solid transparent; */
}

.worries-guidance {
  margin: auto;
  padding-bottom: 35px;
  width: 88%;
}

.worries-guidance-headline {
  width: 250px;
  border-bottom: solid 5px;
  display: flex;
  margin: 0 auto 30px;
}

.worries-guidance-headline h2 {
  font-size: 26px;
  line-height: 30px;
  padding-top: 5px;
  padding-left: 8px;
}

.worries-guidance-headline div.grande-logo {
  width: 50px;
}

div.worries-guidance-sentence {
  display: flex;
  margin-bottom: 40px;
}

p.worries-guidance-sentence-vertical {
  font-size: 32px;
  font-family: "ヒラギノ明朝 ProN W6", "HiraMinProN-W6", "HG明朝E",
    "ＭＳ Ｐ明朝", "MS PMincho", "MS 明朝", serif;
  writing-mode: vertical-rl;
  height: fit-content;
  padding-bottom: 15px;
  line-height: 35px;
  border-right: solid 3px;
  padding-right: 10px;
}

p.worries-guidance-sentence-beside {
  display: inline;
  padding: 0 0 0 10px;
}

.worries-president-box {
  display: flex;
  justify-content: space-between;
}

.worries-president-img {
  display: flex;
}

.worries-president-img01 {
  width: 50vw;
  /* max-width: 200px;
  width: 60vw;
  position: absolute;
  top: 0;
  left: 0; */
}

.worries-president-img02 {
  /* max-width: 110px;
  width: 100px;
  position: absolute;
 
  bottom: 8%;
  right: 22%; */
  width: 25vw;
  margin: 100px 0 0 -40px;
}

.worries-president-img02 > img {
  border-radius: 5%;
}

.worries-president-vertical {
  /* position: absolute;
  top: 0;
  right: 0; */
  writing-mode: vertical-rl;
  line-height: 20px;
}

.worries-company-name,
.worries-president-name {
  padding: unset;
}

.worries-company-name {
  font-size: 0.7em;
  font-weight: 600;
}

.worries-president-name {
  display: inline-block;
  font-size: 0.7em;
  padding: 75px 5px 0;
  border-right: solid 3px;
  font-weight: 600;
}

.worries-president-name span {
  font-size: 21px;
}

/* .worries-strength {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
} */

.strength-list-img {
  margin-bottom: 30px;
}

.worries_contact {
  margin: 30px auto 0;
  text-align: center;
  padding-bottom: 30px;
}

h3.responsiveness,
h3.text-right {
  font-size: 48px;
  font-weight: 600;
  transform: skewX(-12deg);
  text-decoration: underline;
  /* text-decoration-thickness: unset; */
  text-decoration-thickness: 4lvh;
  text-decoration-color: rgba(230, 199, 78, 1);
  text-underline-offset: -20px;
  text-decoration-skip-ink: none;
  /* line-height: 70px; */
}

h3.responsiveness{
  text-align: left;
}

h3.text-right{
  text-align: -webkit-right;
  margin-bottom: 30px;
}

/* 低予算の提案　素早い対応 */
h3.budget-proposal,
h3.budget-proposal2,
h3.correspondence,
h3.correspondence2 {
  width: 85%;
  margin: auto;
  /* margin-bottom: 10px; */
}

h3.community-based,
h3.community-based2 {
  width: 75%;
  margin: 20px auto 30px;
  line-height: 30px;
}

h3.community-based2{
  margin-top: -20px;
}

.worries-strength-list p {
  margin-bottom: 20px;
  line-height: 24px;
}

.worries-strength-list p span {
  color: #ff0000;
}

.section-strengths h3.budget-proposal span.no {
  font-size: 2rem;
}

/* span class="no"以外の要素 */
/* .section-strengths h3 span:not(.no) {
  display: block;
  text-align: right;
} */

.maintenance-headline .worries_contact {
  text-align: center;
}

.worries_btn {
  color: #fff;
  font-size: 1.2em;
  width: 80%;
  padding: 10px;
  background-color: #603813;
}

/* section-worriesここまで */

/* section-maintenanceここから */

.section-maintenance-bg {
  background-image: url(../grande_img/jpeg/maintenance_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  margin-bottom: 40px;
  /* background-color で白色を rgba で指定、透過の値を 1 以下に指定して透過。
最後に background-blend-mode で lighten を指定して、背景画像と背景色を混合 */
  background-color: rgba(255, 255, 255, 0.7);
  background-blend-mode: lighten;
  padding-bottom: 50px;
}

/* 文字色#603813共通 */

p.section-maintenance-sentence,
.maintenance-part-list p,
.section-maintenance p.mentenance-headsup-02 {
  color: #603813;
  font-weight: 600;
}

.maintenance-headline {
  text-align: center;
  font-size: 1.5rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.maintenance-headline span {
  font-size: 1.2rem;
  background-color: #603813;
  color: #fff;
  padding: 5px 20px;
  margin-right: 5px;
}

.section-maintenance p.mentenance-headsup {
  transform: skewX(-12deg);
  margin-left: 5%;
  text-align: left;
  font-size: 2rem;
  font-weight: 600;
  line-height: 35px;
  margin-bottom: 10px;
}

p.mentenance-headsup {
  padding: 20px 0 0 0;
}

p.mentenance-headsup span {
  margin-left: -5px;
  color: #ff0000;
  text-decoration: underline;
  text-decoration-thickness: 10px;
  text-decoration-color: rgba(227, 196, 78, 0.4);
  text-underline-offset: -5px;
  text-decoration-skip-ink: none;
}

.maintenance-part-name p {
  padding: 0;
}

.mentenance-headsup-btn {
  text-align: center;
  font-size: unset 42px;
  line-height: 73.5px;
}

.mentenance-headsup-btn {
  font-size: 1.2rem;
  width: 80%;
  padding: 10px;
  color: #fff;
  background-color: #603813;
  display: block;
  margin: 0 auto;
  text-align: center;
  line-height: 30px;
}

.maintenance-part-box {
  display: flex;
  justify-content: space-between;
}

.maintenance-part-list {
  background-color: #ffffff;
  margin-bottom: 50px;
}

/* 最後から数えて1番目 */
.maintenance-part-list:nth-last-child(1) {
  margin-bottom: 40px;
}

.maintenance-part-name {
  /* display: flex; */
  /* align-items: center; */
  /* flex-direction: column; */
  text-align: center;
  /* width: 30%; */
}

.maintenance-part-name > p > span {
  padding: 10px;
  width: 21vw;
  display: flex;
  align-items: center;
}

.maintenance-part-name span.shizuku {
  /* display: flex;
  align-items: center; */
  width: 12vw;
  margin: auto;
}

.maintenance-part-name p {
  /* display: flex; */
  /* writing-mode: vertical-rl;
  -webkit-writing-mode: vertical-rl;
  -ms-writing-mode: vertical-rl; */
  /* align-items: center; */
  line-height: 70px;
  font-size: 16vw;
  font-weight: bold;
  /* width: 100%; */
}

.maintenance-part-photo {
  width: 70vw;
  margin-bottom: 20px;
}

.section-maintenance p.mentenance-headsup-02 {
  text-align: center;
  font-size: 1.2rem;
  line-height: 35px;
}

/* section-maintenanceここまで */

/* 施工事例ここから */
.section-example {
  position: relative;
  margin: 0 auto 120px;
  /* width: 80%; */
  background-color: #fff;
  padding-top: 65px;
}

.section-example > div.section-inner {
  position: relative;
  /* height: 1800px; */
}

.example-bg,
.section-individual {
  background-image: url(../grande_img/jpeg/renovation_bg02.jpg);
  /* 
   */
}

.individual01 {
  padding-top: 30px;
}

.individual01 h2 {
  display: flex;
  font-size: 24px;
  margin-bottom: 10px;
  justify-content: center;
}

.individual01 h2 div {
  display: inline-block;
  width: 30px;
}

.individual02 h3 {
  color: #466441;
  font-size: 24px;
}

.example_bg_logo01 {
  position: absolute;
  z-index: 1;
  width: 100px;
  margin-left: -15px;
}

.example_bg_logo02 {
  text-align: right;
  position: absolute;
  bottom: -70px;
  right: -10px;
}

.example_bg_logo02 > img {
  width: 60%;
  margin-right: 10px;
}

.example-title-box {
  text-align: center;
}

.example-title-box h2 {
  padding-top: 50px;
  margin: 0 auto 20px;
  max-width: 492px;
  width: 70vw;
}

.section-example-title {
  margin-bottom: 30px;
  text-align: center;
}

.example-list-title {
  position: absolute;
  right: 15px;
  font-weight: 600;
  background-color: #fff;
  writing-mode: vertical-rl;
  padding: 20px 0 20px 0;
  font-size: 1.2rem;
  text-align: center;
  margin-bottom: 10px;
}

.guide {
  max-width: 650px;
  margin: 0 auto 50px;
  padding-bottom: 30px;
}

.example {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  top: 50px;
}

.example-list:nth-child(even) {
  padding-top: 70px;
}

.example-list {
  position: relative;
  width: 40%;
  max-width: 160px;
  /* height: 70vh; */
  margin-bottom: 50px;
}

.example-img {
  box-shadow: 8px 8px 0 0 rgb(195, 185, 185);
  border-radius: 15px;
}

.example01 {
  background-image: url(../IMG/illustrator_jpg/example_img/example_img01.jpg);
  background-position: 43%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
}

.example02 {
  background-image: url(../IMG/illustrator_jpg/example_img/example_img02.jpg);
  background-position: 25%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
}
.example03 {
  background-image: url(../IMG/illustrator_jpg/example_img/example_img03.jpg);
  background-position: 38%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
}
.example04 {
  background-image: url(../IMG/illustrator_jpg/example_img/example_img04.jpg);
  background-position: 25% -5%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
}
.example05 {
  background-image: url(../IMG/illustrator_jpg/example_img/example_img05.jpg);
  background-position: 37%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
}
.example06 {
  background-image: url(../IMG/illustrator_jpg/example_img/example_img06.jpg);
  background-position: 40%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
}
.example07 {
  background-image: url(../IMG/illustrator_jpg/example_img/example_img07.jpg);
  background-position: 45%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
}
.example08 {
  background-image: url(../IMG/illustrator_jpg/example_img/example_img08.jpg);
  background-position: 54%;
  background-repeat: no-repeat;
  background-size: cover;
  height: 400px;
}

/* 施工事例ここまで */

/* コンタクトフォームここから */
.section-mail_form-title,
.section-mail_form form p,
select {
  color: #606060;
}

.section-mail_form {
  text-align: center;
  background-color: rgba(217, 209, 201, 0.2);
}

.section-mail_form-title,
.section-mail_form form p {
  font-size: 1rem;
  font-weight: 600;
  line-height: 30px;
}

.section-mail_form-title {
  font-weight: 600;
  padding-top: 20px;
  margin-bottom: 20px;
}

.section-mail_form h3 {
  font-size: 12px;
  margin-bottom: 15px;
}

/* mailフォーム共通 */
select,
textarea,
input {
  max-width: 563px;
  width: 100%;
  background-color: #ffffff;
  border: solid #606060 1px;
  border-radius: 5px;
  line-height: 30px;
}

textarea {
  line-height: 21px;
  height: 200px;
}

select {
  font-weight: 600;
  text-align: center;
  margin-bottom: 30px;
  -webkit-appearance: none;
  appearance: none; /* デフォルトの矢印を非表示 */
}

select::-ms-expand {
  display: none; /* デフォルトの矢印を非表示(IE用) */
}

/* セレクトボックスの矢印 */
.select-container {
  margin: auto;
  max-width: 563px;
  position: relative;
}

.select-container::after {
  border-left: 2px solid transparent;
  border-top: 2px solid transparent;
  border-right: 1.5px solid #606060;
  border-bottom: 1.5px solid #606060;
  content: "";
  position: absolute;
  right: 10%;
  top: 31%;
  width: 10px;
  height: 10px;
  transform: rotate(45deg);
}

textarea {
  text-align: left;
  margin-bottom: 60px;
}

.surname,
.given-name {
  text-align: left;
  padding-left: 10px;
}

.surname {
  margin-bottom: 10px;
}

.given-name {
  margin-bottom: 30px;
}

.email-address {
  margin-bottom: 60px;
}

.mail_form-btn {
  font-size: 1.2rem;
  width: 270px;
  color: #fff;
  background-color: #603813;
  display: block;
  margin: 0 auto;
  text-align: center;
}

form {
  padding-bottom: 30px;
}

.mail_form-btn a p {
  color: #ffffff;
  line-height: 50px;
}

/* コンタクトフォームここまで */

/* フッターここから */

.footer-logo {
  padding-top: 118px;
  margin-bottom: 30px;
  width: 30vw;
  margin: 0 auto 20px;
}

.company-info {
  text-align: center;
  margin-bottom: 80px;
}

.footer-bar {
  display: none;
}

.copyright {
  font-family: kozuka-gothic-pr6n, sans-serif;
  font-style: normal;
  font-weight: 200;
  text-align: center;
  color: #fff;
  background-color: #828282;
  padding: 5px 0;
  /* width: 100vw; */
}

/* -------------------------------
　▼スマホ横向きのデザイン 
　-------------------------------*/
@media screen and (orientation: landscape) and (max-width: 767px) {
  .top-headline {
    width: 100%;
  }

  .section-recruitment h2 {
    font-size: 180%;
  }

  #newsWrap {
    width: 60vw;
  }

  .worries-list li {
    width: 100%;
    font-size: 0.6em;
  }

  .section-worries-arrow {
    height: 100px;
    border-top: 15vh solid #e8eeff;
  }
  .worries-guidance-headline {
    width: 350px;
  }

  .worries-guidance-headline div.grande-logo {
    width: 70px;
  }
  .worries-guidance-headline h2 {
    font-size: 35px;
    line-height: 48px;
  }
  div.worries-guidance-sentence {
    width: 80%;
    margin: auto;
  }

  .worries-president-vertical {
    line-height: 30px;
  }

  section-worries {
    background: linear-gradient(
      180deg,
      #fff9e8 0%,
      #fff9e8 32.5%,
      #ffffff 32.5%,
      #ffffff 100%
    );
  }

  .worries-president-img01 {
    max-width: 280px;
  }

  .worries-president-img02 {
    max-width: 160px;
    width: 35%;
    bottom: 20%;
    right: 18%;
  }

  .worries-president-box {
    height: 90vh;
    margin: 50px auto 0;
    width: 80%;
  }

  .worries-president-name span {
    font-size: 32px;
  }

  .worries-strength {
    width: 80%;
    margin: auto;
  }

  .worries-strength-list h3 {
    font-size: 2.2em;
  }

  .worries-strength-list p {
    line-height: 30px;
    font-size: 0.8em;
  }

  .worries_btn {
    color: #fff;
    font-size: 0.8em;
    width: 470px;
    height: 70px;
    background-color: #603813;
  }

  .section-maintenance p.mentenance-headsup {
    width: 330px;
    margin: 0 auto 20px;
  }

  p.section-maintenance-sentence {
    width: 100%;
  }

  .maintenance-part-photo {
    width: 40vw;
  }

  .maintenance-part-name p {
    font-size: 10vw;
  }

  .maintenance-part-box {
    display: flex;
    justify-content: center;
  }

  .maintenance-part-list {
    width: 100%;
    margin: auto;
  }

  .maintenance-part-list > p {
    width: 80%;
    margin-bottom: 50px;
  }

  .guide-title {
    font-size: 24px;
  }

  select {
    font-size: 0.8em;
  }
  .select-container,
  textarea,
  .surname,
  .given-name,
  .email-address {
    font-size: 1.2rem;
  }
}
/*-------------------------------
 ▼大型画面向けデザイン（PCなど）
 --------------------------------*/
@media screen and (min-width: 750px) {
  /* body {
   
  } */

  header {
    padding-top: 50px;
    background: linear-gradient(
      180deg,
      rgba(255, 255, 255, 1) 0%,
      rgba(255, 255, 255, 1) 50%,
      rgba(227, 219, 211, 1) 50%,
      rgba(227, 219, 211, 1) 100%
    );
    background-color: rgba(227, 219, 211, 1);
    height: 110px;
  }

  .header-bar-inner {
    max-width: 1080px;
    width: 80%;
    margin: -40px auto 20px;
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
  }

  .header-bar-box {
    width: 50%;
    min-width: 450px;
  }

  .header-bar-list {
    display: flex;
    justify-content: space-between;
  }

  .header-bar-list-item {
    cursor: pointer;
    display: flex;
    align-items: flex-end;
  }

  .header-bar-logo {
    cursor: pointer;
    display: block;
    width: 15%;
    min-width: 250px;
  }

  .header-bar-list-item a {
    text-decoration: none;
    font-size: 1rem;
    color: #4d4d4d;
  }

  .menu-btn {
    display: none;
  }

  .section-top,
  .footer {
    background-image: url(../grande_img/jpeg/pc_top_bg.jpg);
    background-repeat: no-repeat;
    background-size: cover;
    background-position-y: bottom;
  }

  .top-pc_box {
    flex-basis: 42%;
    /* padding-left: 10%; */
  }

  .keyvisual {
    flex-basis: 58%;
    /* min-width: 600px; */
    margin: 20px auto 0;
  }

  div.section-inner {
    width: 950px;
    max-width: 100%;
  }

  .worries-guidance {
    padding-bottom: 100px;
  }

  .section-top div.section-inner {
    padding-top: 150px;
    display: flex;
  }

  .top-logo {
    padding-top: 50px;
    /* width: 18vw; */
    /* min-width: 290px; */
    width: 250px;
    margin: auto;
    margin-bottom: 30px;
  }

  .top-headline {
    width: 100%;
    font-size: 1.2rem;
    position: relative;
    z-index: 95;
    text-align: center;
    margin-bottom: -45px;
    line-height: 1.9;
  }

  .section-recruitment h2 {
    text-align: left;
    font-size: 5.8rem;
    font-weight: 600;
    text-decoration-thickness: 40px;
    text-decoration-color: rgba(230, 199, 78, 1);
    text-underline-offset: -25px;
    text-decoration-skip-ink: none;
  }

  .section-recruitment h2 span {
    text-align: right;
    display: inherit;
  }

  .section-recruitment p {
    font-size: 2rem;
  }

  .inquiry-btn {
    width: 50%;
    cursor: pointer;
  }

  .inquiry-btn a {
    font-size: 3rem;
  }

  .section-recruitment {
    margin-bottom: 120px;
  }

  .section-news h2 {
    width: 15vw;
  }

  #newsWrap {
    border: 20px solid #e2dad2;
    max-width: 90%;
  }

  .section-sns {
    margin-bottom: 120px;
  }

  .section-sns p {
    margin: 0 auto 50px;
    font-size: 2rem;
    font-weight: 600;
  }

  .sns-title {
    width: 30vw;
  }

  .sns-icon {
    width: 200px;
    margin-bottom: 100px;
  }

  .section-worries {
    background: linear-gradient(
      180deg,
      #fff9e8 0%,
      #fff9e8 86%,
      #ffffff 86%,
      #ffffff 100%
    );
  }

  .sns-image {
    width: 80%;
    margin: auto;
  }

  div.worries-guidance-sentence {
    margin-bottom: 120px;
  }

  /* 老夫婦のイラスト */
  .worries-illust {
    text-align: center;
    max-width: 665px;
    margin: 0 auto 45px;
  }

  .worries-list li {
    font-size: 24px;
    padding-left: 5%;
  }

  .worries-strength-list {
    width: 45%;
  }

  .worries-strength {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .worries-strength-list h3 {
    text-decoration-thickness: 5lvh;
    text-underline-offset: -18px;
  }

  /* グランデにご相談くださいの上のアロー */
  .section-worries-arrow {
    height: 200px;
    border-top: 15vh solid #e8eeff;
  }

  /* グランデにご相談ください */
  .worries-guidance-headline {
    width: 100%;
    max-width: 750px;
    justify-content: space-between;
    margin-bottom: 80px;
  }

  .worries-guidance-headline div.grande-logo {
    max-width: 130px;
    min-width: 120px;
    width: 20%;
  }

  .worries-guidance-headline h2 {
    font-size: 5rem;
    line-height: 80px;
    font-weight: 600;
    white-space: nowrap;
  }

  p.worries-guidance-sentence-vertical {
    font-size: 5rem;
    line-height: 90px;
  }

  p.worries-guidance-sentence-beside {
    display: inline;
    padding: 0 0 0 20px;
    font-size: 1.3rem;
    line-height: 45px;
  }

  .worries-president-img01 {
    width: 600px;
    /* width: 60%; */
  }

  .worries-president-img02 {
    width: 350px;
    margin: 245px 0 0 -60px;
    /* width: 35%; */
    /* position: absolute;
    top: 280px;
    right: 200px; */
  }

  .worries-president-name span {
    font-size: 74px;
    font-weight: 600;
    padding-top: 25px;
  }

  .worries-company-name {
    font-size: 2.2rem;
    padding-left: 5%;
  }

  .worries-president-name {
    font-size: 24px;
    padding: 185px 7% 0;
    /* margin-bottom: -5%; */
  }

  .worries-president-img {
    width: 90%;
    margin-bottom: 0;
  }

  /* 対応力に自信あり */
  .worries-strength-list h3 {
    font-size: 4rem;
    line-height: 5rem;
    margin: 0 auto 20px;
    font-weight: 900;
  }

  .worries-strength-list p {
    font-size: 1.3rem;
    height: 130px;
    line-height: 30px;
  }

  .worries-strength-list h3.budget-proposal,
  .worries-strength-list h3.correspondence {
    margin-bottom: 10px;
    width: 75%;
    line-height: 5rem;
  }

  /* 地域密着 */
  .worries-strength-list h3.community-based {
    width: 60%;
    margin: 0 auto 10px;
    line-height: 5rem;
  }

  .worries-strength {
    margin-bottom: 100px;
  }

  /* 見えないところ大丈夫ですか？ */
  .section-maintenance > .section-maintenance-bg > .section-inner {
    text-align: center;
  }

  .section-maintenance p.mentenance-headsup {
    display: inline-block;
    font-size: 4rem;
    line-height: 70px;
    margin-bottom: 10px;
  }

  .maintenance-headline span,
  .maintenance-headline {
    font-size: 3.5rem;
    font-weight: 600;
  }

  p.section-maintenance-sentence {
    font-size: 1.5rem;
    line-height: 50px;
    text-align: left;
  }

  /* 水漏れ、換気扇、屋根裏 */
  .maintenance-part-name p {
    line-height: 100px;
    font-size: 6rem;
  }

  .maintenance-part-name {
    width: 150px;
  }

  .maintenance-part-name span.shizuku {
    width: 60px;
  }

  .maintenance-part-name > p > span {
    width: 120px;
    margin: auto;
  }

  .maintenance-part-sentence {
    padding: 10px;
    font-size: 1.5rem;
    line-height: 45px;
  }

  .section-maintenance p.mentenance-headsup-02 {
    text-align: center;
    font-size: 2.5rem;
    line-height: 73px;
    margin-bottom: 30px;
  }

  /* btn共通 */
  .mentenance-headsup-btn,
  .mail_form-btn {
    cursor: pointer;
    font-size: 2.5rem;
    font-weight: 600;
    min-width: 500px;
    width: unset;
    padding: 20px;
  }

  .mail_form-btn a p {
    color: #fff;
    font-size: 2.5rem;
  }

  /* renovation */
  .section-example-title {
    font-size: 1.5rem;
    margin-bottom: 60px;
  }

  .guide-title {
    font-size: 2.8rem;
  }

  .maintenance-part-photo {
    width: 400px;
  }

  .guide-sentence {
    font-size: 1.5rem;
    line-height: 50px;
  }

  /* 施工事例リスト */

  .example {
    width: 82%;
    margin: auto;
  }

  .example-list {
    /* max-width: 200px; */
    width: 20vw;
    margin: 80px auto 20px;
  }

  .example-list-title {
    font-size: 1.8rem;
  }

  .case-study a {
    cursor: pointer;
  }

  .anchor {
    display: block;
    padding-top: 150px;
    margin-top: -150px;
  }

  .example_bg_logo01 {
    position: absolute;
    width: 10vw;
  }

  .example01,
  .example02,
  .example03,
  .example04,
  .example05,
  .example06,
  .example07,
  .example08 {
    height: 550px;
  }

  .example_bg_logo02 {
    bottom: -180px;
    width: 900px;
  }

  .section-example {
    margin-bottom: 180px;
  }

  /* お問い合わせフォーム */
  .section-mail_form-title {
    font-size: 3rem;
    line-height: 80px;
  }

  .section-mail_form form p {
    font-size: 2rem;
    line-height: 60px;
  }

  /* .section-mail_form form p.input-name {
    
  } */

  select,
  .surname,
  .given-name,
  .email-address {
    font-size: 1.5rem;
    line-height: 50px;
  }

  input.surname,
  input.given-name {
    width: unset;
  }

  .select-container::after {
    top: 28%;
    width: 15px;
    height: 15px;
  }

  .section-mail_form h3 {
    font-size: 1.5rem;
    line-height: 48px;
    margin-bottom: 30px;
  }

  form {
    padding-bottom: 100px;
  }

  textarea {
    font-size: 1rem;
    padding: 10px;
    max-width: 800px;
    height: 300px;
  }

  .section-individual {
    padding-top: 80px;
  }

  .individual01-box {
    margin-top: 50px;
  }

  .individual01 h2 {
    display: flex;
    font-size: 60px;
    justify-content: center;
  }

  .individual01 h2 div {
    display: inline-block;
    width: 70px;
  }

  .individual01-box p {
    font-size: 24px;
    /* line-height: 48px; */
    margin: 10px 10px 10px 50px;
    display: inline-block;
    background-color: #fff;
    position: relative;
    z-index: 90;
  }

  .individual02 {
    width: 650px;
    margin: 50px auto 20px;
  }

  .individual02 h3 {
    color: #466441;
    font-size: 48px;
  }

  .individual02 p {
    font-size: 24px;
  }

  .photo01-box,
  .photo02-box {
    width: 250px;
  }

  .photo01 img,
  .photo02 img,
  .photo03 img {
    border-radius: 10px;
    box-shadow: 5px 5px 5px gray;
  }

  .photo03-box {
    width: 400px;
  }

  .individual01-box-photo0102 {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: -125px;
  }

  .individual01-box-photo0102 p {
    all: unset;
    padding-top: 20px;
    font-size: 20px;
    display: block;
    text-align: center;
  }

  .weeding-photo {
    display: flex;
    margin: 0 auto 100px;
    box-shadow: 5px 5px 5px gray;
  }

  /* お問合せボタン */
  .worries_btn {
    cursor: pointer;
    color: #fff;
    font-size: 3rem;
  }

  .worries_btn a:hover {
    color: #fff9e8;
  }

  .worries_contact {
    text-align: center;
    padding-bottom: 100px;
  }

  .maintenance-part-list {
    display: flex;
  }
  .maintenance-part-list:first-child,
  .maintenance-part-list:nth-child(3) {
    flex-direction: row-reverse;
  }

  /* footer */
  .footer-logo {
    width: 10vw;
    max-width: 170px;
  }

  .company-info {
    font-size: 1.2rem;
    line-height: 30px;
    padding-bottom: 50px;
  }

  .footer-bar {
    display: block;
    background-color: #e3dbd3;
    padding-top: 10px;
    padding-bottom: 10px;
    line-height: 20px;
  }

  .footer-bar-list {
    display: flex;
    justify-content: space-evenly;
    max-width: 750px;
    margin: auto;
  }

  .footer-bar a {
    padding: 10px;
    cursor: pointer;
    font-size: 1rem;
    text-decoration: none;
    color: #4d4d4d;
    display: inline-block;
    text-align: center;
    width: 180px;
  }

  .copyright {
    line-height: 50px;
    font-size: 1rem;
  }
}
