@charset "utf-8";


/* ---------------------------------------------------------
 * common
** --------------------------------------------------------- */
body { 
  position: relative;
  width: 100%;
  margin: 0;
  color: #000;
  font-size: 15px;
  line-height: 1.6;
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  text-align: justify;
/*  letter-spacing: 1px;*/
}
:root {
  --vw: 1vw;
}
@media (max-width: 959px) {
}
@media (max-width: 519px) {
}


/* --------------- .wrapper --------------- */
.wrapper {
  /*position: relative;*/
  /*z-index: 1;*/
  max-width: 1240px;
  width: 100%;
  padding: 0 20px;
  margin: 0 auto;
}
.wrapper.col2 {
  display: flex;
  justify-content: space-between;
  padding-top: 60px;
}
.wrapper.col2 > .main {
  max-width: calc(100% - 260px);
  width: 900px;
  padding-top: 40px;
}
.wrapper.col2 > .sidebar {
  flex-shrink: 0;
  width: 240px;
  padding-top: 20px;
  padding-bottom: 20px;
}
@media (max-width: 959px) {
  .wrapper.col2 {
    display: block;
    padding-top: 0;
  }
  .wrapper.col2 > .main {
    max-width: 100%;
  }
  .wrapper.col2 > .sidebar {
    width: 100%;
    margin-top: 100px;
    margin-left: 0;
  }
}
@media (max-width: 519px) {
  .wrapper.col2 > .sidebar {
    width: calc(100% - 40px);
    margin-top: 80px;
    margin-left: 20px;
    padding-left: 25px;
    padding-right: 25px;
    background-color: #fff;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
    border-radius: 20px;
  }
}
/* sidebar contents */
.sidebar .btn_area {
  padding-left: 30px;
  padding-right: 11px;
}
.sidebar .btn_area .btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sidebar .link_list {
  background-color: #fff;
  border-radius: 20px;
}
.sidebar .link_list li {
}
.sidebar .link_list a {
  position: relative;
  display: block;
}
.sidebar .link_list a.selected {
  pointer-events: none;
}
.sidebar .link_list a::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 3px;
  display: block;
  width: 7px;
  height: 7px;
  margin-top: auto;
  margin-bottom: auto;
  background-color: #cb1927;
  border-radius: 10px;
  transition: all ease 0.2s;
}
.sidebar .link_list a:hover::before {
  right: 0;
  width: 12px;
  height: 12px;
}
.sidebar .link_list a.selected::before {
  background-color: #9da6ad;
}
@media (max-width: 959px) {
  .sidebar .btn_area {
    padding-left: 15px;
    padding-right: 0;
  }
}
@media (max-width: 519px) {
  .sidebar .btn_area .btn span::before {
    background-color: #f6f6f6;
  }
}


/* --------------- .ff_oswald --------------- */
.ff_oswald {
/*  font-family: 'Oswald', sans-serif;*/
/*  letter-spacing: 1px;*/
  font-family: 'Akshar', sans-serif;
}


/* --------------- .btn --------------- */
.btn {
  display: inline-block;
  outline: none;
  color: #015290;
  font-size: 18px;
  font-weight: bold;
/*  transition: all ease 0.3s;*/
}
.btn.disabled {
  color: #c4c4c4;
  pointer-events: none;
}
.btn span {
  position: relative;
  z-index: 1;
  isolation: isolate;
  display: inline-block;
  width: 45px;
  height: 45px;
  margin-left: 20px;
  margin-bottom: 3px;
  background-color: #015290;
  border-radius: 100px;
  vertical-align: middle;
}
.btn.prev span {
  margin-left: 0;
  margin-right: 20px;
}
.btn.disabled span {
  background-color: #c4c4c4;
}
.btn span::before,
.btn span::after {
  content: "";
  display: block;
  transform-origin: center;
  transition: all ease 0.3s;
}
.btn span::before {
  width: calc(100% + 2px);
  height: calc(100% + 2px);
  margin-left: -1px;
  margin-top: -1px;
  background-color: #fff;
  border-radius: 100px;
  transform: scale(0.15);
}
.btn span::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 3px;
  margin: auto;
  width: 10px;
  height: 10px;
  border-top: 1px solid #015290;
  border-right: 1px solid #015290;
  opacity: 0;
  transform: rotate(45deg) scale(0.15);
}
.btn.prev span::after {
  right: 0;
  left: 3px;
  transform: rotate(-135deg) scale(0.15);
}
.btn:hover span::before {
  transform: scale(1);
}
.btn:hover span::after {
  opacity: 1;
  transform: rotate(45deg) scale(1);
}
.btn.prev:hover span::after {
  transform: rotate(-135deg) scale(1);
}
.btn.hg span::before {
  background-color: #f6f6f6;
}
.btn.w {
  color: #fff;
}
.btn.w span {
/*  background-color: transparent;*/
}
.btn.w span::before {
  background-color: #fff;
}
.btn.red span {
  background-color: transparent;
}
.btn.red span::before {
  background-color: #cb1927;
}
.btn.red span::after {
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
}
@media (max-width: 959px) {
}
@media (max-width: 519px) {
  .btn {
    font-size: 16px;
  }
  .btn span::before {
    transform: scale(1);
  }
  .btn span::after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
  }
  .btn.prev span::after {
    transform: rotate(-135deg) scale(1);
  }
}


/* --------------- .tbl --------------- */
.tbl {
  width: 100%;
}
.tbl th,
.tbl td {
  padding: 20px 10px;
  border-bottom: 1px solid #ddd;
}
.tbl th {
  padding-left: 20px;
  vertical-align: middle;
}
.tbl td {
  padding-right: 20px;
}
@media (max-width: 519px) {
  .tbl th,
  .tbl td {
    display: block;
    padding: 20px 0;
  }
  .tbl th {
    padding-bottom: 0;
    margin-bottom: 5px;
    border-bottom: none;
  }
  .tbl td {
    padding-top: 0;
  }
}


/* --------------- .ul .ol --------------- */
.ol,
.ul {
  color: #015290;
}
.ol {
  list-style-type: decimal;
}
.ul {
  list-style-type: disc;
}
.ul li,
.ol li {
  margin-left: 15px;
  line-height: 2;
}
.ul li span,
.ol li span {
  color: #000;
}




/* ---------------------------------------------------------
 * header
** --------------------------------------------------------- */
#header {
  position: relative;
  z-index: 2000;
  width: 100%;
  background-color: #fff;
}
.h_inner {
  position: relative;
  display: flex;
  justify-content: space-between;
  max-width: 1700px;
  padding: 0 20px;
  margin-left: auto;
  margin-right: auto;
}
.h_logo {
  padding: 20px 0;
}
.h_logo span {
  display: block;
  font-size: 13px;
  text-align-last: justify;
}
.h_logo span br {
  display: none;
}
.h_logo a {
}
.h_logo img {
  margin-top: 10px;
}
@media (max-width: 599px) {
  .h_logo {
    padding: 15px 0;
  }
  .h_logo span {
    font-size: 12px;
    text-align-last: initial;
    line-height: 1.2;
  }
  .h_logo span br {
    display: block;
  }
  .h_logo img {
    margin-top: 5px;
    width: 190px;
  }
}
@media (max-width: 519px) {
  .h_logo {
    padding: 10px 0;
  }
}
@media (max-width: 399px) {
  .h_logo img {
    width: calc(8.125rem + ((1vw - 3.2px) * 75));
  }
}
.h_nav {
  display: flex;
  justify-content: center;
}
@media (min-width: 1100px) {
  .h_nav .gnavi {
    display: flex;
    height: 100%;
  }
  .h_nav .gnavi > ul {
    display: flex;
    height: 100%;
  }
  .h_nav .gnavi > ul > li {
    height: 100%;
  }
  .h_nav .gnavi > ul > li > a {
    transition: all ease 0.3s;
  }
  .h_nav .gnavi > ul > li > a.selected,
  .h_nav .gnavi > ul > li > a:hover {
    color: #015290;
  }
  .h_nav .gnavi .megamenu > a {
    position: relative;
  }
  .h_nav .gnavi .megamenu > a.sp_nav_item {
    display: none;
  }
  .h_nav .gnavi .megamenu > a::before,
  .h_nav .gnavi .megamenu > a::after {
    content: "";
    position: absolute;
    bottom: 25px;
    display: block;
    width: 5px;
    height: 1px;
    background-color: #015290;
    transition: all ease 0.3s;
  }
  .h_nav .gnavi .megamenu > a::before {
    left: 50%;
    transform: skewY(-45deg);
  }
  .h_nav .gnavi .megamenu > a::after {
    right: 50%;
    transform: skewY(45deg);
  }
  .h_nav .gnavi .megamenu:hover > a::before {
    transform: skewY(45deg);
  }
  .h_nav .gnavi .megamenu:hover > a::after {
    transform: skewY(-45deg);
  }
  .h_nav .gnavi > ul > li > a {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    padding: 0 25px;
    line-height: 1;
    font-weight: bold;
  }
  .h_nav .gnavi ul ul {
    position: absolute;
    top: 100%;
    left: calc(calc(calc(100 * var(--vw)) - 100%) / -2);
    align-items: center;
    display: flex;
    width: calc(100 * var(--vw));
    padding: 10px 0 10px calc(calc(calc(100 * var(--vw)) - 100%) / 2);
    background-color: #015290;
    overflow: hidden;
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: all ease 0.3s;
  }
  h1 + .h_nav .gnavi ul ul {
    left: 20px;
    right: 20px;
    width: calc(100% - 40px);
    padding: 10px 0;
    border-radius: 30px 30px 0 0;
  }
  .h_nav .gnavi .megamenu:hover ul {
    opacity: 1;
    pointer-events: initial;
  }
  .h_nav .gnavi ul ul li {
    font-weight: bold;
  }
  .h_nav .gnavi ul ul li a {
    position: relative;
    display: block;
    padding: 5px 30px 5px 50px;
  }
  .h_nav .gnavi ul ul li:first-child a {
    padding: 10px 60px;
    margin-right: 30px;
    border-right: 1px solid #fff;
    font-size: 18px;
  }
  .h_nav .gnavi ul ul li a::before {
    content: "";
    position: absolute;
    left: 30px;
    top: 0;
    bottom: 0;
    display: block;
    width: 10px;
    height: 10px;
    margin-top: auto;
    margin-bottom: auto;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
    transition: all ease 0.3s;
  }
  .h_nav .gnavi ul ul li a span {
    background-image: linear-gradient(to top, #fff 1px, transparent 1px);
    background-repeat: no-repeat;
    background-size: 0% 100%;
    background-position: right bottom;
    line-height: 1.5;
    transition: background-size ease 0.3s;
  }
  .h_nav .gnavi ul ul li a:hover span {
    background-size: 100% 100%;
    background-position: left bottom;
  }
}
@media (max-width: 1339px) and (min-width: 1100px) {
  .h_nav .gnavi > ul > li > a {
    padding: 0 20px;
  }
  .h_nav .gnavi ul ul li a {
    padding: 5px 25px 5px 45px;
  }
  .h_nav .gnavi ul ul li:first-child a {
    padding: 10px 40px;
    margin-right: 15px;
    font-size: 17px;
  }
  .h_nav .gnavi ul ul li a::before {
    left: 20px;
  }
}
@media (max-width: 1199px) and (min-width: 1100px) {
  .h_nav .gnavi > ul > li > a {
    padding: 0 15px;
  }
}
@media (max-width: 1179px) and (min-width: 1100px) {
  .h_nav .gnavi ul ul li a {
    padding: 5px 25px 5px 30px;
    font-size: 14px;
  }
  .h_nav .gnavi ul ul li a::before {
    left: 10px;
  }
}
@media (max-width: 1149px) and (min-width: 1100px) {
  .h_nav .gnavi > ul > li > a {
    padding: 0 10px;
  }
  .h_nav .gnavi ul ul li::before {
    left: 0px;
  }
  .h_nav .gnavi ul ul li:first-child::before {
    left: 10px;
  }
}
@media (max-width: 1099px) {
  .h_nav .gnavi {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    width: calc(100% - calc(84px * 2));
    height: calc(calc(100vh - 100%) - 20px);
    margin-left: auto;
    margin-right: auto;
    padding: 35px;
    background-color: #015290;
    border-radius: 20px;
    overflow: auto;
    color: #fff;
    opacity: 0;
    pointer-events: none;
    transition: all ease 0.3s;
  }
  .h_nav .gnavi.active {
    opacity: 1;
    pointer-events: initial;
  }
  .h_nav .gnavi > ul {
  }
  .h_nav .gnavi a {
    display: block;
    padding: 10px 0;
  }
  .h_nav .gnavi > ul > li {
    border-bottom: 1px solid #fff;
  }
  .h_nav .gnavi .megamenu > a {
    position: relative;
  }
  .h_nav .gnavi .megamenu > a.pc_nav_item {
    display: none;
  }
  .h_nav .gnavi .megamenu > a::before,
  .h_nav .gnavi .megamenu > a::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    display: block;
    width: 5px;
    height: 1px;
    margin-top: auto;
    margin-bottom: auto;
    background-color: #fff;
    transition: all ease 0.3s;
  }
  .h_nav .gnavi .megamenu > a::before {
    right: 15px;
    transform: skewY(-45deg);
  }
  .h_nav .gnavi .megamenu > a::after {
    right: 20px;
    transform: skewY(45deg);
  }
  .h_nav .gnavi .megamenu > a.open::before {
    transform: skewY(45deg);
  }
  .h_nav .gnavi .megamenu > a.open::after {
    transform: skewY(-45deg);
  }
  .h_nav .gnavi .megamenu > a.sp_nav_item + ul {
    max-height: 0px;
    padding-left: 20px;
    overflow: hidden;
    transition: all ease 0.3s;
  }
  .h_nav .gnavi .megamenu > a.open + ul {
    max-height: var(--max-height);
    padding-top: 3px;
    padding-bottom: 3px;
    border-top: 1px solid #5885a8;
  }
  .h_nav .gnavi .megamenu > a.open + ul a {
    position: relative;
    display: block;
    padding: 3px 0;
  }
  .h_nav .gnavi .megamenu > a.open + ul a::before {
    content: '';
    position: absolute;
    top: 17px;
    left: -15px;
    display: block;
    width: 7px;
    height: 1px;
    background-color: #5885a8;
  }
  .h_nav .gnavi .megamenu br {
    display: none;
  }
}
@media (max-width: 959px) {
}
@media (max-width: 519px) {
  .h_nav .gnavi {
    width: calc(100% - calc(20px * 2));
  }
}
@media (max-width: 439px) {
}
@media (max-width: 359px) {
  .h_nav .gnavi {
    padding: 20px;
  }
}
.h_nav .tel {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin: 0 20px 0 10px;
}
.h_nav .tel a {
  font-size: 24px;
  font-weight: bold;
}
.h_nav .tel a img {
  margin: -3px 8px 0 0;
  vertical-align: middle;
}
.h_nav .tel div {
  font-size: 12px;
}
.h_nav .tel div br {
  display: none;
}
.h_nav .contact {
  display: flex;
  justify-content: center;
  align-items: center;
}
.h_nav .contact a {
  display: block;
  padding: 15px 30px;
  background-color: #015290;
  border-radius: 100px;
  color: #fff;
  font-weight: bold;
}
.h_nav .contact a:hover {
  background-color: #f6f6f6;
  color: #015290;
  transition: all ease 0.3s;
}
.h_nav .contact a svg {
  height: 17px;
  margin: -3px 8px 0 0;
  vertical-align: middle;
}
.h_nav .contact a svg path {
  fill: #fff;
  stroke: #fff;
  transition: all ease 0.3s;
}
.h_nav .contact a svg .cls-1 {
  stroke: #fff;
  transition: all ease 0.3s;
}
.h_nav .contact a:hover svg path {
  fill: #015290;
  stroke: #015290;
}
.h_nav .contact a:hover svg .cls-1 {
  stroke: #015290;
}
@media (max-width: 1339px) {
  .h_nav .tel {
    margin: 0 10px 0 5px;
  }
  .h_nav .tel a {
    font-size: 22px;
    letter-spacing: 0;
  }
  .h_nav .contact a {
    padding: 10px 15px;
    font-size: 13px;
  }
}
@media (max-width: 959px) {
}
@media (max-width: 699px) {
  .h_nav .tel a {
    font-size: 18px;
  }
  .h_nav .tel div {
    text-align: center;
  }
  .h_nav .tel div br {
    display: block;
  }
  .h_nav .contact a {
    padding: 15px 10px;
    font-size: 10px;
    border-radius: 6px;
    line-height: 1;
  }
  .h_nav .contact a svg {
    display: block;
    margin: 0 auto 9px;
  }
}
@media (max-width: 519px) {
  .h_nav .tel {
    display: none;
  }
  .h_nav .sp_tel {
    margin-top: 30px;
    padding: 20px 10px;
    background-color: #fff;
    color: #015290;
    text-align: center;
  }
  .h_nav .sp_tel .ttl {
    font-size: 18px;
    font-weight: bold;
  }
  .h_nav .sp_tel .num {
    padding: 0;
    font-size: 40px;
    font-weight: bold;
  }
  .h_nav .sp_tel .num img {
    margin-top: -10px;
    margin-right: 10px;
    vertical-align: middle;
  }
  .h_nav .sp_tel .reception {
  }
  .h_nav .sp_tel .reception br {
    display: none;
  }
}
@media (max-width: 459px) {
  .h_nav .sp_tel .ttl {
    font-size: 16px;
  }
  .h_nav .sp_tel .num {
    font-size: 30px;
  }
  .h_nav .sp_tel .num img {
    margin-top: -7px;
    margin-right: 6px;
  }
  .h_nav .sp_tel .reception {
    line-height: 1.4;
  }
  .h_nav .sp_tel .reception br {
    display: inline;
  }
}
@media (max-width: 359px) {
  .h_nav .sp_tel .num {
    font-size: 26px;
  }
}


/* gnavi_btn */
.gnavi_btn {
  align-items: center;
  align-self: center;
  display: none;
  margin-left: 20px;
  padding: 15px 10px;
  transition: all 0.4s ease;
}
.gnavi_btn.open {
  background: rgba(0, 0, 0, 0);
}
.menu-trigger,
.menu-trigger span {
  display: inline-block;
  transition: all 0.3s ease;
  box-sizing: border-box;
}
.menu-trigger {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 34px;
  height: 24px;
}
.menu-trigger span {
  position: relative;
  width: 100%;
  height: 2px;
  background-color: #000;
}
.gnavi_btn .menu-trigger span:nth-of-type(1) {
  top: 0%;
}
.gnavi_btn .menu-trigger span:nth-of-type(3) {
  bottom: 0%;
}
.gnavi_btn.open .menu-trigger span:nth-of-type(1) {
  top: 50%;
  transform-origin: center;
  transform: translateY(-50%) rotate(-45deg);
}
.gnavi_btn.open .menu-trigger span:nth-of-type(2) {
  opacity: 0;
}
.gnavi_btn.open .menu-trigger span:nth-of-type(3) {
  bottom: 50%;
  transform-origin: center;
  transform: translateY(50%) rotate(45deg);
}
@media (max-width: 1099px) {
  .gnavi_btn {
    display: flex;
  }
}
@media (max-width: 699px) {
  .gnavi_btn {
    margin-left: 10px;
    margin-right: -10px;
  }
}




/* ---------------------------------------------------------
 * Common contents parts
** --------------------------------------------------------- */
/* --------------- .lower_fv --------------- */
.lower_fv {
  position: relative;
  margin-bottom: -100px;
}
.lower_fv .wrapper {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  height: 422px;
  padding-bottom: 50px;
}
.lower_fv .breadcrumb {
  position: absolute;
  top: 30px;
  left: 20px;
}
.lower_fv .breadcrumb ul {
  display: flex;
}
.lower_fv .breadcrumb li {
  flex-shrink: 0;
  color: #015290;
  font-size: 14px;
}
.lower_fv .breadcrumb li:not(:last-child) {
  position: relative;
  padding-right: 40px;
}
.lower_fv .breadcrumb li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  display: block;
  width: 7px;
  height: 7px;
  margin-top: auto;
  margin-bottom: auto;
  border-top: 1px solid #728390;
  border-right: 1px solid #728390;
  transform: rotate(45deg);
}
.lower_fv .breadcrumb li:last-child {
  flex-shrink: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  text-shadow:
     1px  1px 0px #fff,
    -1px  1px 0px #fff,
     1px -1px 0px #fff,
    -1px -1px 0px #fff,
     1px  0px 0px #fff,
     0px  1px 0px #fff,
    -1px  0px 0px #fff,
     0px -1px 0px #fff;
}
.lower_fv .breadcrumb li a {
  color: #010101;
}
@media (max-width: 959px) {
  .lower_fv .wrapper {
    margin-top: 40px;
  }
  .lower_fv .breadcrumb {
    top: -30px;
    width: calc(100% - 40px);
  }
}
@media (max-width: 519px) {
}
.lower_fv .ttl {
}
.lower_fv .ttl .parent_ttl {
  font-size: 17px;
  font-weight: bold;
  text-shadow:
     1px  1px 0px rgba(255,255,255,0.8),
    -1px  1px 0px rgba(255,255,255,0.8),
     1px -1px 0px rgba(255,255,255,0.8),
    -1px -1px 0px rgba(255,255,255,0.8),
     1px  0px 0px rgba(255,255,255,0.8),
     0px  1px 0px rgba(255,255,255,0.8),
    -1px  0px 0px rgba(255,255,255,0.8),
     0px -1px 0px rgba(255,255,255,0.8);
}
.lower_fv .ttl h1,
.lower_fv .ttl .h1 {
  color: #0063af;
  font-size: 52px;
  font-weight: bold;
  text-shadow:
     1px  1px 0px rgba(255,255,255,0.8),
    -1px  1px 0px rgba(255,255,255,0.8),
     1px -1px 0px rgba(255,255,255,0.8),
    -1px -1px 0px rgba(255,255,255,0.8),
     1px  0px 0px rgba(255,255,255,0.8),
     0px  1px 0px rgba(255,255,255,0.8),
    -1px  0px 0px rgba(255,255,255,0.8),
     0px -1px 0px rgba(255,255,255,0.8);
}
.lower_fv .fv_img {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: calc(90000vw / 1500);
}
.lower_fv .fv_img img {
  width: 100%;
  max-height: 422px;
  min-height: 270px;
  object-fit: cover;
  object-position: center;
  border-radius: 30px 0 0 30px;
}
@media (max-width: 1499px) {
  .lower_fv {
    margin-bottom: calc(-3.125rem + ((1vw - 9.6px) * -9.2593));
  }
  .lower_fv .wrapper {
    height: calc(16.875rem + ((1vw - 9.6px) * 28.1481));
  }
  .lower_fv .ttl h1,
  .lower_fv .ttl .h1 {
    font-size: calc(2rem + ((1vw - 9.6px) * 3.7037));;
  }
}
@media (max-width: 959px) {
  .lower_fv {
    margin-bottom: -50px;
  }
  .lower_fv .wrapper {
    height: calc(13.125rem + ((1vw - 5.2px) * 13.6364));
  }
  .lower_fv .ttl h1,
  .lower_fv .ttl .h1 {
    font-size: 32px;
  }
  .lower_fv .fv_img {
    width: calc(26.875rem + ((1vw - 5.2px) * 33.1818));
  }
  .lower_fv .fv_img img {
    max-height: initial;
    min-height: initial;
    height: calc(13.125rem + ((1vw - 5.2px) * 13.6364));
  }
}
@media (max-width: 519px) {
  .lower_fv {
/*    margin-bottom: 0;*/
  }
  .lower_fv .wrapper {
    height: 210px;
    padding-bottom: 0;
  }
  .lower_fv .fv_img {
    width: calc(71000% / 860);
  }
  .lower_fv .fv_img img {
    height: 210px;
  }
}


/* --------------- .lower_contents_wrapper --------------- */
.lower_contents_wrapper {
  padding-top: 100px;
  background-image: linear-gradient(to bottom, #f4f4f4 700px, #fff 700px);
}
@media (max-width: 1499px) {
  .lower_contents_wrapper {
    padding-top: calc(3.125rem + ((1vw - 9.6px) * 9.2593));
    background-image: linear-gradient(to bottom, #f4f4f4 calc(25rem + ((1vw - 5.2px) * 30.6122)), #fff calc(25rem + ((1vw - 5.2px) * 30.6122)));
  }
}
@media (max-width: 959px) {
  .lower_contents_wrapper {
    padding-top: 50px;
  }
}


/* --------------- .lower_h2 --------------- */
.lower_h2 {
  color: #015290;
  font-size: 32px;
  text-align: center;
  font-weight: bold;
}
.lower_h2.l {
  font-size: 38px;
}
.lower_h2.no_en {
  line-height: 1.8;
}
.lower_h2 span {
  font-size: 20px;
  font-weight: normal;
}
@media (max-width: 959px) {
  .lower_h2 {
    font-size: 26px;
  }
  .lower_h2.l {
    font-size: 30px;
  }
  .lower_h2 span {
    font-size: 18px;
  }
}
@media (max-width: 519px) {
  .lower_h2 {
    font-size: 22px;
  }
  .lower_h2.l {
    font-size: 24px;
  }
  .lower_h2 span {
    font-size: 15px;
  }
}


/* --------------- .text_list --------------- */
.text_list {
  margin-top: 30px;
  padding: 30px 60px;
  background-color: #fff;
  border-radius: 20px;
}
.text_list > div {
  border-bottom: 1px solid #ddd;
}
.text_list a {
  position: relative;
  display: flex;
  height: 66px;
  padding-right: 30px;
  line-height: 66px;
}
.text_list a::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 20px;
  display: block;
  width: 7px;
  height: 7px;
  margin-top: auto;
  margin-bottom: auto;
  background-color: #cb1927;
  border-radius: 10px;
  transition: all ease 0.2s;
}
.text_list a:hover::after {
  right: 17px;
  width: 12px;
  height: 12px;
}
.text_list .date {
  width: 120px;
  padding-left: 10px;
  color: #999;
}
.text_list .ttl {
}
@media (max-width: 959px) {
  .text_list {
    padding: 20px 40px;
  }
}
@media (max-width: 699px) {
  .text_list a {
    display: block;
    height: auto;
    line-height: 2;
    padding-bottom: 10px;
  }
  .text_list .ttl {
    padding-left: 20px;
  }
}
@media (max-width: 519px) {
  .text_list {
    padding: 10px 20px;
  }
}


/* --------------- .grid_list --------------- */
.grid_list {
  display: flex;
  flex-wrap: wrap;
}
.grid_list > div {
  width: calc(28000% / 900);
  margin-top: 30px;
}
.grid_list > div:not(:nth-child(3n)) {
  margin-right: calc(3000% / 900);
}
.grid_list a {
  font-size: 15px;
  width: 100%;
}
.grid_list .img {
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.grid_list .img::before {
  content: "";
  display: block;
  padding-top: calc(19600% / 280);
}
.grid_list .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all ease 0.3s;
}
.grid_list .date {
  margin-top: 15px;
  color: #999;
}
.grid_list .btn_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 5px;
  color: #000;
  text-align: left;
  line-height: 1.4;
}
.grid_list .btn_area span {
  flex-shrink: 0;
}
@media (max-width: 959px) {
  .grid_list > div {
    width: 48%;
  }
  .grid_list > div:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .grid_list > div:not(:nth-child(2n)) {
    margin-right: 4%;
  }
}
@media (max-width: 519px) {
  .grid_list > div {
    width: 100%;
  }
  .grid_list > div:not(:nth-child(2n)) {
    margin-right: 0;
  }
}


/* --------------- .page_list --------------- */
.page_list {
}
.page_list > div {
  position: relative;
  width: calc(calc(calc(100% - calc(16000% / 1200)) - 2px) / 3);
  margin-top: 60px;
}
.page_list > div:not(:nth-child(3n)) {
  margin-right: calc(calc(8000% / 1200) + 1px);
}
.page_list > div:not(:nth-child(3n))::before {
  content: "";
  position: absolute;
  right: calc(-4000% / 346);
  top: 0;
  display: block;
  width: 1px;
  height: 100%;
  background-color: #ddd;
}
.page_list a {
  display: block;
  color: inherit;
}
.page_list .img {
  position: relative;
  z-index: 1;
  isolation: isolate;
  width: 100%;
  border-radius: 20px;
  overflow: hidden;
}
.page_list .img::before {
  content: "";
  display: block;
/*  padding-top: calc(24200% / 346);*/
  padding-top: calc(30000% / 346);
}
.page_list .img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: all ease 0.3s;
}
.page_list a:hover .img img {
  transform-origin: center;
  transform: scale(1.05);
}
.page_list .date {
  margin-top: 15px;
  color: #999;
  font-size: 15px;
}
.page_list .btn_area {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 20px;
}
.page_list .date + .btn_area {
  margin-top: 5px;
  font-size: 16px;
}
.page_list .btn_area br.nav {
  display: none;
}
.page_list .btn_area span {
  flex-shrink: 0;
}
@media (max-width: 959px) {
}
@media (max-width: 699px) {
  .page_list > div {
    width: calc(calc(calc(100% - calc(8000% / 1200)) - 1px) / 2);
  }
  .page_list > div:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .page_list > div:not(:nth-child(2n)) {
    margin-right: calc(calc(8000% / 1200) + 1px);
  }
  .page_list > div:not(:nth-child(3n))::before {
    display: none;
  }
  .page_list > div:not(:nth-child(2n))::before {
    content: "";
    position: absolute;
    right: calc(-4000% / 520);
    top: 0;
    display: block;
    width: 1px;
    height: 100%;
    background-color: #ddd;
  }
  .page_list .img::before {
    padding-top: calc(55800% / 900);
  }
  .page_list .btn_area {
    margin-top: 14px;
  }
}
@media (max-width: 519px) {
  .page_list .btn_area {
    font-size: 17px;
  }
}
@media (max-width: 459px) {
  .page_list > div {
    width: 100%;
  }
  .page_list > div:not(:nth-child(2n)) {
    margin-right: 0;
  }
  .page_list > div:not(:nth-child(2n))::before {
    display: none;
  }
}


/* --------------- .scroll --------------- */
.scroll {
  position: relative;
  overflow: auto;
  white-space: nowrap;
}
.scroll::before {
  content: "左右にスクロールできます";
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 200px;
  height: 40px;
  margin: auto;
  padding: 5px 10px;
  background-color: rgba(0, 0, 0, 0.3);
  border-radius: 5px;
  color: #fff;
  font-size: 14px;
  opacity: 1;
  transition: all 0.3s ease;
  pointer-events: none;
}
.scroll.scrolled::before {
  opacity: 0;
}


/* --------------- .pagination --------------- */
.pagination {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 35px;
}
.pagination > * {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  margin: 5px;
  border-radius: 100px;
}
.pagination a {
  position: relative;
  background-color: #fff;
  border: 1px solid #e6e6e6;
  color: #015290;
  outline: none;
  transition: all ease 0.3s;
}
.pagination a:hover {
  color: #fff;
  border-color: #015290;
  background-color: #015290;
}
.pagination .disabled {
  background-color: #c4c4c4;
}
.pagination .active {
  color: #fff;
  border: 1px solid #015290;
  background-color: #015290;
}
.pagination .prev,
.pagination .next {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination .prev::before,
.pagination .next::before {
  content: "";
  position: relative;
  display: block;
  width: 9px;
  height: 9px;
  border-top: 1px solid #015290;
  transform-origin: center;
}
.pagination .prev::before {
  left: 2px;
  border-left: 1px solid #015290;
  transform: rotate(-45deg);
}
.pagination .next::before {
  right: 2px;
  border-right: 1px solid #015290;
  transform: rotate(45deg);
}
.pagination .prev.disabled::before,
.pagination .next.disabled::before,
.pagination .prev:hover::before,
.pagination .next:hover::before {
  border-color: #fff;
}
@media (max-width: 959px) {
}
@media (max-width: 519px) {
  .pagination > * {
    width: 40px;
    height: 40px;
  }
}


/* --------------- .not_found --------------- */
/* 記事やイベントが見つからなかった時の表示 */
.not_found {
  margin-top: 50px;
  text-align: center;
  font-size: 32px;
  font-weight: bold;
}
@media (max-width: 959px) {
}
@media (max-width: 519px) {
}


/* --------------- #form_contact --------------- */
#form_contact {
  max-width: 780px;
  margin-left: auto;
  margin-right: auto;
}
#form_contact .lead {
  margin-top: 20px;
  text-align: center;
}
#form_contact .form_content {
  margin-top: 40px;
}
#form_contact .form_item {
}
#form_contact .form_item > label {
  display: block;
  margin-top: 20px;
  font-size: 17px;
  font-weight: bold;
}
#form_contact .form_item_wrapper {
  margin-top: 10px;
}
#form_contact .req {
  display: inline-block;
  margin-left: 10px;
  color: #cb1927;
  font-size: 15px;
}
#form_contact input[type="text"],
#form_contact input[type="email"],
#form_contact textarea {
  width: 100%;
  margin-top: 5px;
  padding: 18px 22px;
  background-color: #f3f4f5;
  border-radius: 10px;
  outline: none;
}
#form_contact ::placeholder {
  color: #ccc;
  opacity: 1;
}
#form_contact input[type="checkbox"] {
  display: none;
}
#form_contact input[type="checkbox"] + span {
  position: relative;
  display: inline-block;
  margin-left: 20px;
  padding-left: 40px;
  cursor: pointer;
}
#form_contact input[type="checkbox"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 25px;
  height: 25px;
  border: 1px solid #999;
}
#form_contact input[type="checkbox"]:checked + span::after {
  content: "";
  position: absolute;
  left: 5px;
  top: 6px;
  display: block;
  width: 15px;
  height: 9px;
  border-left: 2px solid #666;
  border-bottom: 2px solid #666;
  transform: rotate(-45deg);
}
#form_contact input[type="radio"] {
  display: none;
}
#form_contact input[type="radio"] + span {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  cursor: pointer;
}
#form_contact input[type="radio"] + span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  display: block;
  width: 24px;
  height: 24px;
  background-color: #f3f4f5;
  border-radius: 100px;
}
#form_contact input[type="radio"]:checked + span::after {
  content: "";
  position: absolute;
  left: 7px;
  top: 7px;
  display: block;
  width: 10px;
  height: 10px;
  background-color: #015290;
  border-radius: 100px;
}
#form_contact .form_item a {
  color: #0072c9;
  text-decoration: underline;
}
#form_contact .form_item a:hover {
  text-decoration: none;
}
#form_contact .btn_area {
  margin-top: 40px;
  text-align: center;
}
#form_contact .btn_area button {
  display: inline-block;
  width: 240px;
  height: 60px;
  padding: 0;
  background-color: #015290;
  border-radius: 100px;
  color: #fff;
  font-size: 16px;
  font-weight: bold;
  line-height: 60px;
  transition: all ease 0.3s;
}
#form_contact .btn_area button:hover {
  opacity: 0.8;
}
#form_contact .comp {
  margin: 20px 0;
  text-align: center;
}
@media (max-width: 959px) {
}
@media (max-width: 519px) {
  #form_contact .form_item_wrapper > * {
    display: block;
    margin-top: 10px;
  }
  .mw_wp_form .horizontal-item + .horizontal-item {
    margin-left: 0 !important  ;
  }
  #form_contact input[type="checkbox"] + span {
    margin-left: 0;
  }
}




/* ---------------------------------------------------------
 * footer
** --------------------------------------------------------- */
@keyframes marquee {
  from   { transform: translate(0%);}
  to { transform: translate(-50%);}
}
/* --------------- #contact --------------- */
#contact {
  position: relative;
  padding: 100px 130px;
}
#contact .marquee {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  margin-top: auto;
  margin-bottom: auto;
  overflow: hidden;
  pointer-events: none;
}
#contact .marquee p {
  margin: 0;
  display: inline-block;
  font-size: 140px;
  white-space: nowrap;
  animation-name: marquee;
  animation-timing-function: linear;
  animation-duration: 50s;
  animation-iteration-count: infinite;
  color: #e8e8e8;
}
@media (max-width: 1199px) {
  #contact {
    padding: 100px 50px;
  }
}
@media (max-width: 959px) {
}
@media (max-width: 599px) {
  #contact {
    padding: 100px 30px;
  }
}
@media (max-width: 519px) {
  #contact {
    padding-bottom: 150px;
    padding-left: 0;
    padding-right: 0;
  }
  #contact .marquee {
    top: auto;
    bottom: 35px;
    left: 0;
    height: auto;
    margin-top: 0;
    margin-bottom: 0;
  }
  #contact .marquee p {
    font-size: 110px;
  }
}
#contact .inner {
  position: relative;
  z-index: 2;
  padding: 60px 60px 80px;
  background-image: url("../img/contact_bg.jpg");
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 20px;
}
#contact h3 {
  font-size: 32px;
  font-weight: bold;
}
#contact h3 span {
  color: #015290;
  font-size: 20px;
  font-weight: normal;
}
#contact .lead {
  font-size: 16px;
}
#contact .flex {
  margin-top: 30px;
}
#contact .left,
#contact .right {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: calc(52000% / 1080);
  height: 200px;
  padding: 20px 40px;
  background-color: #015290;
  color: #fff;
}
#contact .left {
}
#contact .right {
}
#contact .left::after,
#contact .right::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  right: -20px;
  display: block;
  width: 60px;
  height: 1px;
  margin-top: auto;
  margin-bottom: auto;
  background-color: #fff;
}
#contact .vertical {
  position: absolute;
  left: 0;
  top: 0;
  width: 40px;
  height: 100%;
  line-height: 40px;
  text-align: center;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}
#contact .ttl {
  font-size: 18px;
  font-weight: bold;
}
#contact .num {
  font-size: 40px;
  font-weight: bold;
}
#contact .num img {
  margin-top: -10px;
  margin-right: 10px;
  vertical-align: middle;
}
#contact .reception {
  text-align: center;
}
#contact .reception br {
  display: none;
}
#contact .btn {
  font-size: 20px;
}
#contact .btn br {
  display: none;
}
#contact .btn span {
  background-color: #014a81;
}
@media (max-width: 1359px) {
  #contact .btn {
    display: flex;
    align-items: center;
  }
  #contact .btn br {
    display: inline;
  }
}
@media (max-width: 1199px) {
  #contact .inner {
    padding: 40px 30px 60px;
  }
}
@media (max-width: 999px) {
  #contact .ttl {
    font-size: 18px;
    font-weight: bold;
  }
  #contact .num {
    font-size: 30px;
  }
  #contact .num img {
/*    margin-top: -10px;*/
/*    margin-right: 10px;*/
  }
  #contact .reception br {
    display: inline;
  }
}
@media (max-width: 959px) {
  #contact .inner {
    background-image: url("../img/contact_bg_sp.jpg");
  }
  #contact h3 {
    font-size: 26px;
  }
  #contact h3 span {
    font-size: 18px;
  }
  #contact .flex {
    display: block;
  }
  #contact .left,
  #contact .right {
    width: 100%;
    min-height: 150px;
    height: auto;
  }
  #contact .right {
    margin-top: 30px;
  }
  #contact .reception br {
    display: none;
  }
  #contact .btn br {
    display: none;
  }
}
@media (max-width: 819px) {
  #contact h3 span {
    color: #fff;
  }
}
@media (max-width: 699px) {
  #contact .btn br {
    display: inline;
  }
}
@media (max-width: 599px) {
  #contact .inner {
    padding: 40px 30px 60px;
  }
  #contact .reception br {
    display: inline;
  }
}
@media (max-width: 519px) {
  #contact .inner {
    padding: 40px 20px 60px;
  }
  #contact h3 {
    font-size: 22px;
  }
  #contact h3 span {
    font-size: 25px;
  }
  #contact .left,
  #contact .right {
    min-height: auto;
    padding: 20px 20px 50px;
  }
  #contact .left::after,
  #contact .right::after {
    top: auto;
    bottom: -20px;
    left: 0;
    right: 0;
    width: 1px;
    height: 60px;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: auto;
    margin-right: auto;
  }
  #contact .vertical {
    position: static;
    width: 100%;
    height: 40px;
    text-align: center;
    -ms-writing-mode: initial;
    writing-mode: initial;
  }
  #contact .btn {
    font-size: 18px;
  }
}
@media (max-width: 379px) {
  #contact .left,
  #contact .right {
    padding: 20px 10px 50px;
  }
}


/* --------------- #footer --------------- */
#footer {
  position: relative;
  padding-top: 80px;
  padding-bottom: 60px;
  background-color: #f4f4f4;
}
#footer .footer_content {
  display: flex;
  justify-content: space-between;
}
@media (max-width: 959px) {
}
@media (max-width: 739px) {
  #footer .footer_content {
    display: block;
  }
}
@media (max-width: 519px) {
}
#footer .left {
  flex-shrink: 0;
  width: 320px;
}
#footer .left .footer_logo {
}
#footer .left .footer_logo img {
  max-width: 100%;
}
#footer .left .footer_logo p {
  margin-top: 10px;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
}
#footer .left .address {
  margin-top: 30px;
  font-size: 14px;
}
#footer .left .sns_area {
}
#footer .left .sns_area ul {
  display: flex;
  margin-top: 10px;
}
#footer .left .sns_area li:not(:last-child) {
  margin-right: 10px;
}
#footer .left .sns_area img {
  width: 36px;
}
#footer .left .ninsho {
  margin-top: 20px;
}
#footer .left .ninsho img {
  max-width: 100%;
}
@media (max-width: 959px) {
}
@media (max-width: 739px) {
  #footer .left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  #footer .left .footer_logo {
    text-align: center;
  }
}
@media (max-width: 519px) {
}
#footer .right {
  display: flex;
}
#footer .right ul {
  margin-left: 60px;
  font-weight: bold;
}
#footer .right ul:first-child {
  margin-left: 0;
}
#footer .right ul.has_child {
}
#footer .right li:not(:first-child) {
  margin-top: 10px;
}
#footer .right ul.has_child li:not(:first-child) {
  font-weight: normal;
}
#footer .right li a {
  display: block;
  padding-top: 5px;
  padding-bottom: 5px;
}
#footer .right li a span {
  background-image: linear-gradient(to top, #000 1px, transparent 1px);
  background-repeat: no-repeat;
  background-size: 0% 100%;
  background-position: right bottom;
  transition: background-size ease 0.3s;
}
#footer .right li a:hover span {
  background-size: 100% 100%;
  background-position: left bottom;
}
#footer .right li a br {
  display: none;
}
@media (max-width: 1079px) {
  #footer .right ul {
    margin-left: 25px;
  }
}
@media (max-width: 959px) {
  #footer .right {
    flex-wrap: wrap;
  }
  #footer .right ul {
    width: 50%;
    margin-left: 0;
  }
  #footer .right ul:nth-child(n+3) {
    margin-top: 50px;
  }
}
@media (max-width: 739px) {
  #footer .right {
  }
  #footer .right ul {
    display: flex;
    flex-wrap: wrap;
    width: calc(100% + 20px);
    margin-top: 40px;
    margin-left: -20px !important;
  }
  #footer .right ul.has_child {
    width: 100%;
    margin-left: 0 !important;
  }
  #footer .right li {
    margin-left: 20px;
  }
  #footer .right li:not(:first-child) {
    margin-top: 0;
  }
  #footer .right ul.has_child li:first-child {
    width: 100%;
    margin-left: 0;
  }
  #footer .right ul.has_child li:not(:first-child) {
    position: relative;
    margin-top: 10px;
    margin-left: 0;
    padding-left: 15px;
    color: #015290;
    font-size: 14px;
    line-height: 1.8;
  }
  #footer .right ul.has_child li:not(:first-child)::before {
    content: '';
    position: absolute;
    left: 0;
    top: 17px;
    display: block;
    width: 7px;
    height: 1px;
    background-color: #015290;
  }
  #footer .right ul.about li:not(:first-child) {
    width: calc(100% / 6);
  }
  #footer .right ul.business li:not(:first-child) {
    width: calc(100% / 3);
  }
  #footer .right ul:not(.has_child) {
    margin-top: 30px;
  }
  #footer .right ul:not(.has_child) li {
    margin-top: 5px;
    line-height: 2;
  }
}
@media (max-width: 599px) {
  #footer .right ul.about li:not(:first-child) {
    width: calc(100% / 3);
  }
  #footer .right ul.business li:not(:first-child) {
    width: calc(100% / 2);
  }
}
@media (max-width: 519px) {
}
@media (max-width: 459px) {
  #footer .right ul.business li:not(:first-child) {
/*    width: 100%;*/
  }
  #footer .right ul.business li a br {
    display: inline;
  }
}
@media (max-width: 419px) {
}


/* --------------- #copyright --------------- */
#copyright {
  margin-top: 40px;
  font-size: 11px;
}


/* --------------- #goto_top --------------- */
#goto_top {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  display: block;
  width: 50px;
  height: 50px;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}
#goto_top::before {
  content: "";
  position: absolute;
  top: 8px;
  bottom: 0;
  left: 0;
  right: 0;
  display: block;
  width: 12px;
  height: 12px;
  margin: auto;
  border-top: 1px solid #000;
  border-left: 1px solid #000;
  transform-origin: center;
  transform: rotate(45deg);
}
@media (max-width: 959px) {
}
@media (max-width: 519px) {
  #goto_top {
    display: none;
  }
}


#argos_bnr {
  position: fixed;
  z-index: 20;
  right: 20px;
  bottom: 90px;
  display: block;
  width: 310px;
  height: 220px;
}
#argos_bnr a {
  transition: all ease 0.3s;
}
#argos_bnr a:hover {
  opacity: 0.8;
}
#argos_bnr .close {
  position: absolute;
  right: -10px;
  top: -10px;
  width: 28px;
  height: 28px;
  border: 1px solid #666;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 50px;
  cursor: pointer;
}
#argos_bnr .close::before,
#argos_bnr .close::after {
  content: "";
  position: absolute;
  inset: 0;
  display: block;
  width: 2px;
  height: 16px;
  margin: auto;
  background-color: #fff;
}
#argos_bnr .close::before {
  transform: rotate(45deg);
}
#argos_bnr .close::after {
  transform: rotate(-45deg);
}
@media (max-width: 519px) {
  #argos_bnr {
    display: none;
  }
}