@charset "UTF-8";
* {
  box-sizing: border-box;
}

html,
body,
div,
span, 
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

nav ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

a {
  margin: 0;
  padding: 0;
  font-size: 100%;
  color: #333;
  vertical-align: baseline;
  text-decoration: none;
  background: transparent;
}

/* change colours to suit your needs */
ins {
  background-color: #ff9;
  color: #000;
  text-decoration: none;
}

/* change colours to suit your needs */
mark {
  background-color: #ff9;
  color: #000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* change border colour to suit your needs */
hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #cccccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

* {
  box-sizing: border-box;
}

html {
  margin: 0;
  padding: 0;
  font-size: 100%;
  scroll-behavior: smooth;
}

body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-family: "Roboto", "Noto Sans JP", sans-serif;
  font-size: clamp(14px, 1.25vw, 16px);
  font-weight: 400;
  color: #333;
  line-height: 1.6;
  letter-spacing: 0.05em;
  background-color: #fff;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.3s ease;
}

img {
  max-width: 100%;
  width: 100%;
  vertical-align: bottom;
}

#header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 160px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 0;
  padding: 0 3% 0 1%;
  z-index: 100;
  transition: transform 0.3s ease;
}
#header .logo {
  position: absolute;
  top: 50%;
  left: 3%;
  transform: translateY(-50%);
  width: 250px;
  z-index: 999;
}

#header.hide {
  transform: translateY(-100%);
}

#footer {
  height: auto;
  padding: 3% 3% 1%;
  color: #fff;
  background: #333;
}
#footer .logo {
  width: 250px;
}
#footer .footer-menu {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-direction: row;
  gap: 24px;
}
#footer .footer-menu .site-title {
  flex: 12;
  margin-bottom: 1%;
  padding-bottom: 1.5%;
  border-bottom: 1px solid;
}
#footer .footer-menu #pagetop {
  flex: 1;
  text-align: center;
}
#footer .footer-menu #pagetop a {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  color: #333;
  background: #fff;
  border-radius: 50%;
}
#footer .copyright {
  text-align: center;
}

/*------------------------------------------------------------------------------
TOPページ
------------------------------------------------------------------------------*/
#main {
  height: calc(100vh - 160px);
  padding: 0;
  position: relative;
}
#main .main-visual {
  position: relative;
  width: 100%;
  height: 80%;
  background: url("/img/main-visual.webp") center/cover no-repeat;
}
#main .catchcopy {
  display: inline-block;
  padding: 16px 40px;
  position: absolute;
  top: 60%;
  left: -2%;
  font-size: clamp(40px, 4.6875vw, 60px);
  background-color: #fff;
}
#main .catchcopy span {
  font-size: calc(clamp(40px, 4.6875vw, 60px) * 1.2);
  font-weight: 500;
}
#main .bg {
  width: 100%;
  height: 30%;
  position: absolute;
  bottom: 0;
  background: #FDF0D7;
  z-index: -1;
}

#service {
  padding-top: 0;
  scroll-margin-top: 160px;
  background: #FDF0D7;
}
#service .roof,
#service .wall {
  height: 450px;
  display: flex;
}
#service .roof div,
#service .wall div {
  width: 35%;
  display: grid;
  place-items: center;
}
#service .roof img,
#service .wall img {
  display: block;
  width: 65%;
  -o-object-fit: cover;
     object-fit: cover;
}
#service .roof {
  margin-bottom: 48px;
}

#company-profile {
  position: relative;
  background: #FDF0D7;
  padding-bottom: 70px;
}
#company-profile .container {
  display: grid;
  justify-items: flex-start;
  align-content: center;
  flex-direction: row;
  gap: 0;
  width: 100%;
  margin: 0 auto;
}
#company-profile .container .sec-title {
  width: 100%;
}
#company-profile .container dl {
  width: 80%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 0;
  flex-wrap: wrap;
  margin: 0 auto;
}
#company-profile .container dl dt {
  width: 30%;
  background: #fff;
  margin-bottom: 8px;
  padding: 16px;
  padding-right: 0;
}
#company-profile .container dl dd {
  width: 70%;
  background: #fff;
  margin-bottom: 8px;
  padding: 16px;
  padding-left: 0;
}
#company-profile .container dl .onepoint-relative {
  position: relative;
}
#company-profile .container dl .onepoint-relative .onepoint {
  width: 200px;
  position: absolute;
  bottom: -20%;
  right: 0;
}

#contact {
  padding-top: 0;
  background: #FDF0D7;
}
#contact .container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: row;
  gap: 0;
}
#contact .container .telephone,
#contact .container .mail {
  width: 50%;
  padding: 4% 8%;
  text-align: center;
}
#contact .container .telephone p,
#contact .container .mail p {
  margin-bottom: 40px;
}
#contact .container .telephone img,
#contact .container .mail img {
  width: 10%;
}
#contact .container .telephone a,
#contact .container .mail a {
  display: inline-block;
  padding: 8px 16px;
  background: #fff;
  border: 1px solid;
  border-radius: 40px;
}
#contact .container .telephone {
  border-right: 1px solid;
}

/*------------------------------------------------------------------------------
ページ全体のレイアウトを管理するための「メインコンテナ」------------------------------------------------------------------------------*/
main {
  padding-top: 160px;
}

section {
  padding: 160px 0;
}

/*------------------------------------------------------------------------------
コンテンツの内側のレイアウトを管理する「小さめのコンテナ」
------------------------------------------------------------------------------*/
.wrapper {
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 3%;
}

.sp {
  display: none;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

.default-icon {
  display: none;
}

.hover-icon {
  display: none;
}

/* 存在ごときえる */
.hidden {
  display: none !important;
  visibility: hidden !important;
}

/* 見えないしクリックできないけど存在はある */
.invisible {
  visibility: hidden;
}

/* 見えないけどクリックできる */
.opacity-0 {
  opacity: 1;
  transition: opacity 0.3s ease;
}

/*------------------------------------------------------------------------------
共通の見出し・テキストスタイル
------------------------------------------------------------------------------*/
h1 {
  font-size: clamp(24px, 2.5vw, 32px);
}

.site-title p {
  font-size: clamp(20px, 2vw, 24px);
}

h2 {
  font-size: clamp(24px, 2.5vw, 32px);
}

h3 {
  font-size: clamp(28px, 3.125vw, 40px);
}

h4 {
  font-size: clamp(16px, 1.5625vw, 20px);
}

p {
  line-height: 32px;
}

.concept {
  font-size: clamp(20px, 2vw, 24px);
  margin-bottom: 40px;
}

.sec-title {
  margin-bottom: 8px;
}
.sec-title p {
  margin-bottom: -8px;
}

.form__contact {
  max-width: 620px;
  margin-bottom: 80px;
  display: flex;
  flex-direction: column;
}
.form__contact__group {
  margin-bottom: 15px;
  display: flex;
  flex-direction: column;
  gap: 5px;
}
.form__contact__group label {
  position: relative;
  text-align: left;
}
.form__contact__group input,
.form__contact__group textarea {
  width: 100%;
  padding: 10px;
  background: rgb(239, 239, 239);
  border: 1px solid rgb(147, 142, 142);
  border-radius: 4px;
  font-size: 16px;
}
.form__contact__group textarea {
  height: 120px;
  resize: vertical;
}
.form__contact__group:last-of-type {
  margin-bottom: 60px;
}

#nav {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 24px;
  padding: 24px 32px;
  background: #fff;
  border-radius: 40px;
}
#nav .nav-menu {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  flex-direction: row;
  gap: 16px;
}
#nav .nav-menu .contact {
  padding: 8px 16px;
  color: #fff;
  background: #0062FF;
  border-radius: 40px;
}

/*------------------------------------------------------------------------------
   slickスライダー
------------------------------------------------------------------------------*/
.slider {
  /*横幅94%で左右に余白を持たせて中央寄せ*/
  width: 94%;
  margin: 0 auto;
}

.slider img {
  width: 100%;
  /*スライダー内の画像を横幅100%に*/
  height: auto;
}

/*slickのJSで書かれるタグ内、スライド左右の余白調整*/
.slider .slick-slide {
  margin: 0 10px;
}

/*矢印の設定*/
/*戻る、次へ矢印の位置*/
.slick-prev,
.slick-next {
  position: absolute;
  /*絶対配置にする*/
  top: 42%;
  cursor: pointer;
  /*マウスカーソルを指マークに*/
  outline: none;
  /*クリックをしたら出てくる枠線を消す*/
  border-top: 2px solid #666;
  /*矢印の色*/
  border-right: 2px solid #666;
  /*矢印の色*/
  height: 15px;
  width: 15px;
}

.slick-prev {
  /*戻る矢印の位置と形状*/
  left: -1.5%;
  transform: rotate(-135deg);
}

.slick-next {
  /*次へ矢印の位置と形状*/
  right: -1.5%;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.slick-dots {
  text-align: center;
  margin: 20px 0 0 0;
}

.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}

.slick-dots button {
  color: transparent;
  outline: none;
  width: 8px;
  /*ドットボタンのサイズ*/
  height: 8px;
  /*ドットボタンのサイズ*/
  display: block;
  border-radius: 50%;
  background: #ccc;
  /*ドットボタンの色*/
}

.slick-dots .slick-active button {
  background: #333;
  /*ドットボタンの現在地表示の色*/
}

/*------------------------------------------------------------------------------
display.scss
------------------------------------------------------------------------------*/
@media (max-width: 428px) {
  .sp {
    display: block;
  }
  .pc {
    display: none;
  }
  .wrapper {
    max-width: 767px;
    margin: 0 auto;
    padding: 0 3%;
  }
}
/*------------------------------------------------------------------------------
layout.scss
------------------------------------------------------------------------------*/
@media (max-width: 428px) {
  .container {
    max-width: 767px;
    margin: 0 auto;
  }
}
/*------------------------------------------------------------------------------
text.scss
------------------------------------------------------------------------------*/
@media (max-width: 834px) {
  h1 {
    font-size: clamp(20px, 2vw, 24px);
  }
  h3 {
    font-size: clamp(20px, 2vw, 24px);
  }
  h4 {
    font-size: clamp(12px, 0.9375vw, 14px);
  }
  .sec-title {
    font-size: clamp(16px, 1.5625vw, 20px);
  }
  .page-title {
    font-size: 36px;
  }
  .concept {
    font-size: clamp(16px, 1.5625vw, 20px);
    margin-bottom: 32px;
  }
}
@media (max-width: 428px) {
  h1 {
    font-size: clamp(16px, 1.5625vw, 20px);
  }
  h3 {
    font-size: clamp(16px, 1.5625vw, 20px);
  }
  h4 {
    font-size: clamp(12px, 0.9375vw, 14px);
  }
  .sec-title {
    font-size: clamp(14px, 1.25vw, 16px);
  }
  .page-title {
    font-size: 36px;
  }
  .concept {
    font-size: clamp(14px, 1.25vw, 16px);
    margin-bottom: 24px;
  }
}
/*------------------------------------------------------------------------------
header.scss
------------------------------------------------------------------------------*/
@media (max-width: 834px) {
  #header {
    height: 140px;
  }
  #header .logo {
    width: 160px;
  }
}
@media (max-width: 428px) {
  #header {
    height: 100px;
  }
  #header .logo {
    width: 100px;
  }
}

/*------------------------------------------------------------------------------
nav.scss
------------------------------------------------------------------------------*/
@media (max-width: 834px) {
  #nav {
    padding: 16px;
  }
  .nav-menu {
    display: none !important;
  }
  .menu-toggle {
    display: block;
    width: 25px;
    height: 25px;
    position: relative;
  }
  .menu-toggle span {
    position: absolute;
    width: 100%;
    height: 1px;
    background: #333;
    transition: all 0.3s ease;
    transform-origin: center;
  }
  .menu-toggle span:nth-of-type(1) {
    top: 25%;
  }
  .menu-toggle span:nth-of-type(2) {
    top: 50%;
  }
  .menu-toggle span:nth-of-type(3) {
    top: 75%;
  }
  #header.open #nav {
    height: 100vh;
    width: 100vw;
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    display: grid;
    justify-items: center;
    align-content: center;
    visibility: visible;
    opacity: 1;
    border-radius: 0;
    margin: 0 auto;
    z-index: 900;
  }
  #header.open .nav-menu {
    display: grid !important;
    position: absolute;
    top: 40%;
    justify-items: center;
    align-content: center;
    visibility: visible;
    opacity: 1;
  }
  #header.open .menu-toggle {
    display: inline-block;
    position: fixed;
    top: 6.5%;
    right: 5%;
  }
  #header.open .menu-toggle span:nth-of-type(1) {
    top: 50%;
    transform: rotate(45deg);
  }
  #header.open .menu-toggle span:nth-of-type(2) {
    opacity: 0;
  }
  #header.open .menu-toggle span:nth-of-type(3) {
    top: 50%;
    transform: rotate(-45deg);
  }
}
/*------------------------------------------------------------------------------
main.scss
------------------------------------------------------------------------------*/
@media (max-width: 834px) {
  main {
    padding-top: 140px;
  }
}
@media (max-width: 428px) {
  main {
    padding-top: 100px;
  }
}

@media (max-width: 834px) {
  section {
    padding: 140px 0;
  }
}
@media (max-width: 428px) {
  section {
    padding: 100px 0;
  }
}

@media (max-width: 834px) {
  #main .catchcopy {
    min-width: 60%;
    top: 60%;
    left: 50%;
    transform: translateX(-50%);
    font-size: clamp(28px, 3.125vw, 40px);
    text-align: center;
    text-wrap: nowrap;
  }
}
@media (max-width: 428px) {
  #main .catchcopy {
    font-size: clamp(20px, 2vw, 24px);
  }
}
@media (max-width: 834px) {
  #main .catchcopy span {
    font-size: calc(clamp(28px, 3.125vw, 40px) * 1.2);
  }
}
@media (max-width: 428px) {
  #main .catchcopy span {
    font-size: calc(clamp(20px, 2vw, 24px) * 1.2);
  }
}

@media (max-width: 834px) {
  #service {
    scroll-margin-top: 140px;
  }
  #service .roof,
  #service .wall {
    height: auto;
    width: 100%;
    display: grid;
  }
  #service .roof div,
  #service .wall div {
    width: 100%;
    display: flex;
  }
  #service .roof div img,
  #service .wall div img {
    display: none;
  }
  #service .roof img,
  #service .wall img {
    display: block;
    height: auto;
    width: 100%;
    max-width: 100%;
    aspect-ratio: 16/10;
  }
  #service .wall {
    flex-direction: row-reverse;
  }
  #service .wall div {
    width: 100%;
    order: 1;
  }
  #service .wall img {
    order: 2;
  }
}
@media (max-width: 428px) {
  #service {
    scroll-margin-top: 100px;
  }
}

@media (max-width: 834px) {
  #company-profile .container dl {
    width: 85%;
  }
}
@media (max-width: 428px) {
  #company-profile .container dl {
    width: 100%;
  }
}
#company-profile .container dl dt {
  width: 20%;
}
#company-profile .container dl dd {
  width: 80%;
}
@media (max-width: 428px) {
  #company-profile .container dl dt,
  #company-profile .container dl dd {
    padding: 8px;
  }
}
@media (max-width: 834px) {
  #company-profile .onepoint {
    display: none;
  }
}

@media (max-width: 428px) {
  #contact .container {
    display: grid;
    justify-items: flex-start;
    align-content: center;
    flex-direction: row;
    gap: 0;
  }
  #contact .container .telephone,
  #contact .container .mail {
    width: 100%;
    padding: 8%;
  }
  #contact .container .telephone p,
  #contact .container .mail p {
    margin-bottom: 40px;
  }
  #contact .container .telephone img,
  #contact .container .mail img {
    width: 10%;
  }
  #contact .container .telephone {
    border-right: none;
    border-bottom: 1px solid;
  }
}

/*------------------------------------------------------------------------------
footer.scss
------------------------------------------------------------------------------*/
@media (max-width: 834px) {
  #footer .logo {
    width: 160px;
  }
}
@media (max-width: 428px) {
  #footer .logo {
    width: 100px;
  }
}
@media (max-width: 834px) {
  #footer .footer-menu #pagetop a {
    width: 60px;
    height: 60px;
    line-height: 60px;
  }
}
@media (max-width: 428px) {
  #footer .footer-menu #pagetop a {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: clamp(12px, 0.9375vw, 14px);
  }
}
@media (max-width: 428px) {
  #footer .copyright {
    font-size: 0.6rem;
  }
}

#contactForm {
  padding: 12% 0;
  background: #FDF0D7;
}
#contactForm .wrapper {
  width: 60%;
}
#contactForm .sec-title {
  margin-bottom: 6%;
}
#contactForm .desc {
  margin-bottom: 8%;
}
#contactForm form {
  width: 100%;
  display: grid;
  justify-items: flex-start;
  align-content: center;
  flex-direction: row;
  gap: 0;
}
#contactForm form input,
#contactForm form textarea {
  width: 100%;
  padding: 1.5% 2%;
}
#contactForm form textarea {
  height: auto;
}
#contactForm form input {
  margin-bottom: 3%;
}
#contactForm form #body {
  margin-bottom: 8%;
}
#contactForm form button {
  width: 40%;
  padding: 1.5% 2%;
  margin: 0 auto;
  font-size: clamp(16px, 1.5625vw, 20px);
}/*# sourceMappingURL=style.css.map */

#contactForm form .g-recaptcha {
  margin: 0 auto;
  margin-bottom: 3%;
}

@media (max-width: 428px) {
#contactForm .wrapper {
  width: 100%;
}
}