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

body {
  font-family: "";
}

a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 768px) {
  a[href^="tel:"] {
    pointer-events: auto;
  }
}

a {
  transition: opacity 0.3s;
}
a:hover {
  opacity: 0.7;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  -webkit-text-decoration-skip: ink;
          text-decoration-skip-ink: auto;
}

a {
  text-decoration: none;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* Natural flow and rhythm in articles by default */
article > * + * {
  margin-top: 1em;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}
.main{
  width: 100%;
  height: 100%;
  position: relative;
}

.buttons{
  display: flex;
  gap: 24px;
  position: absolute;
  bottom: 12.5%;
  left: 50.5%;

}

.btn{
  display: inline-block;
  max-width: 128px;

}




.icons{

  display: flex;
  gap: 16px;
  position: absolute;
  bottom: 8%;
    left: 53.5%;
  transform: translateX(-50%);
  justify-content: center;

}

.icon{
  display: inline-block;
  max-width: 40px;

}

.container{
  display: flex;
  flex-direction:column;
  position:relative;
}

.header{

  position:sticky;
  padding:1em 5%;
  top:0;
  background:#fff;
  z-index:50;
}
.header-content{
  max-width:1000px;
  margin-inline:auto;
display: flex;
  align-items: center;
  justify-content:space-between;
}

.header-title{
  max-width:205px;
  width:100%;
}
.header-buttons {
  display:flex;
  gap:20px;
}

.header-buttons .btn{
  max-width:168px;
}

@media screen and (max-width: 1280px){
  .buttons{
    bottom:12%;
  }

  .icons{
    left:56%;
  }
}

@media screen and (max-width: 768px){
  .buttons{
  width: 100%;
  display: flex;
  gap: 24px;
  position: absolute;
  bottom: 11%;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;
}

.btn{
  display: inline-block;
  max-width: 218px;
  width: 29%;
}




.icons{
  width: 100%;
  display: flex;
  gap: 24px;
  position: absolute;
  bottom: 3.5%;
  left: 50%;
  transform: translateX(-50%);
  justify-content: center;

}

.icon{
  display: inline-block;
  max-width: 57px;
  width: 7.5%;
}

.header{
  display:none;
}
}
