@charset "UTF-8";
/* CSS Document */
html { /*このページ全体にスタイルを適用しますよ */
  font-size: 62.5%; /* 16px * 62.5% = 10px */
  width: 100%;
}
body {
  color: #666; /* RGB */
  /* 順番に探索していき、近いものを使っていく */
  font-family: "游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-weight: 500; /* 太さ */
  font-size: 1.6em;
  line-height: 2.4rem;
  text-align: center;
}
*, *:before, *:after {
  box-sizing: border-box;
}
.header {
  display: flex;
  height: 100px;
  width: 100%;
}
.eito-top-logo {
  padding: 40px 20px 20px;
  text-align: left;
}
.eito_logo {
  width: 120px;
}
/* ハンバーガーメニューのアイコン */
.menubtn {
  display: block;
  position: absolute;
  top: 40px;
  right: 20px;
  z-index: 3;
}
.openbtn1 {
  position: relative; /*ボタン内側の基点となるためrelativeを指定*/
  background: #0DAB67;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
/*ボタン内側*/
.openbtn1 span {
  display: inline-block;
  transition: all .4s; /*アニメーションの設定*/
  position: absolute;
  left: 14px;
  height: 3px;
  border-radius: 2px;
  background: #fff;
  width: 45%;
}
.openbtn1 span:nth-of-type(1) {
  top: 15px;
}
.openbtn1 span:nth-of-type(2) {
  top: 23px;
}
.openbtn1 span:nth-of-type(3) {
  top: 31px;
}
/*activeクラスが付与されると線が回転して×に*/
.openbtn1.active span:nth-of-type(1) {
  top: 18px;
  left: 18px;
  transform: translateY(6px) rotate(-45deg);
  width: 30%;
}
.openbtn1.active span:nth-of-type(2) {
  opacity: 0; /*真ん中の線は透過*/
}
.openbtn1.active span:nth-of-type(3) {
  top: 30px;
  left: 18px;
  transform: translateY(-6px) rotate(45deg);
  width: 30%;
}
/*--- ハンバーガーメニューで表示するナビ部分---*/
.header__nav {
  position: fixed;
  width: 250px;
  top: 0px;
  left: auto;
  right: 0;
  bottom: 0;
  padding: 100px 30px;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s, visibility .5s;
  background-color: #0DAB67;
  z-index: 3;
  text-align: left;
  font-weight: bold;
}
.header__nav a {
  color: #fff;
  text-decoration: none;
}
.header__nav.active {
  opacity: 1;
  visibility: visible;
}
.nav-items__item {
  margin-bottom: 25px;
}
.dropdown-item {
  padding-left: 10px;
  line-height: 200%;
}
.dropdown-item a{
  font-size: 12px;
}
@media(min-width: 1025px) {
  .header {
    display: flex;
    justify-content: space-between;
  }
  .eito_logo {
    width: auto;
    height: 45px;
  }
  .menubtn {
    display: none;
  }
  .header__nav {
    position: relative;
    visibility: visible;
    opacity: 1;
    width: auto;
    padding: 40px 0;
    background-color: rgba(0, 0, 0, 0);
  }
  .nav__items {
    display: flex;
  }
  .nav-items__item {
    margin-right: 15px;
    padding: 5px 10px;
    border-radius: 20px;
  }
  .header__nav a {
    color: #0DAB67;
    font-size: 16px;
  }
  .dropdown-list {
    display: none;
  }
  .dropdown-item{
    padding-left: 20px;
  }
  .nav-items__item:hover a {
    color: #fff;
  }
  .nav-items__item:hover {
    background-color: #2ba464;
  }
  .nav-items__item:hover .dropdown-list {
    display: block;
    border: solid 1px;
    border-radius: 10px;
    background-color: #2ba464;
    padding: 15px 10px;
    position: absolute;
    top: 72%;
  }
  .dropdown-item {
    border-radius: 10px;
  }
  .dropdown-item a {
    color: white;
    line-height: 250%;
    padding-right: 20px;
  }
  .dropdown-item:hover {
    background-color: #fff;
  }
  .dropdown-item:hover a {
    color: #2ba464;
  }
}
/*--- ボタンの影付け ---*/
.button-shadow {
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2), 0 0 40px rgba(128, 128, 128, 0.1);
  transition: all .3s;
}
.button-shadow:hover {
  box-shadow: 0 1px 10px rgba(0, 0, 0, 0.4), 0 0 50px rgba(128, 128, 128, 0.1);
  border-color: transparent;
}
/*--- サイドメニュー ---*/
.side-menu {
  position: fixed;
  right: 10px;
  bottom: 5px;
  width: 30%;
  height: 80px;
  border-radius: 10px;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  padding: 10px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  z-index: 2;
}
.side-menu ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
  display: flex;
  justify-content: space-around;
}
.side-menu p {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  line-height: 100%;
  font-weight: 600;
  margin-bottom: 8px;
}
.side-menu ul li a {
  text-decoration: none;
  color: #333;
  font-weight: bold;
}
.side-menu ul li a:hover {
  color: #007BFF;
}
.side-menu img {
  width: 40px;
}
.x-share-icon {
  background-color: #000;
  border-radius: 20px;
  height: 40px;
  width: 40px;
}
.x-share-icon img {
  position: relative;
  top: 9px;
  width: 20px;
  height: auto;
}
@media(min-width: 1025px) {
  .side-menu {
    top: 40%;
    width: 80px;
    height: 150px;
    padding: 10px 15px;
  }
  .side-menu ul {
    display: block;
  }
  .side-menu p {
    margin-bottom: 10px;
  }
  .side-menu ul li {}
  .x-share-icon {
    position: relative;
    left: 4px;
    margin-bottom: 10px;
  }
}
/*--- 固定DLバナー ---*/
.fixed_dlbanner {
  border-radius: 35px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 3px 5px rgba(0, 0, 0, .5);
  box-shadow: 0 3px 5px rgba(0, 0, 0, .5);
  display: inline-block;
  width: 60%;
  height: 70px;
  padding-top: 15px;
  text-decoration: none;
  position: fixed;
  left: 10px;
  bottom: 8px;
  z-index: 2;
}
.fixed_dlbanner .icon-and-strings {
  display: flex;
  align-items: center;
  justify-content: center;
}
.fixed_dlbanner span {
  position: relative;
  font-weight: bold;
  font-size: 14px;
  color: #333333;
  margin: 0 5px;
  font-family: 'M PLUS Rounded 1c', sans-serif;
  top: 3px;
  left: 0px;
}
.fixed_dlbanner .dlbanner-left-phone {
  width: 40px;
  position: relative;
  left: -5px;
}
.fixed_dlbanner .dlbanner-right-arrow {
  position: relative;
  top: 2px;
}
@media(min-width: 1025px) {
  .fixed_dlbanner {
    display: none;
  }
}
/*--- 固定DLバナー（新） ---*/
#fixed-bottom-banner {
  background: #FFFFFF;
  display: none;
  width: 100%;
  height: 70px;
  padding-top: 10px;
  text-decoration: none;
  position: fixed;
  bottom: 0px;
  left: 0px;
  z-index: 2;
  border-bottom: 5px solid #2ba464;
}
#fixed-bottom-banner p {
  display: inline-block;
  position: relative;
  top: 2px;
  left: -10px;
  font-weight: bold;
  font-size: 16px;
}
.for-ios-layout {
  padding-top: 15px !important;
}
.for-ios-image {
  width: 110px;
  vertical-align: middle;
  margin-left: 5px;
}
.for-android-image {
  width: 130px;
  vertical-align: middle;
  margin-left: 5px;
}
.fixed-banner__close-btn {
  position: absolute;
  top: 5px;
  right: 10px;
  font-size: 20px;
  color: #333;
  cursor: pointer;
  text-decoration: none;
}
/*--- フッター部分 ---*/
.footer-bg {
  margin-top: 30px;
  background-color: rgba(255, 255, 255, 0.75);
}
.footer__content-wrapper {
  height: 400px;
  margin-top: 25px;
  padding: 20px;
}
.footer__logo-image {
  margin-bottom: 10px;
}
.footer-address {
  margin-bottom: 15px;
}
.footer__content-wrapper p {
  font-size: 12px;
  font-weight: bold;
}
.footer-link-wrapper {
  margin-bottom: 15px;
}
.footer-link {
  font-size: 12px;
  font-weight: bold;
}
.footer-sns p {
  font-size: 14px;
}
.footer-sns__instagram-icon {
  width: 16px;
  position: relative;
  top: 3px;
  margin-right: 5px;
}
.footer-trademark {
  margin: 10px;
  font-size: 8px;
  color: darkgray;
}
.footer__copyright {
  height: 130px;
  padding: 10px;
  background-color: #2BA464;
}
.footer__copyright p {
  font-size: 12px;
  font-weight: bold;
  color: #fff;
}
@media(min-width: 1025px) {
  .pcLayout-brdelete {
    display: none;
  }
  .footer__content-wrapper {
    height: 130px;
    max-width: 1024px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }
  .footer__logo-image {
    width: 15%;
    margin-bottom: 0;
    margin-right: 30px;
  }
  .footer-address {
    width: 40%;
    text-align: left;
    margin-bottom: 0;
    margin-right: 30px;
    line-height: 120%;
  }
  .footer-link-wrapper {
    text-align: left;
    line-height: 120%;
    margin-right: 100px;
    margin-bottom: 0;
  }
  .footer-sns {
    text-align: left;
    margin-bottom: 0;
  }
  .footer-trademark {
    width: 100%;
  }
  .footer__copyright {
    height: auto;
  }
}
/*--- テキスト中央寄せ（共通）---*/
.align-center {
  text-align: center;
}

/*--- モバイル改行 ---*/
.mobile-br {
  display: none;
}

@media screen and (max-width: 1025px) {
  .mobile-br {
    display: inline;
  }

  .mobile-br::after {
    content: "\A"; /* 改行 */
    white-space: pre;
  }
}