@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  scroll-behavior: smooth;
}
body {
  color: #333; /* RGB */
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
  background-image: url("../images/common/bg\ beige.jpg");
  background-size: contain;
}
section h2 {
  font-size: 2.4rem;
}
h1{
  font-size: 3.4rem;
  font-weight: 600;
  font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;
}
@media (max-width: 500px){
  h1{
    font-size: 2rem;
  }
}
a:hover {
  opacity: 0.5;
}
.none {
  display: none;
}
*, *:before, *:after {
  box-sizing: border-box;
}
/* font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif; */

/*header*/
header{
    position: sticky;
    top: 10px;
    z-index: 10000;
    width: 100vw;
    margin: 30px 0px;
    padding: 0px 120px;
    display: flex;
    height: 70px;
    white-space: nowrap;
    justify-content: space-between;
}
.header_logo{
    width: min(35vw, 400px);
}
header div{
    height: 100%;
}
.header_button{
    display: flex;
    margin-left: auto;
    font-weight: 700;
    font-size: 2rem;
}
.header_button a{
    margin: 0px 14px;
    text-decoration: none;
    color: #333;
}
.header_button img{
    width: min(4vw, 40px);
    margin-bottom: 5px;
}
.header_contact{
    margin-left: 30px;
    text-align: left;
    font-family: 'Yu Mincho Light','YuMincho','Yu Mincho','游明朝体','ヒラギノ明朝 ProN','Hiragino Mincho ProN',sans-serif;}
.header_contact img{
    width: clamp(30px, 3vw, 40px);
}
.header_tel{
    display: inline-block;
    font-size: clamp(2.6rem, 2.8vw, 3.6rem);
    font-weight: 600;
    letter-spacing: 0.4rem;
}
.header_p{
    font-size: clamp(1rem, 1.2vw, 1.5rem);
    font-weight: 600;
    line-height: 1.4;
    color: #333;
    text-decoration: none;
}

@media (max-width: 1200px){
  .header_button{
    display: none;
  }
  .header_contact{
    margin-left: 30px;
  }
}

@media (max-width: 960px){
  header{
    padding: 0px 40px;
}
}

@media (max-width: 500px){
  header{
    margin: 10px 0px 0px;
    padding: 0px 10px;
    height: 50px;
}
.header_a{
  display: block;
  height: 25px;
}
.header_logo{
  height: 100%;
}
.header_contact span{
  display: none;
}
.header_tel{
    font-size: 1.5rem;
    font-weight: 600;
}
.header_tel a{
  text-decoration: none;
  color: #333;
}
.header_contact img {
    width: 18px;
}
}