@charset "UTF-8";
body {
  font-family: -apple-system, BlinkMacSystemFont, Roboto, "Segoe UI",
    "Helvetica Neue", HelveticaNeue, YuGothic, "Yu Gothic Medium", "Yu Gothic",
    Verdana, Meiryo, sans-serif;
  background-color: #f1ffff;
  color: #2d2d2d;
}
html {
  scroll-behavior: smooth;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
a {
  color: #2d2d2d;
}

/*------------------------------------------
  Foundation Media Queries 
   https://get.foundation/sites/docs/media-queries.html
--------------------------------------------*/

/* Small screens - スマホ */
@media only screen {
} /* スマホ用のスタイル -モバイルファースト */

@media only screen and (max-width: 40em) {
} /* 最大幅640px、スマホ専用のスタイル */

/* Medium screens - タブレット */
@media only screen and (min-width: 40.063em) {
} /* 最小幅641px、Mediumスクリーン */

@media only screen and (min-width: 40.063em) and (max-width: 64em) {
} /* 最小幅641pxおよび最大幅1024px、タブレット専用のスタイル */

/* Large screens - デスクトップ */
@media only screen and (min-width: 64.063em) {
} /* 最小幅1025px、Largeスクリーン */

@media only screen and (min-width: 64.063em) and (max-width: 90em) {
} /* 最小幅1025pxおよび最大幅1440px、Largeスクリーン専用のスタイル */

/* XLarge screens */
@media only screen and (min-width: 90.063em) {
} /* 最小幅1441px、XLargeスクリーン */

@media only screen and (min-width: 90.063em) and (max-width: 120em) {
} /* 最小幅1441pxおよび最大幅1920px、XLargeのスクリーン専用のスタイル */

/* XXLarge screens */
@media only screen and (min-width: 120.063em) {
} /* 最小幅1921px、XXLargeスクリーン */

/*========= モーダル表示のためのCSS ===============*/

/*infoエリアをはじめは非表示*/
#mobileno {
  display: none;
}

/*モーダルの横幅を変更したい場合*/
.modaal-container {
  text-align: center !important;
  width: 66vw !important;
  padding-left: 0;
  padding-right: 0;
  padding-bottom: 0;
  border-radius: 18px !important;
}
@media screen and (min-width: 64em) {
  .modaal-container {
    text-align: center !important;
    width: 14vw !important;
    padding-left: 0;
    padding-right: 0;
    padding-bottom: 0;
  }
}
/*モーダルのボタンの色を変更したい場合*/
.modaal-close:after,
.modaal-close:before {
  background: #ccc;
}

.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
  background: #666;
}
/*------------------------------------------*/
.top_page {
  padding: 0;
  color: #000;
  min-width: initial;
}
@media screen and (min-width: 64em) {
  .top_page {
    padding: 0;
  }
}
.top_page * {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: inherit;
  box-sizing: inherit;
}

.top_page img {
  width: 100%;
}

.l-container {
  position: relative;
  width: 100%;
}
.l-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1100;
  display: block;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
  visibility: hidden;
  opacity: 0;
}

@media screen and (min-width: 64em) {
  .l-wrapper {
    position: fixed;
    left: 0;
    width: calc((100% - 34.2vw) / 2);
    background: #f1ffff;
    visibility: visible;
    opacity: 1;
  }
}

.is-drawerOpen .l-wrapper {
  visibility: visible;
  opacity: 1;
}

.l-wrapper_inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: 100%;
  overflow-y: auto;
  padding: 5vw 10.2vw 4.2vw;
}
@media screen and (min-width: 64em) {
  .l-wrapper_inner {
    padding: 3.1vw 2.8vw 2.8vw;
  }
}

.l-main {
  width: 100%;
  overflow-x: hidden;
}
@media screen and (min-width: 64em) {
  .l-main {
    width: 100%;
  }
}
.l-main_inner_news {
  position: relative;
  width: 100%;
  background: #fff;
  margin-bottom: -40px;
}
@media screen and (min-width: 64em) {
  .l-main_inner_news {
    width: 32.2vw;
    margin: 50px auto;
    border-radius: 15px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
  }
}

.l-main_inner {
  position: relative;
  width: 100%;
  background: #fff;
  padding-bottom: 4vh;
}
@media screen and (min-width: 64em) {
  .l-main_inner {
    width: 32.2vw;
    margin: 50px auto;
    border-radius: 15px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.3);
    padding-bottom: 4vh;
  }
}

.l-main_top {
  position: relative;
  z-index: 1;
}

.side_logo {
  display: block;
  width: 65vw;
  margin: 0 0 5.6vw;
}
.side_logo img {
  display: inline-block;
  width: 55vw;
  margin-top: 3vw;
  margin-left: 4.3vw;
}
h1.header_logo,
div.header_logo {
  display: inline-block;
  width: 68vw;
  margin: 0 0 3.5vh;
  line-height: 0;
}
h1.header_logo img,
div.header_logo img {
  display: inline-block;
  width: 55vw;
  margin-top: 4.3vw;
  margin-left: 4.3vw;
}
img.header_mobile {
  display: inline-block;
  width: 12vw;
}
@media screen and (min-width: 64em) {
  .side_logo {
    width: 15vw;
    margin: 0 0 2.5vw;
  }
  .side_logo img {
    display: inline-block;
    width: 14vw;
    margin-top: 0vw;
    margin-left: 0vw;
  }
  h1.header_logo,
  div.header_logo {
    width: 26.2vw;
    margin: 0 0 3.5vh;
    line-height: 0;
  }
  h1.header_logo img,
  div.header_logo img {
    width: 16.6vw;
    margin-top: 2.3vw;
    margin-left: 2.3vw;
  }
  img.header_mobile {
    display: inline-block;
    width: 3.7vw;
  }
}
.gnav ul {
  margin: 0;
  padding-left: 2em;
}
.gnav_item {
  margin-bottom: 0vw;
  list-style: none;
  position: relative;
  padding: 1rem 0rem 1rem 2rem;
  color: #fff;
}
.gnav_item:before {
  position: absolute;
  top: calc(50% - 7px);
  left: 10px;
  width: 14px;
  height: 14px;
  content: "";
  border-radius: 50%;
  background: #0eb37e;
}
.gnav_item a:link,
.gnav_item a:visited {
  text-decoration: none;
}
.gnav_item a:hover {
  text-decoration: underline;
}
@media screen and (min-width: 64em) {
  .gnav_item {
    margin-bottom: 0vw;
  }
}

.gnav_link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-size: 4.6vw;
  line-height: 1;
  text-align: center;
  color: #2d2d2d;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  letter-spacing: 0;
}
@media screen and (min-width: 64em) {
  .gnav_link {
    font-size: 0.86vw;
    color: #2d2d2d;
  }
}

.gnav_link .ja {
  display: inline-block;
  font-weight: 700;
  white-space: nowrap;
  letter-spacing: 0;
}
.social_box {
  margin-bottom: 30px;
}

@media screen and (min-width: 64em) {
  .social_box {
    margin-bottom: 30px;
  }
}
p.social_box_txt {
  margin-top: 1em;
}
.social_box_txtlink0 {
  display: inline-block;
  width: 50vw;
  height: 10.6vw;
  font-size: 4.4vw;
  font-weight: 700;
  line-height: 1;
  background-image: url(../img/mobile.svg);
  background-size: 7.1vw;
  background-position: 0.5em center;
  background-repeat: no-repeat;
  border: 1px solid #78bf30;
  background-color: #fff;
  text-decoration: none;
  padding-top: 2.8vw;
  padding-left: 2.7em;
  text-align: left;
  position: relative;
}
.social_box_txtlink0-2 {
  display: inline-block;
  width: 50vw;
  height: 10.6vw;
  font-size: 4.4vw;
  font-weight: 700;
  line-height: 1;
  background-image: url(../img/mobile.svg);
  background-size: 7.1vw;
  background-position: 0.5em center;
  background-repeat: no-repeat;
  border: 1px solid #78bf30;
  background-color: #fff;
  text-decoration: none;
  padding-top: 2.8vw;
  padding-left: 2.7em;
  text-align: left;
  position: relative;
}
.social_box_txtlink1 {
  display: inline-block;
  width: 50vw;
  height: 10.6vw;
  font-size: 4.4vw;
  font-weight: 700;
  line-height: 1;
  background-image: url(../img/phone.svg);
  background-size: 7.1vw;
  background-position: 0.5em center;
  background-repeat: no-repeat;
  border: 1px solid #78bf30;
  background-color: #fff;
  text-decoration: none;
  padding-top: 2.8vw;
  padding-left: 3em;
  text-align: left;
  position: relative;
}
a.social_box_txtlink0:link,
a.social_box_txtlink0:visited,
a.social_box_txtlink1:link,
a.social_box_txtlink1:visited,
a.social_box_txtlink2:link,
a.social_box_txtlink2:visited {
  cursor: pointer;
}
a.social_box_txtlink0:hover {
  cursor: pointer;
  top: 0.3rem;
}
a.social_box_txtlink1:hover {
  cursor: pointer;
  top: 0.3rem;
}
a.social_box_txtlink2:hover {
  cursor: pointer;
  top: 0.3rem;
}
.social_box_txtlink2 {
  display: inline-block;
  width: 50vw;
  height: 10.6vw;
  font-size: 3.7vw;
  font-weight: 700;
  line-height: 1;
  background-image: url(../img/line_icon.svg);
  background-size: 6.6vw;
  background-position: 0.5em center;
  background-repeat: no-repeat;
  border: 3px solid #06c755;
  background-color: #fff;
  text-decoration: none;
  padding-top: 2.8vw;
  padding-left: 3em;
  text-align: left;
  position: relative;
}
@media screen and (min-width: 64em) {
  .social_box_txtlink0 {
    display: none;
  }
  .social_box_txtlink0-2 {
    display: inline-block;
    width: 10vw;
    height: 2.6vw;
    font-size: 0.9vw;
    background-size: 1.5vw;
    padding-top: 0.8vw;
    padding-left: 3em;
    -webkit-transition: all 0.3s ease;
    transition: all 0.7s ease;
  }
  .social_box_txtlink1 {
    display: inline-block;
    width: 10vw;
    height: 2.6vw;
    font-size: 0.9vw;
    background-size: 1.5vw;
    padding-top: 0.8vw;
    padding-left: 3em;
    -webkit-transition: all 0.3s ease;
    transition: all 0.7s ease;
  }
  .social_box_txtlink2 {
    display: inline-block;
    width: 10vw;
    height: 2.6vw;
    font-size: 0.75vw;
    background-size: 1.35vw;
    padding-top: 0.8vw;
    padding-left: 3em;
    -webkit-transition: all 0.3s ease;
    transition: all 0.7s ease;
  }
}

/*きらっと光る*/

.btnshine {
  /*キラッと光る基点とするためrelativeを指定*/
  position: relative;
  /*ボタンの形状*/
  display: inline-block;
  color: #fff;
  padding: 10px 20px;
  text-decoration: none;
  outline: none;
  overflow: hidden;
  font-weight: bold;
}
.top_btn1 {
  width: 16em;
  font-size: 3.8vw;
  padding: 1em;
  background-color: #ffcd00;
  background-image: url(../img/w_icon01.svg);
  background-repeat: no-repeat;
  background-position: 1.1em center;
  background-size: 2em;
  border-radius: 50px;
  text-indent: 3em;
  left: 21%;
  top: -3em;
}
.top_btn2 {
  width: 16em;
  font-size: 3.8vw;
  padding: 1em;
  background-color: #ffcd00;
  background-image: url(../img/w_icon02.svg);
  background-repeat: no-repeat;
  background-position: 3.5em center;
  background-size: 1.8em;
  border-radius: 50px;
  text-indent: 5.5em;
  left: 17%;
  top: 1em;
  margin: 10px auto 50px auto;
}
.top_btn3 {
  width: 16em;
  font-size: 3.8vw;
  padding: 1em;
  background-color: #ffcd00;
  background-image: url(../img/w_icon03.svg);
  background-repeat: no-repeat;
  background-position: 3.5em center;
  background-size: 2.2em;
  border-radius: 50px;
  text-indent: 5.5em;
  left: 17%;
  top: 1em;
  margin: 10px auto 50px auto;
}
@media screen and (min-width: 64em) {
  .top_btn1 {
    font-size: 1vw;
    background-position: 1.4em center;
    background-size: 2.4em;
    left: 25%;
  }
  .top_btn2 {
    font-size: 1vw;
    background-position: 3em center;
    background-size: 1.5em;
    left: 22%;
    margin: 20px auto 80px auto;
  }
  .top_btn3 {
    font-size: 1vw;
    background-position: 3em center;
    background-size: 2.2em;
    left: 22%;
    margin: 20px auto 80px auto;
  }
}
/*キラッと光る*/
.btnshine::before {
  content: "";
  /*絶対配置でキラッと光るの位置を決める*/
  position: absolute;
  top: 0;
  left: -75%;
  /*キラッと光る形状*/
  width: 50%;
  height: 100%;
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0) 0%,
    rgba(255, 255, 255, 0.3) 100%
  );
  transform: skewX(-25deg);
}

/*hoverした際の移動のアニメーション*/
.btnshine:hover::before {
  animation: shine 0.7s;
}

@keyframes shine {
  100% {
    left: 125%;
  }
}

a.top_line_banner {
  display: block;
  width: 100%;
  height: auto;
  font-size: 4.7vw;
  font-weight: 700;
  line-height: 1.6;
  background-image: url(../img/line_icon.svg);
  background-size: 48px;
  background-position: 13px center;
  background-repeat: no-repeat;
  border: 3px solid #06c755;
  background-color: #fff;
  text-decoration: none;
  padding: 10px 10px 10px 80px;
  text-align: left;
  position: relative;
  margin-bottom: 50px;
}
a.top_line_banner span {
  display: block;
  font-size: 3vw;
  margin-top: 0.5em;
  font-weight: 500;
}
@media screen and (min-width: 64em) {
  a.top_line_banner {
    display: block;
    width: 100%;
    height: auto;
    font-size: 1.7vw;
    font-weight: 700;
    line-height: 1.4;
    background-image: url(../img/line_icon.svg);
    background-size: 69px;
    background-position: 0.6em center;
    background-repeat: no-repeat;
    border: 3px solid #06c755;
    background-color: #fff;
    text-decoration: none;
    padding: 20px 15px 20px 110px;
    text-align: left;
    position: relative;
    margin-bottom: 50px;
  }
  a.top_line_banner span {
    display: block;
    font-size: 1.2vw;
    margin-top: 0.5em;
    font-weight: 500;
  }
}
.table_design03 {
  border-collapse: collapse;
  width: 100%;
  max-width: 700px;
}
.table_design03 th,
.table_design03 td {
  padding: 1em 0;
}
.table_design03 th {
  background-image: url(../img/table_line.svg);
  background-position: left bottom;
  background-repeat: no-repeat;
  font-weight: bold;
  text-align: left;
  min-width: 5em;
}

.btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  gap: 3.0769230769vw;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 71.7948717949vw;
  padding: 5.3846153846vw;
  background: #ad3028;
  border: #ad3028 solid 0.2564102564vw;
  border-radius: 15.3846153846vw;
}
@media screen and (min-width: 64em) {
  .btn {
    gap: 0.9917355372vw;
    width: 23.1404958678vw;
    padding: 1.7355371901vw;
    border-radius: 4.958677686vw;
    border: #ad3028 solid 0.0826446281vw;
  }
}

.btn__txt {
  color: #fff;
  font-size: 4.1025641026vw;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (min-width: 64em) {
  .btn__txt {
    font-size: 1.3223140496vw;
  }
}

.btn__icon {
  position: relative;
  display: block;
  overflow: hidden;
  width: 4.1025641026vw;
  height: 2.5641025641vw;
}
@media screen and (min-width: 64em) {
  .btn__icon {
    width: 1.3223140496vw;
    height: 0.826446281vw;
  }
}

.btn__icon::before,
.btn__icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: contain;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.btn__icon::before {
  background-image: url("../img/holiday2024/icon_arrow.svg");
}

.btn__icon::after {
  left: -100%;
  background-image: url("../img/holiday2024/icon_arrow_red.svg");
}

.btn--sm {
  width: 40.5128205128vw;
  padding: 2.0512820513vw;
  gap: 2.0512820513vw;
}
@media screen and (min-width: 64em) {
  .btn--sm {
    width: 13.0578512397vw;
    padding: 0.6611570248vw;
    gap: 0.6611570248vw;
  }
}
.btn--sm .btn__txt {
  font-size: 3.0769230769vw;
  font-weight: 500;
  font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", YuGothic,
    sans-serif;
}
@media screen and (min-width: 64em) {
  .btn--sm .btn__txt {
    font-size: 0.9917355372vw;
  }
}

.btn:hover {
  background: #fff;
  border: 0.2564102564vw solid #bbbbbb;
  opacity: 1;
}
@media screen and (min-width: 64em) {
  .btn:hover {
    border: 0.0826446281vw solid #bbbbbb;
  }
}
.btn:hover .btn__txt {
  color: #0a0a0a;
}
.btn:hover .btn__icon::before {
  left: 100%;
}
.btn:hover .btn__icon::after {
  left: 0;
}

.btn--white {
  background: #fff;
  border: #bbbbbb solid 0.2564102564vw;
}
@media screen and (min-width: 64em) {
  .btn--white {
    border: #bbbbbb solid 0.0826446281vw;
  }
}
.btn--white .btn__txt {
  color: #0a0a0a;
}
.btn--white .btn__icon::before {
  background-image: url("../img/holiday2024/icon_arrow_red.svg");
}
.btn--white .btn__icon::after {
  background-image: url("../img/holiday2024/icon_arrow.svg");
}
.btn--white:hover {
  background: #ad3028;
  border: #fff solid 0.2564102564vw;
  opacity: 1;
}
@media screen and (min-width: 64em) {
  .btn--white:hover {
    border: #fff solid 0.0826446281vw;
  }
}
.btn--white:hover .btn__txt {
  color: #fff;
}

.btn--end {
  pointer-events: none;
  background: #b5b5b5;
  border: #b5b5b5 solid 0.2564102564vw;
}
@media screen and (min-width: 64em) {
  .btn--end {
    border: #b5b5b5 solid 0.0826446281vw;
  }
}
.btn--end .btn__txt {
  color: #fff;
}

.right_banner {
  position: fixed;
  bottom: 5vw;
  right: 5vw;
  display: block;
  width: 23vw;
  height: auto;
  padding-top: 7.1794871795vw;
  z-index: 1300;
  opacity: 0;
  visibility: hidden;
}
@media screen and (min-width: 64em) {
  .right_banner {
    bottom: 20vw;
    right: 10vw;
    display: block;
    width: 8.5vw;
    height: auto;
    visibility: visible;
    opacity: 1;
  }
}

.nav_bar {
  position: fixed;
  top: 2vw;
  right: 2vw;
  z-index: 1200;
  width: 11vw;
  height: 11vw;
  cursor: pointer;
  background: #ffcd00;
  border-radius: 3px;
}
@media screen and (min-width: 64em) {
  .nav_bar {
    display: none;
  }
}
.nav_bar_line {
  display: block;
  width: 60%;
  margin-left: 20%;
  margin-right: 20%;
  height: 0.5vw;
  background: #fff;
  position: absolute;
  -webkit-transition: all 0.7s ease;
  transition: all 0.7s ease;
}
@media screen and (min-width: 64em) {
  .nav_bar_line {
    height: 0.3vw;
  }
}
.nav_bar_line.line01.active {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(-35deg);
  transform: translateY(-50%) rotate(-35deg);
}

.nav_bar_line.line01 {
  top: 3vw;
}
.nav_bar_line.line02 {
  top: 5.2vw;
}

.nav_bar_line.line02.active {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(35deg);
  transform: translateY(-50%) rotate(35deg);
}
.nav_bar_line.line03 {
  bottom: 3vw;
}
.nav_bar_line.line03.active {
  top: 50%;
  -webkit-transform: translateY(-50%) rotate(35deg);
  transform: translateY(-50%) rotate(35deg);
}
@media screen and (min-width: 64em) {
  .nav_bar_line.line01 {
    top: 1.4vw;
  }
  .nav_bar_line.line02 {
    top: 2.4vw;
  }
  .nav_bar_line.line03 {
    bottom: 1.3vw;
  }
}
.l-main_img {
  padding-bottom: 0vw;
}
.l-mainimg_inner {
  margin: 0 0 0 10vw;
  height: auto;
}
@media screen and (min-width: 64em) {
  .l-main_img {
    padding-bottom: 0vw;
  }
  .l-mainimg_inner {
    margin: 0 0 0 4vw;
    padding-bottom: 0 !important;
    height: auto;
  }
}

.marker {
  padding: 10px 20px 10px 0;
  /* マーカーを引く 
  rgba(255, 153, 0,0.5) の部分はマーカーの色を指定しています。
　実装される際は、お好きな色、透明度をお入れ下さい。 */
  background: linear-gradient(
    transparent 0%,
    rgba(255, 255, 255, 1) 0%
  ); /* マーカーを引く */

  /* インライン属性を指定する */
  display: inline;
}

h2.top_h2 {
  display: inline-block;
  font-size: 5.1vw;
  font-weight: bold;
  text-align: center;
  padding: 0 0 0 2vh;
  color: #2d2d2d;
  line-height: 1.9;
  position: relative;
  text-align: left;
  top: -55vw;
  left: 0;
  z-index: 2;
  height: auto;
}
@media screen and (min-width: 64em) {
  h2.top_h2 {
    font-size: 1.3vw;
    top: -17vw;
    padding: 0 0 0 4vh;
  }
}
.top_lead {
  width: 98%;
  margin: -14vw auto 20px auto;
  height: auto;
  background-image: url(../img/double_cloud.svg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}
.top_lead p {
  padding-top: 3.6vw;
  margin-bottom: 3.6vw;
}
.top_lead_txt {
  text-align: center;
  font-size: 4vw;
  font-weight: 700;
  line-height: 1.8;
}
@media screen and (min-width: 64em) {
  .top_lead {
    margin: -3.4vw auto 20px auto;
  }
  .top_lead p {
    padding-top: 1.2vw;
    margin-bottom: 1.2vw;
  }
  .top_lead_txt {
    font-size: 1vw;
  }
}
.top_about {
  width: 100%;
  margin: 4vw auto 4vw auto;
  height: auto;
}
.top_innner {
  margin: 0 4vw 0 4vw;
  height: auto;
}
@media screen and (min-width: 64em) {
  .top_about {
    width: 100%;
    margin: 2vw auto 2vw auto;
    height: auto;
  }
  .top_innner {
    margin: 0 2vw 0 2vw;
    padding-bottom: 0 !important;
    height: auto;
  }
}

.top_effort_h2 {
  width: 98%;
  margin: 4vw auto 20px auto;
  height: auto;
  background-image: url(../img/single_cloud.svg);
  background-position: 20% center;
  background-repeat: no-repeat;
  background-size: contain;
}

.top_effort_txt {
  text-align: center;
  font-size: 5vw;
  font-weight: 700;
  line-height: 1.8;
}
.top_effort_txt p {
  padding-top: 3.6vw;
  margin-bottom: 3.6vw;
}
.top_effort_txt2 {
  font-size: 4vw;
  line-height: 1.8;
  padding-top: 1vw;
}
.top_company_h2 {
  width: 98%;
  margin: 2vw auto 10px auto;
  height: auto;
  background-image: url(../img/logo2.svg);
  background-position: 20% center;
  background-repeat: no-repeat;
  background-size: 12%;
}
.top_company_h2_2 {
  width: 98%;
  margin: 2vw auto 10px auto;
  height: auto;
  background-image: url(../img/logo2.svg);
  background-position: 7% center;
  background-repeat: no-repeat;
  background-size: 12%;
}
@media screen and (min-width: 64em) {
  .top_effort_h2 {
    margin: 2vw auto 20px auto;
  }

  .top_effort_txt {
    font-size: 1.4vw;
  }
  .top_effort_txt p {
    padding-top: 1.2vw;
    margin-bottom: 1.2vw;
  }
  .top_effort_txt2 {
    font-size: 1vw;
  }
  .top_company_h2,
  .top_company_h2_2 {
    margin: 1vw auto 10px auto;
  }
}
.gmap {
  height: 200px;
  margin: 4vh 0 5vh 0;
}
@media screen and (min-width: 64em) {
  .gmap {
    height: 396px;
    margin: 4vh 0 5vh 0;
  }
}
a.pagetop img {
  width: 45px;
  height: 45px;
  display: block;
  margin-top: 4vh;
  margin-left: auto;
  margin-right: auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
  letter-spacing: 0;
}
@media screen and (min-width: 64em) {
  a.pagetop img {
    width: 75px;
    height: 75px;
    display: block;
    margin-top: 4vh;
    margin-left: auto;
    margin-right: auto;
    -webkit-transition: all 0.3s ease;
    transition: all 0.3s ease;
    letter-spacing: 0;
  }
}

div.sub_h2 {
  width: 10em;
  display: inline-block;
  font-size: 4.6vw;
  font-weight: bold;
  text-align: center;
  padding: 0 0 1vh 0;
  color: #2d2d2d;
  line-height: 1.6;
  text-align: left;
  left: 0;
  z-index: 2;
  height: auto;
  margin-bottom: -10px;
}
div.sub_h2 span {
  font-size: 2.6vw;
  color: #0eb37e;
  display: block;
  margin-top: -10px;
  margin-bottom: 0vw;
  list-style: none;
  position: relative;
  padding: 0rem 0rem 0rem 1rem;
}
div.sub_h2 span:before {
  position: absolute;
  top: calc(50% - 7px);
  left: 0px;
  width: 14px;
  height: 14px;
  content: "";
  border-radius: 50%;
  background: #0eb37e;
}
@media screen and (min-width: 64em) {
  div.sub_h2 {
    font-size: 1vw;
    padding: 0 0 0 0;
  }
  div.sub_h2 span {
    font-size: 0.8vw;
    color: #0eb37e;
    display: block;
    margin-bottom: 0vw;
    list-style: none;
    position: relative;
    padding: 0rem 0rem 0rem 1.2rem;
  }
  div.sub_h2 span:before {
    position: absolute;
    top: calc(50% - 7px);
    left: 0px;
    width: 14px;
    height: 14px;
    content: "";
    border-radius: 50%;
    background: #0eb37e;
  }
}
