@import url(https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,800;1,800&display=swap);
/* common----------------------- */
html {
  scroll-behavior: smooth;
}

body {
  -webkit-animation: fadein 1.5s forwards;
  animation: fadein 1.5s forwards;
  letter-spacing: 0.5px;
}
@-webkit-keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fadein {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

.c-inner {
  box-sizing: border-box;
  width: calc(100% - 80px);
  max-width: 1400px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .c-inner {
    width: calc(100% - 40px);
  }
}

.c-section__heading {
  margin-bottom: 5rem;
  text-align: center;
}
.c-section__heading-main {
  display: block;
  font-family: "Open Sans", Gadget, sans-serif;
  font-size: 4rem;
  line-height: 1;
  letter-spacing: 0.1rem;
}
.c-section__heading-sub {
  display: block;
  margin-top: 10px;
  font-size: 1.6rem;
}
.c-section__subheading {
  margin-bottom: 3rem;
  font-size: 2.4rem;
  font-weight: bold;
  text-align: center;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .c-section__heading {
    margin-bottom: 2rem;
    text-align: center;
  }
  .c-section__heading-main {
    font-size: 2.4rem;
  }
  .c-section__heading-sub {
    margin-top: 0.3rem;
    font-size: 1.1rem;
  }
  .c-section__subheading {
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
  }
}

.c-scroll::-webkit-scrollbar {
  width: 16px;
  height: 5px;
}
.c-scroll::-webkit-scrollbar-track {
  background-color: #f2f2f2;
}
.c-scroll::-webkit-scrollbar-thumb {
  background-color: #ca0813;
}
@media screen and (max-width: 1200px) {
  .c-scroll {
    overflow-x: auto;
  }
}

.c-btn {
  width: 100%;
  max-width: 360px;
  margin: auto;
}
.c-btn a {
  position: relative;
  display: block;
  padding: 2rem;
  font-size: 1.6rem;
  color: #fff;
  text-align: center;
  background: #000;
  border-radius: 100vw;
  transition: background-color ease-in-out 0.3s;
}
.c-btn a::after {
  position: absolute;
  top: calc((100% - 1rem) / 2);
  right: 2rem;
  display: inline-block;
  width: 1rem;
  height: 1rem;
  content: "";
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transition: right ease 0.3s;
  transform: rotate(45deg);
}
.c-btn a:hover {
  text-decoration: none;
  background: #ca0813;
}
.c-btn a:hover::after {
  right: 1.5rem;
}
.c-btn-red a {
  background: #ca0813;
}
.c-btn-red a:hover {
  background: #000;
}
@media screen and (max-width: 767px) {
  .c-btn a {
    padding: 1rem;
    font-size: 1.2rem;
  }
  .c-btn a::after {
    top: calc((100% - 0.8rem) / 2);
    width: 0.8rem;
    height: 0.8rem;
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
  }
}

.c-category-icon {
  width: 10rem;
  padding: 0.2rem 1rem;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  border-radius: 50px;
}
.c-category-icon__news {
  background: #000;
}
.c-category-icon__attention {
  background: #ca0813;
}
.c-category-icon__event {
  background: #375ea6;
}

.u-bg-beige {
  background: #f4f1ef;
}

.u-bg-red {
  background: #ca0813;
}

.u-color-white {
  color: #fff;
}

/* header----------------------- */
.l-header-v2 {
  position: fixed;
  z-index: 10;
  display: flex;
  align-items: flex-end;
  width: 100%;
  background: #fff;
  padding: 0 0 2rem;
  height: 108px;
}
.l-header-v2__overlay {
  display: flex;
}
.l-header-v2__wrap {
  display: flex;
}
.l-header-v2__title {
  display: none;
}
.l-header-v2__logo {
  width: 20vw;
  max-width: 32rem;
  margin: 0 3rem;
  font-size: 100%;
  vertical-align: baseline;
  border: 0;
}
.l-header-v2__logo a {
  display: block;
}
.l-header-v2__nav {
  display: flex;
  margin-left: auto;
  font-size: 1.4rem;
}
.l-header-v2__main {
  display: flex;
}
.l-header-v2__gnav {
  display: flex;
  gap: 2vw;
  align-items: center;
}
.l-header-v2__gnav-item {
  line-height: 1;
}
.l-header-v2__gnav-item a {
  transition: color ease-in 0.2s;
}
.l-header-v2__gnav-item a:hover {
  color: #ca0813;
  text-decoration: none;
}
.l-header-v2__lang {
  margin-left: 2rem;
  line-height: 1;
}
.l-header-v2__lang:hover {
  cursor: pointer;
}
.l-header-v2__lang li {
  background-color: #f2f2f2;
}
.l-header-v2__lang-current {
  position: relative;
  display: inline-block;
  width: 45px;
  padding: 6px 18px 6px 10px;
}
.l-header-v2__lang-current::after {
  position: absolute;
  top: calc((100% - 5px) / 2);
  right: 5px;
  display: block;
  content: "";
  border: 3px solid transparent;
  border-top: 5px solid #000;
}
.l-header-v2__lang-other {
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 10;
  display: none;
  width: 45px;
}
.l-header-v2__lang a {
  display: block;
  padding: 6px 18px 6px 10px;
  background-color: #f2f2f2;
  transition: background-color ease-in 0.2s;
}
.l-header-v2__lang a:hover {
  text-decoration: none;
  background: #dedede;
}
.l-header-v2__sub {
  display: flex;
  justify-content: flex-end;
  margin: 2rem 0 1rem;
  font-size: 1.4rem;
  color: #fff;
  border-radius: 5px;
}
.l-header-v2__sub-title {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 1rem 0 2rem;
  background: #ca0813;
  border-radius: 5px 0 0 5px;
}
.l-header-v2__sub-title::after {
  position: absolute;
  right: -2.6rem;
  display: block;
  width: 0;
  content: "";
  border: 1.6rem solid transparent;
  border-left: 1rem solid #ca0813;
}
.l-header-v2__sub-list {
  display: flex;
  align-items: center;
  padding: 2px 0;
  font-size: 1.4rem;
  line-height: 1;
  background: #000;
  border: 1px solid #000;
  border-radius: 0 5px 5px 0;
}
.l-header-v2__sub-list:first-of-type {
  padding-left: 1rem;
}
.l-header-v2__sub-list li + li {
  border-left: 1px solid rgba(255, 255, 255, 0.3);
}
.l-header-v2__sub-list a {
  display: flex;
  align-items: center;
  height: 2.6rem;
  padding: 5px 1rem;
  margin: 0 0.2rem;
  color: inherit;
  transition: all ease-in 0.2s;
}
.l-header-v2__sub-list a:hover {
  color: #000;
  text-decoration: none;
  background: #fff;
  border-radius: 3px;
}
.l-header-v2__login {
  margin-left: 20px;
}
.l-header-v2__login a {
  display: grid;
  place-content: center;
  place-items: center;
  height: 100%;
  min-width: 95px;
  color: #fff;
  background: #ca0813;
  border-radius: 0 0 8px 8px;
  transition: background-color ease-in 0.3s;
}
.l-header-v2__login a:hover {
  text-decoration: none;
  background: #000;
}
.l-header-v2__smc {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 1200px) {
  .l-header-v2 {
    align-items: center;
    padding: 1vw 0;
    height: auto;
  }
  .l-header-v2__overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 999;
    display: none;
    align-items: flex-start;
    justify-content: center;
    width: calc(100% - 2rem);
    height: calc(100% - 2rem);
    padding: 2rem;
    margin: 1rem;
    overflow-y: auto;
    background: rgb(243, 243, 243);
    opacity: 1;
  }
  .l-header-v2__wrap {
    display: flex;
    flex-wrap: wrap;
    max-width: 500px;
    margin: 5vw auto 0;
  }
  .l-header-v2__title {
    display: block;
    order: 0;
    max-width: 250px;
    margin: 0;
  }
  .l-header-v2__nav {
    display: flex;
    margin-left: auto;
    font-size: 1.4rem;
  }
  .l-header-v2__main {
    display: block;
  }
  .l-header-v2__menu {
    display: flex;
    flex-direction: column;
    order: 3;
    width: 100%;
  }
  .l-header-v2__gnav {
    display: block;
    flex-wrap: wrap;
    gap: 4vw;
  }
  .l-header-v2__gnav-item {
    width: 100%;
    line-height: 1;
  }
  .l-header-v2__gnav-item + li {
    border-top: 1px solid #ccc;
  }
  .l-header-v2__gnav-item a {
    position: relative;
    display: block;
    padding: 2rem;
    transition: color ease-in 0.2s;
  }
  .l-header-v2__gnav-item a:hover {
    color: #ca0813;
    text-decoration: none;
  }
  .l-header-v2__gnav-item a::after {
    position: absolute;
    top: calc((100% - 7px) / 2);
    right: 1rem;
    display: inline-block;
    width: 7px;
    height: 7px;
    content: "";
    border-top: 1px solid #ccc;
    border-right: 1px solid #ccc;
    transform: rotate(45deg);
  }
  .l-header-v2__login {
    order: 2;
    width: 100%;
    margin: 2rem 0 0;
  }
  .l-header-v2__login a {
    position: relative;
    display: block;
    padding: 1rem 1.5rem;
    border-radius: 5px;
  }
  .l-header-v2__login a img {
    display: none;
  }
  .l-header-v2__login a::after {
    position: absolute;
    top: calc((100% - 7px) / 2);
    right: 1rem;
    display: inline-block;
    width: 7px;
    height: 7px;
    content: "";
    border-top: 1px solid #fff;
    border-right: 1px solid #fff;
    transform: rotate(45deg);
  }
  .l-header-v2__sub {
    display: block;
    margin-top: 0.5rem;
    background: #000;
    border-radius: 5px;
  }
  .l-header-v2__sub-title {
    padding: 1rem 1.5rem;
    background: none;
    border-radius: 0;
  }
  .l-header-v2__sub-title::after {
    right: 7px;
    width: 11px;
    height: 1px;
    background: #fff;
    border: none;
  }
  .l-header-v2__sub-title::before {
    position: absolute;
    right: 12px;
    width: 1px;
    height: 11px;
    content: "";
    background: #fff;
    border: none;
  }
  .l-header-v2__sub-title.check::before {
    display: none;
  }
  .l-header-v2__sub-list {
    display: none;
    background: #000;
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 0 0 5px 5px;
  }
  .l-header-v2__sub-list:first-of-type {
    padding: 2px 0;
  }
  .l-header-v2__sub-list li + li {
    border: none;
  }
  .l-header-v2__sub-list a {
    height: auto;
    padding: 1rem 1.5rem;
  }
  .l-header-v2__lang {
    width: auto;
  }
  .l-header-v2__lang span {
    display: block;
    padding: 6px 10px;
    background: #fff;
  }
  .l-header-v2__lang span::after {
    position: relative;
    right: -8px;
    content: "/";
  }
  .l-header-v2__lang li {
    width: 100%;
    padding: 0;
  }
  .l-header-v2__lang-current {
    position: relative;
    display: flex;
    justify-content: flex-end;
  }
  .l-header-v2__lang-current::after {
    display: none;
  }
  .l-header-v2__lang-other {
    position: relative;
    top: auto;
    left: auto;
    display: block !important;
    width: auto;
  }
  .l-header-v2__lang a {
    padding: 6px 10px 6px 6px;
    background: #fff;
  }
  .l-header-v2__smc {
    max-width: 95px;
    margin-left: auto;
  }
  .l-header-v2__btn {
    position: relative;
    z-index: 9999;
    box-sizing: border-box;
    display: flex;
    flex-flow: column wrap;
    justify-content: space-between;
    width: 34px;
    height: 20px;
    margin-right: 2rem;
    cursor: pointer;
  }
  .l-header-v2__btn span {
    position: relative;
    width: 100%;
    height: 2px;
    margin: 0;
    background: #000;
    transition: 0.5s;
  }
  .l-header-v2.fixed {
    position: fixed;
    z-index: 999;
    width: 100%;
    height: 100%;
    background: #fff;
  }
}
@media screen and (max-width: 767px) {
  .l-header-v2 {
    align-items: center;
    height: 48px;
  }
  .l-header-v2__overlay {
    width: calc(100% - 1rem);
    height: calc(100% - 1rem);
    margin: 0.5rem;
  }
  .l-header-v2__wrap {
    margin-top: 4rem;
  }
  .l-header-v2__logo {
    width: 100%;
    max-width: 150px;
    margin: 0 1.5rem;
  }
  .l-header-v2__logo img {
    vertical-align: top;
  }
  .l-header-v2__gnav-item a {
    padding: 1.5rem 1rem;
  }
  .l-header-v2__title {
    max-width: 150px;
  }
  .l-header-v2__btn {
    width: 20px;
    height: 16px;
    margin-right: 1.5rem;
  }
  .l-header-v2__login a {
    padding: 0.6rem 1rem;
  }
  .l-header-v2__sub-title {
    padding: 0.6rem 1rem;
  }
  .l-header-v2__sub-list a {
    padding: 0.6rem 1rem;
    font-size: 1.2rem;
  }
  .l-header-v2__smc {
    max-width: 65px;
  }
}

/* page----------------------- */
.p-section {
  padding: 8rem 0;
}
@media screen and (max-width: 767px) {
  .p-section {
    padding: 5rem 0;
  }
}

/* mainvisual----------------------- */
.p-mainvisual {
  padding: 10.8rem 0 0;
}
.p-mainvisual__wrap {
  display: flex;
}
.p-mainvisual-slider {
  order: 1;
  width: 70%;
}
.p-mainvisual .slider-img img {
  width: 100%;
}
.p-mainvisual-thumbnail .slick-track {
  width: 100% !important;
  transform: unset !important;
}
.p-mainvisual-thumbnail.slick-slider {
  display: flex;
  align-items: center;
  order: 1;
}
.p-mainvisual-thumbnail .slick-slide img {
  width: 100%;
}
.p-mainvisual-thumbnail .slick-list.draggable .slick-track {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.p-mainvisual-thumbnail .slick-active {
  background: #000;
  border: 4px solid #ca0813;
  transition: all ease 0.3s;
}
.p-mainvisual-thumbnail .slick-active img {
  opacity: 0.7;
}
.p-mainvisual-thumbnail .slick-current {
  box-sizing: border-box;
  border: 4px solid #fff;
}
.p-mainvisual-thumbnail .slick-current img {
  opacity: 1;
}
.p-mainvisual-thumbslider {
  justify-content: center;
  order: 2;
  width: 30%;
  padding: 1.6vw 2vw;
  background: #ca0813;
}
.p-mainvisual .thumbnail-img.slick-slide {
  box-sizing: border-box;
  width: calc((100% - 10px) / 2) !important;
}
.p-mainvisual-title {
  margin-bottom: 2rem;
  font-size: clamp(1.2rem, 1.4vw, 2.4rem);
  font-weight: bold;
  color: #fff;
  text-align: center;
  letter-spacing: 0.1em;
}
.p-mainvisual .slick-track::before,
.p-mainvisual .slick-track::after {
  display: none !important;
}
@media screen and (max-width: 1200px) {
  .p-mainvisual {
    padding-top: 6.3vw;
  }
  .p-mainvisual-title {
    margin-bottom: 0.5vw;
  }
  .p-mainvisual-thumbnail .slick-list.draggable .slick-track {
    gap: 5px;
  }
  .p-mainvisual .thumbnail-img.slick-slide {
    width: calc((100% - 5px) / 2) !important;
  }
}
@media screen and (max-width: 767px) {
  .p-mainvisual {
    padding-top: 48px;
  }
  .p-mainvisual__wrap {
    display: block;
    padding: 0;
  }
  .p-mainvisual-title {
    margin-bottom: 0.7rem;
  }
  .p-mainvisual-slider {
    width: 100%;
  }
  .p-mainvisual .slider-img {
    width: 100%;
  }
  .p-mainvisual-thumbslider {
    width: 100%;
    padding: 1.2rem;
  }
  .p-mainvisual-thumbnail .slick-list.draggable .slick-track {
    gap: 0.3rem;
  }
  .p-mainvisual-thumbnail .slick-active {
    border: 2px solid #ca0813;
  }
  .p-mainvisual-thumbnail .slick-current {
    border: 2px solid #fff;
  }
  .p-mainvisual .thumbnail-img.slick-slide {
    width: calc((100% - 10px) / 4) !important;
  }
}

.slider-text-normal {
  position: absolute;
  bottom: 2vw;
  left: 2vw;
  max-width: 80%;
  color: #fff;
  font-size: clamp(1.25rem, 1.023rem + 1.14vw, 1.875rem);
  text-shadow: 0px 0px 3px #333;
}
@media screen and (max-width: 1200px) {
  .slider-text-normal {
    font-size: 16px;
  }
}
@media screen and (max-width: 1000px) {
  .slider-text-normal {
    font-size: 14px;
  }
}
@media screen and (max-width: 767px) {
  .slider-text-normal {
    right: 2vw;
    font-size: 10px;
    line-height: 1.3;
    max-width: 100%;
    background: rgba(0, 0, 0, 0.4);
    padding: 2vw;
    text-shadow: none;
    font-weight: normal;
  }
}

/* search----------------------- */
.p-home-search {
  padding: 3rem 0 2rem;
  text-align: center;
}
.p-home-search__input {
  width: calc(100% - 120px);
  max-width: 780px;
  height: 60px;
  padding: 0 20px;
  margin: 0;
  font-size: 1.6rem;
  vertical-align: middle;
  background: #f2f2f2;
  border: none;
  border-radius: inherit;
  outline: none;
}
.p-home-search__btn {
  color: #fff;
  background: #ca0813;
}
.p-home-search__check {
  margin-top: 5px;
}
.p-home-search__check span + span {
  margin-left: 10px;
}
@media screen and (max-width: 767px) {
  .p-home-search {
    padding-top: 2rem;
  }
  .p-home-search__check {
    margin-top: 5px;
    font-size: 12px;
    text-align: left;
  }
  .p-home-search__check span:last-of-type {
    display: block;
    margin: 0;
  }
  .p-home-search__input {
    width: calc(100% - 64px);
    height: 40px;
    font-size: 12px;
  }
}
.p-home__nav {
  padding: 10px;
  background: #000;
}
.p-home__menu {
  display: flex;
  gap: 0.8em;
}
.p-home__menu-item {
  width: 16.6666666667%;
}
.p-home__menu-item a {
  display: grid;
  grid-template-columns: 50px auto;
  align-items: center;
  height: 100%;
  padding: 0.8rem 1rem;
  font-size: 1.4rem;
  line-height: 1.5;
  background: #fff;
  border-radius: 5px;
  transition: all ease-in 0.2s;
}
.p-home__menu-item a img {
  margin: auto;
  transition: all ease-in 0.2s;
}
.p-home__menu-item a:hover {
  color: #fff;
  text-decoration: none;
  background: #ca0813;
}
.p-home__menu-item a:hover img {
  filter: invert(88%) sepia(61%) saturate(0%) hue-rotate(229deg) brightness(107%) contrast(101%);
}
@media screen and (max-width: 1200px) {
  .p-home__menu {
    width: 950px;
  }
  .p-home__menu-item a {
    grid-template-columns: 35px auto;
    padding: 0.5rem 0.8rem;
    font-size: 1.2rem;
  }
  .p-home__menu-item a img {
    transform: scale(0.8);
  }
}
@media screen and (max-width: 767px) {
  .p-home__menu.c-inner {
    padding: 0;
  }
}
.p-home-feature__list {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  margin-bottom: 5rem;
}
.p-home-feature__list-item {
  width: calc((100% - 2rem) / 2);
}
@media screen and (max-width: 767px) {
  .p-home-feature__list {
    gap: 1rem;
    margin-bottom: 3rem;
  }
  .p-home-feature__list-item {
    width: 100%;
  }
}
.p-home-information__wrap {
  padding: 3rem 5rem 5rem;
  margin-bottom: 3rem;
  background: #fff;
  border-radius: 1rem;
}
.p-home-information__list-item {
  display: flex;
  gap: 2rem;
  align-items: flex-start;
}
.p-home-information__list-item:not(:first-child) {
  margin-top: 1.5rem;
}
.p-home-information__list-item time {
  width: 100px;
  font-weight: 600;
  letter-spacing: 0.1em;
}
.p-home-information__text {
  width: calc(100% - 220px);
}
@media screen and (max-width: 767px) {
  .p-home-information__wrap {
    padding: 2rem 2rem 3rem;
  }
  .p-home-information__list-item {
    flex-wrap: wrap;
    gap: 0.5rem 1rem;
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .p-home-information__list-item:not(:first-child) {
    margin-top: 3rem;
  }
}
@media screen and (max-width: 640px) {
  .p-home-information__text {
    width: 100%;
  }
  .p-home-information__list-item {
    font-size: 1.3rem;
  }
  .p-home-information__list-item time {
    width: 8rem;
  }
}
.p-home-needs {
  background: url("../../img/top_v2/bg_needs.png") no-repeat center/cover;
}
.p-home-needs .c-section__heading {
  margin-bottom: 2rem;
}
.p-home-needs .c-section__heading-sub {
  font-size: 2.5rem;
}
.p-home-needs .c-section__heading-sub img {
  align-items: center;
  margin: -0.3rem 1rem 0 0;
}
.p-home-needs__intro {
  color: #fff;
  text-align: center;
}
.p-home-needs__wrap {
  display: flex;
  justify-content: center; /* 追加 */	
  gap: 5rem;
  max-width: 900px;
  margin: 5rem auto 0;
}
.p-home-needs__btn {
  position: relative;
  width: calc((100% - 5rem) / 2);
  padding: 7rem 5rem 3rem;
  text-align: center;
  background: #fff;
}
.p-home-needs__btn figure {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  margin: auto;
  transition: all ease 0.3s;
  transform: translate(0, -2rem);
}
.p-home-needs__btn:hover figure {
  transform: translate(0, -3rem);
}
.p-home-needs__btn a:hover {
  text-decoration: none;
}
.p-home-needs__btn a:hover img {
  opacity: 1;
}
.p-home-needs__deadline,
.p-home-needs__new {
  position: relative;
  background: #000;
  border: 2px solid #000;
  transition: all ease 0.3s;
}
.p-home-needs__deadline a,
.p-home-needs__new a {
  color: #fff;
}
.p-home-needs__deadline::after,
.p-home-needs__new::after {
  position: absolute;
  right: 0;
  bottom: 0;
  display: block;
  width: 0;
  content: "";
  border: 10px solid transparent;
  border-right: 10px solid #fff;
  border-bottom: 10px solid #fff;
}
.p-home-needs__deadline:hover,
.p-home-needs__new:hover {
  border: 2px solid #fff;
}
.p-home-needs__new {
  background: #fff;
  border: 2px solid #fff;
}
.p-home-needs__new::after {
  border-right: 10px solid #000;
  border-bottom: 10px solid #000;
}
.p-home-needs__new:hover {
  border: 2px solid #000;
}
.p-home-needs__new a {
  color: #000;
}
.p-home-needs__title {
  margin-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: 600;
  line-height: 1.3;
  letter-spacing: 0.1em;
}
.p-home-needs__text {
  font-size: 1.2rem;
  line-height: 1.5;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 767px) {
  .p-home-needs .c-section__heading {
    margin-bottom: 2rem;
  }
  .p-home-needs .c-section__heading-sub {
    font-size: 1.2rem;
  }
  .p-home-needs .c-section__heading-sub img {
    align-items: center;
    width: 20px;
    margin: -0.3rem 0.5rem 0 0;
  }
  .p-home-needs__intro {
    font-size: 1.2rem;
    text-align: left;
  }
  .p-home-needs__wrap {
    gap: 1rem;
  }
  .p-home-needs__btn {
    width: calc((100% - 1rem) / 2);
    padding: 6rem 0.8rem 2rem;
  }
  .p-home-needs__btn figure {
    top: -1rem;
  }
  .p-home-needs__title {
    font-size: 1.4rem;
    line-height: 1.3;
  }
  .p-home-needs__text {
    font-size: 1rem;
    text-align: left;
    letter-spacing: 0;
  }
}
.p-home-journal__list {
  display: flex;
  gap: 2rem;
  margin-bottom: 4rem;
}
.p-home-journal__list-item {
  position: relative;
  width: calc((100% - 6rem) / 4);
}
.p-home-journal__list-item img {
  width: 100%;
}
.p-home-journal__list-item a {
  opacity: 1;
}
.p-home-journal__category {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1;
  padding: 0.5rem 1rem;
  font-size: 1.2rem;
  color: #fff;
  background: #000;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  .p-home-journal__list {
    flex-wrap: wrap;
    gap: 4rem;
  }
  .p-home-journal__list-item {
    width: calc((100% - 4rem) / 2);
    font-size: 1.3rem;
  }
}
@media screen and (max-width: 640px) {
  .p-home-journal__list-item {
    width: 100%;
  }
}
.p-home-advisor {
  position: relative;
  padding-bottom: 10rem;
  background: url("../../img/top_v2/bg_advisor.png");
}
.p-home-advisor::after {
  position: absolute;
  top: 0;
  z-index: 0;
  display: block;
  width: 100%;
  height: 30%;
  content: "";
  background: #fff;
}
.p-home-advisor__wrap {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 22% auto 290px;
  align-items: center;
  padding: 2rem 5rem 0;
  background: #fff;
  border: 3px solid #ca0813;
  border-radius: 10px;
}
.p-home-advisor__img {
  position: relative;
  bottom: -3rem;
}
.p-home-advisor__texts {
  padding: 2rem 3rem 5rem;
}
.p-home-advisor__title {
  margin-bottom: 1.5rem;
  font-size: 3rem;
  font-weight: 600;
}
.p-home-advisor__title img {
  margin-right: 1rem;
}
@media screen and (max-width: 1000px) {
  .p-home-advisor {
    padding-bottom: 3rem;
  }
  .p-home-advisor__wrap {
    grid-template-columns: 1fr 1fr 1fr 1fr;
    padding-bottom: 3rem;
  }
  .p-home-advisor__wrap .c-btn {
    grid-row: 2;
    grid-column: 1/5;
  }
  .p-home-advisor__img {
    bottom: 0;
    grid-row: 1;
    grid-column: 1/2;
  }
  .p-home-advisor__texts {
    grid-row: 1;
    grid-column: 2/5;
    padding-bottom: 2rem;
  }
  .p-home-advisor__title {
    font-size: 2.5rem;
    text-align: center;
  }
}
@media screen and (max-width: 640px) {
  .p-home-advisor {
    padding-bottom: 3rem;
  }
  .p-home-advisor__wrap {
    padding: 0 0 3rem;
  }
  .p-home-advisor__wrap .c-btn {
    grid-row: 3;
    grid-column: 1/5;
    padding: 1rem 1.5rem;
  }
  .p-home-advisor__img {
    grid-row: 2;
    grid-column: 1/5;
    margin: 0 auto 1rem;
  }
  .p-home-advisor__img img {
    width: 120px;
  }
  .p-home-advisor__texts {
    grid-row: 1;
    grid-column: 1/5;
    padding-bottom: 2rem;
  }
  .p-home-advisor__text {
    font-size: 1.3rem;
  }
  .p-home-advisor__title {
    font-size: 2rem;
  }
  .p-home-advisor__title img {
    width: 35px;
  }
}

/* footer----------------------- */
.l-footer {
  padding: 10rem 0 0;
  background: #000;
}
.l-footer .c-inner {
  display: grid;
  grid-template-columns: 23.2857142857% 53.5714285714% 23.1428571429%;
  align-items: start;
  max-width: 1400px;
}
@media screen and (max-width: 1000px) {
  .l-footer .c-inner {
    grid-template-columns: 23.2857142857% 65.7142857143% 10.8571428571%;
  }
}
@media screen and (max-width: 767px) {
  .l-footer .c-inner {
    grid-template-rows: auto;
    grid-template-columns: 100%;
  }
}
.l-footer__main {
  padding-right: 3rem;
}
.l-footer__management {
  margin: 2rem 0 2.5rem;
  font-weight: bold;
  color: #fff;
}
.l-footer__management img {
  display: block;
}
.l-footer__sns {
  display: flex;
  gap: 1rem;
}
.l-footer__nav {
  display: flex;
  gap: 2rem;
  color: #fff;
}
.l-footer__nav-block {
  width: 33%;
}
.l-footer__nav-block ul {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 1.4rem;
}
.l-footer__nav-block h3 {
  margin-bottom: 0.8rem;
  font-size: 1.6rem;
  font-weight: 600;
}
.l-footer__nav-block a {
  color: #fff;
}
.l-footer__link {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.l-footer__link li {
  width: calc((100% - 2rem) / 2);
}
.l-footer__copy {
  padding: 0.3rem 0;
  margin-top: 6rem;
  font-size: 1.2rem;
  text-align: center;
  background: #fff;
}
@media screen and (max-width: 1000px) {
  .l-footer {
    padding: 5rem 0 0;
  }
  .l-footer__nav {
    gap: 1rem;
  }
  .l-footer__nav-block {
    width: 100%;
  }
  .l-footer__nav-block ul {
    font-size: 1.2rem;
  }
  .l-footer__nav-block h3 {
    font-size: 1.3rem;
  }
  .l-footer__link {
    gap: 1rem;
  }
  .l-footer__link li {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .l-footer {
    padding: 4rem 0 0;
  }
  .l-footer__logo img {
    width: 90%;
  }
  .l-footer__main {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr 0.5fr;
    align-items: center;
    order: 1;
    padding: 2rem 0 0;
  }
  .l-footer__management {
    margin: 0;
    font-size: 1rem;
    text-align: center;
  }
  .l-footer__management img {
    width: 100px;
    margin: 0 auto;
  }
  .l-footer__sns {
    justify-content: center;
    padding-left: 1rem;
  }
  .l-footer__link {
    flex-wrap: nowrap;
    gap: 1rem;
    order: 3;
    margin-top: 2rem;
  }
  .l-footer__link li {
    width: auto;
  }
  .l-footer__copy {
    padding: 0.5rem 1rem;
    margin-top: 4rem;
    font-size: 1rem;
    line-height: 1.3;
  }
}
@media screen and (max-width: 640px) {
  .l-footer__logo {
    margin-bottom: 1rem;
  }
  .l-footer__logo img {
    width: 90%;
  }
  .l-footer__management {
    margin-bottom: 1rem;
    font-size: 1rem;
    font-weight: normal;
    text-align: center;
  }
  .l-footer__management img {
    width: 80px;
    margin: 0 auto;
  }
  .l-footer__link {
    flex-wrap: nowrap;
    gap: 1rem;
    margin-top: 1rem;
  }
  .l-footer__link li {
    width: auto;
  }
  .l-footer__nav {
    flex-wrap: wrap;
    width: 100%;
  }
  .l-footer__nav-block {
    width: 100%;
    padding-bottom: 2rem;
    border-bottom: 1px solid #333;
  }
}
