*, *:before, *:after {
  margin: 0;
  padding: 0;
  list-style: none;
  font-weight: normal;
  text-decoration: none;
  box-sizing: border-box;
  font-size: 15px;
  font-size: 1.5rem;
}
a {
  text-decoration: none;
  font-size: inherit;
  color: #231815;
  transition: all 0.5s;
}
/*a:hover{
  transition-duration: 0.5s;
  opacity: 0.5;
}*/
p{
  margin: 1% 0;
}
ul, ol, dl {
  list-style: none;
}
html {
  font-size: 62.5%;
}
input[type=date],
input[type=submit]{
  -webkit-appearance: none;
  appearance: none;
}
input,
textarea{
  padding: 15px 20px;
  width: 100%;
  border: #ddd 1px solid;
  border-radius: 5px;
}
input[type=radio],
input[type=checkbox]{
  width: auto;
  padding: 0;
}
span.wpcf7-list-item{
  display: block;
}
img {
  max-width: 100%;
  height: auto;
  border:0;
}
body {
	font-family: "NotoSansJP Medium";
  color: #000;
  line-height: 1.8;
  letter-spacing: 0.05em;
  font-weight: bold;
}
h1{
  font-size: 40px;
  font-weight: bold;
}
h3{
  font-size: 20px;
}
span{
  font-size: inherit;
  font-weight: inherit;
}
button{
  background: none;
}

.pc-only{
  display: block;
}
.sp-only{
  display: none!important;
}
@media screen and (max-width: 768px){
  input,
  textarea{
    padding: 10px;
  }
  .pc-only{
    display: none!important;
  }
  .sp-only{
    display: block!important;
  }  
}

.common {
  margin:0px auto;
  padding: 100px 0;
  width: 1000px;
  word-break: break-all;
  position: relative;
  z-index: 1;
}
.common-sub {
  margin:0px auto;
  padding: 50px 0 ;
  width: 1000px;
  word-break: break-all;
  position: relative;
  z-index: 1;
}

main{
  transition: all 1s;
  overflow: hidden;
}

@media screen and (max-width: 1045px){
  main{
    width: 100%;
  }
}
@media screen and (max-width: 768px){
  main{
  }
}

@media screen and (max-width: 1024px) and (min-width: 769px){
  .common,
  .common-sub{
    width:90%;
  }
  h1{
    font-size: 28px;
    font-size:2.8rem;
  }
  h2{
    font-size:20px;
    font-size:2rem;
  }
}

@media screen and (max-width: 768px){
  *, *:before, *:after {
    font-size: 14px;
    font-size: 1.4rem;
    line-height: 2;
  }
  h1{
    font-size:35px;
    font-size:3.5rem;
  }
  h2{
    font-size:28px;
    font-size:2.8rem;
  }
  /* 共通 */
  .table dt{
    padding: 5%; 
    width: 45%;   
  }
  .table dd{
    padding: 5%;
  }
  .common{
    padding: 50px 0;
    margin: 0 auto;
    width: 90%;
  }
  .common-sub{
    margin: 0 auto;
    width: 90%;
  }
}

/*フォント
=======================================================*/
@font-face {
	font-family: "NotoSansJP Medium";
	src: url("/wp-content/themes/saiyoulp/font/NotoSansJP-Medium.ttf");
	font-weight: 500;
}
@font-face {
	font-family: "NotoSansJP Bold";
	src: url("/wp-content/themes/saiyoulp/font/NotoSansJP-Bold.ttf");
	font-weight: 500;
}
@font-face {
	font-family: "NotoSansJP Black";
	src: url("/wp-content/themes/saiyoulp/font/NotoSansJP-Black.ttf");
	font-weight: 500;
}

/*カラー
=======================================================*/
.fc-blue{
  color: #005CE6;
}
.fc-red{
  color: #F81515;
}
.fc-yellow{
  color: #FFFF43;
}

/*位置
=======================================================*/
.tac{
  text-align: center!important;
  margin: 0 auto;
}

/*背景
=======================================================*/
.bg01{
  background: url(/wp-content/themes/saiyoulp/img/bg01.png);
  background-repeat: repeat;
}
.bg02{
  background:url(/wp-content/themes/saiyoulp/img/bg02.jpg) no-repeat;
  background-size: cover;
}
.bg03{
  background:url(/wp-content/themes/saiyoulp/img/bg03.jpg) no-repeat;
  background-size: cover;
}
.bg04{
  background:url(/wp-content/themes/saiyoulp/img/bg04.jpg) no-repeat;
  background-size: cover;
}
.bg05{
  background:url(/wp-content/themes/saiyoulp/img/bg05.jpg) no-repeat;
  background-size: cover;
  background-position: center;
}
.bg06{
  background:url(/wp-content/themes/saiyoulp/img/bg06.jpg) no-repeat;
  background-size: cover;
  background-position: top;
}


/*共通アニメーション
=======================================================*/

/* スクロールありで下から上 */
.fadein1 {
  opacity : 0;
  transform: translateY(50px);
  transition: all 1.5s;
}
/* スクロールありで右から左 */
.fadein2 {
  opacity : 0;
  transform: translateX(-50px);
  transition: all 2s;
}
/* スクロールありで左から右 */
.fadein3 {
  opacity : 0;
  transform: translateX(50px);
  transition: all 2s;
}
/* スクロールありで上から下 */
.fadein4 {
  opacity : 0;
  transform: translateY(-50px);
  transition: all 1.5s;
}
/* スクロールなし下から上でフェードイン */
.no-fadein1 {
  animation-duration: 2s;
  animation-name: fadein1;
}
/* スクロールなしで上から下フェードイン */
.no-fadein2 {
  animation-duration: 2s;
  animation-name: no-fadein2;
}

@keyframes fadein1 {
  0% {
    opacity: 0;/* 透明 */
    transform: translateY(50px);
  }
  100% {
    opacity: 1;/* 不透明 */
    transform: translateY(0);
  }
}
@keyframes no-fadein2 {
  0% {
    opacity: 0;
    transform: translateY(-50px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

/*アコーディオン
=======================================================*/
.nav-close{
  display: none;
}

/*header
=======================================================*/
header{
  width:100%;
  position: fixed;
  top:0;
  left:0;
  z-index:99999;
  color:#373737;
  transition: all 0.3s ease;
}
header.is-anime{
  transition: all 0.3s ease;
}
header a{
  color:#373737;
  font-size: 20px;
  font-size: 2rem;
}
.header-inner{
  width: 98%;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: end;
  margin: 0 auto;
}
a.h-line-btn{
  font-family: "NotoSansJP Bold";
  color: #fff;
  border-radius: 10px;
  padding: 5px 20px;
  font-size: 18px;
  background: linear-gradient(90deg, rgba(6, 199, 85, 1) 33%, rgba(149, 249, 96, 1) 100%);
  box-shadow: 0px 6px 0px #018637;
  display: flex;
  align-items: center;
  gap: 15px;
}
a.h-line-btn::after{
  content: "";
  background:url(/wp-content/themes/saiyoulp/img/arrow.png) no-repeat;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-position: center;

}
a.h-line-btn:hover{
  box-shadow: none;
  transform: translate(0px, 6px);
}

@media screen and (max-width: 1045px){
  .header{
    height:60px;
  }
  .header-inner{
    padding: 10px;
    height: 60px;
  }
}
@media screen and (max-width: 768px){
  .header-inner{
    padding: 0;
    width: 100%;
    height: auto;
  }
  a.h-line-btn{
    padding: 5px 10px;
    font-size: 13px;
    box-shadow:none;
    border-radius:0;
    gap: 10px;
  }
  a.h-line-btn::after{
    width: 14px;
    height: 14px;
  }
  a.h-line-btn:hover{
    transform:none;
  }
}

/*上に戻るボタン
=======================================================*/

@media screen and (max-width: 768px){
}

/*ボタン
=======================================================*/
a.normal-btn{
  font-family: "NotoSansJP Bold";
  color: #06C755;
  border-radius: 100px;
  padding: 10px 25px;
  font-size: 18px;
  background: #fff;
  box-shadow: 0px 10px 0px #06C755;
  display: flex;
  align-items: center;
  gap: 15px;
  width: fit-content;
}
a.normal-btn::after{
  content: "";
  background: url(/wp-content/themes/saiyoulp/img/arrow02.png) no-repeat;
  width: 16px;
  height: 16px;
  background-size: contain;
  background-position: center;
}
a.normal-btn:hover{
  box-shadow: none;
  transform: translate(0px, 10px);
}

@media screen and (max-width: 768px){

}

/*お問い合わせ
=======================================================*/
.contact-box dl{
  display: flex;
  margin-bottom: 10px;
}
.contact-box dl dt{
  width: 30%;
  padding: 15px 0;
  font-size: 17px;
  line-height: 1;
}
.contact-box dl dt span.required{
  color: #F81515;
  font-size: 11px;
  margin-left: 10px;
}
.contact-box dl dd{
  width: 70%;
}
.contact-box dl dd span.wpcf7-form-control.wpcf7-radio{
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 15px 0;
}
.contact-box dl dd span.wpcf7-list-item{
  width: calc(100% / 2.2);
}
.contact-box dl dd span.wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label{
  margin-left: 10px;
}
.contact-box dl dd span.wpcf7-list-item label{
  display: flex;
  align-items: center;
}
.contact-box input[type=submit]{
  width: fit-content;
  margin: 0 auto;
  display: block;
  background: #005CE6;
  color: #fff;
  border: unset;
  padding: 10px 40px;
  font-size: 20px;
}

@media screen and (max-width: 768px){
  .contact.bg01{
    background-size: 330%;
  }
  .contact-box dl{
    flex-wrap: wrap;
  }
  .contact-box dl dt{
    width: 100%;
    padding: 10px 0;
  }
  .contact-box dl dd{
    width: 100%;
  }
  .contact-box dl dd span.wpcf7-form-control.wpcf7-radio{
    padding: 0;
  }
  .contact-box dl dd span.wpcf7-list-item{
    margin: 0;
  }
  .contact-box dl dd span.wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label{
    font-size: 2.5vw;
  }
}
@media screen and (max-width: 480px){
  .contact-box dl dd span.wpcf7-form-control.wpcf7-radio .wpcf7-list-item-label{
    font-size: 3.3vw;
  }
  .contact-box dl dd span.wpcf7-list-item{
    width: 48%;
  }
}

/*footer
=======================================================*/
footer {
  text-align: center;
}
#copyright {
  padding: 5px 0;
}
p#copyright{
  margin:0;
}
#copyright small{
  font-size: 15px;
  color: #000;
}

@media screen and (max-width: 768px){
  #copyright small{
    font-size: 13px;
  }
}