/* Scss Document */
/*====================================================================
	index
====================================================================

Part name///
	01 General_style
	02 Common_style
	03 Top_style
*/
/*---------------------------------------------------------
	General
*/
/*====================================================================
	01 General_style
====================================================================*/
* {
  word-break: break-all;
  word-wrap: break-word;
}

body {
  font-family: "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans", Meiryo, sans-serif;
  word-break: break-all;
  -webkit-text-size-adjust: 100%;
  font-feature-settings: "palt";
  overflow-x: hidden;
  scroll-behavior: auto;
  overflow-x: hidden;
}
a {
  -webkit-transition: all 0.5s ease-in-out 0s;
  -ms-transition: all 0.5s ease-in-out 0s;
  -moz-transition: all 0.5s ease-in-out 0s;
  -o-transition: all 0.5s ease-in-out 0s;
  transition: all 0.5s ease-in-out 0s;
}

img {
  max-width: 100%;
}

@media screen and (max-width: 960px) {
  .pc {
    display: none;
  }
}

.sp {
  display: none;
}
@media screen and (max-width: 960px) {
  .sp {
    display: initial;
  }
}

@-webkit-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-moz-keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fade_up {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 30px) scale(1.03);
    -ms-transform: translate(0, 30px) scale(1.03);
    -moz-transform: translate(0, 30px) scale(1.03);
    -o-transform: translate(0, 30px) scale(1.03);
    transform: translate(0, 30px) scale(1.03);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0) scale(1);
    -ms-transform: translate(0, 0) scale(1);
    -moz-transform: translate(0, 0) scale(1);
    -o-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1);
  }
}
@-moz-keyframes fade_up {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 30px) scale(1.03);
    -ms-transform: translate(0, 30px) scale(1.03);
    -moz-transform: translate(0, 30px) scale(1.03);
    -o-transform: translate(0, 30px) scale(1.03);
    transform: translate(0, 30px) scale(1.03);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0) scale(1);
    -ms-transform: translate(0, 0) scale(1);
    -moz-transform: translate(0, 0) scale(1);
    -o-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1);
  }
}
@keyframes fade_up {
  0% {
    opacity: 0;
    -webkit-transform: translate(0, 30px) scale(1.03);
    -ms-transform: translate(0, 30px) scale(1.03);
    -moz-transform: translate(0, 30px) scale(1.03);
    -o-transform: translate(0, 30px) scale(1.03);
    transform: translate(0, 30px) scale(1.03);
  }
  100% {
    opacity: 1;
    -webkit-transform: translate(0, 0) scale(1);
    -ms-transform: translate(0, 0) scale(1);
    -moz-transform: translate(0, 0) scale(1);
    -o-transform: translate(0, 0) scale(1);
    transform: translate(0, 0) scale(1);
  }
}
@keyframes slide-arrow {
  0% {
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
  50% {
    -webkit-transform: translate(40px, -50%);
    -ms-transform: translate(40px, -50%);
    -moz-transform: translate(40px, -50%);
    -o-transform: translate(40px, -50%);
    transform: translate(40px, -50%);
  }
  51% {
    -webkit-transform: translate(-40px, -50%);
    -ms-transform: translate(-40px, -50%);
    -moz-transform: translate(-40px, -50%);
    -o-transform: translate(-40px, -50%);
    transform: translate(-40px, -50%);
  }
  100% {
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -moz-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
  }
}
@keyframes scroll_icon {
  0% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -o-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    opacity: 0.5;
  }
  70% {
    -webkit-transform: translate(-50%, -50%) scale(2);
    -ms-transform: translate(-50%, -50%) scale(2);
    -moz-transform: translate(-50%, -50%) scale(2);
    -o-transform: translate(-50%, -50%) scale(2);
    transform: translate(-50%, -50%) scale(2);
    opacity: 0;
  }
  100% {
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    -moz-transform: translate(-50%, -50%) scale(1);
    -o-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
    opacity: 0;
  }
}
.inview {
  opacity: 0;
}
.inview.active {
  opacity: 1;
}

.inview_fade.active {
  animation: fade 1s ease-in-out forwards;
}

.inview_fade_up.active {
  animation: fade_up 1s ease-in-out forwards;
}

/* Scss Document */
/*====================================================================
	index
====================================================================

Part name///
	01 General_style
	02 Common_style
	03 Top_style
*/
/*---------------------------------------------------------
	header
*/
/* Scss Document */
/*====================================================================
	index
====================================================================

Part name///
	01 General_style
	02 Common_style
	03 Top_style
*/
/*---------------------------------------------------------
	footer
*/
footer {
  position: relative;
  background-image: url("../img/footer_bg.webp");
  background-size: cover;
  background-position: center bottom;
  padding: 90px 90px 30px;
}
@media screen and (max-width: 960px) {
  footer {
    background-image: url("../img/footer_bg_sp.webp");
    padding: 60px 30px 20px;
  }
}
footer .credit {
  color: #FFF;
  font-family: "Alegreya Sans SC";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px; /* 200% */
  letter-spacing: 1px;
  text-transform: uppercase;
  margin: 0 0 279px;
}
@media screen and (max-width: 960px) {
  footer .credit {
    font-size: 8px;
    margin: 0 0 177px;
  }
}
footer .credit span {
  font-size: 1em;
}
@media screen and (max-width: 960px) {
  footer .credit span {
    font-weight: 700;
  }
}
footer .doors_logo {
  position: absolute;
  top: 90px;
  right: 90px;
  width: 150px;
}
@media screen and (max-width: 960px) {
  footer .doors_logo {
    top: 60px;
    right: 30px;
    width: 120px;
  }
}
footer .footer__logo {
  width: 200px;
}
@media screen and (max-width: 960px) {
  footer .footer__logo {
    width: 150px;
    margin: 0 auto 30px;
  }
}
footer .footer__copyright {
  position: absolute;
  bottom: 30px;
  right: 90px;
  color: #FFF;
  text-align: center;
  font-family: "Alegreya Sans SC";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 10px; /* 100% */
  letter-spacing: 1px;
  text-transform: uppercase;
}
@media screen and (max-width: 960px) {
  footer .footer__copyright {
    position: relative;
    bottom: 0;
    right: 0;
  }
}

/* Scss Document */
/*====================================================================
	index
====================================================================

Part name///
	01 General_style
	02 Common_style
	03 Top_style
*/
/*---------------------------------------------------------
	Top
*/
#content .movie {
  position: fixed;
  top: 0;
  left: 0;
  display: block;
  width: 100vw;
  height: 100vh;
  z-index: -1;
}
#content .movie .inner {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
}
#content .movie video {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 177.77777778vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
}
@media screen and (max-width: 960px) {
  #content .movie video {
    width: 100vw;
    height: 177.7777777778vw;
    height: -webkit-calc(100vw / 1080* 1920);
    min-height: 100%;
    min-width: 100svh;
  }
}
@media screen and (max-width: 960px) {
  #content .movie video.pc {
    display: none;
  }
}
#content .movie video.sp {
  display: none;
}
@media screen and (max-width: 960px) {
  #content .movie video.sp {
    display: block;
  }
}
#content .movie img, #content .movie h2 {
  position: absolute;
}
#content .movie img {
  display: block;
}
#content .movie img.logo_doors {
  top: 60px;
  left: 90px;
  width: 150px;
}
@media screen and (max-width: 960px) {
  #content .movie img.logo_doors {
    top: 30px;
    left: 30px;
    width: 100px;
  }
}
#content .movie img.logo_tech {
  top: 60px;
  right: 60px;
  width: 80px;
}
@media screen and (max-width: 960px) {
  #content .movie img.logo_tech {
    top: 30px;
    right: 30px;
    width: 60px;
  }
}
#content .movie h2 {
  bottom: 40px;
  left: 90px;
  color: #FFF;
  font-family: "Old Standard TT";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 1; /* 100% */
  letter-spacing: 1.6px;
}
@media screen and (max-width: 960px) {
  #content .movie h2 {
    bottom: 100px;
    left: 30px;
  }
}
#content .movie .scroll {
  position: absolute;
  bottom: 40px;
  right: 90px;
  text-align: center;
}
@media screen and (max-width: 960px) {
  #content .movie .scroll {
    bottom: 100px;
    right: 30px;
  }
}
#content .movie .scroll p {
  font-family: "Alegreya Sans SC";
  font-size: 10px;
  color: #fff;
  margin: 0 0 15px;
  letter-spacing: 0.03em;
}
#content .movie .scroll .circle {
  position: relative;
  display: block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.8);
  margin: auto;
}
#content .movie .scroll .circle:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform-origin: center;
  transform-origin: center;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #fff;
  animation: scroll_icon 1.5s infinite;
}
#content .bg_wrap {
  background: #fff;
}
#content .mv_wrap {
  position: relative;
  margin: 100vh 0 0;
}
#content .mv_wrap .mv {
  width: 100%;
}
#content .mv_wrap .logo_thema {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: block;
  width: 250px;
}
#content section {
  position: relative;
  width: 100vw;
  background: #fff;
  overflow-x: hidden;
  z-index: 9;
}
#content .lead {
  display: block;
  padding: 60px 0 90px;
}
@media screen and (max-width: 960px) {
  #content .lead {
    padding: 60px 0;
  }
}
#content .lead p.lead_txt {
  color: #000;
  text-align: center;
  font-family: dnp-shuei-gothic-gin-std;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 28px; /* 200% */
  letter-spacing: 0.7px;
  margin: 0 auto 60px;
}
#content .lead .anchor {
  letter-spacing: -0.4em;
  text-align: center;
}
#content .lead .anchor a {
  display: inline-block;
  width: 120px;
  margin: 0 9px;
  letter-spacing: normal;
}
#content .lead .anchor a img {
  margin: 0 0 12px;
}
#content .lead .anchor a p {
  color: #000;
  font-family: "Old Standard TT";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.6px;
}
#content .lead .anchor a p span {
  font-style: italic;
  letter-spacing: 0.6px;
}
#content .ttl_wrap {
  position: relative;
  background: #fff;
  padding: 0 0 90px;
}
@media screen and (max-width: 960px) {
  #content .ttl_wrap {
    padding: 0 0 60px;
  }
}
#content .ttl_wrap h3 {
  color: #000;
  text-align: center;
  font-family: "Old Standard TT";
  font-size: 20px;
  font-style: italic;
  font-weight: 400;
  line-height: 1; /* 100% */
}
#content .ttl_wrap h2 {
  color: #000;
  text-align: center;
  font-family: "Old Standard TT";
  font-size: 60px;
  font-style: normal;
  font-weight: 400;
  line-height: 1; /* 100% */
  margin: 12px auto 6px;
}
@media screen and (max-width: 960px) {
  #content .ttl_wrap h2 {
    font-size: 40px;
  }
}
#content .ttl_wrap p {
  color: #CCC;
  text-align: center;
  font-family: "Old Standard TT";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px; /* 120% */
  letter-spacing: 0.5px;
}
#content .item_wrap .inner {
  position: relative;
  display: block;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 90px 180px;
}
@media screen and (max-width: 960px) {
  #content .item_wrap .inner {
    padding: 0 0 90px;
  }
}
#content .item_wrap .inner img {
  position: relative;
  display: block;
}
#content .item_wrap .inner .item_ttl {
  width: clamp(290px, 37.27%, 529px);
}
@media screen and (max-width: 960px) {
  #content .item_wrap .inner .item_ttl {
    position: relative;
    margin: 0 auto 30px;
    padding: 0 30px;
    width: 100%;
  }
}
#content .item_wrap .inner .item_ttl .number_wrap {
  letter-spacing: -0.4em;
  vertical-align: middle;
  margin: 0 0 12px;
}
@media screen and (max-width: 960px) {
  #content .item_wrap .inner .item_ttl .number_wrap {
    position: absolute;
    top: -20px;
    left: 30px;
    -webkit-transform: rotate(90deg);
    -ms-transform: rotate(90deg);
    -moz-transform: rotate(90deg);
    -o-transform: rotate(90deg);
    transform: rotate(90deg);
    transform-origin: left bottom;
  }
}
#content .item_wrap .inner .item_ttl .number_wrap p {
  display: inline-block;
}
#content .item_wrap .inner .item_ttl .number_wrap p.number {
  color: #000;
  font-family: "Old Standard TT";
  font-size: 20px;
  font-style: normal;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 2px;
  margin: 0 6px 0 0;
}
#content .item_wrap .inner .item_ttl .number_wrap p.type {
  color: #000;
  font-family: "Old Standard TT";
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 12px;
  letter-spacing: 0.6px;
}
#content .item_wrap .inner .item_ttl .number_wrap p.type span {
  color: #000;
  text-align: center;
  font-family: "Old Standard TT";
  font-size: 12px;
  font-style: italic;
  font-weight: 400;
  line-height: 1;
  letter-spacing: 0.6px;
}
#content .item_wrap .inner .item_ttl .midashi {
  color: #CCC;
  font-family: "Old Standard TT";
  font-size: 10px;
  font-style: normal;
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: 0.5px;
  margin: 0 0 18px;
}
@media screen and (max-width: 960px) {
  #content .item_wrap .inner .item_ttl .midashi {
    position: absolute;
    bottom: -90px;
    left: 30px;
    color: #fff;
    z-index: 9;
  }
}
#content .item_wrap .inner .item_ttl h2 {
  color: #53A1CA;
  font-family: dnp-shuei-gothic-gin-std;
  font-size: clamp(17px, 1.6vw, 20px);
  font-style: normal;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 1px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin: 0 0 18px;
}
@media screen and (max-width: 960px) {
  #content .item_wrap .inner .item_ttl h2 {
    font-size: clamp(16px, 1.5vw, 20px);
    padding: 0 0 0 80px;
    line-height: 1.5;
  }
}
#content .item_wrap .inner .item_ttl .txt {
  color: #000;
  font-family: dnp-shuei-gothic-gin-std;
  font-size: clamp(12px, 1.1vw, 14px);
  font-style: normal;
  font-weight: 500;
  line-height: 2;
  letter-spacing: 0.7px;
  max-width: 400px;
}
@media screen and (max-width: 960px) {
  #content .item_wrap .inner .item_ttl .txt {
    padding: 0 0 0 80px;
  }
  #content .item_wrap .inner .item_ttl .txt br {
    display: none;
  }
}
@media screen and (max-width: 960px) {
  #content .item_wrap .inner .info {
    padding: 30px 30px 60px;
  }
}
#content .item_wrap .inner .info a {
  position: relative;
  display: block;
}
#content .item_wrap .inner .info a.urtech {
  color: #000;
  font-family: dnp-shuei-gothic-gin-std;
  font-size: clamp(10px, 1vw, 12px);
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.6px;
  margin: 0 0 18px;
  padding: 0 0 0 18px;
}
#content .item_wrap .inner .info a.urtech:hover {
  color: #53A1CA;
}
@media screen and (max-width: 960px) {
  #content .item_wrap .inner .info a.urtech {
    font-size: 12px;
    line-height: 2;
  }
}
#content .item_wrap .inner .info a.urtech:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 12px;
  height: 12px;
  background-image: url("../img/icon_urtech.svg");
  background-size: cover;
}
@media screen and (max-width: 960px) {
  #content .item_wrap .inner .info a.urtech:before {
    top: 5px;
  }
}
#content .item_wrap .inner .info a.except {
  color: #000;
  font-family: dnp-shuei-gothic-gin-std;
  font-size: clamp(8px, 0.9vw, 10px);
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.5px;
  margin: 0 0 12px;
}
#content .item_wrap .inner .info a.except:hover {
  color: #53A1CA;
}
#content .item_wrap .inner .info a.except.no-link:hover {
  color: #000;
}
@media screen and (max-width: 960px) {
  #content .item_wrap .inner .info a.except {
    font-size: 10px;
  }
}
#content .item_wrap .inner .info a span {
  font-size: 1em;
  font-weight: 600;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin: 0 0 0 12px;
}
#content .item_wrap .inner .info p {
  color: #000;
  font-family: dnp-shuei-gothic-gin-std;
  font-size: clamp(8px, 0.9vw, 10px);
  font-style: normal;
  font-weight: 600;
  line-height: 1;
  letter-spacing: 0.5px;
}
@media screen and (max-width: 960px) {
  #content .item_wrap .inner .info p {
    font-size: 10px;
  }
}
#content .item_wrap .inner .info img {
  width: auto;
  height: 70px;
  margin: 0 0 24px;
}
@media screen and (max-width: 960px) {
  #content .item_wrap .inner .info img {
    height: auto;
    max-height: 70px;
  }
}
#content .item_wrap.item-01 .item_ttl {
  position: absolute;
  top: clamp(112px, 11.72vw, 187px);
  left: 90px;
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-01 .item_ttl {
    position: relative;
    top: 0;
    left: 0;
  }
}
#content .item_wrap.item-01 .info {
  position: absolute;
  top: clamp(715px, 74.5vw, 1192px);
  left: 90px;
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-01 .info {
    position: relative;
    top: 0;
    left: 0;
  }
}
#content .item_wrap.item-01 .item-01-01 {
  width: clamp(425px, 54.55%, 774px);
  margin: 0 0 10px auto;
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-01 .item-01-01 {
    width: 100%;
    margin: 0 auto;
  }
}
#content .item_wrap.item-01 .item-01-02 {
  width: clamp(425px, 54.55%, 774px);
  margin: 0 0 0 auto;
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-01 .item-01-02 {
    width: 76%;
    margin: 0 30px 0 auto;
    z-index: 2;
  }
}
#content .item_wrap.item-01 .item-01-03 {
  position: absolute;
  top: clamp(355px, 37vw, 592px);
  left: 90px;
  width: clamp(225px, 23.44%, 375px);
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-01 .item-01-03 {
    position: relative;
    top: 0;
    left: 0;
    width: 76%;
    margin: -30px 0 0 30px;
    z-index: 1;
  }
}
#content .item_wrap.item-02 .item_ttl {
  position: absolute;
  top: 150px;
  left: clamp(585px, 60.9vw, 975px);
  width: clamp(290px, 37.27%, 529px);
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-02 .item_ttl {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
  }
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-02 .info {
    padding: 30px 30px;
  }
}
#content .item_wrap.item-02 .item-02-01 {
  width: clamp(425px, 54.55%, 774px);
  margin: 0 0 30px;
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-02 .item-02-01 {
    width: 100%;
    margin: 0 auto;
  }
}
#content .item_wrap.item-02 .item-02-02 {
  position: absolute;
  top: clamp(400px, 35vw, 446px);
  left: clamp(585px, 60.9vw, 975px);
  width: clamp(307px, 32%, 512px);
  z-index: 1;
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-02 .item-02-02 {
    position: relative;
    top: 0;
    left: 0;
    width: 66%;
    margin: 0 0 30px auto;
  }
}
#content .item_wrap.item-02 .item-02-03 {
  width: clamp(425px, 54.55%, 774px);
  margin: -10vw auto 0 30%;
  z-index: 2;
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-02 .item-02-03 {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    margin: 0;
  }
}
#content .item_wrap.item-03 .item_ttl {
  position: absolute;
  top: clamp(112px, 11.7vw, 187px);
  left: 90px;
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-03 .item_ttl {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
  }
}
#content .item_wrap.item-03 .info {
  width: clamp(425px, 54.55%, 774px);
  margin: 0 0 90px auto;
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-03 .info {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    padding: 30px;
  }
}
#content .item_wrap.item-03 .slide {
  position: absolute;
  top: clamp(334px, 34.84vw, 557px);
  left: 90px;
  width: clamp(307px, 32%, 512px);
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-03 .slide {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto 30px;
    padding: 0 30px;
  }
}
#content .item_wrap.item-03 .item-03-01 {
  width: clamp(425px, 54.55%, 774px);
  margin: 0 0 30px auto;
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-03 .item-03-01 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
  }
}
#content .item_wrap.item-03 .item-03-04 {
  width: 100%;
}
#content .item_wrap.item-04 .item_ttl {
  position: absolute;
  top: clamp(112px, 11.7vw, 187px);
  left: clamp(585px, 60.9vw, 975px);
  width: clamp(307px, 32%, 512px);
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-04 .item_ttl {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
  }
}
#content .item_wrap.item-04 .info {
  padding: 0 0 90px;
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-04 .info {
    padding: 30px;
  }
}
#content .item_wrap.item-04 .item-04-01 {
  width: clamp(425px, 54.55%, 774px);
  margin: 0 0 30px;
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-04 .item-04-01 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
  }
}
#content .item_wrap.item-04 .item-04-02 {
  position: absolute;
  top: clamp(334px, 34.84vw, 557px);
  left: clamp(667px, 69.53vw, 1112px);
  width: clamp(225px, 23.44%, 375px);
  z-index: 2;
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-04 .item-04-02 {
    position: relative;
    top: 0;
    left: 0;
    width: 66%;
    margin: 0 30px 0 auto;
  }
}
#content .item_wrap.item-04 .item-04-03 {
  position: absolute;
  bottom: 180px;
  left: clamp(585px, 60.9vw, 975px);
  width: clamp(217px, 27.27%, 387px);
  z-index: 1;
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-04 .item-04-03 {
    position: relative;
    top: 0;
    left: 0;
    width: 66%;
    margin: -65px auto 0 30px;
  }
}
#content .item_wrap.item-05 .inner {
  padding: 0 90px 90px;
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-05 .inner {
    padding: 0 0 60px;
  }
}
#content .item_wrap.item-05 .item_ttl {
  position: absolute;
  top: clamp(112px, 11.72vw, 187px);
  left: 90px;
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-05 .item_ttl {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
  }
}
#content .item_wrap.item-05 .info {
  width: clamp(425px, 54.55%, 774px);
  margin: 0 0 90px auto;
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-05 .info {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
    padding: 30px;
  }
}
#content .item_wrap.item-05 .slide {
  position: absolute;
  top: clamp(334px, 34.84vw, 557px);
  left: 90px;
  width: clamp(307px, 32.03%, 512px);
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-05 .slide {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto 30px;
    padding: 0 30px;
  }
}
#content .item_wrap.item-05 .item-05-01 {
  width: clamp(425px, 54.55%, 774px);
  margin: 0 0 30px auto;
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-05 .item-05-01 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
  }
}
#content .item_wrap.item-05 .item-05-04 {
  width: 100%;
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-06 {
    padding: 90px 0 0;
  }
}
#content .item_wrap.item-06 .item_ttl {
  position: absolute;
  top: clamp(112px, 11.72vw, 187px);
  left: 90px;
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-06 .item_ttl {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
  }
}
#content .item_wrap.item-06 .info {
  width: clamp(425px, 54.55%, 774px);
  margin: 0 0 90px auto;
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-06 .info {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
  }
}
#content .item_wrap.item-06 .slide {
  position: absolute;
  top: clamp(334px, 34.84vw, 557px);
  left: 90px;
  width: clamp(307px, 32.03%, 512px);
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-06 .slide {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
  }
}
#content .item_wrap.item-06 .item-06-01 {
  width: clamp(425px, 54.55%, 774px);
  margin: 0 0 30px auto;
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-06 .item-06-01 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
  }
}
#content .item_wrap.item-06 .item-06-02 {
  position: absolute;
  top: clamp(375px, 38.91vw, 622px);
  left: 90px;
  width: clamp(270px, 28.13%, 450px);
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-06 .item-06-02 {
    position: relative;
    top: 0;
    left: 0;
    width: 69.3%;
    margin: 0 0 0 30px;
  }
}
#content .item_wrap.item-06 .item-06-03 {
  position: absolute;
  top: clamp(733px, 76.41vw, 1222px);
  left: clamp(225px, 23.44vw, 375px);
  width: clamp(150px, 15.63%, 250px);
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-06 .item-06-03 {
    position: relative;
    top: 0;
    left: 0;
    width: 40%;
    margin: -55px 30px 0 auto;
  }
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-07 .inner {
    padding: 0 0 30px;
  }
}
#content .item_wrap.item-07 .item_ttl {
  position: absolute;
  top: clamp(730px, 76.02vw, 1216px);
  right: 90px;
  width: clamp(307px, 32.03%, 512px);
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-07 .item_ttl {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
  }
}
#content .item_wrap.item-07 .item-07-01 {
  width: 100%;
  margin: 0 0 90px;
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-07 .item-07-01 {
    margin: 0 0 60px;
  }
}
#content .item_wrap.item-07 .item-07-02 {
  width: clamp(425px, 54.55%, 774px);
  margin: 0 0 30px;
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-07 .item-07-02 {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    margin: 0 auto;
  }
}
#content .item_wrap.item-07 .slide {
  position: absolute;
  top: clamp(968px, 100.86vw, 1613px);
  right: 90px;
  width: clamp(307px, 32.03%, 512px);
}
@media screen and (max-width: 960px) {
  #content .item_wrap.item-07 .slide {
    position: relative;
    top: 0;
    right: 0;
    width: 100%;
    margin: 0 auto 30px;
    padding: 0 30px;
  }
}
@media screen and (max-width: 960px) {
  #content .btn_wrap {
    position: relative;
    background: #fff;
    padding: 0 0 90px;
    z-index: 9;
  }
}
#content .btn_wrap .internal_link {
  position: relative;
  display: block;
  width: 300px;
  height: 76px;
  flex-shrink: 0;
  border-radius: 40px;
  background: #222;
  margin: 0 auto 120px;
}
@media screen and (max-width: 960px) {
  #content .btn_wrap .internal_link {
    width: 315px;
    margin: 0 auto;
  }
}
#content .btn_wrap .internal_link p {
  color: #FFF;
  font-family: dnp-shuei-gothic-gin-std;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 20px; /* 142.857% */
  letter-spacing: 0.7px;
  padding: 18px 40px;
}
#content .btn_wrap .internal_link .img_wrap {
  position: absolute;
  top: 50%;
  right: 18px;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: #fff;
  z-index: 1;
  overflow: hidden;
}
#content .btn_wrap .internal_link .img_wrap img {
  position: absolute;
  top: 50%;
  left: 0;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -o-transform: translate(0, -50%);
  transform: translate(0, -50%);
  width: 40px;
  z-index: 2;
}
#content .btn_wrap .internal_link:hover .img_wrap img {
  animation: slide-arrow 0.6s ease-in-out forwards;
}
#content .men_mv {
  margin: 0 0 120px;
}
#content .men_mv img:first-child {
  position: sticky;
  top: 0;
  z-index: 1;
}
#content .men_mv img:last-child {
  position: relative;
  z-index: 2;
}
#content .special_movie {
  position: relative;
  display: block;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 90px 200px;
}
@media screen and (max-width: 960px) {
  #content .special_movie {
    padding: 0 30px 0;
  }
}
#content .special_movie .inner {
  position: relative;
  display: block;
  cursor: pointer;
}
#content .special_movie .special_movie_th {
  display: block;
  width: 100%;
}
#content .special_movie .movie_btn_wrap {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#content .special_movie .movie_btn_wrap img {
  display: block;
  width: 100px;
  margin: 0 auto 18px;
}
@media screen and (max-width: 960px) {
  #content .special_movie .movie_btn_wrap img {
    width: 60px;
    margin: 0 auto;
  }
}
#content .special_movie .movie_btn_wrap p {
  color: #FFF;
  text-align: center;
  font-family: "Gilda Display";
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 1; /* 100% */
  letter-spacing: 0.7px;
}
@media screen and (max-width: 960px) {
  #content .special_movie .movie_btn_wrap p {
    display: none;
  }
}
#content .special_movie_txt {
  display: none;
}
@media screen and (max-width: 960px) {
  #content .special_movie_txt {
    position: relative;
    display: block;
    color: #000;
    text-align: center;
    font-family: "Old Standard TT";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 1;
    letter-spacing: 0.7px;
    padding: 25px 0 150px;
    background: #fff;
    z-index: 9;
  }
}
#content .special_movie_modal {
  position: fixed;
  top: 0;
  left: 0;
  display: none;
  width: 100vw;
  height: 100vh;
  background: #fff;
  z-index: 999;
}
#content .special_movie_modal .close {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 60px;
  height: 60px;
  cursor: pointer;
}
#content .special_movie_modal .close span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 60px;
  height: 1px;
  background: #333;
}
#content .special_movie_modal .close span:first-child {
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  -moz-transform: translate(-50%, -50%) rotate(45deg);
  -o-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}
#content .special_movie_modal .close span:last-child {
  -webkit-transform: translate(-50%, -50%) rotate(-45deg);
  -ms-transform: translate(-50%, -50%) rotate(-45deg);
  -moz-transform: translate(-50%, -50%) rotate(-45deg);
  -o-transform: translate(-50%, -50%) rotate(-45deg);
  transform: translate(-50%, -50%) rotate(-45deg);
}
#content .special_movie_modal iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 90%;
  height: auto;
  aspect-ratio: 16/9;
}
#content .interview {
  padding: 150px 0 92px;
  background: #F8FCF3;
  overflow: initial;
}
@media screen and (max-width: 960px) {
  #content .interview {
    padding: 102px 0 60px;
  }
}
#content .interview .inner {
  position: relative;
  display: block;
  max-width: 1600px;
  margin: 0 auto;
  padding: 0 90px;
}
@media screen and (max-width: 960px) {
  #content .interview .inner {
    padding: 0 30px;
  }
}
#content .interview .inner .interview_ttl {
  position: absolute;
  top: -230px;
  left: 90px;
  background: linear-gradient(180deg, #53A1CA 0%, #295064 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
}
@media screen and (max-width: 960px) {
  #content .interview .inner .interview_ttl {
    top: -170px;
    left: 30px;
  }
}
#content .interview .inner .interview_ttl p {
  font-family: "Gilda Display";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 1; /* 100% */
  letter-spacing: -1.2px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  width: fit-content;
}
@media screen and (max-width: 960px) {
  #content .interview .inner .interview_ttl p {
    font-size: 30px;
  }
}
#content .interview .inner .interview_ttl p:nth-child(2) {
  margin: 0 auto 0 15px;
}
#content .interview .inner .interview_ttl p:nth-child(3) {
  margin: 0 15px 0 auto;
}
#content .interview .inner .interview_ttl p:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: linear-gradient(180deg, #53A1CA 0%, #295064 100%);
}
#content .interview .inner .left, #content .interview .inner .right {
  position: relative;
  display: inline-block;
  vertical-align: top;
}
@media screen and (max-width: 960px) {
  #content .interview .inner .left, #content .interview .inner .right {
    display: block;
  }
}
#content .interview .inner .left {
  width: 36%;
  margin: 0 5% 0 0;
}
@media screen and (max-width: 960px) {
  #content .interview .inner .left {
    width: 100%;
    margin: 0;
  }
}
#content .interview .inner .right {
  width: 57%;
}
@media screen and (max-width: 960px) {
  #content .interview .inner .right {
    width: 100%;
    margin: 0;
  }
}
#content .interview .inner .qa_wrap.qa_01 {
  width: 100%;
}
@media screen and (max-width: 960px) {
  #content .interview .inner .qa_wrap.qa_01 {
    width: 100%;
    margin: 0 auto 30px;
  }
}
#content .interview .inner .qa_wrap.qa_02 {
  width: 100%;
}
@media screen and (max-width: 960px) {
  #content .interview .inner .qa_wrap.qa_02 {
    width: 100%;
    margin: 0 auto 30px;
  }
}
#content .interview .inner .qa_wrap.qa_03 {
  width: 100%;
  margin: 0;
}
@media screen and (max-width: 960px) {
  #content .interview .inner .qa_wrap.qa_03 {
    width: 100%;
    margin: 0 auto 30px;
  }
}
#content .interview .inner .qa_wrap.qa_04 {
  width: calc(100% - 250px);
  margin: 0;
}
@media screen and (max-width: 960px) {
  #content .interview .inner .qa_wrap.qa_04 {
    width: 100%;
    margin: 0 auto 30px;
  }
}
#content .interview .inner .qa_wrap p {
  position: relative;
  padding: 0 0 0 60px;
}
#content .interview .inner .qa_wrap p:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
  font-family: "Gilda Display";
  font-size: 30px;
  font-style: normal;
  font-weight: 400;
  line-height: 1; /* 100% */
}
#content .interview .inner .qa_wrap p.question {
  color: #53A1CA;
  font-family: dnp-shuei-gothic-gin-std;
  font-size: 13px;
  font-style: normal;
  font-weight: 600;
  line-height: 26px; /* 200% */
  letter-spacing: 0.65px;
  text-decoration-line: underline;
  text-decoration-style: solid;
  text-decoration-skip-ink: auto;
  text-decoration-thickness: auto;
  text-underline-offset: auto;
  text-underline-position: from-font;
  margin: 0 0 30px;
}
@media screen and (max-width: 960px) {
  #content .interview .inner .qa_wrap p.question {
    margin: 0 0 24px;
  }
}
#content .interview .inner .qa_wrap p.question:before {
  content: "Q";
  color: #53A1CA;
}
#content .interview .inner .qa_wrap p.answer {
  color: #000;
  font-family: dnp-shuei-gothic-gin-std;
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 26px; /* 200% */
  letter-spacing: 0.65px;
  margin: 0 0 60px;
}
@media screen and (max-width: 960px) {
  #content .interview .inner .qa_wrap p.answer {
    margin: 0 0 30px;
  }
}
#content .interview .inner .qa_wrap p.answer:before {
  content: "A";
  color: #000;
}
#content .interview .inner .img_wrap {
  letter-spacing: -0.4em;
}
@media screen and (max-width: 960px) {
  #content .interview .inner .img_wrap {
    position: relative;
  }
}
#content .interview .inner .img_wrap.img_wrap_01 {
  width: 100%;
  text-align: right;
  margin: 0 0 60px;
}
@media screen and (max-width: 960px) {
  #content .interview .inner .img_wrap.img_wrap_01 {
    width: 100%;
    margin: 0 auto 42px;
  }
  #content .interview .inner .img_wrap.img_wrap_01.sp {
    display: block;
  }
}
#content .interview .inner .img_wrap.img_wrap_01 img {
  display: inline-block;
}
#content .interview .inner .img_wrap.img_wrap_01 .interview_01 {
  width: 34%;
  margin: 0 5% 0 0;
  vertical-align: top;
}
#content .interview .inner .img_wrap.img_wrap_01 .interview_02 {
  width: 61%;
}
#content .interview .inner .img_wrap.img_wrap_02 {
  width: 100%;
}
@media screen and (max-width: 960px) {
  #content .interview .inner .img_wrap.img_wrap_02 {
    bottom: 0;
    left: 0;
    width: 100%;
    height: auto;
    margin: 0 0 42px;
  }
}
#content .interview .inner .img_wrap.img_wrap_03 {
  position: absolute;
  bottom: 60px;
  right: 0;
  width: 160px;
}
@media screen and (max-width: 960px) {
  #content .interview .inner .img_wrap.img_wrap_03 {
    position: relative;
    bottom: 0;
    right: 0;
    width: 34.66%;
    margin: 0 auto 42px 60px;
  }
}
/* Scss Document */
/*====================================================================
	index
====================================================================

Part name///
	01 General_style
	02 Common_style
	03 Top_style
*/
/*---------------------------------------------------------
	Other
*/