@charset "UTF-8";
main {
  font-family: "Noto Sans JP", serif;
  font-weight: 300;
  font-feature-settings: "palt";
  letter-spacing: 0.14rem;
  line-height: 1.8;
}

#page-top {
  z-index: 9000;
  position: fixed;
  bottom: -80px;
  right: 10px;
  width: 80px;
  height: 80px;
  line-height: 80px;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  box-sizing: border-box;
  transition: 0.5s;
  border-radius: 50%;
  padding: 10px;
}
#page-top.is-show {
  bottom: 10px;
}

header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 100;
  display: flex;
  justify-content: flex-end;
}
header nav ul {
  display: flex;
  justify-content: flex-end;
}
header nav ul li a {
  color: #fff !important;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-flow: column;
  height: 70px;
  padding: 10px 20px;
  transition: 0.6s ease;
}
header nav ul li a:hover {
  background-color: rgba(14, 74, 62, 0.6);
  transition: 0.6s ease;
}

#fixed-header {
  z-index: 90;
  position: fixed;
  top: -70px;
  width: 100%;
  height: 70px;
  line-height: 70px;
  font-size: 2em;
  text-align: center;
  color: #fff;
  background: rgba(0, 0, 0, 0.6);
  box-sizing: border-box;
  transition: 0.5s;
}
#fixed-header.is-show {
  top: 0;
}
#fixed-header > div {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  height: 70px;
  margin-left: 1rem;
}
#fixed-header h1 {
  height: 50px;
}
#fixed-header h1 img {
  width: auto;
  height: 100%;
}

footer .inner {
  padding: 2rem 2rem 4rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-flow: row wrap;
}
@media (max-width: 800px) {
  footer .inner {
    display: block;
  }
}
footer .inner > div:nth-of-type(1) {
  width: 350px;
}
@media (max-width: 800px) {
  footer .inner > div:nth-of-type(1) {
    width: 100%;
    margin-bottom: 20px;
  }
}
footer .inner > div:nth-of-type(1) h2 {
  margin-bottom: 10px;
  max-width: 300px;
}
footer .inner nav {
  width: 350px;
  transform: translateY(-10px);
}
@media (max-width: 800px) {
  footer .inner nav {
    width: 100%;
    transform: none;
  }
}
footer .inner nav ul li {
  margin-bottom: 10px;
}
footer .inner nav ul li a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: #0e4a3e;
  color: #fff !important;
  height: 45px;
  padding: 5px;
  border-radius: 3px;
  transition: 0.6s ease;
}
@media (max-width: 800px) {
  footer .inner nav ul li a {
    height: auto;
    padding: 10px;
    border-radius: 7px;
  }
}
footer .inner nav ul li a span:nth-of-type(1) {
  width: 30px;
}
@media (max-width: 800px) {
  footer .inner nav ul li a span:nth-of-type(1) {
    width: 20%;
    padding-right: 10px;
  }
}
footer .inner nav ul li a span:nth-of-type(2) {
  width: calc(100% - 30px - 30px - 5px - 5px);
  font-weight: 600 !important;
  letter-spacing: 0;
  font-size: 0.95rem;
}
@media (max-width: 800px) {
  footer .inner nav ul li a span:nth-of-type(2) {
    width: 60%;
  }
}
footer .inner nav ul li a span:nth-of-type(3) {
  width: 30px;
}
@media (max-width: 800px) {
  footer .inner nav ul li a span:nth-of-type(3) {
    width: 20%;
    padding-left: 10px;
  }
}
footer .inner nav ul li a:hover {
  opacity: 0.7;
  transition: 0.6s ease;
}
footer small {
  padding: 10px;
  display: block;
  text-align: center;
  font-size: 0.6rem;
  letter-spacing: 0.4rem;
  font-family: "Roboto", serif;
  color: #666;
}

.main-visual {
  width: 100%;
  height: 100vh;
  position: relative;
}
@media (max-width: 800px) {
  .main-visual {
    height: 70vh;
/*    margin-bottom: 56.25vw;*/
  }
}
.main-visual .slider-2 {
  z-index: -1;
}
.main-visual .slider-2 li {
  height: 100vh;
  background-size: cover;
  background-position: center;
}
@media (max-width: 800px) {
  .main-visual .slider-2 li {
    height: 70vh;
  }
}
.main-visual .slider-2 li:first-of-type {
  background-image: url(../images/slider/image1.png);
}
.main-visual .slider-2 li:nth-child(2) {
  background-image: url(../images/slider/image2.png);
}
.main-visual .slider-2 li:nth-child(3) {
  background-image: url(../images/slider/image3.png);
}
.main-visual .slider-2 li:nth-child(4) {
  background-image: url(../images/slider/image4.png);
}
.main-visual .slider-2 li:nth-child(5) {
  background-image: url(../images/slider/image5.png);
}
.main-visual .slider-2 li:nth-child(6) {
  background-image: url(../images/slider/image6.png);
}
.main-visual .slider-2 li:last-child {
  background-image: url(../images/slider/image7.png);
}
.main-visual .slide-text {
  position: absolute;
  z-index: 100;
  width: 350px;
  height: 90px;
  top: 0;
  left: 40px;
  bottom: 0;
  margin: auto;
}
@media (max-width: 800px) {
  .main-visual .slide-text {
    width: 70px;
    height: 100%;
    top: 20px;
    left: 1rem;
    bottom: auto;
  }
}
.main-visual .slide-text > figure.pc-only {
  width: 100%;
  height: 90px;
}
.main-visual .slide-text > figure.pc-only > img {
  width: auto;
  height: 100%;
}
.main-visual .slide-text > figure.sp-only > img {
  width: 100%;
  height: auto;
}
.main-visual .scroll {
  position: absolute;
/*  right: 0;*/
  left: 0;
  bottom: 0;
  color: #fff;
  transform: rotate(-90deg) translateX(50%);
}

.video {
  text-align: center;
  margin: 80px auto;
  max-width: 50%;
}
.video iframe {
  width: 100%;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  vertical-align: top;
  aspect-ratio: 16/9;
}
@media (max-width: 800px) {
  .video {
    width: calc(100% - 4rem);
    max-width: initial;
    margin-top: 30px;
    margin-bottom: 30px;
  }
  .video iframe {}
}

/* 拡大率調整 */
@keyframes fadezoom {
  0% {
    transform: scale(1.15);
  }
  100% {
    transform: scale(1);
  }
}
/* ズームアニメーション */
.animation {
  animation: fadezoom 15s 0s forwards;
}

@media (max-width: 800px) {
  .pc-only {
    display: none !important;
  }
}

.sp-only {
  display: none !important;
}
@media (max-width: 800px) {
  .sp-only {
    display: block !important;
  }
}

.container {
  padding: 40px 20px;
}
@media (max-width: 800px) {
  .container {
    padding: 20px 0;
  }
}

.title {
  margin-bottom: 1rem;
}
.title.type-1 {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 2.4rem;
  text-align: center;
  letter-spacing: 0.8rem;
  color: #0e4a3e;
}
@media (max-width: 800px) {
  .title.type-1 {
    font-size: 1.6rem;
    line-height: 1.6;
  }
}
.title.type-1 > span {
  text-align: left;
}
.title.type-2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  font-size: 2.4rem;
  text-align: center;
  letter-spacing: 0.8rem;
  color: #fff !important;
}
.title.type-2 > span {
  text-align: left;
}

.intro-head {
  padding: 1rem 0;
}
.intro-content {
  padding: 1rem;
}
@media (max-width: 800px) {
  .intro-content {
    padding: 8px;
  }
}
.intro-content > .item-list {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 2rem;
}
@media (max-width: 800px) {
  .intro-content > .item-list {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }
}
.intro-content > .item-list li {
  background-color: #000;
  position: relative;
}
.intro-content > .item-list li .icon {
  position: absolute;
  right: 0;
  top: 0;
  z-index: 1;
  color: #fff;
  background: #0e4a3e;
  font-size: 16px;
  line-height: 1.5;
  padding: 5px 15px;
  font-family: "Noto Serif JP", serif;
}
.intro-content > .item-list li > figure {
  position: relative;
}
.intro-content > .item-list li > figure::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 30px;
  background: linear-gradient(rgba(0, 0, 0, 0), rgb(0, 0, 0));
  position: absolute;
  bottom: 0;
  left: 0;
}
.intro-content > .item-list li > div {
  padding: 1rem 1rem 2rem 1rem;
}
@media (max-width: 800px) {
  .intro-content > .item-list li > div {
    padding: 10px 10px 20px 10px;
  }
}
.intro-content > .item-list li > div h3 {
  text-align: center;
}
.intro-content > .item-list li > div h3 span {
  display: block;
  color: #fff;
  line-height: 1.6;
}
.intro-content > .item-list li > div h3 span.txt-ja {
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
}
@media (max-width: 800px) {
  .intro-content > .item-list li > div h3 span.txt-ja {
    font-size: 15px;
    letter-spacing: 0;
  }
}
.intro-content > .item-list li > div h3 span.txt-en {
  font-family: "Roboto", serif;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.15rem;
}
@media (max-width: 800px) {
  .intro-content > .item-list li > div h3 span.txt-en {
    font-size: 10px;
  }
}

.info {
  background-image: url(../images/info_back.jpg);
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
}
.info-content {
  padding: 0 2rem;
}
.info-content > div {
  display: flex;
  justify-content: space-between;
  margin-bottom: 4rem;
}
@media (max-width: 800px) {
  .info-content > div {
    flex-flow: column;
  }
}
.info-content > div:last-of-type {
  margin-bottom: 0;
}
.info-content > div > figure {
  width: 55%;
}
@media (max-width: 800px) {
  .info-content > div > figure {
    width: 100%;
  }
}
.info-content > div .txt {
  width: 45%;
  -webkit-backdrop-filter: blur(4px) brightness(1.04);
          backdrop-filter: blur(4px) brightness(1.04);
  padding: 2rem 2rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-flow: column;
}
@media (max-width: 800px) {
  .info-content > div .txt {
    width: 100%;
    padding: 10px;
  }
}
.info-content > div .txt-head {
  margin-bottom: 1.4rem;
}
.info-content > div .txt-head h2 {
  display: flex;
  justify-content: flex-start;
  align-items: baseline;
}
@media (max-width: 800px) {
  .info-content > div .txt-head h2 {
    flex-flow: column;
    align-items: center;
    justify-content: center;
  }
}
.info-content > div .txt-head h2 span {
  display: inline-block;
}
.info-content > div .txt-head h2 span.ja {
  font-family: "Noto Serif JP", serif;
  font-size: 1.6rem;
  margin-right: 0.6rem;
  letter-spacing: 0.4rem;
}
@media (max-width: 800px) {
  .info-content > div .txt-head h2 span.ja {
    margin-bottom: 6px;
    margin-right: auto;
  }
}
.info-content > div .txt-head h2 span.en {
  font-family: "Roboto", serif;
  font-weight: 300;
  font-size: 1.1rem;
}
.info-content > div:nth-of-type(odd) .txt {
  padding-left: 3rem;
}
@media (max-width: 800px) {
  .info-content > div:nth-of-type(odd) .txt {
    padding-left: 10px;
  }
}
.info-content > div:nth-of-type(even) {
  flex-flow: row-reverse;
}
@media (max-width: 800px) {
  .info-content > div:nth-of-type(even) {
    flex-flow: column;
  }
}
.info-content > div:nth-of-type(even) .txt {
  padding-right: 3rem;
}
@media (max-width: 800px) {
  .info-content > div:nth-of-type(even) .txt {
    padding-right: 10px;
  }
}

.flow-head {
  text-align: center;
  margin-bottom: 2rem;
}
.flow-head > p {
  display: inline-block;
  text-align: left;
  padding: 0 10px;
}
.flow-content {
  width: 95%;
  max-width: 800px;
  margin: 0 auto;
}
@media (max-width: 800px) {
  .flow-content {
    padding-left: 2rem;
  }
}
.flow-content ul {
  position: relative;
}
.flow-content ul::before {
  content: "";
  display: inline-block;
  width: 1px;
  height: calc(100% - 140px);
  background-color: #000;
  position: absolute;
  top: 70px;
  left: -3rem;
  transform: translateX(4px);
}
@media (max-width: 800px) {
  .flow-content ul::before {
    left: -2rem;
    height: calc(100% - 220px);
    top: 110px;
  }
}
.flow-content ul li {
  margin-bottom: 1rem;
  width: 100%;
  height: 140px;
  border: 1px solid #000;
  position: relative;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 800px) {
  .flow-content ul li {
    height: 220px;
    justify-content: space-between;
    align-items: center;
    flex-flow: column;
    padding-bottom: 8px;
  }
}
.flow-content ul li::before {
  content: "";
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: #000;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -3rem;
  margin: auto;
}
@media (max-width: 800px) {
  .flow-content ul li::before {
    left: -2rem;
  }
}
.flow-content ul li::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-right: 24px solid #000;
  position: absolute;
  top: 0;
  bottom: 0;
  left: -32px;
  margin: auto;
}
@media (max-width: 800px) {
  .flow-content ul li::after {
    border: 8px solid transparent;
    border-right: 18px solid #000;
    left: -26px;
  }
}
.flow-content ul li .txt {
  width: calc(100% - 100px);
  padding: 1rem 0 1rem 2rem;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-flow: column;
}
@media (max-width: 800px) {
  .flow-content ul li .txt {
    padding: 10px;
    width: 100%;
    margin-bottom: auto;
  }
}
.flow-content ul li .txt > h3 {
  font-family: "Noto Serif JP", serif;
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #0e4a3e;
  display: inline;
}
@media (max-width: 800px) {
  .flow-content ul li .txt > h3 {
    font-size: 18px;
    margin-bottom: 10px;
  }
}
.flow-content ul li .txt > h3 > span {
  display: inline;
  font-size: 0.8em;
}
.flow-content ul li .txt > p {
  font-size: 0.95rem;
  line-height: 1.4;
}
@media (max-width: 800px) {
  .flow-content ul li .txt > p {
    font-size: 0.9rem;
  }
}
.flow-content ul li .photo {
  width: 100px;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media (max-width: 800px) {
  .flow-content ul li .photo {
    width: 100%;
    margin-top: auto;
  }
}
.flow-content ul li .photo a {
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #9FB2AE;
  width: 60px;
  height: 60px;
  border-radius: 50%;
}
@media (max-width: 800px) {
  .flow-content ul li .photo a {
    width: calc(100% - 10px);
    height: 40px;
    border-radius: 0;
    padding: 5px;
  }
}
.flow-content ul li .photo a > img {
  width: 40px;
}
.flow-content ul li .photo a > span {
  font-weight: 400;
  color: #fff;
  margin-left: 1rem;
}

.plus-content {
  display: flex;
  justify-content: space-between;
  flex-flow: row wrap;
}
@media (max-width: 800px) {
  .plus-content {
    display: block;
  }
}
.plus-content h2 {
  width: 100%;
  display: block;
  padding: 2rem 1rem;
  background-color: #000;
  color: #fff;
  font-size: 2.4rem;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  order: 3;
}
@media (max-width: 800px) {
  .plus-content h2 {
    font-size: 24px;
    line-height: 1.6;
  }
}
.plus-content .wrap {
  width: 50%;
  position: relative;
  overflow: hidden;
}
@media (max-width: 800px) {
  .plus-content .wrap {
    width: 100%;
  }
}
.plus-content .wrap::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 0;
  left: 0;
  margin: auto;
  z-index: -1;
  transition: 0.6s ease;
}
.plus-content .wrap::after {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -2;
  transition: 0.6s ease;
}
.plus-content .wrap.col1 {
  order: 1;
}
.plus-content .wrap.col1::after {
  background-image: url(../images/plus_img-1.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.plus-content .wrap.col2 {
  order: 2;
}
.plus-content .wrap.col2::after {
  background-image: url(../images/plus_img-2.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.plus-content .wrap.col3 {
  order: 4;
}
.plus-content .wrap.col3::after {
  background-image: url(../images/plus_img-3.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.plus-content .wrap.col4 {
  order: 5;
}
.plus-content .wrap.col4::after {
  background-image: url(../images/plus_img-4.jpg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.plus-content .wrap > button {
  width: 100%;
  height: 400px;
  border: none !important;
  background: none !important;
  position: relative;
  cursor: pointer;
}
.plus-content .wrap > button > p:nth-of-type(1) span {
  font-family: "Noto Serif JP", serif;
  color: #fff;
  display: block;
  font-size: 2rem;
  transition: 0.6s ease;
}
.plus-content .wrap > button > p:nth-of-type(2) {
  position: absolute;
  right: 0;
  bottom: 0;
  text-align: right;
  font-family: "Roboto", serif;
  font-size: 0.9rem;
  letter-spacing: 0.2rem;
  color: #fff;
  padding-right: 1rem;
}
.plus-content .wrap > button > p:nth-of-type(2)::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border: 8px solid transparent;
  border-right: 8px solid #fff;
  border-bottom: 8px solid #fff;
  position: absolute;
  right: 0;
  bottom: 0;
  transition: 0.6s ease;
}
.plus-content .wrap > button:hover > p:nth-of-type(2) span {
  color: #0e4a3e;
  transition: 0.6s ease;
}
.plus-content .wrap > button:hover > p:nth-of-type(2)::after {
  border: 8px solid transparent;
  border-right: 8px solid #0e4a3e;
  border-bottom: 8px solid #0e4a3e;
  transition: 0.6s ease;
}
.plus-content .wrap:hover::before {
  background-color: rgba(0, 0, 0, 0.08);
  transition: 0.6s ease;
}
.plus-content .wrap:hover::after {
  transform: scale(1.1);
  transition: 0.6s ease;
}
.plus-content__detail {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 800px) {
  .plus-content__detail {
    flex-flow: column;
    overflow-y: scroll !important;
  }
}
.plus-content__detail > button {
  position: absolute;
  top: 0;
  right: 10px;
  background-color: #000;
  color: #fff;
  border: none;
  font-family: "Roboto", serif;
  letter-spacing: 0.1rem;
  padding: 10px;
  line-height: 1;
  font-size: 0.9rem;
  transition: 0.6s ease;
  cursor: pointer;
}
.plus-content__detail > button:hover {
  background-color: #0e4a3e;
  transition: 0.6s ease;
}
.plus-content__detail > figure {
  width: 50%;
  height: 90vh;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  display: block;
}
@media (max-width: 800px) {
  .plus-content__detail > figure {
    width: 100%;
    height: 200px;
  }
}
.plus-content__detail .txt {
  width: 50%;
  padding: 3rem;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 800px) {
  .plus-content__detail .txt {
    width: 100%;
    padding: 14px;
  }
}
.plus-content__detail .txt h3 {
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
}
@media (max-width: 800px) {
  .plus-content__detail .txt h3 {
    font-size: 20px;
    margin-bottom: 1rem;
  }
}
.plus-content__detail .txt p {
  margin-bottom: 1rem;
}
@media (max-width: 800px) {
  .plus-content__detail .txt p {
    line-height: 1.6;
    font-size: 0.9rem;
  }
}
.plus-content__detail .txt p:last-of-type {
  margin-bottom: 0;
}

.modal-window {
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 95%;
  max-width: 1200px;
  height: auto;
  background-color: #dfdddd;
  z-index: 12000;
}

.overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  width: 100%;
  height: 100%;
  z-index: 11000;
}

.no_scroll {
  overflow: hidden;
}

.voice-head {
  margin-bottom: 2rem;
}
.voice-content ul {
  display: flex;
  justify-content: center;
  flex-flow: row wrap;
}
@media (max-width: 800px) {
  .voice-content ul {
    display: block;
  }
}
.voice-content ul li {
  width: calc(25% - 3rem);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  margin: 1.5rem;
  height: 60vh;
  max-height: 420px;
  position: relative;
}
@media (max-width: 800px) {
  .voice-content ul li {
    width: 85%;
    margin: auto;
    margin-bottom: 2rem;
  }
}
.voice-content ul li h3 {
  writing-mode: vertical-rl;
  position: absolute;
  top: -20px;
  right: -20px;
  font-family: "Noto Serif JP", serif;
  font-size: 1.4rem;
}
.voice-content ul li h3 > span {
  display: inline-block;
  background: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.6) 0%);
  line-height: 1.9;
  color: #fff;
  padding: 8px 0;
  margin-left: 4px;
}
.voice-content ul li h3 > span:nth-of-type(2) {
  margin-top: 2rem;
}
.voice-content ul li .txt {
  position: absolute;
  bottom: 2rem;
  left: -10px;
  background-color: #0e4a3e;
  letter-spacing: 0.04rem;
  color: #fff;
  padding: 10px;
}
.voice-content ul li .txt > p {
  font-size: 0.8rem;
}
.voice-content .btn {
  margin-top: 2rem;
  text-align: center;
}
.voice-content .btn a {
  display: inline-block;
  color: #000;
  font-family: "Roboto", serif;
  padding: 10px 26px 10px 28px;
  border: 1px solid #000;
  position: relative;
  transition: 0.6s ease;
  overflow: hidden;
  font-weight: 300;
}
.voice-content .btn a::before {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border: 4px solid transparent;
  border-right: 4px solid #0e4a3e;
  border-bottom: 4px solid #0e4a3e;
  position: absolute;
  right: 4px;
  bottom: 4px;
  transition: 0.6s ease;
}
.voice-content .btn a::after {
  content: "";
  display: inline-block;
  width: 140%;
  height: 100%;
  transform: skew(-20deg) translateX(100%);
  background-color: #0e4a3e;
  position: absolute;
  top: 0;
  left: 0;
  transition: 0.6s ease;
  z-index: -1;
}
.voice-content .btn a:hover {
  transition: 0.6s ease;
  color: #fff;
}
.voice-content .btn a:hover::before {
  border: 4px solid transparent;
  border-right: 4px solid #fff;
  border-bottom: 4px solid #fff;
  transition: 0.6s ease;
  right: 0;
  bottom: 0;
}
.voice-content .btn a:hover::after {
  transform: skew(-20deg) translateX(-15%);
  transition: 0.6s ease;
}

.cta {
  position: relative;
  background-image: url(../images/slider/image2.png);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  text-align: center;
}
.cta::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.2);
}
@media (max-width: 800px) {
  .cta::before {
    background-color: rgba(0, 0, 0, 0.3);
  }
}
.cta .container {
  position: relative;
}
.cta-content {
  padding: 2rem 0;
}
.cta-content ul li {
  margin-bottom: 4rem;
}
@media (max-width: 800px) {
  .cta-content ul li {
    margin-bottom: 2rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
  }
}
.cta-content ul li h2 {
  font-size: 2rem;
  color: #fff;
  font-family: "Noto Serif JP", serif;
  margin-bottom: 10px;
}
@media (max-width: 800px) {
  .cta-content ul li h2 {
    font-size: 24px;
    line-height: 1.6;
  }
}
.cta-content ul li p {
  font-size: 1.4rem;
  color: #fff;
  font-family: "Noto Serif JP", serif;
}
@media (max-width: 800px) {
  .cta-content ul li p {
    font-size: 16px;
    padding: 0 10px;
  }
}
.cta .btn {
  text-align: center;
}
.cta .btn a {
  display: inline-block;
  padding: 10px 4rem;
  border: 1px solid #fff;
  color: #fff !important;
  position: relative;
}
.cta .btn a span.ja {
  font-family: "Noto Serif JP", serif;
  font-size: 2rem;
  letter-spacing: 0.4rem;
}
.cta .btn a::after {
  content: "";
  display: inline-block;
  width: 0;
  height: 0;
  border: 6px solid transparent;
  border-left: 8px solid #fff;
  position: absolute;
  top: 0;
  right: 14px;
  bottom: 0;
  margin: auto;
  transition: 0.6s ease;
}
.cta .btn a:hover::after {
  transition: 0.6s ease;
  right: 10px;
}