:root {
  --cl-bk: #1a1a1a;
  --cl-br: #7b6e4c;
  --cl-gr: #a3aab5;
  --cl-bg-br: #f0eeea;
  --cl-h2: rgba(34, 57, 98, 0.06);
  --ff-sans: "YuGothic", "Yu Gothic", "Helvetica Neue", "Helvetica", "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Meiryo", sans-serif;
  --ff-serif: "Crimson Text", "Zen Old Mincho", serif;
  --ff-ja-serif: "Zen Old Mincho", serif;
  --pc-width: 1320px;
  --pc-padding: 0 60px;
  --sp-padding: 0 15px;
}

html {
  font-size: 62.5%;
}

body {
  color: var(--cl-bk);
  font-size: 1.4rem;
  font-family: "kozuka-gothic-pr6n", sans-serif;
  font-weight: 400;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

@media all and (min-width: 768px) {
  body {
    min-width: var(--pc-width);
  }

  .sp-only {
    display: none;
  }
}

@media all and (max-width: 767px) {
  .pc-only {
    display: none;
  }
}

ul {
  padding: 0;
  list-style-type: none;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  color: #ffffff;
  z-index: 999;
  transition: background-color 0.3s, color 0.3s;
}

.block-header,
.block-header-logo {
  display: flex;
  align-items: center;
  line-height: 1;
}

.block-header-logo {
  font-family: var(--ff-serif);
  font-weight: 300;
  line-height: 1;
}

.block-header-logo .logo {
  display: block;
  background-image: url(../img/logo_w.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  text-indent: -999999px;
  transition: background-image 0.3s;
}

.block-header-txt {
  position: relative;
}

.block-header-txt::before {
  content: "";
  display: block;
  position: absolute;
  background-color: #ffffff;
  transition: background-color 0.3s;
}

.block-header-menu {
  position: relative;
  margin-left: auto;
}

.block-header-menu-btn {
  display: block;
  position: relative;
  border: none;
  background-color: transparent;
  cursor: pointer;
  z-index: 99;
}

.block-header-menu-btn > span {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  background-color: #ffffff;
  transition: background-color 0.3s;
}

.block-header-menu-btn > span:nth-child(1) {
  top: 0;
  transition: top 0.3s, height 0.3s, background-color 0.2s, transform 0.3s;
}

.block-header-menu-btn > span:nth-child(2) {
  bottom: 0;
  transition: bottom 0.3s, height 0.3s, background-color 0.2s, transform 0.3s;
}

.block-header-menu-btn > span:nth-child(3) {
  top: 50%;
  margin-top: -1px;
  transition: opacity 0.1s;
}

.block-header-menu-btn.is-open > span:nth-child(1) {
  height: 1px;
  background-color: var(--cl-bk);
  transform: rotate(-30deg);
}

.block-header-menu-btn.is-open > span:nth-child(2) {
  height: 1px;
  background-color: var(--cl-bk);
  transform: rotate(30deg);
}

.block-header-menu-btn.is-open > span:nth-child(3) {
  opacity: 0;
}

body.is-float header {
  color: var(--cl-bk);
  background-color: rgba(255, 255, 255, 0.7);
}

body.is-float .block-header-logo .logo {
  background-image: url(../img/logo_b.png);
}

body.is-float .block-header-txt::before {
  background-color: var(--cl-bk);
}

body.is-float .block-header-menu-btn > span {
  background-color: var(--cl-bk);
}

@media all and (min-width: 768px) {
  header {
    min-width: var(--pc-width);
    padding: var(--pc-padding);
  }

  .block-header {
    height: 80px;
  }

  .block-header-logo a {
    display: block;
    width: 214px;
    height: auto;
  }

  .block-header-logo .logo {
    width: 214px;
    height: 26px;
  }

  .block-header-logo .txt {
    margin-left: 27px;
    font-size: 2.7rem;
    letter-spacing: 0.045em;
  }

  .block-header-txt {
    margin-left: 153px;
    font-size: 2.5rem;
    font-weight: 500;
    letter-spacing: 0.03em;
  }

  .block-header-txt::before {
    left: -124px;
    top: 50%;
    width: 97px;
    height: 1px;
  }

  .block-header-menu-btn {
    width: 55px;
    height: 32px;
  }

  .block-header-menu-btn > span {
    height: 2px;
  }

  .block-header-menu-btn.is-open > span:nth-child(1) {
    top: 16px;
  }

  .block-header-menu-btn.is-open > span:nth-child(2) {
    bottom: 16px;
  }
}

@media all and (max-width: 767px) {
  header {
    padding: 0 10px;
  }

  .block-header {
    height: 47px;
  }

  .block-header-logo .logo {
    width: 143px;
    height: 18px;
  }

  .block-header-logo .txt {
    margin-left: 7px;
    font-size: 1.1rem;
    letter-spacing: 0.045em;
  }

  .block-header-txt {
    margin-left: 10px;
    font-size: 1rem;
    font-weight: 500;
    letter-spacing: 0.03em;
  }

  .block-header-txt::before {
    top: 50%;
    left: -5px;
    width: 1px;
    height: 12px;
    margin-top: -6px;
  }

  .block-header-menu-btn {
    width: 39px;
    height: 23px;
  }

  .block-header-menu-btn > span {
    height: 1px;
  }

  .block-header-menu-btn.is-open > span:nth-child(1) {
    top: 11px;
  }

  .block-header-menu-btn.is-open > span:nth-child(2) {
    bottom: 11px;
  }
}

.block-header-menu-content {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  background-color: #ffffff;
  filter: drop-shadow(-3px 0px 5px rgba(0, 0, 0, 0.15));
  z-index: 9;
}

.block-header-menu-content a {
  display: flex;
  align-items: center;
  position: relative;
  text-decoration: none;
}

.block-header-menu-content a::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  background-color: var(--cl-br);
}

.block-header-menu-content a .txt-ja {
  color: var(--cl-bk);
  font-family: var(--ff-ja-serif);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.block-header-menu-content a .txt-en {
  color: rgba(34, 57, 98, 0.1);
  font-family: var(--ff-serif);
  font-weight: 300;
  letter-spacing: -0.02em;
}

@media all and (min-width: 768px) {
  .block-header-menu-content {
    width: 829px;
    padding: 70px 60px 100px;
  }

  .block-header-menu-content li + li {
    margin-top: 30px;
  }

  .block-header-menu-content a {
    height: 103px;
    padding-left: 25px;
  }

  .block-header-menu-content a::before {
    top: 53px;
    width: 12px;
    height: 12px;
  }

  .block-header-menu-content a .txt-ja {
    padding-top: 15px;
    font-size: 2.9rem;
  }

  .block-header-menu-content a .txt-en {
    margin-left: 16px;
    font-size: 8rem;
  }
}

@media all and (max-width: 767px) {
  .block-header-menu-content {
    width: 100vw;
    padding: 101px 23px 70px;
  }

  .block-header-menu-content li + li {
    margin-top: 54px;
  }

  .block-header-menu-content a {
    position: relative;
    height: 32px;
    padding-left: 21px;
  }

  .block-header-menu-content a::before {
    top: 15px;
    width: 10px;
    height: 10px;
  }

  .block-header-menu-content a .txt-ja {
    font-size: 2.2rem;
  }

  .block-header-menu-content a .txt-en {
    position: absolute;
    top: -16px;
    font-size: 4.1rem;
  }

  .block-header-menu-content li:nth-child(1) a .txt-en {
    left: 188px;
  }

  .block-header-menu-content li:nth-child(2) a .txt-en {
    left: 160px;
  }

  .block-header-menu-content li:nth-child(3) a .txt-en {
    left: 160px;
  }

  .block-header-menu-content li:nth-child(4) a .txt-en {
    left: 217px;
  }

  .block-header-menu-content li:nth-child(5) a .txt-en {
    left: 142px;
  }
}

main {
  width: 100%;
  overflow: hidden;
}

.block-mv {
  position: relative;
  width: 100%;
  height: 100vh;
}

.block-mv.is-move::after {
  content: "";
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
}

.block-mv-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: var(--cl-bk);
  overflow: hidden;
}

.block-mv-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.77777778vh;
  height: 56.25vw;
  min-height: 100%;
  min-width: 100%;
  box-sizing: border-box;
  transform: translate(-50%, -50%);
}

.block-mv-txt {
  display: flex;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.block-mv-txt-en {
  color: var(--cl-gr);
  font-family: var(--ff-serif);
  letter-spacing: 0.04em;
}

.block-mv-txt-ja {
  color: #ffffff;
  font-family: var(--ff-ja-serif);
  letter-spacing: 0.03em;
}

@media all and (min-width: 768px) {
  .block-mv-txt-body {
    padding: 30px 0 0 109px;
  }

  .block-mv-txt-en {
    padding-left: 15px;
    font-size: 5.8rem;
  }

  .block-mv-txt-ja {
    margin-top: 5px;
    font-size: 8rem;
  }
}

@media all and (max-width: 767px) {
  .block-mv-txt-body {
    padding: 0 0 10px 15px;
  }

  .block-mv-txt-en {
    font-size: 2.4rem;
  }

  .block-mv-txt-ja {
    margin-top: 4px;
    font-size: 5.1rem;
  }
}

.ttl-h2 {
  display: block;
  position: relative;
}

.ttl-h2 .txt-en {
  position: absolute;
  color: var(--cl-h2);
  font-family: var(--ff-serif);
  font-weight: 300;
  letter-spacing: -0.02em;
}

.ttl-h2 .txt-ja {
  display: block;
  position: relative;
  font-family: var(--ff-ja-serif);
  font-weight: 300;
  letter-spacing: 0.05em;
}

.ttl-h2 .txt-ja::before {
  content: "";
  display: block;
  position: absolute;
  background-color: var(--cl-gr);
  height: 2px;
  transform: rotate(-45deg);
}

@media all and (min-width: 768px) {
  .ttl-h2 .txt-en {
    font-size: 28.7rem;
  }

  .ttl-h2 .txt-ja {
    font-size: 7rem;
  }

  .ttl-h2 .txt-ja::before {
    top: 49px;
    left: -128px;
    width: 150px;
  }
}

@media all and (max-width: 767px) {
  .ttl-h2 .txt-en {
    font-size: 7rem;
  }

  .ttl-h2 .txt-ja {
    padding-left: 26px;
    font-size: 2.5rem;
  }

  .ttl-h2 .txt-ja::before {
    top: 15px;
    left: -4px;
    width: 38px;
    height: 1px;
  }
}

.block-main-content {
  position: relative;
  background-color: #ffffff;
  z-index: 9;
}

.block-container {
  position: relative;
}

@media all and (min-width: 768px) {
  .block-container {
    width: var(--pc-width);
    margin: 0 auto;
    padding: var(--pc-padding);
  }
}

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

.block-message .ttl-h2 {
  z-index: 9;
}

.block-message-comment-1 {
  letter-spacing: 0.03em;
}

.block-message-comment-2 {
  font-weight: 500;
  letter-spacing: 0.03em;
}

.block-message-imgs picture {
  display: block;
  position: absolute;
}

.block-message-imgs picture img {
  display: block;
  max-width: 100%;
  height: auto;
}

.block-message-imgs picture::after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  background-color: var(--cl-gr);
  transform: rotate(-45deg);
}

@media all and (min-width: 768px) {
  .block-message {
    padding: 0 0 138px;
    background-image: url(../img/message_bg.png), url(../img/message_bg_2.png);
    background-position: center top, center top;
    background-repeat: no-repeat, no-repeat;
    background-size: 2284px 1145px, 1920px 1220px;
  }

  .block-message .ttl-h2 .txt-en {
    position: absolute;
    top: -30px;
    left: -50px;
  }

  .block-message-comment-1 {
    padding-top: 205px;
    font-size: 2.5rem;
    line-height: 1.8;
  }

  .block-message-comment-1 p + p {
    margin-top: 1.5em;
  }

  .block-message-comment-2 {
    margin-top: 80px;
    font-size: 4rem;
    line-height: 2;
  }

  .block-message-imgs picture.img-1 {
    top: 180px;
    right: -117px;
  }

  .block-message-imgs picture.img-2 {
    top: 506px;
    right: -60px;
  }

  .block-message-imgs picture.img-3 {
    top: 835px;
    right: -90px;
  }

  .block-message-imgs picture img {
    width: 423px;
  }

  .block-message-imgs picture::after {
    top: 27px;
    left: -47px;
    width: 150px;
  }
}

@media all and (max-width: 767px) {
  .block-message {
    background-image: url(../img/sp/message_bg.png);
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
  }

  .block-message .block-container {
    height: 100%;
    padding: 0 0 300px;
  }

  .block-message .ttl-h2 .txt-en {
    position: absolute;
    top: 64px;
    left: 7px;
  }

  .block-message-comment-1 {
    padding: 190px 0 0 43px;
    font-size: 1.4rem;
    line-height: 1.571;
  }

  .block-message-comment-1 p + p {
    margin-top: 1.4em;
  }

  .block-message-comment-2 {
    margin-top: 36px;
    padding-left: 43px;
    font-size: 2.1rem;
    line-height: 1.809;
  }

  .block-message-imgs picture.img-1 {
    top: 48px;
    right: 30px;
    width: 123px;
  }

  .block-message-imgs picture.img-2 {
    right: 30px;
    bottom: 154px;
    width: 194px;
  }

  .block-message-imgs picture.img-3 {
    left: 30px;
    bottom: 48px;
    width: 194px;
  }

  .block-message-imgs picture img {
    width: 100%;
    height: auto;
  }

  .block-message-imgs picture::after {
    top: 10px;
    left: -22px;
    width: 60px;
    height: 1px;
  }
}

.block-point {
  background-color: var(--cl-bg-br);
}

@media all and (min-width: 768px) {
  .block-point {
    padding: 111px 0 141px;
  }

  .block-point .ttl-h2 .txt-en {
    top: -164px;
    right: -58px;
  }

  .block-point-list {
    margin-top: 110px;
  }

  .block-point-list-item {
    display: grid;
    grid-template-rows: auto 1fr;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    width: 1200px;
  }

  .block-point-list-item:nth-child(odd) {
    grid-template-columns: 237px auto 450px;
    grid-template-areas:
      "list-no list-ttl list-img"
      "list-no list-comment list-img";
  }

  .block-point-list-item:nth-child(even) {
    grid-template-columns: 450px auto 237px;
    grid-template-areas:
      "list-img list-ttl  list-no"
      "list-img list-comment  list-no";
  }

  .block-point-list-item + .block-point-list-item {
    margin-top: 100px;
  }

  .block-point-list-item .list-no {
    grid-area: list-no;
  }

  .block-point-list-item .list-ttl {
    grid-area: list-ttl;
  }

  .block-point-list-item .list-comment {
    grid-area: list-comment;
  }

  .block-point-list-item .list-img {
    grid-area: list-img;
  }

  .block-point-list-item .list-no {
    position: relative;
    height: 100%;
    text-indent: -999999px;
  }

  .block-point-list-item .list-no::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    width: 262px;
    height: 315px;
    margin-top: -178px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .block-point-list-item:nth-child(1) .list-no::before {
    left: -63px;
    background-image: url(../img/point_no_01.png);
  }

  .block-point-list-item:nth-child(2) .list-no::before {
    right: -63px;
    background-image: url(../img/point_no_02.png);
  }

  .block-point-list-item:nth-child(3) .list-no::before {
    left: -63px;
    background-image: url(../img/point_no_03.png);
  }

  .block-point-list-item:nth-child(4) .list-no::before {
    right: -63px;
    background-image: url(../img/point_no_04.png);
  }

  .block-point-list-item:nth-child(odd) .list-ttl,
  .block-point-list-item:nth-child(odd) .list-comment {
    padding-right: 55px;
  }

  .block-point-list-item:nth-child(even) .list-ttl,
  .block-point-list-item:nth-child(even) .list-comment {
    padding-left: 55px;
  }

  .block-point-list-item .list-ttl {
    color: var(--cl-br);
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.666;
    letter-spacing: 0.03em;
  }

  .block-point-list-item .list-comment {
    margin-top: 30px;
    font-size: 2.2rem;
    font-weight: 500;
    line-height: 1.727;
    letter-spacing: 0.02em;
  }
}

@media all and (max-width: 767px) {
  .block-point {
    padding: 50px 15px 48px;
  }

  .block-point .ttl-h2 .txt-en {
    top: -58px;
    right: 0;
  }

  .block-point-list {
    margin-top: 40px;
  }

  .block-point-list-item {
    display: grid;
    grid-template-columns: 87px auto;
    grid-template-rows: auto auto auto;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    gap: 0px 00px;
    grid-auto-flow: row;
    grid-template-areas:
      "list-no list-img"
      "list-ttl list-ttl"
      "list-comment list-comment";
  }

  .block-point-list-item:nth-child(odd) {
    grid-template-columns: 87px auto;
    grid-template-areas:
      "list-no list-img"
      "list-ttl list-ttl"
      "list-comment list-comment";
  }

  .block-point-list-item:nth-child(even) {
    grid-template-columns: auto 87px;
    grid-template-areas:
      "list-img list-no"
      "list-ttl list-ttl"
      "list-comment list-comment";
  }

  .block-point-list-item + .block-point-list-item {
    margin-top: 40px;
  }

  .block-point-list-item .list-no {
    grid-area: list-no;
  }

  .block-point-list-item .list-img {
    grid-area: list-img;
  }

  .block-point-list-item .list-ttl {
    grid-area: list-ttl;
  }

  .block-point-list-item .list-comment {
    grid-area: list-comment;
  }

  .block-point-list-item .list-no {
    position: relative;
    height: 100%;
    text-indent: -999999px;
  }

  .block-point-list-item .list-no::before {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    width: 80px;
    height: 95px;
    margin-top: -45px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .block-point-list-item:nth-child(1) .list-no::before {
    left: 0;
    background-image: url(../img/sp/point_no_01.png);
  }

  .block-point-list-item:nth-child(2) .list-no::before {
    right: 0;
    background-image: url(../img/sp/point_no_02.png);
  }

  .block-point-list-item:nth-child(3) .list-no::before {
    left: 0;
    background-image: url(../img/sp/point_no_03.png);
  }

  .block-point-list-item:nth-child(4) .list-no::before {
    right: 0;
    background-image: url(../img/sp/point_no_04.png);
  }

  .block-point-list-item .list-ttl {
    padding-top: 14px;
    color: var(--cl-br);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.4;
    letter-spacing: 0.03em;
  }

  .block-point-list-item .list-comment {
    margin-top: 12px;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.533;
    letter-spacing: 0.02em;
  }
}

.block-people-list-items {
  display: flex;
}

.block-people-list-item > button {
  display: block;
  padding: 0;
  border: none;
  border-radius: 0;
  background-color: transparent;
  color: var(--cl-bk);
  text-align: center;
  cursor: pointer;
}

.block-people-list-item .list-img img {
  display: block;
  width: 100%;
  height: auto;
}

.block-people-list-item .list-ttl,
.block-people-list-item .list-target-profile-ttl {
  color: var(--cl-br);
  font-weight: 700;
  letter-spacing: 0.03em;
}

.block-people-list-item .list-name {
  border-top: 2px solid var(--cl-gr);
}

.block-people-list-item .list-target-profile-name {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--cl-gr);
}

.block-people-list-item .list-name .txt-ja,
.block-people-list-item .list-target-profile-name .txt-ja {
  font-weight: 700;
  letter-spacing: 0.03em;
}

.block-people-list-item .list-name .txt-en,
.block-people-list-item .list-target-profile-name .txt-en {
  color: var(--cl-gr);
  font-family: var(--ff-serif);
  font-weight: 700;
  letter-spacing: 0.06em;
}

.block-people-list-item .list-info {
  background-color: var(--cl-gr);
  color: #ffffff;
}

.block-people-list-item .list-target {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 99999;
}

.block-people-list-item .list-target-container {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.block-people-list-item .list-target-bg {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.block-people-list-item .list-target-inner {
  position: relative;
  background-color: rgba(188, 191, 195, 0.9);
  overflow: auto;
}

.block-people-list-item .list-target-close-btn {
  position: absolute;
  top: 0;
  right: 0;
  background-color: var(--cl-gr);
  cursor: pointer;
}

.block-people-list-item .list-target-body {
  background-color: #ffffff;
}

.block-people-list-item .list-target-profile {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
}

.block-people-list-item .list-target-profile-img img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.block-people-list-item .list-target-profile-info {
  letter-spacing: 0.02em;
}

.block-people-list-item .list-target-business .ttl {
  color: var(--cl-br);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.block-people-list-item .list-target-business .comment {
  letter-spacing: 0.01em;
}

.block-people-list-item .list-target-polish {
  position: relative;
  background-color: var(--cl-br);
  color: #ffffff;
}

.block-people-list-item .list-target-polish-inner {
  position: absolute;
  top: 8px;
  left: 8px;
  width: 100%;
  height: 100%;
  background-color: rgba(123, 110, 76, 0.15);
}

.block-people-list-item .list-target-polish-inner::before {
  content: "";
  display: block;
  position: absolute;
  top: -8px;
  left: -8px;
  width: 100%;
  height: 100%;
  background-color: var(--cl-br);
}

.block-people-list-item .list-target-polish-detail,
.block-people-list-item .list-target-polish-img {
  position: relative;
}

.block-people-list-item .list-target-polish-detail .ttl {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.block-people-list-item .list-target-polish-detail .comment {
  letter-spacing: 0.02em;
}

.block-people-list-item .list-target-polish-img img {
  display: block;
  width: 100%;
  height: auto;
}

.block-people-list-annotetion {
  margin-top: 30px;
  font-size: 1.6rem;
}

@media all and (min-width: 768px) {
  .block-people {
    padding: 110px 0 106px;
  }

  .block-people .ttl-h2 {
    display: flex;
    justify-content: flex-end;
  }

  .block-people .txt-en {
    top: -160px;
    left: -63px;
  }

  .block-people-list {
    position: relative;
    margin-top: 170px;
  }

  .block-people-list::before {
    content: "";
    display: block;
    position: absolute;
    top: 136px;
    left: 0;
    width: 100%;
    height: 480px;
    background-color: rgba(163, 170, 181, 0.1);
  }

  .block-people-list-items {
    justify-content: space-between;
  }

  .block-people-list-item {
    width: 256px;
  }

  .block-people-list-item:nth-child(odd) {
    padding-top: 50px;
  }

  .block-people-list-item .list-img img {
    border-radius: 10px;
  }

  .block-people-list-item > button {
    transition: opacity 0.3s;
  }

  .block-people-list-item > button:hover {
    opacity: 0.8;
  }

  .block-people-list-item .list-ttl {
    margin-top: 24px;
    font-size: 2.2rem;
    line-height: 1.59;
    letter-spacing: 0.03em;
  }

  .block-people-list-item .list-name {
    margin-top: 30px;
    padding-top: 22px;
  }

  .block-people-list-item .list-name .txt-ja {
    font-size: 2.8rem;
  }

  .block-people-list-item .list-name .txt-en {
    margin-top: 4px;
    font-size: 2.2rem;
  }

  .block-people-list-item .list-info {
    margin-top: 10px;
    padding: 27px 0;
    font-size: 1.9rem;
    line-height: 1.736;
    letter-spacing: 0.02em;
  }

  .block-people-list-item .list-target-inner {
    width: 821px;
    max-height: calc(100vh - 40px);
    padding: 30px;
  }

  .block-people-list-item .list-target-close-btn {
    top: 17px;
    right: 17px;
    width: 46px;
    height: 46px;
    background-image: url(../img/icon_modal_close.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 23px;
  }

  .block-people-list-item .list-target-body {
    padding: 45px 50px 50px;
  }

  .block-people-list-item .list-target-profile-img {
    width: 256px;
  }

  .block-people-list-item .list-target-profile-detail {
    width: 368px;
  }

  .block-people-list-item .list-target-profile-ttl {
    font-size: 3rem;
    line-height: 1.666;
  }

  .block-people-list-item .list-target-profile-name {
    margin-top: 18px;
    padding-top: 18px;
  }

  .block-people-list-item .list-target-profile-name .txt-ja {
    font-size: 2.8rem;
  }

  .block-people-list-item .list-target-profile-name .txt-en {
    margin-left: 12px;
    font-size: 2.2rem;
  }

  .block-people-list-item .list-target-profile-info {
    margin-top: 10px;
    font-size: 1.9rem;
    line-height: 1.8;
  }

  .block-people-list-item .list-target-business {
    margin-top: 40px;
  }

  .block-people-list-item .list-target-business .ttl {
    font-size: 2.5rem;
  }

  .block-people-list-item .list-target-business .comment {
    display: flex;
    justify-content: space-between;
    margin-top: 14px;
    font-size: 1.8rem;
    line-height: 1.777;
  }

  .block-people-list-item .list-target-business .comment p {
    width: 426px;
  }

  .block-people-list-item .list-target-business .comment img {
    width: 215px;
  }

  .block-people-list-item .list-target-polish {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 52px;
    padding: 15px 15px 15px 29px;
  }

  .block-people-list-item .list-target-polish-detail {
    width: 391px;
  }

  .block-people-list-item .list-target-polish-detail .ttl {
    font-size: 2.5rem;
  }

  .block-people-list-item .list-target-polish-detail .comment {
    margin-top: 12px;
    font-size: 1.8rem;
    line-height: 1.777;
  }

  .block-people-list-item .list-target-polish-img {
    width: 202px;
  }

  .block-people-list-item .list-target-annotation {
    margin-top: 24px;
  }
}

@media all and (max-width: 767px) {
  .block-people {
    padding: 50px 15px 28px;
  }

  .block-people .ttl-h2 {
    display: flex;
    justify-content: flex-end;
  }

  .block-people .ttl-h2 .txt-en {
    top: -60px;
    left: 0;
  }

  .block-people-list {
    margin-top: 40px;
  }

  .block-people-list-items {
    flex-wrap: wrap;
    justify-content: space-between;
  }

  .block-people-list-item {
    width: calc((100% - 13px) / 2);
    background-color: #f6f6f8;
  }

  .block-people-list-item:not(:nth-child(-n + 2)) {
    margin-top: 20px;
  }

  .block-people-list-item .list-img img {
    border-radius: 5px;
  }

  .block-people-list-item .list-ttl {
    margin-top: 10px;
    font-size: 1.4rem;
    line-height: 1.357;
    letter-spacing: 0.03em;
  }

  .block-people-list-item .list-name {
    margin: 8px 15px 0;
    padding-top: 10px;
    border-width: 1px;
  }

  .block-people-list-item .list-name .txt-ja {
    font-size: 1.7rem;
  }

  .block-people-list-item .list-name .txt-en {
    margin-top: 0;
    font-size: 1.3rem;
  }

  .block-people-list-item .list-info {
    margin-top: 3px;
    padding: 7px 0;
    font-size: 1.2rem;
    line-height: 1.583;
    letter-spacing: 0.02em;
  }

  .block-people-list-item .list-target-inner {
    width: 100vw;
    max-height: 100vh;
    max-height: 100dvh;
    padding: 24px;
  }

  .block-people-list-item .list-target-close-btn {
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    background-image: url(../img/sp/icon_modal_close.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: 24px;
  }

  .block-people-list-item .list-target-body {
    padding: 15px 21px 21px;
  }

  .block-people-list-item .list-target-profile {
    align-items: center;
  }

  .block-people-list-item .list-target-profile-img {
    width: 113px;
  }

  .block-people-list-item .list-target-profile-detail {
    width: calc(100% - 128px);
  }

  .block-people-list-item .list-target-profile-ttl {
    font-size: 1.5rem;
    line-height: 1.666;
  }

  .block-people-list-item .list-target-profile-name {
    margin-top: 8px;
    padding-top: 8px;
  }

  .block-people-list-item .list-target-profile-name .txt-ja {
    font-size: 1.4rem;
  }

  .block-people-list-item .list-target-profile-name .txt-en {
    margin-left: 10px;
    font-size: 1.1rem;
  }

  .block-people-list-item .list-target-profile-info {
    margin-top: 6px;
    font-size: 1.2rem;
    line-height: 1.5;
  }

  .block-people-list-item .list-target-business {
    margin-top: 14px;
  }

  .block-people-list-item .list-target-business .ttl {
    font-size: 1.7rem;
  }

  .block-people-list-item .list-target-business .comment {
    margin-top: 6px;
    font-size: 1.3rem;
    line-height: 1.615;
  }

  .block-people-list-item .list-target-business .comment img {
    display: none;
  }

  .block-people-list-item .list-target-polish {
    margin-top: 20px;
    padding: 11px;
  }

  .block-people-list-item .list-target-polish-detail .ttl {
    font-size: 1.7rem;
  }

  .block-people-list-item .list-target-polish-detail .comment {
    margin-top: 8px;
    font-size: 1.3rem;
    line-height: 1.615;
  }

  .block-people-list-item .list-target-polish-img {
    width: 100%;
    margin-top: 9px;
  }

  .block-people-list-item .list-target-annotation {
    margin-top: 24px;
    font-size: 1.2rem;
  }
}

.block-skill {
  background-color: var(--cl-bg-br);
}

.block-skill-list-items {
  display: flex;
}

@media all and (min-width: 768px) {
  .block-skill {
    padding: 118px 0 95px;
  }

  .block-skill .ttl-h2 .txt-en {
    top: -158px;
    right: -56px;
  }

  .block-skill-list {
    margin-top: 140px;
  }

  .block-skill-list-items {
    justify-content: space-between;
  }

  .block-skill-list-item {
    position: relative;
    width: 336px;
    padding: 220px 40px 40px;
    background-color: #ffffff;
  }

  .block-skill-list-item .list-img {
    position: absolute;
    top: -50px;
    right: -40px;
  }

  .block-skill-list-item .list-img img {
    display: block;
    width: 336px;
    height: auto;
  }

  .block-skill-list-item .list-ttl {
    color: var(--cl-br);
    font-size: 3rem;
    font-weight: 700;
    letter-spacing: 0.03em;
  }

  .block-skill-list-item .list-comment {
    margin-top: 16px;
    font-size: 2.2rem;
    line-height: 1.727;
    letter-spacing: 0.02em;
  }
}

@media all and (max-width: 767px) {
  .block-skill {
    padding: 50px 0 30px;
  }

  .block-skill .ttl-h2 {
    padding: 0 15px;
  }

  .block-skill .ttl-h2 .txt-en {
    top: -58px;
    right: 15px;
  }

  .block-skill-list {
    margin-top: 40px;
    overflow: hidden;
  }

  .block-skill-list-item {
    width: 100vw;
    padding: 0 15px;
    flex-shrink: 0;
  }

  .block-skill-list-item .list-img {
    width: 286px;
    margin: 0 auto;
  }

  .block-skill-list-item .list-img img {
    display: block;
    width: 100%;
    height: auto;
  }

  .block-skill-list-item .list-ttl {
    margin-top: 20px;
    color: var(--cl-br);
    font-size: 1.9rem;
    font-weight: 700;
    text-align: center;
    letter-spacing: 0.03em;
  }

  .block-skill-list-item .list-comment {
    margin-top: 16px;
    font-size: 1.5rem;
    line-height: 1.533;
    letter-spacing: 0.02em;
  }

  .swiper-button-prev-sk,
  .swiper-button-next-sk {
    top: 92px;
    width: 12px;
    height: 23px;
    margin: 0;
    cursor: pointer;
  }

  .swiper-button-prev-sk {
    left: 15px;
  }

  .swiper-button-next-sk {
    right: 15px;
  }

  .swiper-button-prev-sk::after,
  .swiper-button-next-sk::after {
    content: "";
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url(../img/sp/arw_slider.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }

  .swiper-button-next-sk::after {
    transform: rotate(180deg);
  }

  .swiper-pagination-sk {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    top: auto;
    bottom: auto;
    margin: 26px 0 0;
  }

  .swiper-pagination-sk .swiper-pagination-bullet {
    width: 10px;
    height: 10px;
    background-color: #dedad0;
    opacity: 1;
    transition: background-color 0.15s;
    cursor: pointer;
  }

  .swiper-pagination-sk.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet,
  .swiper-pagination-sk.swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 11px;
  }

  .swiper-pagination-sk .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background-color: #ada797;
  }
}

.block-data-list-items {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.block-data-list-item {
  position: relative;
}

.block-data-list-item::after {
  content: "";
  display: block;
  position: absolute;
  height: 2px;
  background-color: var(--cl-gr);
  transform: rotate(-45deg);
}

@media all and (min-width: 768px) {
  .block-data {
    position: relative;
    padding: 136px 0 108px;
  }

  .block-data::before {
    content: "";
    display: block;
    position: absolute;
    top: 523px;
    left: 0;
    width: calc((100% - 1320px) / 2);
    height: 635px;
    background-color: rgba(163, 170, 181, 0.2);
  }

  .block-data.block-container {
    position: relative;
  }

  .block-data .block-container::before {
    content: "";
    display: block;
    position: absolute;
    top: 387px;
    left: 0;
    width: 1015px;
    height: 635px;
    background-color: rgba(163, 170, 181, 0.2);
  }

  .block-data .ttl-h2 {
    display: flex;
    justify-content: flex-end;
  }

  .block-data .ttl-h2 .txt-en {
    top: -180px;
    left: -63px;
  }

  .block-data-list {
    margin-top: 136px;
  }

  .block-data-list-item {
    width: 370px;
  }

  .block-data-list-item:not(:nth-child(-n + 3)) {
    margin-top: 45px;
  }

  .block-data-list-item::after {
    top: 26px;
    left: -38px;
    width: 120px;
  }
}

@media all and (max-width: 767px) {
  .block-data {
    position: relative;
    padding: 50px 15px 20px;
  }

  .block-data::before {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
    left: 0;
    width: 321px;
    height: calc(100% - 162px);
    background-color: rgba(163, 170, 181, 0.2);
  }

  .block-data .ttl-h2 {
    display: flex;
    justify-content: flex-end;
  }

  .block-data .ttl-h2 .txt-en {
    top: -56px;
    left: 0;
  }

  .block-data-list {
    margin-top: 50px;
  }

  .block-data-list-item {
    width: calc((100% - 11px) / 2);
  }

  .block-data-list-item:not(:nth-child(-n + 2)) {
    margin-top: 12px;
  }

  .block-data-list-item::after {
    top: 16px;
    left: -14px;
    width: 60px;
    height: 1px;
  }
}

.block-event-internship {
  background-color: var(--cl-gr);
  color: #ffffff;
}

.block-event-internship > .block-container > h3 {
  position: relative;
  font-weight: 700;
  text-align: center;
  letter-spacing: 0.03em;
}

.block-event-internship > .block-container > h3::after {
  content: "";
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  height: 1px;
  background-color: #ffffff;
}

.block-event-internship-catchcopy,
.block-event-internship-comment {
  font-weight: 700;
  letter-spacing: 0.02em;
}

@media all and (min-width: 768px) {
  .block-event {
    padding-top: 148px;
  }

  .block-event .ttl-h2 .txt-en {
    top: -160px;
    right: -48px;
  }

  .block-event-internship {
    margin-top: 134px;
    padding: 92px 0 112px;
  }

  .block-event-internship > .block-container > h3 {
    padding-bottom: 26px;
    font-size: 4rem;
  }

  .block-event-internship > .block-container > h3::after {
    width: 204px;
    margin-left: -102px;
  }

  .block-event-internship-catchcopy {
    margin-top: 50px;
    font-size: 3.1rem;
    text-align: center;
  }

  .block-event-internship-comment {
    margin-top: 30px;
    font-size: 2.5rem;
    line-height: 1.8;
  }

  .block-event-internship-list {
    margin-top: 100px;
  }

  .block-event-internship-list-items {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .block-event-internship-list-item {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    justify-content: flex-start;
    position: relative;
    width: 364px;
    padding: 25px 0;
    background-color: #ffffff;
    color: var(--cl-bk);
  }

  .block-event-internship-list-item:nth-child(odd) {
    margin-bottom: 133px;
  }

  .block-event-internship-list-item:nth-child(even) {
    margin-top: 131px;
  }

  .block-event-internship-list-item::before {
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    height: 133px;
    color: rgba(34, 57, 98, 0.25);
    font-size: 15.8rem;
    font-family: var(--ff-serif);
    font-weight: 400;
    text-align: center;
    letter-spacing: -0.02em;
  }

  .block-event-internship-list-item:nth-child(odd)::before {
    bottom: -100px;
  }

  .block-event-internship-list-item:nth-child(even)::before {
    top: -203px;
  }

  .block-event-internship-list-item:nth-child(1):before {
    content: "01";
  }

  .block-event-internship-list-item:nth-child(2):before {
    content: "02";
  }

  .block-event-internship-list-item:nth-child(3):before {
    content: "03";
  }

  .block-event-internship-list-item::after {
    content: "";
    display: block;
    position: absolute;
    top: 15px;
    left: -38px;
    width: 90px;
    height: 2px;
    background-color: #687791;
    transform: rotate(-45deg);
  }

  .block-event-internship-list-item .list-img {
    order: 10;
  }

  .block-event-internship-list-item .list-ttl {
    order: 20;
  }

  .block-event-internship-list-item .list-comment {
    order: 30;
  }

  .block-event-internship-list-item .list-img img {
    display: block;
    width: calc(100% - 50px);
    height: auto;
    margin: 0 auto;
  }

  .block-event-internship-list-item .list-ttl {
    display: flex;
    justify-content: center;
    width: 100%;
    margin-top: 26px;
    color: var(--cl-br);
    font-size: 2.7rem;
    font-weight: 700;
    text-align: center;
    line-height: 1.296;
    letter-spacing: 0.02em;
  }

  .block-event-internship-list-item .list-ttl .no {
    display: none;
  }

  .block-event-internship-list-item .list-comment {
    margin-top: 16px;
    padding: 0 25px;
    font-size: 2.2rem;
    line-height: 1.727;
    letter-spacing: 0.02em;
  }
}

@media all and (max-width: 767px) {
  .block-event {
    padding-top: 60px;
  }

  .block-event .ttl-h2 {
    padding: 0 15px;
  }

  .block-event .ttl-h2 .txt-en {
    right: 15px;
    top: -56px;
  }

  .block-event-internship {
    margin-top: 34px;
    padding: 30px 15px 24px;
  }

  .block-event-internship > .block-container > h3 {
    padding-bottom: 6px;
    font-size: 2.4rem;
  }

  .block-event-internship > .block-container > h3::after {
    width: 50px;
    margin-left: -25px;
  }

  .block-event-internship-catchcopy {
    margin-top: 30px;
    font-size: 1.5rem;
    text-align: center;
  }

  .block-event-internship-comment {
    margin-top: 16px;
    font-size: 1.5rem;
    font-weight: 500;
    line-height: 1.533;
  }

  .block-event-internship-list {
    margin-top: 32px;
  }

  .block-event-internship-list-item {
    display: grid;
    position: relative;
    grid-template-columns: 129px 1fr;
    grid-template-rows: auto auto;
    grid-auto-columns: 1fr;
    grid-auto-rows: 1fr;
    gap: 0px 0px;
    grid-auto-flow: row;
    grid-template-areas:
      "list-ttl list-ttl"
      "list-img list-comment";
    padding: 16px 16px 25px 18px;
    background-color: #ffffff;
    color: var(--cl-bk);
  }

  .block-event-internship-list-item + .block-event-internship-list-item {
    margin-top: 20px;
  }

  .block-event-internship-list-item::after {
    content: "";
    display: block;
    position: absolute;
    top: 9px;
    left: -13px;
    width: 40px;
    height: 1px;
    background-color: #687791;
    transform: rotate(-45deg);
  }

  .block-event-internship-list-item .list-ttl {
    grid-area: list-ttl;
  }

  .block-event-internship-list-item .list-img {
    grid-area: list-img;
  }

  .block-event-internship-list-item .list-comment {
    grid-area: list-comment;
  }

  .block-event-internship-list-item .list-ttl {
    display: flex;
    align-items: center;
    position: relative;
    height: 40px;
    margin-bottom: 20px;
    padding-left: 66px;
    color: var(--cl-br);
    font-size: 1.7rem;
    font-weight: 700;
    letter-spacing: 1.176;
    letter-spacing: 0.02em;
  }

  .block-event-internship-list-item .list-ttl .no {
    position: absolute;
    top: -27px;
    left: 0;
    color: rgba(34, 57, 98, 0.25);
    font-size: 6rem;
    font-family: var(--ff-serif);
    font-weight: 400;
    letter-spacing: -0.02em;
  }

  .block-event-internship-list-item .list-img img {
    display: block;
    width: 100%;
    height: auto;
  }

  .block-event-internship-list-item .list-comment {
    padding-left: 14px;
    font-size: 1.3rem;
    line-height: 1.769;
    letter-spacing: 0.02em;
  }
}

.block-event-internship-info-content {
  background-color: #ffffff;
  color: var(--cl-bk);
}

.block-event-internship-info-item {
  border-bottom: 1px solid #707070;
}

.block-event-internship-info-item li {
  position: relative;
  padding-left: 1em;
}

.block-event-internship-info-item li::before {
  content: "・";
  position: absolute;
  top: 0;
  left: 0;
}

.block-event-internship-info-annotation a {
  color: var(--cl-bk);
  text-decoration: none;
}

@media all and (min-width: 768px) {
  .block-event-internship-info {
    position: relative;
    margin-top: 80px;
  }

  .block-event-internship-info::before {
    content: "";
    display: block;
    position: absolute;
    top: 143px;
    right: 0;
    width: calc((100% - 1200px) / 2);
    height: 767px;
    background-color: rgba(34, 57, 98, 0.25);
  }

  .block-event-internship-info-content {
    position: relative;
    padding: 40px 60px 44px;
  }

  .block-event-internship-info-content::before {
    content: "";
    display: block;
    position: absolute;
    top: 143px;
    left: -176px;
    width: 176px;
    height: 767px;
    background-color: rgba(34, 57, 98, 0.25);
  }

  .block-event-internship-info-item {
    display: flex;
    padding-bottom: 30px;
    letter-spacing: 0.02em;
  }

  .block-event-internship-info-item + .block-event-internship-info-item {
    margin-top: 30px;
  }

  .block-event-internship-info-item dt {
    width: 315px;
    font-size: 2.5rem;
    font-weight: 700;
  }

  .block-event-internship-info-item dd {
    width: calc(100% - 315px);
    font-size: 2.2rem;
    line-height: 1.727;
  }

  .block-event-internship-info-annotation > div {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 24px;
    font-size: 1.6rem;
    letter-spacing: 0.02em;
  }

  .block-event-internship-info-annotation p + p {
    margin-left: 1em;
  }
}

@media all and (max-width: 767px) {
  .block-event-internship-info {
    margin-top: 20px;
  }

  .block-event-internship-info-content {
    position: relative;
    padding: 20px;
  }

  .block-event-internship-info-item {
    padding-bottom: 20px;
    letter-spacing: 0.02em;
  }

  .block-event-internship-info-item + .block-event-internship-info-item {
    margin-top: 20px;
  }

  .block-event-internship-info-item dt {
    font-size: 1.6rem;
    font-weight: 700;
  }

  .block-event-internship-info-item dd {
    margin-top: 10px;
    font-size: 1.3rem;
    line-height: 1.615;
  }

  .block-event-internship-info-annotation {
    display: flex;
    justify-content: center;
    margin-top: 12px;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
  }
}

.block-event-internship-voice h3 {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.block-event-internship-voice h3::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ffffff;
}

.block-event-internship-voice h3 span {
  position: relative;
  background-color: var(--cl-gr);
}

.block-event-internship-voice-list-item {
  background-color: #ffffff;
  color: var(--cl-bk);
  overflow: hidden;
}

.block-event-internship-voice-list-item img {
  display: block;
  width: 100%;
  height: auto;
}

.block-event-internship-voice-list-item .list-info {
  color: #656565;
}

@media all and (min-width: 768px) {
  .block-event-internship-voice {
    margin-top: 58px;
  }

  .block-event-internship-voice h3 {
    font-size: 3.5rem;
  }

  .block-event-internship-voice h3 span {
    padding: 0 50px;
  }

  .block-event-internship-voice-list {
    margin-top: 60px;
  }

  .block-event-internship-voice-list-items {
    display: flex;
    justify-content: space-between;
  }

  .block-event-internship-voice-list-item {
    width: 366px;
    border-top-right-radius: 10px;
    border-top-left-radius: 10px;
  }

  .block-event-internship-voice-list-item .list-comment {
    padding: 30px 26px 0;
    font-size: 2.1rem;
    line-height: 1.619;
    letter-spacing: -0.015em;
  }

  .block-event-internship-voice-list-item .list-info {
    padding: 20px 26px 24px;
    font-size: 2.1rem;
  }
}

@media all and (max-width: 767px) {
  .block-event-internship-voice {
    margin-top: 23px;
  }

  .block-event-internship-voice h3 {
    font-size: 1.9rem;
  }

  .block-event-internship-voice h3 span {
    padding: 0 16px;
  }

  .block-event-internship-voice-list {
    margin-top: 20px;
  }

  .block-event-internship-voice-list-item {
    display: flex;
    align-items: center;
    border-top-left-radius: 10px;
    border-bottom-left-radius: 10px;
  }

  .block-event-internship-voice-list-item + .block-event-internship-voice-list-item {
    margin-top: 20px;
  }

  .block-event-internship-voice-list-item .list-img {
    width: 121px;
  }

  .block-event-internship-voice-list-item .list-detail {
    width: calc(100% - 121px);
    padding: 16px 19px;
    font-size: 1.2rem;
    line-height: 1.666;
  }

  .block-event-internship-voice-list-item .list-info {
    margin-top: 5px;
  }
}

.block-event-gallery img {
  display: block;
  width: 100%;
  height: auto;
}

@keyframes infinity-scroll-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-100%);
  }
}

.block-event-gallery {
  display: flex;
  overflow: hidden;
}

.block-event-gallery > div {
  display: flex;
  flex-shrink: 0;
}

.block-event-gallery > div {
  animation: infinity-scroll-left 80s infinite linear 0.5s both;
}

.block-event-gallery img {
  display: flex;
  flex-shrink: 0;
  height: auto;
}

@media all and (min-width: 768px) {
  .block-event-gallery {
    padding-top: 100px;
  }

  .block-event-gallery img {
    width: 421px;
    margin-right: 30px;
  }
}

@media all and (max-width: 767px) {
  .block-event-gallery {
    padding-top: 20px;
  }

  .block-event-gallery img {
    width: 147px;
    margin-right: 5px;
  }
}

.block-entry {
  background-color: var(--cl-br);
}

.block-entry p {
  color: #ffffff;
  font-weight: 500;
  text-align: center;
  letter-spacing: 0.03em;
}

.block-entry-btn,
.block-entry-btn a {
  display: flex;
  align-items: center;
  justify-content: center;
}

.block-entry-btn a {
  position: relative;
  background-color: #534931;
  text-decoration: none;
  letter-spacing: 0.03em;
}

.block-entry-btn a span {
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: #ffffff;
  color: var(--cl-br);
  font-family: var(--ff-serif);
}

@media all and (min-width: 768px) {
  .block-entry {
    margin-top: 100px;
    padding: 50px 0 60px;
  }

  .block-entry p {
    font-size: 4rem;
  }

  .block-entry-btn {
    margin-top: 32px;
  }

  .block-entry-btn a {
    width: 602px;
    height: 118px;
  }

  .block-entry-btn a span {
    top: -7px;
    left: -7px;
    font-size: 8.9rem;
    transition: top 0.2s, left 0.2s;
  }

  .block-entry-btn a:hover span {
    top: 0;
    left: 0;
  }

  .block-entry-btn a span::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    right: 25px;
    width: 13px;
    height: 26px;
    margin-top: -13px;
    background-image: url(../img/arw_btn.png);
    background-position: center;
    background-repeat: no-repeat;
    background-size: contain;
  }
}

@media all and (max-width: 767px) {
  .block-entry {
    margin-top: 20px;
    padding: 18px 0;
  }

  .block-entry p {
    font-size: 1.4rem;
  }

  .block-entry-btn {
    margin-top: 12px;
  }

  .block-entry-btn a {
    width: 238px;
    height: 51px;
  }

  .block-entry-btn a span {
    top: -3px;
    left: -2px;
    font-size: 3.8rem;
  }
}

.block-float-btn {
  position: fixed;
  right: 0;
  bottom: 0;
  text-indent: -9999px;
  z-index: 9;
}

.block-float-btn a {
  display: block;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

@media all and (min-width: 768px) {
  .block-float-btn a {
    width: 375px;
    height: 170px;
    background-image: url(../img/btn_entry.png);
  }
}

@media all and (max-width: 767px) {
  .block-float-btn a {
    width: 146px;
    height: 115px;
    background-image: url(../img/sp/btn_entry.png);
  }
}

footer {
  position: relative;
  background-color: #ffffff;
}

.block-footer-logo a,
.block-footer-logo img {
  display: block;
  height: auto;
}

.block-footer-nav {
  display: flex;
  align-items: center;
}

.block-footer-nav a {
  position: relative;
  color: #808080;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.block-footer-nav a::after {
  content: "";
  display: inline-block;
  position: relative;
  background-image: url(../img/icon_link_outer.png);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}

.block-footer-copyright {
  color: #808080;
  letter-spacing: 0.02em;
}

@media all and (min-width: 768px) {
  footer {
    padding: 64px 0 70px;
  }

  .block-footer-logo img {
    width: 333px;
  }

  .block-footer-bot {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-top: 32px;
  }

  .block-footer-nav li + li {
    margin-left: 90px;
  }

  .block-footer-nav a {
    font-size: 2.5rem;
  }

  .block-footer-nav a::after {
    width: 27px;
    height: 27px;
    margin-left: 8px;
  }

  .block-footer-copyright {
    font-size: 2rem;
  }
}

@media all and (max-width: 767px) {
  footer {
    padding: 20px 0;
  }

  .block-footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .block-footer-logo img {
    width: 140px;
  }

  .block-footer-nav {
    justify-content: center;
    margin-top: 14px;
  }

  .block-footer-nav li + li {
    margin-left: 27px;
  }

  .block-footer-nav a {
    font-size: 1.1rem;
  }

  .block-footer-nav a::after {
    width: 11px;
    height: 11px;
    margin-left: 4px;
  }

  .block-footer-copyright {
    margin-top: 12px;
    font-size: 0.8rem;
    text-align: center;
  }
}
