@charset "utf-8";

/* メインカラー #2f496e */
/* サブカラー #2988bc */
/* アクセント1 #ed8c72 */
/* アクセント2 #f4eade */

html {
  scroll-behavior: smooth;
}

/* スクロールデザイン */
::-webkit-scrollbar {
  width: 5px;
  height: 0;
}
::-webkit-scrollbar-track {
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: #2f496e;
}
/* --------------------------- */

body {
  font-family: "Zen Kaku Gothic Antique", serif;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  color: #2f496e;
}
header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  height: 50%;
  padding: 0 10px;
  border-bottom: 1px solid rgb(255, 255, 255, 0.1);
  color: #2f496e;
  overflow: hidden;
  transition: height 1s, background-color 0.5s;
}
header.default-header {
  height: 50%;
  background-color: #fff;
}
header.small-header {
  height: 110px;
  background-color: rgb(255, 255, 255, 0.9);
}

main {
  transition: padding-top 0.8s 0.5s;
}
main.default-main {
  padding-top: calc(var(--vh, 1vh)* 50);
}
main.small-main {
  padding-top: 280px;
}

footer {
  display: flex;
  justify-content: start;
  align-items: start;
  flex-wrap: wrap;
  min-height: calc((var(--vh, 1vh)* 100) - 110px);
  padding: 0 10px;
  background-color: #2f496e;
  color: #fff;
  overflow: hidden;
  position: relative;
}

.setHeight {
  height: calc(var(--vh, 1vh)* 100);
  transition: height 0.5s;
}

/* ヘッダー */
/* ロゴ */
.company-logo {
  position: absolute;
  top: 0;
  left: 10px;
  width: 450px;
  height: 75px;
  opacity: 0;
  transition: opacity 0.5s;
}
.company-logo h1 {
  height: 100%;
  padding: 10px 0;
}
.company-logo a {
  display: block;
  height: 100%;
}
.company-logo img {
  height: 100%;
}
.small-header .company-logo {
  opacity: 1;
}
.firstView .company-logo {
  opacity: 0;
}
/* タイトル */
.header-title {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-wrap: wrap;
  width: 450px;
}
.header-title h1 {
  width: 100%;
  text-transform: uppercase;
  font-size: 110px;
  font-weight: 900;
}
.header-title p {
  display: inline-block;
  margin-top: 10px;
  margin-right: 10px;
  font-size: 22px;
  font-weight: 900;
  position: relative;
}
.header-title p::before {
  content: '-';
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translate(0, -50%);
}
.header-title p::after {
  content: '-';
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translate(0, -50%);
}
/* キャッチコピー */
.catchphrase {
  position: absolute;
  top: 45%;
  right: -100px;
  transform: translate(0, -50%) rotate(90deg);
  display: inline-block;
  height: 25px;
  text-transform: capitalize;
  opacity: 0.3;
  font-weight: 700;
}
/* ヘッダーメニュー */
.headerNav {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50px;
  padding-left: 25%;
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s 1.5s, visibility 0.1s;
}
.firstView .headerNav {
  opacity: 0;
  visibility: hidden;
}
.headerNav ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  width: 100%;
  height: 100%;
  font-weight: 700;
}
.headerNav li a {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  height: 100%;
}
.headerNav li span {
  padding-left: 25px;
  position: relative;
}
.headerNav li span::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%) rotate(-135deg);
  width: 25px;
  height: 25px;
  background-image: url(../img/iconItem/arrow_drop_down_24dp_2F496E_FILL0_wght400_GRAD0_opsz24.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.headerNav li span::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: calc(50% + 12.5px);
  transform: translate(-50%, 0);
  width: 0;
  height: 2px;
  background-color: #2f496e;
  transition: width 0.3s;
}
.headerNav li:hover span::after {
  width: calc(100% - 25px);
}
.headerNav .responsiveOnly {
  display: none;
}
/* ナビを閉じる（レスポンシブのみ） */
.headerNav .closeBtn {
  position: sticky;
  bottom: 0;
  width: 110px;
  height: 35px;
  margin-top: 10px;
  margin-left: auto;
  border: none;
  text-transform: uppercase;
}
.headerNav .closeBtn span {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 0;
}
.headerNav .closeBtn span::before {
  content: '';
  position: absolute;
  top: auto;
  bottom: 10px;
  left: auto;
  right: -5px;
  transform: translate(0, 0) rotate(45deg);
  width: 25px;
  height: 2px;
  background-color: #2f496e;
  background-image: none;
}
.headerNav .closeBtn span::after {
  content: '';
  position: absolute;
  top: auto;
  bottom: 2px;
  left: auto;
  right: 0;
  transform: translate(0, 0) rotate(0);
  width: 100%;
  height: 2px;
}

/* ファーストビュー */
.firstView header {
  height: 100%;
}

/* スクロールトランスフォーム */
.default-header .header-title {
  opacity: 1;
  visibility: visible;
  transition: opacity 0.5s 0.1s, visibility 0.1s;
}
.small-header .header-title {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.1s 0.5s;
}
.default-header .catchphrase {
  opacity: 0.3;
  visibility: visible;
  transition: opacity 0.5s 0.1s, visibility 0.1s;
}
.small-header .catchphrase {
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.5s, visibility 0.1s 0.5s;
}

/* メインコンテンツ */
.mainContent {
  padding-bottom: 30vh;
  position: relative;
}
.mainContent .backgroundImage,
.mainContent .subtitleContainer {
  height: calc(var(--vh, 1vh)* 50);
  background-position: top;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  transition: filter 0.3s;
}
main.default-main .mainContent .backgroundImage {
  filter: grayscale(1);
}
main.small-main .mainContent .backgroundImage {
  filter: grayscale(0);
}
.mainContent .sectionTitle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  padding: 10% 0;
  text-align: center;
  color: #fff;
}
.mainContent .sectionTitle h2 {
  text-transform: uppercase;
  font-size: 76px;
  font-weight: 900;
  text-shadow: 4px 3px 2px #2f496e;
}
.mainContent .sectionTitle p {
  font-size: 22px;
}
.mainContent .textContents {
  max-width: 1200px;
  padding: 120px 5% 0;
  margin: 0 auto;
}
.mainContent .textContents p {
  width: 100%;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
  line-height: 2;
  font-size: 18px;
}
.mainContent .textContents span {
  display: inline-block;
  margin-top: 10px;
}

/* メインコンテンツ 01 */
.mainContent-01 .backgroundImage {
  background-image: url(../img/imagesItem/item-images01.webp);
}
/* メインコンテンツ 02 */
.mainContent-02 {
  position: relative;
}
.mainContent-02::before {
  content: '';
  position: absolute;
  top: -100px;
  left: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(../img/imagesItem/item-images03.webp);
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  opacity: 0.2;
}
.mainContent-02 .container {
  max-width: 1200px;
  padding: 0 5%;
}
.mainContent-02 h3 {
  line-height: 1.5;
  font-size: 24px;
  font-weight: 900;
}
.mainContent-02 h3 span {
  display: block;
  font-size: 32px;
  color: #ed8c72;
}
.mainContent-02 p {
  margin-top: 30px;
  line-height: 2;
}
/* メインコンテンツ 03 */
.mainContent-03 {
  background-color: #f4eade;
}
.mainContent-03 .sectionTitle {
  color: #2f496e;
}
.mainContent-03 .sectionTitle h2 {
  color: #2f496e;
  text-shadow: 4px 3px 2px #fff;
}
/* インタビュー内容 */
.mainContent-03 .interviewContents {
  height: 0;
  padding: 0;
  background-color: #2f496e;
  overflow: auto;
  color: #fff;
  transition: height 0.5s, padding 0.5s;
}
.mainContent-03 .interviewContents#selected {
  height: calc((var(--vh, 1vh)* 100));
  padding: 120px 10px 30px;
}
.mainContent-03 .interviewContents .staffImages {
  display: flex;
  justify-content: start;
  align-items: center;
  width: 100%;
  max-width: 1080px;
  position: relative;
}
.mainContent-03 .interviewContents .staffImages#set {
  height: 80%;
  opacity: 1;
  transition: height 0.5s, opacity 0.5s 1s;
}
.mainContent-03 .interviewContents .staffImages#reset {
  height: 0;
  opacity: 0;
  transition: height 0.5s 0.5s, opacity 0.5s;
}
.mainContent-03 .staffImages .image-01 {
  width: 50%;
  height: 100%;
  object-fit: cover;
}
/* 写真に被せたアイテム */
.mainContent-03 .staffImages .staffData {
  position: absolute;
  bottom: 25px;
  left: 40%;
  z-index: 1;
  width: 45%;
  height: 35%;
  padding: 30px;
  background-color: #2f496e;
  font-size: 18px;
  font-weight: 700;
}
.mainContent-03 .staffImages .staffData::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  width: 100%;
  height: 100%;
  background-image: url(../img/iconItem/question_mark_24dp_FFF_FILL0_wght400_GRAD0_opsz24.svg);
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  opacity: 0.03;
}
.mainContent-03 .staffData li {
  margin-top: 20px;
}
.mainContent-03 .staffImages .joining {
  position: relative;
}
.mainContent-03 .staffImages .joining::before {
  content: '';
  position: absolute;
  bottom: -10px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: rgb(255, 255, 255, 0.2);
}
.mainContent-03 .interviewContents .textContainer {
  max-width: 1080px;
  margin-top: 30px;
}
.mainContent-03 .interviewContents label {
  display: flex;
  justify-content: start;
  align-items: center;
  border-bottom: 1px solid rgb(255, 255, 255, 0.2);
  font-size: 20px;
  font-weight: 900;
}
.mainContent-03 .interviewContents .number {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  margin-right: 10px;
  background-color: #ed8c72;
  border-radius: 2px;
  color: #2f496e;
}
.mainContent-03 .interviewContents p {
  min-height: 50px;
  margin-top: 20px;
  line-height: 1.5;
}
.mainContent-03 .interviewText ul {
  padding: 5px 0;
}
.mainContent-03 .interviewText li {
  margin-top: 10px;
}
/* 一覧へ戻るボタン */
.mainContent-03 .interviewContents .returnBtn {
  position: sticky;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 210px;
  height: 50px;
  margin-left: auto;
  background-color: #2f496e;
  border: 3px solid #ed8c72;
  border-radius: 5px;
  font-weight: 700;
  color: #ed8c72;
  transition: background-color 0.5s, color 0.5s;
}
.mainContent-03 .interviewContents .returnBtn:hover {
  background-color: #ed8c72;
  color: #fff;
}
/* 社員インタビュー（一覧） */
.mainContent-03 .staffList {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  padding: 0 5% 80px;
  overflow: hidden;
  position: relative;
}
/* .mainContent-03 .staffList::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
} */
.mainContent-03 .listColumn {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 940px;
}
.staffInterview-container {
  width: 420px;
  height: 420px;
  margin: 50px 25px;
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: cover;
  box-shadow: 2px 2px 5px -2px rgb(47, 73, 110, 0.4);
  position: relative;
}
.staffInterview-container-01 {
  background-image: url(../img/interviewImages/staffImage-01.jpg);
  background-position: 100% 50%;
}
.staffInterview-container-02 {
  background-image: url(../img/interviewImages/staffImage-02.jpg);
  background-position: 100% 50%;
}
.staffInterview-container-03 {
  background-image: url(../img/imagesItem/noImage01.svg);
  background-position: 50% 50%;
}
.staffInterview-container-04 {
  background-image: url(../img/interviewImages/staffImage-04.jpg);
  background-position: 50% 50%;
}
.staffInterview-container-05 {
  background-image: url(../img/interviewImages/staffImage-05.jpg);
  background-position: 50% 30%;
}
.staffInterview-container .listNumber {
  position: absolute;
  top: 0;
  right: 10px;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 125px;
  height: 25px;
  text-transform: capitalize;
  font-size: 20px;
  font-weight: 900;
  color: #fff;
}
.staffInterview-container .staffData {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 110px;
  padding: 25px 10px 15px;
  background-color: #2f496e;
  color: #fff;
}
.staffInterview-container .duties,
.staffInterview-container .joining {
  display: block;
  margin-top: 5px;
  font-size: 20px;
  font-weight: 700;
}
.staffInterview-container .interviewText,
.staffInterview-container .faculty,
.staffInterview-container .interviewImage {
  display: none;
}

/* メインコンテンツ 04 */
.mainContent-04 .sectionTitle {
  color: #2f496e;
}
.mainContent-04 .sectionTitle h2 {
  color: #2f496e;
  text-shadow: 4px 3px 2px #fff;
}
/* ギャラリー */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: repeat(10, 1fr);
  width: 100%;
  max-width: 900px;
  height: 1750px;
  margin: 0 auto;
}
.gallery .galleryImage img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.gallery .galleryImage {
  padding: 5px;
}
.gallery .galleryImage.galleryImage01 {
  grid-column: 1 / 3;
  grid-row: 1 / 3;
}
.gallery .galleryImage.galleryImage01 img {
  object-position: -210px;
}
.gallery .galleryImage.galleryImage02 {
  grid-column: 3 / 5;
  grid-row: 2 / 3;
}
.gallery .galleryImage.galleryImage03 {
  grid-column: 1 / 3;
  grid-row: 3 / 4;
}
.gallery .galleryImage.galleryImage04 {
  grid-column: 3 / 5;
  grid-row: 3 / 4;
}
.gallery .galleryImage.galleryImage05 {
  grid-column: 3 / 5;
  grid-row: 1 / 2;
}
.gallery .galleryImage.galleryImage06 {
  grid-column: 1 / 3;
  grid-row: 4 / 5;
}
.gallery .galleryImage.galleryImage07 {
  grid-column: 3 / 5;
  grid-row: 4 / 5;
}
.gallery .galleryImage.galleryImage08 {
  grid-column: 1 / 5;
  grid-row: 5 / 11;
}
.gallery .galleryImage.galleryImage08 img {
  object-position: center;
}

/* フッター */
.footer-title {
  display: flex;
  justify-content: end;
  align-items: center;
  flex-wrap: wrap;
  width: 350px;
  padding-bottom: 15px;
}
.footer-title h1 {
  width: 100%;
  text-transform: uppercase;
  font-size: 85px;
  font-weight: 900;
}
.footer-title p {
  display: inline-block;
  margin-top: 10px;
  margin-right: 10px;
  font-size: 22px;
  font-weight: 900;
  position: relative;
}
.footer-title p::before {
  content: '-';
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translate(0, -50%);
}
.footer-title p::after {
  content: '-';
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translate(0, -50%);
}
/* コンタクト */
.footer-contact {
  width: calc(100% - 20px);
  margin: 0 auto;
  padding-top: 85px;
}
.footer-contact .contactBtn {
  display: flex;
  justify-content: start;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
  max-width: 680px;
  margin-left: auto;
  padding: 20px 10px;
  position: relative;
  z-index: 1;
  cursor: pointer;
}
.footer-contact .contactBtn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -5%;
  z-index: -1;
  width: 100%;
  height: 100%;
  border: 3px solid rgb(237, 140, 114, 0.1);
  border-radius: 10px;
  transition: left 0.5s, border 0.5s;
}
.footer-contact .contactBtn:hover::before {
  left: 0;
  border: 3px solid #ed8c72;
}
.footer-contact .contactTitle {
  width: 100%;
  max-width: 340px;
  margin-left: auto;
  padding-bottom: 25px;
  position: relative;
}
.footer-contact h2 {
  height: 90px;
  text-transform: uppercase;
  font-size: 75px;
  font-weight: 900;
}
.footer-contact p {
  position: absolute;
  bottom: 0;
  right: 0;
  display: inline-block;
  margin-top: 10px;
  margin-right: 10px;
  margin-left: auto;
  font-size: 20px;
  font-weight: 900;
}
.footer-contact p::before {
  content: '-';
  position: absolute;
  top: 50%;
  left: -10px;
  transform: translate(0, -50%);
}
.footer-contact p::after {
  content: '-';
  position: absolute;
  top: 50%;
  right: -10px;
  transform: translate(0, -50%);
}
.footer-contact .accessContact {
  position: absolute;
  top: 20px;
  left: 50px;
  transform: rotate(0);
  z-index: -1;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 95px;
  height: 95px;
  border: 3px solid #ed8c72;
  border-radius: 100px;
  font-size: 20px;
  font-weight: 700;
  color: #ed8c72;
  transition: transform 0.5s 0.3s, background-color 0.5s 0.3s, color 0.5s 0.3s;
}
.footer-contact .contactBtn:hover .accessContact {
  transform: rotate(-45deg);
  background-color: #ed8c72;
  color: #2f496e;
}
.footer-contact .accessContact .item {
  position: absolute;
  left: 50%;
  width: 35px;
  height: 3px;
  background-color: #ed8c72;
  transition: background-color 0.5s 0.3s;
}
.footer-contact .contactBtn:hover .item {
  background-color: #2f496e;
}
.footer-contact .accessContact .item-1 {
  top: 35px;
  transform: translate(-50%, -50%) rotate(35deg);
}
.footer-contact .accessContact .item-2 {
  top: 54px;
  transform: translate(-50%, -50%) rotate(-35deg);
}
.footer-contact .contactText {
  width: 100%;
}
.footer-contact .contactText ul {
  margin-left: auto;
}
.footer-contact .contactText li {
  margin-top: 20px;
  line-height: 1.5;
  font-size: 18px;
  font-weight: 700;
}
.footer-contact .contactText li.tel,
.footer-contact .contactText li.mail {
  font-size: 28px;
  font-weight: 700;
}
/* フッターリンク */
.footer-link {
  display: flex;
  justify-content: space-around;
  align-items: start;
  flex-wrap: wrap;
  width: 100%;
  max-width: 480px;
  height: calc(100% - (175px + 320px));
  margin-top: 60px;
  padding: 20px 0 125px;
}
.footer-link ul {
  margin: 0 10px;
  padding-top: 20px;
}
.footer-link li {
  margin-top: 20px;
}
.footer-link li span {
  padding-left: 10px;
  position: relative;
}
.footer-link li span::after {
  content: '-';
  position: absolute;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  width: 10px;
  height: 100%;
}
.footer-link li span::before {
  content: '';
  position: absolute;
  bottom: -5px;
  left: calc(50% + 5px);
  transform: translate(-50%, 0);
  width: 0;
  height: 2px;
  background-color: #fff;
  transition: width 0.3s;
}
.footer-link li:hover span::before {
  width: calc(100% - 10px);
}
/* copyright */
.copyright {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 25px;
  text-align: center;
  font-size: 12px;
  font-weight: 900;
}