@charset "UTF-8";
/******************************************************************************
******************************************************************************
**
** style.scssにおいて ( var.3.1.3 )
** -- baseでは基本タグとサイト大枠のCSS指定
** -- headerではヘッダーのCSS指定
** -- global navではグローバルナビのCSS指定
** -- contentではコンテント・メイン・サイドナビのCSS指定
** -- footerではフッターのCSS指定
** -- pagetopではページトップボタンのCSS指定
** -- indexではトップページのCSS指定
** -- pageでは汎用ページのCSS指定
** -- styleでは汎用ページのコンテンツ（データ入れ）で使用する基本タグのCSS指定
**
** 注意事項
** -- CSSの命名規則はApplicatsオリジナルの命名規則を採用しています。
** -- 初期フォントサイズはreset.cssにて13pxにリセットしています。
** -- 行間は1.6にリセットしています。
**        単位は不要です。(スタイル崩れする可能性有)
** -- コンテンツ内のフォントサイズ・行間は
**        [ base ]のcontentsクラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*-------------------------------------------------------------------------------------------------------
*********************************************************************************************************
*********************************************************************************************************
******
****** PCスタイル
******
*********************************************************************************************************
*********************************************************************************************************
-------------------------------------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** base
******************************************************************************
----------------------------------------------------------------------------*/
:root {
  --color-primary: #000;
  --color-secondary: #fff;
  --color-accent: #FFB300;
  --color-gray: #B8B8B8;
  --color-light-gray: #F8F8F8;
  --color-text: #8D8D8D;
  --font-size-base: 1.3rem;
  --font-size-small: 1.2rem;
  --font-size-large: 1.4rem;
  --font-size-xlarge: 1.6rem;
  --spacing-xs: 0.5rem;
  --spacing-sm: 1rem;
  --spacing-md: 1.5rem;
  --spacing-lg: 2rem;
  --spacing-xl: 2.5rem;
  --container-width: 1300px;
  --container-padding: 10px;
}

body {
  min-height: 100vh;
  overflow-x: clip;
}

.w_base {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding-right: var(--container-padding);
  padding-left: var(--container-padding);
}

.visually-hidden {
  display: none !important;
}

/*----------------------------------------------------------------------------
******************************************************************************
** header
******************************************************************************
----------------------------------------------------------------------------*/
.hd_bg {
  position: sticky;
  top: 0;
  left: 0;
  z-index: 10;
  width: 100%;
  background: var(--color-secondary);
}
.hd_bg .hd {
  position: relative;
  height: min(100%, 105px);
}
.hd_bg .hd .hd_inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  padding: 15px 100px 0 30px;
}
.hd_bg .hd .hd_inner .logo {
  width: min(100%, 215px);
}
.hd_bg .hd .hd_inner .link_list {
  display: flex;
  align-items: center;
  gap: 2.5rem;
}
.hd_bg .hd .hd_inner .link_list .search {
  position: relative;
}
.hd_bg .hd .hd_inner .link_list .search .search_form {
  display: flex;
  align-items: center;
}
.hd_bg .hd .hd_inner .link_list .search .search_form .search_input {
  position: absolute;
  right: 100%;
  width: 0;
  padding: 8px;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1.4rem;
  opacity: 0;
  transition: all 0.3s ease;
}
.hd_bg .hd .hd_inner .link_list .search .search_form .search_btn {
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
}
.hd_bg .hd .hd_inner .link_list .search .search_form:hover .search_input {
  width: 200px;
  opacity: 1;
}
.hd_bg .hd .hd_inner .link_list .link {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.hd_bg .hd .hd_inner .link_list .link li a {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.4rem;
  text-decoration: none;
}
.hd_bg .hd .hd_inner .link_list .link li a::after {
  position: relative;
  left: -0.5rem;
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-top: 1px solid #777;
  border-right: 1px solid #777;
  transform: rotate(45deg);
  margin-left: 5px;
}
.hd_bg .hd .hd_inner .link_list .sns {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.hd_bg .hd .hd_inner .link_list .sns li:first-child {
  margin-right: 0.5rem;
}
@media screen and (max-width: 1280px) {
  .hd_bg .hd .hd_inner .link_list .sns {
    display: none;
  }
}
.hd_bg .hd .hd_category_list {
  display: flex;
  justify-content: center;
  gap: clamp(20px, (100vw - 1025px) / 895 * 20 + 20px, 40px);
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hd_bg .hd .hd_category_list > li {
  display: flex;
  align-items: center;
}
.hd_bg .hd .hd_category_list > li > a,
.hd_bg .hd .hd_category_list > li > span {
  cursor: pointer;
  position: relative;
  display: block;
  padding: 0 20px 15px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
}
.hd_bg .hd .hd_category_list > li > a::before,
.hd_bg .hd .hd_category_list > li > span::before {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: all 0.3s ease;
}
.hd_bg .hd .hd_category_list > li:hover > a::before,
.hd_bg .hd .hd_category_list > li:hover > span::before {
  width: 100%;
}
.hd_bg .hd .hd_category_list > li > .child_wrap_btn {
  position: relative;
  top: -8px;
  /* left: -10px; */
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.hd_bg .hd .hd_category_list > li > .child_wrap_btn::before {
  transform: translateY(-25%) rotate(45deg);
  width: 10px;
  height: 10px;
  /* margin-left: 10px; */
  border-bottom: 2px solid #c2c2c2;
  border-right: 2px solid #c2c2c2;
  content: "";
  display: block;
  transition: transform 0.3s;
}
.hd_bg .hd .hd_category_list > li > .child_wrap_btn.close::before {
  transform: rotate(225deg);
}
.hd_bg .hd .hd_category_list > li > .child_wrap {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(3px);
}
.hd_bg .hd .hd_category_list > li > .child_wrap > .sub-menu {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  padding: 2rem 1rem;
}
.hd_bg .hd .hd_category_list > li > .child_wrap > .sub-menu li {
  position: relative;
}
.hd_bg .hd .hd_category_list > li > .child_wrap > .sub-menu li > a {
  display: block;
  padding: 0.5rem 2rem;
  font-size: 1.3rem;
  font-weight: 500;
  text-decoration: none;
  border: 1px solid #B8B8B8;
  border-radius: 50vh;
  transition: all 0.3s ease;
}
.hd_bg .hd .hd_category_list > li > .child_wrap > .sub-menu li > a:hover, .hd_bg .hd .hd_category_list > li > .child_wrap > .sub-menu li > a.current {
  background: var(--color-primary);
  color: #fff;
  border: 1px solid var(--color-primary);
}

/*----------------------------------------------------------------------------
******************************************************************************
** global nav
******************************************************************************
----------------------------------------------------------------------------*/
.hd_nav {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 900;
  width: 100%;
  height: 100vh;
  background-color: rgba(255, 255, 255, 0.95);
  visibility: hidden;
  opacity: 0;
  transition: all 0.5s;
}
.hd_nav.active {
  visibility: visible;
  opacity: 1;
}
.hd_nav .hd_nav_content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
  gap: clamp(20px, (100vw - 1025px) / 895 * 180 + 20px, 200px);
  height: 70vh;
}
.hd_nav .hd_nav_content .hd_nav_list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  overflow-y: auto;
}
.hd_nav .hd_nav_content .hd_nav_list::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
.hd_nav .hd_nav_content .hd_nav_list::-webkit-scrollbar-thumb {
  background: #333;
}
.hd_nav .hd_nav_content .hd_nav_list::-webkit-scrollbar-track {
  background: #aaa;
}
.hd_nav .hd_nav_content .hd_nav_list > li {
  position: relative;
  z-index: 1000;
}
.hd_nav .hd_nav_content .hd_nav_list > li > a {
  display: inline-block;
  font-size: 3rem;
  font-family: "Poppins", sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.5s ease;
}
.hd_nav .hd_nav_content .hd_nav_list > li > a:hover, .hd_nav .hd_nav_content .hd_nav_list > li > a.current {
  opacity: 0.8;
}
.hd_nav .hd_nav_content .hd_nav_list > li > .child_wrap {
  padding-top: 2rem;
  padding-left: 4rem;
}
.hd_nav .hd_nav_content .hd_nav_list > li > .child_wrap > .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.hd_nav .hd_nav_content .hd_nav_list > li > .child_wrap > .sub-menu > li {
  position: relative;
  width: min(100%, 20rem);
}
.hd_nav .hd_nav_content .hd_nav_list > li > .child_wrap > .sub-menu > li > a,
.hd_nav .hd_nav_content .hd_nav_list > li > .child_wrap > .sub-menu > li > span {
  cursor: pointer;
  display: block;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  text-decoration: none;
  transition: opacity 0.5s ease;
}
.hd_nav .hd_nav_content .hd_nav_list > li > .child_wrap > .sub-menu > li > a:hover, .hd_nav .hd_nav_content .hd_nav_list > li > .child_wrap > .sub-menu > li > a.current,
.hd_nav .hd_nav_content .hd_nav_list > li > .child_wrap > .sub-menu > li > span:hover,
.hd_nav .hd_nav_content .hd_nav_list > li > .child_wrap > .sub-menu > li > span.current {
  opacity: 0.8;
}
.hd_nav .hd_nav_content .hd_nav_list > li > .child_wrap > .sub-menu > li > .child_wrap_btn {
  position: absolute;
  top: -6px;
  right: 0;
  z-index: 10;
  width: 35px;
  height: 35px;
  cursor: pointer;
}
.hd_nav .hd_nav_content .hd_nav_list > li > .child_wrap > .sub-menu > li > .child_wrap_btn::before, .hd_nav .hd_nav_content .hd_nav_list > li > .child_wrap > .sub-menu > li > .child_wrap_btn::after {
  position: absolute;
  content: "";
  width: 15px;
  height: 1px;
  background: #000;
}
.hd_nav .hd_nav_content .hd_nav_list > li > .child_wrap > .sub-menu > li > .child_wrap_btn::before {
  top: 50%;
  left: 9px;
  transform: rotate(0deg);
}
.hd_nav .hd_nav_content .hd_nav_list > li > .child_wrap > .sub-menu > li > .child_wrap_btn::after {
  top: 50%;
  left: 9px;
  transform: rotate(90deg);
  transition: all 0.3s ease;
}
.hd_nav .hd_nav_content .hd_nav_list > li > .child_wrap > .sub-menu > li > .child_wrap_btn.close + a {
  border-bottom: 1px solid #ddd;
}
.hd_nav .hd_nav_content .hd_nav_list > li > .child_wrap > .sub-menu > li > .child_wrap_btn.close::after {
  transform: rotate(0deg);
}
.hd_nav .hd_nav_content .hd_nav_list > li > .child_wrap > .sub-menu > li > .child_wrap {
  display: none;
}
.hd_nav .hd_nav_content .hd_nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu {
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  padding-left: 2rem;
}
.hd_nav .hd_nav_content .hd_nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a {
  position: relative;
  display: block;
  padding: 1rem 0;
  font-size: 1.4rem;
  font-weight: 500;
  transition: all 0.3s ease;
}
.hd_nav .hd_nav_content .hd_nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a:after {
  position: absolute;
  bottom: 0;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.hd_nav .hd_nav_content .hd_nav_list > li > .child_wrap > .sub-menu > li > .child_wrap > .sub-menu > li > a:hover::after {
  transform: scale(1, 1);
}
.hd_nav .hd_nav_content .hd_nav_info {
  position: sticky;
  top: 0;
  flex-shrink: 0;
}
.hd_nav .hd_nav_content .hd_nav_info .logo {
  margin-bottom: 25px;
}
.hd_nav .hd_nav_content .hd_nav_info .logo img {
  width: 100%;
  max-width: 396px;
}
.hd_nav .hd_nav_content .hd_nav_info .address {
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
}
.hd_nav .hd_nav_content .hd_nav_info .address dd > address {
  font-style: normal;
}
.hd_nav .hd_nav_content .hd_nav_info .contact {
  width: min(100%, 360px);
  height: min(100%, 50px);
  margin-bottom: 65px;
}
.hd_nav .hd_nav_content .hd_nav_info .contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid #B8B8B8;
  border-radius: 50vh;
  margin-bottom: 5px;
}
.hd_nav .hd_nav_content .hd_nav_info .contact a span {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 500;
}
.hd_nav .hd_nav_content .hd_nav_info .contact a span::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 17px;
  margin-right: 10px;
  background: url(../images-renew/icon_contact.svg) no-repeat center center;
  background-size: contain;
}
.hd_nav .hd_nav_content .hd_nav_info .sns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2.7rem;
}

.nav_trigger {
  cursor: pointer;
  position: fixed !important;
  z-index: 1000;
  top: 0;
  right: 0;
  width: 75px;
  height: 70px;
  background: #000;
}
.nav_trigger span {
  position: absolute;
  left: 21px;
  display: inline-block;
  width: 35px;
  height: 2px;
  background-color: #fff;
  transition: all 0.4s;
}
.nav_trigger span:nth-of-type(2) {
  top: 21px;
}
.nav_trigger span:nth-of-type(3) {
  top: 35px;
}
.nav_trigger span:nth-of-type(4) {
  bottom: 20px;
}
.nav_trigger.active span:nth-of-type(2) {
  transform: translateY(11px) rotate(-45deg);
}
.nav_trigger.active span:nth-of-type(3) {
  left: 100%;
  opacity: 0;
  animation: active-btn-bar 0.8s forwards;
}
@keyframes active-btn-bar {
  100% {
    height: 0;
  }
}
.nav_trigger.active span:nth-of-type(4) {
  transform: translateY(-16px) rotate(45deg);
}

/*----------------------------------------------------------------------------
******************************************************************************
** content
******************************************************************************
----------------------------------------------------------------------------*/
.con_bg .con {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  align-items: flex-start !important;
  gap: 7rem;
  padding: 35px 0;
}
.con_bg .con .main {
  order: 1;
  width: calc(100% - 7rem - 360px);
}
.con_bg .con .side {
  order: 2;
  width: 360px;
}
.con_bg .con .side h2.related_header {
  margin-bottom: 4.8rem;
  padding: 0.8rem;
  background: #000;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
.con_bg .con .side .related_posts .related_posts_item a .content h3 {
  color: #111;
  font-size: 1.6rem;
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}
.con_bg .con .side .bnr_wrap {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.side h2.related_header {
  margin-bottom: 4.8rem;
  padding: 0.8rem;
  background: #000;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 700;
  text-align: center;
}
.side .related_posts {
  display: flex;
  flex-direction: column;
  gap: 2.4rem;
  margin-bottom: 9.5rem;
}
.side .related_posts .related_posts_item {
  overflow: hidden;
  min-height: 180px;
  border-radius: 16px;
  box-shadow: 0 0 6.75px #CECECE;
}
.side .related_posts .related_posts_item a {
  display: flex;
}
.side .related_posts .related_posts_item a > * {
  width: 50%;
}
.side .related_posts .related_posts_item a .thumbnail img {
  width: 100%;
  height: 100%;
  min-height: 180px;
  -o-object-fit: cover;
     object-fit: cover;
}
.side .related_posts .related_posts_item a .content {
  padding: 2rem 1rem;
}
.side .related_posts .related_posts_item a .content time {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 0.5rem;
  color: #9E9E9E;
  font-size: 1.35rem;
}
.side .related_posts .related_posts_item a .content time::before {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  background: #EA0000;
  border-radius: 50svh;
}
.side .related_posts .related_posts_item a .content h3 {
  color: #111;
  font-size: 1.6rem;
  font-weight: 500;
  overflow: hidden;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  position: sticky;
  top: 100%;
}
.ft_bg .ft_con {
  display: flex;
  justify-content: space-between;
  gap: clamp(20px, (100vw - 1025px) / 895 * 140 + 20px, 160px);
  padding-top: 6rem;
  background: #fff;
}
.ft_bg .ft_con .ft_con_info {
  display: flex;
  flex-direction: column;
  flex-shrink: 0;
  height: 100%;
}
.ft_bg .ft_con .ft_con_info .logo {
  margin-bottom: 10px;
}
.ft_bg .ft_con .ft_con_info .logo img {
  width: 100%;
  max-width: 286px;
}
.ft_bg .ft_con .ft_con_info .address {
  margin-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 2;
}
.ft_bg .ft_con .ft_con_info .address dd > address {
  font-style: normal;
}
.ft_bg .ft_con .ft_con_info .contact {
  width: min(100%, 300px);
  height: 50px;
  margin-bottom: 60px;
}
.ft_bg .ft_con .ft_con_info .contact a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: 1px solid #B8B8B8;
  border-radius: 50vh;
  margin-bottom: 5px;
}
.ft_bg .ft_con .ft_con_info .contact a span {
  display: flex;
  align-items: center;
  font-size: 1.4rem;
  font-weight: 500;
}
.ft_bg .ft_con .ft_con_info .contact a span::before {
  content: "";
  display: inline-block;
  width: 22px;
  height: 17px;
  margin-right: 10px;
  background: url(../images-renew/icon_contact.svg) no-repeat center center;
  background-size: contain;
}
.ft_bg .ft_con .ft_con_info .sns {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 2rem;
}
.ft_bg .ft_con .ft_con_nav {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: max-content max-content 1fr auto;
  grid-column-gap: 2rem;
  grid-row-gap: 4rem;
  width: 100%;
}
.ft_bg .ft_con .ft_con_nav .link {
  height: -moz-max-content;
  height: max-content;
}
.ft_bg .ft_con .ft_con_nav .link:first-of-type {
  grid-area: 1/1/3/2;
}
.ft_bg .ft_con .ft_con_nav .link:nth-of-type(2) {
  grid-area: 1/2/3/3;
}
.ft_bg .ft_con .ft_con_nav .link:nth-of-type(3) {
  grid-area: 1/3/3/4;
}
.ft_bg .ft_con .ft_con_nav .link:nth-of-type(4) {
  grid-area: 1/4/2/5;
}
.ft_bg .ft_con .ft_con_nav .link:nth-of-type(5) {
  grid-area: 2/4/3/5;
}
.ft_bg .ft_con .ft_con_nav .link .ttl {
  margin-bottom: 10px;
  color: #B8B8B8;
  font-family: "Poppins", sans-serif;
  font-size: 1.8rem;
  font-weight: 700;
}
.ft_bg .ft_con .ft_con_nav .link .list {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
}
.ft_bg .ft_con .ft_con_nav .link .list li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.ft_bg .ft_con .ft_con_nav .link .list li > a,
.ft_bg .ft_con .ft_con_nav .link .list li > span {
  position: relative;
  display: inline-block;
  font-size: 1.4rem;
  font-weight: 400;
  cursor: pointer;
}
.ft_bg .ft_con .ft_con_nav .link .list li > a::before,
.ft_bg .ft_con .ft_con_nav .link .list li > span::before {
  position: absolute;
  bottom: -2px;
  left: 0;
  content: "";
  width: 0;
  height: 1px;
  background: var(--color-primary);
  transition: all 0.3s ease;
}
.ft_bg .ft_con .ft_con_nav .link .list li:hover > a::before,
.ft_bg .ft_con .ft_con_nav .link .list li:hover > span::before {
  width: 100%;
}
.ft_bg .ft_con .ft_con_nav .link .list li.applied-policy {
  position: relative;
}
.ft_bg .ft_con .ft_con_nav .link .list li.applied-policy > span br {
  display: none;
}
.ft_bg .ft_con .ft_con_nav .link .list li.applied-policy > .child_wrap_btn {
  position: absolute;
  top: 0px;
  right: -25px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
.ft_bg .ft_con .ft_con_nav .link .list li.applied-policy > .child_wrap_btn::before {
  transform: translateY(-25%) rotate(45deg);
  width: 10px;
  height: 10px;
  /* margin-left: 10px; */
  border-bottom: 2px solid #c2c2c2;
  border-right: 2px solid #c2c2c2;
  content: "";
  display: block;
  transition: transform 0.3s;
}
.ft_bg .ft_con .ft_con_nav .link .list li.applied-policy > .child_wrap_btn.close::before {
  transform: rotate(225deg);
}
.ft_bg .ft_con .ft_con_nav .link .list li.applied-policy > .child_wrap {
  display: none;
}
.ft_bg .ft_con .ft_con_nav .link .list li.applied-policy > .child_wrap > .sub-menu {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  padding-top: 1rem;
  padding-left: 1rem;
}
.ft_bg .ft_con .ft_con_nav .link .list li.applied-policy > .child_wrap > .sub-menu li {
  position: relative;
}
.ft_bg .ft_con .ft_con_nav .link .list li.applied-policy > .child_wrap > .sub-menu li > a {
  display: inline-block;
  font-size: 1.2rem;
}
.ft_bg .ft_con .ft_con_nav .link .list li.applied-policy > .child_wrap > .sub-menu li > a:hover, .ft_bg .ft_con .ft_con_nav .link .list li.applied-policy > .child_wrap > .sub-menu li > a.current {
  opacity: 0.8;
}
.ft_bg .ft_btm {
  color: #fff;
  background: #000;
}
.ft_bg .ft_btm .ft_btm_logo {
  padding-top: 50px;
  padding-bottom: 30px;
  text-align: center;
  border-bottom: 1px solid #fff;
}
.ft_bg .ft_btm .ft_btm_logo p {
  margin-bottom: 10px;
  font-size: 1.3rem;
  font-weight: 500;
}
.ft_bg .ft_btm .ft_btm_logo .logo {
  display: flex;
  justify-content: center;
}
.ft_bg .ft_btm .ft_btm_nav {
  display: flex;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 50px;
}
.ft_bg .ft_btm .ft_btm_nav .list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(4, 1fr);
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  width: 50%;
  margin: 0;
}
.ft_bg .ft_btm .ft_btm_nav .list li {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.ft_bg .ft_btm .ft_btm_nav .list li:first-of-type {
  grid-area: 1/1/2/2;
}
.ft_bg .ft_btm .ft_btm_nav .list li:nth-of-type(2) {
  grid-area: 2/1/3/2;
}
.ft_bg .ft_btm .ft_btm_nav .list li:nth-of-type(3) {
  grid-area: 3/1/4/2;
}
.ft_bg .ft_btm .ft_btm_nav .list li:nth-of-type(4) {
  grid-area: 4/1/5/2;
}
.ft_bg .ft_btm .ft_btm_nav .list li:nth-of-type(5) {
  grid-area: 1/2/2/3;
}
.ft_bg .ft_btm .ft_btm_nav .list li:nth-of-type(6) {
  grid-area: 2/2/3/3;
}
.ft_bg .ft_btm .ft_btm_nav .list li:nth-of-type(7) {
  grid-area: 3/2/4/3;
}
.ft_bg .ft_btm .ft_btm_nav .list li:nth-of-type(8) {
  grid-area: 4/2/5/3;
}
.ft_bg .ft_btm .ft_btm_nav .list li:nth-of-type(9) {
  grid-area: 1/3/2/4;
}
.ft_bg .ft_btm .ft_btm_nav .list li:nth-of-type(10) {
  grid-area: 2/3/3/4;
}
.ft_bg .ft_btm .ft_btm_nav .list li > a {
  font-size: 1.4rem;
}
.ft_bg .ft_btm .ft_btm_nav .bnr {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  width: min(100%, 21rem);
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.ft_bg .ft_btm .ft_btm_nav .bnr li {
  margin: 0;
  padding: 0;
}
.ft_bg .ft_btm .ft_btm_nav .bnr li > a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.ft_bg .ft_btm .ft_btm_nav .bnr li.biz a {
  padding: 1.3rem 3rem;
  background: #fff;
  border: 1px solid #707070;
  border-radius: 7px;
}
.ft_bg .ft_btm .ft_btm_nav .bnr li > ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  cursor: pointer;
  position: fixed;
  right: 30px;
  bottom: 30px;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background-color: #333;
  border-radius: 50%;
}
.pt:hover {
  opacity: 0.6;
}
.pt .pt_btn {
  cursor: pointer;
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  margin-top: 8px;
  background: none;
  border: none;
  transform: rotate(45deg);
}
.pt .pt_btn::before, .pt .pt_btn::after {
  background-color: #FFF;
  content: "";
  display: block;
  top: 0;
  left: 0;
  position: absolute;
}
.pt .pt_btn::before {
  width: 7px;
  bottom: 0;
}
.pt .pt_btn::after {
  height: 7px;
  right: 0;
}

/*----------------------------------------------------------------------------
******************************************************************************
** index
******************************************************************************
----------------------------------------------------------------------------*/
.index-slide-wrap {
  display: flex !important;
  justify-content: center;
  margin-bottom: 1.8229166667vw;
}

.slick-wrap {
  width: 50%;
}
.slick-wrap .slick-track {
  display: flex !important;
}
.slick-wrap .slick-slide {
  position: relative;
  float: none;
  width: 50vw;
  aspect-ratio: 16/9;
  box-shadow: none !important;
  transform: none !important;
}
.slick-wrap .slick-slide img,
.slick-wrap .slick-slide video {
  position: relative;
  width: 100%;
  max-width: initial;
  height: 100%;
  max-height: initial;
  -o-object-fit: cover;
     object-fit: cover;
}
.slick-wrap .slick-slide .slide-detail {
  position: absolute !important;
  bottom: 0;
  display: flex !important;
  flex-direction: column;
  justify-content: center;
  width: 100%;
  min-height: 60px;
  padding: 1rem;
  background: rgba(0, 0, 0, 0.5) !important;
  color: #fff;
}
.slick-wrap .slick-slide .slide-detail .slide-title {
  overflow-y: hidden;
  font-size: 1.5rem;
  font-weight: 700;
}
.slick-wrap .slick-video-box a {
  display: block;
}
.slick-wrap .slick-slider {
  display: none;
}
.slick-wrap .slick-slider.slick-initialized {
  display: block;
}

.index_main {
  width: 100%;
}
.index_main h2 {
  margin-bottom: 0.78125vw;
  font-size: 2.4rem;
  font-weight: 500;
  text-align: center;
}
.index_main .posts_top_recommended {
  margin: 0 clamp(10px, (100vw - 1025px) / 895 * 20 + 10px, 30px);
  padding: 0 clamp(10px, (100vw - 1025px) / 895 * 20 + 10px, 30px);
}
.index_main .posts_top_recommended .posts_recommended {
  width: 100% !important;
}
.index_main .posts_top_recommended .posts_recommended .post_card-wrap .slick-track {
  display: flex !important;
  gap: clamp(5px, (100vw - 1025px) / 895 * 5 + 5px, 15px);
}
.index_main .posts_top_recommended .posts_recommended .post_card-wrap .slick-arrow-item {
  top: 50%;
  transform: translateY(-50%);
  z-index: 1;
  opacity: 1;
  width: 3.0208333333vw;
  height: 3.0208333333vw;
}
.index_main .posts_top_recommended .posts_recommended .post_card-wrap .slick-arrow-item .slick-arrow {
  position: relative;
  right: 0 !important;
  left: 0 !important;
  width: 100%;
  height: 100%;
  background: #777;
  border-radius: 50vh;
}
.index_main .posts_top_recommended .posts_recommended .post_card-wrap .slick-arrow-item .slick-arrow::before {
  position: absolute;
  top: 0 !important;
  right: -5px !important;
  bottom: 0 !important;
  left: 0 !important;
  content: "";
  width: 25%;
  height: 25%;
  margin: auto;
  background: transparent;
  border-top: 3px solid #FFF;
  border-right: 3px solid #FFF;
}
.index_main .posts_top_recommended .posts_recommended .post_card-wrap .slick-arrow-item .slick-arrow::after {
  display: none;
}
.index_main .posts_top_recommended .posts_recommended .post_card-wrap .slick-arrow-item.slick-prev {
  left: -3rem;
}
.index_main .posts_top_recommended .posts_recommended .post_card-wrap .slick-arrow-item.slick-prev .slick-arrow::before {
  right: -5px !important;
  left: 0 !important;
  transform: rotate(225deg);
}
.index_main .posts_top_recommended .posts_recommended .post_card-wrap .slick-arrow-item.slick-next {
  right: -3rem;
}
.index_main .posts_top_recommended .posts_recommended .post_card-wrap .slick-arrow-item.slick-next .slick-arrow::before {
  right: 0 !important;
  left: -5px !important;
  transform: rotate(45deg);
}
.index_main .posts_top_recommended .posts_recommended .post_card {
  flex: none;
  width: 12.65625vw;
  margin: 0 !important;
  opacity: 1 !important;
  box-shadow: none;
}
.index_main .posts_top_recommended .posts_recommended .post_card a {
  display: flex;
  flex-direction: column !important;
  height: 100%;
  color: #000;
  text-decoration: none;
  overflow: hidden;
}
.index_main .posts_top_recommended .posts_recommended .post_card a img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
  transition: all 0.3s ease;
}
.index_main .posts_top_recommended .posts_recommended .post_card a:hover img {
  /*transform: scale(1.2);*/
}
.index_main .posts_top_recommended .posts_recommended .post_card a .post_card-descreption {
  margin-top: 0.3645833333vw;
}
.index_main .posts_top_recommended .posts_recommended .post_card a .post_card-descreption h3 {
  font-size: 1.3rem;
  font-weight: 500;
}
.index_main .post-more {
  width: min(100%, 300px);
  margin: 1.5625vw auto;
}
.index_main .post-more a {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  padding-top: 15px;
  padding-bottom: 15px;
  font-size: 1.4rem;
  font-weight: 500;
  border: 1px solid #B8B8B8;
  border-radius: 50vh;
}
.index_main .post-more.__book a {
  background: white;
  box-shadow: 0px 3px 0px 0px #d3001a;
  color: #dd001b;
  font-weight: bold;
  text-align: center;
  border: 1px solid #d3001a;
}
.index_main .index_recommend {
  margin-bottom: 1.5625vw;
}
.index_main .index_news {
  margin-top: 3.125vw;
  margin-bottom: 2.8645833333vw;
}
.index_main .index_feature {
  padding-top: 1.8229166667vw;
  padding-bottom: 2.6041666667vw;
  background: url(../images-renew/feature_bg.png) no-repeat center center;
  background-size: cover;
}
.index_main .index_feature h2 {
  margin-bottom: 1.3020833333vw;
}
.index_main .index_feature .post_feature {
  display: flex;
  gap: clamp(15px, (100vw - 1025px) / 895 * 10 + 15px, 25px);
}
.index_main .index_feature .post_feature.second {
  margin-top: 4.5rem;
}
.index_main .index_feature .post_feature .image {
  flex-shrink: 0;
  width: min(100%, 360px);
}
.index_main .index_feature .post_feature .image img {
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 16/9;
}
.index_main .index_feature .post_feature .post_card-wrap {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: clamp(10px, (100vw - 1025px) / 895 * 10 + 10px, 20px);
  width: 100%;
}
.index_main .index_feature .post_feature .post_card-wrap .post_card {
  display: flex;
  flex-wrap: wrap;
  width: calc((100% - clamp(10px, (100vw - 1025px) / 895 * 10 + 10px, 20px)) / 2);
}
.index_main .index_feature .post_feature .post_card-wrap .post_card a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5208333333vw;
}
.index_main .index_feature .post_feature .post_card-wrap .post_card a img {
  width: min(100%, 135px);
  height: -moz-max-content;
  height: max-content;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
}
.index_main .index_feature .post_feature .post_card-wrap .post_card a .post_card-descreption {
  width: calc(100% - min(100%, 135px) - 0.5208333333vw);
}
.index_main .index_feature .post_feature .post_card-wrap .post_card a .post_card-descreption h3 {
  font-size: 1.3rem;
  font-weight: 500;
}
.index_main .index_feature .post_feature .post_card-wrap .post_card a .post_card-descreption time {
  color: #8D8D8D;
  font-size: 1.2rem;
}
.index_main .index_book {
  padding-top: 2.6041666667vw;
  padding-right: 3.203125vw;
  padding-bottom: 2.6041666667vw;
  padding-left: 3.203125vw;
  background: #fff5f7;
}
.index_main .index_book h2 {
  margin-top: 0vw;
  margin-right: 0vw;
  margin-bottom: 1.3020833333vw;
  margin-left: 0vw;
  font-weight: 400;
}
.index_main .index_book .post_feature {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(2, 1fr);
  grid-column-gap: 0px;
  grid-row-gap: 0px;
  gap: clamp(15px, (100vw - 1025px) / 895 * 10 + 15px, 25px);
}
.index_main .index_book .post_feature .image {
  flex-shrink: 0;
  grid-area: 1/1/3/2;
}
.index_main .index_book .post_feature .image a {
  display: block;
}
.index_main .index_book .post_feature .con1 {
  grid-area: 1/2/2/5;
}
.index_main .index_book .post_feature .con2 {
  grid-area: 2/2/3/5;
}
.index_main .index_book .post_feature .post_card-wrap {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: clamp(10px, (100vw - 1025px) / 895 * 10 + 10px, 20px);
  width: 100%;
}
.index_main .index_book .post_feature .post_card-wrap h3 {
  display: block;
  width: 100%;
  background: #dd001b;
  text-align: center;
  padding: 10px 1em;
  font-weight: bold;
  color: white;
}
.index_main .index_book .post_feature .post_card-wrap .post_card {
  display: flex;
  flex-wrap: wrap;
  width: calc((100% - clamp(10px, (100vw - 1025px) / 895 * 10 + 10px, 20px)) / 2);
}
.index_main .index_book .post_feature .post_card-wrap .post_card a {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5208333333vw;
}
.index_main .index_book .post_feature .post_card-wrap .post_card a img {
  width: min(100%, 135px);
  height: -moz-max-content;
  height: max-content;
  -o-object-fit: cover;
     object-fit: cover;
  aspect-ratio: 3/2;
}
.index_main .index_book .post_feature .post_card-wrap .post_card a .post_card-descreption {
  width: calc(100% - min(100%, 135px) - 0.5208333333vw);
}
.index_main .index_book .post_feature .post_card-wrap .post_card a .post_card-descreption h4 {
  font-size: 1.3rem;
  font-weight: 500;
}
.index_main .index_book .post_feature .post_card-wrap .post_card a .post_card-descreption time {
  font-size: 1.2rem;
}
.index_main .index_book .post_book .post_book_card-wrap {
  display: flex;
  flex-wrap: wrap;
  gap: 0.78125vw;
}
.index_main .index_book .post_book .post_book_card-wrap .post_card {
  width: calc((100% - 4.6875vw) / 7);
}
.index_main .index_book .post_book .post_book_card-wrap .post_card a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  height: 100%;
}
.index_main .index_book .post_book .post_book_card-wrap .post_card a .post_card-thumbnail {
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 100%;
  max-height: 15.1041666667vw;
  padding-top: 1.5625vw;
  padding-right: 1.3020833333vw;
  padding-bottom: 1.5625vw;
  padding-left: 1.3020833333vw;
  background: #fff;
  border-radius: 1.5rem;
}
.index_main .index_book .post_book .post_book_card-wrap .post_card a .post_card-thumbnail img {
  max-height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.index_main .index_book .post_book .post_book_card-wrap .post_card a .post_card-descreption {
  height: 100%;
  color: #fff;
}
.index_main .index_book .post_book .post_book_card-wrap .post_card a .post_card-descreption h3 {
  margin-bottom: 0.5rem;
  font-size: 1.4rem;
  font-weight: 700;
}
.index_main .index_book .post_book .post_book_card-wrap .post_card a .post_card-descreption p {
  font-size: 1.3rem;
}
.index_main .index_book .mookList {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, (100vw - 1025px) / 895 * 10 + 20px, 30px) clamp(10px, (100vw - 1025px) / 895 * 10 + 10px, 20px);
}
.index_main .index_book .mookList_item {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: calc((100% - clamp(10px, (100vw - 1025px) / 895 * 10 + 10px, 20px) * 5) / 6);
}
.index_main .index_book .mookList_item .thumbnail {
  aspect-ratio: 4/5;
  width: 100%;
}
.index_main .index_book .mookList_item .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.index_main .index_book .mookList_item .link {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.index_main .index_book .mookList_item .link a {
  display: block;
  width: 100%;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-secondary);
}
.index_main .index_book .mookList_item .link a:hover {
  opacity: 1;
  background-color: unset;
  color: var(--color-primary);
}
.index_main .index_mook {
  padding-top: 2.6041666667vw;
  padding-right: 3.203125vw;
  padding-bottom: 2.6041666667vw;
  padding-left: 3.203125vw;
  background: #f5f7ff;
}
.index_main .index_mook h2 {
  margin-top: 0vw;
  margin-right: 0vw;
  margin-bottom: 1.3020833333vw;
  margin-left: 0vw;
  font-weight: 400;
}
.index_main .index_mook .mookList {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, (100vw - 1025px) / 895 * 10 + 20px, 30px) clamp(10px, (100vw - 1025px) / 895 * 10 + 10px, 20px);
}
.index_main .index_mook .mookList_item {
  display: flex;
  flex-direction: column;
  gap: 1em;
  width: calc((100% - clamp(10px, (100vw - 1025px) / 895 * 10 + 10px, 20px) * 5) / 6);
}
.index_main .index_mook .mookList_item .thumbnail {
  aspect-ratio: 4/5;
  width: 100%;
}
.index_main .index_mook .mookList_item .thumbnail img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.index_main .index_mook .mookList_item .link {
  display: flex;
  flex-direction: column;
  gap: 0.5em;
}
.index_main .index_mook .mookList_item .link a {
  display: block;
  width: 100%;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  padding-top: 0.5em;
  padding-bottom: 0.5em;
  border: 1px solid var(--color-primary);
  background-color: var(--color-primary);
  color: var(--color-secondary);
}
.index_main .index_mook .mookList_item .link a:hover {
  opacity: 1;
  background-color: unset;
  color: var(--color-primary);
}
.index_main .index_bnr {
  padding-top: 2.6041666667vw;
  padding-bottom: 2.6041666667vw;
}
.index_main .index_bnr .bnr_wrap {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(20px, (100vw - 1025px) / 895 * 10 + 20px, 30px) clamp(10px, (100vw - 1025px) / 895 * 10 + 10px, 20px);
}
.index_main .index_bnr .bnr_wrap .bnr_card {
  width: calc((100% - clamp(10px, (100vw - 1025px) / 895 * 10 + 10px, 20px)) / 2);
}
.index_main .index_bnr .bnr_wrap .bnr_card a {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.index_main .index_bnr .bnr_wrap .bnr_card a .bnr_card-descreption {
  display: inline-block;
  font-size: 1.4rem;
}
.index_main .index_bnr .bnr_wrap.col_01 .bnr_card {
  width: 100%;
}
.index_main .index_bnr .bnr_wrap.col_03 .bnr_card {
  width: calc((100% - clamp(10px, (100vw - 1025px) / 895 * 10 + 10px, 20px) * 2) / 3);
}
.index_main .index_bnr .bnr_wrap.col_06 .bnr_card {
  width: calc((100% - clamp(10px, (100vw - 1025px) / 895 * 10 + 10px, 20px) * 5) / 6);
}
.index_main .index_bnr.applied {
  background: #F8F8F8;
}
.index_main .index_bnr.applied h2 {
  position: relative;
  margin-block: 6rem 3rem;
  font-weight: 400;
  text-align: center;
}
.index_main .index_bnr.applied h2:first-of-type {
  margin-top: 0;
}
.index_main .index_bnr.applied h2:before {
  position: absolute;
  bottom: 0;
  left: 10px;
  z-index: 1;
  content: "";
  display: block;
  width: calc(100% - 20px);
  height: 1px;
  background: #B8B8B8;
}
.index_main .index_bnr.applied h2 span {
  position: relative;
  z-index: 1;
  display: inline-block;
  padding-inline: 10px;
  padding-bottom: 10px;
  border-bottom: 2px solid #dd001b;
}
.index_main .index_bnr.applied .bnr_wrap {
  row-gap: clamp(10px, (100vw - 1025px) / 895 * 10 + 10px, 20px);
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
}
.mcon a {
  color: #004B96;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon h1 {
  margin-bottom: 1rem;
  padding-bottom: 1.5rem;
  font-size: 3.2rem;
  font-weight: 700;
  line-height: 1.5;
  border-bottom: 1px solid #000;
}
.mcon .last_updated {
  font-size: 1.6rem;
  margin-bottom: 4.2rem;
}
.mcon h2 {
  margin: 5rem 0;
  font-size: 2.8rem;
  font-weight: 700;
}
.mcon h3 {
  margin: 5rem 0;
  font-size: 2rem;
  font-weight: 700;
}
.mcon h4 {
  font-size: 1.2em;
  margin-bottom: 5px;
  margin-top: 5px;
}
.mcon h5,
.mcon h6 {
  font-size: 1.1em;
  margin-bottom: 2px;
  margin-top: 5px;
}
.mcon hr {
  border: none;
  border-top: 1px dotted #000;
}
.mcon iframe {
  max-width: 100%;
}
.mcon img {
  max-width: 100%;
  height: auto;
}
.mcon ol {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ol li {
  margin-left: 2em;
  margin-bottom: 0.5em;
}
.mcon p {
  margin-bottom: 1em;
}
.mcon ul {
  margin-top: 1em;
  margin-bottom: 0.5em;
}
.mcon ul li {
  list-style-type: disc;
  margin-left: 1.5em;
  margin-bottom: 0.5em;
}

/*----------------------------------------------------------
************************************************************
  movie
************************************************************
-----------------------------------------------------------*/
.panel-h2 {
  margin: 80px 0 50px;
  border: #000;
}
@media (max-width: 1280px) {
  .panel-h2 {
    display: none;
  }
}

.video-panel-section {
  width: 100%;
  display: flex;
  justify-content: center;
}
.video-panel-section .panel-wrap {
  display: flex;
  gap: 7%;
  justify-content: space-between;
  max-width: 1400px;
  width: 100%;
  margin-bottom: 80px;
}
.video-panel-section .panel-wrap .panel-item {
  position: relative;
  display: inline-block;
  border-radius: 8px;
  overflow: hidden;
}
.video-panel-section .panel-wrap .panel-item .panel-img {
  display: block;
  width: 100%;
  height: auto;
}
.video-panel-section .panel-wrap .panel-item iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
  z-index: 0;
  border-radius: 50px;
}
.video-panel-section .panel-wrap .panel-item .panel-img {
  position: relative;
  z-index: 1;
}
.video-panel-section .panel-wrap .ad-banner {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 0;
}
.video-panel-section .panel-wrap .ad-banner img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 50px;
}
@media (max-width: 1280px) {
  .video-panel-section {
    display: none;
  }
}/*# sourceMappingURL=style.css.map */