
body{
 font-family: "DM Sans", sans-serif;
 margin:0;
 color: #41403E;
}

img {
    display: block;
    width: 100%;
}

.container {
  max-width: 1100px; 
  width: 100%;
  margin:0 auto;
}

section{
 margin: 5.25rem 0;
}

/* メニューバーの基本スタイル */
.menubar {
    background-color: #ffffff;
    color: #41403E;
    padding: 15px 20px;
    
    justify-content: space-between;
    align-items: center;
    width: 100%;
    /* 最初は非表示 */
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease; /* フェードイン・アウトのアニメーション */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    display: none;
    box-sizing: border-box;
}

/* スクロールで表示・固定されたときのスタイル */
.menubar.fixed {
    position: fixed; /* 画面上部に固定 */
    top: 0;
    left: 0;
    z-index: 1000; /* 他の要素の上に表示 */
    opacity: 1;
    visibility: visible;
    display: block;
    display: flex;
}

/* ロゴのスタイル */
.logo {
    color: #41403E;
    text-decoration: none;
    font-size: 1.5em;
    font-weight: bold;
}

/* リンクボタンのスタイル */
.menubar-right a {
    color: #41403E;
    text-decoration: none;
    margin-left: 20px;
    padding: 8px 15px;
    border-radius: 4px;
    transition: background-color 0.3s;
}

.menubar-right a:hover {
    background-color: #ffffff;
}

.fo_logo a{
 display: flex;
 align-items: center;
}

.fo_logoimg{
 width: 2rem;
}

.fo_app_name {
    padding-left: 0.5rem;
    font-size: 1rem;
    color:#41403E;
}

.footer {
    padding: 4rem 0;
    background-color: #FEFBE9;
}

.fo_content{
 text-align: end;
}

.fo_content a{
 text-decoration: none;
 color:#41403E;
}

.fo_content div {
    margin: 2rem 0;
}

.fo_c{
 text-align: center;
 font-size:80%
}


/***/
/**********/
a.btn_23 {
	display: block;
	text-align: center;
	vertical-align: middle;
	text-decoration: none;
	width: 120px;
	margin: auto;
	padding: 1rem 4rem;
	font-weight: bold;
	border: 2px solid #74c455;
	color: #74c455;
	cursor: pointer;
	position: relative;
 	overflow: hidden;
 	z-index: 1;
  background-color: #fff;
}
a.btn_23::before {
	content: "";
	position: absolute;
	left: 0;
	top: 0;
	width: 100%;
	height: 100%;
	background-color: rgb(114, 196, 85);
	transform: translateX(-100%);
	transition: all .3s;
	z-index: -1;
}
a.btn_23:hover::before {
	transform: translateX(0);
}
a.btn_23:hover {
	color: #fff;
}

/*******/
.get_btn {
    margin-top: 2rem;
}
@media (min-width: 769px) {

  .pc{
    display: block;
  }
  .sp{
    display: none;
  }

  .menubar-left a{
   display: flex;
   align-items: center;
  }

  .logoimg{
   width: 3.8rem;
  }

  .app_name {
    padding-left: 1rem;
    font-size: 1.5rem;
 }

 .menubar-right a{
  display: block;
  margin: 0 2rem;
 }

 .menubar-right{
  display: flex;
  align-items: center;
 }

}



@media (max-width: 768px) {

  .pc{
    display: none;
  }
  .sp{
    display: block;
  }

  section {
    margin: 3rem 0;
  }

  /**ハンバーガーメニュー**/
   .menu {
    position: fixed;
    top: 0;
    right: -100%; /* 初期状態では画面の外に隠れている */
    width: 300px;
    height: 100%;
    background-color: #61b0e6;
    color: #ffffff;
    transition: right 0.3s ease; /* スライドインのアニメーション */
    padding: 20px;
    box-sizing: border-box;
    z-index: 10;
  }

  /* メニューが開いているとき */
  .menu.open {
    right: 0;
  }

  /* ボタンのスタイル */
  .hamburger {
    position: fixed;
    top: 20px;
    right: 20px;
    width: 30px;
    cursor: pointer;
    z-index: 20;
  }

  .hamburger span {
    display: block;
    height: 3px;
    width: 100%;
    background-color: #333;
    margin: 5px 0;
    transition: 0.4s;
  }

  /* バツ印に変化するスタイル */
  .hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }

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

  .hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

  /* メニューリストのスタイル */
  .menu ul {
    list-style-type: none;
    padding: 0;
    margin-top: 80px;
  }

  .menu li {
    padding: 20px 0;
    border-bottom: 1px solid #ffffff;
  }

  .menu li a {
    color: #ffffff;
    text-decoration: none;
    display: block;
  }

  .footer {
    padding: 4rem 1rem;
 }

}