/* MEMO */
/* color */
/* 
blue = #0E5FC8 
blue:hover = #3C91FF 
darkblue = #163A74
lightblue = #EDFEFF
yellow = #EBEB3B 
*/
/* font-famiry */
/* font-family: "Noto Sans JP","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"MS Pゴシック","MS PGothic",sans-serif; */
/* font-family: "Open Sans","Hiragino Kaku Gothic Pro","メイリオ",Meiryo,"MS Pゴシック","MS PGothic",sans-serif; */


/* ------ */
/* common */
/* ------ */



:root {
  font-size: 10px;
}

body {
  color: #18191A;
  font-size: 1.6rem;
  font-family: "Noto Sans JP", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  line-height: 1.5;
}


a {
  font-size: 1.6rem;
}

body img {
  width: 100%;
  vertical-align: bottom;
}

.wrap_primary {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 4rem;
}

@media screen and (max-width: 765px) {
  .wrap_primary {
    padding: 0 2rem;
  }

  .wrap_primary.sp_wide {
    padding: 0;
  }
}

/* link button */

.link_btn {
  display: inline-block;
}

.link_btn.pattern_A {
  border-radius: 5rem;
  padding: 1.5rem 7.5rem 1.5rem 5rem;
  text-align: center;
  vertical-align: middle;
  position: relative;
  color: #18191A;
  text-decoration: none;
  font-weight: bold;
  font-size: 1.8rem;
  box-sizing: border-box;
  transition-duration: 0.3s;
  overflow: hidden;
  background-color: #fff;
  border: 1px solid transparent;
}

.link_btn.pattern_A.border {
  border: 1px solid #0E5FC8;
}

.link_btn.pattern_A:hover {
  color: #0E5FC8;
  background-color: #EBEB3B;
}

.link_btn.pattern_A::after {
  position: absolute;
  right: 0.5rem;
  top: 0;
  bottom: 0;
  margin: auto;
}

.link_btn:hover::after {
  background-color: #3C91FF;
  transition-duration: 0.3s;
}

.link_btn::after {
  content: "";
  display: inline-block;
  width: 4.8rem;
  height: 4.8rem;
  border-radius: 50%;
  background-color: #0E5FC8;
  background-image: url(../common/images/arrow_right.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 50% auto;
  transition-duration: 0.3s;
}

.link_btn.white::after {
  background-color: #fff;
  background-image: url(../common/images/arrow_right_b.png);
}

a.link_btn.white[target="_blank"]::after {
  background-color: #fff;
  background-image: url(../common/images/icon_new_window_b.png);
}

a.link_btn[target="_blank"]::after {
  background-image: url(../common/images/icon_new_window.png);
  background-size: 40% 40%;
}

.link_btn.white:hover:after,
a.link_btn[target="_blank"]:hover:after {
  background-color: #3C91FF;
}

a.link_btn.anker {
  padding: 1rem 5rem 1rem 3rem;
}

a.link_btn.anker span {
  background-color: #0E5FC8;
  width: 2.8rem;
  height: 2.8rem;
  display: block;
  border-radius: 50%;
  position: absolute;
  right: 1rem;
  top: 0;
  bottom: 0;
  margin: auto;
}

a.link_btn.anker span::after {
  content: "";
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  width: 12px;
  height: 12px;
  border: 0.2em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateY(-30%) rotate(135deg);
  border-radius: 0.1em;
}

a.link_btn.anker::after {
  display: none;
}

/* checkmark list */

.check_list {
  list-style: none;
}

.check_list .list_item {
  position: relative;
  padding: 0.5rem 0 0.5rem 3.5rem;
}

.check_list .list_item::before {
  content: "";
  display: block;
  width: 2.5rem;
  height: 2.5rem;
  background-color: #EBEB3B;
  background-image: url(../common/images/checkmark.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 80% auto;
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 0.5rem;
}

p.align_left {
  text-align: left;
}

p.align_right {
  text-align: right;
}

p.align_center {
  text-align: center;
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 880px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

/* ------ */
/* header */
/* ------ */

.header {
  position: relative;
  z-index: 9999;
}

.header .main_area {
  height: 9rem;
  background-color: #ffffff;
  padding: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.header .main_area .logo {
  max-width: 41rem;
}

.header .main_area .logo a {
  display: block;
  box-sizing: border-box;
}

.header .main_area .logo a:hover {
  opacity: 0.6;
  transition-duration: 0.3s;
}

.header .main_area .infomation_btn {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

.infomation_btn .tel_btn {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #18191A;
  text-decoration: none;
  text-align: center;
  margin-right: 3rem;
  transition-duration: 0.3s;
}

.infomation_btn .tel_btn:hover {
  opacity: 0.6;
  transition-duration: 0.3s;
}

.infomation_btn .tel_btn::before {
  content: "";
  display: block;
  background-image: url(../common/images/icon_tel.png);
  width: 2.5rem;
  height: 2.5rem;
  background-size: contain;
  background-repeat: no-repeat;
}

.infomation_btn .tel_btn .number {
  font-family: "Open Sans", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 2.2rem;
  line-height: 1;
  font-weight: 700;
}

.infomation_btn .tel_btn .text01 {
  font-size: 1rem;
}

.infomation_btn .tel_btn .text02 {
  font-size: 1.2rem;
  font-weight: bold;
  line-height: 2;
}

.infomation_btn .tel_btn span {
  display: block;
}

.infomation_btn .btn {
  padding: 1rem 1.5rem;
  background-color: #ccc;
  border: 1px solid #ccc;
  border-radius: 1rem;
  color: #18191A;
  text-decoration: none;
  font-size: 1.4rem;
  font-weight: bold;
  box-sizing: border-box;
  height: fit-content;
  display: inline-block;
  vertical-align: middle;
}

.infomation_btn .btn:not(:last-of-type) {
  margin-right: 1.6rem;
}

.infomation_btn .btn img {
  width: 1.4rem;
  margin-right: 0.8rem;
  vertical-align: middle;
}

.infomation_btn .btn.bg_blue {
  background-color: #0E5FC8;
  border-color: #0E5FC8;
  color: #fff;
  transition-duration: 0.3s;
}

.infomation_btn .btn.bg_blue:hover {
  background-color: #3C91FF;
  transition-duration: 0.3s;
}

.infomation_btn .btn.bg_white {
  background-color: #fff;
  border-color: #163A74;
}

.infomation_btn .btn.bg_white:hover {
  background-color: #EBEB3B;
  transition-duration: 0.3s;
}

.gloval_navi_area {
  height: 5rem;
  background-color: #163A74;
  position: relative;
}

.gloval_navi_area .gnav_menu {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
}

.gloval_navi_area .gnav_menu .list_item {
  height: inherit;
}

.gloval_navi_area .gnav_menu a {
  text-decoration: none;
  color: #fff;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding: 0 1.5rem;
  height: 100%;
  font-size: 1.4rem;
}


.gloval_navi_area .parent_menu .child_menu {
  list-style: none;
  padding: 1rem 2rem;
  color: #fff;
  background-color: #163A74;
  visibility: hidden;
  transition-duration: 0.3s;
  opacity: 0;
}

.gloval_navi_area .parent_menu .child_menu a {
  display: block;
  line-height: 2;
  padding: 1rem;
}

.gloval_navi_area .parent_menu:hover .child_menu {
  visibility: visible;
  transition-duration: 0.3s;
  opacity: 1;
}

.gloval_navi_area .gnav_menu a:hover {
  color: #EBEB3B;
  transition-duration: 0.3s;
}

.gloval_navi_area .gnav_menu .current>a {
  color: #EBEB3B;
  pointer-events: none;
}

.gloval_navi_area .banner_area {
  position: absolute;
  right: 20px;
  top: 0;
  bottom: 0;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  box-sizing: border-box;
}
.gloval_navi_area .banner_area .banner_item {
  list-style: none;
}
.gloval_navi_area .banner_area .banner_item a {
  display: block;
  max-width: 150px;
  transition-duration: 0.3s;
}
.gloval_navi_area .banner_area .banner_item a:hover {
  opacity: 0.6;
  transition-duration: 0.3s;
}




.bellbanner_area {
  display: none;

}




.toggle_icon_area {
  width: 3.5rem;
  height: 3.5rem;
  padding: 1rem 0.5rem;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  display: none;
}

.toggle_icon {
  width: 3rem;
  height: 0.1rem;
  background-color: #163A74;
  position: relative;
  transition: all 0.3s ease;
}

.toggle_icon::before,
.toggle_icon::after {
  content: "";
  width: 100%;
  height: 0.1rem;
  background-color: #163A74;
  position: absolute;
  transition: all 0.3s ease;
}

.toggle_icon::before {
  top: -0.6rem;
}

.toggle_icon::after {
  top: 0.6rem;
}

.toggle_icon_area.is-open .toggle_icon {
  background-color: transparent;
}

.toggle_icon_area.is-open .toggle_icon::before {
  top: 0;
  transform: rotate(45deg);
}

.toggle_icon_area.is-open .toggle_icon::after {
  top: 0;
  transform: rotate(-45deg);
}

.infomation_btn.smp_only {
  display: none;
}

body.is-menu_open {
  overflow: hidden;
}

@media screen and (max-width: 1040px) {
  .header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
  }

  .header .main_area {
    height: 6rem;
    padding: 0 1rem;
    box-shadow: 5px 5px 20px rgba(14, 95, 200, 0.16);
  }

  body {
    padding-top: 6rem;
  }

  .header .main_area .logo {
    height: inherit;
  }

  .header .main_area .logo a {
    display: flex;
    align-items: center;
    padding: 1rem;
    box-sizing: border-box;
    height: 100%;
  }

  .header .main_area .logo img {
    max-height: 100%;
    width: 100%;
  }

  .header .gloval_navi_area {
    transform: translateX(100%);
    width: 100%;
    height: 100vh;
    position: absolute;
    top: 6rem;
    transition-duration: 0.3s;
  }

  .header .gloval_navi_area.is-menu_in {
    transform: translateX(0%);
    transition-duration: 0.3s;
  }

  .header .gloval_navi_area .gnav_menu {
    height: fit-content;
    flex-direction: column;
    padding-top: 2rem;
  }

  .header .gloval_navi_area .gnav_menu .list_item a {
    padding: 1.5rem 1rem;
  }

  .gloval_navi_area .parent_menu a {
    padding-bottom: 1rem !important;
  }

  .gloval_navi_area .parent_menu .child_menu {
    visibility: visible;
    opacity: 1;
    padding: 0;
  }

  .gloval_navi_area .parent_menu .child_menu a {
    display: block;
    line-height: 1;
    padding: 1rem !important;
    text-align: left;
    font-weight: normal;
  }

  .gloval_navi_area .parent_menu .child_menu a::before {
    content: "-";
    display: inline-block;
    margin-right: 1rem;
  }

  .gloval_navi_area .parent_menu:hover .child_menu {
    visibility: visible;
    transition-duration: 0.3s;
    opacity: 1;
  }

  .header .main_area .infomation_btn {
    display: none;
  }

  .toggle_icon_area {
    display: flex;
  }

  .gloval_navi_area .banner_area {
    position: relative;
    justify-content: center;
    right: 0;
    margin-top:30px;
  }






  .infomation_btn.smp_only {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    margin-top: 2.4rem;
  }

  .infomation_btn.smp_only .btn,
  .infomation_btn.smp_only .tel_btn {
    margin: 1rem 0;
  }

  .infomation_btn.smp_only .tel_btn span {
    color: #fff;
  }
}

/* end header */


/* ------ */
/* footer */
/* ------ */

.footer .primary_area {
  padding: 5.8rem 0;
  position: relative;
}

.footer ul {
  list-style: none;
}

.footer a {
  color: #18191A;
  text-decoration: none;
  transition-duration: 0.3s;
}

.footer .primary_area::before,
.footer .primary_area::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: #ccc;
}

.footer .primary_area::before {
  background-image: url(../common/images/footer_bg.jpg);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -2;
}

.footer .primary_area::after {
  z-index: -1;
  background: linear-gradient(#d1f2d7 0%, #0e96c8 100%);
  opacity: 0.8;
  mix-blend-mode: overlay;
}

.footer .gloval_nav_area {
  width: fit-content;
  margin: 0 auto;
}

.footer .gloval_nav_area a {
  padding: 0.8rem 1.6rem;
  box-sizing: border-box;
  display: block;
}

.footer .gloval_nav_area a:hover {
  color: #0E5FC8;
  transition-duration: 0.3s;
}

.footer .gloval_nav_area .primary {
  display: flex;
  margin-bottom: 1.6rem;
  justify-content: center;
  gap: 2rem;
}

.footer .gloval_nav_area .primary .menu_block {
  flex: 1 1 33.333%;
  max-width: 19rem;
  min-width: 18rem;
}

.footer .gloval_nav_area .secondary {
  display: flex;
  justify-content: center;
  gap: 2rem;
}

.footer .gloval_nav_area .secondary .menu_block {
  flex: 1 1 33.333%;
  max-width: 19rem;
  min-width: 18rem;
}

.footer .gloval_nav_area .secondary .wide {
  flex: 1 1 73.333%;
  white-space: nowrap;
  max-width: initial;
}

.footer .menu_block a[target="_blank"]::after {
  content: "";
  display: block;
  width: 1.55rem;
  height: 1.55rem;
  background-image: url(../common/images/icon_new_window_mini.png);
  background-repeat: no-repeat;
  background-size: contain;
  margin-left: 4px;
  transition-duration: 0.3s;
}

.footer .menu_block a:hover[target="_blank"]::after {
  opacity: 0.6;
  transition-duration: 0.3s;
}

.footer .menu_block .parent a {
  font-weight: bold;
  font-size: 1.4rem;
}

.footer .menu_block .sub_menu .child a {
  font-weight: 400;
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}

.footer .menu_block .sub_menu .child a::before {
  content: "";
  display: block;
  height: 1px;
  width: 10px;
  background-color: #0E5FC8;
  margin-right: 4px;
}

.footer .campany_info_area {
  margin-top: 2.4rem;
  margin-bottom: 2.4rem;
}

.footer .logo_area img {
  image-rendering: -webkit-optimize-contrast;
}

.footer .logo_area a {
  display: block;
  max-width: 35rem;
  margin: 0 3rem 0 auto;
}

.footer .logo_area a :hover {
  opacity: 0.6;
  transition-duration: 0.3s;
}

.footer .campany_info_area .column2 {
  display: flex;
  gap: 3rem;
  align-items: flex-start;

}

.footer .campany_info_area .logo_area,
.footer .campany_info_area .data {
  flex: 1 1 50%;
}

.footer .campany_info_area .data span {
  font-size: 1.4rem;
  display: block;
}

.footer .campany_info_area .data .contact_info {
  font-weight: bold;
}

.footer .banner_area p {
  text-align: center;
  font-size: 1.4rem;
}

.footer .banner_area .banner_list {
  margin-top: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  gap: 2.4rem;
  justify-content: center;
}

.footer .banner_area .banner_list .list_item {
  flex: 0 0 20rem;
}

.footer .banner_area .banner_list .list_item a {
  display: block;
  overflow: hidden;
  border: 1px solid #EDEDED;
  cursor: pointer;
}

.footer .banner_area .banner_list .list_item a:hover {
  opacity: 0.6;
}

.copylight {
  background-color: #163A74;
  padding: 1.6rem 0;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 400;
  text-align: center;
}

@media screen and (max-width: 830px) {
  .footer .campany_info_area .column2 {
    flex-direction: column;
    gap: 1.6rem;
    align-items: center;
  }

  .footer .logo_area a {
    margin: 0 auto;
  }

  .footer .gloval_nav_area .primary .menu_block,
  .footer .gloval_nav_area .secondary .menu_block {
    min-width: initial;
  }
}

@media screen and (max-width: 550px) {
  .footer .primary_area {
    padding: 2.4rem 0;
  }

  .footer .gloval_nav_area .primary,
  .footer .gloval_nav_area .secondary {
    flex-direction: column;
  }

  .footer .sp_reverse_wrap {
    display: flex;
    flex-direction: column-reverse;
    margin-top: 2.4rem;
  }

  .footer .gloval_nav_area .secondary .wide {
    white-space: wrap;
  }
}

/* end footer */

/* ------------- */
/* TOP Component */
/* ------------- */

.section_title.normal {
  position: relative;
}

.section_title.normal span {
  display: inline-block;
}

.section_title.normal .en {
  font-family: "Open Sans", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 12.15rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(209, 223, 242, 0.5);
  white-space: nowrap;
}

.section_title.normal .ja {
  color: #163A74;
  position: absolute;
  bottom: 1em;
  left: 0;
  right: 0;
  margin: auto;
  width: fit-content;
  font-size: 3.2rem;
  letter-spacing: 0.1em;
}

.section_title.normal.center .en {
  text-align: center;
  margin: 0 auto;
  display: block;
}

.section_title.normal.center .ja {
  text-align: center;
}

@media screen and (max-width: 765px) {
  .section_title.normal .en {
    font-size: 6rem;
    margin-left: -2rem;
  }

  .section_title.normal .ja {
    bottom: 0.3em;
  }
}

/* ------------- */
/* TOP SMP Floating Button */
/* ------------- */

#smp_floating_btn {
  position: fixed;
  bottom: 1rem;
  left: 0;
  right: 0;
  margin: auto;
  width: 100%;
  z-index: 8888;
  display: none;
}

#smp_floating_btn .infomation_btn {
  flex-direction: row;
  display: flex;
  justify-content: center;
}

#smp_floating_btn .infomation_btn .btn {
  box-shadow: 10px 10px 5px rgba(14, 95, 200, 0.16);
}

@media screen and (max-width: 765px) {
  #smp_floating_btn.is-show-btn {
    display: block;
  }
}



/* ------------- */
/* TOP FirstView */
/* ------------- */

#top_page #first_view {
  position: relative;
}

.mask-bg {
  color: transparent;
  display: inline-block;
  font-size: 36px;
  font-weight: bold;
  overflow: hidden;
  position: relative;
  transition: color 0ms 450ms;
  display: block;
  padding: 1.6rem 3rem;
  font-size: 5.2rem;
  letter-spacing: 0.3em;
  text-align: center;
}

.mask-bg::after {
  background: linear-gradient(to right, #362ae0 0%, #3b79cc 50%, #42d3ed 100%);
  bottom: 0;
  content: '';
  display: block;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  transform: translate(0, 100%);
}

.mask-bg.is-animated {
  color: #18191A;
  background-color: rgba(255, 255, 255, 0.85);
}

.mask-bg.is-animated::after {
  animation: mask-bg 1.2s cubic-bezier(0.8, 0, 0.170, 1);
}

@keyframes mask-bg {
  0% {
    transform: translate(0, 101%);
  }

  40%,
  60% {
    transform: translate(0, 0%);
  }

  100% {
    transform: translate(0, -100%);
  }
}

#top_page #first_view .main_copy {
  position: absolute;
  top: 45%;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 1;
}

#top_page #first_view .main_copy .catchcopy {

  background: transparent;
  width: fit-content;
  margin: 0 auto;
}

#top_page #first_view .main_copy .catchcopy small {
  font-size: 3.2rem;
}


#top_page #first_view .column2 {
  display: flex;
}

#top_page #first_view .left_block,
#top_page #first_view .right_block {
  flex: 1 1 50%;
  position: relative;
  /* height: 85vh; */
  /* min-height: 63rem; */
}

#top_page #first_view .left_block .background,
#top_page #first_view .right_block .background {
  width: 100%;
  height: 100%;
  /* position: absolute;
  top: 0;
  left: 0; */
}

#top_page #first_view .left_block img,
#top_page #first_view .right_block img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left;
}

#top_page #first_view .info_block {
  position: absolute;
  bottom: 4rem;
  left: 2rem;
  background: rgba(255, 255, 255, 0.8);
  padding: 1.6rem;
  border-radius: 1rem;
}

#top_page #first_view .left_block .info_block {
  left: auto;
  right: 2rem;
}

#top_page #first_view .info_block .title {
  padding: 1rem 1.5rem;
  background-color: #0E5FC8;
  color: #fff;
  text-align: center;
  display: inline-block;
}

#top_page #first_view .info_block .column2 {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-top: 2rem;
}

#top_page #first_view .info_block .description {
  width: 24rem;
  margin-right: 1rem;
  font-size: 1.4rem;
  font-weight: bold;
}

#top_page #first_view .right_block .title {
  background-color: #163A74;
}

/* @media screen and (max-width: 1040px) {

  #top_page #first_view .left_block,
  #top_page #first_view .right_block {
    height: 93vh;
  }
} */

@media screen and (max-width: 940px) {
  #top_page #first_view .main_copy .catchcopy span {
    font-size: 4.2rem;
  }
}

@media screen and (max-width: 880px) {
  #top_page #first_view {
    margin-top: 6rem;
  }

  #top_page #first_view::before {
    content: "";
    display: block;
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 10%;
    background: linear-gradient(#fff 0%, rgba(255, 255, 255, 0) 100%);
    z-index: 1;
  }

  #top_page #first_view .wrap.column2 {
    flex-direction: column;
  }


  #top_page #first_view .info_block {
    width: 90%;
    max-width: 40rem;
    margin: 0 auto;
    right: 0;
    left: 0;
  }

  #top_page #first_view .left_block .info_block {
    margin: 0 auto;
    right: 0;
    left: 0;
  }


  #top_page #first_view .main_copy {
    top: 0;
    left: 0;
    right: auto;
  }

  #top_page #first_view .main_copy .mask-bg {
    text-align: left;
    line-height: 1.8;
    background: transparent;
    margin-top: -6rem;
  }
}

@media screen and (max-width: 600px) {

  /* #top_page #first_view .left_block,
  #top_page #first_view .right_block {
    min-height: 36.5rem;
  } */

  #top_page #first_view .main_copy .mask-bg {
    font-size: 3.4rem !important;
    line-height: 1.6;
    padding: 1.6rem 0;
  }

  #top_page #first_view .main_copy .mask-bg small {
    font-size: 2.3rem;
  }

  #top_page #first_view .info_block .column2 {
    margin-top: 1rem;
  }

  #top_page #first_view .info_block .description {
    font-size: 1.2rem;
  }
}

/* end TOP FirstView

/* ------------- */
/* TOP Overview */
/* ------------- */

#top_page #top_overview {
  position: relative;
  overflow: hidden;
  padding: 8rem 0 4rem 0;
}

#top_page #top_overview .deco {
  position: absolute;
  width: 15vw;
  top: -5rem;
  left: -3%;
  z-index: -1;
}

#top_page #top_overview .section_title {
  font-size: 3.2rem;
  text-align: center;
  line-height: 1.5;
  font-weight: bold;
  letter-spacing: 0.1em;
  margin-bottom: 6rem;
}

#top_page #top_overview .section_title strong {
  color: #0E5FC8;
  font-weight: inherit;
}

#top_page #top_overview .section_title span {
  text-decoration: underline;
  text-underline-offset: 8px;
}

#top_page #top_overview .wrap.column2 {
  display: flex;
}

#top_page #top_overview .wrap .info_block {
  flex: 1 1 50%;
  padding: 6rem 5rem 4rem 5rem;
  background-color: #0E5FC8;
  color: #fff;
  position: relative;
}

#top_page #top_overview .wrap .secondary {
  background-color: #163A74;
}

#top_page #top_overview .info_block .block_title {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}

#top_page #top_overview .info_block p {
  font-size: 1.4rem;
  margin-top: 2rem;
}

#top_page #top_overview .info_block .link {
  margin: 2rem 0 0 auto;
  width: fit-content;

}

#top_page #top_overview .info_block ul {
  list-style: none;
}

@media screen and (max-width: 765px) {
  #top_page #top_overview {
    padding: 4rem 0;
  }

  #top_page #top_overview .wrap.column2 {
    flex-direction: column;
  }

  #top_page #top_overview .wrap .info_block {
    flex: 1 1 100%;
  }

  #top_page #top_overview .deco {
    position: absolute;
    width: 21rem;
    top: -5rem;
    left: -3rem;
    z-index: -1;
  }

  #top_page #top_overview .section_title {
    font-size: 2rem;
    margin-bottom: 4rem;
  }

  #top_page #top_overview .wrap .info_block {
    padding: 4rem 2rem;
  }
}

/* end TOP Overview */

/* ------------- */
/* TOP AbuoutUs */
/* ------------- */

#top_page #top_about-us {
  position: relative;
  padding: 4rem 0 8rem 0;
  overflow: hidden;
}

#top_page #top_about-us .deco {
  position: absolute;
  width: 20vw;
  top: 18rem;
  right: -3%;
  z-index: -10;
  max-width: 40rem;

}

#top_page #top_about-us .column3 {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  margin-top: 2.4rem;
}

#top_page #top_about-us .column3 .info_block {
  flex: 0 0 32%;
  max-width: 36rem;
  padding: 11.5rem 3rem 5rem 3rem;
  position: relative;
  background: #F5F5F5;
  border-radius: 1rem;
  box-sizing: border-box;
}

#top_page #top_about-us .column3 .info_block .block_title {
  clip-path: polygon(0 0, 100% 0%, 90% 100%, 0% 100%);
  background-color: #163A74;
  color: #fff;
  padding: 1rem 4.2rem 1rem 2.4rem;
  position: absolute;
  left: 0;
  top: 4rem;
  width: 95%;
}

#top_page #top_about-us .column3 .info_block .img {
  height: 20rem;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 3rem;
}

#top_page #top_about-us .column3 .info_block img {
  max-width: 15rem;
}

#top_page #top_about-us .column3 .info_block .desc {
  line-height: 1.7;
  font-size: 1.6rem;
}

@media screen and (max-width: 765px) {
  #top_page #top_about-us .column3 {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }

  #top_page #top_about-us .deco {
    display: none;
  }
}

/* end AbuoutUs */



/* ------------- */
/* TOP Recruit */
/* ------------- */

#top_page #top_recruit {
  padding: 6rem 0;
  position: relative;
}

#top_page .bg_pattern::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-image: url(../images/ricruit_bg.jpg);
  background-size: cover;
  z-index: -2;
}

#top_page .bg_pattern::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #0E5FC8;
  mix-blend-mode: hard-light;
  z-index: -1;
}

#top_page #top_recruit .section_title span {
  display: block;
  text-align: center;
  letter-spacing: 0.1em;
}

#top_page #top_recruit .section_title .en {
  display: block;
  color: #EBEB3B;
  font-size: 2.4rem;
  font-family: "Open Sans", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  text-transform: uppercase;
  font-weight: bold;
}

#top_page #top_recruit .section_title .ja {
  display: block;
  color: #fff;
  font-size: 3rem;
}

#top_page #top_recruit .section_title {
  margin-bottom: 5rem;
}

#top_page #top_recruit .recruit_block {
  display: flex;
}

#top_page #top_recruit .recruit_block:nth-of-type(even) {
  flex-direction: row-reverse;
}

#top_page #top_recruit .recruit_block .image_area,
#top_page #top_recruit .recruit_block .text_area {
  flex: 1 1 50%;
}

#top_page #top_recruit .recruit_block .image_area {
  height: inherit;
  width: 100%;
  overflow: hidden;
}

#top_page #top_recruit .recruit_block .image_area a {
  display: block;
  transition-duration: 0.3s;
}

#top_page #top_recruit .recruit_block .image_area a:hover {
  opacity: 0.6;
  transition-duration: 0.3s;
}

#top_page #top_recruit .recruit_block .image_area img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

#top_page #top_recruit .recruit_block .text_area {
  padding: 2rem 3rem;
  color: #fff;
}

#top_page #top_recruit .recruit_block .blcok_title {
  font-size: 2.4rem;
  margin-bottom: 2rem;
}

#top_page #top_recruit .recruit_block .sub {
  padding: 1rem 2rem;
  border-radius: 1rem;
  width: 100%;
  text-align: center;
  background-color: #fff;
  color: #18191A;
  font-size: 1.6rem;
  font-weight: bold;
  margin-bottom: 2rem;
}

#top_page #top_recruit .recruit_block .desc {
  line-height: 2;
  margin-bottom: 1.6rem;
}

#top_page #top_recruit .recruit_block .link {
  width: fit-content;
  margin: 0 0 0 auto;
}

@media screen and (max-width: 765px) {

  #top_page #top_recruit .recruit_block,
  #top_page #top_recruit .recruit_block:nth-of-type(even) {
    flex-direction: column;
  }

  #top_page #top_recruit .recruit_block:not(:last-of-type) {
    margin-bottom: 4rem;
  }

  #top_page #top_recruit .recruit_block .text_area {
    padding: 2rem 0;
  }
}

/* end Recruit */

/* ------------- */
/* TOP feature */
/* ------------- */

#top_page #top_feature {
  padding: 4rem 0;
}

#top_page #top_feature .section_content.column2 {
  display: flex;
  margin-top: 2.4rem;
}

#top_page #top_feature .feature_block {
  padding: 0 0.5rem;
}

#top_page #top_feature .image_area {
  border-radius: 1rem;
  overflow: hidden;
  position: relative
}

#top_page #top_feature .image_area::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: linear-gradient(to top, #0E5FC8 0%, rgba(14, 95, 200, 0) 100%);
  mix-blend-mode: multiply;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  opacity: 0.4;
}

#top_page #top_feature .image_area img {
  object-fit: cover;
  height: 100%;
  width: 100%;
  position: relative;
  z-index: -1;
}

#top_page #top_feature .image_area .title {
  position: absolute;
  bottom: 2.5rem;
  left: 3rem;
  color: #fff;
  font-size: 2.4rem;
  font-weight: bold;
}

#top_page #top_feature .text_area {
  line-height: 2;
  text-align: center;
  margin-top: 2.4rem;
}

@media screen and (max-width: 880px) {
  #top_page #top_feature .section_content.column2 {
    flex-direction: column;
    align-items: center;
    justify-self: center;
  }

  #top_page #top_feature .feature_block {
    max-width: 56rem;
  }

  #top_page #top_feature .feature_block:not(:last-of-type) {
    margin-bottom: 4rem;
  }
}

@media screen and (max-width: 765px) {
  #top_page #top_feature .section_title.normal {
    margin-bottom: 6rem;
  }

  #top_page #top_feature .section_title.normal .ja {
    text-align: center;
    top: 1em;
    bottom: initial;
    font-size: 3rem;
  }

  #top_page #top_feature .image_area .title {
    font-size: 2rem;
    left: 2rem;
  }

  #top_page #top_feature .text_area {
    margin-top: 1.6rem;
  }
}

/* end feature */

/* ------------- */
/* TOP Support */
/* ------------- */

#top_page #top_support {
  padding: 4rem 0 8rem 0;
  position: relative;
  overflow: hidden;
}

#top_page #top_support .deco {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#top_page #top_support .deco .item01 {
  position: absolute;
  width: 27vw;
  top: 4rem;
  left: -10%;
}

#top_page #top_support .deco .item02 {
  position: absolute;
  width: 14vw;
  top: 40rem;
  right: -5rem;
}

#top_page #top_support .lead_text {
  font-size: 2rem;
  line-height: 1.75;
  font-weight: bold;
  text-align: center;
  margin-bottom: 2rem;
}

#top_page #top_support .description {
  font-size: 1.6rem;
  line-height: 2;
  text-align: center;
}

#top_page #top_support .link {
  margin: 2rem auto 6rem auto;
  width: fit-content;
}

#top_support .link_list {
  display: flex;
  justify-content: center;
  list-style: none;
  align-items: initial;
  gap: 2rem;
  margin-top: 8rem;
}

#top_support .link_list .list_item {
  flex: 1 1 30%;
  max-width: 36rem;
  width: 100%;
}

#top_support .link_list .list_item a {
  position: relative;
  display: block;
  padding: 3rem 2rem 5rem 2rem;
  background-color: #0E5FC8;
  color: #fff;
  border-radius: 2rem;
  text-decoration: none;
  transition-duration: 0.3s;
}

#top_support .link_list .list_item a:hover {
  background-color: #3C91FF;
  transition-duration: 0.3s;
}

#top_support .link_list .list_item a .text {
  text-align: center;
  font-size: 2rem;
  font-weight: bold;
  margin-top: 1rem;
  min-height: 3em;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}

#top_support .link_list .list_item a .text .small {
  font-size: 1.6rem;
  font-weight: 400;
  display: block;
}

#top_support .link_list .list_item .icon img {
  width: auto;
  max-height: 6rem;
  display: block;
  margin: 0 auto;
}

#top_support .link_list .list_item .link_btn {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
}

#top_support .link_list .list_item .link_btn::after {
  background-color: #EBEB3B;
  background-image: url(../common/images/arrow_right_b.png);
}

@media screen and (max-width: 940px) {
  #top_page #top_support .deco {
    display: none;
  }

  #top_support .link_list {
    flex-direction: column;
    align-items: center;
  }

  #top_support .link_list .list_item a {
    padding: 3rem 2rem;
  }

  #top_support .section_title.normal.center .en {
    margin: 0;
    margin-left: -2rem;
    text-align: left;
  }
}

@media screen and (max-width: 345px) {
  #top_support .link_list {
    flex-direction: column;
    align-items: center;
  }

  #top_support .link_list .list_item a {
    padding: 3rem 2rem 6rem 2rem;
  }

  #top_support .link_list .list_item .link_btn {
    left: 0;
    right: 0;
    width: fit-content;
    margin: auto;
    bottom: 1rem;
  }
}

/* end Support */


/* ------- */
/* Message */
/* ------- */

#top_message {
  padding: 0 0 4rem 0;
}

#top_message .section_content {
  position: relative;
  min-height: 50rem;
}

#top_message .image_area {
  position: absolute;
  left: 0;
  top: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  max-width: 76rem;
}

#top_message .image_area img {
  object-fit: cover;
  height: 100%;
}

#top_message .half_block {
  padding: 2.4rem;
  width: 50%;
  margin: 0 0 0 auto;
}

#top_message .half_block .block_title {
  font-size: 2.2rem;
  margin-bottom: 2.4rem;
}

#top_message .half_block p {
  font-size: 1.6rem;
  line-height: 1.8;
}

#top_message .half_block .name {
  margin-top: 3rem;
}

@media screen and (max-width: 765px) {
  #top_message .image_area {
    position: relative;
    width: 100%;
  }

  #top_message .half_block {
    width: 100%;
    padding: 4rem 0;
  }
}

/* end TOP Message */

/* -------------- */
/* COMMON contact */
/* -------------- */

#common_contact {
  position: relative;
  overflow: hidden;
  padding: 5rem 0 6rem 0;
  color: #fff;
}

#common_contact .background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

#common_contact .background img {
  object-fit: cover;
  width: 100%;
  height: 100%;
}

#common_contact .background::before {
  content: "";
  display: block;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  mix-blend-mode: multiply;
}

#common_contact .section_title span {
  display: block;
  text-align: center;
  color: #fff;
  letter-spacing: 0.1em;
}

#common_contact .section_title .en {
  font-family: "Open Sans", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  font-size: 2.4rem;
  font-weight: bold;
}

#common_contact .section_title .ja {
  font-size: 3.2rem;
}

#common_contact .lead_text {
  text-align: center !important;
  padding: 2rem 0 3rem 0;
  font-weight: 400;
}

#common_contact .infomation_btn {
  max-width: 44rem;
  margin: 0 auto;
}

#common_contact .infomation_btn .column2 {
  display: flex;
  align-items: center;
  justify-content: center;
}

#common_contact .btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 2rem 3rem;
  border-color: transparent;
  transition-duration: 0.3s;
  width: 100%;
}

#common_contact .btn span {
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
}

#common_contact .btn.bg_darkblue {
  background-color: #163A74;
  color: #fff;
  border-color: transparent;
}

#common_contact .btn:hover {
  background-color: #3C91FF;
  transition-duration: 0.3s;
}

#common_contact .tel_btn {
  background-color: #fff;
  border-radius: 1rem;
  width: 100%;
  padding: 1rem;
}

#common_contact .tel_btn {
  flex-direction: column;
  gap: 0;
  margin-top: 3.6rem;
}

#common_contact .tel_btn::before {
  display: none;
}

#common_contact .tel_btn .number {
  display: flex;
  align-items: center;
  font-size: 2.4rem;
  margin-top: 0.8rem;
}

#common_contact .tel_btn .number::before {
  content: "";
  display: block;
  background-image: url(../common/images/icon_tel_flat.png);
  width: 2.5rem;
  height: 2.5rem;
  background-size: contain;
  background-repeat: no-repeat;
  margin-right: 0.8rem;
}

@media screen and (max-width: 480px) {
  #common_contact .infomation_btn .column2 {
    flex-direction: column;
  }

  #common_contact .infomation_btn .btn,
  #common_contact .infomation_btn .btn:not(:last-of-type) {
    margin: 0 auto 2rem auto;
  }

  #common_contact .tel_btn {
    flex-direction: column;
    gap: 0;
    margin-top: 2rem;
}
	}



/* end SectionName */

/* ------------- */
/* TOP SectionName */
/* ------------- */


/* ベルマーレロゴナビ用 */
@media (min-width: 769px){
.bellimg{
	width:300px;
	margin:0 auto;
}
.bellimg img{
	width:88%;
	height:auto;
	transition: opacity 0.3s ease; /* スムーズに変化させる */
	border:1px solid #ddd;
}
.bellimg img:hover{
	opacity: 0.7; /* マウスオン時に少し薄く */
}
	}
@media (max-width: 768px){	/* SP非表示 */
.bellimg{
	display:none;
}
	}


/* ベルマーレロゴハンバーガー用 */

@media (min-width: 769px){	/* PC非表示 */
.bellbana{
	display:none;
}
	}
@media (max-width: 768px){
.bellbana {
	width:100%;
	margin: 0 auto;
	text-align: center;
}
.bellbana img{
	width:80%;
	height:auto;
}
	}






/* end SectionName */