@charset "UTF-8";
/* CSS Document */
html {
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
  box-sizing: border-box;
}
body {
  color: #333; /* RGB */
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-optical-sizing: auto;
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
section h2 {
  font-size: 2.4rem;
}
a:hover {
  opacity: 0.5;
}
.none {
  display: none;
}
.header {
  
  
  position: fixed;
	
	width: 100%;
	text-align: center;
	color: #fff;
	background-color: #fff;
	z-index: 2;
	transition: .3s;
}
.header-wrapper {
  max-width: 1620px;
    display: flex;
    align-items: center;
    margin: 20px auto 10px;
    flex-wrap: wrap;
    justify-content: space-around;
}
.header-wrapper a img{
  width: 80%;
}
.header ul {
  width: 100%;
  display: flex;
  gap: 50px;
  flex-wrap: wrap;
}
.header ul a {
  color: #333;
  text-decoration: none;
}
.enb {
  font-size: 10px;
  color: #0096d2;
}
.nav_button {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 80px;
}
.header-button {
  width: 252px;
}
.button__tel {
  display: flex;
  width: 100%;
  margin-bottom: 6px;
}
.button__tel a {
  display: flex;
  background: #0096d2; /* 背景色 */
  color: #fff; /* 文字色 */
  padding: 11px 38px 11px 29px; /* 上下の余白、左右の余白 */
  text-decoration: none; /* デフォルトで入るリンクの下線を消す */
  border-radius: 35px; /* 角を丸くする */
  font-size: 20px;
  font-weight: 700;
  width: 100%;
}
.button__tel a::before {
  content: url("../images/pc_top/tel_icon.png");
  display: inline-block;
  padding-right: 11px;
}
.button__mail {
  display: flex;
  width: 100%;
}
.button__mail a {
  display: flex;
  background: #f5b004; /* 背景色 */
  color: #fff; /* 文字色 */
  padding: 14px 19px 15px 29px; /* 上下の余白、左右の余白 */
  text-decoration: none; /* デフォルトで入るリンクの下線を消す */
  border-radius: 35px; /* 角を丸くする */
  font-weight: 700;
  width: 100%;
   font-size: 14px;
}
.button__mail a::before {
  content: "";
  display: inline-block;
  padding-right: 34px;
  background-image: url("../images/pc_top/mail_icon.png");
  background-repeat: no-repeat;
}
@media screen and (min-width: 1090px) {
  .include_sp-all {
    display: none;
  }
}
@media screen and (max-width: 1090px) {
  .header-wrapper {
    display: none;
  }
  .menu-button {
    display: block;
    cursor: pointer;
    background: #3f96d2;
    padding: 5px 13px;
    border-radius: 0 0 8px 8px;
  }
  .bar {
    display: block;
    width: 25px;
    height: 2px;
    margin: 7px 2px;
    background-color: #fff;
    transition: 0.4s;
    border-radius: 2px;
  }
  #menu-toggle:checked ~ .menu-button .bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 3px);
  }
  #menu-toggle:checked ~ .menu-button .bar:nth-child(2) {
    opacity: 0;
  }
  #menu-toggle:checked ~ .menu-button .bar:nth-child(3) {
    transform: rotate(-45deg) translate(9px, -8px);
  }
  #menu-toggle {
    display: none;
  }
  .menu {
    position: fixed;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #FFFFFF;
    transition: 0.4s;
    z-index: -1;
    overflow-y: auto;
  }
  #menu-toggle:checked ~ .menu {
    top: 0;
    min-height: 600px;
  }
  .menu ul {
    list-style: none;
    padding: 90px 0 100px;
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .menu ul li a {
    text-decoration: none;
    color: #333;
    font-size: 13px;
    transition: 0.2s;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
  }
  .menu ul li a:hover {
    color: #3f96d2;
  }
  .include_sp-all {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    z-index: 99999;
    margin: 0;
  }
  .include_sp-all p {
    width: 113px;
  }
  .include_sp-all p img {
    width: 100%;
  }
  .sp-header {
    display: flex;
    justify-content: flex-end;
    flex-wrap: wrap;
  }
  .button__tel-sp {
    width: 50px;
    height: 40px;
    background-color: #3f96d2;
    border-radius: 0 0 8px 8px;
  }
  .button__tel-sp img {
    width: 10px;
  }
  .button__tel-sp a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
  }
  .button__tel-sp a span {
    font-size: 5px;
    font-weight: 600;
    color: #fff;
  }
  .button__mail-sp {
    width: 50px;
    height: 40px;
    background-color: #f5b000;
    border-radius: 0 0 8px 8px;
  }
  .button__mail-sp img {
    width: 10px;
  }
  .button__mail-sp a {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-wrap: wrap;
  }
  .button__mail-sp a span {
    font-size: 5px;
    font-weight: 600;
    color: #fff;
    position: relative;
  }
}
/*フッター*/
.footer {
  border-top: solid 1px #3F96D2;
}
.footer-wrap {
  max-width: 1200px;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin: 0 auto;
  padding: 70px 0;
  flex-wrap: wrap;
}
.logo_area {
  text-align: left;
}
.logo_area h3 {
  font-weight: 500;
  font-size: 15px;
  padding-top: 7px;
  
}
.logo_area h3 p {
  padding-right: 15px;
}
.logo_flex {
  display: flex;
  padding-top: 7px;
  align-items: center;
  gap: 30px;
}
.point {
  font-size: 14px;
  font-weight: 500;
  background-color: #F5FDFF;
  padding: 4px 0;
  border-radius: 11px;
  width: 100px;
  text-align: center;
}
/*サイトマップ*/
.site-map ul {
  display: flex;
  text-align: left;
  gap: 127px;
}
.site-map ul li a {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 15px;
  display: block;
  padding-top: 15px;
  padding-left: 10px;
  position: relative;
}
.site-map a:before {
  content: "";
  display: block;
  position: absolute;
  width: 11px;
  height: 11px;
  border-radius: 5px;
  background: #f1bb12;
  margin: auto;
  top: 14px;
  left: -7px;
  bottom: 0px;
}
.footer small {
  font-weight: 400;
 
  box-sizing: border-box;
  font-size: 14px;
  text-align: right;
}
.move-top {
  position: fixed;
  z-index: 999;
  bottom: 3%;
  right: 4%;
  cursor: pointer;
  transition: 0.5s;
  width: 64px;
}
@media screen and (max-width: 676px) {
  .footer-wrap {
    justify-content: center;
    padding: 30px 0;
  }
  .site-map ul {
    display: none;
  }
  .footer small {
    padding: 0;
  }
  .logo_area h2 {
    width: 128px;
  }
  .logo_area h2 img {
    width: 100%;
  }
  .logo_area h3 {
    font-size: 12px;
  }
  .logo_area p {
    font-size: 12px;
  }
  .logo_area {
    font-size: 12px;
        display: flex;
        flex-direction: column;
        flex-wrap: wrap;
        justify-content: center;
        align-content: flex-start;
       
        margin: 0 auto;
  }
  .footer small {
    font-size: 5px;
  }
  .logo_flex {
    display: flex;
    padding-top: 7px;
    gap: 11px;
    align-items: center;
    margin-right: 30px;
  }
  .move-top {
    width: 50px;
  }
}