* {
  margin: 0;
  padding: 0;
}

body {
  background-color: #f9bc38;
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.ALL {
  /* width: 100%; */
  height: 100%;
  position: fixed;
  z-index: 100002;
  font-family: 'Zen Maru Gothic', sans-serif;
}

.loading {
  display: none;
}

.loading.is-active {
  display: block;
}

#logo_loader {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 101;
  background-color: #000;
}

#logo_loader .f_logo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 200px;
  margin: auto;
  width: 400px;
  height: 290px;
  text-align: center;
  color: #fff;
  font-size: 30px;
}

#logo_loader .f_logo img {
  width: 100%;
  height: auto;
}

#logo_loader .f_logo:before {
  content: "";
  display: block;
  width: 100%;
  height: 110%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 100%;
  animation: loadLogo 1.5s;
}

@keyframes loadLogo {
  0% {
    left: 0;
  }

  50% {
    left: 0;
  }

  100% {
    left: 100%;
  }
}

#logo_loader .f_logo:before {
  animation: loadLogo 1.5s;
}

#logo_loader.open {
  animation-name: slideOut;
  animation-fill-mode: forwards;
  animation-duration: 2s;
  animation-delay: 2s;
}

@keyframes slideOut {
  0% {
    transform: translateX(0%);
  }

  50% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(100%);
  }
}

.header {
  height: 50%;
  width: fit-content;
}

.Logo_wrapper {
  margin-top: 10px;
  margin-left: 16%;
  width: fit-content;
}

.LOGO {
  width: fit-content;
  width: 50px;
  margin: 0 auto;
}

.LOGO.logo_white {
  margin-left: 20px
}

.LOGO.disappear {
  display: none;
}

.Menu {
  position: relative;
  font-size: 25px;
  font-weight: 700;
  font-family: 'Zen Maru Gothic', sans-serif;
  line-height: 2;
  writing-mode: vertical-lr;
  color: #333;
  margin-top: 190px;
  margin-left: 12px;
}

.Menu:hover {
  cursor: pointer;
}

.linkbtn {
  width: fit-content;
}

.linkbtn_ul {
  list-style: none;
  width: fit-content;
  margin-left: 26px;
  padding: 0;
}

.linkbtn_li {
  margin-top: 13px;
  width: fit-content;
}

.linkbtn_li a {
  color: #333;
}

.linkbtn_li i{
  z-index: 2;
  /* z-index: 10000; */
}

.sns_icon {
  font-size: 20px;
}

.btn-wrap {
  position: relative;
  /* z-index: 10000; */
}

.btn-wrap:hover .search-btn {
  display: inline;
}

.fa-solid{
  position: fixed;
}

.search-btn {
  display: none;
  font-family: 'Zen Maru Gothic', sans-serif;
  position: absolute;
  text-align: right;
  /* 親要素を基準 */
  border: 1px solid #2f2f2f;
  border-radius: 5px;
  /* 要素を非表示 */
  padding: 10px;
  /* テキストの前後の余白 */
  background-color: #fffce6;
  /* 背景色（透明度） */
  width: 110px;
  /* 吹き出し全体の幅 */
  left: -3px;
  top: -11px;
  /* 表示位置 */
  font-size: 18px;
  /* 文字サイズ */
}

.btn-replace{
  position: absolute;
  left: 3px;
}

.search-btn:after {
  z-index: 1;
  top: 5%;
  /* 吹き出し口の縦位置 */
  content: "";
  /* コンテンツの挿入 */
  position: absolute;
  /* 親要素を基準 */
}

.openbtn {
  position: relative;
  /* background:#57a2c7; */
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  top: 190px;
  left: 12px;
}

.openbtn span {
  display: inline-block;
  transition: all .4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 12px;
  height: 3px;
  border-radius: 2px;
  background: #333;
  width: 45%;
}

.openbtn.hovered span {
  background: #ec6b45;
}

.Menu_h {
  transition: color .4s;
}

.Menu_h.hovered {
  color: #ec6b45;
}

.Menu.hovered {
  color: #ec6b45;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

.openbtn span:nth-of-type(3) {
  bottom: 15px;
  width: 16px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 15px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
  /*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 15px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

main {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex-grow: 1;
}

body.stop {
  overflow: hidden;
}

.index_box {
  width: 73%;
  /* height: 500px; */
  background-color: #fffce6;
  margin-top: 100px;
  border: 6px solid #ec6b45;
  border-radius: 20px;
  position: relative;
  height: auto;
}

.contain {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 80%;
  position: relative;
  width: 73%;
  overflow: hidden;
  margin-top: 60px;
}

.video_first {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 83vh;
  object-fit: cover;
  /* opacity: 80%; */
  display: block;
  margin: 0 auto;
  margin-right: 0;
  z-index: -1;
  border-radius: 15px;
}

.video_first_wrapper {
  width: 105%;
  border-radius: 20px;
  border-top: 6px solid #ec6b45;
  border-left: 6px solid #ec6b45;
  border-right: 6px solid #ec6b45;
  border-bottom: 6px solid #ec6b45;
}

@media (max-width: 890px) {
  .text_bottom {
    word-break: break-all;
  }
}

.right_bottom {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 190px;
  height: 185px;
  border-radius: 100% 100% 0 100%;
  background-color: #f9bc38;
  border: 6px solid #ec6b45;
  bottom: -21px;
  right: -28px;
  z-index: 1;
}

.logo {
  width: 140px;
  height: auto;
  /* margin-top: 20px; */
  /* margin-left: 20px; */
}

.text {
  position: absolute;
  bottom: 30px;
  left: 30px;
  z-index: 1;
  font-size: 3.5vw;
  color: #ec6b45;
  font-family: 'Zen Maru Gothic';
  font-weight: 700;
}

.theme {
  position: relative;
  height: 470px;
}

.theme>* {
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.logo40 {
  width: 350px;
  opacity: 0.2;
  position: absolute;
  top: 184px;
}

.theme_contents {
  position: absolute;
  text-align: center;
  font-family: 'Zen Maru Gothic';
  font-weight: bold;
  color: #5bacbc;
}

.theme_btn {
  color: #333;
  font-family: 'Zen Maru Gothic';
  font-weight: bold;
  z-index: 100;
  position: relative;
  /*形状*/
  display: inline-block;
  padding: 0 20px;
  /* padding-bottom: 3; */
  color: #333;
  text-decoration: none;
  outline: none;
}

.theme_btn_ex {
  padding-bottom: 30px;
}

.theme_btn_v:hover {
  color: #ec6b45;
}

.theme_btn::before {
  content: '';
  /*絶対配置で下線の位置を決める*/
  position: absolute;
  bottom: -8px;
  left: 15%;
  /* padding-bottom: 30px; */
  /*下線の形状*/
  width: 85%;
  height: 1.5px;
  background: #333;
  /*アニメーションの指定*/
  transition: all .3s;
}

.theme_btn::after {
  content: '';
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  bottom: -4px;
  right: -2px;
  /*矢印の形状*/
  width: 15px;
  height: 1.5px;
  border-radius: 1px;
  background: #333;
  transform: rotate(35deg);
  /*アニメーションの指定*/
  transition: all .3s;
}

/*hoverした際の移動*/
.theme_btn:hover::before {
  left: 25%;
  background: #ec6b45;
}

.theme_btn:hover::after {
  right: -10%;
  background: #ec6b45;
}

.theme_title {
  width: 200px;
  margin-bottom: 30px;
  margin-top: 30px;
}

.paragraph {
  margin-bottom: 35px;
}

.theme_title_02 {
  width: 350px;
  margin-top: 30px;
}

.paragraph {
  margin-top: 50px;
  margin-bottom: 60px;
  font-family: 'Zen Maru Gothic';
}

.index_box h2 {
  border-bottom: 6px solid #ec6b45;
  margin: 0;
  padding-block: 16px;
}

.cards {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 130px;
  padding-bottom: 70px;
  /* flex-direction: column; */
}

.card {
  width: 340px;
  height: 180px;
  background-color: white;
  /* border: 1px solid black; */
  border-radius: 10px;
  position: relative;
  margin-top: 55px;
  flex-direction: column;
}

.card_bottom {
  width: 340px;
  height: 180px;
  background-color: white;
  /* border: 1px solid black; */
  border-radius: 10px;
  position: relative;
  margin-top: 40px;
  margin-bottom: 20px;
  flex-direction: column;
}

.cards img {
  object-fit: cover;
  object-position: 40px;
  width: 100%;
  height: 100%;
  border-radius: 9px;
}

.card_btn {
  width: 340px;
  text-align: center;
  margin-bottom: 30px;
}

.card_info {
  position: absolute;
  height: 100%;
  width: 35%;
  background-color: #ec6b45;
  top: 0px;
  border-radius: 10px 0px 0px 10px;
}

.card_info p {
  text-align: center;
  font-family: 'Zen Maru Gothic';
  color: white;
  padding-top: 78px;
  font-weight: 700;
}

.card_info_b {
  position: absolute;
  height: 100%;
  width: 35%;
  background-color: #5bacbc;
  top: 0px;
  border-radius: 10px 0px 0px 10px;
}

.card_info_b p {
  text-align: center;
  font-family: 'Zen Maru Gothic';
  color: white;
  padding-top: 78px;
  font-weight: 700;
}

.card_info_b_bottom {
  position: absolute;
  height: 100%;
  width: 35%;
  background-color: #5bacbc;
  top: 0px;
  border-radius: 10px 0px 0px 10px;
}

.card_info_bottom {
  position: absolute;
  height: 100%;
  width: 35%;
  background-color: #ec6b45;
  top: 0px;
  border-radius: 10px 0px 0px 10px;
}

.card_info_b_bottom p {
  text-align: center;
  font-family: 'Zen Maru Gothic';
  color: white;
  padding-top: 78px;
  font-weight: 700;
}

.card_info_bottom p {
  text-align: center;
  font-family: 'Zen Maru Gothic';
  color: white;
  padding-top: 67px;
  font-weight: 700;
}

@media (max-width: 1100px) {
  .card_info_b_bottom {
    background-color: #ec6b45;
  }

  .card_info_bottom {
    background-color: #5bacbc;
  }
}

.feature-contents-wrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  row-gap: 20px;
  column-gap: 50px;
  padding-top: 50px;
  padding-bottom: 50px;
}

.feature-content-01 {
  width: 240px;
  height: 150px;
  background-color: white;
  border-radius: 10px;
  position: relative;
  /* margin-top: 30px */
  flex-direction: column;
}

.feature-content-01 img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 9px;
}

.feature-content-01:hover {
  transform: scale(1.1);
  transition: .4s;
}

.feature-content-02 {
  width: 240px;
  height: 150px;
  background-color: white;
  border-radius: 10px;
  position: relative;
  /* margin-top: 30px; */
  flex-direction: column;
}

.feature-content-02 img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 9px;
}

.feature-content-02:hover {
  transform: scale(1.1);
  transition: .4s;
}

.feature-content-03 {
  width: 240px;
  height: 150px;
  background-color: white;
  border-radius: 10px;
  position: relative;
  /* margin-top: 30px; */
  flex-direction: column;
}

.feature-content-03 img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  border-radius: 9px;
}

.feature-content-03:hover {
  transform: scale(1.1);
  transition: .4s;
}

.information {
  font-family: 'Zen Maru Gothic';
  font-weight: 400;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: auto;
}

.information_left {
  width: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  row-gap: 20px;
  border-right: 6px solid #ec6b45;
  padding-top: 20px;
  padding-bottom: 50px;
}

@media (max-width: 750px) {
  .information_left {
    border-color: transparent;
    flex-wrap: wrap;
  }

  .information {
    flex-wrap: wrap;
  }

  .information_right {
    padding-bottom: 70px;
  }
}

.information_left p {
  line-height: 25px;
}

.information_rocate {
  margin: 20px;
}

.information_word {
  font-size: 20px;
  font-weight: 700;
  color: #ec6b45;
  text-align: left;
}

.information_p_ex {
  margin-top: 30px;
}

.information_word:not(.information_word:first-of-type) {
  margin-top: 20px;
}

.information_paragraph {
  margin-top: 10px;
  display: flex;
  text-align: left;
}

.information_place {
  padding-left: 22px;
  margin-top: 5px;
}

.information_date {
  padding-left: 22px;
  margin-top: 10px;
}

.information_time {
  padding-left: 22px;
  display: flex;
  margin-top: 10px;
}

.time_margin {
  margin-right: 25px;
  display: inline-block;
}

.information_access {
  padding-left: 22px;
  margin-top: 10px;
}

.information_right {
  width: 36vw;
  height: auto;
  display: flex;
  justify-content: center;
  align-items: center;
}

.information_right iframe {
  width: 85%;
  max-width: 400px;
  aspect-ratio: 1/1;
  margin: 20px;
  /* height: 90%; */
}

.red {
  color: #ec6b45;
  font-weight: 700;
}

.time {
  line-height: 45px;
}

.information_paragraph {
  padding-top: 15px;
  padding-bottom: 15px;
  word-break: keep-all;
}

.news_op {
  font-family: 'Zen Maru Gothic';
  display: flex;
  width: 90%;
  margin-inline: auto;
  padding: 2% 0%;
  border-bottom: 1px solid black;
}

.news_up {
  font-family: 'Zen Maru Gothic';
  display: flex;
  width: 90%;
  margin-inline: auto;
  padding: 2% 0%;
  border-bottom: 1px solid black;
}

.news_left {
  display: flex;
  align-items: center;
  width: 40%;
  padding-top: 25px;
  padding-bottom: 25px;
}

@media (max-width: 820px) {
  .left_item {
    flex-wrap: wrap;
  }
}

.news_right {
  width: 60%;
  padding-top: 25px;
  padding-bottom: 25px;
  word-break: keep-all;
  /* overflow-wrap: anywhere; */
  display: flex;
  flex-wrap: wrap;
}

.news_right a {
  display: block;
  overflow-wrap: anywhere;
}

.type {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
  margin-inline: auto;
  border-radius: 15px;
  padding-bottom: 5px;
  color: white;
}

.type.Open {
  background-color: #ec6b45;
}

.type.Update {
  background-color: #5bacbc;
}

.news_border {
  line-height: 45px;
  border-bottom: 1px solid;
}

.news_btn {
  padding-top: 20px;
  padding-bottom: 30px;
  text-align: center;
}

.float {
  margin: 0 auto;
  width: 100%;
  font-size: 28px;
  text-align: center;
  overflow: hidden;
}

.float_animation {
  color: #ec6b45;
  margin: 0;
  display: inline-block;
  padding-left: 0%;
  white-space: nowrap;
  line-height: 1em;
  animation: scrollSample01 480s linear infinite;
  font-family: 'Zen Maru Gothic';
}

.news_hover:hover {
  color: #ec6b45;
  transition: .2s;
}

@keyframes scrollSample01 {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-100%)
  }
}

.br::after{
  content: "\A";
  white-space: pre;
}

.hamburger {
  width: 80%;
  background-color: #fef9e1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: -82%;
  transition: left .3s ease-in-out;
  z-index: 100001;
  box-shadow: 2px 2px 8px 2px #c6b99ca8;
}

.hamburger.open {
  left: 0;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  /* height: 100vh; */
  display: table-cell;
  vertical-align: middle;
  white-space: nowrap;
  /* padding-top: 140px; */
  /* position: fixed; */
}

.hamburger.open::-webkit-scrollbar {
  display: none;
}

.hamburgerinner {
  margin: 5% 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  /* height: 130%; */
}

.category {
  font-family: 'Zen Maru Gothic';
  padding-right: 10px;
  width: fit-content;
}

.TOP {
  font-family: 'Zen Maru Gothic';
  padding-right: 10px;
  width: fit-content;
}

.TOP h3 {
  /* margin-top: 80px; */
  margin-bottom: 10px;
  color: #333;
}

.category h3 {
  margin-top: 40px;
  margin-bottom: 10px;
  color: #333;
}

.category_ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  row-gap: 5px;
  padding-left: 18px;
}

.category_li {
  margin-right: 25px;
}

a {
  text-decoration: none;
  /* margin-right: 10px; */
  color: #333;
}

.nopen {
  height: 27px;
  color: #333;
  opacity: 0.5;
}

.nopen_ex {
  margin-bottom: 0;
}

.btnh {
  width: 50px;
}

.btnh:hover {
  color: #ec6b45;
}

@media (max-width: 645px) {

  .category,
  .category_li {
    white-space: nowrap;
  }
}

.hamburger-ul-padding {
  padding-bottom: 70px;
}

.hamburger {
  width: 80%;
  background-color: #fef9e1;
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  left: -82%;
  transition: left .3s ease-in-out;
  z-index: 100001;
  box-shadow: 2px 2px 8px 2px #c6b99ca8;
}

.hamburger.open {
  left: 0;
  overflow: scroll;
  -ms-overflow-style: none;
  scrollbar-width: none;
  height: 100vh;
  display: table-cell;
  vertical-align: middle;
  white-space: nowrap;
  /* padding-top: 140px; */
  /* position: fixed; */
}

.hamburger.open::-webkit-scrollbar {
  display: none;
}

.hamburgerinner {
  margin: 5% 120px;
  overflow: hidden;
  text-overflow: ellipsis;
  /* height: 130%; */
}

.category {
  font-family: 'Zen Maru Gothic';
  padding-right: 10px;
  width: fit-content;
}

.TOP {
  font-family: 'Zen Maru Gothic';
  padding-right: 10px;
  width: fit-content;
}

.TOP h3 {
  /* margin-top: 80px; */
  margin-bottom: 10px;
  color: #333;
}

.category h3 {
  margin-top: 40px;
  margin-bottom: 10px;
  color: #333;
}

.category_ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  row-gap: 5px;
  padding-left: 18px;
}

.category_li {
  margin-right: 25px;
}

a {
  text-decoration: none;
  /* margin-right: 10px; */
  color: #333;
}

.nopen {
  height: 27px;
  color: #333;
  opacity: 0.5;
}

.nopen_ex {
  margin-bottom: 0;
}

.btnh {
  width: 50px;
}

.btnh:hover {
  color: #ec6b45;
}

@media (max-width: 645px) {

  .category,
  .category_li {
    white-space: nowrap;
  }
}

.hamburger-ul-padding {
  padding-bottom: 70px;
}

#logo_loader {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  z-index: 101;
  background-color: #000;
}

#logo_loader .f_logo {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  padding-top: 200px;
  margin: auto;
  width: 400px;
  height: 290px;
  text-align: center;
  color: #fff;
  font-size: 30px;
}

#logo_loader .f_logo img {
  width: 100%;
  height: auto;
}

#logo_loader .f_logo:before {
  content: "";
  display: block;
  width: 100%;
  height: 110%;
  background-color: #000;
  position: absolute;
  top: 0;
  left: 100%;
  animation: loadLogo 1.5s;
}

@keyframes loadLogo {
  0% {
    left: 0;
  }

  50% {
    left: 0;
  }

  100% {
    left: 100%;
  }
}

#logo_loader .f_logo:before {
  animation: loadLogo 1.5s;
}

#logo_loader.open {
  animation-name: slideOut;
  animation-fill-mode: forwards;
  animation-duration: 2s;
  animation-delay: 2s;
}

@keyframes slideOut {
  0% {
    transform: translateX(0%);
  }

  50% {
    transform: translateX(0%);
  }

  100% {
    transform: translateX(100%);
  }
}

.header {
  height: 50%;
  width: fit-content;
}

.Logo_wrapper {
  margin-top: 10px;
  margin-left: 16%;
  width: fit-content;
}

.LOGO {
  width: fit-content;
  width: 50px;
  margin: 0 auto;
}

.LOGO.logo_white {
  margin-left: 20px
}

.LOGO.disappear {
  display: none;
}

.Menu {
  position: relative;
  font-size: 25px;
  font-weight: 700;
  font-family: 'Zen Maru Gothic', sans-serif;
  line-height: 2;
  writing-mode: vertical-lr;
  color: #333;
  margin-top: 190px;
  margin-left: 12px;
}

.Menu:hover {
  cursor: pointer;
}

.linkbtn {
  width: fit-content;
}

.linkbtn_ul {
  list-style: none;
  width: fit-content;
  margin-left: 26px;
  padding: 0;
}

.linkbtn_li {
  margin-top: 13px;
  width: fit-content;
}

.linkbtn_li a {
  color: #333;
}

.linkbtn_li i {
  z-index: 10000;
}

.sns_icon {
  font-size: 20px;
}

.btn-wrap {
  position: relative;
  /* z-index: 10000; */
}

.btn-wrap:hover .search-btn {
  display: inline;
}

.fa-solid {
  position: fixed;
}

.search-btn {
  display: none;
  font-family: 'Zen Maru Gothic', sans-serif;
  position: absolute;
  text-align: right;
  /* 親要素を基準 */
  border: 1px solid #2f2f2f;
  border-radius: 5px;
  /* 要素を非表示 */
  padding: 10px;
  /* テキストの前後の余白 */
  /* background-color: rgb(91, 172, 188, 1); */
  background-color: #fffce6;
  /* 背景色（透明度） */
  width: 110px;
  /* 吹き出し全体の幅 */
  left: -3px;
  top: -11px;
  /* 表示位置 */
  font-size: 18px;
  /* 文字サイズ */
}

.btn-replace {
  position: absolute;
  left: 3px;
}

.search-btn:after {
  z-index: 1;
  top: 5%;
  /* 吹き出し口の縦位置 */
  content: "";
  /* コンテンツの挿入 */
  position: absolute;
  /* 親要素を基準 */
}

.openbtn {
  position: relative;
  /* background:#57a2c7; */
  cursor: pointer;
  width: 50px;
  height: 50px;
  border-radius: 5px;
  top: 190px;
  left: 12px;
}

.openbtn span {
  display: inline-block;
  transition: all .4s;
  /*アニメーションの設定*/
  position: absolute;
  left: 12px;
  height: 3px;
  border-radius: 2px;
  background: #333;
  width: 45%;
}

.openbtn.hovered span {
  background: #ec6b45;
}

.Menu_h {
  transition: color .4s;
}

.Menu_h.hovered {
  color: #ec6b45;
}

.Menu.hovered {
  color: #ec6b45;
}

.openbtn span:nth-of-type(1) {
  top: 15px;
}

.openbtn span:nth-of-type(2) {
  top: 50%;
  transform: translateY(-50%);
}

.openbtn span:nth-of-type(3) {
  bottom: 15px;
  width: 16px;
}

.openbtn.active span:nth-of-type(1) {
  top: 18px;
  left: 15px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}

.openbtn.active span:nth-of-type(2) {
  opacity: 0;
  /*真ん中の線は透過*/
}

.openbtn.active span:nth-of-type(3) {
  top: 30px;
  left: 15px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}

.sns_icon-i{
  font-size: 22px;
}

.program-btn{
  position: relative;
  left: 3px;
  font-size: 14px;
}


/* 書き加えた */
.greetings_contents{
  width: 85%;
  margin: 0 auto;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  font-weight: 400;
  /* color: #ec6b45; */
  margin-top: 60px;
 margin-bottom: 60px;
}