@charset "UTF-8";
body {
  overflow-x: hidden;
}

/*----------------
hdr_main
----------------*/
.hdr_main {
  position: fixed;
  z-index: 9999;
  width: 100%;
  padding: 0 24px;
  background: rgb(255, 255, 255);
}
@media (max-width: 1024px) {
  .hdr_main {
    padding: 0;
  }
}
.hdr_main .inner {
  max-width: 1285px;
  margin: 0 auto;
  padding: 24px 0;
  height: 145px;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  align-content: space-between;
}
@media (max-width: 1024px) {
  .hdr_main .inner {
    background: #fff;
    width: 100%;
    height: 90px;
  }
}
@media (max-width: 480px) {
  .hdr_main .inner {
    height: 77px;
  }
}
.hdr_main .inner a .logo_img {
  width: 314px;
}
@media (max-width: 1024px) {
  .hdr_main .inner a .logo_img {
    padding-left: 24px;
  }
}
@media (max-width: 480px) {
  .hdr_main .inner a .logo_img {
    width: 230px;
    padding-left: 15px;
  }
}
.hdr_main .inner a .logo_img img {
  width: 100%;
}
@media (max-width: 1024px) {
  .hdr_main nav.pc_nav {
    display: none;
  }
}
.hdr_main nav.pc_nav ul.main {
  display: flex;
  justify-content: end;
}
.hdr_main nav.pc_nav ul.main > li {
  position: relative;
  margin-left: 38px;
}
.hdr_main nav.pc_nav ul.main > li:first-of-type {
  margin-left: 0;
}
.hdr_main nav.pc_nav ul.main > li > a {
  position: relative;
  padding: 4px 22px;
  display: flex;
  font-size: 15px;
  color: #333;
  transition: 0.3s;
}
.hdr_main nav.pc_nav ul.main > li > a::after {
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  z-index: 10;
  margin: auto;
  width: 0;
  height: 2px;
  content: "";
  display: block;
  background: #333;
  transition: 0.5s;
}
.hdr_main nav.pc_nav ul.main > li > a:hover {
  color: #002044;
}
.hdr_main nav.pc_nav ul.main > li > a:hover::after {
  width: 100%;
  background: #002044;
}

/*　ハンバーガーボタン　*/
.hamburger.sp_ver {
  display: none;
}
@media (max-width: 1024px) {
  .hamburger.sp_ver {
    display: block;
  }
}

.hamburger {
  display: block;
  position: fixed;
  z-index: 3;
  right: 26px;
  top: 29px;
  width: 42px;
  height: 42px;
  cursor: pointer;
  text-align: center;
}
@media (max-width: 480px) {
  .hamburger {
    top: 24px;
    right: 18px;
  }
}

.hamburger span {
  display: block;
  position: absolute;
  width: 30px;
  height: 2px;
  left: 6px;
  background: #555;
  transition: 0.5s ease-in-out;
}

.hamburger span.border1 {
  width: 45px;
}
@media (max-width: 480px) {
  .hamburger span.border1 {
    width: 36px;
  }
}

.hamburger span.border2 {
  width: 36px;
}
@media (max-width: 480px) {
  .hamburger span.border2 {
    width: 27px;
  }
}

.hamburger span:nth-child(1) {
  top: 10px;
}

.hamburger span:nth-child(2) {
  top: 20px;
}

.hamburger span:nth-child(3) {
  top: 30px;
}

/* ナビ開いてる時のボタン */
.hamburger.active span:nth-child(1) {
  width: 36px;
  top: 16px;
  left: 6px;
  transform: rotate(315deg);
}
@media (max-width: 480px) {
  .hamburger.active span:nth-child(1) {
    width: 32px;
  }
}

.hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
  width: 36px;
  top: 16px;
  transform: rotate(-315deg);
}
@media (max-width: 480px) {
  .hamburger.active span:nth-child(2),
.hamburger.active span:nth-child(3) {
    width: 32px;
  }
}

nav.globalMenuSp {
  position: fixed;
  z-index: -1;
  top: 90px;
  left: 0;
  color: #000;
  background: #fff;
  text-align: center;
  transform: translateY(-150%);
  transition: all 0.6s;
  width: 100%;
}
@media (max-width: 480px) {
  nav.globalMenuSp {
    top: 77px;
  }
}

nav.globalMenuSp ul {
  background: rgba(0, 32, 68, 0.1294117647);
  margin: 0 auto;
  padding: 0;
  width: 100%;
}

nav.globalMenuSp ul li {
  list-style-type: none;
  padding: 0;
  width: 100%;
  border-bottom: 1px solid #fff;
  transition: all 0.3s;
}

nav.globalMenuSp ul li:last-child {
  padding-bottom: 0;
  border-bottom: none;
}

nav.globalMenuSp ul li:hover {
  background: rgba(0, 32, 68, 0.1607843137);
}

nav.globalMenuSp ul li a {
  display: block;
  color: #000;
  padding: 2em 0;
  text-decoration: none;
  text-align: center;
  position: relative;
}
@media (max-width: 480px) {
  nav.globalMenuSp ul li a {
    padding: 1.3rem 0;
    font-size: 14px;
  }
}

nav.globalMenuSp ul li a:after {
  content: "";
  position: absolute;
  top: 50%;
  right: 19px;
  width: 8px;
  height: 8px;
  display: block;
  border-top: 2px solid #666;
  border-right: 2px solid #666;
  transform: translateY(-50%) translateX(-150%) rotate(45deg);
}
@media (max-width: 480px) {
  nav.globalMenuSp ul li a:after {
    content: "";
    position: absolute;
    top: 50%;
    right: 13px;
    width: 6px;
    height: 6px;
    display: block;
    border-top: 2px solid #666;
    border-right: 2px solid #666;
    transform: translateY(-50%) translateX(-150%) rotate(45deg);
  }
}

/* このクラスを、jQueryで付与・削除する */
nav.globalMenuSp.active {
  transform: translateY(0%);
}

/*----------------
fixed_menu
----------------*/
.fixed_menu {
  position: fixed;
  z-index: -2;
  top: 50%;
  transform: translateY(-50%);
  right: -113px; /* 初期位置: 隠れている */
}
@media (max-width: 850px) {
  .fixed_menu {
    display: none;
  }
}
.fixed_menu ul {
  list-style: none;
  padding: 0;
  transition: opacity 0.3s ease;
}
.fixed_menu ul li {
  transition: 0.5s;
  width: 170px;
}
.fixed_menu ul li:hover {
  transform: translateX(-110px);
}
.fixed_menu ul li a {
  color: #fff;
  text-decoration: none;
  padding: 12px 0;
  display: block;
}
.fixed_menu ul li a .wrap {
  display: flex;
  align-items: center;
  gap: 14px;
}
.fixed_menu ul li a .wrap .icon {
  width: 45px;
  padding-left: 12px;
}
.fixed_menu ul li a .wrap .icon img {
  width: 100%;
}
.fixed_menu ul li a .wrap .desc {
  font-size: 14px;
  color: #fff;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Meiryo", "メイリオ", sans-serif;
}
.fixed_menu ul .menu1 {
  background: #6b9abf;
}
.fixed_menu ul .menu1 a .wrap .icon {
  width: 42px;
  padding-left: 16px;
}
.fixed_menu ul .menu1 a .wrap .icon img {
  width: 100%;
}
.fixed_menu ul .menu2 {
  background: #3872a8;
}
.fixed_menu ul .menu2 a .wrap .icon {
  width: 42px;
  padding-left: 16px;
}
.fixed_menu ul .menu2 a .wrap .icon img {
  width: 100%;
}
.fixed_menu ul .menu3 {
  background: #004879;
}
.fixed_menu ul .menu3 a .wrap .icon {
  width: 42px;
  padding-left: 17px;
}
.fixed_menu ul .menu3 a .wrap .icon img {
  width: 100%;
}
.fixed_menu ul .menu4 {
  background: #002e55;
}
.fixed_menu ul .menu4 a .wrap .icon {
  width: 42px;
  padding-left: 17px;
}
.fixed_menu ul .menu4 a .wrap .icon img {
  width: 100%;
}

.cta2.fixed_sp_menu {
  display: none;
}
@media (max-width: 850px) {
  .cta2.fixed_sp_menu {
    display: block !important;
    position: fixed;
    width: 100%;
    bottom: 91px;
  }
}
@media (max-width: 480px) {
  .cta2.fixed_sp_menu {
    display: block !important;
    position: fixed;
    width: 100%;
    bottom: 33px;
  }
}
.cta2.fixed_sp_menu .inner {
  width: 1088px;
  margin: 0 auto;
  padding: 0;
}
@media (max-width: 1160px) {
  .cta2.fixed_sp_menu .inner {
    width: 100%;
  }
}
.cta2.fixed_sp_menu .inner .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.cta2.fixed_sp_menu .inner .wrap .p_btn {
  background: #669bbf;
  width: 100%;
  transition: 0.3s;
}
.cta2.fixed_sp_menu .inner .wrap .p_btn:hover {
  opacity: 0.8;
}
.cta2.fixed_sp_menu .inner .wrap .p_btn a {
  padding: 50px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 850px) {
  .cta2.fixed_sp_menu .inner .wrap .p_btn a {
    padding: 32px 0;
    gap: 14px;
    height: 90px;
  }
}
@media (max-width: 480px) {
  .cta2.fixed_sp_menu .inner .wrap .p_btn a {
    gap: 10px;
    padding: 18px 0;
    height: 55px;
  }
}
.cta2.fixed_sp_menu .inner .wrap .p_btn a .pic {
  width: 50px;
}
@media (max-width: 850px) {
  .cta2.fixed_sp_menu .inner .wrap .p_btn a .pic {
    width: 35px;
  }
}
@media (max-width: 480px) {
  .cta2.fixed_sp_menu .inner .wrap .p_btn a .pic {
    width: 24px;
  }
}
.cta2.fixed_sp_menu .inner .wrap .p_btn a .pic img {
  width: 100%;
}
.cta2.fixed_sp_menu .inner .wrap .p_btn a .txt {
  font-size: 26px;
  color: #fff;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Meiryo", "メイリオ", sans-serif;
}
@media (max-width: 600px) {
  .cta2.fixed_sp_menu .inner .wrap .p_btn a .txt {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .cta2.fixed_sp_menu .inner .wrap .p_btn a .txt {
    font-size: 16px;
  }
}
.cta2.fixed_sp_menu .inner .wrap .c_btn {
  background: #3872a8;
  width: 100%;
  transition: 0.3s;
}
.cta2.fixed_sp_menu .inner .wrap .c_btn:hover {
  opacity: 0.8;
}
.cta2.fixed_sp_menu .inner .wrap .c_btn a {
  padding: 53.6px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 850px) {
  .cta2.fixed_sp_menu .inner .wrap .c_btn a {
    padding: 32px 0;
    gap: 14px;
    height: 90px;
  }
}
@media (max-width: 480px) {
  .cta2.fixed_sp_menu .inner .wrap .c_btn a {
    gap: 10px;
    padding: 18px 0;
    height: 55px;
  }
}
.cta2.fixed_sp_menu .inner .wrap .c_btn a .pic {
  width: 48px;
}
@media (max-width: 850px) {
  .cta2.fixed_sp_menu .inner .wrap .c_btn a .pic {
    width: 32px;
  }
}
@media (max-width: 480px) {
  .cta2.fixed_sp_menu .inner .wrap .c_btn a .pic {
    width: 24px;
  }
}
.cta2.fixed_sp_menu .inner .wrap .c_btn a .pic img {
  width: 100%;
}
.cta2.fixed_sp_menu .inner .wrap .c_btn a .txt {
  font-size: 26px;
  color: #fff;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Meiryo", "メイリオ", sans-serif;
}
@media (max-width: 600px) {
  .cta2.fixed_sp_menu .inner .wrap .c_btn a .txt {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .cta2.fixed_sp_menu .inner .wrap .c_btn a .txt {
    font-size: 16px;
  }
}
.cta2.fixed_sp_menu .inner .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.cta2.fixed_sp_menu .inner .wrap .t_btn {
  background: #004879;
  width: 100%;
  transition: 0.3s;
}
.cta2.fixed_sp_menu .inner .wrap .t_btn:hover {
  opacity: 0.8;
}
.cta2.fixed_sp_menu .inner .wrap .t_btn a {
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 850px) {
  .cta2.fixed_sp_menu .inner .wrap .t_btn a {
    padding: 32px 0;
    gap: 14px;
    height: 90px;
  }
}
@media (max-width: 480px) {
  .cta2.fixed_sp_menu .inner .wrap .t_btn a {
    gap: 10px;
    padding: 18px 0;
    height: 55px;
  }
}
.cta2.fixed_sp_menu .inner .wrap .t_btn a .pic {
  width: 36px;
}
@media (max-width: 850px) {
  .cta2.fixed_sp_menu .inner .wrap .t_btn a .pic {
    width: 24px;
  }
}
@media (max-width: 480px) {
  .cta2.fixed_sp_menu .inner .wrap .t_btn a .pic {
    width: 22px;
  }
}
.cta2.fixed_sp_menu .inner .wrap .t_btn a .pic img {
  width: 100%;
}
.cta2.fixed_sp_menu .inner .wrap .t_btn a .txt {
  font-size: 26px;
  color: #fff;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Meiryo", "メイリオ", sans-serif;
}
@media (max-width: 600px) {
  .cta2.fixed_sp_menu .inner .wrap .t_btn a .txt {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .cta2.fixed_sp_menu .inner .wrap .t_btn a .txt {
    font-size: 16px;
  }
}
.cta2.fixed_sp_menu .inner .wrap .i_btn {
  background: #002044;
  width: 100%;
  transition: 0.3s;
}
.cta2.fixed_sp_menu .inner .wrap .i_btn:hover {
  opacity: 0.8;
}
.cta2.fixed_sp_menu .inner .wrap .i_btn a {
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 850px) {
  .cta2.fixed_sp_menu .inner .wrap .i_btn a {
    padding: 32px 0;
    gap: 14px;
    height: 90px;
  }
}
@media (max-width: 480px) {
  .cta2.fixed_sp_menu .inner .wrap .i_btn a {
    gap: 10px;
    padding: 18px 0;
    height: 55px;
  }
}
.cta2.fixed_sp_menu .inner .wrap .i_btn a .pic {
  width: 36px;
}
@media (max-width: 850px) {
  .cta2.fixed_sp_menu .inner .wrap .i_btn a .pic {
    width: 24px;
  }
}
@media (max-width: 480px) {
  .cta2.fixed_sp_menu .inner .wrap .i_btn a .pic {
    width: 22px;
  }
}
.cta2.fixed_sp_menu .inner .wrap .i_btn a .pic img {
  width: 100%;
}
.cta2.fixed_sp_menu .inner .wrap .i_btn a .txt {
  font-size: 26px;
  color: #fff;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Meiryo", "メイリオ", sans-serif;
}
@media (max-width: 600px) {
  .cta2.fixed_sp_menu .inner .wrap .i_btn a .txt {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .cta2.fixed_sp_menu .inner .wrap .i_btn a .txt {
    font-size: 16px;
  }
}

@media (max-width: 850px) {
  .cta2.pc_only {
    display: none;
  }
}
.cta2.pc_only .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.cta2.pc_only .wrap .p_btn {
  background: #669bbf;
  width: 100%;
  transition: 0.3s;
}
.cta2.pc_only .wrap .p_btn:hover {
  opacity: 0.8;
}
.cta2.pc_only .wrap .p_btn a {
  padding: 50px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 850px) {
  .cta2.pc_only .wrap .p_btn a {
    padding: 32px 0;
    gap: 14px;
  }
}
@media (max-width: 480px) {
  .cta2.pc_only .wrap .p_btn a {
    gap: 10px;
  }
}
.cta2.pc_only .wrap .p_btn a .pic {
  width: 50px;
}
@media (max-width: 850px) {
  .cta2.pc_only .wrap .p_btn a .pic {
    width: 35px;
  }
}
@media (max-width: 480px) {
  .cta2.pc_only .wrap .p_btn a .pic {
    width: 24px;
  }
}
.cta2.pc_only .wrap .p_btn a .pic img {
  width: 100%;
}
.cta2.pc_only .wrap .p_btn a .txt {
  font-size: 26px;
  color: #fff;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Meiryo", "メイリオ", sans-serif;
}
@media (max-width: 600px) {
  .cta2.pc_only .wrap .p_btn a .txt {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .cta2.pc_only .wrap .p_btn a .txt {
    font-size: 20px;
  }
}
.cta2.pc_only .wrap .c_btn {
  background: #2c5d94;
  width: 100%;
  transition: 0.3s;
}
.cta2.pc_only .wrap .c_btn:hover {
  opacity: 0.8;
}
.cta2.pc_only .wrap .c_btn a {
  padding: 53.6px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 850px) {
  .cta2.pc_only .wrap .c_btn a {
    padding: 32px 0;
    gap: 14px;
  }
}
@media (max-width: 480px) {
  .cta2.pc_only .wrap .c_btn a {
    gap: 10px;
  }
}
.cta2.pc_only .wrap .c_btn a .pic {
  width: 48px;
}
@media (max-width: 850px) {
  .cta2.pc_only .wrap .c_btn a .pic {
    width: 32px;
  }
}
@media (max-width: 480px) {
  .cta2.pc_only .wrap .c_btn a .pic {
    width: 24px;
  }
}
.cta2.pc_only .wrap .c_btn a .pic img {
  width: 100%;
}
.cta2.pc_only .wrap .c_btn a .txt {
  font-size: 26px;
  color: #fff;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Meiryo", "メイリオ", sans-serif;
}
@media (max-width: 600px) {
  .cta2.pc_only .wrap .c_btn a .txt {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .cta2.pc_only .wrap .c_btn a .txt {
    font-size: 20px;
  }
}
.cta2.pc_only .wrap .t_btn {
  background: #002044;
  width: 100%;
  transition: 0.3s;
}
.cta2.pc_only .wrap .t_btn:hover {
  opacity: 0.8;
}
.cta2.pc_only .wrap .t_btn a {
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 850px) {
  .cta2.pc_only .wrap .t_btn a {
    padding: 32px 0;
    gap: 14px;
  }
}
@media (max-width: 480px) {
  .cta2.pc_only .wrap .t_btn a {
    gap: 10px;
  }
}
.cta2.pc_only .wrap .t_btn a .pic {
  width: 36px;
}
@media (max-width: 850px) {
  .cta2.pc_only .wrap .t_btn a .pic {
    width: 24px;
  }
}
@media (max-width: 480px) {
  .cta2.pc_only .wrap .t_btn a .pic {
    width: 22px;
  }
}
.cta2.pc_only .wrap .t_btn a .pic img {
  width: 100%;
}
.cta2.pc_only .wrap .t_btn a .txt {
  font-size: 26px;
  color: #fff;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Meiryo", "メイリオ", sans-serif;
}
@media (max-width: 600px) {
  .cta2.pc_only .wrap .t_btn a .txt {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .cta2.pc_only .wrap .t_btn a .txt {
    font-size: 20px;
  }
}

.cta2.sp_only {
  display: none;
}
@media (max-width: 850px) {
  .cta2.sp_only {
    display: block !important;
  }
}
@media (max-width: 480px) {
  .cta2.sp_only {
    display: none !important;
  }
}
.cta2.sp_only .inner {
  width: 1088px;
  margin: 0 auto;
}
@media (max-width: 1160px) {
  .cta2.sp_only .inner {
    width: calc(100% - 60px);
  }
}
@media (max-width: 850px) {
  .cta2.sp_only .inner {
    display: none;
  }
}
@media (max-width: 480px) {
  .cta2.sp_only .inner {
    width: calc(100% - 30px);
  }
}
.cta2.sp_only .inner .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
  margin-bottom: 12px;
}
.cta2.sp_only .inner .wrap .p_btn {
  background: #669bbf;
  width: 100%;
  transition: 0.3s;
}
.cta2.sp_only .inner .wrap .p_btn:hover {
  opacity: 0.8;
}
.cta2.sp_only .inner .wrap .p_btn a {
  padding: 50px 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 850px) {
  .cta2.sp_only .inner .wrap .p_btn a {
    padding: 32px 0;
    gap: 14px;
  }
}
@media (max-width: 480px) {
  .cta2.sp_only .inner .wrap .p_btn a {
    gap: 10px;
  }
}
.cta2.sp_only .inner .wrap .p_btn a .pic {
  width: 50px;
}
@media (max-width: 850px) {
  .cta2.sp_only .inner .wrap .p_btn a .pic {
    width: 35px;
  }
}
@media (max-width: 480px) {
  .cta2.sp_only .inner .wrap .p_btn a .pic {
    width: 24px;
  }
}
.cta2.sp_only .inner .wrap .p_btn a .pic img {
  width: 100%;
}
.cta2.sp_only .inner .wrap .p_btn a .txt {
  font-size: 26px;
  color: #fff;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Meiryo", "メイリオ", sans-serif;
}
@media (max-width: 600px) {
  .cta2.sp_only .inner .wrap .p_btn a .txt {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .cta2.sp_only .inner .wrap .p_btn a .txt {
    font-size: 16px;
  }
}
.cta2.sp_only .inner .wrap .c_btn {
  background: #3872a8;
  width: 100%;
  transition: 0.3s;
}
.cta2.sp_only .inner .wrap .c_btn:hover {
  opacity: 0.8;
}
.cta2.sp_only .inner .wrap .c_btn a {
  padding: 53.6px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 850px) {
  .cta2.sp_only .inner .wrap .c_btn a {
    padding: 32px 0;
    gap: 14px;
  }
}
@media (max-width: 480px) {
  .cta2.sp_only .inner .wrap .c_btn a {
    gap: 10px;
  }
}
.cta2.sp_only .inner .wrap .c_btn a .pic {
  width: 48px;
}
@media (max-width: 850px) {
  .cta2.sp_only .inner .wrap .c_btn a .pic {
    width: 32px;
  }
}
@media (max-width: 480px) {
  .cta2.sp_only .inner .wrap .c_btn a .pic {
    width: 24px;
  }
}
.cta2.sp_only .inner .wrap .c_btn a .pic img {
  width: 100%;
}
.cta2.sp_only .inner .wrap .c_btn a .txt {
  font-size: 26px;
  color: #fff;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Meiryo", "メイリオ", sans-serif;
}
@media (max-width: 600px) {
  .cta2.sp_only .inner .wrap .c_btn a .txt {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .cta2.sp_only .inner .wrap .c_btn a .txt {
    font-size: 16px;
  }
}
.cta2.sp_only .inner .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 12px;
}
.cta2.sp_only .inner .wrap .t_btn {
  background: #004879;
  width: 100%;
  transition: 0.3s;
}
.cta2.sp_only .inner .wrap .t_btn:hover {
  opacity: 0.8;
}
.cta2.sp_only .inner .wrap .t_btn a {
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 850px) {
  .cta2.sp_only .inner .wrap .t_btn a {
    padding: 32px 0;
    gap: 14px;
  }
}
@media (max-width: 480px) {
  .cta2.sp_only .inner .wrap .t_btn a {
    gap: 10px;
  }
}
.cta2.sp_only .inner .wrap .t_btn a .pic {
  width: 36px;
}
@media (max-width: 850px) {
  .cta2.sp_only .inner .wrap .t_btn a .pic {
    width: 24px;
  }
}
@media (max-width: 480px) {
  .cta2.sp_only .inner .wrap .t_btn a .pic {
    width: 22px;
  }
}
.cta2.sp_only .inner .wrap .t_btn a .pic img {
  width: 100%;
}
.cta2.sp_only .inner .wrap .t_btn a .txt {
  font-size: 26px;
  color: #fff;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Meiryo", "メイリオ", sans-serif;
}
@media (max-width: 600px) {
  .cta2.sp_only .inner .wrap .t_btn a .txt {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .cta2.sp_only .inner .wrap .t_btn a .txt {
    font-size: 16px;
  }
}
.cta2.sp_only .inner .wrap .i_btn {
  background: #002044;
  width: 100%;
  transition: 0.3s;
}
.cta2.sp_only .inner .wrap .i_btn:hover {
  opacity: 0.8;
}
.cta2.sp_only .inner .wrap .i_btn a {
  padding: 50px 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}
@media (max-width: 850px) {
  .cta2.sp_only .inner .wrap .i_btn a {
    padding: 32px 0;
    gap: 14px;
  }
}
@media (max-width: 480px) {
  .cta2.sp_only .inner .wrap .i_btn a {
    gap: 10px;
  }
}
.cta2.sp_only .inner .wrap .i_btn a .pic {
  width: 36px;
}
@media (max-width: 850px) {
  .cta2.sp_only .inner .wrap .i_btn a .pic {
    width: 24px;
  }
}
@media (max-width: 480px) {
  .cta2.sp_only .inner .wrap .i_btn a .pic {
    width: 22px;
  }
}
.cta2.sp_only .inner .wrap .i_btn a .pic img {
  width: 100%;
}
.cta2.sp_only .inner .wrap .i_btn a .txt {
  font-size: 26px;
  color: #fff;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Meiryo", "メイリオ", sans-serif;
}
@media (max-width: 600px) {
  .cta2.sp_only .inner .wrap .i_btn a .txt {
    font-size: 24px;
  }
}
@media (max-width: 480px) {
  .cta2.sp_only .inner .wrap .i_btn a .txt {
    font-size: 16px;
  }
}

/*----------------
ftr_main
----------------*/
.ftr_main {
  padding: 64px 0 74px;
}
@media (max-width: 850px) {
  .ftr_main {
    padding: 48px 0 200px;
  }
}
.ftr_main .inner {
  width: 1088px;
  margin: 0 auto;
}
@media (max-width: 1160px) {
  .ftr_main .inner {
    width: calc(100% - 60px);
  }
}
@media (max-width: 480px) {
  .ftr_main .inner {
    width: calc(100% - 30px);
  }
}
.ftr_main .inner .wrap {
  display: flex;
  gap: 64px;
}
@media (max-width: 1024px) {
  .ftr_main .inner .wrap .left_con {
    margin: 0 auto;
  }
}
.ftr_main .inner .wrap .left_con .logo {
  width: 490px;
  margin-bottom: 30px;
}
@media (max-width: 1160px) {
  .ftr_main .inner .wrap .left_con .logo {
    width: 420px;
    margin-bottom: 24px;
  }
}
@media (max-width: 850px) {
  .ftr_main .inner .wrap .left_con .logo {
    width: 380px;
    margin: 0 auto;
    margin-bottom: 20px;
  }
}
@media (max-width: 850px) {
  .ftr_main .inner .wrap .left_con .logo {
    width: 300px;
  }
}
.ftr_main .inner .wrap .left_con .logo img {
  width: 100%;
}
.ftr_main .inner .wrap .left_con .con {
  padding-left: 96px;
}
@media (max-width: 850px) {
  .ftr_main .inner .wrap .left_con .con {
    padding: 0;
  }
}
.ftr_main .inner .wrap .left_con .con .c_txt {
  position: relative;
  width: 340px;
  font-size: 14px;
  margin-bottom: 14px;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Meiryo", "メイリオ", sans-serif;
}
@media (max-width: 850px) {
  .ftr_main .inner .wrap .left_con .con .c_txt {
    margin: 0 auto;
    margin-bottom: 12px;
  }
}
@media (max-width: 480px) {
  .ftr_main .inner .wrap .left_con .con .c_txt {
    font-size: 12px;
    margin-bottom: 10px;
    width: 300px;
    text-align: center;
  }
}
.ftr_main .inner .wrap .left_con .con .c_txt:after {
  position: absolute;
  top: 0;
  right: -12px;
  background-image: url(../img/heart.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  width: 11px;
  height: 11px;
  content: "";
  transform: rotate 5deg;
}
.ftr_main .inner .wrap .left_con .con .c_txt span {
  font-size: 20px;
  font-weight: bold;
  font-family: "Yu Gothic", "YuGothic", "游ゴシック", "Meiryo", "メイリオ", sans-serif;
  color: #595757;
}
@media (max-width: 480px) {
  .ftr_main .inner .wrap .left_con .con .c_txt span {
    font-size: 16px;
  }
}
.ftr_main .inner .wrap .left_con .con .a_txt {
  font-size: 14px;
  margin-bottom: 24px;
  line-height: 1.65;
}
@media (max-width: 850px) {
  .ftr_main .inner .wrap .left_con .con .a_txt {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .ftr_main .inner .wrap .left_con .con .a_txt {
    font-size: 12px;
  }
}
.ftr_main .inner .wrap .left_con .con .copyright {
  font-size: 12px;
}
@media (max-width: 850px) {
  .ftr_main .inner .wrap .left_con .con .copyright {
    text-align: center;
  }
}
@media (max-width: 480px) {
  .ftr_main .inner .wrap .left_con .con .copyright {
    font-size: 10px;
  }
}
.ftr_main .inner .wrap .right_con {
  padding-left: 64px;
  position: relative;
}
@media (max-width: 1024px) {
  .ftr_main .inner .wrap .right_con {
    display: none;
  }
}
.ftr_main .inner .wrap .right_con:before {
  position: absolute;
  left: 0;
  width: 1px;
  height: 100%;
  content: "";
  background: #333;
}
.ftr_main .inner .wrap .right_con nav ul {
  display: flex;
  gap: 24px;
}
.ftr_main .inner .wrap .right_con nav ul li {
  width: 180px;
  margin-bottom: 24px;
}
.ftr_main .inner .wrap .right_con nav ul li:last-of-type {
  margin-bottom: 0;
}
.ftr_main .inner .wrap .right_con nav li {
  width: 180px;
  margin-bottom: 24px;
}
.ftr_main .inner .wrap .right_con nav li:last-of-type {
  margin-bottom: 0;
}

.fadeIn {
  -webkit-animation-name: fadeInAnime;
          animation-name: fadeInAnime;
  -webkit-animation-duration: 3.5s;
          animation-duration: 3.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes fadeInAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
          animation-name: fadeUpAnime;
  -webkit-animation-duration: 2.5s;
          animation-duration: 2.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  opacity: 0;
}

@-webkit-keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeUpAnime {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
#sb_instagram .sbi_photo img {
  width: 100%;
  height: 100% !important;
  -o-object-fit: cover;
     object-fit: cover;
}/*# sourceMappingURL=common.css.map */