@charset "utf-8";

/*
Base style
*/
body {
  font-family: 'Noto Sans JP', "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #333;
}
a {
  text-decoration: none;
}

h1 {
font-family: 'Noto Serif JP', "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
color: #005024;
}

/*
grid
*/
.grid {
  display: flex;
  width: 1200px;
  margin: auto;
  padding: 0;
  justify-content: space-between;
}
.grid-item {
  list-style: none;
}
.grid-col-1 > .grid-item {
  width: calc(100% - 0px); /* 10pxは余白の間隔 */
}
.grid-col-2 > .grid-item {
  width: calc(50% - 60px); /* 10pxは余白の間隔 */
}
.grid-col-3 > .grid-item {
  width: calc(33.3% - 40px);
}
.grid-col-4 > .grid-item {
  width: calc(25% - 30px); /* 10pxは余白の間隔 */
}


/*
改行
*/
@media screen and (min-width: 768px){
  .br-sp {display: none; }
  }



/*
grid SP
*/

@media screen and (max-width: 768px) {
  .grid {
    display: block;
    padding: 0 20px 0 20px;
    width: 100%;
  }
  .grid-col-2 > .grid-item,
  .grid-col-3 > .grid-item,
  .grid-col-4 > .grid-item {
    width: 100%;
  }
  
  
}

/* 
header
*/
.header {
  position: fixed;
  background-color: #fff;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  padding-top: 20px;
  padding-bottom: 20px;
  justify-content: space-between;
  align-items: center;
}
header .logo {
 padding-left: 30px;
}

header .logo img {
 width: 285px;
}


.header-nav{
   width: 1200px;
   margin-left: auto;
   margin-right: auto;
}
.header-navlist {
   width: 900px;
   margin: 0;
   display: flex;
   justify-content: space-between;
   align-items: center;
   text-align: center;
}
/*.header-navitem {}*/
.header-navitem > a {
   display: block;
   width: 116px;
   padding: 10px;
   color: #3E3A39;
   text-decoration: none;
   font-weight: bold;
   border-bottom: 2px solid transparent;
   transition: border-color .5s;
}
.header-navitem > a:hover {
   border-bottom: 2px solid #3E3A39;
}

.header-sns img {
  width: 50%;
 }

 .header-sns :hover {
  opacity: 0.9;
  transition: 1s;
 }

.header-contact img {
 width: 100%;
}

.header-contact :hover {
  opacity: 0.9;
  transition: 1s;
 }

.navtop {
 display: flex;
 padding: 25px 0 25px 0;
}
.navtop h3 {
 font-size: 18px;
 margin-left: 30px;
 margin-right: 5px;
 width: 800px;
}

.navtop-button {
 display: flex;
 gap: 0;
 align-items: center;
}

.navtop-button img {
 width: 220px;
 float: right;
 margin: 0;
 padding-left: 20px;
}
.navtop-button img:hover {
 transition: 1.0s ;
 opacity: 0.7 ;
}

a{
 color: #333333;
 text-decoration: none;
 display: block;
}

ul li{
 list-style: none;
 width:120px;
 padding-top: 10px;
 padding-bottom: 10px;
}


/* 
header-SP
*/
/* スマートフォン表示用のスタイル */
@media screen and (max-width: 768px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 10;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }

  .navtop h3 {
    display: none;
  }

  .navtop-button img {
    display: none;
    width: 100%;
    float: 0;
    padding-left: 10px;
  }

  header .logo {
    float: left;
    padding-left: 22px;
    padding-top: 0px;
    padding-bottom: 5px;
  }

  header .logo img {
    width: 70%;
  }

  /* ハンバーガーメニューのスタイル */
  .btn-toggle {
    position: fixed;
    top: 35px;
    right: 20px;
    width: 30px;
    height: 24px;
    z-index: 3;
    cursor: pointer;
    transition: all 400ms;
  }

  .btn-toggle span {
    position: absolute;
    width: 30px;
    height: 4px;
    background: #666;
    border-radius: 10px;
    transition: all 400ms;
  }

  .btn-toggle span:nth-child(1) {
    top: 0;
  }

  .btn-toggle span:nth-child(2) {
    top: 10px;
  }

  .btn-toggle span:nth-child(3) {
    top: 20px;
  }

  .open .btn-toggle span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .open .btn-toggle span:nth-child(2) {
    opacity: 0;
  }

  .open .btn-toggle span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  .btn-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
  }

  .btn-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .btn-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
  }

  /* メニューリストの表示/非表示スタイル */
  .header-navitem > a {
    width: 100%;
    border-bottom: 0px;
    transition: none;
  }

  .header-navitem > a:hover {
    opacity: 0.5;
    transition: 0.5s;
    border-bottom: 0px;
 }



  .header-navlist {
    position: fixed;
    top: 0;
    left: 0;
    background-color: #333;
    opacity: 0.98;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    transform: translateX(100%); /* 初期状態では画面右側に隠れる */
    transition: transform 0.3s ease-out; /* アニメーションの設定 */
  }

  .header-navlist.open {
    transform: translateX(0%); /* クリックしたら画面内に移動して表示 */
  }

  .header-navlist.open li.header-navitem a {
    color: #fff;
    font-size: 18px;
    font-weight: lighter;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    padding-top: 25px;
    padding-bottom: 25px;
  }

  header nav ul li {
    width: 100%;
  }
  

  header nav ul li a {
    display: block;
    color: #ffffff;
    padding-left: 20px;
  }
}
/*
Mainvisual
*/
code
/* メインビジュアルの親要素に相対的な位置指定 */
.mainvisual {
    position: relative;
    padding-top: 200px;
    margin-bottom: 0px;
}

/* メインビジュアルの画像 */
.mainvisual img {
    width: 100%;
    padding-top: 86px;
}
.mainvisual-pc {
  display: block !important;
}
.mainvisual-sp {
  display: none !important;
}


/* 画面幅がスマートフォンサイズの場合に表示 */
@media screen and (max-width: 768px) {
    .mainvisual-pc {
        display: none !important;
    }
    .mainvisual-sp {
        display: block !important;
    }
    .mainvisual img {
      padding-top: 100px;
  }
}



/*
section
*/
.section {
  padding: 150px 0px 0px 0px;
 }
 .section.section-secoundaly {
   background: #F7F8F8;
 }
 .section-headline{
   text-align: center;
   font-size: 45px;
   font-weight: lighter;
   margin-bottom: 0px;
 }
 .section-subheadline{
   text-align: center;
   font-size: 18px;
   font-weight: bold;
   margin: 0 0 70px 0;
 }

 .section-button {
   text-align: right;
   font-weight: bold;
 }
 .section-button .button {
   display: inline-block;
   color: #fff;
   background-color: #E9B4B2;
   text-align: center;
   padding: 15px 60px;
   text-decoration: none;
 }
 a.btn-border {
   font-size: 25px;
   font-weight: 500;
   line-height: 1.5;
   display: block;
   margin-left: auto;
   margin-right: auto;
   margin-top: 100px;
   margin-bottom: 155px;
   padding: 20px 10px;
   max-width: 1200px;
   height: 87px;
   -webkit-transition: all 0.3s;
   transition: all 0.3s;
   text-align: center;
   text-decoration: none;
   letter-spacing: 0.1em;
   color: #212529;
   border: 1.7px solid #1c1c1c;
   border-radius: 0;
 }
 
 a.btn-border:hover {
   color: #fff;
   background: #1c1c1c;
 }
 
 /*
 section-SP
 */
 
 @media screen and (max-width: 768px) {
   .section {
     padding: 70px 0px 0px 0px;
    }
    .section-button {
   text-align: center;
   margin-top: 40px;
   }
   .section-headline{
    font-size: 30px;
   }
   a.btn-border {
     font-size: 20px;
     margin-top: 70px;
     margin-bottom: 70px;
     padding: 10px 10px;
     width: 100%;
     height: 60px;
   }
   .section-subheadline{
    margin: 0 0 50px 0;
  }
 }

/*
glamping
*/
.glamping{
  margin: auto;
  display: flex;
  justify-content: center;
  width: 1200px;
}
.glamping-image {
  width: 45%;
  height: 45%;
  margin-top: 0px;
}
.glamping-caption {
  margin-left: 50px;
}
.glamping-caption h1{
  margin-top: 0px;
  margin-bottom: 0px;
  font-size: 45px;
  font-weight: lighter;
}
.glamping-caption h3{
  margin-top: 0px;
  font-size: 18px;
  font-weight: bold;
}
.glamping-caption p {
  font-family: 'Noto Serif JP', "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  font-size: 18px;
  line-height: 1.8;
  margin: 0px;
  margin-top: 25px;
  text-align: justify;
}
.glamping-headline{
  margin: 0 0 20px;
  font-size: 30px;
}
/*
glamping-SP
*/
@media screen and (max-width: 768px) {
  .glamping{
  display: block;
  width: 100%;
  padding: 0 20px 20px;
  }
  .glamping-caption h1{
  margin-top: 50px;
  margin-bottom: 0px;
  font-size: 30px;
  }
  .glamping-caption p {
  width: 100%;
  margin-top: 10px;
  margin-bottom: 20px;
  }
  .glamping-caption{
  padding-left: 0px;
  margin-top: 50px;
  margin-left: 0px;
  }
  .glamping-image {
   display: block;
   width: 100%;
   margin-top: 0px;
   margin-left: auto;
   margin-right: auto;
  }
}


/*
price
*/
.price {
  width: 1200px;
  justify-content: center;
  text-align: center;
  margin-top: 0px;
  margin-bottom: 150px;
  margin-left: auto;
  margin-right: auto;
}
.price_pc {
  display: block;
  width: 100%;
}
.price_sp {
  display: none;
}

/*
price SP
*/
@media screen and (max-width: 768px) {
  .price {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 150px;
    padding-left: 10px;
    padding-right: 10px;
  }
  .price_pc {
    display: none;
  }
  .price_sp {
    display: block;
    width: 100%;
  }

}

/*
information
*/
.information {
  width: 1200px;
  justify-content: center;
  text-align: center;
  margin-top: 0px;
  margin-bottom: 150px;
  margin-left: auto;
  margin-right: auto;
}
.information img {
  width: 100%;
}

/*
information SP
*/
@media screen and (max-width: 768px) {
  .information {
    width: 100%;
    justify-content: center;
    text-align: center;
    margin-top: 20px;
    margin-bottom: 100px;
    padding-left: 10px;
    padding-right: 10px;
  }  
}

/*
ギャラリー
*/
/*==================================================
スライダーのためのcss
===================================*/


/*画像の横幅を100%にしてレスポンシブ化*/
img{
  width: 100%;
  height: auto;
  vertical-align: bottom;/*画像の下にできる余白を削除*/
}

/*メイン画像下に余白をつける*/
.gallery{
  margin-top:150px;
  margin-bottom: 10px;
}

/*矢印の設定*/

/*戻る、次へ矢印の位置*/
.slick-prev, 
.slick-next {
    position: absolute;/*絶対配置にする*/
    z-index: 3;
    top: 42%;
    cursor: pointer;/*マウスカーソルを指マークに*/
    outline: none;/*クリックをしたら出てくる枠線を消す*/
    border-top: 2px solid #ccc;/*矢印の色*/
    border-right: 2px solid #ccc;/*矢印の色*/
    height: 25px;
    width: 25px;
}

.slick-prev {/*戻る矢印の位置と形状*/
    left:2.5%;
    transform: rotate(-135deg);
}

.slick-next {/*次へ矢印の位置と形状*/
    right:2.5%;
    transform: rotate(45deg);
}

/*選択するサムネイル画像の設定*/

.choice-btn li{
  cursor: pointer;
  outline: none;
  background:#333;
  width:15%!important;
}


.choice-btn li img{
  opacity: 0.4;/*選択されていないものは透過40%*/
}

.choice-btn li.slick-current img{
  opacity: 1;/*選択されているものは透過しない*/
}

.choice-btn .slick-track {
  transform: unset !important;/*画面幅サイズ変更に伴うサムネイル固定*/
}

/*========= レイアウトのためのCSS ===============*/

/*エリア全体を中央寄せ*/
.gallery_wrapper{
  width:100%;
  max-width:1000px;
  margin:0 auto;
}

ul{
  margin:0;
  padding: 0;
  list-style: none;
}

a{
  color: #333;
}

a:hover,
a:active{
  text-decoration: none;
}

@media screen and (max-width: 768px) {
  .gallery {
    margin-top: 50px;
  }
  .gallery_wrapper{
    width:100%;
    margin-bottom: 0px;
  }
}

/*
amenity
*/
.amenity {
  font-family: 'Noto Serif JP', "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
  margin-bottom: 120px;
}
.amenity-img {
  margin:  0 0 15px 0;
}
.amenity-img img {
  width: 100%;
}
.amenity-headline {
  color: #005024;
  font-weight: lighter;
  font-size: 35px;
  text-align: left;
  margin-bottom: 10px;
}
.amenity-description {
  font-size: 20px;
  line-height: 1.8;
  margin: 0;
  text-align: justify;
}
/*
amenity SP
*/
@media screen and (max-width: 768px) {
  .amenity-headline {
    font-size: 28px;
  }
  .amenity-description {
    font-size: 18px;
  }
}

/*
ボタン
*/
.news-buttons {
  width: 880px;
  margin-left: auto;
  margin-right: auto;
  display: flex;
}
a.news-btn-border {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 12px 10px;
  width: 280px;
  height: 60px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  text-decoration: none;
  color: #005BAC;
  border: 1.7px solid #005BAC;
  border-radius: 0;
}

a.news-btn-border:hover {
  color: #fff;
  background: #005BAC;
}
a.contact-btn-border {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.5;
  display: block;
  margin-left: auto;
  margin-right: auto;
  margin-top: 0px;
  margin-bottom: 0px;
  padding: 12px 10px;
  width: 320px;
  height: 60px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  text-align: center;
  text-decoration: none;
  color: #383838;
  border: 1.7px solid #383838;
  border-radius: 0;
}

a.contact-btn-border:hover {
  color: #fff;
  background: #383838;
}



/*
access
*/
.access {
  margin: auto;
  display: flex;
  justify-content: left;
  width: 1200px;
}

.access-icon {
  width: 53%;
  height: 53%;
  margin-left: 80px;
  padding-top: 40px;
}

.access-caption {
  align-items: center;
  flex-wrap: wrap;
}

.access-icon-image {
 width: 80%;
}

.access-caption h1 {
  color: #333;
  margin-top: 0;
  font-size: 30px;
  font-weight: lighter;
  letter-spacing: 2px;
  overflow-wrap: break-word;
}
.access-caption h1 span {
  font-size: 50px;
  color: #005024;
}



.access-caption p {
  font-size: 16px;
  line-height: 2;
  margin-top: 20px;
  margin-bottom: 40px;
  text-align: justify;
  font-family: 'Noto Serif JP', "Times New Roman", "YuMincho", "Hiragino Mincho ProN", "Yu Mincho", "MS PMincho", serif;
}

.access-headline {
  margin: 0 0 20px;
  font-size: 30px;
}

.google-map-link {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
}


.google-map-link h3 {
  font-size: 23px; 
  text-align: right; 
}


/* access-SP */
@media screen and (max-width: 768px) {
  .access {
    display: block;
    width: 100%;
    padding: 0 20px 20px;
  }
  .access-icon-image {
    width: 100%;
    margin-top: -7px;
  }

  .access-caption h1 {
    margin-top: 10px;
    margin-left: 0px;
    font-size: 30px;
    text-align: left;
  }

  .access-caption h2 {
    margin-top: 0;
    margin-bottom: 0;
    font-size: 20px;
  }

  .access-caption p {
    width: 100%;
    margin-bottom: 20px;
  }

  .access-icon {
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
    width: 100%;
    margin-right: 0;
  }

  .access-caption {
    padding-left: 0;
  }

  .access-image {
    width: 100%;
  }
  .access-icon {
    margin-top: 0px;
  }
  .google-map-link {
    width: 100%;
    margin-left: auto;
    margin-right: auto;
    font-size: 23px; 
    text-align: center; 
  }
}

/* 
privacy
*/
.privacy {
  max-width: 1200px;
  margin-top: 100px;
  margin-bottom: 100px;
  margin-left: auto;
  margin-right: auto;
}
.privacy h1 {
  font-size: 25px;
  text-align: center;
  margin-bottom: 70px;
}
.privacy h2 {
  font-size: 20px;
  color: #fff;
  background-color: #005024;
  padding: 20px;
  padding-left: 45px;
}
.privacy p {
  line-height: 2.5;
  padding-left: 43px;
}
/* 
privacy-SP
*/
@media screen and (max-width: 768px) {
.privacy {
  width: 100%;
  margin-top: 40px;
  margin-bottom: 70px;
  margin-left: 0px;
  margin-right: 0px;
}
.privacy h1 {
  font-size: 25px;
  text-align: center;
  margin-bottom: 40px;
}
.privacy h2 {
  padding-left: 35px;
}
.privacy p {
  margin-left: 10px;
  margin-right: 10px;
  padding-left: 18px;
}
}

/*
contact
*/
.container-form{
	width: 100%;
	max-width: 1200px;
	margin-left: auto;
	margin-right: auto;
  display: block;
}
.container-form h1 {
  font-size: 80px;
  text-align: center;
  margin-top: 0px;
  margin-bottom: 70px;
} 
.container-form h1 span {
  font-size: 40px;
  margin-right: 10px;
} 
.container-form h2 {
  color: #005024;
  padding-bottom: 5px;
  border-bottom: 1px solid #005024;
  max-width: 1200px;
  font-size: 18px;
  margin-top: 90px;
  margin-bottom: 50px;
} 

.container-form h3 {
  font-size: 16px;
  font-weight: normal;
  text-align: center;
  padding-bottom: 25px;
} 

.container-form h4 {
  font-size: 25px;
  text-align: center;
  margin-bottom: 0px;
} 

@media screen and (max-width:767px){
	.container-form{
		padding-left: 1rem;
		padding-right: 1rem;
		box-sizing: border-box;
	}
  .container-form h1 {
    font-size: 45px;
    text-align: center;
    margin-bottom: 40px;
  }
  .container-form h1 span {
    font-size: 25px;
  }
  .container-form h4 {
    font-size: 17px;
  }
  .assess-image {
    width: 90%;
    display: block;
    margin-left: auto;
    margin-right: auto;
    padding-top: 50px;
    margin-bottom: 50px;
  }
}
 /*- form -*/
 .form{
	line-height: 2;
	font-size: 16px;
}

.form_table{
	width: 100%;
	box-sizing: border-box;
}


.form_table th{
	width: 25%;
	text-align: left;
	vertical-align: top;
	font-weight: bold;
	padding: 12px;
	border-bottom: 1px solid #ddd;
	overflow: hidden;
	box-sizing: border-box;
}

.form_table td{
	width: 70%;
	padding: 12px;
	border-bottom: 1px solid #ddd;
	box-sizing: border-box;
}


  /*入力パーツ*/
.form .textbox{
	display: inline-block;
	font-size: 100%;
	font-family:Meiryo,'Hiragino Kaku Gothic ProN','Hiragino Sans',sans-serif;
	color: #333;
	line-height: inherit;
	background: #fff;
	padding: 3px;
	margin: 1px;
	border: 1px solid #aaa;
	max-width: 100%;
	box-sizing: border-box;
}

.form textarea.textbox{
	display: block;
}

.form select.textbox{
	cursor: pointer;
}

.form label{
	cursor: pointer;
	display: inline-block;
	margin-right: 2em;
	min-width: 25%;
}

.form input[type="radio"], .form input[type="checkbox"] {
	margin: 0 5px 0 0;
}
.form_item_label{
  display: block;
  margin-top: 0rem;
}

.form_item_label::before{
  content: "▼";
}

  /*入力必須*/
.form .must{
	display: block;
	background: #005024;
	padding: 5px;
  margin-top: 5px;
	font-size: 10px;
	line-height: 10px;
	color: #fff;
	float: right;
	border-radius: 5px;
}

.form .annotation{
	font-size: 11px;
  color: #ccc;
}

  /*個人情報注意書き*/
.readme1{
	margin-right: 5px;
	margin-left: 5px;
	padding-top: 15px;
	padding-bottom: 15px;
}

.readme1_heading{
	font-size: 14px;
}

.readme1 textarea.textbox{
	width: 100%;
	height: 250px;
	color: #333;
	font-size: 13px;
}

  /*個人情報同意チェック*/
.readme2{
	text-align: center;
	padding: 10px 10px 30px 10px;
	background-color: #efefef;
	border: 1px solid #ccc;
}

  /*送信エリア*/
#submit_box{
	text-align: center;
	padding: 1rem 0 6rem;
}

#submit_box button{
	font-size: 20px;
	line-height: 1.8;
	padding: 10px 30px;
	margin: 0 1rem;
	cursor: pointer;
}

@media screen and (max-width:767px){
	.form_table th{
		display: block;
		width: 100%;
		border-bottom: none;
		background: #efefef;
		padding: 0.4em 0.5em 0.2em;
	}

	.form_table td{
		display: block;
		width: 100%;
		margin-bottom: 2rem;
	}

	  /*入力パーツ*/
	.form .textbox{
		width: 100%!important;
	}
	
	.form_item_label{
		display: block;
		margin-top: 0.5rem;
	}
	
	.form_item_label::before{
		content: "▼";
	}
	
	  /*送信エリア*/
	#submit_box button{
		display: block;
		width: 70%;
		margin: 0 auto 1.5rem;
	}
}

/*
sitemap
*/
.sitemap_content {
  margin-left: auto;
  margin-right: auto;
  width: 800px;
}
.sitemap_content2 {
 margin-left: auto;
 margin-right: auto;
 margin-bottom: 120px;
 width: 600px;
}
.sitemap_1 {
  display: flex;
  margin-top: 10px;
  justify-content: space-around;
}
.sitemap_1 h3 {
 font-size: 17px;
 color: #333;
}
.sitemap_1 p {
  font-size: 16px;
  font-weight: bolder;
  line-height: 1.5;
  color: #333;
}
.sitemap_1 h3:hover {
 opacity: 0.5;
 transition: 0.5s;
}
.sitemap_1 p:hover {
  opacity: 0.5;
  transition: 0.5s;
}


/* 
sitemap-SP
*/
@media screen and (max-width: 768px) {
 .sitemap_content {
   width: 100%;
   line-height: 50px;
   text-align: center;
   margin-left: auto;
   margin-right: auto;
 }
 .sitemap_content2 {
   width: 100%;
   text-align: center;
   margin-left: auto;
   margin-right: auto;
   margin-bottom: 100px;
 }
.sitemap_1 {
 display: block;
 margin-top: 10px;
 justify-content: space-around;
}
.sitemap_1 p {
 line-height: 50px;
}
}


/* 
line-link
*/
.line-container {
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 10%;
  margin-bottom: 10%;
  width: 50%;
}

.line-link img {
  transition: opacity 0.5s ease-in-out;
}
.line-link img.hover {
  display: none;
}
.line-link:hover img.default {
  display: none;
}
.line-link:hover img.hover {
  display: inline;
}

/* 
line-link-SP
*/
@media screen and (max-width: 768px) {
  .line-container {
    align-items: center;
    margin-left: auto;
    margin-right: auto;
    margin-top: 15%;
    margin-bottom: 15%;
    padding-left: 7%;
    padding-right: 7%;
    width: 100%;
  }
 }


/* 
footer
*/
footer {
    color: #fff;
    background: #005024;
    margin: 0;
    padding-top: 50px;
   }
   .footer-logo-container {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 50px;
    gap: 10%;
  }

  .footer-line-link {
    display: inline-block;
    position: relative;
  }

  .footer-line-link {
    display: inline-block;
    position: relative;
  }
  
  .footer-line-link img {
    display: block;
    width: 280px;
  }
  
  .footer-line-link img.hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
  }
  
  .footer-line-link:hover img.default {
    opacity: 0;
  }
  
  .footer-line-link:hover img.hover {
    opacity: 1;
  }
  
   .footer-logo img {
    width: 280px;
   }
   .footer_content {
     margin-left: auto;
     margin-right: auto;
     width: 800px;
   }
   .footer_content2 {
    margin-left: auto;
    margin-right: auto;
    width: 600px;
  }
   .footer_1 {
     display: flex;
     margin-top: 10px;
     justify-content: space-around;
   }
   .footer_1 h3 {
    font-size: 17px;
    color: #fff;
  }
   .footer_1 p {
     font-size: 16px;
     line-height: 1.5;
     color: #fff;
   }
   .footer_1 h3:hover {
    opacity: 0.5;
    transition: 0.5s;
  }
   .footer_1 p:hover {
     opacity: 0.5;
     transition: 0.5s;
   }

   .copyright {
     text-align: center;
     margin-top: 70px;
     padding-bottom: 20px;
   }
 
   
   
   /* 
   footer-SP
   */
   @media screen and (max-width: 768px) {
    .footer-logo-container {
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center; 
      text-align: center; 
      margin-bottom: 50px;
    }
  
    .footer-logo img {
      margin-bottom: 20%;
    }
  
    .footer-line-link {
      margin-top: 10px; 
    }
    .footer_content {
      width: 100%;
      line-height: 50px;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }
    .footer_content2 {
      width: 100%;
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }
   .footer_1 {
    display: block;
    margin-top: 10px;
    justify-content: space-around;
  }
  .footer_1 p {
    line-height: 50px;
  }
   .copyright {
     width: 300px;
     margin-left: auto;
     margin-right: auto;
     text-align: center;
     margin-top: 70px;
     padding-bottom: 20px;
   }
   }