@charset "UTF-8";

@media screen and (min-width: 1024px) { 


.openbtn2{
    display: none;
}

.global-header{
    width: 100%;
    height: auto;
    padding: 15px 50px 0 50px;
    display: flex;
    justify-content: space-between;
    position: fixed;
    z-index: 199;
}

.logo a{
    width: 200px;
    height: 54px;
    border-radius: 39.5px;
    background: rgba(255, 255, 255, 0.8);
    display: flex;
    justify-content: center;
    align-items: center;
    border: solid 2px white;
}

.logo img{
    width: 70%;
}

.menu-wrap{
    display: flex;
}

.gnav{
    width: 637px;
    height: 54px;
    border-radius: 57.5px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid white;
    padding: 14px;
}

.gnav-menu{
    display: flex;
    justify-content: space-around;
}
.menu-item{
    list-style: none;
    font-weight: bold;
    font-size: 14px;
}

.menu-item a{
    text-decoration: none;
    color: black;
    position: relative;
}

.menu-item a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background: #000000;
    bottom: -5px;               /*アンダーラインがaタグの下端から現れる*/
    transform: scale(0, 1);     /*アンダーラインの縮尺比率。ホバー前はx方向に0*/
    transform-origin: left top; /*変形（アンダーラインの伸長）の原点がaタグ（各メニュー）の左端*/
    transition: transform 0.3s; /*変形の時間*/
}
    
.menu-item a:hover::after {
    transform: scale(1, 1);     /*ホバー後、x軸方向に1（相対値）伸長*/
}

.search-form-1 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    overflow: hidden;
    border: 2px solid #3D6ABF;
    border-radius: 3px;
    background: white;
    width: 270px;
    height: 32px;
    margin-top: 9px;
    margin-left: 30px;
}

.search-form-1 input {
    width: 220px;
    height: 32px;
    padding: 5px 5px;
    border: none;
    box-sizing: border-box;
    font-size: 1em;
    outline: none;
}

.search-form-1 input::placeholder{
    color: #777777;
}

.search-form-1 button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 50px;
    height: 45px;
    border: none;
    background-color: #3D6ABF;
    cursor: pointer;
    color: white;
}

.search-form-1 button::after {
    width: 24px;
    height: 24px;
}

.down{
    display: flex;
    width: 565px;
    height: 54px;
    border-radius: 57.5px;
    background: rgba(255, 255, 255, 0.8);
    border: 2px solid white;
    margin-top: 13px;
    margin-left: auto;
}

.phone{
    width: 220px;
    margin-top: 6px;
    margin-left: 10px;
}

.phone img{
    width: 100%;
}

.main-visual{
    width: 100%;
    margin-bottom: 100px;
}

.main-visual img{
    width: 100%;
}

.menu-wrap{
    width: 637px;
    height: 120px;
    display: flex;
    flex-direction: column;
}

.section1{
    width: 70%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
}

.section1 h2{
    font-family: "Hiragino Sans";
    font-weight: bold;
    font-size: 40px;
    text-align: center;
    color: #000;
    margin-bottom: 75px;
}

.section1-p{
    font-size: 14px;
    line-height: 25px;
    margin-bottom: 100px;
}

.section1_midashi{
    width: 100%;
}

.section1_midashi img{
    width: 100%;
}

.section1-1-content-wrap{
    width: 70%;
    display: flex;
    margin: 0 auto;
}

.section1-2-content-wrap{
    width: 70%;
    display: flex;
    margin: 0 auto;
}

.section1-content1{
    width: 45%;
    margin: 0 10% 0 0;
}

.section1-content1-photo{
    width: 100%;
    max-width: 500px;
    border-radius: 5px;
}

.section1-content1-photo img{
    width: 100%;
    max-height: 500px;
}

.section1-content2{
    width: 45%;
}

.section1-content2-photo{
    width: 100%;
    max-width: 500px;
}

.section1-content2-photo img{
    width: 100%;
    max-height: 500px;
}

.section1-1-content-wrap-tab{
    display: none;
}

.section1-2-content-wrap-tab{
    display: none;
}

.class_h3{
    font-family: "Hiragino Sans";
    font-weight: normal;
    font-size: 21px;
    text-align: center;
    color: rgb(255, 137, 137);
    margin: 20px 0;
}

li{
    list-style: none;
}

.Label {        /*タイトル*/
    padding: 1em;
    display: block;
    color: black;
    font-size: 40px;
    font-weight: bold;
    text-align: center;
 }
 .Label::before{     /*タイトル横の矢印*/
    content:"";
    width: 15px;
    height: 15px;
    border-top: 3px solid #000000;
    border-right: 3px solid #000000;
    -webkit-transform: rotate(45deg);
    position: absolute;
    top:calc( 50% - 3px );
    right: 20px;
    transform: rotate(135deg);
 }
 .Label,
 .content {
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    transform: translateZ(0);
    transition: all 0.3s;
 }
 .content {      /*本文*/
    height: 0;
    margin-bottom:10px;
    padding:0 20px;
    overflow: hidden;
 }
 .toggle:checked + .Label + .content {   /*開閉時*/
    height: auto;
    padding:20px ;
    transition: all .3s;
 }
 .toggle:checked + .Label::before {
    transform: rotate(-45deg) !important;
 }

 .toggle{
    display: none;
 }

.border{
    font-family: "Hiragino Sans";
    font-weight: bold;
    font-size: 21px;
    text-align: left;
    color: #020202;
    position: relative;
    padding-bottom: 10px;
    margin-bottom: 10px;
    border-bottom: 4px solid #D8D8D8;
}

.border::before{
    content: '';
    position: absolute;
    bottom: -4px;
    width: 20%;
    height: 4px;
    background: #1DC300;
}

.section3{
    width: 70%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    /* background-color: red; */
}

.section3 h2{
    font-family: "Hiragino Sans";
    font-weight: bold;
    font-size: 40px;
    text-align: center;
    color: #000;
    margin-bottom: 75px;
}

.section4{
    width: 70%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    /* background-color: red; */
}

.section4 h2{
    font-family: "Hiragino Sans";
    font-weight: bold;
    font-size: 40px;
    text-align: center;
    color: #000;
    margin-bottom: 75px;
}

.section4-1-content-wrap{
    width: 100%;
    display: flex;
    margin: 0 auto;
    text-align: center;
    /* background: #1DC300; */
}

.section4-content1{
    width: 35%;
    margin-right: 5%;
    position: relative;
}

.section4-content2{
     position: relative;
    width: 35%;
    /* margin: 0 10% 0 0; */
}

a.btn-border {
    display: inline-block;
    text-decoration: none;
    padding: 10px;
    border: 2px solid #000;
    border-radius: 0;
    background: #fff;
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 55%;
    font-size: clamp(14px, 1.2vw, 30px);
    white-space: nowrap;
    color: black;
  }
  
  a.btn-border:hover {
    color: #fff;
    background: #000;
  }

.section4-1-itemwrap{
    display: flex;
    width: 100%;
    justify-content: space-around;
    margin-bottom: 50px;
    /* background-color: red; */
}  

.section5{
    width: 70%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    /* padding-bottom: 80px; */
    /* background: #0099ff; */
    /* background-color: red; */
}

.section5 h2{
    font-family: "Hiragino Sans";
    font-weight: bold;
    font-size: 40px;
    text-align: center;
    color: #000;
    margin-bottom: 75px;
}

.section5-itemwrap{
    display: flex;
    justify-content: space-between;
    margin-bottom: 100px;
}

.section5-item{
    width: 30%;
    position: relative;
}

a.btn-border2 {
    display: inline-block;
    text-decoration: none;
    padding: 4px;
    border: 2px solid #000000;
    border-radius: 0;
    background: #fff;
    position: absolute;
    bottom: 5%;
    left: 50%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    width: 65%;
    font-size: clamp(13px, 1vw, 18px);
    white-space: nowrap;
    color: black;
    text-align: center;
  }
  
  a.btn-border2:hover {
    color: #fff;
    background: #000;
  }

.section6{
    width: 70%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    /* background-color: red; */
}

.section6 h2{
    font-family: "Hiragino Sans";
    font-weight: bold;
    font-size: 40px;
    text-align: center;
    color: #000;
    margin-bottom: 75px;
}

.border-box{
    display: flex;
}

.border1{
    background: #1DC300;
    width: 40px;
    font-size: 20px;
    text-align: center;
    color: white;
    font-weight: bold;
    padding-top: 5px;
}

.border2{
    background: black;
    color: white;
    width: 100%;
    font-size: 20px;
    padding: 5px;
    font-weight: bold;
}

.photo1{
    width: 50%;
    margin-top: 35px;
    max-width: 350px;
    min-width: 270px;
    margin-bottom: 60px;
}

.photo1 img{
    width: 100%;
}

.photo1-p{
    margin-top: 60px;
    width: 780px;
    font-size: 15px;
    margin-left: 30px;
}

.photo-wrap{
    display: flex;
    justify-content: space-between;
}

.section7{
    width: 70%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto;
    /* background-color: red; */
}

.section7 h2{
    font-family: "Hiragino Sans";
    font-weight: bold;
    font-size: 40px;
    text-align: center;
    color: #000;
    margin-bottom: 75px;
    margin-top: 40px;
}

.photo2-wrap{
    width: 40%;
}

.photo2{
    width:  100%;
}

.photo2 img{
    width: 100%;
}

.section7-wrap{
    display: flex;
    justify-content: space-around;
    margin-bottom: 70px;
}

.howling{
    width: 70%;
    margin: 50px auto 0 auto;
    /* text-align: center; */
}

.howling h4{
    font-size: 25px;
    text-align: center;
}

.howling-photo{
    width: 100%;
    margin: 35px auto;
}

.howling-photo img{
    width: 100%;
 
}

.section8{
    width: 70%;
    max-width: 1200px;
    height: auto;
    margin: 0 auto 70px auto;
    /* background-color: red; */
}

.section8 h2{
    font-family: "Hiragino Sans";
    font-weight: bold;
    font-size: 40px;
    text-align: center;
    color: #000;
    margin-bottom: 75px;
    padding-top: 30px;
}

.section8 p{
    font-size: 14px;
    line-height: 27px;
}

.border2-box{
    font-family: "Hiragino Sans";
    font-size: 25px;
    position: relative;
    width: 100%;
    padding-top: 5px;
    padding-left: 40px;
    background: linear-gradient(#fff 0%, rgba(167, 167, 167, 0.3) 100%, #808080 100%);
    margin-bottom: 30px;
    font-weight: 600;
    margin-top: 60px;
}

.border2-box::before{
    content: '';
    position: absolute;
    left: 0;
    width: 10px;
    height: 38px;
    background: #1DC300;
}

.border2-box-p{
    font-family: "Hiragino Sans";
    font-size: 15px;
    margin-bottom: 60px;
}



.table-wrap{
    display: flex;
}

.table{
    text-align: center;
    background: #95FF83;
    width: 260px;
    height: 110px;
    padding-top: 30px;
    margin-right: 20px;
    margin-bottom: 3px;
    min-width: 260px;
}

.table-mini{
    text-align: center;
    background: #95FF83;
    width: 260px;
    height: 110px;
    padding-top: 45px;
    margin-right: 20px;
    margin-bottom: 3px;
    min-width: 260px;
}

.table-wrap p{
    margin-top: 30px;
}
 
.mitumori-box{
    width: 100%;
    margin-bottom: 35px;
}

.mitumori-box img{
    width: 100%;
}

.kiyaku{
    background: #000;
    text-decoration: none;
    color: white;
    font-weight: 700;
    display: inline-block;
    margin-top: 35px;
    padding: 13px;
    margin-bottom: 35px;
}

.section8 h3{
    font-size: 21px;
}

.section8-h3{
    text-align: left;
    font-size: 21px;
    font-weight: 700;
    color: black;
    margin-top: 35px;
}

.border3{
    border: 1px solid black;
    margin: 50px 0;
}

.mail-box{
    width: 100%;
    margin: 35px 0 50px 0;
}

.mail-box img{
    width: 100%;
}

.section9{
    width: 50%;
    max-width: 900px;
    height: auto;
    margin: 0 auto 50px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* background-color: red; */
}

.section9 h2{
    font-family: "Hiragino Sans";
    font-weight: bold;
    font-size: 40px;
    text-align: center;
    color: #000;
    margin-bottom: 75px;
    padding-top: 30px;
}

/* .QA-box{
    display: flex;
    flex-direction: column;
    justify-content: center;
} */

.qa-1 {
    width: 100%;
    /* max-width: 900px; */
    margin-bottom: 7px;
    background: rgb(247, 247, 247);
    border-radius: 15px;
    margin-bottom: 40px;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.qa-1 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 2em 1em 3em;
    color: #333333;
    font-weight: 600;
    cursor: pointer;
}

.qa-1 summary::before,
.qa-1 p::before {
    position: absolute;
    left: 1em;
    font-weight: 600;
    font-size: 1.3em;
}

.qa-1 summary::before {
    color: #00CC30;
    content: "Q";
}

.qa-1 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #333333b3;
    border-right: 3px solid #333333b3;
    content: '';
    transition: transform .5s;
}

.qa-1[open] summary::after {
    transform: rotate(225deg);
}

.qa-1 p {
    position: relative;
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 3em 1.5em;
    color: #333;
    transition: transform .5s, opacity .5s;
}

.qa-1[open] p {
    transform: none;
    opacity: 1;
}

.qa-1 p::before {
    color: #ff8d8d;
    line-height: 1.2;
    content: "A";
}

.section10{
    width: 75%;
    max-width: 900px;
    height: auto;
    margin: 0 auto 50px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* background-color: red; */
}

.section10 h2{
    font-family: "Hiragino Sans";
    font-weight: bold;
    font-size: 40px;
    text-align: center;
    color: #000;
    margin-bottom: 75px;
    padding-top: 30px;
}

.resultsphoto-wrap{
    display: flex;
}

.resultsphoto{
    width: 800px;
    min-width: 525px;
    margin-right: 30px;
}

.resultsphoto img{
    width: 100%;
}

.item-box{
    display: flex;
    flex-direction: column;
    /* margin-top: 12px; */
}

.item-box p{
    font-size: 14px;
    padding: 10px 0;
    box-sizing: border-box;
}

.place{
    width: 170px;
    height: 30px;
    background: #3C8FFF;
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.purpose{
    width: 170px;
    height: 30px;
    background: #FFA945;
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.item{
    width: 170px;
    height: 30px;
    background: #40E84D;
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    padding-left: 10px;
}

.staff-box{
    margin-top: 20px;
    display: flex;
    margin-bottom: 100px;
}

.staff-coment{
    width: 200px;
    height: 30px;
    background: #40E84D;
    color: white;
    font-weight: 700;
    display: flex;
    align-items: center;
    padding-left: 10px; 
    margin-left: 20px;
}

.staff-coments{
    font-size: 14px;
    margin-left: 20px;
    margin-top: 10px;
}

.resutsphoto-btn{
    font-size: 20px;
    text-decoration: none;
    color: white;
    background-color: #00cc30ca;
    padding: 10px;
    width: 250px;
    text-align: center;
    border-radius: 50px;
    margin: 0 auto;
}

.resutsphoto-btn:hover{
    background-color: #01b72c;
}

.section11{
    width: 70%;
    max-width: 900px;
    height: auto;
    margin: 0 auto 50px auto;
    display: flex;
    flex-direction: column;
    justify-content: center;
    /* background-color: red; */
}

.section11 h2{
    font-family: "Hiragino Sans";
    font-weight: bold;
    font-size: 40px;
    text-align: center;
    color: #000;
    margin-bottom: 75px;
    padding-top: 30px;
}

.aktphoto{
    width: 100%;
}

.aktphoto img{
    width: 100%;
}

.box-img{
    width: 100%;
}

.box-img img{
    width: 100%;
}

.global-footer{
    width: 100%;
    background-color: #333333;
    height: auto;
    padding-top: 80px;
    display: flex;
    flex-wrap: wrap;
}

.footer-inner{
    width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
}

/* 親要素 */
.box-parent { 
    width: 79%;
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap; /* 折返し可 */ 
    justify-content: space-between;
}

/* 子要素 */
.box-child { 
    /* max-width: 220px; */
    width: 245px ; /* 親要素の1/4より小さい値 */
    box-sizing: border-box;
    margin-right: 0.7%;
}

.box-child h2{
    color: white;
    font-size: 15px;
}

.box-text{
    font-size: 14px;
    color: white;
    margin-bottom: 50px;
}

/* 親要素の疑似要素 */
.box-parent::after {
    content: "";
    display:block;
    margin-right: 0.7%;
    box-sizing: border-box;
    width: 245px; /* 子要素と同じ幅 */
}
.box-parent::before { 
    content: ""; 
    display:block; 
    box-sizing: border-box;
    margin-right: 0.7%;
    width: 245px; /* 子要素と同じ幅 */
    order: 1; /* アイテムの並び順 */
}

/* 子要素 */
.box-child { 
    @media (max-width: 1299px) {
        width: 32% ; /* 親要素の1/4より小さい値 */
        box-sizing: border-box;
        margin-right: 0.7%;   
    }
}

.box-child h2{
    color: white;
    font-size: 15px;
}

.box-text{
    margin-top: 15px;
    font-size: 14px;
    color: white;
}

/* 親要素の疑似要素 */
.box-parent::after {
    content: "";
    display:block;
    margin-right: 0.7%;
    box-sizing: border-box;
    width: 245px; /* 子要素と同じ幅 */
}
.box-parent::before { 
    content: ""; 
    display:block; 
    box-sizing: border-box;
    margin-right: 0.7%;
    width: 245px; /* 子要素と同じ幅 */
    order: 1; /* アイテムの並び順 */
}

.footer-mitbox{
    width: 85%;
    margin: 70px auto;
    max-width: 1500px;
    display: flex;
    justify-content: space-between;
}

.left-contents{
    width: 20%;
}

.footer-logo{
    /* width: 20%; */
    background: white;
    padding: 15px 20px;
    border-radius: 50px;
    margin-bottom: 35px;
}

.footer-logo img{
    width: 100%;
}

.sns-box{
    /* background-color: #00CC30; */
    display: flex;
    justify-content: space-between;
}

.sns-photo{
    width: 27%;
    box-sizing: border-box;
}

.sns-photo img{
    width: 100%;
}

.event21link{
    display: flex;
    flex-direction: row;
}

.footer-item a{
    text-decoration: none;
    color: white;
    font-size: 14px;
}




.footer-phone{
    /* width: 25%; */
    padding: 15px 15px 0 15px;
    background: #1D1D1D;
    border-radius: 20px;
}

.kanto-phone{
    display: flex;
}

.phone-back{
    background: white;
    font-size: 14px;
    padding: 5px;
    margin-bottom: 15px; 
    margin-right: 10px;
}

.phone-text{
    color: white;
    font-size: 20px;
    font-weight: 700;
}

.link-menu{
    margin-right: 35px;
}

.footer-text{
    width: 100%;
    margin-right: auto;
    text-align: center;
    color: white;

}

.footer-text p{
    margin-top: 10px;
}

.p-h4{
    font-weight: 700;
}

.y{
    color: #0099ff;
}

.copyright{
    color: gainsboro;
    text-align: center; 
}

.ppp{
    text-align: center;
    width: 100%;
    margin-bottom: 10px;
}

.global-footer{
    width: 100%;
}

.box-img{
    margin-top: 5px;
}













/*リンクの形状*/
#page-top a{
	display: flex;
	justify-content:center;
	align-items:center;
	background:#000000;
	border-radius: 60px;
	width: 120px;
	height: 120px;
	color: #fff;
	text-align: center;
	text-transform: uppercase; 
	text-decoration: none;
	font-size:0.6rem;
	transition:all 0.3s;
    font-size: 20px
}

#page-top a:hover{
	background: #777;
}

/*リンクを右下に固定*/
#page-top {
	position: fixed;
	right: 10px;
	bottom:10px;
	z-index: 2;
    /*はじめは非表示*/
	opacity: 0;
	transform: translateY(130px);
}

/*　上に上がる動き　*/

#page-top.UpMove{
	animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 0;
	transform: translateY(130px);
  }
  to {
    opacity: 1;
	transform: translateY(0);
  }
}

/*　下に下がる動き　*/

#page-top.DownMove{
	animation: DownAnime 0.5s forwards;
}
@keyframes DownAnime{
  from {
  	opacity: 1;
	transform: translateY(0);
  }
  to {
  	opacity: 1;
	transform: translateY(130px);
  }
}
#g-nav{
   display: none;
}

.content-box{
    display: flex;
}

.content-boxitem{
    width: 30%; 
    height: 200px; 
    min-width: 300px; 
    margin-bottom: 70px;
}

.content-boxitem-text{
    margin-left: 7%;
}

.section4-1-content-wrap-tab{
    display: none;
}

.sec4-tyui{
    background: pink; 
    width: 60%;
    margin: 0 auto;
    padding: 12px 0;
    border-radius: 10px; 
    margin-bottom: 25px; 
    font-size: 14px; 
    max-width: 200px;
}

.mice-wrap{
    display: none;
}

.main-visual-tab{
    display: none;
}

.main-visual-sumaho{
    display: none;
}
}






















/* タブレット */
@media screen and (min-width:541px) and (max-width:1023px) {



    .global-header{
        width: 100%;
        height: auto;
        padding: 15px 0;
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        position: fixed;
        z-index: 9999;
    }

    

    .logo{
        z-index: 9999;
    }
    
    .logo a{
        width: 200px;
        height: 54px;
        border-radius: 39.5px;
        background: rgba(255, 255, 255, 0.8);
        display: flex;
        justify-content: center;
        align-items: center;
        border: solid 2px white;
        margin-left: 50px;
        z-index: 9999;
    }
    
    .logo img{
        width: 70%;
    }
    
    .menu-wrap{
        display: none;
    }
    
    .gnav{
        /* width: 637px;
        height: 54px;
        border-radius: 57.5px;
        background: rgba(255, 255, 255, 0.8);
        border: 2px solid white;
        padding: 14px; */
        display: none;
    }
   
    
    .search-form-1 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        overflow: hidden;
        
        border-radius: 3px;
        background: rgb(230, 230, 230);
        width: 90%;
        min-width: 350px;
        height: 32px;
        position: absolute;
        top: 55%;
        z-index: 9999;
        left: 50%;
    transform: translate(-50%, -50%);
    }
    
    .search-form-1 input {
        width: 300px;
        height: 32px;
        padding: 5px 10px;
        border: none;
        box-sizing: border-box;
        font-size: 1em;
        outline: none;
    }
    
    .search-form-1 input::placeholder{
        color: #777777;
    }
    
    .search-form-1 button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 45px;
        border: none;
        background: rgb(230, 230, 230);
        cursor: pointer;
        color: #777777;
        min-width: 50px;
    }
    
    .search-form-1 button::after {
        width: 24px;
        height: 24px;
    }
    
    .down{
        display: flex;
        width: 565px;
        height: 54px;
        border-radius: 57.5px;
        background: rgba(255, 255, 255, 0.8);
        border: 2px solid white;
        margin-top: 13px;
        margin-left: auto;
        display: none;
    }
    
    .phone{
        position: absolute;
        top: 70%;
        width: 250px;
        left: 50%;
    transform: translate(-50%, -50%);
    }
    
    .phone img{
        width: 100%;
    }
    
    .main-visual{
        width: 100%;
        margin-bottom: 100px;
        display: none;
    }
    
    .main-visual img{
        width: 100%;
    }

    .main-visual-tab{
        width: 100%;
        margin-bottom: 50px;
    }

    .main-visual-sumaho{
        display: none;
    }

    
    
    .main-visual-tab img{
        width: 100%;
    }
    
    .menu-wrap{
        width: 637px;
        height: 120px;
        display: none;
        flex-direction: column;
    }
    
    .section1{
        width: 85%;
        max-width: 1200px;
        height: auto;
        margin: 0 auto;
    }
    
    .section1 h2{
        font-family: "Hiragino Sans";
        font-weight: bold;
        font-size: 30px;
        text-align: center;
        color: #000;
        margin-bottom: 75px;
    }

    .section1-content1-p-tab{
        width: 95%;
    }
    .section1-content1-h3{
        font-size: 17px;
        color: #333333;
        font-weight: 600;
        margin-top: 0;
        margin-bottom: 10px;
    }
    
    .section1-p{
        font-size: 14px;
        line-height: 25px;
        margin-bottom: 50px;
    }
    
    .section1_midashi{
        width: 100%;
        display: none;
    }
    
    .section1_midashi img{
        width: 100%;
    }
    
    .section1-1-content-wrap{
        width: 70%;
 
        margin: 0 auto;
        display: none;
    }
    
    .section1-2-content-wrap{
        width: 70%;
        display: none;
        margin: 0 auto;
    }

    .section1-1-content-wrap-tab{
        /* background: #0099ff; */
        display: flex;
        justify-content: space-between;
   }

   .section1-2-content-wrap-tab{
    /* background: #0099ff; */
    display: flex;
    justify-content: space-between;
}

   .section1-content1-tab{
        width: 100%;

   }

   .section1-content1-photo-tab{
        width: 95%;
        margin-right: 10%;
   }

   .section1-content1-photo-tab img{
        width: 100%;
   }
    
    .section1-content1{
        width: 70%;
        margin: 0 10% 0 0;
        display: flex;
        display: none;
    }
    
    .section1-content1-photo{
        width: 50%;

        border-radius: 5px;
    }
    
    .section1-content1-photo img{
        width: 100%;
   
    }
    
    .section1-content2{
        width: 45%;
        display: none;
    }
    
    .section1-content2-photo{
        width: 100%;
        max-width: 500px;
    }
    
    .section1-content2-photo img{
        width: 100%;
        max-height: 500px;
    }
    
    .class_h3{
        font-family: "Hiragino Sans";
        font-weight: normal;
        font-size: 21px;
        text-align: center;
        color: rgb(255, 137, 137);
        margin: 20px 0;
    }
    
    li{
        list-style: none;
    }
    
    .Label {        /*タイトル*/
        padding: 1em;
        display: block;
        color: black;
        font-size: 30px;
        font-weight: bold;
        text-align: center;
     }
     .Label::before{     /*タイトル横の矢印*/
        content:"";
        width: 15px;
        height: 15px;
        border-top: 3px solid #000000;
        border-right: 3px solid #000000;
        -webkit-transform: rotate(45deg);
        position: absolute;
        top:calc( 50% - 3px );
        right: 20px;
        transform: rotate(135deg);
     }
     .Label,
     .content {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transform: translateZ(0);
        transition: all 0.3s;
     }
     .content {      /*本文*/
        height: 0;
        margin-bottom:10px;
        padding:0 20px;
        overflow: hidden;
     }
     .toggle:checked + .Label + .content {   /*開閉時*/
        height: auto;
        padding:20px ;
        transition: all .3s;
     }
     .toggle:checked + .Label::before {
        transform: rotate(-45deg) !important;
     }
    
     .toggle{
        display: none;
     }
    
    .border{
        font-family: "Hiragino Sans";
        font-weight: bold;
        font-size: 21px;
        text-align: left;
        color: #020202;
        position: relative;
        padding-bottom: 10px;
        margin-bottom: 10px;
        border-bottom: 4px solid #D8D8D8;
    }
    
    .border::before{
        content: '';
        position: absolute;
        bottom: -4px;
        width: 20%;
        height: 4px;
        background: #1DC300;
    }

    .content-box2{
        display: flex;
    }

    .content-boxitem-text2{
        margin-left: 5%;
        width: 50%;
        margin-top: 0;
    }

    .content-boxitem-text2 h3{
        color: #333333;
        font-size: 16px;
        font-weight: 600;
        margin-top: 0;
    }

    .content-box2-img{
        width: 50%;
        max-width: 350px;
    }

    .content-box2-img img{
        width: 100%;
    }

    @media screen and (max-width: 775px){
        .content-boxitem-text2{
            margin-top: 30px;
            margin-left: 0;
            margin-bottom: 30px;
            width: 100%;
        }
    
        .border{
            font-size: 15px;
        }

        .content-box2{
            display: flex;
            flex-direction: column;
        }

        .content-box2-img{
            width: 100%;
            margin: 0 auto;
        }
    
        .content-box2-img img{
            width: 100%;
        }
    }

    @media screen and (max-width: 875px){

        .content-boxitem-text{
            margin-top: 30px;
            margin-left: 0;
            margin-bottom: 30px;
        }
    
        .border{
            font-size: 15px;
        }

        .content-box{
            display: flex;
            flex-direction: column;
        }

        .Label {        /*タイトル*/
            padding: 1em;
            display: block;
            color: black;
            font-size: 30px;
            font-weight: bold;
            text-align: center;
         }
         .Label::before{     /*タイトル横の矢印*/
            content:"";
            width: 15px;
            height: 15px;
            border-top: 3px solid #000000;
            border-right: 3px solid #000000;
            -webkit-transform: rotate(45deg);
            position: absolute;
            top:calc( 50% - 3px );
            right: 20px;
            transform: rotate(135deg);
         }
         .Label,
         .content {
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            transform: translateZ(0);
            transition: all 0.3s;
         }
         .content {      /*本文*/
            height: 0;
            margin-bottom:10px;
            padding:0 20px;
            overflow: hidden;
         }
         .toggle:checked + .Label + .content {   /*開閉時*/
            height: auto;
            padding:20px ;
            transition: all .3s;
         }
         .toggle:checked + .Label::before {
            transform: rotate(-45deg) !important;
         }
        
         .toggle{
            display: none;
         }
        
        .border{
            font-family: "Hiragino Sans";
            font-weight: bold;
            font-size: 21px;
            text-align: left;
            color: #020202;
            position: relative;
            padding-bottom: 10px;
            margin-bottom: 10px;
            border-bottom: 4px solid #D8D8D8;
        }
        
        .border::before{
            content: '';
            position: absolute;
            bottom: -4px;
            width: 20%;
            height: 4px;
            background: #1DC300;
        }

        .content-boxitem{
            width: 100%;
            margin: 0 auto;
        }
    }
    
    .section3{
        width: 85%;
        max-width: 1200px;
        height: auto;
        margin: 0 auto;
        /* background-color: red; */
    }
    
    .section3 h2{
        font-family: "Hiragino Sans";
        font-weight: bold;
        font-size: 30px;
        text-align: center;
        color: #000;
        margin-bottom: 75px;
    }
    
    .section4{
        width: 85%;
        max-width: 1200px;
        height: auto;
        margin: 0 auto;
        /* background-color: red; */
    }
    
    .section4 h2{
        font-family: "Hiragino Sans";
        font-weight: bold;
        font-size: 30px;
        text-align: center;
        color: #000;
        margin-bottom: 75px;
    }
    
    .section4-1-content-wrap{
        width: 100%;
        display: flex;
        margin: 0 auto;
        text-align: center;
        /* background: #1DC300; */
        display: none;
    }

    .section4-1-content-wrap-tab{
        width: 100%;
        display: flex;
        margin: 0 auto;
        text-align: center;
    }

    .section4-1-itemwrap-tab{
        width: 100%;
        margin-bottom: 50px;
    }
    
    .section4-content1-tab{
        width: 100%;
        align-items: center;
        display: flex;
        justify-content: space-between;
        margin-bottom: 50px;
    }
    
    .section4-content2{
         position: relative;
        width: 35%;
        /* margin: 0 10% 0 0; */
    }

    .section4-content1-photo-tab{
        max-width: 250px;
        width: 50%;
        min-width: 180px;
    }

    .section4-content1-photo-tab img{
        width: 100%;
    }

    .sec4tab-btn{
        width: 100%;
        max-width: 600px;
    }

    .sec4-tyui{
        background: pink; 
        width: 70%;
        margin: 0 auto;
        padding: 12px 0;
        border-radius: 10px; 
        margin-bottom: 25px; 
        font-size: 14px; 
        max-width: 200px;
    }
    
    a.btn-border {
        display: inline-block;
        text-decoration: none;
        padding: 10px;
        border: 2px solid #000;
        border-radius: 0;
        background: #fff;
        width: 90%;
        font-size: clamp(14px, 1.2vw, 30px);
        white-space: nowrap;
        color: black;
        margin-right: 0;
        min-width: 220px;
      }
      
      a.btn-border:hover {
        color: #fff;
        background: #000;
      }
    
    .section4-1-itemwrap{
       
        width: 100%;

        margin-bottom: 50px;
        /* background-color: red; */
    }  
    
    .section5{
        width: 85%;
        max-width: 1200px;
        height: auto;
        margin: 0 auto;
        /* padding-bottom: 80px; */
        /* background: #0099ff; */
        /* background-color: red; */
    }
    
    .section5 h2{
        font-family: "Hiragino Sans";
        font-weight: bold;
        font-size: 30px;
        text-align: center;
        color: #000;
        margin-bottom: 75px;
    }
    
    .section5-itemwrap{
        display: flex;
        justify-content: space-between;
        margin-bottom: 100px;
        display: none;
    }
    
    .section5-item{
        width: 30%;
        position: relative;
    }
    
    a.btn-border2 {
        display: inline-block;
        text-decoration: none;
        padding: 4px;
        border: 2px solid #000000;
        border-radius: 0;
        background: #fff;
        position: absolute;
        bottom: 5%;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        width: 65%;
        font-size: clamp(13px, 1vw, 18px);
        white-space: nowrap;
        color: black;
        text-align: center;
      }
      
      a.btn-border2:hover {
        color: #fff;
        background: #000;
      }
    
    .section6{
        width: 70%;
        max-width: 1200px;
        height: auto;
        margin: 0 auto;
        /* background-color: red; */
    }
    
    .section6 h2{
        font-family: "Hiragino Sans";
        font-weight: bold;
        font-size: 30px;
        text-align: center;
        color: #000;
        margin-bottom: 75px;
    }
    
    .border-box{
        display: flex;
    }
    
    .border1{
        background: #1DC300;
        width: 40px;
        font-size: 18px;
        text-align: center;
        color: white;
        font-weight: bold;
        padding-top: 5px;
    }
    
    .border2{
        background: black;
        color: white;
        width: 100%;
        font-size: 18px;
        padding: 5px;
        font-weight: bold;
    }
    
    .photo1{
        width: 45%;
        margin-top: 35px;
        max-width: 350px;
        margin-bottom: 20px;
        display: flex;
        justify-content: space-between;
    }
    
    .photo1 img{
        width: 100%;
    }
    
    .photo1-p{
        margin-bottom: 50px;
        width: 100%;
        font-size: 15px;
    }

    .tab-sec6{
        margin-right: 20%;
    }
    
    
    .section7{
        width: 85%;
        max-width: 1200px;
        height: auto;
        margin: 0 auto;
        /* background-color: red; */
    }
    
    .section7 h2{
        font-family: "Hiragino Sans";
        font-weight: bold;
        font-size: 30px;
        text-align: center;
        color: #000;
        margin-bottom: 75px;
        margin-top: 40px;
    }
    
    .photo2-wrap{
        max-width: 300px;

        margin-right: 10px;
        margin-bottom: 30px;
    }

    .photo2-wrap h3{
        font-size: 17px;
    }
    
    .photo2{
        width:  100%;
    }
    
    .photo2 img{
        width: 100%;
    }
    
    .section7-wrap{
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
    
    .howling{
        width: 85%;
        margin: 50px auto 0 auto;
        /* text-align: center; */
    }
    
    .howling h4{
        font-size: 25px;
        text-align: center;
    }
    
    .howling-photo{
        width: 100%;
        margin: 35px auto;
    }
    
    .howling-photo img{
        width: 100%;
     
    }
    
    .section8{
        width: 85%;
        max-width: 1200px;
        height: auto;
        margin: 0 auto 70px auto;
        /* background-color: red; */
    }
    
    .section8 h2{
        font-family: "Hiragino Sans";
        font-weight: bold;
        font-size: 30px;
        text-align: center;
        color: #000;
        margin-bottom: 75px;
        padding-top: 30px;
    }
    
    .section8 p{
        font-size: 14px;
        line-height: 27px;
    }
    
    .border2-box{
        font-family: "Hiragino Sans";
        font-size: 20px;
        position: relative;
        width: 100%;
        padding-top: 5px;
        padding-left: 20px;
        background: linear-gradient(#fff 0%, rgba(167, 167, 167, 0.3) 100%, #808080 100%);
        margin-bottom: 30px;
        font-weight: 600;
        margin-top: 60px;
    }
    
    .border2-box::before{
        content: '';
        position: absolute;
        left: 0;
        width: 10px;
        height: 30px;
        background: #1DC300;
    }
    
    .border2-box-p{
        font-family: "Hiragino Sans";
        font-size: 15px;
        margin-bottom: 60px;
    }
    
    
    .table-wrap{
        display: flex;
    }
    
    .table{
        text-align: center;
        background: #95FF83;
        width: 230px;
        height: 110px;
        padding-top: 30px;
        margin-right: 20px;
        margin-bottom: 3px;
        min-width: 230px;
    }
    
    .table-mini{
        text-align: center;
        background: #95FF83;
        width: 230px;
        height: 110px;
        padding-top: 45px;
        margin-right: 20px;
        margin-bottom: 3px;
        min-width: 230px;
    }
     
    .mitumori-box{
        width: 100%;
        margin-bottom: 35px;
    }
    
    .mitumori-box img{
        width: 100%;
    }
    

    
    .kiyaku{
        background: #000;
        text-decoration: none;
        color: white;
        font-weight: 700;
        display: inline-block;
        margin-top: 35px;
        padding: 13px;
        margin-bottom: 35px;
    }
    

    
    .border3{
        border: 1px solid black;
        margin: 50px 0;
    }
    
    .mail-box{
        width: 100%;
        margin: 35px 0 50px 0;
    }
    
    .mail-box img{
        width: 100%;
    }
    
    .section9{
        width: 80%;
        max-width: 900px;
        height: auto;
        margin: 0 auto 50px auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* background-color: red; */
    }
    
    .section9 h2{
        font-family: "Hiragino Sans";
        font-weight: bold;
        font-size: 30px;
        text-align: center;
        color: #000;
        margin-bottom: 75px;
        padding-top: 30px;
    }
    
    /* .QA-box{
        display: flex;
        flex-direction: column;
        justify-content: center;
    } */
    
    .qa-1 {
        width: 100%;
        /* max-width: 900px; */
        margin-bottom: 7px;
        background: rgb(247, 247, 247);
        border-radius: 15px;
        margin-bottom: 40px;
        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    }
    
    .qa-1 summary {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        padding: 1em 2em 1em 3em;
        color: #333333;
        font-weight: 600;
        cursor: pointer;
    }
    
    .qa-1 summary::before,
    .qa-1 p::before {
        position: absolute;
        left: 1em;
        font-weight: 600;
        font-size: 1.3em;
    }
    
    .qa-1 summary::before {
        color: #00CC30;
        content: "Q";
    }
    
    .qa-1 summary::after {
        transform: translateY(-25%) rotate(45deg);
        width: 7px;
        height: 7px;
        margin-left: 10px;
        border-bottom: 3px solid #333333b3;
        border-right: 3px solid #333333b3;
        content: '';
        transition: transform .5s;
    }
    
    .qa-1[open] summary::after {
        transform: rotate(225deg);
    }
    
    .qa-1 p {
        position: relative;
        transform: translateY(-10px);
        opacity: 0;
        margin: 0;
        padding: .3em 3em 1.5em;
        color: #333;
        transition: transform .5s, opacity .5s;
    }
    
    .qa-1[open] p {
        transform: none;
        opacity: 1;
    }
    
    .qa-1 p::before {
        color: #ff8d8d;
        line-height: 1.2;
        content: "A";
    }
    
    .section10{
        width: 85%;
        max-width: 900px;
        height: auto;
        margin: 0 auto 50px auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* background-color: red; */
    }
    
    .section10 h2{
        font-family: "Hiragino Sans";
        font-weight: bold;
        font-size: 30px;
        text-align: center;
        color: #000;
        margin-bottom: 75px;
        padding-top: 30px;
    }
    
    .resultsphoto-wrap{
        display: flex;
    }
    
    .resultsphoto{
        width: 50%;
        min-width: 240px;
        margin-right: 20px;
    }
    
    .resultsphoto img{
        width: 100%;
    }
    
    .item-box{
        display: flex;
        flex-direction: column;
        /* margin-top: 12px; */
    }
    
    .item-box p{
        font-size: 14px;
        padding: 10px 0;
        box-sizing: border-box;
    }
    
    .place{
        width: 170px;
        height: 20px;
        /* background: #3C8FFF; */
        color: rgb(0, 0, 0);
        font-weight: 700;
        display: flex;
        align-items: center;
        font-size: 15px;
    }
    
    .purpose{
        width: 170px;
        /* height: 20px;
        background: #FF4545; */
        color: rgb(0, 0, 0);
        font-weight: 700;
        display: flex;
        align-items: center;
        font-size: 15px;
    }
    
    .item{
        width: 170px;
        height: 20px;
        /* background: #FFA945; */
        color: rgb(0, 0, 0);
        font-weight: 700;
        display: flex;
        align-items: center;
        font-size: 15px;
    
    }
    
    .staff-box{
        margin-top: 20px;
        display: flex;
        margin-bottom: 100px;
    }
    
    .staff-coment{
        width: 200px;
        height: 30px;
        background: #3adf47;
        color: white;
        font-weight: 700;
        display: flex;
        align-items: center;
        padding-left: 10px; 
        margin-left: 20px;
    }
    
    .staff-coments{
        font-size: 13px;
        margin-left: 20px;
        margin-top: 5px;
    }
    
    .resutsphoto-btn{
        font-size: 20px;
        text-decoration: none;
        color: white;
        background-color: #00cc30ca;
        padding: 10px;
        width: 250px;
        text-align: center;
        border-radius: 50px;
        margin: 0 auto;
    }
    
    .resutsphoto-btn:hover{
        background-color: #01b72c;
    }
    
    .section11{
        width: 70%;
        max-width: 900px;
        height: auto;
        margin: 0 auto 50px auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* background-color: red; */
    }
    
    .section11 h2{
        font-family: "Hiragino Sans";
        font-weight: bold;
        font-size: 30px;
        text-align: center;
        color: #000;
        margin-bottom: 75px;
        padding-top: 30px;
    }
    
    .aktphoto{
        width: 100%;
    }
    
    .aktphoto img{
        width: 100%;
    }
    
    .box-img{
        width: 100%;
    }
    
    .box-img img{
        width: 100%;
    }



    
    .global-footer{
        width: 100%;
        background-color: #333333;
        height: auto;
        padding-top: 80px;
        display: flex;
        flex-wrap: wrap;
    }
    
    .footer-inner{
        width: 1000px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap;
    }
    
    /* 親要素 */
    .box-parent { 
        width: 79%;
        max-width: 1000px;
        margin: 0 auto;
        display: flex;
        flex-wrap: wrap; /* 折返し可 */ 
        justify-content: space-between;
    }
    
    /* 子要素 */
    .box-child { 
        max-width: 235px;
        width: 40% ; /* 親要素の1/4より小さい値 */
        box-sizing: border-box;
        margin-right: 0.7%;
    }
    
    .box-child h2{
        color: white;
        font-size: 15px;
    }
    
    .box-text{
        font-size: 14px;
        color: white;
        margin-bottom: 50px;
    }
    
    /* 親要素の疑似要素 */
    .box-parent::after {
        content: "";
        display:block;
        margin-right: 0.7%;
        box-sizing: border-box;
        width: 305px; /* 子要素と同じ幅 */
    }
    .box-parent::before { 
        content: ""; 
        display:block; 
        box-sizing: border-box;
        margin-right: 0.7%;
        width: 305px; /* 子要素と同じ幅 */
        order: 1; /* アイテムの並び順 */
    }
    
    /* 子要素 */
    .box-child { 
        @media (max-width: 915px) {
            max-width: 300px ;
            width: 45%;
            min-width: 200px; /* 親要素の1/4より小さい値 */
            box-sizing: border-box;
            margin-right: 0.7%;   
        }
    }
    
    .box-child h2{
        color: white;
        font-size: 15px;
        letter-spacing: -1px;
    }
    
    .box-text{
        margin-top: 15px;
        font-size: 14px;
        color: white;
    }
    
    /* 親要素の疑似要素 */
    .box-parent::after {
        content: "";
        display:block;
        margin-right: 0.7%;
        box-sizing: border-box;
        width: 200px; /* 子要素と同じ幅 */
    }
    .box-parent::before { 
        content: ""; 
        display:block; 
        box-sizing: border-box;
        margin-right: 0.7%;
        width: 200px; /* 子要素と同じ幅 */
        order: 1; /* アイテムの並び順 */
    }
    
    .footer-mitbox{
        width: 85%;
        margin: 70px auto;
        max-width: 900px;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }
    
    .left-contents{
        width: 40%;
        min-width: 300px;
        max-width: 450px;
        margin-bottom: 30px;
    }
    
    .footer-logo{
        /* width: 20%; */
        background: white;
        padding: 15px 20px;
        border-radius: 50px;
        margin-bottom: 35px;
    }
    
    .footer-logo img{
        width: 100%;
    }
    
    .sns-box{
        /* background-color: #00CC30; */
        display: flex;
        justify-content: space-between;
    }
    
    .sns-photo{
        width: 27%;
        box-sizing: border-box;
    }
    
    .sns-photo img{
        width: 100%;
    }
    
    .event21link{
        display: flex;
        flex-direction: row;
        margin-bottom: 30px;
        margin-left: 15px;
    }
    
    .footer-item a{
        text-decoration: none;
        color: white;
        font-size: 14px;
    }
    
    .footer-phone{
        /* width: 25%; */
        padding: 15px 15px 0 15px;
        background: #1D1D1D;
        border-radius: 20px;
    }
    
    .kanto-phone{
        display: flex;
    }
    
    .phone-back{
        background: white;
        font-size: 14px;
        padding: 5px;
        margin-bottom: 15px; 
        margin-right: 10px;
    }
    
    .phone-text{
        color: white;
        font-size: 20px;
        font-weight: 700;
    }
    
    .link-menu{
        margin-right: 35px;
    }
    
    .footer-text{
        width: 100%;
        margin-right: auto;
        text-align: center;
        color: white;
    
    }
    
    .footer-text p{
        margin-top: 10px;
    }
    
    .p-h4{
        font-weight: 700;
    }
    
    .y{
        color: #0099ff;
    }
    
    .copyright{
        color: gainsboro;
        text-align: center; 
    }
    
    .ppp{
        text-align: center;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .global-footer{
        width: 100%;
    }
    
    .box-img{
        margin-top: 5px;
    }
    
    
    
    
    
    
    
    
    
    
    
    
    
    /*リンクの形状*/
    #page-top a{
        display: flex;
        justify-content:center;
        align-items:center;
        background:#000000;
        border-radius: 60px;
        width: 90px;
        height: 90px;
        color: #fff;
        text-align: center;
        text-transform: uppercase; 
        text-decoration: none;
        font-size:0.6rem;
        transition:all 0.3s;
        font-size: 20px
    }
    
    #page-top a:hover{
        background: #777;
    }
    
    /*リンクを右下に固定*/
    #page-top {
        position: fixed;
        right: 15px;
        bottom:15px;
        z-index: 2;
        /*はじめは非表示*/
        opacity: 0;
        transform: translateY(130px);
    }
    
    /*　上に上がる動き　*/
    
    #page-top.UpMove{
        animation: UpAnime 0.5s forwards;
    }
    @keyframes UpAnime{
      from {
        opacity: 0;
        transform: translateY(130px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /*　下に下がる動き　*/
    
    #page-top.DownMove{
        animation: DownAnime 0.5s forwards;
    }
    @keyframes DownAnime{
      from {
          opacity: 1;
        transform: translateY(0);
      }
      to {
          opacity: 1;
        transform: translateY(130px);
      }
    }
}








@media screen and (max-width:540px){

    .global-header{
        width: 100%;
        height: auto;
        padding: 15px 0;
        box-sizing: border-box;
        display: flex;
        justify-content: space-between;
        position: fixed;
        z-index: 9999;
    }

    

    .logo{
        z-index: 9999;
    }
    
    .logo a{
        width: 170px;
        height: 40px;
        border-radius: 39.5px;
        background: rgba(255, 255, 255, 0.8);
        display: flex;
        justify-content: center;
        align-items: center;
        border: solid 2px white;
        margin-left: 20px;
        z-index: 9999;
    }
    
    .logo img{
        width: 70%;
    }
    
    .menu-wrap{
        display: none;
    }
    
    .gnav{
        /* width: 637px;
        height: 54px;
        border-radius: 57.5px;
        background: rgba(255, 255, 255, 0.8);
        border: 2px solid white;
        padding: 14px; */
        display: none;
    }
   
    
    .search-form-1 {
        display: flex;
        justify-content: space-between;
        align-items: center;
        overflow: hidden;
        
        border-radius: 3px;
        background: rgb(230, 230, 230);
        width: 50%;
        min-width: 300px;
        height: 32px;
        position: absolute;
        top: 55%;
        z-index: 9999;
        left: 50%;
    transform: translate(-50%, -50%);
    }
    
    .search-form-1 input {
        width: 220px;
        height: 32px;
        padding: 5px 10px;
        border: none;
        box-sizing: border-box;
        font-size: 1em;
        outline: none;
    }
    
    .search-form-1 input::placeholder{
        color: #777777;
    }
    
    .search-form-1 button {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 50px;
        height: 45px;
        border: none;
        background: rgb(230, 230, 230);
        cursor: pointer;
        color: #777777;
        min-width: 50px;
    }
    
    .search-form-1 button::after {
        width: 24px;
        height: 24px;
    }
    
    .down{
        display: flex;
        width: 565px;
        height: 54px;
        border-radius: 57.5px;
        background: rgba(255, 255, 255, 0.8);
        border: 2px solid white;
        margin-top: 13px;
        margin-left: auto;
        display: none;
    }
    
    .phone{
        position: absolute;
        top: 70%;
        width: 250px;
        left: 50%;
    transform: translate(-50%, -50%);
    }
    
    .phone img{
        width: 100%;
    }
    
    .main-visual{
        width: 100%;
        margin-bottom: 100px;
        display: none;
    }
    
    .main-visual img{
        width: 100%;
    }

    .main-visual-tab{

        display: none;
    }
    
    .main-visual-tab img{
        width: 100%;
    }

    .main-visual-sumaho{
        width: 100%;
        margin-bottom: 50px;
    }

    .main-visual-sumaho img{
        width: 100%;
    }
    
    .menu-wrap{
        width: 637px;
        height: 120px;
        display: none;
        flex-direction: column;
    }
    
    .section1{
        width: 85%;
        max-width: 1200px;
        height: auto;
        margin: 0 auto;
    }
    
    .section1 h2{
        font-family: "Hiragino Sans";
        font-weight: bold;
        font-size: 30px;
        text-align: center;
        color: #000;
        margin-bottom: 75px;
    }

    .section1-content1-p-tab{
        width: 95%;
    }
    .section1-content1-h3{
        font-size: 17px;
        color: #333333;
        font-weight: 600;
        margin-top: 0;
        margin-bottom: 10px;
    }
    
    .section1-p{
        font-size: 14px;
        line-height: 25px;
        margin-bottom: 50px;
    }
    
    .section1_midashi{
        width: 100%;
        display: none;
    }
    
    .section1_midashi img{
        width: 100%;
    }
    
    .section1-1-content-wrap{
        width: 70%;
 
        margin: 0 auto;
        display: none;
    }
    
    .section1-2-content-wrap{
        width: 70%;
        display: none;
        margin: 0 auto;
    }

    .section1-1-content-wrap-tab{
        /* background: #0099ff; */
        display: flex;
        justify-content: space-between;
   }

   .section1-2-content-wrap-tab{
    /* background: #0099ff; */
    display: flex;
    justify-content: space-between;
}

   .section1-content1-tab{
        width: 100%;

   }

   .section1-content1-photo-tab{
        width: 95%;
        margin-right: 10%;
   }

   .section1-content1-photo-tab img{
        width: 100%;
   }
    
    .section1-content1{
        width: 70%;
        margin: 0 10% 0 0;
        display: flex;
        display: none;
    }
    
    .section1-content1-photo{
        width: 50%;

        border-radius: 5px;
    }
    
    .section1-content1-photo img{
        width: 100%;
   
    }
    
    .section1-content2{
        width: 45%;
        display: none;
    }
    
    .section1-content2-photo{
        width: 100%;
        max-width: 500px;
    }
    
    .section1-content2-photo img{
        width: 100%;
        max-height: 500px;
    }
    
    li{
        list-style: none;
    }
    
    .Label {        /*タイトル*/
        padding: 1em;
        display: block;
        color: black;
        font-size: 30px;
        font-weight: bold;
        text-align: center;
     }
     .Label::before{     /*タイトル横の矢印*/
        content:"";
        width: 15px;
        height: 15px;
        border-top: 3px solid #000000;
        border-right: 3px solid #000000;
        -webkit-transform: rotate(45deg);
        position: absolute;
        top:calc( 50% - 3px );
        right: 20px;
        transform: rotate(135deg);
     }
     .Label,
     .content {
        -webkit-backface-visibility: hidden;
        backface-visibility: hidden;
        transform: translateZ(0);
        transition: all 0.3s;
     }
     .content {      /*本文*/
        height: 0;
        margin-bottom:10px;
        padding:0 20px;
        overflow: hidden;
     }
     .toggle:checked + .Label + .content {   /*開閉時*/
        height: auto;
        padding:20px ;
        transition: all .3s;
     }
     .toggle:checked + .Label::before {
        transform: rotate(-45deg) !important;
     }
    
     .toggle{
        display: none;
     }
    
    .border{
        font-family: "Hiragino Sans";
        font-weight: bold;
        font-size: 21px;
        text-align: left;
        color: #020202;
        position: relative;
        padding-bottom: 10px;
        margin-bottom: 10px;
        border-bottom: 4px solid #D8D8D8;
    }
    
    .border::before{
        content: '';
        position: absolute;
        bottom: -4px;
        width: 20%;
        height: 4px;
        background: #1DC300;
    }

    .content-box2{
        display: flex;
    }

    .content-boxitem-text2{
        margin-left: 5%;
        width: 50%;
        margin-top: 0;
    }

    .content-boxitem-text2 h3{
        color: #333333;
        font-size: 16px;
        font-weight: 600;
        margin-top: 0;
    }

    .content-box2-img{
        width: 50%;
        max-width: 350px;
    }

    .content-box2-img img{
        width: 100%;
    }

    @media screen and (max-width: 775px){
        .content-boxitem-text2{
            margin-top: 30px;
            margin-left: 0;
            margin-bottom: 30px;
            width: 100%;
        }
    
        .border{
            font-size: 15px;
        }

        .content-box2{
            display: flex;
            flex-direction: column;
        }

        .content-box2-img{
            width: 100%;
            margin: 0 auto;
        }
    
        .content-box2-img img{
            width: 100%;
        }
    }

    @media screen and (max-width: 875px){

        .content-boxitem-text{
            margin-top: 30px;
            margin-left: 0;
            margin-bottom: 30px;
        }
    
        .border{
            font-size: 15px;
        }

        .content-box{
            display: flex;
            flex-direction: column;
        }

        .Label {        /*タイトル*/
            padding: 1em;
            display: block;
            color: black;
            font-size: 30px;
            font-weight: bold;
            text-align: center;
         }
         .Label::before{     /*タイトル横の矢印*/
            content:"";
            width: 15px;
            height: 15px;
            border-top: 3px solid #000000;
            border-right: 3px solid #000000;
            -webkit-transform: rotate(45deg);
            position: absolute;
            top:calc( 50% - 3px );
            right: 20px;
            transform: rotate(135deg);
         }
         .Label,
         .content {
            -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
            transform: translateZ(0);
            transition: all 0.3s;
         }
         .content {      /*本文*/
            height: 0;
            margin-bottom:10px;
            padding:0 20px;
            overflow: hidden;
         }
         .toggle:checked + .Label + .content {   /*開閉時*/
            height: auto;
            padding:20px ;
            transition: all .3s;
         }
         .toggle:checked + .Label::before {
            transform: rotate(-45deg) !important;
         }
        
         .toggle{
            display: none;
         }
        
        .border{
            font-family: "Hiragino Sans";
            font-weight: bold;
            font-size: 21px;
            text-align: left;
            color: #020202;
            position: relative;
            padding-bottom: 10px;
            margin-bottom: 10px;
            border-bottom: 4px solid #D8D8D8;
        }
        
        .border::before{
            content: '';
            position: absolute;
            bottom: -4px;
            width: 20%;
            height: 4px;
            background: #1DC300;
        }

        .content-boxitem{
            width: 100%;
            margin: 0 auto;
        }
    }
    
    .section3{
        width: 85%;
        max-width: 1200px;
        height: auto;
        margin: 0 auto;
        /* background-color: red; */
    }
    
    .section3 h2{
        font-family: "Hiragino Sans";
        font-weight: bold;
        font-size: 30px;
        text-align: center;
        color: #000;
        margin-bottom: 75px;
    }
    
    .section4{
        width: 85%;
        max-width: 1200px;
        height: auto;
        margin: 0 auto;
        /* background-color: red; */
    }
    
    .section4 h2{
        font-family: "Hiragino Sans";
        font-weight: bold;
        font-size: 30px;
        text-align: center;
        color: #000;
        margin-bottom: 75px;
    }
    
    .section4-1-content-wrap{
        width: 100%;
        display: flex;
        margin: 0 auto;
        text-align: center;
        /* background: #1DC300; */
        display: none;
    }

    .section4-1-content-wrap-tab{
        width: 100%;
        display: flex;
        margin: 0 auto;
        text-align: center;
    }

    .section4-1-itemwrap-tab{
        width: 100%;
        margin-bottom: 50px;
    }
    
    .section4-content1-tab{
        width: 100%;
        align-items: center;
       
        justify-content: space-between;
        margin-bottom: 50px;
    }
    
    .section4-content2{
         position: relative;
        width: 35%;
        /* margin: 0 10% 0 0; */
    }

    .section4-content1-photo-tab{
        width: 70%;
        min-width: 120px;
        margin: 0 auto 30px auto;
    }

    .section4-content1-photo-tab img{
        width: 100%;
    }

    .sec4tab-btn{
        width: 100%;
        max-width: 600px;
        min-width: 200px;
    }

    .sec4-tyui{
        background: pink; 
        width: 70%;
        margin: 0 auto;
        padding: 12px 0;
        border-radius: 10px; 
        margin-bottom: 25px; 
        font-size: 14px; 
        max-width: 150px;
    }
    
    a.btn-border {
        display: inline-block;
        text-decoration: none;
        padding: 10px;
        border: 2px solid #000;
        border-radius: 0;
        background: #fff;
        width: 90%;
        font-size: clamp(14px, 1.2vw, 30px);
        white-space: nowrap;
        color: black;
        margin-right: 0;
        min-width: 220px;
      }
      
      a.btn-border:hover {
        color: #fff;
        background: #000;
      }
    
    .section4-1-itemwrap{
       
        width: 100%;

        margin-bottom: 50px;
        /* background-color: red; */
    }  
    
    .section5{
        width: 85%;
        max-width: 1200px;
        height: auto;
        margin: 0 auto;
        /* padding-bottom: 80px; */
        /* background: #0099ff; */
        /* background-color: red; */
    }
    
    .section5 h2{
        font-family: "Hiragino Sans";
        font-weight: bold;
        font-size: 30px;
        text-align: center;
        color: #000;
        margin-bottom: 75px;
    }
    
    .section5-itemwrap{
        display: flex;
        justify-content: space-between;
        margin-bottom: 100px;
        display: none;
    }
    
    .section5-item{
        width: 30%;
        position: relative;
    }
    
    a.btn-border2 {
        display: inline-block;
        text-decoration: none;
        padding: 4px;
        border: 2px solid #000000;
        border-radius: 0;
        background: #fff;
        position: absolute;
        bottom: 5%;
        left: 50%;
        transform: translateX(-50%);
        -webkit-transform: translateX(-50%);
        -ms-transform: translateX(-50%);
        width: 65%;
        font-size: clamp(13px, 1vw, 18px);
        white-space: nowrap;
        color: black;
        text-align: center;
      }
      
      a.btn-border2:hover {
        color: #fff;
        background: #000;
      }
    
    .section6{
        width: 85%;
        max-width: 1200px;
        height: auto;
        margin: 0 auto;
        /* background-color: red; */
    }
    
    .section6 h2{
        font-family: "Hiragino Sans";
        font-weight: bold;
        font-size: 30px;
        text-align: center;
        color: #000;
        margin-bottom: 75px;
    }
    
    .border-box{
        display: flex;
    }
    
    .border1{
        background: #1DC300;
        width: 40px;
        font-size: 18px;
        text-align: center;
        color: white;
        font-weight: bold;
        padding-top: 5px;
    }
    
    .border2{
        background: black;
        color: white;
        width: 100%;
        font-size: 18px;
        padding: 5px;
        font-weight: bold;
    }
    
    .photo1{
        width: 45%;
        margin-top: 35px;
        max-width: 350px;
        margin-bottom: 20px;
        display: flex;
        justify-content: space-between;
    }
    
    .photo1 img{
        width: 100%;
    }
    
    .photo1-p{
        margin-bottom: 50px;
        width: 100%;
        font-size: 15px;
    }

    .tab-sec6{
        margin-right: 20%;
    }
    
    
    .section7{
        width: 85%;
        max-width: 1200px;
        height: auto;
        margin: 0 auto;
        /* background-color: red; */
    }
    
    .section7 h2{
        font-family: "Hiragino Sans";
        font-weight: bold;
        font-size: 30px;
        text-align: center;
        color: #000;
        margin-bottom: 75px;
        margin-top: 40px;
    }
    
    .photo2-wrap{
        max-width: 300px;

        margin-right: 10px;
        margin-bottom: 30px;
    }

    .photo2-wrap h3{
        font-size: 17px;
    }
    
    .photo2{
        width:  100%;
    }
    
    .photo2 img{
        width: 100%;
    }
    
    .section7-wrap{
        display: flex;
        justify-content: space-around;
        flex-wrap: wrap;
        margin-bottom: 10px;
    }
    
    .howling{
        width: 85%;
        margin: 50px auto 0 auto;
        /* text-align: center; */
    }
    
    .howling h4{
        font-size: 25px;
        text-align: center;
    }
    
    .howling-photo{
        width: 100%;
        margin: 35px auto;
    }
    
    .howling-photo img{
        width: 100%;
     
    }
    
    .section8{
        width: 85%;
        max-width: 1200px;
        height: auto;
        margin: 0 auto 70px auto;
        /* background-color: red; */
    }
    
    .section8 h2{
        font-family: "Hiragino Sans";
        font-weight: bold;
        font-size: 30px;
        text-align: center;
        color: #000;
        margin-bottom: 75px;
        padding-top: 30px;
    }
    
    .section8 p{
        font-size: 14px;
        line-height: 27px;
    }
    
    .border2-box{
        font-family: "Hiragino Sans";
        font-size: 20px;
        position: relative;
        width: 100%;
        padding-top: 5px;
        padding-left: 20px;
        background: linear-gradient(#fff 0%, rgba(167, 167, 167, 0.3) 100%, #808080 100%);
        margin-bottom: 30px;
        font-weight: 600;
        margin-top: 60px;
    }
    
    .border2-box::before{
        content: '';
        position: absolute;
        left: 0;
        width: 10px;
        height: 30px;
        background: #1DC300;
    }
    
    .border2-box-p{
        font-family: "Hiragino Sans";
        font-size: 15px;
        margin-bottom: 60px;
    }


    
    .table{
        text-align: center;
        background: #95FF83;
        width: 100%;
        height: 110px;
        padding-top: 30px;
        margin-right: 20px;
        margin-bottom: 3px;
        min-width: 230px;
    }
    
    .table-mini{
        text-align: center;
        background: #95FF83;
        width: 100%;
        height: 110px;
        padding-top: 45px;
        margin-right: 20px;
        margin-bottom: 3px;
        min-width: 230px;
    }
     
    .mitumori-box{
        width: 100%;
        margin-bottom: 35px;
    }
    
    .mitumori-box img{
        width: 100%;
    }

    .kiyaku{
        background: #000;
        text-decoration: none;
        color: white;
        font-weight: 700;
        display: inline-block;
        margin-top: 35px;
        padding: 13px;
        margin-bottom: 35px;
    }
    
    .section8 h3{
        font-size: 21px;
    }
    
    .section8-h3{
        text-align: left;
        font-size: 21px;
        font-weight: 700;
        color: black;
        margin-top: 35px;
    }
    
    .border3{
        border: 1px solid black;
        margin: 50px 0;
    }
    
    .mail-box{
        width: 100%;
        margin: 35px 0 50px 0;
    }
    
    .mail-box img{
        width: 100%;
    }
    
    .section9{
        width: 80%;
        max-width: 900px;
        height: auto;
        margin: 0 auto 50px auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* background-color: red; */
    }
    
    .section9 h2{
        font-family: "Hiragino Sans";
        font-weight: bold;
        font-size: 30px;
        text-align: center;
        color: #000;
        margin-bottom: 75px;
        padding-top: 30px;
    }
    
    /* .QA-box{
        display: flex;
        flex-direction: column;
        justify-content: center;
    } */
    
    .qa-1 {
        width: 100%;
        /* max-width: 900px; */
        margin-bottom: 7px;
        background: rgb(247, 247, 247);
        border-radius: 15px;
        margin-bottom: 40px;
        box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
    }
    
    .qa-1 summary {
        display: flex;
        justify-content: space-between;
        align-items: center;
        position: relative;
        padding: 1em 2em 1em 3em;
        color: #333333;
        font-weight: 600;
        cursor: pointer;
    }
    
    .qa-1 summary::before,
    .qa-1 p::before {
        position: absolute;
        left: 1em;
        font-weight: 600;
        font-size: 1.3em;
    }
    
    .qa-1 summary::before {
        color: #00CC30;
        content: "Q";
    }
    
    .qa-1 summary::after {
        transform: translateY(-25%) rotate(45deg);
        width: 7px;
        height: 7px;
        margin-left: 10px;
        border-bottom: 3px solid #333333b3;
        border-right: 3px solid #333333b3;
        content: '';
        transition: transform .5s;
    }
    
    .qa-1[open] summary::after {
        transform: rotate(225deg);
    }
    
    .qa-1 p {
        position: relative;
        transform: translateY(-10px);
        opacity: 0;
        margin: 0;
        padding: .3em 3em 1.5em;
        color: #333;
        transition: transform .5s, opacity .5s;
    }
    
    .qa-1[open] p {
        transform: none;
        opacity: 1;
    }
    
    .qa-1 p::before {
        color: #ff8d8d;
        line-height: 1.2;
        content: "A";
    }
    
    .section10{
        width: 85%;
        max-width: 900px;
        height: auto;
        margin: 0 auto 50px auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* background-color: red; */
    }
    
    .section10 h2{
        font-family: "Hiragino Sans";
        font-weight: bold;
        font-size: 30px;
        text-align: center;
        color: #000;
        margin-bottom: 75px;
        padding-top: 30px;
    }
    
    .resultsphoto-wrap{
        display: flex;
    }
    
    .resultsphoto{
        width: 50%;
        min-width: 220px;
        margin-right: 20px;
    }
    
    .resultsphoto img{
        width: 100%;
    }
    
    .item-box{
        display: flex;
        flex-direction: column;
        /* margin-top: 12px; */
    }
    
    .item-box p{
        font-size: 14px;
        padding: 10px 0;
        box-sizing: border-box;
    }
    
    .place{
        /* background: #3C8FFF; */
        color: rgb(0, 0, 0);
        font-weight: 700;
        display: flex;
        align-items: center;
        font-size: 14px;
    }
    
    .purpose{
        color: rgb(0, 0, 0);
        font-weight: 700;
        display: flex;
        align-items: center;
        font-size: 14px;
    }
    
    .item{
        /* background: #FFA945; */
        color: rgb(0, 0, 0);
        font-weight: 700;
        display: flex;
        align-items: center;
        font-size: 14px;
    
    }
    
    .staff-box{
        margin-top: 20px;
        display: flex;
        margin-bottom: 100px;
    }
    
    .staff-coment{
        width: 200px;
        height: 30px;
        background: #3adf47;
        color: white;
        font-weight: 700;
        display: flex;
        align-items: center;
        padding-left: 10px; 
        margin-left: 20px;
        font-size: 16px;
    }
    
    .staff-coments{
        font-size: 13px;
        margin-left: 20px;
        margin-top: 5px;
    }
    
    .resutsphoto-btn{
        font-size: 20px;
        text-decoration: none;
        color: white;
        background-color: #00cc30ca;
        padding: 10px;
        width: 250px;
        text-align: center;
        border-radius: 50px;
        margin: 0 auto;
    }
    
    .resutsphoto-btn:hover{
        background-color: #01b72c;
    }
    
    .section11{
        width: 70%;
        max-width: 900px;
        height: auto;
        margin: 0 auto 50px auto;
        display: flex;
        flex-direction: column;
        justify-content: center;
        /* background-color: red; */
    }
    
    .section11 h2{
        font-family: "Hiragino Sans";
        font-weight: bold;
        font-size: 30px;
        text-align: center;
        color: #000;
        margin-bottom: 75px;
        padding-top: 30px;
    }
    
    .aktphoto{
        width: 100%;
    }
    
    .aktphoto img{
        width: 100%;
    }
    
    .box-img{
        width: 100%;
    }
    
    .box-img img{
        width: 100%;
    }
    


    .global-footer{
        width: 100%;
        background-color: #333333;

        padding-top: 50px;

    }
    
    .box-parent {
        width: 85%;
        margin: 0 auto;
        display: flex;
        justify-content: space-between;
        flex-wrap: wrap;
    }

    .box-child {
        width: 47%;
        margin-bottom: 35px;
    }
    
    /* 親要素 */

    .box-child h2{
        color: white;
        font-size: 15px;
    }
    
    .box-text{
        font-size: 14px;
        color: white;
        margin-bottom: 50px;
    }
    
    /* 子要素 */
    





    .footer-mitbox {
        flex-direction: column; /* フッター内の要素も縦に並べる */
        align-items: center; /* 中央に揃える */
        width: 100%; /* 幅を100%にする */
        margin: 0 auto;
    }



    .sns-box {
        justify-content: space-around; /* SNSアイコンを均等に配置 */
    }


        .footer-logo {
            padding: 10px; /* スマホ向けにロゴのパディングを縮小 */
        }
    
        .phone-text {
            font-size: 18px; /* 電話番号のフォントサイズを調整 */
        }
    
        .box-child h2 {
            font-size: 14px; /* 見出しのフォントサイズを小さく */
        }
    
        .box-text {
            font-size: 13px; /* テキストのフォントサイズを小さく */
        }

        .box-parent {
            display: grid;
            grid-template-columns: repeat(2, 1fr); /* 2列レイアウト */
            gap: 10px; /* 各要素の間に余白を追加 */
        }
    
        .box-child {
            width: 100%; /* 各子要素の幅を100%に */
            margin-bottom: 10px; /* 各ボックスの間に適度な余白を追加 */
            box-sizing: border-box; /* パディングとボーダーを含めたサイズ計算 */
        }

        /* さらに狭い画面用（例：480px以下の場合） */



    
    /* 親要素の疑似要素 */
 
    .footer-logo{
        /* width: 20%; */
        background: white;
        padding: 15px 20px;
        border-radius: 50px;
        margin-bottom: 35px;
    }
    
    
    .footer-logo img{
        width: 100%;
    }

    
    .sns-box{
        /* background-color: #00CC30; */
        display: flex;
        justify-content: space-between;
    }
    
    
    .sns-photo{
        width: 27%;
        box-sizing: border-box;
    }
    
    .sns-photo img{
        width: 100%;
    }

    .left-contents{
        width: 60%;
        margin: 0 auto 20px auto;
    }
    
    .event21link{
        display: flex;
        flex-direction: row;
       justify-content: center;
    }
    
    .footer-item a{
        text-decoration: none;
        color: white;
        font-size: 14px;
    }

    
    .footer-phone {
        width: 90%; /* フッター電話番号のセクションの幅を調整 */
        margin: 30px auto;
        padding: 15px 15px 0 15px;
        background: #1D1D1D;
        border-radius: 20px;
    }
    
    .kanto-phone{
        display: flex;
    }
    
    .phone-back{
        background: white;
        font-size: 14px;
        padding: 5px;
        margin-bottom: 15px; 
        margin-right: 10px;
    }
    
    .phone-text{
        color: white;
        font-size: 20px;
        font-weight: 700;
    }
    

    
    .link-menu{
        margin-right: 35px;
    }
    
    .footer-text{
        width: 100%;
        margin-right: auto;
        text-align: center;
        color: white;
    
    }
    
    .footer-text p{
        margin-top: 10px;
    }
    
    .p-h4{
        font-weight: 700;
    }
    
    .y{
        color: #0099ff;
    }
    
    .copyright{
        color: gainsboro;
        text-align: center; 
    }
    
    .ppp{
        text-align: center;
        width: 100%;
        margin-bottom: 10px;
    }
    
    .global-footer{
        width: 100%;
    }

    
    
    
    
    
    
    
    
    
    
    
    
    
    
    /*リンクの形状*/
    #page-top a{
        display: flex;
        justify-content:center;
        align-items:center;
        background:#000000;
        border-radius: 60px;
        width: 90px;
        height: 90px;
        color: #fff;
        text-align: center;
        text-transform: uppercase; 
        text-decoration: none;
        font-size:0.6rem;
        transition:all 0.3s;
        font-size: 20px
    }
    
    #page-top a:hover{
        background: #777;
    }
    
    /*リンクを右下に固定*/
    #page-top {
        position: fixed;
        right: 15px;
        bottom:15px;
        z-index: 2;
        /*はじめは非表示*/
        opacity: 0;
        transform: translateY(130px);
    }
    
    /*　上に上がる動き　*/
    
    #page-top.UpMove{
        animation: UpAnime 0.5s forwards;
    }
    @keyframes UpAnime{
      from {
        opacity: 0;
        transform: translateY(130px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }
    
    /*　下に下がる動き　*/
    
    #page-top.DownMove{
        animation: DownAnime 0.5s forwards;
    }
    @keyframes DownAnime{
      from {
          opacity: 1;
        transform: translateY(0);
      }
      to {
          opacity: 1;
        transform: translateY(130px);
      }
    }
}