/* ========================================================================== */
/* header */
/* ========================================================================== */
.header_technical {
  position : fixed;
  top : 0;
  z-index : 1000;
  width : 100%;
}

.header_inner {
  display : flex;
  justify-content : space-between;
  width : 100%;
}

@media screen and (max-width: 768px) {
  .header_inner {
    display : none;
  }
}

.header_logo {
  display : block;
  width : 15.08053%;
  max-width : 206px;
}


@media screen and (max-width: 544px) {
  .header_logo {
    display : none;
  }
}

.header_logo a {
  display : inline-block;
}

.header_logo_main img {
  width : 100%;
  height : auto;
  vertical-align : middle;
}

.header_nav_cont {
  margin-right : 5.27086%;
  display: none;
}

@media screen and (min-width: 540px) {
  .header_nav_cont {
    display : block;
    min-width: 400px;
  }
}

.header_nav_link_list {
  display : flex;
  margin-top : 4.97804vw;
  /* margin-right : 5.27086%; */
  column-gap : 1.75695vw;
}

.header_nav_link_item a {
  color : #fff;
  font-size : 2.2rem;
  white-space: nowrap;
}

@media (hover: hover) {
  .header_nav_link_item a:hover {
    text-decoration: underline;
  }
}

/* ========================================================================== */
/* end header */
/* ========================================================================== */

/* ========================================================================== */
/* d_menuBtn */
/* ========================================================================== */
.d_menuBtn {
  display : none;
}

@media screen and (max-width: 768px) {
  .d_menuBtn {
    display : block;
    flex-direction : column;
    justify-content : center;
    align-items : center;
    position : absolute;
    right : 0; 
    z-index : 10000;
    width : 70px;
    height : 70px;
    background : #113A58;
    transition : background .3s;
  }
}

.d_menuBtn_bar{
  position: absolute;
  top: 5px;
  left: 14px;
}

.d_menuBtn_bar span {
  display : flex;
  justify-content : space-between;
  width : 42px;
  height : 4px;
  margin : 8px 0;
  background : #FFF;
  transition : transform .3s, opacity 0s;
  transform-origin : right;
}

.d_menuBtn_txt {
  font-size: 12px;
  position: absolute;
  bottom: 8px;
  left: 15px;
  color: #fff;
  font-family: 'ヒラギノ角ゴ ProN W3', 'Hiragino Kaku Gothic ProN', 'メイリオ', Meiryo, '游ゴシック', 'Yu Gothic', '游ゴシック体', YuGothic, '游ゴシック Medium', 'Yu Gothic Medium';
}

.d_menuBtn.active .d_menuBtn_bar span:before {
  width : 100%;
  margin : 0;
  border-radius : 0;
}

.d_menuBtn.active .d_menuBtn_bar span:after {
  width : 0;
}

.d_menuBtn.active .d_menuBtn_bar span:nth-of-type(1) {
  transform : translate(-2px, 1px) rotate(-45deg);
  width: 36px;
}

.d_menuBtn.active .d_menuBtn_bar span:nth-of-type(2) {
  opacity : 0;
  transition-delay : .1s;
}

.d_menuBtn.active .d_menuBtn_bar span:nth-of-type(3) {
  transform : translate(-2px, 2px) rotate(45deg);
  width: 36px;
}
/* ========================================================================== */
/* end d_menuBtn */
/* ========================================================================== */

/* ========================================================================== */
/* d_menu */
/* ========================================================================== */
.d_menu {
  opacity : 0;
  position : absolute;
  top : 0;
  right : 0;
  bottom : 0;
  left : 0;
  z-index : 9999;
  transition : opacity .4s;
  pointer-events : none;
}

.d_menu.js-open {
  opacity : 1;
  pointer-events : auto;
}

.d_menu_inner {
  display : flex;
  justify-content : center;
  position : relative;
  width : 100%;
  height: 100vh;
  padding : 40px 0;
  background : rgba(0, 0, 0, .7);
}

@media screen and (max-width: 768px) {
  .d_menu_inner {
    display : block;
    position : relative;
    width : 100%;
    padding : 70px 2% 0;
  }
}

.d_menu_inner::before {
  position : absolute;
  top : -20px;
  right : 39px;
  width : 0;
  height : 0;
  border-right : 20px solid transparent;
  border-bottom : 20px solid rgba(0, 0, 0, .7);
  border-left : 20px solid transparent;
  content : '';
}

@media screen and (max-width: 768px) {
  .d_menu_inner::before {
    top : -20px;
    left : 93.5%;
    border-right : 20px solid transparent;
    border-bottom : 20px solid rgba(0, 0, 0, .7);
    border-left : 20px solid transparent;
  }
}

@media screen and (max-width: 540px) {
  .d_menu_inner::before {
    top : -10px;
    left : 88%;
    border-right : 10px solid transparent;
    border-bottom : 10px solid rgba(0, 0, 0, .7);
    border-left : 10px solid transparent;
  }
}

.d_menu_body {
  width : 95%;
  max-width : 1080px;
  margin : 0 auto;
  overflow : auto;
}

@media screen and (max-width: 768px) {
  .d_menu_body {
    width : 100%;
  }
}

.d_menu_nav_list {
  display : flex;
  justify-content : space-between;
}

@media screen and (max-width: 768px) {
  .d_menu_nav_list {
    display : block;
  }
}

.d_menu_nav_item {
  color : #999;
}

@media screen and (max-width: 768px) {
  .d_menu_nav_item {
    margin-bottom : 20px;
  }
}

.d_menu_nav_item a {
  color : #FFF;
  font-size : 1.6rem;
}

.d_menu_nav_item a:hover {
  text-decoration : underline;
}

.d_menu_entry a {
  display : block;
  width : 90%;
  margin : 0 auto;
  padding : 8px 0;
  border-radius : 10px;
  background : #FFBF00;
  color : #103A58;
  font-weight : bold;
  text-align : center;
}
/* ========================================================================== */
/* end d_menu */
/* ========================================================================== */

/* ========================================================================== */
/* video */
/* ========================================================================== */
/* 動画を囲う親要素 */
.video-container{
  width: 100vw;
	height: 100svh;
	position: relative;
  overflow: hidden;
  z-index: -1;
}

.video-container > p{
  width: 100%;
  color: #fff;
  font-size: 1.8rem;
  line-height: 1.4;
  text-align: center;
  position: absolute;
  left: 0;
  bottom: 32%;
  text-shadow: 2px 2px 2px #000;
  z-index: 10;
}

@media screen and (min-width: 640px) {
  .video-container > p {
    font-size: min(2.92826vw, 40px);
    text-align: left;
    left: 13.39678%;
    bottom: 25%;
  }
}

.vimeo-iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  height: 100%;
  aspect-ratio: 16 / 9 ;
  object-fit: cover;
}

@media screen and (min-width: 1280px) {
  .vimeo-iframe {
    top: 44%;
    height: 1080px;
  }
}

/* ========================================================================== */
/* end video */
/* ========================================================================== */

/* ========================================================================== */
/* hero--cont */
/* ========================================================================== */
.hero-container {
  position: relative;
}

.picture-container {
  position: sticky;
  top: 0;
  z-index: -1;
}

.hero__cont01,
.hero__cont02,
.hero__cont03 {
  width: 100%;
}

.fadein {
  animation: fadein 3s ease-out forwards;
}

@keyframes fadein {
  0% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.hero__cont01 img,
.hero__cont02 img,
.hero__cont03 img {
  display: block;
  width: 100%;
  height: 100vh;
  object-fit: cover;
}

.hero__cont01 p,
.hero__cont02 p,
.hero__cont03 p {
  color: #FFF;
  font-size: 40px;
  font-size: 4.0rem;
  font-size: min(2.92826vw, 40px);
  line-height: 1.4;
}

.hero__cont01 p {
  margin-left: 42.67936%;
  padding: 0 0 56.22255vw;
}

.hero__cont02 p {
  margin-left: 13.39678%;
  padding: 0 0 54.22255vw;
}

.hero__cont03 p {
  margin-left: 31.77160%;
  padding: 0 0 50.22255vw;
}

.hero__cont03 p span.position {
  font-size: 24px;
  font-size: 2.4rem;
}

.hero__cont03 p span.name {
  font-size: 32px;
  font-size: 3.2rem;
}

@media screen and (max-width: 544px) {
  .hero__cont03 p span.position {
    font-size: 14px;
    font-size: 1.4rem;
  }

  .hero__cont03 p span.name {
    font-size: 18px;
    font-size: 1.8rem;
  }
}

@media screen and (max-width: 544px) {
  .hero__cont01 p,
  .hero__cont02 p,
  .hero__cont03 p {
    width: 100%;
    margin-left: 0;
    color: #FFF;
    font-size: 18px;
    font-size: 1.8rem;
    text-align: center;
  }
}

.scroll {
  position: fixed;
  top: 70%;
  right: 20px;
  z-index: 6;
  font-size: .7em;
  letter-spacing: 2px;
  -ms-writing-mode: tb-rl;
  writing-mode: vertical-rl;
}

/* ========================================================================== */
/* end hero--cont */
/* ========================================================================== */

/* ========================================================================== */
/* interview */
/* ========================================================================== */

.interview-head {
  position: relative;
}

.interview-head picture img {
  width: 100%;
}

.interview-head .contents-title {
  position: absolute;
  top: 7.75988%;
  right: 0;
  width: 36.60322vw;
}

@media screen and (max-width: 544px) {
  .interview-head .contents-title {
    top: 2.61358vw;
    width: 38.15789%;
  }

  .interview-head .contents-title img {
    width: 100%;
  }
}

.profile-cont {
  position: absolute;
  top: 16.15373%;
  left: 63.54319%;
  width: 33.13324%;
  max-width: 316px;
  padding: 1.83016%;
  border-radius: 4px;
  box-shadow: 2px 2px 6px 0 #999;
  background: #000;
  color: #FFF;
}

@media screen and (max-width: 544px) {
  .profile-cont {
    top: 16.89474%;
    left: 61.57895%;
    width: 34.21053%;
    background: rgba(0, 0, 0, .7);
    color: #FFF;
  }
}

.profile-title {
  margin-bottom: 20px;
  font-style: italic;
  font-size: 16px;
  font-size: 1.6rem;
}

@media screen and (max-width: 544px) {
  .profile-title {
    margin-bottom: 2.10526vw;
    font-style: italic;
    font-size: 9px;
    font-size: .9rem;
  }
}

.interviewee-name {
  margin-bottom: 18px;
  font-size: 24px;
  font-size: 2.4rem;
}

@media screen and (max-width: 544px) {
  .interviewee-name {
    margin-bottom: 2.63158vw;
    font-size: 14px;
    font-size: 1.4rem;
  }
}

.interviewee-prof {
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 544px) {
  .interviewee-prof {
    font-size: 11px;
    font-size: 1.1rem;
  }
}

.interview-heading {
  position: absolute;
  right: 11%;
  bottom: clamp(80px, 16%, 220px);
  color: #113A58;
  font-weight: bold;
  font-size: 40px;
  font-size: 4.0rem;
  font-size: min(2.92826vw, 40px);
  text-align: right;
  text-shadow: 3px 2px 3px #FFF, 3px -2px 3px #FFF, -3px 2px 3px #FFF, -3px -2px 3px #FFF;
}

@media screen and (max-width: 768px) {
  .interview-heading {
    position: absolute;
    right: 0;
    bottom: 4.47368vw;
    left: 0;
    text-align: center;
  }
}

@media screen and (max-width: 544px) {
  .interview-heading {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.interview-cont01,
.interview-cont-inn {
  padding: 3.36750vw 0;
}

@media screen and (max-width: 544px) {

  .interview-cont01,
  .interview-cont-inn {
    padding: 7.89474vw 0;
  }
}

.interview-cont-title {
  font-weight: bold;
  font-size: 18px;
  font-size: 1.8rem;
}

@media screen and (max-width: 544px) {
  .interview-cont-title {
    font-size: 16px;
    font-size: 1.6rem;
  }
}

.comment {
  margin-top: 2.19619vw;
  color: #000;
}

@media screen and (max-width: 544px) {
  .comment {
    margin-top: 3.15789vw;
  }
}

.interview-cont02 {
  position: relative;
}

.interview-cont02 picture img {
  width: 100%;
}

.message-cont {
  position: relative;
  padding: 3.80673vw 2.92826vw;
  overflow: hidden;
  background-image: linear-gradient(-45deg, transparent 21px, rgba(255, 255, 255, .7) 0);
  font-weight: bold;
}

@media screen and (max-width: 544px) {
  .message-cont {
    width: 90%;
    margin: 0 auto;
    padding: 7.89474vw 0;
    font-weight: normal;
  }
}

.message-cont::before {
  position: absolute;
  right: 0;
  bottom: 0;
  border-width: 0 0 30px 30px;
  border-style: solid;
  border-color: transparent transparent transparent rgba(255, 255, 255, .3);
  box-shadow: 0 0 4px 0 #666;
  content: '';
}

@media screen and (max-width: 1280px) {
  .message-cont::before {
    display: none;
  }
}

.interview-cont02 .message-cont {
  position: absolute;
  top: 7.32064vw;
  right: 13.32357%;
  width: 36.60322%;
}

@media screen and (max-width: 1280px) {
  .interview-cont02 .message-cont {
    position: static;
    width: 90%;
    margin: 0 auto;
    padding: 3.36750vw 0;
    background: #FFF;
    font-weight: normal;
  }
}

.interview-picture-cont {
  display: flex;
  justify-content: space-between;
  margin-top: .73206vw;
  column-gap: .73206vw;
  overflow: hidden;
}

.interview-picture01 {
  width: 50%;
}

.interview-picture02 {
  width: 50%;
}

.interview-cont03 {
  margin-bottom: .73206vw;
}


.interview-cont04 {
  position: relative;
}

.interview-cont04 picture img {
  width: 100%;
}

.interview-cont04 .message-cont {
  position: absolute;
  top: 8.05271vw;
  left: 13.39678%;
  z-index: 2;
  width: 36.60322%;
  max-width: 500px;
}

@media screen and (max-width: 1280px) {
  .interview-cont04 .message-cont {
    position: static;
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 3.36750vw 0;
    background: #FFF;
    font-weight: normal;
  }
}

.fit {
  width: 100%;
}

.margin-bottom {
  margin-bottom: 40px;
}

@media screen and (min-width: 768px) {
  .margin-bottom {
    margin-bottom: 80px;
  }
}

/* ========================================================================== */
/* end interview */
/* ========================================================================== */