@charset "UTF-8";
.js_fixed {
  height: 100%;
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  .js_fixed .header_wrap #header .header_box .header_logo_box {
    display: none;
  }
}
.js_fixed .header_wrap #header .header_box .header_btn .menu_wrap .menu_sp::after {
  content: "CLOSE";
}

#g-nav {
  /*position:fixed;にし、z-indexの数値を大きくして前面へ*/
  position: fixed;
  z-index: 100;
  /*ナビのスタート位置と形状*/
  top: 0;
  right: -120%;
  width: 600px;
  height: 100%;
  /*動き*/
  transition: all 0.6s;
  border-left: 1px solid #000;
  box-shadow: -8px -8px 32px 0px rgba(0, 14, 26, 0.25);
  background-blend-mode: multiply;
  mix-blend-mode: hard-light;
  background: #191f24;
  /*上下方向にはみ出した要素ををスクロールさせる*/
  overflow-y: scroll;
  /*スクロールバー非表示（IE・Edge）*/
  -ms-overflow-style: none;
  /*スクロールバー非表示（Firefox）*/
  scrollbar-width: none;
}
@media screen and (max-width: 768px) {
  #g-nav {
    background: rgba(0, 0, 0, 0.6);
    display: none;
    height: 100vh;
    min-height: 900px;
    position: fixed;
    width: 100%;
    z-index: 98;
    padding: 0;
    mix-blend-mode: inherit;
    border-left: none;
  }
}

#g-nav::-webkit-scrollbar {
  display: none;
}

/*アクティブクラスがついたら位置を0に*/
#g-nav.panelactive {
  right: 0;
}
@media screen and (max-width: 768px) {
  #g-nav.panelactive {
    right: inherit;
    display: block;
  }
}

/*ナビゲーションの縦スクロール*/
#g-nav.panelactive #g-nav-list {
  /*ナビの数が増えた場合縦スクロール*/
  z-index: 999;
  height: 100%;
  overflow: scroll;
}
@media screen and (max-width: 768px) {
  #g-nav.panelactive #g-nav-list {
    width: 100%;
  }
}

#g-nav .g-nav_ul {
  width: 415px;
  position: absolute;
  z-index: 999;
  top: max(25%, 120px);
  left: 50%;
  transform: translateX(-50%);
  mix-blend-mode: inherit;
  display: flex;
  flex-direction: column;
  gap: 60px;
  justify-content: center;
  padding: 0 0 30px;
}
@media screen and (max-width: 768px) {
  #g-nav .g-nav_ul {
    top: 56px;
    transform: inherit;
    width: 100%;
    left: inherit;
    background: #F6F6F6;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
    mix-blend-mode: inherit;
    gap: 0;
    padding: 0;
  }
}
@media screen and (max-width: 768px) {
  #g-nav .g-nav_ul li:last-child a {
    border-bottom: none;
  }
}
#g-nav .g-nav_ul li a {
  color: #fff;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.4rem;
  position: relative;
  padding: 0 0 0 30px;
}
@media screen and (max-width: 768px) {
  #g-nav .g-nav_ul li a {
    color: #005092;
    font-size: 1.4rem;
    font-weight: 400;
    width: 100%;
    height: 58px;
    display: flex;
    align-items: center;
    padding: 0 0 0 91px;
    border-bottom: 1px solid rgba(0, 80, 146, 0.5);
  }
}
#g-nav .g-nav_ul li a::before {
  content: "";
  border-top: solid 1px #fff;
  border-right: solid 1px #fff;
  transform: rotate(45deg);
  width: 11px;
  height: 11px;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
}
@media screen and (max-width: 768px) {
  #g-nav .g-nav_ul li a::before {
    border-top: solid 1px #005092;
    border-right: solid 1px #005092;
    left: 60px;
    width: 7px;
    height: 7px;
  }
}

.header_wrap {
  display: flex;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 768px) {
  .header_wrap {
    flex-direction: column;
  }
}

#header {
  min-width: 1300px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #header {
    min-width: 100%;
    padding: 0 0 0;
  }
}
#header .header_box {
  width: 100%;
  padding: 0;
  min-width: 1300px;
  position: absolute;
  z-index: 102;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  height: 105px;
}
@media screen and (max-width: 768px) {
  #header .header_box {
    min-width: inherit;
    height: 64px;
    bottom: inherit;
    position: fixed;
    height: auto;
    background: #fff;
  }
}
#header .header_box .header_logo_box {
  z-index: 105;
  position: relative;
  top: 0;
  left: 30px;
}
@media screen and (max-width: 768px) {
  #header .header_box .header_logo_box {
    top: inherit;
    left: inherit;
    width: 100%;
    padding: 6px 0 3px 13px;
    transition: all 0.3s;
  }
}
@media screen and (max-width: 768px) {
  #header .header_box .header_logo_box.panelactive {
    display: none;
  }
}
#header .header_box .header_logo_box .header_logo .logo_img {
  height: auto;
  position: relative;
  width: 503px;
  transition: all 0.3s;
}
@media screen and (max-width: 1500px) {
  #header .header_box .header_logo_box .header_logo .logo_img {
    width: 450px;
  }
}
@media screen and (max-width: 1400px) {
  #header .header_box .header_logo_box .header_logo .logo_img {
    width: 360px;
  }
}
@media screen and (max-width: 1300px) {
  #header .header_box .header_logo_box .header_logo .logo_img {
    width: 320px;
  }
}
@media screen and (max-width: 768px) {
  #header .header_box .header_logo_box .header_logo .logo_img {
    width: 70%;
    height: auto;
  }
}
#header .header_box .header_logo_box .header_logo .logo_img .logo_off {
  display: block;
}
@media screen and (max-width: 768px) {
  #header .header_box .header_logo_box .header_logo .logo_img .logo_off {
    display: none;
  }
}
#header .header_box .header_logo_box .header_logo .logo_img .logo_on {
  display: none;
}
@media screen and (max-width: 768px) {
  #header .header_box .header_logo_box .header_logo .logo_img .logo_on {
    display: block;
  }
}
#header .header_box .header_cov_box {
  display: flex;
  justify-content: center;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 768px) {
  #header .header_box .header_cov_box {
    display: none;
  }
}
#header .header_box .header_cov_box .header_tel_box {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 105px;
  padding: 0 24px 0 0;
}
#header .header_box .header_cov_box .header_tel_box .header_tel {
  color: #2D2D2D;
  font-family: "Crimson Text", serif;
  font-size: 3rem;
  font-weight: 400;
}
#header .header_box .header_cov_box .header_tel_box .header_tel_txt {
  color: #2D2D2D;
  text-align: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 350;
  letter-spacing: 1.12px;
}
#header .header_box .header_cov_box .header_web a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 272px;
  height: 105px;
  background: transparent;
  color: var(--txt, #FFF);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.96px;
  transition: 0.4s all;
  position: relative;
}
#header .header_box .header_cov_box .header_web a::before {
  content: "";
  background: linear-gradient(95deg, #005092 0%, #014279 100%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  #header .header_box .header_cov_box .header_web a:hover {
    background: #0169bf;
  }
}
#header .header_box .header_cov_box .header_line a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 272px;
  height: 105px;
  background: transparent;
  color: var(--txt, #FFF);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 1.92px;
  transition: all 0.4s;
  position: relative;
}
#header .header_box .header_cov_box .header_line a::before {
  content: "";
  background: linear-gradient(279deg, #309C45 0%, #3ABA63 101.12%);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}
@media screen and (min-width: 769px) {
  #header .header_box .header_cov_box .header_line a:hover {
    background: #36b24f;
  }
}
#header .header_box .header_btn {
  width: 100px;
  height: 105px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: all 0.4s;
  z-index: 110;
  background: #2D2D2D;
}
@media screen and (min-width: 769px) {
  #header .header_box .header_btn:hover {
    background-color: #555;
  }
}
@media screen and (max-width: 768px) {
  #header .header_box .header_btn.header_btn_pc {
    display: none;
  }
}
@media screen and (max-width: 768px) {
  #header .header_box .header_btn.header_btn_pc.active {
    display: none;
  }
}
#header .header_box .header_btn .menu_wrap .menu_sp {
  width: 100px;
  height: 105px;
  position: relative;
}
#header .header_box .header_btn .menu_wrap .menu_sp::after {
  content: "MENU";
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.4rem;
  font-weight: 350;
  letter-spacing: 1.12px;
  position: absolute;
  top: 22px;
  left: 50%;
  transform: translateX(-50%);
  transition: all 0.3s;
}
#header .header_box .header_btn .menu_wrap .menu_sp .menu__line {
  background: #fff;
  display: block;
  height: 1px;
  transition: transform 0.3s;
  width: 44px;
  position: absolute;
  left: 28px;
}
#header .header_box .header_btn .menu_wrap .menu_sp .menu__line--top {
  top: 54px;
}
@media screen and (max-width: 768px) {
  #header .header_box .header_btn .menu_wrap .menu_sp .menu__line--top {
    top: 54px;
  }
}
#header .header_box .header_btn .menu_wrap .menu_sp .menu__line--center {
  top: 64px;
}
@media screen and (max-width: 768px) {
  #header .header_box .header_btn .menu_wrap .menu_sp .menu__line--center {
    top: 64px;
  }
}
#header .header_box .header_btn .menu_wrap .menu_sp .menu__line--bottom {
  top: 76px;
}
@media screen and (max-width: 768px) {
  #header .header_box .header_btn .menu_wrap .menu_sp .menu__line--bottom {
    top: 76px;
  }
}
#header .header_box .header_btn .menu_wrap .menu_sp .menu__line--top.active {
  top: 64px;
  transform: rotate(35deg);
}
#header .header_box .header_btn .menu_wrap .menu_sp .menu__line--center.active {
  transform: scaleX(0);
}
#header .header_box .header_btn .menu_wrap .menu_sp .menu__line--bottom.active {
  top: 64px;
  transform: rotate(145deg);
}
#header .header_box .sp_btn_wrap {
  display: none;
  width: 100%;
}
@media screen and (max-width: 768px) {
  #header .header_box .sp_btn_wrap {
    display: block;
  }
}
#header .header_box .sp_btn_wrap .sp_btn_ul {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
#header .header_box .sp_btn_wrap .sp_btn_ul.panelactive {
  box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  top: 0;
}
#header .header_box .sp_btn_wrap .sp_btn_ul.panelactive li:nth-child(5) a::before {
  background: url(../images/common/icon_menu_on.svg);
  background-size: cover;
}
#header .header_box .sp_btn_wrap .sp_btn_ul li {
  width: 20%;
  padding: 0 0 2px;
}
#header .header_box .sp_btn_wrap .sp_btn_ul li a {
  height: 54px;
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding: 5px 0 0;
  color: #005092;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1rem;
  font-weight: 350;
  letter-spacing: 0.8px;
  position: relative;
}
#header .header_box .sp_btn_wrap .sp_btn_ul li a::before {
  content: "";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
#header .header_box .sp_btn_wrap .sp_btn_ul li a::after {
  content: "";
  background: #ccc;
  width: 1px;
  height: 48px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
#header .header_box .sp_btn_wrap .sp_btn_ul li:first-child a::before {
  background: url(../images/common/icon_home.svg);
  background-size: cover;
  width: 22.4px;
  height: 20px;
  top: 26px;
}
#header .header_box .sp_btn_wrap .sp_btn_ul li:nth-child(2) a::before {
  background: url(../images/common/icon_tel.svg);
  background-size: cover;
  width: 20px;
  height: 20px;
  top: 26px;
}
#header .header_box .sp_btn_wrap .sp_btn_ul li:nth-child(3) a::before {
  background: url(../images/common/icon_web.svg);
  background-size: cover;
  width: 17.25px;
  height: 23px;
  top: 24px;
}
#header .header_box .sp_btn_wrap .sp_btn_ul li:nth-child(4) a::before {
  background: url(../images/common/icon_access.svg);
  background-size: cover;
  width: 17px;
  height: 23px;
  top: 24px;
}
#header .header_box .sp_btn_wrap .sp_btn_ul li:nth-child(5) a::before {
  background: url(../images/common/icon_menu.svg);
  background-size: cover;
  width: 17.799px;
  height: 17.678px;
  top: 26px;
}
#header .header_box .sp_btn_wrap .sp_btn_ul li.header_btn {
  width: 20%;
  height: inherit;
  display: inline-block;
  position: relative;
  transition: all 0.4s;
  z-index: 110;
  background: inherit;
}
#header .header_box .sp_btn_wrap .sp_btn_ul li.header_btn a::after {
  content: none;
}
#header .header_box.fixed {
  position: fixed;
  bottom: inherit;
  width: 100%;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 4px 4px 0px rgba(45, 45, 45, 0.25);
  -webkit-backdrop-filter: blur(4px);
          backdrop-filter: blur(4px);
}
@media screen and (max-width: 768px) {
  #header .header_box.fixed {
    width: 100%;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  }
}
@media screen and (max-width: 768px) {
  #header .header_box.fixed .header_logo_box {
    display: none;
  }
}
#header .header_box.fixed .header_logo_box .header_logo .logo_img .logo_off {
  display: none;
}
#header .header_box.fixed .header_logo_box .header_logo .logo_img .logo_on {
  display: block;
}

.contents {
  width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contents {
    width: 100%;
    padding: 0 6%;
  }
}

.contents_full {
  width: 100%;
  min-width: 1300px;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  .contents_full {
    width: 100%;
    min-width: auto;
  }
}

.link_btn a {
  padding: 15px 0 15px 15px;
  background: none;
  height: 60px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  position: relative;
  transition: all 0.3s ease;
  border-bottom: 1px solid #D9D9D9;
}
@media screen and (max-width: 768px) {
  .link_btn a {
    height: 40px;
  }
}
.link_btn a::before {
  content: "";
  transform: rotate(0deg);
  width: 0;
  height: 0;
  border-left: 7px solid #000;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  margin: auto;
  pointer-events: none;
  transition: all 0.3s;
}
@media screen and (max-width: 768px) {
  .link_btn a::before {
    border-left: 7px solid #000;
    border-top: 5px solid transparent;
    border-bottom: 5px solid transparent;
  }
}
@media screen and (min-width: 769px) {
  .link_btn a:hover {
    color: #fff;
    background: #000;
  }
  .link_btn a:hover::before {
    right: 10px;
    border-left: 7px solid #fff;
  }
}

#footer .contents_full {
  background: url(../images/top/ft_bg_01.jpg), #2BA8B1 no-repeat;
  background-size: cover;
}
#footer .contents_full .contents {
  padding: 60px 0 100px;
}
@media screen and (max-width: 768px) {
  #footer .contents_full .contents {
    padding: 56px 4%;
  }
}
#footer .contents_full .contents .footer_conts {
  display: flex;
  justify-content: space-between;
  margin: 0 0 70px;
}
@media screen and (max-width: 768px) {
  #footer .contents_full .contents .footer_conts {
    flex-direction: column;
    margin: 0;
  }
}
#footer .contents_full .contents .footer_conts .footer_conts_l {
  width: 480px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  #footer .contents_full .contents .footer_conts .footer_conts_l {
    width: 100%;
    margin: 0 0 40px;
  }
}
@media screen and (max-width: 768px) {
  #footer .contents_full .contents .footer_conts .footer_conts_l .footer_conts_logo {
    width: 280px;
    padding: 0 0 43px;
  }
}
#footer .contents_full .contents .footer_conts .footer_conts_l .footer_conts_address {
  color: #FFF;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.6rem;
  font-weight: 350;
  line-height: 2;
  letter-spacing: 0.64px;
}
@media screen and (max-width: 768px) {
  #footer .contents_full .contents .footer_conts .footer_conts_l .footer_conts_address {
    font-size: 1.3rem;
  }
}
#footer .contents_full .contents .footer_conts .footer_conts_r {
  width: 635px;
  padding: 24px 56px;
  border: 1px solid #fff;
}
@media screen and (max-width: 768px) {
  #footer .contents_full .contents .footer_conts .footer_conts_r {
    width: 100%;
    padding: 20px;
    margin: 0 0 30px;
  }
}
#footer .contents_full .contents .footer_conts .footer_conts_r .footer_conts_table_box h3 {
  color: #FFF;
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 5.76px;
  text-align: center;
  padding: 0 0 10px;
}
@media screen and (max-width: 768px) {
  #footer .contents_full .contents .footer_conts .footer_conts_r .footer_conts_table_box h3 {
    font-size: 1.8rem;
    letter-spacing: 2.8px;
  }
}
@media screen and (max-width: 768px) {
  #footer .contents_full .contents .footer_conts .footer_conts_r .footer_conts_table_box table {
    width: 100%;
  }
}
#footer .contents_full .contents .footer_conts .footer_conts_r .footer_conts_table_box table tr th {
  color: #FEFEFE;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 18px 13px;
}
@media screen and (max-width: 768px) {
  #footer .contents_full .contents .footer_conts .footer_conts_r .footer_conts_table_box table tr th {
    padding: 12px 6px;
    font-size: 1.3rem;
    text-align: center;
  }
}
#footer .contents_full .contents .footer_conts .footer_conts_r .footer_conts_table_box table tr td {
  border-top: 1px solid #fff;
  padding: 18px 13px;
  text-align: center;
  vertical-align: middle;
  color: #FFF;
  font-family: "Crimson Text", serif;
  font-size: 2rem;
  font-weight: 400;
  letter-spacing: 1.6px;
}
@media screen and (max-width: 768px) {
  #footer .contents_full .contents .footer_conts .footer_conts_r .footer_conts_table_box table tr td {
    font-size: 1.3rem;
    padding: 12px 6px;
    text-align: center;
  }
}
#footer .contents_full .contents .footer_conts .footer_conts_r .footer_conts_table_box table tr td:first-child {
  width: 150px;
}
@media screen and (max-width: 768px) {
  #footer .contents_full .contents .footer_conts .footer_conts_r .footer_conts_table_box table tr td:first-child {
    width: 90px;
    padding: 12px 6px;
  }
}
#footer .contents_full .contents .footer_conts .footer_conts_r .footer_conts_table_box .table_cap {
  text-align: center;
  color: #FEFEFE;
  font-family: "Zen Old Mincho", serif;
  font-size: 1.6rem;
  font-weight: 600;
}
@media screen and (max-width: 768px) {
  #footer .contents_full .contents .footer_conts .footer_conts_r .footer_conts_table_box .table_cap {
    font-size: 1.3rem;
  }
}
#footer .contents_full .contents .map {
  margin: 70px auto 0;
}
@media screen and (max-width: 768px) {
  #footer .contents_full .contents .map {
    margin: 35px auto 0;
  }
}
#footer .contents_full .contents .map iframe {
  width: 100%;
  height: 450px;
}
@media screen and (max-width: 768px) {
  #footer .contents_full .contents .map iframe {
    height: 300px;
  }
}
#footer .sec_contact h2 {
  color: #FFF;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 4rem;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 3.2px;
  padding: 0 190px 10px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  #footer .sec_contact h2 {
    font-size: 2rem;
    line-height: 1;
    letter-spacing: 1.6px;
    padding: 0 70px 10px;
  }
}
#footer .sec_contact h2::before {
  content: "";
  background: #fff;
  width: 160px;
  height: 1px;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  #footer .sec_contact h2::before {
    width: 50px;
  }
}
#footer .sec_contact h2::after {
  content: "";
  background: #fff;
  width: 160px;
  height: 1px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 768px) {
  #footer .sec_contact h2::after {
    width: 50px;
  }
}
#footer .sec_contact .ft_contct_txt {
  color: #FFF;
  text-align: center;
  font-family: "Zen Old Mincho", serif;
  font-size: 2.4rem;
  font-weight: 400;
  margin: 0 0 40px;
}
@media screen and (max-width: 768px) {
  #footer .sec_contact .ft_contct_txt {
    font-size: 1.4rem;
    line-height: 1;
    margin: 0 0 50px;
  }
}
#footer small {
  width: 100%;
  background: #fff;
  padding: 10px 0;
  text-align: center;
  display: block;
  color: var(--txt-blue, #005092);
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.2rem;
  font-style: normal;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.48px;
}
@media screen and (max-width: 768px) {
  #footer small {
    padding: 10px 0 60px;
  }
}

.page_slide {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 768px) {
  .page_slide {
    flex-direction: column;
    gap: 20px;
  }
}
.page_slide .mySwiper2 {
  width: 840px;
  height: 560px;
  margin: 0;
}
@media screen and (max-width: 768px) {
  .page_slide .mySwiper2 {
    width: 100%;
    height: auto;
  }
}
@media screen and (min-width: 769px) {
  .page_slide .mySwiper2 .swiper-wrapper {
    pointer-events: none;
  }
}
.page_slide .mySwiper2 .swiper-wrapper .swiper-slide {
  position: relative;
}
.page_slide .mySwiper2 .swiper-wrapper .swiper-slide .swiper_txt {
  position: absolute;
  bottom: 0;
  background: rgba(74, 40, 23, 0.6);
  width: 100%;
  color: #fff;
  padding: 10px 0;
}
@media screen and (max-width: 768px) {
  .page_slide .mySwiper2 .swiper-wrapper .swiper-slide .swiper_txt {
    font-size: 14px;
    padding: 5px 0;
  }
}
.page_slide .mySwiper {
  width: 412px;
  height: 577px;
  box-sizing: border-box;
  margin: 0;
}
.page_slide .mySwiper .swiper-wrapper {
  transition-duration: 0ms !important;
}
@media screen and (max-width: 768px) {
  .page_slide .mySwiper {
    height: auto;
    width: 100%;
  }
}
.page_slide .mySwiper .swiper-wrapper {
  transform: none !important;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  padding: 0;
}
.page_slide .mySwiper .swiper-wrapper .swiper-slide {
  width: 192px !important;
  height: 128px !important;
  opacity: 1;
  display: block;
}
@media screen and (max-width: 768px) {
  .page_slide .mySwiper .swiper-wrapper .swiper-slide {
    height: auto !important;
    line-height: 1;
    width: 24% !important;
    margin: 0 0 1% !important;
  }
}
.page_slide .mySwiper .swiper-wrapper .swiper-slide-thumb-active {
  opacity: 0.5;
}

.ft_conv {
  display: none;
}
@media screen and (max-width: 768px) {
  .ft_conv {
    display: block;
    position: fixed;
    bottom: 0;
    width: 100%;
    z-index: 11;
  }
  .ft_conv .ft_conv_ul {
    display: flex;
    width: 100%;
  }
  .ft_conv .ft_conv_ul li {
    width: 33.3333333333%;
  }
  .ft_conv .ft_conv_ul li:first-child a span::before {
    background: url(../images/common/icon_ft_tel.svg);
    background-size: cover;
    width: 17px;
    height: 16px;
  }
  .ft_conv .ft_conv_ul li:nth-child(2) a {
    background: #005092;
  }
  .ft_conv .ft_conv_ul li:nth-child(2) a span::before {
    background: url(../images/common/icon_ft_sp.svg);
    background-size: cover;
    width: 13.091px;
    height: 18px;
  }
  .ft_conv .ft_conv_ul li:nth-child(3) a {
    background: #309C45;
  }
  .ft_conv .ft_conv_ul li:nth-child(3) a span::before {
    background: url(../images/common/icon_ft_line.svg);
    background-size: cover;
    width: 17.802px;
    height: 18px;
  }
  .ft_conv .ft_conv_ul li a {
    width: 100%;
    background: #32BBC5;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .ft_conv .ft_conv_ul li a span {
    text-align: center;
    font-family: "Noto Sans JP", sans-serif;
    font-size: 1.4rem;
    font-weight: 500;
    position: relative;
    color: #fff;
    padding: 0 0 0 25px;
  }
  .ft_conv .ft_conv_ul li a span::before {
    content: "";
    position: absolute;
    left: 0%;
    top: 50%;
    transform: translateY(-50%);
  }
}

#pagetop {
  display: block;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 15;
}
@media screen and (max-width: 768px) {
  #pagetop {
    right: 10px;
    bottom: 60px;
  }
}
#pagetop a {
  position: relative;
  width: 70px;
  height: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 768px) {
  #pagetop a {
    width: 50px;
    height: 50px;
  }
}
#pagetop a::before {
  content: "";
  background: rgb(55, 55, 55);
  background-size: cover;
  width: 70px;
  height: 70px;
  border-radius: 50%;
  position: absolute;
  left: 0%;
  top: 50%;
  transform: translateY(-50%);
  transition: all 0.3s;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background-clip: padding-box;
}
@media screen and (max-width: 768px) {
  #pagetop a::before {
    width: 50px;
    height: 50px;
  }
}
#pagetop a img {
  position: relative;
  width: 29px;
  height: 33px;
}
@media screen and (max-width: 768px) {
  #pagetop a img {
    width: 22px;
    height: 29px;
  }
}
@media screen and (min-width: 769px) {
  #pagetop a:hover::before {
    content: "";
    background: rgba(55, 55, 55, 0.6);
    background-clip: padding-box;
  }
}
/*# sourceMappingURL=style.css.map */