@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クラスで指定しています。
**        変更する場合はこちらを変更してください。
**
******************************************************************************
******************************************************************************/
/*----------------------------------------------------------------------------
******************************************************************************
** 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-margin: calc(50% - 50vw);
  --container-padding: 1.5rem;
}

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

.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: 70px;
}
.hd_bg .hd .hd_inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: calc(100% - 75px);
  height: 100%;
}
.hd_bg .hd .hd_inner .logo {
  width: min(100%, 200px);
}
.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 .biz {
  display: none;
}
.hd_bg .hd .hd_inner .link_list .link {
  display: flex;
  align-items: center;
  gap: 2rem;
  display: none;
}
.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;
  display: none;
}
.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 {
  position: relative;
  z-index: 1;
  padding-bottom: 15px;
  display: none;
}
.hd_bg .hd .hd_category_list {
  display: flex;
  justify-content: center;
  gap: clamp(20px, (100vw - 325px) / 699 * 20 + 20px, 40px);
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hd_bg .hd .hd_category_list li {
  position: relative;
  z-index: 1000;
}
.hd_bg .hd .hd_category_list li > a {
  display: block;
  padding: 0 20px;
  font-weight: 500;
  text-align: center;
  text-decoration: none;
  transition: all 0.5s ease;
}
.hd_bg .hd .hd_category_list li > a:hover, .hd_bg .hd .hd_category_list li > a.current {
  opacity: 0.8;
}
.hd_bg .hd .hd_category_list li > a img {
  transition: all 0.5s ease;
}
.hd_bg .hd .hd_category_list li > a img:hover {
  opacity: 0;
}
.hd_bg .hd .hd_category_list li:hover .nav_clist {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
.hd_bg .hd .hd_category_list li .nav_clist {
  position: absolute;
  top: 100%;
  left: 0;
  display: none;
  width: 100%;
  transition: all 0.5s ease;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hd_bg .hd .hd_category_list li .nav_clist li {
  position: relative;
  border-bottom: 1px solid rgba(255, 255, 255, 0.7);
}
.hd_bg .hd .hd_category_list li .nav_clist li > a {
  display: block;
  padding: 10px;
  background-color: #000;
  color: #fff;
  text-decoration: none;
  transition: opacity 0.5s ease;
}
.hd_bg .hd .hd_category_list li .nav_clist li > a:hover, .hd_bg .hd .hd_category_list li .nav_clist li > a.current {
  opacity: 0.8;
}
.hd_bg .hd .hd_category_list li .nav_clist li:hover .nav_glist {
  display: block;
  animation: nav_active 1s ease 0s 1 alternate;
}
.hd_bg .hd .hd_category_list li .nav_clist li .nav_glist {
  position: absolute;
  top: 0;
  left: 100%;
  display: none;
  width: 100%;
  list-style: none;
  padding: 0;
  margin: 0;
}
.hd_bg .hd .hd_category_list li .nav_clist li .nav_glist li {
  border-bottom: 1px solid rgba(255, 255, 255, 0.4);
  border-left: 1px solid rgba(255, 255, 255, 0.4);
}
.hd_bg .hd .hd_category_list li .nav_clist li .nav_glist li > a {
  display: block;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.7);
  color: #fff;
  text-decoration: none;
  transition: background-color 0.5s ease, box-shadow 0.5s ease;
}
.hd_bg .hd .hd_category_list li .nav_clist li .nav_glist li > a:hover, .hd_bg .hd .hd_category_list li .nav_clist li .nav_glist li > a.current {
  background-color: #000;
  box-shadow: 0 0 4px rgba(255, 0, 0, 0.2);
}

/*----------------------------------------------------------------------------
******************************************************************************
** 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: 90px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  gap: clamp(20px, (100vw - 325px) / 699 * 180 + 20px, 200px);
  width: 96%;
  height: 80vh;
  padding-right: var(--container-padding);
  padding-left: var(--container-padding);
  overflow-y: auto;
}
.hd_nav .hd_nav_content::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}
.hd_nav .hd_nav_content::-webkit-scrollbar-thumb {
  background: #333;
}
.hd_nav .hd_nav_content::-webkit-scrollbar-track {
  background: #aaa;
}
.hd_nav .hd_nav_content .hd_nav_list {
  display: flex;
  flex-direction: column;
  gap: 3rem;
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}
.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 {
  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 {
  display: none;
  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: 2rem;
}

.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;
  padding: 35px var(--container-padding);
}
.con_bg .con .main {
  order: 1;
  width: 700px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** footer
******************************************************************************
----------------------------------------------------------------------------*/
.ft_bg {
  position: sticky;
  top: 100%;
}
.ft_bg .ft_con {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: space-between;
  gap: clamp(20px, (100vw - 325px) / 699 * 140 + 20px, 160px);
  padding: 6rem var(--container-padding) 0;
  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: 65px;
}
.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(2, 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/2/2;
}
.ft_bg .ft_con .ft_con_nav .link:nth-of-type(2) {
  grid-area: 1/2/2/3;
}
.ft_bg .ft_con .ft_con_nav .link:nth-of-type(3) {
  grid-area: 2/1/4/2;
}
.ft_bg .ft_con .ft_con_nav .link:nth-of-type(4) {
  grid-area: 2/2/3/3;
}
.ft_bg .ft_con .ft_con_nav .link:nth-of-type(5) {
  grid-area: 3/2/4/3;
}
.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;
}
@media screen and (max-width: 768px) {
  .ft_bg .ft_con .ft_con_nav .link .list li.applied-policy > span br {
    display: block;
  }
}
.ft_bg .ft_con .ft_con_nav .link .list li.applied-policy > .child_wrap_btn {
  position: absolute;
  top: 0px;
  left: 195px;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 25px;
  height: 25px;
  cursor: pointer;
}
@media screen and (max-width: 768px) {
  .ft_bg .ft_con .ft_con_nav .link .list li.applied-policy > .child_wrap_btn {
    top: 10px;
    left: 125px;
  }
}
.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 {
  padding-right: var(--container-padding);
  padding-left: var(--container-padding);
  background: #000;
  color: #fff;
}
.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;
  flex-direction: column;
  justify-content: space-between;
  padding-top: 30px;
  padding-bottom: 50px;
}
.ft_bg .ft_btm .ft_btm_nav .list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-template-rows: max-content max-content 1fr auto;
  grid-column-gap: 2rem;
  grid-row-gap: 2rem;
  width: 100%;
  margin: 0;
  padding-bottom: 30px;
}
.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: 5/1/6/2;
}
.ft_bg .ft_btm .ft_btm_nav .list li:nth-of-type(6) {
  grid-area: 1/2/2/3;
}
.ft_bg .ft_btm .ft_btm_nav .list li:nth-of-type(7) {
  grid-area: 2/2/3/3;
}
.ft_bg .ft_btm .ft_btm_nav .list li:nth-of-type(8) {
  grid-area: 3/2/4/3;
}
.ft_bg .ft_btm .ft_btm_nav .list li:nth-of-type(9) {
  grid-area: 4/2/5/3;
}
.ft_bg .ft_btm .ft_btm_nav .list li:nth-of-type(10) {
  grid-area: 5/2/6/3;
}
.ft_bg .ft_btm .ft_btm_nav .list li > a {
  font-size: 1.4rem;
}
.ft_bg .ft_btm .ft_btm_nav .bnr {
  display: flex;
  align-items: center;
  gap: 2rem;
  width: 100vw;
  margin: 0 calc(50% - 50vw);
  padding: var(--container-padding);
  background: #fff;
  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;
  gap: 2rem;
}
.ft_bg .ft_btm .ft_btm_nav .bnr li > ul > li.applied a {
  padding: 1.3rem 3rem;
  background: #fff;
  border: 1px solid #707070;
  border-radius: 7px;
}

/*----------------------------------------------------------------------------
******************************************************************************
** pagetop
******************************************************************************
----------------------------------------------------------------------------*/
.pt {
  cursor: pointer;
  position: fixed;
  right: 10px;
  bottom: 20px;
  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;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 3.41796875vw;
}
@media screen and (max-width: 520px) {
  .index-slide-wrap {
    display: block;
  }
}

.slick-wrap {
  width: 50%;
  height: auto;
}
@media screen and (max-width: 520px) {
  .slick-wrap {
    width: 100%;
  }
}
.slick-wrap .slick-track {
  display: flex;
  align-items: stretch;
}
.slick-wrap .slick-slide {
  position: relative;
  float: none;
  width: 50vw;
  aspect-ratio: 16/9;
  box-shadow: none !important;
  transform: none !important;
}
@media screen and (max-width: 520px) {
  .slick-wrap .slick-slide {
    width: 100vw;
  }
}
.slick-wrap .slick-slide img, .slick-wrap .slick-slide video {
  display: block;
  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%;
  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.2rem;
  font-weight: 700;
}
.slick-wrap .slick-video-box a {
  display: block;
}
.slick-wrap .slick-slider {
  visibility: hidden;
}
.slick-wrap .slick-slider.slick-initialized {
  visibility: visible;
}

.index_main {
  width: 100%;
}
.index_main h2 {
  margin-bottom: 1.46484375vw;
  font-size: clamp(18px, (100vw - 325px) / 699 * 18 + 18px, 36px);
  font-weight: 500;
  text-align: left;
}
.index_main .posts_top_recommended {
  margin-bottom: 2rem;
}
.index_main .posts_top_recommended .posts_recommended {
  width: 100% !important;
  padding-bottom: 1.5rem;
  overflow-x: scroll;
}
.index_main .posts_top_recommended .posts_recommended::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}
.index_main .posts_top_recommended .posts_recommended::-webkit-scrollbar-thumb {
  background: #333;
}
.index_main .posts_top_recommended .posts_recommended::-webkit-scrollbar-track {
  background: #fff;
}
.index_main .posts_top_recommended .posts_recommended .post_card-wrap {
  display: flex !important;
  gap: clamp(10px, (100vw - 325px) / 699 * 10 + 10px, 20px);
}
.index_main .posts_top_recommended .posts_recommended .post_card {
  flex: none;
  width: 125px;
  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;
}
.index_main .posts_top_recommended .posts_recommended .post_card a .post_card-descreption {
  margin-top: 0.68359375vw;
}
.index_main .posts_top_recommended .posts_recommended .post_card a .post_card-descreption h3 {
  font-size: 1.2rem;
  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 #dd001b;
}
.index_main .index_recommend {
  margin-bottom: 3rem;
}
.index_main .index_news {
  margin-bottom: 5.37109375vw;
}
.index_main .index_feature {
  width: 100vw;
  margin: 0 var(--container-margin);
  padding-top: 4.8828125vw;
  padding-right: 6.005859375vw;
  padding-bottom: 4.8828125vw;
  padding-left: 6.005859375vw;
  background: url(../images-renew/feature_bg.png) no-repeat center center;
  background-size: cover;
}
.index_main .index_feature h2 {
  margin-bottom: 2.44140625vw;
  font-size: clamp(18px, (100vw - 325px) / 699 * 18 + 18px, 36px);
  text-align: left;
}
.index_main .index_feature .post_feature {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(15px, (100vw - 325px) / 699 * 10 + 15px, 25px);
}
.index_main .index_feature .post_feature.second {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(112, 112, 112, 0.4);
}
.index_main .index_feature .post_feature .image {
  flex-shrink: 0;
  width: 100%;
}
.index_main .index_feature .post_feature .image img {
  width: 100%;
  -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;
  flex-direction: column;
  gap: clamp(10px, (100vw - 325px) / 699 * 10 + 10px, 20px);
  width: 100%;
  padding-bottom: var(--container-padding);
}
.index_main .index_feature .post_feature .post_card-wrap .post_card {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
}
.index_main .index_feature .post_feature .post_card-wrap .post_card a {
  display: flex;
  gap: 0.9765625vw;
}
.index_main .index_feature .post_feature .post_card-wrap .post_card a img {
  width: min(100%, 100px);
  -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%, 100px) - 0.9765625vw);
}
.index_main .index_feature .post_feature .post_card-wrap .post_card a .post_card-descreption h3 {
  font-size: 1.2rem;
  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 {
  width: 100vw;
  margin: 0 var(--container-margin);
  padding-top: 4.8828125vw;
  padding-right: 6.005859375vw;
  padding-bottom: 4.8828125vw;
  padding-left: 6.005859375vw;
  background: #fff5f7;
}
.index_main .index_book h2 {
  margin-top: 0vw;
  margin-right: 0vw;
  margin-bottom: 3.90625vw;
  margin-left: 0vw;
  font-size: clamp(18px, 3.4vw, 36px);
  font-weight: 400;
  text-align: left;
}
.index_main .index_book h2.mook {
  margin-top: 5.859375vw;
  margin-right: 0vw;
  margin-bottom: 3.90625vw;
  margin-left: 0vw;
}
.index_main .index_book .post_feature {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(15px, (100vw - 325px) / 699 * 10 + 15px, 25px);
}
.index_main .index_book .post_feature.second {
  margin-top: 3rem;
  padding-top: 3rem;
  border-top: 1px solid rgba(112, 112, 112, 0.4);
}
.index_main .index_book .post_feature .image {
  flex-shrink: 0;
  width: 100%;
}
.index_main .index_book .post_feature .image a {
  display: block;
  max-width: 340px;
  width: 90%;
  margin: auto;
}
.index_main .index_book .post_feature .post_card-wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  gap: clamp(10px, (100vw - 325px) / 699 * 10 + 10px, 20px);
  width: 100%;
  padding-bottom: var(--container-padding);
}
.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: 100%;
}
.index_main .index_book .post_feature .post_card-wrap .post_card a {
  display: flex;
  gap: 0.9765625vw;
}
.index_main .index_book .post_feature .post_card-wrap .post_card a img {
  width: min(100%, 100px);
  -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%, 100px) - 0.9765625vw);
}
.index_main .index_book .post_feature .post_card-wrap .post_card a .post_card-descreption h4 {
  font-size: 1.2rem;
  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 {
  padding-bottom: 2.5rem;
  overflow-x: scroll;
}
.index_main .index_book .post_book::-webkit-scrollbar {
  width: 2px;
  height: 2px;
}
.index_main .index_book .post_book::-webkit-scrollbar-thumb {
  background: #333;
}
.index_main .index_book .post_book::-webkit-scrollbar-track {
  background: #fff;
}
.index_main .index_book .post_book .post_book_card-wrap {
  display: flex;
  gap: 2.9296875vw;
  width: 100vw;
}
.index_main .index_book .post_book .post_book_card-wrap .post_card {
  flex: none;
  width: clamp(125px, (100vw - 325px) / 699 * 125 + 125px, 250px);
}
.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%;
  padding-top: 5.859375vw;
  padding-right: 4.8828125vw;
  padding-bottom: 5.859375vw;
  padding-left: 4.8828125vw;
  background: #fff;
  border-radius: 0.75rem;
  aspect-ratio: 9/16;
}
.index_main .index_book .post_book .post_book_card-wrap .post_card a .post_card-thumbnail img {
  min-width: 16.6015625vw;
  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_mook {
  width: 100vw;
  margin: 0 var(--container-margin);
  padding-top: 4.8828125vw;
  padding-right: 6.005859375vw;
  padding-bottom: 4.8828125vw;
  padding-left: 6.005859375vw;
  background: #f5f7ff;
}
.index_main .index_mook h2 {
  margin-top: 0vw;
  margin-right: 0vw;
  margin-bottom: 3.90625vw;
  margin-left: 0vw;
  font-size: clamp(18px, 3.4vw, 36px);
  font-weight: 400;
  text-align: left;
}
.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) * 2) / 3);
}
@media screen and (max-width: 520px) {
  .index_main .index_mook .mookList_item {
    width: calc((100% - clamp(10px, (100vw - 1025px) / 895 * 10 + 10px, 20px)) / 2);
  }
}
.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: 4.8828125vw;
  padding-bottom: 4.8828125vw;
}
.index_main .index_bnr.applied {
  background: #F8F8F8;
}
.index_main .index_bnr .bnr_wrap {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  align-items: center;
  gap: clamp(20px, (100vw - 325px) / 699 * 10 + 20px, 30px) clamp(10px, (100vw - 325px) / 699 * 10 + 10px, 20px);
}
.index_main .index_bnr .bnr_wrap .bnr_card {
  width: 100%;
  max-width: 63rem;
}
.index_main .index_bnr .bnr_wrap .bnr_card a {
  display: flex;
  flex-direction: column;
  align-items: center;
  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.applied {
  width: 100vw;
  margin: 0 var(--container-margin);
  padding-right: var(--container-padding);
  padding-left: var(--container-padding);
  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 - 325px) / 699 * 10 + 10px, 20px);
}

/*----------------------------------------------------------------------------
******************************************************************************
** page
******************************************************************************
----------------------------------------------------------------------------*/
.wrapper {
  overflow: hidden;
}

.container {
  display: flex;
}

.item {
  height: 100vh;
  display: grid;
  place-items: center;
  font-size: 40px;
  color: #fff;
}

/*----------------------------------------------------------------------------
******************************************************************************
** style
******************************************************************************
----------------------------------------------------------------------------*/
.mcon {
  word-wrap: break-word;
}
.mcon a img:hover {
  opacity: 0.8;
  transition: all 0.3s ease;
}
.mcon h1 {
  font-size: 20px;
  margin-bottom: 20px;
}
.mcon h2 {
  font-size: 18px;
  margin-bottom: 10px;
  margin-top: 20px;
}
.mcon h3 {
  font-size: 16px;
  margin-bottom: 8px;
  margin-top: 16px;
}
.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;
}

.panel-h2,
.video-panel-section {
  display: none;
} /*# sourceMappingURL=sp.css.map */