@charset "UTF-8";

/* ==== color ========================== */
:root {
  --color-black: #393A3B;
  --color-white: #ffffff;

  --color-yellow: #FEC101;
  --color-blue: #0063A9;

  --color-green: #33824F;
  --color-blue-light: #2B9FE9;
  --color-bg: #F7F6EA;
  --color-gray: #ddd;


  --ja: "Noto Sans JP", sans-serif;
  --en: "Fustat", sans-serif;

  --header: 12rem;
  scroll-padding: var(--header);
}

@media screen and (max-width:767px) {
  :root {
    --header: 8rem;
    scroll-padding: var(--header);
  }
}

/*================================================
 *  一般・共通設定
 ================================================*/
html {
  /* 1280 >> 10px */
  font-size: clamp(6.3px, 0.78125vw, 10px);
  scroll-behavior: smooth;
}

body {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  font-size: 1.6rem;
  background: var(--color-white);
  color: var(--color-black);
  line-height: 1.7;
}

body.lower {
  background: var(--color-bg);
}

a {
  text-decoration: none;
  transition: all .4s;
}

img {
  max-width: 100%;
  display: inline-block;
}

strong {
  font-weight: bold;
}

small {
  font-size: smaller;
}

ul,
ol,
dl {
  margin: 0;
}

ul li {
  list-style: none;
}

ol li {
  list-style: decimal;
}

li {
  margin-left: 0;
}




@media screen and (max-width:767px) {
  html {
    font-size: 10px;
  }

  body {
    font-size: 1.3rem;
  }

  body.hidden {
    overflow: hidden;
  }
}



/*================================================
 *  header 
 ================================================*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  padding: 0.7rem 0 0.8rem 2.4rem;
  border-radius: 0.2rem 0.2rem 0.2rem 0;
  border-bottom: 1px solid var(--color-gray);
  overflow: clip;
}

header::before {
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  background: rgb(255 255 255 / 80%);
  top: 0;
  left: 0;
  z-index: -1;
  backdrop-filter: blur(3rem);

}

.nav_inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

/* nav_left */
.nav_left {
  width: 32.2rem;
}

.nav_left a:hover {
  opacity: .6;
}

/* nav_right */

.nav_right .nav_top,
.nav_right .nav_btm {
  display: flex;
  align-items: center;
  justify-content: end;
}

.nav_right .nav_top {
  gap: 3rem;
  padding-right: 2rem;
}

.nav_right .nav_top li:not(.sns) a {
  font-size: 1.4rem;
  padding-left: 3rem;
  position: relative;
}

.nav_right .nav_top li:not(.sns) a::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/nav_arrow.webp);
  width: 2rem;
  height: 2rem;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}


.nav_right .nav_top .sns a:hover {
  opacity: .6;
}

.nav_right .nav_btm li a {
  font-size: 1.5rem;
  padding: 1.5rem 3rem;
  display: inline-block;
  font-weight: 500;
}

.nav_right .nav_top li:not(.sns) a:hover,
.nav_right .nav_btm li a:hover {
  color: var(--color-yellow);
}


#fix_btn {
  position: fixed;
  width: 19.5rem;
  bottom: 12.5vw;
  right: 1.6vw;
  z-index: 10;
  transition: .4s;
}


#fix_btn a {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  display: block;
  width: 78%;
  z-index: 2;
}

#fix_btn .btn_circle {
  animation: 20s linear infinite rotation;
}

.lower #fix_btn .btn_circle {
  animation: unset;
}

.single-story #fix_btn {
  opacity: 0;
  bottom: 4.5vw;
}

.single-story #fix_btn.active {
  opacity: 1;
}

@keyframes rotation {
  0% {
    transform: rotate(0);
  }

  100% {
    transform: rotate(360deg);
  }
}

@media (max-height: 800px) {

  #fix_btn {
    bottom: 5rem;
  }

}



@media screen and (max-width:767px) {

  header {
    padding: 0.2rem 0 0.2rem 0.9rem;
  }


  /* nav_left */
  .nav_left {
    width: 17.9rem;
  }




  .hamburger {
    position: absolute;
    right: 0;
    top: 0;
    width: 6rem;
    height: 6rem;
    cursor: pointer;
    z-index: 300;
    transition: all .1s ease-out;
  }

  .hamburger::after {
    position: absolute;
    content: "";
    width: 1px;
    height: 66.6%;
    background: var(--color-gray);
    left: 0;
    top: 50%;
    transform: translateY(-50%);
  }

  /* line open */
  .hamburger__line {
    position: absolute;
    left: 50%;
    width: 46%;
    height: 0.3rem;
    background-color: var(--color-black);
    transition: all .4s ease-out;
    transform: translateX(-50%);
  }

  .hamburger__line--1 {
    top: 40%;
  }



  .hamburger__line--3 {
    top: 55%;
  }

  /* line close */
  .open_nav .hamburger__line--1 {
    transform: translateX(-50%) rotate(45deg);
    top: 50%;
  }


  .open_nav .hamburger__line--3 {
    transform: translateX(-50%) rotate(-45deg);
    top: 50%;
  }


  nav.global__nav {
    position: fixed;
    right: 0;
    top: 5.78rem;
    width: 100%;
    height: 100vh;
    transition: all .3s ease-out;
    z-index: 200;
    overflow-y: scroll;
    opacity: 0;
    pointer-events: none;
  }

  .open_nav .global__nav::before {
    position: absolute;
    content: "";
    width: 100%;
    height: 100vh;
    background: #393A3B;
    top: 0;
    left: 0;
    z-index: -1;
    opacity: .3;
  }

  .global__nav-inner {
    padding: 7rem 0 3.4rem;
    background: var(--color-white);
  }

  /* 表示 */
  .open_nav .global__nav {
    opacity: 1;
    pointer-events: fill;
  }

  .nav_right .nav_top {
    display: none;
  }

  .nav_right .nav_btm {
    display: block;
  }

  /* .nav_right .nav_btm li:last-child {
    display: none;
  } */

  .nav_right .nav_btm li {
    padding: 0 3rem 0 2rem;
  }

  .nav_right .nav_btm li a {
    width: 100%;
    border-bottom: 1px solid var(--color-gray);
    padding: 1.4rem 1.4rem 1.4rem 3rem;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
  }

  .nav_right .nav_btm li a::before,
  .nav_right .nav_btm li a::after {
    position: absolute;
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    display: inline-block;
  }

  .nav_right .nav_btm li a::before {
    background-image: url(../images/hd_star.webp);
    width: 1.3rem;
    height: 1.3rem;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }

  .nav_right .nav_btm li a::after {
    background-image: url(../images/icon_btn_arrow.webp);
    width: 1.6rem;
    height: 1.4rem;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }


  .sp_nav ul {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    margin: 5.2rem auto;
    width: calc(100% - 4rem);
    gap: 1.4rem 3.6rem;
  }

  .sp_nav .sp_btn a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 80.8%;
    margin: 1.3rem auto;
    border: 1px solid var(--color-gray);
    padding: 1.5rem 0 1.5rem 0;
    position: relative;
  }

  .sp_nav .sp_btn a[target="_blank"]::before {
    position: absolute;
    content: "";
    background-size: contain;
    background-repeat: no-repeat;
    vertical-align: middle;
    display: inline-block;
    background-image: url(../images/icon_blank_bl.webp);
    width: 1.5rem;
    height: 1.53rem;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
  }

  .sp_nav .sp_btn a img {
    width: 60%;
    margin: 0 auto;
  }

  .sp_nav .sns a {
    margin: 3rem auto 0;
    display: block;
    width: fit-content;
  }


  #fix_btn {
    width: 15.4rem;
    right: 0;
    top: auto;
    bottom: 0;
  }

  .single-story #fix_btn {
    bottom: 0;
  }

  #fix_btn a {
    width: 100%;
    position: static;
    transform: unset;
  }

  #fix_btn .btn_circle {
    display: none;
  }
}



/*================================================
* section  btn icon
================================================*/
.icon {
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
}

.icon_insta {
  background-image: url(../images/icon_insta.webp);
  width: 2.4rem;
  height: 2.4rem;
}


.icon_btn_arrow {
  background-image: url(../images/icon_btn_arrow.webp);
  width: 2.2rem;
  height: 2rem;
}

.icon_btn_arrow.wt {
  background-image: url(../images/icon_btn_arrow_wt.webp);
}

.icon_blank {
  background-image: url(../images/icon_blank.webp);
}

.icon_blank.bl {
  background-image: url(../images/icon_blank_bl.webp);
}

.icon_blank.wt {
  background-image: url(../images/icon_blank_wt.webp);
}


.icon_memo {
  background-image: url(../images/icon_memo.webp);
  width: 4rem;
  height: 3.7rem;
}



.c_btn .icon_blank {
  width: 1.8rem;
  height: 1.9rem;
}

.c_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 700;
  width: 31rem;
  padding-bottom: 2rem;
  position: relative;
}

.c_btn::before {
  position: absolute;
  content: "";
  background: var(--color-black);
  bottom: 0;
  left: 0;
  right: 0;
  pointer-events: none;
  height: 0.3rem;
}

.c_btn:hover::before {
  animation: linkBar .8s cubic-bezier(0.165, 0.840, 0.440, 1.000);
}

@keyframes linkBar {
  0% {
    scale: 1 1;
    transform-origin: right 0;
  }

  50% {
    scale: 0 1;
    transform-origin: right 0;
  }

  50.1% {
    scale: 0 1;
    transform-origin: left 0;
  }

  100% {
    scale: 1 1;
    transform-origin: left 0;
  }

}

.c_btn.cntr {
  margin-left: auto;
  margin-right: auto;
}


.c_btnNml {
  display: flex;
  align-items: center;
  justify-content: start;
  font-weight: 700;
  gap: 1.2rem;
  position: relative;

}

.c_btnNml.cntr {
  justify-content: center;
}

.c_btnNml .c_btnNml-arw {
  background-color: var(--color-black);
  border: 1px solid var(--color-black);
  width: 4.2rem;
  height: 4.2rem;
  display: grid;
  place-content: center;
  border-radius: 100000px;
  transition: all .4s;
}

a:hover .c_btnNml-arw {
  background-color: var(--color-white);
}

.c_btnNml .icon_btn_arrow {
  width: 1.6rem;
  height: 1.4rem;
  transition: all .4s;
}

a:hover .c_btnNml-arw .icon_btn_arrow {
  background-image: url(../images/icon_btn_arrow.webp);
}

.c_btnNml .c_btnNml-txt {
  background: linear-gradient(#333, #333) 0 100% / 0 1px no-repeat;
  transition: background .4s;
}

a:hover .c_btnNml-txt {
  background-size: 100% 1px;
}








.hd {
  font-weight: 700;
  text-align: center;
  margin-bottom: 2rem;
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  position: relative;
}

.hd .ja {
  font-size: 1.8rem;
  display: block;
  width: fit-content;
  margin: 0 auto;
  line-height: 1;
}

.hd .star {
  padding-left: 3.2rem;
  position: relative;
}

.hd .star::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/hd_star.webp);
  width: 2rem;
  height: 1.9rem;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

.hd .en {
  font-size: 8rem;
  font-family: var(--en);
}

.subhd {
  text-align: center;
  font-size: 3.8rem;
  font-weight: 700;
  position: relative;
  padding-bottom: 3rem;
  margin-bottom: 5.2rem;
}

.subhd::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/subhd.webp);
  width: 6rem;
  height: 0.6rem;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}




section {
  position: relative;
  padding-bottom: 10rem;
}

.lower section {
  padding-bottom: 14rem;
}

.section {
  padding-top: 11rem;
}

.wrap_md {
  width: 83.333%;
  margin-left: auto;
  margin-right: auto;
}


@media screen and (max-width:767px) {
  .c_btn {
    width: 21rem;
    padding-bottom: 1.1rem;
  }

  .icon_btn_arrow {
    width: 1.6rem;
    height: 1.4rem;
  }

  .hd .ja {
    font-size: 1.5rem;
  }

  .hd .star {
    padding-left: 2.8rem;
  }

  .hd .star::before {
    width: 1.6rem;
    height: 1.6rem;
  }

  .hd .en {
    font-size: 5.6rem;
  }

  .subhd {
    font-size: 2.8rem;
    padding-bottom: 2rem;
    margin-bottom: 3.2rem;
  }

  .subhd::before {
    width: 5rem;
    height: 0.5rem;
  }

  .lower section {
    padding-bottom: 11rem;
  }

  .wrap_md {
    width: 90.666%;

  }
}

/*================================================
* 
================================================*/
.info_list {
  border-top: 1px solid var(--color-gray);
}

.tabContents .info_list {
  width: 91.6%;
  margin: 0 auto 7rem;
}

.info_list li {
  border-bottom: 1px solid var(--color-gray);
}

.info_list li a {
  padding: 3rem 0;
  display: block;
}



.info_type {
  display: flex;
  align-items: center;
  justify-content: start;
  padding-left: 0.8rem;
  margin-bottom: 1rem;
}

.info_type .date {
  font-family: var(--en);
  margin-right: 2rem;
}

.info_type .cat {
  margin-right: 1rem;
  color: var(--color-blue);
  border: 1px solid var(--color-blue);
  border-radius: 1000px;
  background: var(--color-white);
  font-size: 1.4rem;
  padding: 0.2rem 0.8rem;
}

.info_type .imp {
  background: var(--color-yellow);
  font-size: 1.4rem;
  border-radius: 1000px;
  color: var(--color-white);
  padding: 0.2rem 0.8rem;
}

.info_ttl {
  background: linear-gradient(#333, #333) 0 100% / 0 1px no-repeat;
  transition: background .4s;
  width: fit-content;
}

a:hover .info_ttl {
  background-size: 100% 1px;
}


#subVisual.news .wrap_md {
  width: 76.4%;
}

#subVisual.news .info_type {
  padding-left: 0;
}

#subVisual.news h2 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-top: 1rem;
}

@media screen and (max-width:767px) {
  .info_list li a {
    padding: 2.2rem 0;
  }



  .info_type {
    padding-left: 0rem;
  }

  .info_type .date {
    margin-right: 1.6rem;
  }

  .info_type .cat {
    margin-right: 1rem;
    font-size: 1.2rem;
  }

  #subVisual.news .wrap_md {
    width: 90.666%;
  }

  #subVisual.news h2 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 4rem;
  }
}

/*================================================
* cta
================================================*/
#cta {
  padding: 0;
  background: url(../images/cta_bg.webp) no-repeat center/cover;


  min-height: 32.77vw;
  display: grid;
  place-content: center;
}

.cta_wrap {
  display: flex;
  align-items: start;
  justify-content: center;
  gap: 16.66vw;
  color: var(--color-white);
}

.cta_wrap h2 {
  font-size: 4.4rem;
  font-weight: 700;
  line-height: 1.4;
}

.cta_wrap h2 strong {
  color: var(--color-yellow);
}

.cta_txt p {
  line-height: 2;
  margin-bottom: 6.3rem;
  padding-top: 1.8rem;
}

.cta_txt .c_btn {
  color: var(--color-white);
}

.cta_txt .c_btn::before {
  background: var(--color-white);
}

@media screen and (max-width:767px) {
  #cta {
    padding: 11.5rem 0 10rem;
    background: url(../images/cta_bg_sp.webp) no-repeat center/cover;
    min-height: unset;
  }

  .cta_wrap {
    flex-wrap: wrap;
    gap: 3rem;
  }

  .cta_wrap h2 {
    font-size: 3.2rem;
    width: 100%;
    text-align: center;
  }

  .cta_txt p {
    line-height: 1.7;
    text-align: center;
    margin-bottom: 8.3rem;
    padding-top: 0;
  }

  .cta_txt .c_btn {
    margin: 0 auto;
  }
}

/*================================================
 *  footer
 ================================================*/
footer {
  background: var(--color-bg);
  padding: 6rem 0 2.6rem;
}

.ft_wrap {
  display: flex;
  justify-content: space-between;
}

.ft_logo a:hover,
.ft_sns a:hover,
.ft_banner a:hover {
  opacity: .6;
}


.ft_logo {
  width: 32.2rem;
}

.ft_sns {
  margin: 4rem 0 2.3rem;
}

.ft_banner {
  width: 30rem;
}



.ft_banner a {
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--color-gray);
  padding: 1.5rem 0 1.5rem 0;
  position: relative;
  background: var(--color-white);
  font-size: 1.5rem;
  margin-top: 1.3rem;
}



.ft_banner a[target="_blank"]::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/icon_blank_bl.webp);
  width: 1.5rem;
  height: 1.53rem;
  top: 50%;
  right: 2rem;
  transform: translateY(-50%);
}

.ft_banner a img {
  width: 60%;
  margin: 0 auto;
}

.ft_menu {
  display: flex;
  justify-content: end;
  font-size: 1.5rem;
}

.ft_menu ul:last-of-type {
  margin-left: 6.3rem;
}

.ft_menu ul:nth-of-type(2) {
  margin-left: 4.3rem;
}

.ft_menu ul li {
  margin-bottom: 1.4rem;
}

.ft_menu ul li a:hover {
  color: var(--color-yellow);
}

.ft_copy {
  padding: 2.4rem 0 0;
  font-size: 1.2rem;
  border-top: 1px solid var(--color-gray);
  text-align: center;
  margin-top: 6.8rem;
}

@media screen and (max-width:767px) {
  .ft_wrap {
    width: 100%;
    flex-wrap: wrap;
    justify-content: center;
  }

  .ft_left {
    width: 80%;
    margin: 0 auto;
    max-width: 30rem;
  }

  .ft_logo {
    width: 27.3rem;
    margin: 0 auto;

  }

  .ft_sns {
    margin: 1.4rem auto 2.3rem;
    width: fit-content;
  }

  .ft_banner {
    width: 100%;
  }



  .ft_banner a {
    font-size: 1.3rem;
  }


  .ft_menu {
    flex-wrap: wrap;
    justify-content: start;
    font-size: 1.2rem;
    gap: 5rem 1.9rem;
    margin-top: 5rem;
    margin-left: 10%;
  }

  .ft_menu ul:last-of-type {
    margin-left: 0;
  }

  .ft_menu ul:nth-of-type(2) {
    margin-left: 0;
  }


  .ft_copy {
    padding: 1.4rem 0 0;
    font-size: 1rem;
    margin-top: 5.4rem;
  }
}



/*================================================
* subVisual
================================================*/
#subVisual {
  padding: 19rem 0 2rem;
  background: var(--color-white);
  overflow: clip;
  z-index: 1;
}

#subVisual::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/subvis.webp);
  width: 52.5rem;
  height: 40rem;
  top: 0;
  right: 0;
  z-index: -1;
}

#subVisual .hd {
  text-align: left;
  margin-left: 0;
  margin-bottom: 4rem;
}

#subVisual .hd .en {
  font-size: 2rem;

}

#subVisual .hd .ja {
  font-size: 4.4rem;
  margin-top: 2.6rem;
  letter-spacing: 0.1em;
  line-height: 1.4;
}

#subVisual .hd .star {
  padding-left: 4.3rem;
}

#subVisual .hd .star::before {
  width: 3rem;
  height: 2.9rem;
  top: 41%;
}

.breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 1rem;
  font-size: 1.4rem;
}

.breadcrumbs li:not(:last-child) {
  position: relative;
  padding-right: 1.8rem;
}

.breadcrumbs li:last-child {
  font-weight: 700;
}

.breadcrumbs li:not(:last-child)::before {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/arrow_breadcrumbs.webp);
  width: 0.7rem;
  height: 0.95rem;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.breadcrumbs li a {
  opacity: .4;
}

@media screen and (max-width:767px) {
  #subVisual {
    padding: 14rem 0 2rem;
    overflow: clip;
  }

  #subVisual::before {
    background-image: url(../images/subvis_sp.webp);
    width: 34.1rem;
    height: 37rem;
    top: auto;
    bottom: 0;
    right: -6rem;
  }

  #subVisual .hd {
    text-align: left;
    margin-left: 0;
    margin-bottom: 3rem;
  }

  #subVisual .hd .ja {
    font-size: 3.2rem;
  }
}

/*================================================
* 
================================================*/
.pnav {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  font-size: 1.6rem;
  font-family: var(--en);
  gap: 3.9rem;
}


.pnav .next {
  font-family: var(--ja);
  position: relative;
}

.pnav .next {
  padding-right: 4.4rem;
}

.pnav .prev {
  display: none;
}

.pnav .next::before {
  position: absolute;
  content: "";
  width: 4.2rem;
  height: 4.2rem;
  background: var(--color-white);
  border: 1px solid var(--color-black);
  border-radius: 1000px;
  top: 50%;
  transform: translateY(-50%);
}

.pnav .next::before {
  right: -1.3rem;
}


.pnav .next::after {
  position: absolute;
  content: "";
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
  background-image: url(../images/icon_btn_arrow.webp);
  width: 1.6rem;
  height: 1.4rem;
  top: 50%;
  transform: translateY(-50%);
}

.pnav .next::after {
  right: 0;
}



.pnav .current {
  position: relative;
}

.pnav .current::before {
  position: absolute;
  content: "";
  width: calc(100% + 1rem);
  height: 2px;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  background: var(--color-yellow);
}

@media screen and (max-width:767px) {
  .pnav {
    font-size: 1.4rem;
    gap: 2rem;
  }

  .pnav .next {
    padding-right: 3.2rem;
  }

  .pnav .prev {
    padding-left: 3.2rem;
  }

  .pnav .next::after,
  .pnav .prev::after {
    width: 1.2rem;
    height: 1.1rem;
  }

  .pnav .next::before,
  .pnav .prev::before {
    width: 3.2rem;
    height: 3.2rem;

  }

  .pnav .next::before {
    right: -1rem;
  }

  .pnav .prev::before {
    left: -1rem;
  }
}

/*================================================
* 
================================================*/
.voice_list {
  display: grid;
  gap: 6rem;
  grid-template-columns: repeat(2, 1fr);
  margin-bottom: 6.5rem;
}


.voice_box {
  background: var(--color-white);
  border-radius: 0 5rem 5rem 5rem;
  padding: 5.5rem 4.9rem 2rem 7.4rem;
  position: relative;
}

.voice_box::before {
  position: absolute;
  content: "“";
  font-family: var(--en);
  color: #EAEAEA;
  font-size: 10rem;
  font-weight: 700;
  top: 2rem;
  left: 3rem;
  line-height: 1;
}

.voice_box p {
  font-weight: 500;
  margin-bottom: 2.4rem;
  padding-right: 5.6rem;
}

.voice_box .meta {
  display: flex;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  font-size: 1.4rem;
}

.voice_box .meta .circle {
  display: flex;
  align-items: center;
  justify-content: start;
  width: 100%;
}

.voice_box .meta .city {
  background: var(--color-yellow);
  color: var(--color-white);
  border-radius: 1000px;
  padding: 0 0.8rem;
  margin-right: 0.8rem;
}

.voice_box .meta .status {
  border: 1px solid #CCCCCC;
  color: #8A8A8A;
  border-radius: 1000px;
  padding: 0 0.8rem;
  margin-right: 2rem;
}

.voice_box .meta .img {
  width: 3.6rem;
  height: 5.1rem;
  margin-left: 2rem;
  position: relative;
  top: 0;
  margin-left: auto;


  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  display: inline-block;
}





.voice_box .meta .img.men {
  background-image: url(../images/voice_img01.webp);
}

.voice_box .meta .img.women {
  background-image: url(../images/voice_img02.webp);
}

.voice_box .meta .img.no {
  background-image: unset;
}

.voice_empty {
  text-align: center;
  font-family: var(--en);
  font-weight: 700;
  font-size: 2rem;
}

@media screen and (max-width:767px) {
  .voice_list {
    gap: 3.2rem;
    grid-template-columns: repeat(1, 1fr);
    width: 88.3%;
    margin: 0 auto 4.2rem;
  }

  .voice_box {
    padding: 5rem 2rem 1rem;
  }

  .voice_box::before {
    font-size: 8rem;
    top: 1rem;
    left: 1.6rem;
  }

  .voice_box p {
    margin-bottom: 1.8rem;
    padding-right: 0;
  }

  .voice_box .meta {
    flex-wrap: wrap;
    font-size: 1.2rem;
    justify-content: start;
  }

  .voice_box .meta .circle {
    justify-content: start;
  }

  .voice_box .meta .profile {
    width: 100%;
  }

  .voice_box .meta .img {
    width: 2.4rem;
    top: 0;
    margin-left: auto;
    margin-top: -2rem;
    margin-right: 1rem;
  }
}



/*================================================
* 
================================================*/

@media screen and (max-width:767px) {}

/*================================================
* 
================================================*/


@media screen and (max-width:767px) {}

/*================================================
* 
================================================*/

@media screen and (max-width:767px) {}

/*================================================
* 
================================================*/


@media screen and (max-width:767px) {}

/*================================================
* 
================================================*/

@media screen and (max-width:767px) {}

/*================================================
* 
================================================*/


@media screen and (max-width:767px) {}

/*================================================
* 
================================================*/

@media screen and (max-width:767px) {}

/*================================================
* 
================================================*/


@media screen and (max-width:767px) {}

/*================================================
* 
================================================*/

@media screen and (max-width:767px) {}

/*================================================
* 
================================================*/


@media screen and (max-width:767px) {}