@charset "UTF-8";
/*
$padLeft: 55px; //画面左側隙間
$padRight: 100px; //画面右側隙間*/
.wrapper {
  width: 100%;
  min-height: 100%;
}

.lheader {
  width: 100%;
  display: flex;
  align-items: center;
  padding-top: min(3%, 15px);
  padding-left: max(1.5%, 20px);
  padding-right: max(1.5%, 20px);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .lheader {
    padding-left: 10px;
    padding-right: 15px;
  }
}
.lheader .siteLogo {
  width: clamp(110px, 14%, 300px);
  aspect-ratio: 32/9;
  background-image: url(../img/logo.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: relative;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
}
.lheader .siteLogo img {
  width: 100%;
  height: auto;
}
.lheader .siteLogo.active {
  background-image: url(../img/logo_blue.png);
}
.lheader .gnavSp {
  display: none;
}
@media screen and (max-width: 768px) {
  .lheader .gnavSp {
    display: block;
    width: 25px;
    height: 30px;
    position: absolute;
    right: 10px;
    top: 10px;
    z-index: 2000;
    cursor: pointer;
  }
  .lheader .gnavSp span {
    display: block;
    width: 20px;
    border-top: solid 1px #fff;
    position: absolute;
    left: 1px;
    transition: all 0.2s;
  }
  .lheader .gnavSp span:nth-of-type(1) {
    top: 7px;
  }
  .lheader .gnavSp span:nth-of-type(2) {
    top: 19px;
  }
  .lheader .gnavSp.active span {
    width: 24px;
    border-top-color: #222;
  }
  .lheader .gnavSp.active span:nth-of-type(1) {
    top: 10px;
    transform: rotate(-45deg);
  }
  .lheader .gnavSp.active span:nth-of-type(2) {
    top: 10px;
    transform: rotate(45deg);
  }
  .lheader .gnavSp.gray span {
    border-top-color: #222;
  }
}
.lheader .gnavWrap {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .lheader .gnavWrap {
    width: 180px;
    height: 100dvh;
    padding-top: 60px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: 100;
    background-color: #fff;
    transform: translateX(100%);
    box-shadow: -1px 0px 3px rgba(0, 0, 0, 0.2);
    transition: transform 0.5s;
  }
  .lheader .gnavWrap.active {
    transform: translateX(0);
  }
}
.lheader .gnav > ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.lheader .gnav > ul > li {
  margin-left: 2.8%;
}
.lheader .gnav > ul a {
  font-size: clamp(1.5rem, 0.612rem + 1.157vw, 2rem);
  color: #fff;
  letter-spacing: 2px;
  text-decoration: none;
}
.lheader .gnav > ul a::after {
  content: "";
  display: block;
  width: 0;
  height: 1px;
  background-color: #fff;
  transition: width 0.5s;
}
.lheader .gnav > ul a:hover::after {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .lheader .gnav > ul {
    display: block;
  }
  .lheader .gnav > ul > li {
    margin-left: 0;
  }
  .lheader .gnav > ul a {
    display: block;
    color: #222;
    padding-top: 15px;
    padding-bottom: 10px;
    padding-left: 15px;
  }
}
.lheader.active .gnav > ul a {
  color: #77808b;
}
@media screen and (max-width: 768px) {
  .lheader.active .gnav > ul a {
    color: #222;
  }
}

.lmain {
  flex: 1;
  padding-bottom: 150px;
}
@media screen and (max-width: 768px) {
  .lmain {
    padding-bottom: clamp(80px, 19vw, 150px);
  }
}
.lmain.onePage {
  padding-top: 170px;
}
@media screen and (max-width: 768px) {
  .lmain.onePage {
    padding-top: clamp(100px, 22vw, 170px);
  }
}

.lfooter {
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .lfooter {
    display: block;
  }
}
.lfooterL {
  padding-left: 5%;
}
.lfooterL .link > a {
  color: #fff;
  text-shadow: 1px 1px 5px gray;
  text-decoration: none;
}
@media screen and (max-width: 768px) {
  .lfooterL {
    padding-right: 5%;
    text-align: center;
  }
}
.lfooterR {
  padding-right: 2.8%;
}
@media screen and (max-width: 768px) {
  .lfooterR {
    padding-left: 5%;
    padding-right: 5%;
    margin-top: 30px;
  }
}
.lfooterR .companyNm, .lfooterR .companyAdd, .lfooterR .copy {
  width: 100%;
  color: #fff;
  text-shadow: 1px 1px 5px gray;
  text-align: right;
}
@media screen and (max-width: 768px) {
  .lfooterR .companyNm, .lfooterR .companyAdd, .lfooterR .copy {
    text-align: center;
  }
}
.lfooterR .companyNm {
  font-size: 2rem;
}
.lfooterR .companyAdd {
  font-size: 1.5rem;
}
.lfooterR .copy {
  font-size: 1.5rem;
}
@media screen and (max-width: 768px) {
  .lfooterR .copy {
    margin-top: 30px;
  }
}

.lcontainer {
  padding-left: 5%;
  padding-right: 5%;
}
.lcontainer--narrow {
  max-width: 1600px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
}
.lcontainer--narrow2 {
  max-width: 1100px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 5%;
  padding-right: 5%;
}
.lcontainer--white {
  background-color: #fff;
  padding: 50px 80px;
}
@media screen and (max-width: 768px) {
  .lcontainer--white {
    padding-top: 30px;
    padding-bottom: 30px;
    padding-left: max(5vw, 20px);
    padding-right: max(5vw, 20px);
  }
}

.wf-min {
  font-family: "Noto Serif JP", serif;
  font-optical-sizing: auto;
  font-weight: 400;
  font-style: normal;
}

.cbtn {
  display: inline-block;
  font-size: 1.6rem;
  border-radius: 100vh;
  padding: 15px 30px;
  text-decoration: none;
}
.cbtn.thema {
  color: #fff;
  background-color: #7290a8;
}
.cbtn.thema--line {
  color: #7290a8;
  background-color: #fff;
  border: solid 1px #7290a8;
}

.ftcol--sky {
  color: #94b6dc;
}

.ftcol--sky2 {
  color: #0253af;
}

.ftcol--sky3 {
  color: #547eb0;
}

.section {
  --hvw: 4vw;
  position: relative;
}
.section.mg {
  padding-top: var(--hvw);
}
.section.mg2 {
  padding-top: 150px;
}
@media screen and (max-width: 768px) {
  .section.mg2 {
    padding-top: max(18vw, 80px);
  }
}
.section.mgBg {
  padding-top: 120px;
}
@media screen and (max-width: 768px) {
  .section.mgBg {
    padding-top: max(8.4vw, 50px);
  }
}
.section.mgBg2 {
  padding-top: 120px;
}
.section.headingArr::before, .section.headingArr::after {
  content: "";
  display: block;
  position: absolute;
  z-index: 100;
}
.section.headingArr {
  /*
  &::before{
  	width: 20px;
  	height: 20px;
  	background-color: f.$themaColor--secondary;
  	border-radius: 50%;
  	left: 50%;
  	top: 250px;
  	transform: translateX(-50%);
  }
  &::after{
  	height: 100px;
  	border-left: solid 1px f.$themaColor--secondary;
  	left: 50%;
  	top: 150px;
  }*/
}
.section.show .sectionBg {
  opacity: 1;
}
.sectionBg {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 0.5s ease 0s;
  z-index: -2;
}
.sectionMax {
  height: 100vh;
}
.sectionInner {
  padding-top: calc(4vw + 100px);
  padding-bottom: calc(4vw + 120px);
  position: relative;
  z-index: 0;
  opacity: 0;
  animation-duration: 0.2s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
  clip-path: polygon(0 4vw, 100% 0, 100% calc(100% - 4vw), 0 100%);
  background-image: linear-gradient(to left, transparent, transparent);
}
@media screen and (max-width: 768px) {
  .sectionInner {
    padding-bottom: calc(4vw + 80px);
  }
}

.bgLine {
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 120px;
  clip-path: polygon(0 4vw, 100% 0, 100% 1px, 0 calc(4vw + 1px));
  z-index: 80;
  animation-duration: 0.2s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
}
@media screen and (max-width: 768px) {
  .bgLine {
    top: max(8.4vw, 50px);
  }
}

.inview.active .heroMsg__msg {
  animation-name: heroMsgAnime;
}
.inview.active .bgLine {
  animation-name: lineAnime;
}
.inview.active .sectionInner {
  animation-name: bgAnime;
}
.inview.active .bgbg {
  animation-name: bgAnime2;
}

.pheading {
  width: 100%;
  font-size: 90px;
  letter-spacing: 10px;
  line-height: 1;
  text-align: center;
  margin-bottom: 30px;
  position: relative;
  top: -50px;
  opacity: 0;
  animation-duration: 0.5s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  animation-delay: 1s;
}
@media screen and (max-width: 768px) {
  .pheading {
    font-size: clamp(4rem, 2.572rem + 4.464vw, 6rem);
    letter-spacing: max(5px, 1.3vw);
    margin-bottom: 10px;
  }
}
.pheading.onepg {
  top: -30px;
  opacity: 1;
}
.pheading.white {
  color: #fff;
}
.pheading.small {
  font-size: 60px;
}
@media screen and (max-width: 768px) {
  .pheading.small {
    font-size: clamp(2.5rem, 1.786rem + 2.232vw, 3.5rem);
  }
}
.pheading .cat {
  display: block;
  font-size: 18px;
  margin-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .pheading .cat {
    font-size: clamp(1.2rem, 0.915rem + 0.892vw, 1.6rem);
    margin-bottom: 0.5em;
  }
}
.pheading.mgS--work {
  margin-bottom: 40px;
}
@media screen and (max-width: 768px) {
  .pheading.mgS--work {
    margin-bottom: 0;
  }
}
.pheading2 {
  width: 100%;
  text-align: right;
  padding-top: min(8%, 130px);
  position: absolute;
  top: 0;
  left: 0;
  padding-right: 5%;
}
.pheading__secondary {
  font-size: 50px;
  letter-spacing: 10px;
  line-height: 1;
}
.pheading__secondary span {
  font-size: 25px;
  letter-spacing: 5px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .pheading__secondary {
    font-size: clamp(2.4rem, 1.258rem + 3.571vw, 4rem);
    letter-spacing: 5px;
  }
  .pheading__secondary span {
    font-size: clamp(1.8rem, 1.3rem + 1.562vw, 2.5rem);
    letter-spacing: 3px;
  }
}
.pheading--one {
  text-align: center;
  margin-bottom: 20px;
}
.pheading--one img {
  width: clamp(300px, 35%, 500px);
  height: auto;
}

.inview.active .pheading {
  animation-name: headingAnime;
}

.imgMax {
  width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .sp {
    display: block;
  }
}
@media screen and (min-width: 769px) {
  .sp {
    display: none;
  }
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
}
@media screen and (min-width: 769px) {
  .pc {
    display: block;
  }
}

.pthumList {
  display: flex;
  flex-wrap: wrap;
}
.pthumList.col--3 .card {
  width: 32%;
  margin-left: 2%;
  margin-top: calc(4.5% + 26px);
}
.pthumList.col--3 .card:first-child {
  margin-left: 0;
}
.pthumList.col--3 .card:nth-of-type(3n + 1) {
  margin-left: 0;
}
.pthumList.col--3 .card:nth-of-type(-n+3) {
  margin-top: 0;
}
@media screen and (max-width: 768px) {
  .pthumList.col--3 .card {
    width: calc((100% - 20px) / 2);
    margin-left: 20px;
  }
  .pthumList.col--3 .card:nth-of-type(3n + 1) {
    margin-left: 20px;
  }
  .pthumList.col--3 .card:nth-of-type(2n + 1) {
    margin-left: 0;
  }
  .pthumList.col--3 .card:nth-of-type(-n+3) {
    margin-top: calc(4.5% + 26px);
  }
  .pthumList.col--3 .card:nth-of-type(-n+2) {
    margin-top: 0;
  }
}
@media screen and (max-width: 519px) {
  .pthumList.col--3 .card {
    width: 100%;
    margin-left: 0;
  }
  .pthumList.col--3 .card:nth-of-type(3n + 1) {
    margin-left: 0;
  }
  .pthumList.col--3 .card:nth-of-type(2) {
    margin-top: calc(4.5% + 26px);
  }
}
.pthumList .card {
  border-radius: 0 20px 0 20px;
}
.pthumList .card a {
  color: #222;
  text-decoration: none;
}
.pthumList .card .photo {
  border: solid 1px #ccc;
}
.pthumList .card .photo.ico--play {
  position: relative;
}
.pthumList .card .photo.ico--play::after {
  content: "";
  display: block;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #fff;
  border: solid 1px #ccc;
  background-image: url(../img/ico_play.png);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 10px 11px;
  position: absolute;
  bottom: -13px;
  left: 10px;
}
.pthumList .card .caption {
  line-height: 1.5;
  margin-top: 10px;
}
.pthumList .card .caption .by {
  display: inline-block;
  font-size: 1.3rem;
  color: #fff;
  line-height: 1;
  background-color: #687584;
  border-radius: 8px;
  padding: 0.3em 0.5em 0.4em;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 768px) {
  .pthumList .card .caption .by {
    font-size: clamp(1.1rem, 0.886rem + 0.669vw, 1.4rem);
  }
}
.pthumListText {
  margin-top: 80px;
}
.pthumListText > ul li {
  margin-top: 5px;
}
.pthumListText__other {
  margin-top: 30px;
}

.pdone {
  text-align: center;
}
.pdone__msg {
  font-size: 2.4rem;
  color: #7290a8;
  font-weight: bold;
  padding-top: 30px;
}
.pdone__desc {
  margin-top: 30px;
}

.pscl {
  width: 100%;
  text-align: center;
  position: absolute;
  bottom: 20px;
  left: 0;
}
.pscl__btn {
  display: inline-block;
  cursor: pointer;
}
.pscl__btn .icon {
  display: inline-block;
  animation-name: topScrollAnime;
  animation-duration: 2s;
  animation-timing-function: ease-in;
  animation-iteration-count: infinite;
  position: relative;
  top: -10px;
}
@media screen and (max-width: 768px) {
  .pscl__btn .icon img {
    width: max(50px, 7.8vw);
    height: auto;
  }
}
.pscl__btn .text {
  font-size: 1.2rem;
  color: #fff;
  letter-spacing: 2.5px;
  text-shadow: 1px 1px 8px gray;
}
.pscl__btn.gray .text {
  color: #77808b;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}

/* Hide scrollbar for IE, Edge, Firefox */
.no-scrollbar {
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}

@keyframes topScrollAnime {
  0% {
    top: -10px;
  }
  50% {
    top: -10px;
  }
  60% {
    top: 0;
  }
  70% {
    top: -10px;
  }
  80% {
    top: 0;
  }
  90% {
    top: -10px;
  }
  100% {
    top: -10px;
  }
}
@keyframes lineAnime {
  0% {
    background-image: linear-gradient(to right, transparent 0% 0%, transparent 0% 0%);
  }
  20% {
    background-image: linear-gradient(to right, #fff 0% 15%, transparent 15% 100%);
  }
  40% {
    background-image: linear-gradient(to right, #fff 0% 30%, transparent 30% 100%);
  }
  60% {
    background-image: linear-gradient(to right, #fff 0% 45%, transparent 45% 100%);
  }
  80% {
    background-image: linear-gradient(to right, #fff 0% 60%, transparent 60% 100%);
  }
  100% {
    background-image: linear-gradient(to right, #fff 0% 99%, transparent 99% 100%);
  }
}
@keyframes bgAnime {
  0% {
    opacity: 0;
    background-image: linear-gradient(to right, transparent 0% 0%, transparent 0% 0%);
  }
  20% {
    background-image: linear-gradient(to right, #fff 0% 15%, transparent 15% 100%);
  }
  40% {
    background-image: linear-gradient(to right, #fff 0% 30%, transparent 30% 100%);
  }
  60% {
    background-image: linear-gradient(to right, #fff 0% 45%, transparent 45% 100%);
  }
  80% {
    background-image: linear-gradient(to right, #fff 0% 60%, transparent 60% 100%);
  }
  100% {
    opacity: 1;
    background-image: linear-gradient(to right, #fff 0% 99%, #fff 99% 100%);
  }
}
@keyframes bgAnime2 {
  0% {
    opacity: 0;
    background-image: linear-gradient(to left, transparent 0% 0%, transparent 0% 0%);
  }
  20% {
    background-image: linear-gradient(to left, #94b6dc 0% 15%, transparent 15% 100%);
  }
  40% {
    background-image: linear-gradient(to left, #94b6dc 0% 30%, transparent 30% 100%);
  }
  60% {
    background-image: linear-gradient(to left, #94b6dc 0% 45%, transparent 45% 100%);
  }
  80% {
    background-image: linear-gradient(to left, #94b6dc 0% 60%, transparent 60% 100%);
  }
  100% {
    opacity: 1;
    background-image: linear-gradient(to left, #94b6dc 0% 99%, #94b6dc 99% 100%);
  }
}
@keyframes headingAnime {
  0% {
    opacity: 0;
    top: 0px;
  }
  100% {
    opacity: 1;
    top: -30px;
  }
}
@keyframes heroMsgAnime {
  0% {
    opacity: 0;
    top: 0px;
  }
  100% {
    opacity: 1;
    top: -30px;
  }
}
.loading {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  transition: all 1s;
}

.loading.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.spinner {
  width: 80px;
  height: 80px;
  border: 4px solid rgba(0, 0, 0, 0.1); /* Or use a CSS var for this color */
  border-radius: 50%;
  border-top-color: #045AA5;
  animation: spin 1s ease-in-out infinite;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}
.glayer {
  width: 100%;
  height: 100dvh;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 90;
  opacity: 0;
  transition: opacity 0.2s;
  pointer-events: none;
}
.glayer.active {
  opacity: 1;
}

.heroBg {
  background-image: url(../img/bg_sky_hero.jpg);
}
.heroMsgWrap {
  display: flex;
  align-items: center;
  justify-content: center;
}
.heroMsg__msg {
  font-size: 50px;
  color: #fff;
  text-shadow: 1px 1px 8px gray;
  line-height: 2;
  letter-spacing: 20px;
  animation-duration: 0.8s;
  animation-timing-function: ease-in;
  animation-fill-mode: forwards;
  animation-delay: 0.5s;
  opacity: 0;
  position: relative;
}
.heroMsg__msg .br {
  display: none;
}
@media screen and (max-width: 860px) {
  .heroMsg__msg .br {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .heroMsg__msg {
    font-size: clamp(2.4rem, 0.9rem + 4.687vw, 4.5rem);
    letter-spacing: min(2vw, 15px);
  }
}
.heroMovieBg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
  background-image: url(../img/bg_reel.jpg);
  background-size: cover;
  background-position: center;
}
.heroMovie__movie {
  width: 80%;
  aspect-ratio: 16/9;
}
@media screen and (max-width: 768px) {
  .heroMovie__movie {
    width: 90%;
  }
}

.serviceBg {
  background-image: url(../img/bg_sky_service.jpg);
}
.service__desc {
  display: flex;
  justify-content: center;
}
.service__desc > p {
  font-size: 26px;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  .service__desc > p {
    font-size: clamp(1.6rem, 0.886rem + 2.232vw, 2.6rem);
  }
}
.service__desc > p .br {
  display: block;
}
@media screen and (max-width: 1030px) {
  .service__desc > p .br {
    display: none;
  }
}

.worksBg {
  background-image: url(../img/bg_sky_works.jpg);
}
.worksNav {
  display: flex;
  justify-content: center;
  margin-bottom: 60px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .worksNav {
    margin-bottom: clamp(40px, 8vw, 60px);
  }
}
.worksNav > li {
  margin-left: 30px;
}
.worksNav > li:first-child {
  margin-left: 0;
}
.worksNav > li a {
  color: #222;
  letter-spacing: 1px;
  text-decoration: none;
}
.worksNav > li a::after {
  content: "";
  display: inline-block;
  width: 30px;
  height: 20px;
  border-radius: 100vh;
  border: solid 1px #888;
  background-image: url(../img/ico_arr.png);
  background-repeat: no-repeat;
  background-position: 9px 5px;
  margin-left: 8px;
  position: relative;
  top: 3px;
}
@media screen and (max-width: 768px) {
  .worksNav > li a {
    display: block;
    font-size: clamp(1.5rem, 1.429rem + 0.223vw, 1.6rem);
    border-bottom: solid 1px #000;
  }
  .worksNav > li a::after {
    display: none;
  }
  .worksNav > li a span {
    display: block;
    font-size: clamp(1.2rem, 0.915rem + 0.892vw, 1.6rem);
  }
}
.worksWrap {
  padding-top: clamp(20px, 4vw, 50px);
  margin-bottom: 200px;
  position: relative;
}
.worksWrap:last-child {
  margin-bottom: 0;
  /*.worksWrap__heading{
  	top: -100px;	
  }*/
}
@media screen and (max-width: 768px) {
  .worksWrap {
    margin-bottom: clamp(50px, 13vw, 100px);
  }
}
.worksWrap__heading {
  position: relative;
  margin-bottom: 70px;
}
.worksWrap__heading::after {
  content: "";
  display: block;
  width: 100px;
  border-top: solid 1px #000;
  position: absolute;
  left: -140px;
  top: 30px;
}
@media screen and (max-width: 768px) {
  .worksWrap__heading {
    margin-bottom: clamp(30px, 8vw, 70px);
  }
}

.contentsBg {
  background-image: url(../img/bg_sky_contents.jpg);
}
.contentsBg__white {
  width: 100%;
  min-height: 100%;
  clip-path: polygon(0 40%, 80% 0, 100% 0, 100% 73%, 0 100%);
  background-color: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}

.companyBg {
  background-image: url(../img/bg_sky_company.jpg);
}
.companyInfo {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 100px;
  margin-bottom: 200px;
}
@media screen and (max-width: 768px) {
  .companyInfo {
    margin-top: clamp(30px, 11vw, 100px);
    margin-bottom: clamp(100px, 20vw, 200px);
  }
}
.companyInfo > dl {
  display: flex;
  font-weight: 500;
  color: #fff;
  margin-top: 20px;
}
.companyInfo > dl > dt {
  width: 130px;
}
.companyInfo > dl > dd {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .companyInfo > dl {
    display: block;
  }
}
.companyInfo .bank {
  display: inline-block;
  width: 200px;
}
.companyInfo .name {
  display: inline-block;
  width: 120px;
}
.companyMap {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  margin-top: 60px;
}
.companyMap iframe {
  width: 100%;
  height: 600px;
}
@media screen and (max-width: 768px) {
  .companyMap iframe {
    height: 300px;
  }
}

.openingBg {
  background-image: url(../img/bg_sky_opening.jpg);
}
.opening {
  background-color: #fff;
  height: 100vh;
  width: 100%;
  position: relative;
}
@media screen and (max-width: 768px) {
  .opening {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}
@media screen and (max-width: 519px) {
  .opening {
    display: none;
  }
}
.opening__movie {
  object-fit: cover;
  object-position: center;
  position: absolute;
  height: 100%;
  width: 100%;
  top: 0;
  left: 0;
}
@media screen and (max-width: 768px) {
  .opening__movie {
    width: 90%;
    height: auto;
    aspect-ratio: 16/9;
    position: relative;
  }
}

.contactBg {
  background-image: url(../img/bg_sky_cmn.jpg);
}
.contactInner {
  background-color: #fff;
  padding: 50px 80px;
}
.contact__desc {
  color: #466190;
  margin-bottom: 40px;
}
.contactFormTbl {
  color: #466190;
}
.contactFormTbl > dl {
  display: flex;
  border-bottom: dotted 1px #d5dce1;
  padding-bottom: 18px;
  padding-top: 18px;
}
.contactFormTbl > dl > dt {
  width: 220px;
  position: relative;
}
.contactFormTbl > dl > dt.hissu::after {
  content: "必須";
  display: inline-block;
  font-size: 13px;
  color: #7290a8;
  line-height: 1;
  border: solid 1px #7290a8;
  border-radius: 5px;
  padding: 3px 5px;
  position: absolute;
  right: 20px;
  top: 7px;
}
.contactFormTbl > dl > dd {
  flex: 1;
}
@media screen and (max-width: 768px) {
  .contactFormTbl > dl {
    display: block;
  }
  .contactFormTbl > dl:first-child {
    padding-top: 0;
  }
  .contactFormTbl > dl > dt {
    width: 100%;
    margin-bottom: 8px;
  }
  .contactFormTbl > dl > dt.hissu::after {
    top: 4px;
    right: 0;
  }
}
.contactFormTbl input[type=text] {
  width: 100%;
  font-size: 1.6rem;
  padding: 8px;
  border-radius: 5px;
}
.contactFormTbl textarea {
  width: 100%;
  height: 150px;
  color: #222;
  font-size: 1.6rem;
  padding: 8px;
  border-radius: 5px;
}
.contactFormTbl .err {
  color: #d21e0a;
  font-size: 1.6rem;
  margin-top: 10px;
}
.contactBtn {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin-top: 50px;
}
.contactBtn > * {
  margin-left: 20px;
}
.contactBtn > *:first-child {
  margin-left: 0;
}
@media screen and (max-width: 768px) {
  .contactBtn > * {
    width: 100%;
    text-align: center;
    margin-left: 0;
    margin-top: 20px;
  }
  .contactBtn > *:first-child {
    margin-top: 0;
  }
  .contactBtn > * input {
    width: 100%;
    max-width: 200px;
  }
}

.privacyBg {
  background-image: url(../img/bg_sky_cmn.jpg);
}
.privacyInner {
  background-color: #fff;
  padding: 50px 80px;
}
.privacy__heading .br {
  display: none;
}
@media screen and (max-width: 519px) {
  .privacy__heading .br {
    display: block;
  }
}
.privacy--list .item {
  margin-top: 20px;
}
.privacy--list .heading {
  text-indent: -1em;
  padding-left: 1em;
}
.privacy--list .inner {
  padding-left: 1em;
}
.privacy--list .desc.mar10 {
  margin-bottom: 10px;
}
.privacy--list .sublist > li {
  font-size: 1.5rem;
  text-indent: -1.2em;
  padding-left: 1.2em;
  margin-top: 10px;
}
.privacy--list .sublist > li:first-child {
  margin-top: 0;
}
.privacy--list .sublist--list > li {
  font-size: 1.5rem;
  text-indent: -1em;
  padding-left: 1em;
  margin-top: 5px;
}
.privacy--list .sublist--list > li:first-child {
  margin-top: 0;
}
