@charset "utf-8";

/*----------------------header----------------------*/

header {
  height: 90px;
  width: 100%;
  background-color: rgba(255, 255, 255, 255);
  position: fixed;
  top: 0;
  z-index: 12;
  display: flex;
}

.logo {
  font-size: 25px;
  width: 270px;
  margin-top: 10px;
}

ul {
  display: flex;
  list-style: none;
  padding: 0;
  margin: 0;
  width: 100%;
    margin: 5px 0 0 auto;
	font-size: 20px;
}

header a {
  color: #ffffff;
  text-decoration: none;
  display: block;
  line-height: 60px;
  padding: 0px 20px;
}

.sm {
  display: none;
}

.pc {
  margin: 20px 25px 0 auto;
  width: auto;
}
.pc2{
    width: 200px;
    text-align: center;
    padding: 15px 0 21px 0;
  background: rgb(0, 9, 136);
  font-size: 15px;
}


/* =========================
   親メニュー
========================= */
nav ul li {
  position: relative;
  float: left;
  height: 60px;
  background: #fff;
  font-size: 18px;
}

nav ul li a {
  display: block;
  line-height: 60px;
  color: #111;
  padding: 0 20px; /* ← 横だけ余白にする（重要） */
  text-decoration: none;
  transition: 0.3s;
}

/* 親ホバー */
nav ul li > a:hover {
  color: #000;
  border-bottom: solid 1px rgb(121, 121, 121);
}


/* =========================
   子メニュー全体
========================= */
nav ul li ul {
  position: absolute;
  top: 100%; /* ← ピッタリ下に出す */
  left: 0;
  z-index: 999;

  background: #fff;
  border-radius: 10px;
  padding: 10px 0;
  min-width: 200px;

  box-shadow: 0 10px 30px rgba(0,0,0,0.08);

  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: 0.3s ease;
}


/* =========================
   子メニュー初期状態
========================= */
nav ul li ul li {
  height: auto; /* ← height制御やめる（重要） */
  overflow: visible;
}


/* =========================
   ホバーで表示
========================= */
nav ul li:hover > ul {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}


/* =========================
   子メニューリンク
========================= */
nav ul li ul li a {
  display: block;
  padding: 10px 20px;
  font-size: 14px;
  color: #333;
  white-space: nowrap;
  transition: 0.25s;
}


/* ホバー時 */
nav ul li ul li a:hover {
  background: #f7f7f7;
  color: #000;
  padding-left: 25px;
}


/* 区切り線 */
nav ul li ul li:not(:last-child) {
  border-bottom: 1px solid #eee;
}

nav ul li ul li {
  float: none;
  width: 100%;
}

/* 横幅安定 */
nav ul li ul {
  min-width: 200px;
}

/* クリック範囲広げる */
nav ul li ul li a {
  display: block;
  width: 100%;
}

/* =========================
   子メニュー強制リセット（最重要）
========================= */
nav ul li ul {
  display: block;
  width: 200px;
}

nav ul li ul li {
  float: none !important;      /* ← 強制解除 */
  display: block !important;   /* ← 横並び防止 */
  width: 100% !important;
}

/* リンクもブロック化 */
nav ul li ul li a {
  display: block;
  width: 100%;
}


/* =========================
   スマホ時：子メニュー常に表示
========================= */
@media screen and (max-width: 1080px) {

  nav ul li ul {
    position: static; /* ← absolute解除が最重要 */
    
    opacity: 1;
    visibility: visible;
    transform: none;

    box-shadow: none;
    border-radius: 0;
    padding: 5px 0;
    margin-top: 0;
  }

  /* 子メニュー縦並び維持 */
  nav ul li ul li {
    display: block;
    width: 100%;
  }

  /* 少しインデントつけると見やすい */
  nav ul li ul li a {
    padding-left: 30px;
    font-size: 14px;
  }

}

/* ============================ */

.main_imgBox {
  height: 1080px;
  width: 100%;
  overflow: hidden;
  position: relative; 
}

.main_img {
  z-index:10;
  opacity: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: anime 36s 0s infinite;
  animation: anime 36s 0s infinite; }

  .main_img:nth-of-type(2) {
    -webkit-animation-delay: 6s;
    animation-delay: 6s; }

  .main_img:nth-of-type(3) {
    -webkit-animation-delay: 12s;
    animation-delay: 12s; }

  .main_img:nth-of-type(4) {
    -webkit-animation-delay: 18s;
    animation-delay: 18s; }

  .main_img:nth-of-type(5) {
    -webkit-animation-delay: 24s;
    animation-delay: 24s; }

  .main_img:nth-of-type(6) {
    -webkit-animation-delay: 30s;
    animation-delay: 30s; }

@keyframes anime {
  0% {
      opacity: 0;
  }
  8% {
      opacity: 1;
  }
  17% {
      opacity: 1;
  }
  25% {
      opacity: 0;
      transform: scale(1.2);
      z-index:9;
  }
  100% { opacity: 0 }
}

@-webkit-keyframes anime {
  0% {
      opacity: 0;
  }
  8% {
      opacity: 1;
  }
  17% {
      opacity: 1;
  }
  25% {
      opacity: 0;
      -webkit-transform: scale(1.2);
      z-index:9;
  }
  100% { opacity: 0 }
}




/*------------------------------------- 画像が勝手に変わる---------------------------------------*/
.album {
  height:900px;
  overflow: hidden;
  position: relative;
  margin-top: 75px;
}

/* テキストがあるバージョン */
.album1 {
  font-size: 32px;
  color: #fff;
  z-index: 11;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);

}

.album1-2 {
  opacity: 0;
  width: 100%;
  height: 900px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: anime 10s 0s infinite;
  animation: anime 10s 0s infinite;
}

.album1-2:nth-of-type(2) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.album1-2:nth-of-type(3) {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}

/* ふわっとアニメーション */
@keyframes anime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes anime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}


.album10 {
  height:800px;
  overflow: hidden;
  position: relative;
  margin-top: 100px;
}

/* テキストがあるバージョン */
.album11 {
  font-size: 32px;
  color: #fff;
  z-index: 11;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);

}

.album11-2 {
  opacity: 0;
  width: 100%;
  height: 800px;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 0;
  top: 0;
  -webkit-animation: anime 10s 0s infinite;
  animation: anime 10s 0s infinite;
}

.album11-2:nth-of-type(2) {
  -webkit-animation-delay: 3s;
  animation-delay: 3s;
}

.album11-2:nth-of-type(3) {
  -webkit-animation-delay: 6s;
  animation-delay: 6s;
}

/* ふわっとアニメーション */
@keyframes anime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}

@-webkit-keyframes anime {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  35% {
    opacity: 1;
  }
  50% {
    opacity: 0;
    z-index: 9;
  }
  100% {
    opacity: 0;
  }
}


  /*------------------------------------- news ---------------------------------------*/
  #news{ 
    padding: 2em;
    text-align: center;     
    margin-bottom: -100px;                       
  }
  
  .news_title{
  /*font-family:"Times New Roman", Times, serif;*/
  /*width:200px;*/
  margin:0 auto 60px;
  padding-top:70px;
  font-size:29pt;
  /*border-bottom:2px solid #ffffff;*/
  text-align:center;
  font-weight:normal;
  letter-spacing:0.1em;
  }
  
  #news p{
  margin-top:5px;
  /*	margin-bottom:80px;  */
  padding-bottom: 20px;
  font-size:15px;
  }
  
  .news a{
    line-height: 0px;
  }

  .news_pic{
    margin-bottom: 10px;
  }

  .flex-col3::after,
  .flex-col3 .flex-child { width: calc( (90%) / 3 ); }

  
  .flex-col3{
  display: flex;
  justify-content: space-around;
  }

  [class^="flex-col"] {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
  }

.kiji{
  text-align: center;
}

.postLinks{
  display: flex;
}
.postLinkpostLink-prev{
  width: 50%;
  padding: 15px 33px;
}
.postLinkpostLink-next{
  text-align: right;
    width: 50%;
    padding: 15px 50px;
}


.flex-col3 a {
  color:black;
  text-decoration: none;
}



@media screen and (max-width: 780px) {
.flex-col3::after,
.flex-col3 .flex-child { width: calc( (90%) / 1 ); }

}



/*--------------------------------------  top  ---------------------------------------------*/
.top {
  margin: 50px auto 50px ;
  text-align: center;
}


.top span {
  font-size: 25px;
  line-height: 70px;
  letter-spacing: 5px;
}

.osplan{
  text-align: center;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;  
  background-image: url("./img/back.png");
padding: 40px;
}

.osplan span{
  font-size: 30px;
}


.slider{
  width: 70%;
  margin: 50px auto;
}






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

.photo2{
  margin: 20px 0 40px 0;
  align-items: center;
  justify-content: center;
}

/* 画像２個を横に並べる */
@media screen and (min-width: 641px) {
 .photo2 { width: calc( (87%) / 3 ); 
  }
  }
  @media screen and (max-width: 780px) {
    .photo{
      width: 90%;
      margin: 10px auto;
    }
  }


.a333 {
  text-align: center;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;  
  background-image: url("./img/back.png");
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 40px 10px;
}

.a333::after, 
.a333 .f3 { width: calc( (90%) / 3 ); 
padding: 0px;
}

.f3 {
position: relative;
}
.f3 .active {
position: absolute;
left: 0;
top: 0;
opacity: 0;
transition: 0.5s; /* ゆっくり*/
}
.f3:hover .active {
opacity: 1;
}


@media (max-width: 750px) {
  .a333 {
    text-align: center;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;  
    background-image: url("./img/spback.png");
  }

.a333 .f3 {
  width: 90%;
  margin-bottom: 20px;
}
}




.sample3-3{
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  position: relative;
}

.sample3-2 p{
  font-size: 17px;
  line-height: 25px;
  top:50%;
  left:50%;
  transform: translate(-50%,-50%);
  padding:0;
  margin:0;
  text-align: center;
  position: absolute;
}

/* 画像２個を横に並べる */
@media screen and (min-width: 700px) {
 .sample3-2 { width: calc( (90%) / 2 ); 
    padding: 100px 0px;
  }
  }
  @media screen and (max-width: 1200px) {
    .sample3-2{
      width: 100%;
      padding: 35px;
    }
    .sample3-2 p{
      font-size:15px;
  }
  }



.imager{
  width: 93%;
}

  .cameraman{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 50px;
  }
  
  .cameraman2{
    margin: 20px 0;
    align-items: center;
    justify-content: center;
  }
  
  .cameraman2 p{
    font-size: 17px;
    line-height: 30px;
    margin-top:20px;
  }
  
  /* 画像２個を横に並べる */
  @media screen and (min-width: 641px) {
   .cameraman2 { width: calc( (90%) / 2 ); 
    }
    }
    @media screen and (max-width: 780px) {
      .cameraman{
        width: 90%;
        margin: 10px auto;
      }
    }
  
  
  .cameraman1{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
    margin-top: 50px;
  }
  
  .cameraman3{
    margin: auto;
    align-items: center;
    justify-content: center;
  }
  
   .cameraman3 { 
	   width: calc( (100%) / 2 ); 
    }



    .a333plan{
    width: 95%;
    text-align: center;
    margin: 0 auto;
    }


    .a333p {
      text-align: center;
      align-items: center;
      justify-content: center;
      display: flex;
      flex-wrap: wrap;
      justify-content: center;
      padding: 40px 10px;
    }
    
    .a333p::after, 
    .a333p .f3p { width: calc( (100%) / 3 ); 
    padding: 0px;
    }
    
    .f3p {
    position: relative;
    }
    .f3p .active {
    position: absolute;
    left: 0;
    top: 0;
    opacity: 0;
    transition: 0.5s; /* ゆっくり*/
    }
    .f3p:hover .active {
    opacity: 1;
    }
    
    
    @media (max-width: 750px) {
      .a333p {
        text-align: center;
      }
    
    .a333p .f3p {
      width: 100%;
      margin-bottom: 20px;
    }
    }









.price{
  background-color: rgb(252, 248, 243);
  text-align: center;
  padding: 50px 0;

}
.price p{
  font-size: 16px;
  line-height: 30px;
}

.spacem{
  width: 80%;
  margin: 0 auto;
}



.costume{
  width: 97%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
}

.costume2{
  margin: 20px 0;
  align-items: center;
  justify-content: center;
}

.costume2 p{
  font-size: 17px;
  line-height: 30px;
  margin-top:20px;
}

/* 画像２個を横に並べる */
@media screen and (min-width: 641px) {
 .costume2 { width: calc( (90%) / 4 ); 
  }
  }
  @media screen and (max-width: 780px) {
    .costume2 { width: calc( (90%) / 2 ); 
      margin: 10px auto;
    }
  }



  .containerplan1{
background-color: #e0e0e0;
  }
  .containerplan{
    width:80%;
    position: relative;
    margin: 0 auto;
  }
  .containerplan img{
    width:100%;
    margin: 50px 0 ;
  }
  .containerplan p{
    position: absolute;
    top:50%;
    left:50%;
    transform: translate(-50%,-50%);
    font-size:18px;
    padding:0;
    margin:0;
    text-align: center;
  }


@media screen and (max-width: 990px) {
  .containerplan p {
    font-size: 15px;
    margin-bottom: -5px;
    line-height: 16px;
    }
    .containerplan{
      width:95%;
  }
}


  .caution{
    width: 90%;
    margin: 30px auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  
  .caution2{
    align-items: center;
    justify-content: center;
  }
  
  .caution2 p{
    font-size: 15px;
    line-height: 30px;
    color: rgb(104, 104, 104);
    margin-top:20px;
  }
  
  /* 画像２個を横に並べる */
  @media screen and (min-width: 641px) {
    .caution2 { width: calc( (90%) / 2 ); 
    }
    }
    @media screen and (max-width: 780px) {
      .caution{
        width: 96%;
        margin: 10px auto;
      }
    }


/*---------------------   access   -----------------------*/
.tizu{
  margin: 0 auto;
  width: 90%;
  text-align: center;
}

.tizucar{
  margin-top: 50px;
  padding: 30px 0;
  background-color: #ebebeb;
}
.tizucar2{
  margin: 0 auto;
  width: 80%;
}
.tizucar span {
  color: rgb(255, 0, 0);
}

.tizubasu{
  margin-top: 50px;
}
.tizubasu2{
  margin: 0 auto;
  width: 80%;
}
.tizubasu span {
  color: rgb(255, 0, 0);
}


.sample16 .sample16-1{
  width: 60%; 
  }
.sample16{
  text-align: center;
  margin: 30px 0 ;
}
  .sample16-1 {
    display: inline-block;
    text-decoration: none;
    color: rgb(109, 109, 109);
    border: 2px solid #ebebeb;
    background-color: #ebebeb;
    text-align: center;
    width: inherit;
    min-width: 250px;
    margin: 20px 30px;
    padding: 30px 16px;
    position: relative;
    opacity: 1 !important;
    transition: all 0.3s;
    font-size: 25px;
  }
  .sample16-1:before,
  .sample16-1:after {
    content: "";
    display: block;
    position: absolute;
    background-color: rgb(255, 255, 255);
    top: 0;
    pointer-events: none;
  }
  .sample16-1:before {
    left: 0;
    width: 0;
    height: 2px;
  }
  .sample16-1:after {
    right: 0;
    width: 2px;
    height: 0;
  }
  .sample16-1:hover {
    background-color: rgb(255, 255, 255);
    color: rgb(109, 109, 109);
  }
  .sample16-1:hover:before {
    width: 100%;
    transition: width 0.2s 0.2s;
  }
  .sample16-1:hover:after {
    height: 100%;
    transition: height 0.1s 0.4s;
  }
  .sample16-1:hover span:before {
    width: 100%;
    transition: width 0.2s 0.5s;
  }
  .sample16-1:hover span:after {
    height: 100%;
    transition: height 0.1s 0.7s;
  }
  .sample16-1 span:before,
  .sample16-1 span:after {
    content: "";
    display: block;
    position: absolute;
    background-color: rgb(255, 255, 255);
    bottom: 0;
    pointer-events: none;
  }
  .sample16-1 span:before {
    right: 0;
    width: 0;
    height: 2px;
  }
  .sample16-1 span:after {
    left: 0;
    width: 2px;
    height: 0;
  }


.a222 {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  padding: 40px 10px;
}

.a222::after, 
.a222 .f2 { width: calc( (80%) / 2 ); 
padding: 0px;
}

.f2 {
position: relative;
}
.f2 .active {
position: absolute;
left: 0;
top: 0;
opacity: 0;
transition: 0.5s; /* ゆっくり*/
}
.f2:hover .active {
opacity: 1;
}


@media (max-width: 750px) {
  .a222 {
    text-align: center;
    align-items: center;
    justify-content: center;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;  
    background-image: url("./img/spback.png");
  }

.a222 .f2 {
  width: 90%;
  margin-bottom: 20px;
}
}



.fom{
  text-align: center;
  margin-top: 100px;
}


.YouTube{
  text-align: center;
}







.ia222 {
  text-align: center;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
	width: 94%;
    margin: auto;
}

.ia222 img{
  padding: 20px;
}

.ia222::after, 
.ia222 .if2 { width: calc( (100%) / 4 ); 
padding: 0px;
}

.if2 {
position: relative;
}
.if2 .active {
position: absolute;
left: 0;
top: 0;
opacity: 0;
transition: 0.5s; /* ゆっくり*/
}
.if2:hover .active {
opacity: 1;
}


@media (max-width: 750px) {
  .ia222 {
    text-align: center;
  }

.ia222 .if2 {
  width: 50%;
}
}







.plansss{
  margin: 120px auto 0;
  text-align: center;
}

.plansss img{
  width:70% ;
}
@media (max-width: 750px) {
  .plansss img{
    width:100% ;
  }
}











/*------------------------------------- サンプル１７ ---------------------------------------*/
.private{
  width: 90%;
  margin: auto;
}

.private p {
  margin-top: 20px;
}

.sample17 {
  padding:20px;
  border: solid 1px rgb(184, 184, 184);
  line-height: 40px;
  font-size: 25px;
}
.sample17 p {
  margin: 0; 
  padding: 0;
}
.private span{
  font-size: 25px;

}


@media (max-width: 750px) {
  .sample17 {
    line-height: 18px;
    font-size: 16px;
  }
}



.sample16-2{
  text-align: center;
}





/*------------------------------------- サンプル１０ ---------------------------------------*/
/* container */
.sample10{
  width:100%;
}
.sample10 .sample10-1{
  max-width:100%;
  margin:50px auto;
}
/* content */
@media (min-width: 992px) {
  .sample10 .sample10-1 .sample10-2{
      display: flex;
      align-items: center;
      justify-content: center;
  }
}

.sample10 .sample10-2-item {
  width:100%;
}
@media (min-width: 992px) {
  .sample10 .sample10-2-item {
      width:46%;
  }
}

.sample10 .image{
  display:block;
  max-width:100%;
  margin:0px auto;
}
.sample10 .sample10-2-text{
  padding:0 0 0 50px;
}
.sample10 .sample10-2-text .sample10-2-heading{
  margin:20px auto;
  font-size: 24px;
  font-weight: normal;
  text-align: center;
}

@media screen and (max-width: 780px) {
  .sample10 .sample10-2-text{
    padding:50px;
  }
}




/*------------------------------------- サンプル１３ ---------------------------------------*/
.sample13-2 {
  background-color: rgb(255, 255, 255);
  margin-bottom: 20px;
}

 #sample13{
  background-color: rgb(252, 247, 240);
  padding: 4em;
  letter-spacing: 3px;
 }
 #sample13 p{
   font-size: 20px;
   text-align: center;
 }

 #sample13 p span{
   color: #b08d3c;
   font-size: 25px;
 }

  .sample13-1{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-evenly;
  }
  
  .sample13-1::after,
  .sample13-1 .sample13-2 { width: calc( (90%) / 3 ); }
  
  /* ７８０px以下で表示 */
  @media screen and (max-width: 780px) {
    .sample13-1 .sample13-2 {
      width: 100%;
      margin-bottom: 30px; 
    }
  }





















/*------------------------------------- q＆a ---------------------------------------*/
.sample18{
  width: 90%;
  margin: auto;
}


.accordion {
  width: 100%;
}

/* チェックボックスは非表示 */
.accordion-hidden{
  display: none;
}

/* Question部分 */
.accordion-open {
  display: block;
  padding: 10px 80px 10px 10px;
  background: #cccccc;
  cursor: pointer;
  margin: 5px 0;
  position: relative;
}

/* 開閉状態を示すアイコン+の作成 */
.accordion-open::before,
.accordion-open::after {
  content: '';
  width: 20px;
  height: 3px;
  background: #000;
  position: absolute;
  top: 50%;
  right: 5%;
  transform: translateY(-50%);
}

/* 一本は縦にして+を作る */
.accordion-open::after {
  transform: translateY(-50%) rotate(90deg);
  transition: .5s;
}

/* アコーディオンが開いたら縦棒を横棒にして-にする */
.accordion-hidden:checked + .accordion-open:after {
  transform: translateY(-50%) rotate(0);
}

/* Answer部分 */
.accordion-close {
  display: block;
  height: 0;
  overflow: hidden;
  padding: 0;
  opacity: 0;
  transition: 0.5s;/* 表示速度の設定 */
}

/* チェックボックスにチェックが入ったらAnswer部分を表示する */
.accordion-hidden:checked + .accordion-open + .accordion-close {
  height: auto;
  opacity: 1;
  padding: 10px;
}

/* Q&A追加 */
.accordion_qa .Q{
  position: relative;
}
.accordion_qa .accordion-open{
  padding-left: 2.5em;
}
.accordion_qa .Q::before{
  content: 'Q.';
  font-size: 1.5em;
  display: block;
  position: absolute;
  top: -.6em;
  left: -1.3em;
}
.accordion_qa .A{
  position: relative;
  padding-left: 2em;
}
.accordion_qa .A::before{
  content: 'A.';
  font-size: 1.2em;
  display: block;
  position: absolute;
  top: -.1em;
  left: 0;
}





.sdgs{
  width: 300px;
  text-align: center;
  margin: 70px auto 20px;
}


@media screen and (max-width: 780px) {
  .sdgs{
    width: 70%;
  }
}

/*---------------------footer-----------------------*/
.footer1{
  text-align: center;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;  
  background-image: url("./img/fut.png");
  color: rgb(255, 255, 255);
  padding: 40px;
  margin-top: 100px;
}

.footer1 p {
  line-height: 30px;
  margin-top: 25px;
}

.footer1 a {
  color: #fff;
  text-decoration: none;
}


.image1{
  width: 10%;
}


.sample17 a {
  color: #fff;
  text-decoration: none;
}

.tizu a {
  text-decoration: none;
}


/*---------------------footer-----------------------*/
#footer{
    color: rgb(0, 0, 0);
	font-size:15px;
	text-align:center;
	margin:0 auto;
	padding-top:10px;
    padding-bottom:10px;
    line-height: 15px;
}












.wpcf7 form.invalid .wpcf7-response-output{
  color: #dc3232;
font-weight: 900;
border: 1.5px solid #dc3232;
border-radius: 2px;
margin: 1.5em 0;
padding: 0.5em 1em;
text-align: center;
}





/* 全幅指定 */
.full-width {
  margin: 0 calc(50% - 50vw);
}
/* pタグの余白を削除 */
.wpcf7-form p {
  margin-bottom: 0;
}

/*  フォームの幅（自由に変えてOK） */
.contactForm {
  width: 80%;
  margin: 0 auto;
}
/* 各項目の下部余白 */
.contact_item {
  margin-bottom: 2.5rem;
}
/* 項目名 */
.label {
  display: block;
  font-size: 25px;
  line-height: 1.6;
  letter-spacing: 0.05em;
  margin-bottom: .6rem;
  font-weight: bold;
}
/* 必須タグと任意タグ共通のスタイル */
.label_tag {
  font-size: 20px;
  color: #ffffff;
  border-radius: .3rem;
  margin-right: 1rem;
  padding: 5px 10px;
}
/* 必須タグ */
.label_must {
  background-color:rgb(110, 110, 110);
}
/* 任意タグ */
.label_option {
  background-color: #888988;
}
/* 名前やメールアドレスなどユーザーが入力する箇所 */
.inputs {
  width: 100%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
input[type="text"],input[type="email"],input[type="tel"]{
  border: solid 1px #707070;
  padding: .5rem;
  font-size: 25px;
  width: 100%;
}
.contact_p{
  text-align: center;
  margin: 20px;
}

/* お問い合わせ内容を入力する箇所 */
textarea.form-control {
  border: solid 1px #707070;
  padding: .5rem;
  height: 207px;
  font-size: 25px;
  width: 100%;
}
/* ボタン */
.btnArea {
  text-align: center;
}
input[type="submit"]{
  background: rgb(73, 73, 73);
  border: 2px solid #ffffff;
  width: 280px;
  color: #ffffff;
  text-align: center;
  font-size: 25px;
  line-height: 1.3;
  letter-spacing: .5em;
  text-indent: .5em;
  font-weight: bold;
  padding: 1.4rem 0;
  margin-top: 2rem;
  cursor: pointer;
  border-radius: .3rem;
  transition: all .3s;
  
}
/* ボタンにホバーした時 */
input[type="submit"]:hover {
  color: rgb(73, 73, 73);
  background-color: #ffffff;
  border-color: rgb(73, 73, 73);
}
/* ローダー */
.wpcf7 .ajax-loader {
  display: block;
  margin: 0 auto;
}
/* モバイル版 */
@media screen and (max-width: 480px) {
  .contact_item {
      margin-bottom: 1.6rem;
  }
  .label {
      font-size:20px;
      margin-bottom: .4rem;
  }
  .label_tag {
      font-size: 20px;
  }
  input[type="text"],input[type="email"] {
      padding: .4rem;
      font-size: 20px;
  }
  textarea {
      padding: .4rem;
      font-size: 20px;
  }
  input[type="submit"]{
      font-size: 20px;
  }
}
textarea {
  width: 100%;
}


form.sent {
  display:none;
  }

.screen-reader-response {
  font-size: 25px;
  text-align: center;
  margin-top: 200px;
}
.wpcf7-response-output{
  display: none;
}

.screen-reader-response ul{
  display: none;
}




/* スクロールバーの幅 */
.scroll-box::-webkit-scrollbar { width: 10px; }

/* スクロールバー背景色 */
.scroll-box::-webkit-scrollbar-track { background: #f1f1f1; }

/* スクロールバーのつまみの色 */
.scroll-box::-webkit-scrollbar-thumb { border-radius: 6px; background: #c1c1c1; }

/* 本文調整 */
.bs {
  margin-bottom: 1.0em;
}





.wp-pagenavi a {
  text-decoration: none;
  border: 1px solid #BFBFBF;
  padding: 6px 10px;
  margin: 2px;
}

.wp-pagenavi span {
  text-decoration: none;
  border: 1px solid #BFBFBF;
  padding: 6px 10px;
  margin: 2px;
}

.wp-pagenavi {
  clear: both;
  text-align: center;
}


.wp-block-image img {
  height:auto;
  }



.reserve{
  width: 80%;
  margin: 80px auto;
}
.reserve p {
  text-align: center;
}

.start_booking_package{
  margin-top: 100px;
}


.archive_list li {
  border-bottom: solid 1px #eee;
    cursor: pointer;
    list-style:none;
    margin: 20px;
}

.archive_list a {
  line-height: 20px;
}

.col-md-3 {
  flex: 0 0 auto;
  width: 25%;
  border-collapse: collapse;
  border-spacing: 0;
  border: solid 1px #eee;
  height: 1100px;
}

.col-md-4 {
  margin-top: 30px;
  text-align: center;
}

.container{
  margin-top: 50px;
}

.container a {
  text-decoration: none;
}

.main_title{
  font-size: 40px;
  background-color: #ebebeb;
}

.main a:hover{
  color : #ff7043;
}
.main a{
text-decoration: none;
color: #000;
}

.news2_title{
  margin: 10px;
}

@media screen and (max-width: 780px) {
.col-md-3 {
  width: 100%;
  font-size: 25px;
  height: 1200px;
}
.archive_title {
  font-size: 30px;
}
.news2_title{
  font-size: 35px;
}

}



.sample100{
  width:100%;
  color: #000;
}

.sample100 .sample100-1{
  max-width:100%;
  margin:50px auto;
}
/* content */
@media (min-width: 992px) {
  .sample100 .sample100-1 .sample100-2{
      display: flex;
      align-items: center;
      justify-content: center;
  }
}

.sample100 .sample100-2-item {
  width:100%;
}
@media (min-width: 992px) {
  .sample100 .sample100-2-item {
      width:46%;
  }
}

.sample100 .image{
  display:block;
  max-width:100%;
  margin:0px auto;
}
.sample100 .sample100-2-text{
  text-align: left;
}
.sample100 .sample100-2-text {
  margin:10px auto;
  font-size: 26px;
  font-weight: normal;
  text-align: center;
}

@media screen and (max-width: 780px) {
  .sample100 .sample100-2-text{
    padding: 30px 15px;
    font-size: 16px;
  }
}

.request {
  margin-top: 100px;
}




/*------------------------------------- サンプル１０ ---------------------------------------*/
/* container */
.sample10{
  width:100%;
  background-color:#fafafa;
}
.sample10 .sample10-1{
  max-width:100%;
  margin:0px auto;
}
/* content */
  .sample10 .sample10-1 .sample10-2{
      display: flex;
      align-items: center;
      justify-content: center;
  }


.sample10 .sample10-2-item {
  width:100%;
}
  .sample10 .sample10-2-item {
      width:50%;
  }

.sample10 .image{
  display:block;
  max-width:100%;
  margin:0px auto;
}
.sample10 .sample10-2-text{
  padding:50px;
	    text-align: center;
}
.sample10 .sample10-2-text .sample10-2-heading{
  margin:0px 0px 40px 0px;
  font-size: 24px;
  font-weight: normal;
  text-align: center;
}


/* container */
.sample110{
  width:100%;
  background-color:#fafafa;
}

.sample110 .sample110-1{
  max-width:100%;
  margin:0px auto;
}

/* content */
  .sample110 .sample110-1 .sample110-2{
      align-items: center;
      justify-content: center;
  }


.sample110 .sample110-2-item {
  width:100%;
}
  .sample110 .sample110-2-item {
      width:100%;
	  text-align: center;
  }

.sample110 .image{
  display:block;
  max-width:100%;
  margin:0px auto;
}
.sample10 .sample10-2-text{
  padding:50px;
	    text-align: center;
}
.sample110 .sample110-2-text .sample110-2-heading{
  margin:0px 0px 40px 0px;
  font-size: 24px;
  font-weight: normal;
  text-align: center;
}

.sample110 p{
  margin: auto;
	padding: 50px;
}
/*------------------------------------- cos ---------------------------------------*/

.cos h2{
  margin: 150px auto 50px;
}

.cos {
  margin: 150px auto 0px;
}

/*------------------------------------- yuki ---------------------------------------*/


.yukiimg {
    margin: 70px auto 46px;
	width: 70%;
	text-align: center;
}

@media screen and (max-width: 1200px) {
.yukiimg {
    margin: 70px auto 46px;
	width: 90%;
	text-align: center;
}
}

.yukisns {
    display: flex;
    justify-content: space-around; /* 画像の間に均等に余白を設定 */
    text-align: center;
	margin: 50px;
}

.yukisns img {
    width: 90%; /* 画像が3つ並ぶように設定 */
    height: auto;
}


.yu {
 position: fixed;
 top: 150px;
 right: 10px;
}

.yu1 {
position:fixed;
right:10px;
top:270px;
}
