.sphead{
position: fixed;
}

@media screen and (max-width: 375px) {
.cspbanner{
   position: absolute;
   top: 300px;
}
}
@media screen and (min-width: 376px) and (max-width: 480px) {
.cspbanner{
   position: absolute;
   top: 480px;
}
}

.spbanner{
   position: fixed;
    bottom: 15px;
}

main,nav {
overflow:hidden;
}

/*anime*/
.fade-in01{ 
  opacity:0;
  animation-name: move; 
  animation-delay:2s;
  animation-duration: 2s; 
  animation-iteration-count:1;
  animation-fill-mode: forwards; 
}
@keyframes move {
0% {
  opacity: 0;
}
100% {
 opacity: 1;
}
}

/* top */
@media (min-width: 921px) {
    .site-header {
        z-index: 99;
        position: fixed;
        width: 100%;
        top: 0;
    }

    .site-content {
        padding-top: 0px; /* Adjust according to your header's actual height */
    }
}


.wrapfilter {
    display: inline-block;  /* (任意：インラインブロック化したい場合) */
    opacity: 0.85;    /* カラーフィルタ効果の度合いを指定(※) */
    display: block;
    height: 100vh;
}


/* スライドする要素 */
.content {
  width: 533px;
  height: 758px;
	margin-right: 20px;
}
@media screen and (max-width: 375px) {
.content {
    width: 375px;
    height: auto;
    margin-right: 20px;
    margin-top: 10px;
}
}
.content ul li{
  list-style: none;
	
}

/* スライドレールの枠 */
.wrap {
  overflow: hidden;
  display: flex;
  align-items: center;
  position: relative;
}
@media screen and (max-width: 500px) {
.wrap {
  overflow: hidden;
  display: flex;
  align-items: center;
  height: 100vh;
  position: relative;
}
}

/* content4つをまとめたスライドブロック */
.slideshow {
	  display: flex;
  -webkit-animation: loop-slide 90s infinite linear 1s both;
  animation: loop-slide 90s infinite linear 1s both;
list-style: none;
}
}
@-webkit-keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

/*  nav button */
.nav_font{
		font-size:20px;
    font-weight: bold;
}

/*  nav button */
.box_wrap{
	display: flex;
}

.box2 {
		display: flex;
		width: 357px;
		height: 69px;
	  padding-top:7px;
	  padding-left:33px;
	  font-size:25px;
    font-weight: bold;
    color: #EA612A;/*文字色*/
    background: #FFF;
    border: none;/*線*/
    border-radius: 20px;/*角の丸み*/
}

.box2 .img { 
    display:float
}

/*table*/

table{
  border-collapse: collapse;
  border-spacing: 0;
  table-layout: fixed;
  width: 100%;
}

table tr:last-child{
  border-bottom:solid 1px #ddd;
}

table th{
	font-size: 30px;
  text-align: center;
  padding: 10px 0;
  border-right:solid 1px #ddd;
  border-left:solid 1px #ddd;
  width: 50%px;
	height:147px;
	color: #000;
	
}

table th:nth-child(1){
  background-color:#F9F1E6;
}

table th:nth-child(2){
  background-color:#fff;
  color: #000;
}

@media screen and (max-width: 480px) { /* 412px以下*/
    table th{
    font-size: 14px;
    font-family: 'Noto Sans JP';
    font-weight: bold;
    height: 60px;
    }
}

@media screen and (min-device-width: 481px) and (max-device-width: 1919px) {
     table th{
        font-size: 20px;
	height: 90px;
    }
}


.accordion {
  width: min(90vw, 500px);
  position: absolute;
  transform: translate(-50%, -50%);
  left: 50%;
  top: 50%;
}
input[type="checkbox"] {
  display: none;
  appearance: none;
}
.accordion-item {
  font-weight: 800;
  background-color: #ffffff;
  border-radius: 10em;
  padding-left: 10%;
  padding-right: 10%
}
.accordion-item:not(:last-child) {
  margin-bottom: 5em;
}
.accordion-content {
  color: #606060;
  font-size: 30px;
  line-height: 1.8em;
}
label {
  font-size: 30px;
  display: flex;
  justify-content: space-between;
  color: #EA612A;
  cursor: pointer;
  font-weight: bold;
  padding: 1em 0;
}
input[type="checkbox"] ~ label .arrow {
  display: inline-block;
  transition: 1s;
}

input[type="checkbox"]:checked ~ label .arrow {
  transform: rotate(90deg);
}
input[type="checkbox"]:checked ~ label {
  color: #EA612A;
}
input[type="checkbox"] ~ .accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: 1s;
}
input[type="checkbox"]:checked ~ .accordion-content {
  max-height: 100vh;

  transition: 1s;
}
/* モバイル版 */
@media screen and (max-width: 480px) {
label{
    font-size: 14px;
    font-family: 'Noto Sans JP';
    display: flex;
    justify-content: space-between;
    color: #EA612A;
    cursor: pointer;
    font-weight: bold;
    padding: 1em 0;
}
.accordion-item {
    font-weight: 800;
    background-color: #ffffff;
    border-radius: 3em;
    padding-left: 7%;
    padding-right: 10%;
}
.accordion-content {
    color: #606060;
    font-size: 14px;
    line-height: 1.8em;
}
.accordion-item:not(:last-child) {
    margin-bottom: 2em;
}
}
@media screen and (min-device-width: 481px) and (max-device-width: 1919px) {
label{
    font-size: 20px;
    display: flex;
    justify-content: space-between;
    color: #EA612A;
    cursor: pointer;
    font-weight: bold;
    padding: 1em 0;
}
.accordion-item {
    font-weight: 800;
    background-color: #ffffff;
    border-radius: 5em;
    padding-left: 10%;
    padding-right: 10%;
}
.accordion-content {
    color: #606060;
    font-size: 20px;
    line-height: 1.8em;
}
.accordion-item:not(:last-child) {
    margin-bottom: 2em;
}
}


.cf7_form{
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
width: 1640px;
border-radius: 127px;
background: #f5f0df;
}

.cf7_form .must {
	background: #FF1A00;
}

.cf7_form .free {
	background: #999;
}

.cf7_form .must,
.cf7_form .free {
	color: #FFF;
	border-radius: 40px;
	font-size: 12px;
	margin-right: 10px;
	padding: 5px 10px;
	letter-spacing: 0.2em;
}

.cf7_form .wpcf7 input[type="text"],
.cf7_form .wpcf7 input[type="email"],
.cf7_form .wpcf7 input[type="textarea"]  {
	 width: 100%;
	 padding: 8px 15px;
	 margin-right: 10px;
	 margin-top: 10px;
	 border: 1px solid #ddd;
	 border-radius: 40px;
}

.cf7_form .input.sub-btn {
	width: 300px;
	height: 60px;
	background: #F90;
	color: #FFF;
	font-size: 1.1em;
	font-weight: bold;
	letter-spacing: 0.2em;
	border: 1px solid #ffae13;
	-webkit-transition: 0.3s;
	-moz-transition: 0.3s;
	-o-transition: 0.3s;
	-ms-transition: 0.3s;
	transition: 0.3s;	
}


.cf7_form .input.sub-btn:hover{
	background: #FFF;
	color: #F90;  
}


.cf7_form .center {
	text-align:center;
}