@charset "UTF-8";
/* Scss Document */
/*---------------------------------------------
    common
---------------------------------------------*/
.top_sec {
  position: relative;
}

.top_sec_titArea {
  margin: 0 0 10px;
}
@media screen and (max-width: 750px) {
  .top_sec_titArea {
    margin: 0 0 3.2vw;
  }
}

.top_sec_tit {
  font-size: 7rem;
  color: #D0B005;
  line-height: 1;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
  .top_sec_tit {
    font-size: 13.3vw;
  }
}

.top_sec_subTit {
  font-size: 2rem;
  letter-spacing: 0.15em;
}
@media screen and (max-width: 750px) {
  .top_sec_subTit {
    font-size: 5.3vw;
  }
}

.top_sec_txt {
  line-height: 2;
}

/*---------------------------------------------
    kv
---------------------------------------------*/
.top_kv {
  height: 100lvh;
  position: relative;
  background: url("../img/top/kv.jpg") no-repeat;
  background-size: cover;
  background-position: center center;
  margin: 0 0 130px;
}
@media screen and (max-width: 750px) {
  .top_kv {
    margin: 0 0 9.3vw;
    background-image: url("../img/top/kv_sp.jpg");
  }
  .top_kv .inner {
    position: static;
  }
}

.top_kv_imgList {
  overflow: hidden;
  height: 100%;
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 1;
  opacity: 0;
  transition: opacity 2s linear;
}
@media screen and (max-width: 750px) {
  .top_kv_imgList {
    height: 100vh;
    position: relative;
  }
}
.top_kv_imgList.slick-initialized {
  opacity: 1;
}

.top_kv_img {
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center center;
  width: 100%;
  height: 100%;
}

.top_kv_img01 {
  background-image: url("../img/top/kv.jpg");
}
@media screen and (max-width: 750px) {
  .top_kv_img01 {
    background-image: url("../img/top/kv_sp.jpg");
  }
}

.top_kv_img02 {
  background-image: url("../img/top/kv02.jpg");
}
@media screen and (max-width: 750px) {
  .top_kv_img02 {
    background-image: url("../img/top/kv02_sp.jpg");
  }
}

.top_kv_img03 {
  background-image: url("../img/top/kv03.jpg");
}
@media screen and (max-width: 750px) {
  .top_kv_img03 {
    background-image: url("../img/top/kv03_sp.jpg");
  }
}

.slick-track,
.slick-list {
  width: 100%;
  height: 100%;
}

.top_kv_txtArea {
  position: absolute;
  left: 0;
  width: 100%;
  bottom: 60px;
  color: #fff;
  z-index: 2;
}
@media screen and (max-width: 750px) {
  .top_kv_txtArea {
    position: static;
  }
}

.top_kv_copy {
  width: 500px;
  margin: 0 0 20px;
}
@media screen and (max-width: 750px) {
  .top_kv_copy {
    width: 84vw;
    margin: 0 0 2.6vw;
  }
}

.top_kv_copyArea {
  margin: 0 0 35px;
}
@media screen and (max-width: 750px) {
  .top_kv_copyArea {
    margin: 0;
    position: absolute;
    left: 5vw;
    bottom: 30.4vw;
    z-index: 2;
  }
}

.top_kv_copy_txt {
  font-size: 1.4rem;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .top_kv_copy_txt {
    font-size: 2.6vw;
  }
}

.top_kv_service {
  font-size: 1.2rem;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .top_kv_service {
    font-size: 2.6vw;
    position: absolute;
    left: 5vw;
    top: 28vw;
    z-index: 2;
  }
}

.top_kv_service_tit {
  margin: 0 0 1em;
}

.top_kv_service_list {
  position: relative;
  line-height: 2.5;
  padding-left: 1em;
}
.top_kv_service_list::after {
  content: "";
  display: block;
  height: calc(100% - 1.4em);
  width: 1px;
  background: #fff;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes zoomout {
  0% {
    transform: scale(1.6);
  }
  100% {
    transform: scale(1);
    /* 拡大率 */
  }
}
.zoom-out {
  animation: zoomout 40s 0s forwards;
}

/*---------------------------------------------
    news important
---------------------------------------------*/
.news-important {
  max-width: 1120px;
  display: block;
  width: 90%;
  border: 1px solid #CE8B6F;
  padding: 25px 40px;
  display: flex;
  flex-wrap: wrap;
  margin: 0 auto 60px;
}
@media screen and (max-width: 750px) {
  .news-important {
    padding: 5.3vw 5vw 8vw;
    margin: 0 auto 13vw;
  }
}

.news-time {
  margin: 0 1em 0 0;
  font-weight: 500;
}

.news-category {
  font-size: 1.3rem;
  padding: 0.2em 1em 0;
  color: #fff;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .news-category {
    font-size: 3.46vw;
    padding: 0.1em 1em 0;
  }
}
.news-category.-important {
  background: #CE8B6F;
}

.news_tit.-important {
  width: 100%;
  margin: 0.2em 0 0;
}
@media screen and (max-width: 750px) {
  .news_tit.-important {
    margin: 2.6vw 0 0;
  }
}

/*---------------------------------------------
    banner
---------------------------------------------*/
.top_sec.-banner {
  padding-block: 60px;
  background: #F7F4F0;
}
@media screen and (max-width: 750px) {
  .top_sec.-banner {
    padding-block: 12vw;
    margin-bottom: 28vw;
  }
}

.top_banner_img {
  margin-inline: auto;
  max-width: 780px;
}
.top_banner_img a {
  display: block;
}
.top_banner_img img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(0, 0, 0, 0.1));
}
@media screen and (max-width: 750px) {
  .top_banner_img img {
    filter: drop-shadow(0 0 1.5vw rgba(0, 0, 0, 0.1));
  }
}

.top_banner_img + .top_banner_img {
  margin-top: 52px;
}

/*---------------------------------------------
    event
---------------------------------------------*/
.top_sec.-event {
  margin-block: 148px 120px;
  container-type: inline-size;
}
@media screen and (max-width: 750px) {
  .top_sec.-event {
    margin: 0 0 28vw;
  }
}
@media screen and (min-width: 750px) {
  .top_sec.-event .top_sec_titArea {
    text-align: center;
  }
}
@media screen and (min-width: 750px) {
  .top_sec.-event .top_sec_txt {
    text-align: center;
  }
}
.top_sec.-event .linkBtn {
  display: block;
  margin-inline: auto;
}

.top_event_flex {
  display: flex;
  flex-direction: column;
  row-gap: 30px;
  margin: 0 0 63px;
}
@media screen and (max-width: 750px) {
  .top_event_flex {
    display: block;
    margin: 0 0 12vw;
  }
}

.eventList_wrap {
  margin-bottom: 70px;
  margin-inline: calc(50% - 50cqi);
  width: 100cqi;
}

.eventList {
  color: #3D4F72;
  position: relative;
}
.eventList::after {
  content: "";
  display: block;
  order: 1;
  width: 28.5%;
}
@media screen and (max-width: 750px) {
  .eventList::after {
    display: none;
  }
}
.eventList li {
  margin-inline: 40px;
  width: 320px;
}
@media screen and (max-width: 750px) {
  .eventList li {
    width: auto;
    margin-inline: 4vw;
  }
}
@media screen and (min-width: 750px) {
  .eventList a:hover {
    opacity: 1;
  }
  .eventList a:hover .eventList_img {
    transform: scale(1.1);
  }
  .eventList a:hover .eventList_tit {
    color: rgba(51, 51, 51, 0.5);
  }
  .eventList a:hover .eventList_table {
    color: rgba(51, 51, 51, 0.5);
  }
  .eventList a:hover .eventList_table th p::before, .eventList a:hover .eventList_table th p::after {
    background: rgba(51, 51, 51, 0.5);
  }
}

.eventList_imgArea {
  aspect-ratio: 2/1;
  overflow: hidden;
  position: relative;
  margin: 0 0 20px;
}
@media screen and (max-width: 750px) {
  .eventList_imgArea {
    margin: 0 0 2.6vw;
  }
}

.eventList_img {
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  transition: 0.3s ease-in-out;
}

.eventList_tit {
  font-size: 2rem;
  font-weight: 700;
  margin: 0 0 0.5em;
  transition: 0.4s;
}
@media screen and (max-width: 750px) {
  .eventList_tit {
    font-size: 3.46vw;
    margin: 0 0 3.6vw;
  }
}

.eventList_table {
  width: 100%;
  transition: 0.4s;
}
.eventList_table th, .eventList_table td {
  vertical-align: middle;
}
.eventList_table th {
  text-align: center;
  white-space: nowrap;
  width: 3em;
  padding: 4px 0;
  font-size: 1.4rem;
  font-weight: 700;
  position: relative;
}
@media screen and (max-width: 750px) {
  .eventList_table th {
    font-size: 2.93vw;
    padding: 1.3vw 0;
    vertical-align: top;
  }
}
.eventList_table th p {
  padding: 0 1em;
}
@media screen and (max-width: 750px) {
  .eventList_table th p {
    padding: 0 1.3vw;
    position: relative;
  }
}
.eventList_table th p::before, .eventList_table th p::after {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 8px);
  position: absolute;
  background: #3D4F72;
  top: 50%;
  transform: translateY(-50%);
  transition: 0.4s;
}
@media screen and (max-width: 750px) {
  .eventList_table th p::before, .eventList_table th p::after {
    height: 100%;
  }
}
.eventList_table th p::before {
  left: 0;
}
.eventList_table th p::after {
  right: 0;
}
.eventList_table td {
  padding: 4px 0 4px 1em;
}
@media screen and (max-width: 750px) {
  .eventList_table td {
    font-size: 2.93vw;
    padding: 1.3vw 0 1.3vw 1.3vw;
  }
}

/*---------------------------------------------
    menu
---------------------------------------------*/
.top_sec.-menu {
  margin-bottom: 113px;
  padding-block: 110px;
  background: #F7F4F0;
}
@media screen and (max-width: 750px) {
  .top_sec.-menu {
    margin: 0 0 28vw;
    padding-block: 16vw;
  }
}

.top_menuList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 110px;
}
@media screen and (max-width: 750px) {
  .top_menuList {
    grid-template-columns: 100%;
    row-gap: 4vw;
    column-gap: 0;
  }
}
.top_menuList li {
  box-shadow: 0 0 5px rgba(217, 217, 217, 0.1);
  aspect-ratio: 300/250;
  height: 100%;
}
@media screen and (max-width: 750px) {
  .top_menuList li {
    aspect-ratio: initial;
    height: auto;
  }
}
.top_menuList li a {
  padding: 33px 30px 19px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  row-gap: 9px;
  height: 100%;
}
@media screen and (max-width: 750px) {
  .top_menuList li a {
    padding: 5.3vw 8vw;
    display: grid;
    grid-template-columns: 70px 1fr;
    column-gap: 2.6vw;
    text-align: left;
  }
}

.top_menuList_tit {
  text-align: center;
  font-size: 2rem;
  line-height: 1.3636363636;
  font-weight: bold;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 750px) {
  .top_menuList_tit {
    font-size: 1.6rem;
    line-height: 1.5625;
    text-align: left;
  }
}

/*---------------------------------------------
    concept
---------------------------------------------*/
.top_sec.-concept {
  margin: 0 0 150px;
  padding: 38% 0 0;
}
@media screen and (max-width: 750px) {
  .top_sec.-concept {
    padding: 70vw 0 0;
    margin: 0 0 79vw;
  }
}
.top_sec.-concept .top_sec_titArea {
  margin: 0 0 30px;
}
@media screen and (max-width: 750px) {
  .top_sec.-concept .top_sec_titArea {
    margin: 0 0 6.6vw;
    text-align: center;
  }
}

.top_concept_img {
  position: absolute;
}

.top_concept_img01 {
  width: 50%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 750px) {
  .top_concept_img01 {
    width: 100%;
  }
}

.top_concept_img02 {
  width: 17%;
  top: 43%;
  right: 56%;
}
@media screen and (max-width: 750px) {
  .top_concept_img02 {
    top: 62.6vw;
    width: 46.9vw;
    right: 5vw;
    display: none;
  }
}
.top_concept_img02::after {
  content: "";
  display: block;
  width: 110%;
  aspect-ratio: 1/1;
  background: #F7F4F0;
  position: absolute;
  right: 78%;
  top: 26%;
  z-index: -1;
}

.top_concept_img03 {
  width: 11%;
  top: 68%;
  right: 68.2%;
}
@media screen and (max-width: 750px) {
  .top_concept_img03 {
    width: 30.1vw;
    top: 120.8vw;
    right: 38.1vw;
    display: none;
  }
}

.top_concept_img04 {
  width: 28.1%;
  top: 21%;
  left: 55.2%;
}
@media screen and (max-width: 750px) {
  .top_concept_img04 {
    top: calc(100% + 21.3vw);
    width: 65.6vw;
    left: 0;
  }
}
.top_concept_img04::after {
  content: "";
  display: block;
  width: 74%;
  aspect-ratio: 1/1;
  background: #F7F4F0;
  position: absolute;
  left: 67%;
  bottom: 39%;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  .top_concept_img04::after {
    left: 86%;
    width: 43.7vw;
    bottom: 19%;
  }
}

.top_concept_content {
  width: 50%;
  margin: 0 0 0 auto;
}
@media screen and (max-width: 750px) {
  .top_concept_content {
    width: 100%;
  }
}

.top_concept_txtArea {
  position: relative;
}
@media screen and (max-width: 750px) {
  .top_concept_txtArea {
    margin: auto;
    width: 80vw;
    padding: 0 0 0 18vw;
  }
}

.top_concept_copy {
  color: #3D4F72;
  font-size: 4rem;
  font-weight: 700;
  margin: 0 0 0.8em;
}
@media screen and (max-width: 750px) {
  .top_concept_copy {
    position: absolute;
    font-size: 8vw;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
    top: 0;
    left: 0;
  }
}

.top_concept_txt {
  line-height: 2.8;
  margin: 0 0 2.5em;
}

/*---------------------------------------------
    service
---------------------------------------------*/
.top_sec.-service {
  margin: 0 0 200px;
}
@media screen and (max-width: 750px) {
  .top_sec.-service {
    margin: 0 0 18.6vw;
  }
}
.top_sec.-service .top_sec_titArea {
  text-align: center;
}
.top_sec.-service .top_sec_txt {
  text-align: center;
}
.top_sec.-service .linkBtn {
  width: 100%;
}

.top_service_bg {
  margin: 0 0 140px;
}
@media screen and (max-width: 750px) {
  .top_service_bg {
    margin: 0 0 21.3vw;
  }
}

.top_seviceList {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 86px 35px;
  margin: 90px 0 95px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .top_seviceList {
    grid-template-columns: repeat(2, 1fr);
    gap: 13.3vw 6.6vw;
    margin: 10.6vw 0;
  }
}
.top_seviceList::after {
  content: "";
  display: block;
  width: 100vw;
  min-width: 1440px;
  height: 110%;
  background: #F7F4F0;
  z-index: -1;
  position: absolute;
  right: 230px;
  top: 110px;
}
@media screen and (max-width: 750px) {
  .top_seviceList::after {
    display: none;
  }
}
@media screen and (min-width: 750px) {
  .top_seviceList a {
    transition: 0.4s;
  }
  .top_seviceList a:hover {
    opacity: 1;
    color: rgba(51, 51, 51, 0.5);
  }
  .top_seviceList a:hover .top_seviceList_img img {
    transform: scale(1.1);
  }
}

.top_seviceList_img {
  margin: 0 0 1em;
  position: relative;
}
@media screen and (max-width: 750px) {
  .top_seviceList_img {
    margin: 0 0 1.3vw;
    flex-shrink: 0;
  }
}
@media screen and (min-width: 750px) {
  .top_seviceList_img {
    overflow: hidden;
  }
  .top_seviceList_img img {
    transition: 0.3s ease-in-out;
  }
}

.top_seviceList_tit {
  font-size: 3rem;
  font-weight: 500;
  margin: 0 0 0.1em;
}
@media screen and (max-width: 750px) {
  .top_seviceList_tit {
    font-size: 4.2vw;
  }
}

.top_seviceList_txtArea {
  margin-bottom: 15px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .top_seviceList_txtArea {
    margin-bottom: 3.2vw;
  }
}

@media screen and (max-width: 750px) {
  .top_seviceList_subTit {
    font-size: 3.2vw;
  }
}

.top_serviceBnr {
  display: block;
  width: 780px;
  max-width: 100%;
  margin-inline: auto;
}
.top_serviceBnr img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

/*---------------------------------------------
    works
---------------------------------------------*/
.top_sec.-works {
  margin: 0 0 200px;
  padding: 140px 0;
  background: #F7F4F0;
}
@media screen and (max-width: 750px) {
  .top_sec.-works {
    margin: 0 0 17.3vw;
    padding: 17vw 0 21.3vw;
  }
}
.top_sec.-works .top_sec_titArea {
  display: flex;
  align-items: flex-end;
  margin: 0 0 50px;
}
@media screen and (max-width: 750px) {
  .top_sec.-works .top_sec_titArea {
    display: block;
    text-align: center;
    margin: 0 0 8vw;
  }
}
@media screen and (min-width: 750px) {
  .top_sec.-works .top_sec_tit {
    margin: 0 30px 0 0;
  }
}
.top_sec.-works .linkBtn {
  position: absolute;
  right: 0;
  top: 15px;
}
@media screen and (max-width: 750px) {
  .top_sec.-works .linkBtn {
    position: static;
    margin: 13vw auto 0;
  }
}

.worksList {
  position: relative;
}
@media screen and (min-width: 750px) {
  .worksList {
    left: -40px;
    width: 1200px;
  }
}
@media screen and (min-width: 1200px) {
  .worksList {
    left: calc((100vw - 1120px) / 2 * -1);
    width: 100vw;
  }
}
@media screen and (max-width: 750px) {
  .worksList {
    width: 100vw;
    left: -5vw;
  }
}
.worksList li {
  width: 327px;
  margin: 0 10px;
}
@media screen and (max-width: 750px) {
  .worksList li {
    width: 64.2vw;
  }
}
@media screen and (min-width: 750px) {
  .worksList a {
    transition: 0.4s;
  }
  .worksList a:hover {
    opacity: 1;
    color: rgba(51, 51, 51, 0.5);
  }
  .worksList a:hover .worksList_img {
    transform: scale(1.1);
  }
  .worksList a:hover .worksList_place {
    opacity: 0.5;
  }
}

.worksList_imgArea {
  aspect-ratio: 1/1.2;
  margin: 0 0 10px;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .worksList_imgArea {
    margin: 0;
  }
}

.worksList_img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.3s ease-in-out;
  width: 100%;
  height: 100%;
}

.worksList_place {
  font-size: 1.4rem;
  font-weight: 500;
  color: #D0B005;
  transition: 0.4s;
}
@media screen and (max-width: 750px) {
  .worksList_place {
    font-size: 3.73vw;
  }
}

.worksList_tit {
  font-size: 1.8rem;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .worksList_tit {
    font-size: 4.26vw;
  }
}

/*---------------------------------------------
    voice
---------------------------------------------*/
.top_sec.-voice {
  margin: 0 0 320px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .top_sec.-voice {
    margin: 0 0 62.6vw;
  }
}
.top_sec.-voice::after {
  content: "";
  display: block;
  background: #F7F4F0;
  width: 100%;
  left: 50%;
  height: 600px;
  z-index: -1;
  left: 50%;
  top: 340px;
  position: absolute;
}
@media screen and (max-width: 750px) {
  .top_sec.-voice::after {
    height: 116vw;
    top: auto;
    left: 0;
    bottom: -21.3vw;
  }
}
@media screen and (min-width: 750px) {
  .top_sec.-voice .inner {
    max-width: 800px;
  }
}
.top_sec.-voice .top_sec_titArea {
  display: flex;
  align-items: flex-end;
  margin: 0 0 20px;
}
@media screen and (max-width: 750px) {
  .top_sec.-voice .top_sec_titArea {
    display: block;
    text-align: center;
    margin: 0 0 12vw;
  }
}
@media screen and (min-width: 750px) {
  .top_sec.-voice .top_sec_tit {
    margin: 0 30px 0 0;
  }
}
.top_sec.-voice .linkBtn {
  margin: auto;
  display: block;
}

.voiceList {
  margin: 0 0 60px;
}
@media screen and (max-width: 750px) {
  .voiceList {
    margin: 0 0 15vw;
  }
}
@media screen and (min-width: 750px) {
  .voiceList a:hover {
    opacity: 1;
    color: rgba(51, 51, 51, 0.5);
  }
  .voiceList a:hover .voiceList_tit {
    color: rgba(51, 51, 51, 0.5);
  }
  .voiceList a:hover .voiceList_img {
    transform: scale(1.1);
  }
}
.voiceList .slick-dots {
  display: flex;
  right: 0;
  width: auto;
  bottom: calc(100% + 1em);
}
.voiceList .slick-dots li {
  width: 6px;
  height: 6px;
  margin: 0 3px;
}
.voiceList .slick-dots li.slick-active button:before {
  background: #3D4F72;
  opacity: 1;
}
.voiceList .slick-dots li button {
  width: 100%;
  height: 100%;
  padding: 0;
}
.voiceList .slick-dots li button::before {
  opacity: 1;
  background: #D9D9D9;
  line-height: 1;
  content: "";
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.voiceList .slide-arrow {
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
  width: 13px;
  height: 25px;
  position: absolute;
  top: 532px;
  z-index: 30;
  cursor: pointer;
}
@media screen and (max-width: 750px) {
  .voiceList .slide-arrow {
    top: auto;
    bottom: 0;
    width: 3.46vw;
    height: 6.6vw;
  }
}
.voiceList .prev-arrow {
  background-image: url("../img/top/prev.svg");
  right: 65px;
}
@media screen and (max-width: 750px) {
  .voiceList .prev-arrow {
    right: 20.6vw;
  }
}
.voiceList .next-arrow {
  background-image: url("../img/top/next.svg");
  right: 0;
}

.voiceList_imgArea {
  overflow: hidden;
  aspect-ratio: 1/0.625;
  margin: 0 0 1em;
}

.voiceList_img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.3s ease-in-out;
  width: 100%;
  height: 100%;
}

.voiceList_tit {
  color: #3D4F72;
  font-size: 2rem;
  font-weight: 700;
  line-height: 2;
  margin: 0 0 0.7em;
  max-width: 530px;
  transition: 0.4s;
}
@media screen and (max-width: 750px) {
  .voiceList_tit {
    font-size: 3.73vw;
    margin: 0 0 1em;
    max-width: 100%;
  }
}

.voiceList_place {
  font-size: 1.2rem;
  transition: 0.4s;
}
@media screen and (max-width: 750px) {
  .voiceList_place {
    font-size: 3.2vw;
  }
}

/*---------------------------------------------
    blog
---------------------------------------------*/
.top_sec.-blog {
  margin: 0 0 300px;
}
@media screen and (max-width: 750px) {
  .top_sec.-blog {
    margin: 0 0 53.3vw;
  }
}
.top_sec.-blog .inner {
  display: flex;
}
@media screen and (max-width: 750px) {
  .top_sec.-blog .inner {
    display: block;
  }
}
.top_sec.-blog .linkBtn {
  position: absolute;
  left: 0;
  top: 230px;
}
@media screen and (max-width: 750px) {
  .top_sec.-blog .linkBtn {
    position: static;
    margin: 13vw auto 0;
  }
}

.top_blog_box {
  width: 300px;
  flex-shrink: 0;
  margin: 0 60px 0 0;
}
@media screen and (max-width: 750px) {
  .top_blog_box {
    width: 100%;
    margin: 0 0 6.6vw;
  }
}

.blogList {
  border-top: 1px solid #D9D9D9;
  width: 100%;
}
.blogList li {
  border-bottom: 1px solid #D9D9D9;
}
.blogList a {
  padding: 30px 80px 30px 0;
  display: flex;
}
@media screen and (max-width: 750px) {
  .blogList a {
    padding: 9vw 0;
  }
}
@media screen and (min-width: 750px) {
  .blogList a {
    transition: 0.4s;
  }
  .blogList a:hover {
    opacity: 1;
    background: #F7F4F0;
  }
  .blogList a:hover .blogList_img {
    transform: scale(1.1);
  }
}
.blogList .-new .blogList_content_head::after {
  content: "New";
  font-family: "Bodoni Moda", serif;
  color: #D54103;
  font-weight: 600;
  font-style: italic;
  font-size: 2rem;
  margin-left: 12px;
}
@media screen and (max-width: 750px) {
  .blogList .-new .blogList_content_head::after {
    font-size: 3.73vw;
    margin-left: 2.6vw;
  }
}

.blogList_imgArea {
  width: 140px;
  aspect-ratio: 1/0.86;
  flex-shrink: 0;
  margin: 0 20px 0 0;
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .blogList_imgArea {
    margin: 0 1em 0 0;
  }
}

.blogList_img {
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  transition: 0.3s ease-in-out;
  width: 100%;
  height: 100%;
}

.blogList_content_head {
  display: flex;
  align-items: center;
  margin: 0 0 20px;
  font-size: 1.4rem;
}
@media screen and (max-width: 750px) {
  .blogList_content_head {
    margin: 0 0 2.6vw;
    font-size: 3.46vw;
  }
}

.blogList_category {
  font-weight: 500;
  padding: 0.1em 1.5em 0;
  margin: 0 0.7em 0 0;
  border: 1px solid #333333;
  flex-shrink: 0;
  max-width: 360px;
}
@media screen and (max-width: 750px) {
  .blogList_category {
    padding: 0.1em 1em 0;
    max-width: 24vw;
  }
}

.blogList_tit {
  color: #3D4F72;
  font-size: 2rem;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .blogList_tit {
    font-size: 3.73vw;
  }
}

/*---------------------------------------------
    consultation
---------------------------------------------*/
.top_sec.-consultation {
  margin: 0 0 300px;
}
@media screen and (max-width: 750px) {
  .top_sec.-consultation {
    margin: 0 0 21.3vw;
  }
}
.top_sec.-consultation .inner::after {
  content: "";
  display: block;
  background: #F7F4F0;
  width: 100vw;
  height: calc(100% + 60px);
  min-width: 1440px;
  position: absolute;
  top: -152px;
  right: 41%;
  z-index: -1;
}
@media screen and (max-width: 750px) {
  .top_sec.-consultation .inner::after {
    width: 85.3vw;
    height: 106vw;
    top: -32vw;
    right: -5vw;
    min-width: 1px;
  }
}

.top_consultation_titArea {
  margin: 0 0 42px;
  position: relative;
}
@media screen and (max-width: 750px) {
  .top_consultation_titArea {
    margin: 0 0 96vw;
  }
}

.top_consultation_tit {
  font-size: 3rem;
  font-weight: 700;
  line-height: 1.75;
}
@media screen and (max-width: 750px) {
  .top_consultation_tit {
    font-size: 5.86vw;
    line-height: 2.27;
  }
}
.top_consultation_tit span {
  background: #fff;
  padding: 0 0.2em;
}
@media screen and (max-width: 750px) {
  .top_consultation_tit span {
    padding: 0.2em 0.5em;
  }
}
.top_consultation_tit b {
  color: #D54103;
}

.top_consultation_baloon {
  font-weight: 700;
  color: #3D4F72;
  position: absolute;
  transform: rotate(-10deg);
  left: -55px;
  bottom: calc(100% + 55px);
}
@media screen and (max-width: 750px) {
  .top_consultation_baloon {
    font-size: 3.46vw;
    left: 0;
    bottom: calc(100% + 11vw);
  }
}
.top_consultation_baloon::after {
  content: "";
  display: block;
  width: 345px;
  height: 43px;
  background: url("../img/top/consultation_deco.svg") no-repeat;
  background-size: contain;
  position: absolute;
  left: -10px;
  top: 100%;
}
@media screen and (max-width: 750px) {
  .top_consultation_baloon::after {
    width: 72.5vw;
    height: 9vw;
    left: -2.6vw;
  }
}

.top_consultation_txtArea {
  line-height: 2.2;
  margin: 0 0 62px;
}
@media screen and (max-width: 750px) {
  .top_consultation_txtArea {
    margin: 0 0 12vw;
    line-height: 2;
  }
}
.top_consultation_txtArea p + p {
  margin: 1em 0 0;
}

.top_consultation_img {
  position: absolute;
}

.top_consultation_img01 {
  width: 172px;
  top: 100px;
  right: 366px;
}
@media screen and (max-width: 750px) {
  .top_consultation_img01 {
    width: 22.9vw;
    top: 49.6vw;
    right: 48.8vw;
  }
}

.top_consultation_img02 {
  top: -40px;
  width: 345px;
  right: 0;
}
@media screen and (max-width: 750px) {
  .top_consultation_img02 {
    top: 30.9vw;
    width: 45.8vw;
  }
}

/*---------------------------------------------
    news
---------------------------------------------*/
.top_sec.-news {
  padding: 0 0 230px;
}
@media screen and (max-width: 750px) {
  .top_sec.-news {
    padding: 0;
  }
}
.top_sec.-news .inner {
  display: flex;
}
@media screen and (max-width: 750px) {
  .top_sec.-news .inner {
    display: block;
  }
}
.top_sec.-news .top_sec_titArea {
  flex-shrink: 0;
  width: 280px;
}
@media screen and (min-width: 750px) {
  .top_sec.-news .top_sec_titArea {
    padding: 0 0 90px;
  }
}
@media screen and (max-width: 750px) {
  .top_sec.-news .top_sec_titArea {
    width: 100%;
    margin: 0 0 12vw;
  }
}
.top_sec.-news .newsList {
  padding: 0 0 0 70px;
  border-left: 1px solid #3D4F72;
}
@media screen and (max-width: 750px) {
  .top_sec.-news .newsList {
    border: none;
    padding: 0;
  }
}
.top_sec.-news .linkBtn {
  position: absolute;
  left: 0;
  bottom: 0;
}
@media screen and (max-width: 750px) {
  .top_sec.-news .linkBtn {
    position: static;
    margin: 12vw auto 0;
  }
}

.newsList {
  font-size: 1.5rem;
}
@media screen and (max-width: 750px) {
  .newsList {
    font-size: 3.73vw;
  }
}
.newsList li:not(:last-child) {
  margin: 0 0 45px;
}
@media screen and (max-width: 750px) {
  .newsList li:not(:last-child) {
    margin: 0 0 10vw;
  }
}
.newsList a {
  display: flex;
  align-items: flex-start;
}
@media screen and (max-width: 750px) {
  .newsList a {
    flex-wrap: wrap;
  }
}

.newsList_time {
  margin: 0 1em 0 0;
  flex-shrink: 0;
  color: #333333;
}

.newsList_category {
  background: #3D4F72;
  flex-shrink: 0;
  color: #fff;
  font-size: 1.2rem;
  font-weight: 700;
  width: 110px;
  text-align: center;
  margin: 0 1em 0 0;
  padding: 0.2em 0;
}
@media screen and (max-width: 750px) {
  .newsList_category {
    font-size: 3.2vw;
    width: 30vw;
  }
}
.newsList_category.-update {
  background: #D0B005;
}
.newsList_category.-media {
  background: #CE8B6F;
}
.newsList_category.-campaign {
  background: #7EBA79;
}
.newsList_category.-news {
  background: #3D4F72;
}
.newsList_category.-important {
  background: #D54103;
}

@media screen and (max-width: 750px) {
  .newsList_tit {
    width: 100%;
    margin: 3.2vw 0 0;
  }
}

/*---------------------------------------------
    flowting
---------------------------------------------*/
.top_flowting {
  position: fixed;
  z-index: 500;
  bottom: 50px;
  right: 60px;
}

@media screen and (max-width: 750px) {
  .top_flowting {
    right: 5.3vw;
    bottom: 2.6vw;
  }
}
.top_flowting_link {
  display: block;
  width: 260px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media screen and (max-width: 750px) {
  .top_flowting_link {
    width: 61.3vw;
  }
}
.top_flowting_close {
  background: none;
  border: none;
  width: 32px;
  position: absolute;
  right: -10px;
  top: -13px;
  z-index: 1002;
  cursor: pointer;
}

@media screen and (max-width: 750px) {
  .top_flowting_close {
    width: 8vw;
    right: -2.6vw;
    top: -4vw;
  }
}/*# sourceMappingURL=top.css.map */