.elementor-39808 .elementor-element.elementor-element-46bf626{margin-top:0px;margin-bottom:136px;}.elementor-theme-builder-content-area{height:400px;}.elementor-location-header:before, .elementor-location-footer:before{content:"";display:table;clear:both;}/* Start custom CSS for html, class: .elementor-element-3c6a17d */html {
  scroll-behavior: smooth !important;
}

body {
  font-family: "YuGothic","Yu Gothic Medium","Yu Gothic","Helvetica Neue",Arial,"Hiragino Kaku Gothic ProN","Hiragino Sans",Meiryo,sans-serif;
}

  body {
    padding-top: 50px;
  }
  
@media screen and (min-width: 1200px) {
  body {
    padding-top: 137px;
  }
}

ul,
li {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  /*width: 100%;*/
  vertical-align: bottom;
}

 .to-top-button a,
 header a,
 .floating-bunner-container a,
 .navi-container a {
  display: block;
  text-decoration: none;
}

.pc {
  display: none;
}

@media screen and (min-width: 1200px) {
  .pc {
    display: block;
  }

  .sp {
    display: none;
  }

  a {
    letter-spacing: 0.05em;
  }
}

/*************** フローティングバナー *****************/
.sp-floating-bunner {
  box-sizing: border-box;
  width: 100%;
  position: fixed;
  bottom: 2.5vh;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 2vw;
  padding: 0 2vw;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  z-index: 100;
  left: 0;
  right: 0;
}

.sp-floating-bunner > div {
  max-width: 200px;
}

.sp-floating-bunner.show-bunner {
  visibility: visible;
  opacity: 1;
}

.pc-floating-bunner {
  display: none;
}

@media screen and (min-width: 767px) {
  .sp-floating-bunner {
    display: none;
  }

  .pc-floating-bunner {
    display: block;
    width: fit-content;
    position: fixed;
    bottom: 3vh;
    right: -1000px;
    z-index: 1000;
    transition: 0.5s;
  }

  .pc-floating-bunner:hover {
    filter: brightness(1.15);
  }

  .pc-floating-bunner.show-bunner {
    right: 1.5vw;
  }
}

/****** topへ戻るボタン *******/
.to-top-button {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: 85px;
  right: 20px;
  background-color: #000;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: 0.5s;
  z-index: 100;
}

.to-top-button a {
  width: 100%;
  height: 100%;
  color: #fff;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 2em;
}

.to-top-button a > img {
  width: 16px;
}

.to-top-button.show-top {
  opacity: 0.4;
  visibility: visible;
}

.to-top-button.show-top.button-none,
.pc-floating-bunner.button-none {
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
}

@media screen and (min-width: 767px) {
  .to-top-button {
    visibility: hidden;
    opacity: 0;
  }
  .to-top-button.show-top {
    opacity: 0;
    visibility: hidden;
  }

  .to-top-button.show-top.pc-top-button {
    visibility: visible;
    opacity: 0.4;
  }

  .to-top-button {
    width: 60px;
    height: 60px;
    bottom: 40px;
    right: 40px;
    opacity: 0;
    visibility: hidden;
    transition: 0.5s;
    z-index: 1;
  }
  .to-top-button a {
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 2.5em;
  }
  .to-top-button.show-top:hover {
    opacity: 0.3;
  }
}

/******************* ヘッダー ***********************/
header {
  background: #fff;
  box-sizing: border-box;
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 5vw;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 37%);
  transition: 0.5s;
}

.logo {
  width: 80px;
  line-height: 0;
  margin: 0;
}
@media screen and (min-width: 767px) {
  .logo {
    width: 130px;
  }
}

@media screen and (min-width: 1200px) {
  header {
    min-height: 90px;
    max-height: 90px;
    padding: 0 3vw;
    box-shadow: none;
  }

  header.header-none {
    min-height: 0;
    max-height: 0;
  }
  header.header-none .logo {
    visibility: hidden;
    opacity: 0;
  }

  .logo {
    min-width: 100px;
    line-height: 0;
  }
}

/******* ハンバーガーメニュー関連 ********/

.hamburger-button {
  width: 37px;
  height: 50px;
  position: relative;
}

.hamburger-button:hover {
  cursor: pointer;
}

.hamburger-button span {
  display: block;
  width: 100%;
  height: 4px;
  background: #0064a7;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 5px;
  transition: 0.5s;
}

.hamburger-button span:first-child {
  top: 25%;
}

.hamburger-button span:last-child {
  top: 75%;
}

/* close */
.close span:first-child {
  top: 50%;
  left: 0;
  transform: rotate(45deg);
}

.close span:nth-child(2) {
  transform: translateX(2px);
  opacity: 0;
}

.close span:last-child {
  top: 50%;
  left: 0;
  transform: rotate(-45deg);
}

@media screen and (min-width: 1200px) {
  .hamburger-button {
    display: none;
  }
}

/****** ボタン関連 *******/

/* spボタン */
.sp-button {
  box-sizing: border-box;
  padding-top: 4vh;
  background: #fff;
  height: 27vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 2vh;
}

.sp-button button {
  display: block;
  border: none;
  background: none;
}

.sp-button button a {
  box-sizing: border-box;
  border-radius: 50px;
  width: 180px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 0.5em;
  color: #fff;
  font-weight: bold;
  font-size: 1.2em;
}

.sp-button button a:hover {
  transition: 0.5s;
  filter: brightness(1.15);
}

.sp-button .mail a {
  background: #21b9db;
  width: 300px;
}

.sp-button .mail a img {
  width: 8.5%;
}

.sp-button .member a {
  background: #0064a7;
}

.sp-button .member a img {
  width: 12%;
}

@media screen and (min-width: 767px) {
  .sp-button {
    row-gap: 4vh;
  }

  .sp-button button a {
    width: 200px;
    font-size: 1.3em;
  }
}

/** telボタン **/
.sp-button .tel a {
  color: #0064a7;
}

.sp-button .tel a img {
  width: 10%;
}

.tel-text-box {
  font-size: 1.1em;
}

.tel-text-box p {
  margin: 0;
  text-align: left;
}

.tel-text {
  font-size: 0.5em;
}

.sp-button button.tel {
  flex-grow: 0;
}

/* pcボタン */
.pc-button-box {
  display: none;
}
@media screen and (min-width: 1200px) {
  .sp-button {
    display: none;
  }
  .pc-button-box {
    display: flex;
    justify-content: space-between;
    align-items: center;
    column-gap: 1em;
  }

  .pc-button-box button {
    display: block;
    border: none;
    background: none;
    padding: 0;
  }

  .pc-button-box button a {
    box-sizing: border-box;
    border-radius: 50px;
    width: 150px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 0.5em;
    color: #fff;
    font-weight: bold;
    font-size: 1.2em;
  }

  .pc-button-box button a:hover {
    transition: 0.5s;
    filter: brightness(1.15);
  }

  .pc-button-box .mail a {
    background: #21b9db;
    width:300px;
  }

  .pc-button-box .mail a img {
    width: 7.5%;
  }

  .pc-button-box .member a {
    background: #0064a7;
  }

  .pc-button-box .member a img {
    width: 12%;
  }

  /** telボタン **/
  .pc-button-box .tel a {
    color: #0064a7;
    justify-content: flex-end;
  }

  .pc-button-box .tel a img {
    width: 10%;
  }

  .tel-text-box {
    line-height: 1.3;
    font-size: 1em;
  }

  .tel-text-box p {
    margin: 0;
    text-align: left;
  }

  .tel-text {
    font-size: 0.5em;
  }
}

@media screen and (min-width: 1200px) {
  .pc-button-box {
    column-gap: 2em;
  }

  .pc-button-box button {
    display: block;
    border: none;
    background: none;
    padding: 0;
  }

  .pc-button-box button a {
    box-sizing: border-box;
    border-radius: 50px;
    width: 200px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 0.5em;
    color: #fff;
    font-weight: bold;
    font-size: 1.2em;
  }
  header.header-none .button-items {
    visibility: hidden;
    opacity: 0;
  }
}

/********* ナビゲーション関連 ************/

.navi-container a {
  width: fit-content;
}

.navi-container {
  box-sizing: border-box;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  width: 100%;
  height: 75vh;
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  overflow: auto;
  z-index: 100;
}

.navi-container.navi-show {
  visibility: visible;
  opacity: 1;
}

.navi-container nav {
  min-height: auto;
  background: #0064a7;
  box-sizing: border-box;
  padding: 4vh 0;
}

.navi-container nav a {
  color: #fff;
}

/** mainナビ **/
.main-navi li {
  margin-bottom: 2.5vh;
}

.main-navi a {
  margin: 0 auto;
}

.main-navi > li > a,
.accordion-box > a {
  text-align: center;
  font-size: 1.2em;
  font-weight: bold;
  padding: 1vh 0;
}

/** sumbナビ **/
.sumb-navi {
  display: flex;
  justify-content: center;
  column-gap: 2em;
}

.sumb-navi a {
  font-size: 15px;
}

.main-navi a:hover,
.sumb-navi a:hover {
  color: #fffe74;
  transition: 0.5s;
}

@media screen and (min-width: 767px) {
  .main-navi > a {
    font-size: 20px;
    width: fit-content;
    margin: 0 auto;
  }

  .sumb-navi a {
    font-size: 16px;
  }
}

@media screen and (min-width: 1200px) {
  .navi-container {
    height: auto;
    visibility: visible;
    opacity: 1;
    position: fixed;
    top: 90px;
    left: 0;
    right: 0;
    z-index: 10;
    box-shadow: 0px 0px 10px 0px rgb(0 0 0 / 37%);
    overflow: visible;
  }

  .navi-container.navi-none {
    visibility: hidden;
    opacity: 0;
  }

  .navi-container .sp {
    display: none;
  }

  .navi-container nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 0;
    max-height: 67px;
    height: auto;
    padding: 0 3vw;
  }

  .main-navi {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 60%;
  }

  .main-navi li {
    margin: 0;
  }

  .main-navi a {
    text-align: left;
    font-weight: bold;
    font-size: 17px;
    padding: 0.65em 0;
  }

  .sumb-navi a {
    font-size: 15px;
  }
}

/* @media screen and (min-width: 900px) {
.main-navi a {
font-size: 14px;
}
.sumb-navi a {
font-size: 12px;
}
} */

/* @media screen and (min-width: 1200px) {
.main-navi a {
font-size: 17px;
}
.sumb-navi a {
font-size: 15px;
}
} */

/********* アコーディオンメニュー関連 *********/

.accordion-box {
  position: relative;
}

.sp-arrow {
  box-sizing: border-box;
  padding-top: 0.5vh;
  display: block;
  color: #0064a7;
  position: absolute;
  top: 50%;
  right: 20%;
  transform: translate(-50%, -50%);
  background: #fff;
  width: 25px;
  height: 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: 0.5s;
}

.sp-arrow:hover {
  cursor: pointer;
}

.sp-arrow.active {
  transform: rotate(180deg) translate(50%, 2vh);
}

.pc-arrow {
  display: none;
}

@media screen and (min-width: 400px) {
  .sp-arrow {
    right: 25%;
  }
}

@media screen and (min-width: 550px) {
  .sp-arrow {
    right: 30%;
  }
}

@media screen and (min-width: 700px) {
  .sp-arrow {
    right: 35%;
  }
}

@media screen and (min-width: 950px) {
  .sp-arrow {
    right: 38%;
  }
}

@media screen and (min-width: 1200px) {
  .sp-arrow {
    display: none;
  }

  .accordion-box > a {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    column-gap: 0.3em;
  }

  .pc-arrow {
    display: block;
    font-weight: normal;
    font-size: 0.5em;
  }
}

/** 第二層 **/
.second-navi {
  box-sizing: border-box;
  background: #fff;
  padding: 0;
  min-height: 0;
  max-height: 0;
  transition: 0.5s;
  visibility: hidden;
  opacity: 0;
}

.second-navi.show-second {
  max-height: fit-content;
  visibility: visible;
  opacity: 1;
  padding: 5vh 0 1vh;
}

.second-navi-show .accordion-box {
  margin-bottom: 1vh;
}

.second-navi > li > a {
  color: #0064a7;
  font-size: 1.15em;
  margin-bottom: 4vh;
  height: auto;
  font-weight: bold;
}

.second-navi li:last-child {
  margin-bottom: 0;
}

.second-navi a:hover {
  color: #6ec1e4;
}

@media screen and (min-width: 1200px) {
  .accordion {
    position: relative;
  }

  .second-navi {
    position: absolute;
    left: 0;
    width: 25vw;
    z-index: -1;
    box-shadow: 2px 0 12px rgb(0 0 0 / 20%), -2px 0 10px rgb(0 0 0 / 20%), 0 2px 10px rgb(0 0 0 / 20%);
  }

  .second-navi.pc-show-second {
    max-height: fit-content;
    visibility: visible;
    opacity: 1;
    padding: 2vh 0;
  }

  .second-navi:hover {
    cursor: pointer;
  }

  .second-navi > li > a {
    width: 100%;
    font-size: 1.1em;
    padding-left: 1em;
    margin: 0;
    box-sizing: border-box;
    transition: 0;
    color: transparent;
    opacity: 0;
    visibility: hidden;
  }

  .second-navi.pc-show-second > li > a {
    color: #0064a7;
    opacity: 1;
    visibility: visible;
  }
  .second-navi.pc-show-second > li > a:hover {
    color: #6ec1e4;
  }
}

/** 第三層 **/
.third-navi {
  margin: 1vh 0;
  visibility: hidden;
  opacity: 0;
}

.second-navi.show-second .third-navi {
  visibility: visible;
  opacity: 1;
  transition: 1s;
}

.third-navi > li > a {
  color: #000;
  font-weight: normal;
  font-size: 1em;
}

.third-navi > li:last-child > a {
  margin-bottom: 4vh;
}

@media screen and (min-width: 1200px) {
  .second-navi.pc-show-second .third-navi {
    visibility: visible;
    opacity: 1;
    transition: 0.5s;
  }

  .third-navi {
    margin: 0;
  }

  .third-navi > li > a {
    font-size: 1.1em;
    padding-left: 3em;
    min-width: 100%;
    box-sizing: border-box;
  }
  .third-navi li:last-child > a {
    margin-bottom: 0;
  }
}

/******* ロゴのマイナスマージン消す **********/

h1:not(.thegem-animated-heading):first-child {
  margin: 0;
}

/********** ヘッダーヘッダーに潜り込む対策 *************/

@media screen and (max-width: 1200px) {
  .margin-bottom0 {
    margin-bottom: 50px !important;
  }
}
.betutabu a[target="_blank"]:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: .8rem;
    content: "\f35d";
    margin: 0 0 0 5px;
}


/*別タブで開くアイコン追加*/

.under_blank[target="_blank"]:after {
    font-family: "Font Awesome 5 Free";
    font-weight: 600;
    font-size: 0.9em;
    content: "\f35d";
    margin: 0 0 0 5px;
}


@media (max-width:480px){
    .sp-font{
    font-size: 1.2em;
    font-weight: bold;
}
}/* End custom CSS */