@charset "UTF-8";
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
/  mixin                                                     */
/* ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/
/  mixin                                                     */
/*************************
変数設定
*************************/
/* ===========================================================/
/  ヘッダー                                                   
=============================================================*/
.header {
  width: 100%;
  height: 90px;
  background: #fff;
  position: fixed;
  top: 0;
  left: 0;
}
@media screen and (max-width: 1024px) {
  .header {
    height: 75px;
  }
}
.header__wrap {
  padding: 0 min(3.1770833333vw, 61px) 0 min(6.3020833333vw, 121px);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .header__wrap {
    padding: 0 0 0 25px;
  }
}
.header__main {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .header__main {
    padding-right: min(4.6458333333vw, 22.3px);
    height: 75px;
    max-width: 72%;
  }
}
.header__logo {
  width: 280px;
  margin: 0 80px 0 0;
}
.header__nav.global-nav {
  width: calc(100% - 360px);
}
@media screen and (max-width: 1024px) {
  .header__logo {
    width: 280px;
    margin: 0;
  }
}

/* ===========================================================/
/  グローバルナビ                                             
=============================================================*/
@media screen and (max-width: 1024px) {
  .global-nav {
    display: none;
  }
}
.global-nav__list {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.global-nav__item {
  font-family: "Noto Sans JP", sans-serif!important;
  font-size: 1.8rem!important;
  font-weight: 700!important;
  position: relative;
}
.global-nav__item + .global-nav__item {
  margin-left: min(3.90625vw, 75px);
}
@media screen and (min-width: 1024px) and (max-width: 1440px) {
  .global-nav__item {
    font-size: 1.6rem!important;
  }
  .global-nav__item + .global-nav__item {
    margin-left: min(3.90625vw, 32px);
  }
}
.global-nav__item:last-of-type {
  margin-left: min(2.03125vw, 39px);
}
.global-nav__lower-list {
  padding: 10.6px 32.3px 23.4px 26px;
  min-width: 190px;
  background: #fff;
  position: absolute;
  bottom: 0;
  left: 0;
  transform: translateY(100%);
  transition: all 0.3s ease-out;
  opacity: 0;
  pointer-events: none;
}
.global-nav__item:hover .global-nav__lower-list {
  opacity: 1;
  pointer-events: visible;
}
.global-nav__lower-item-link {
  font-weight: normal;
  display: flex;
  align-items: center;
  white-space: nowrap;
  font-weight: 500;
}
.global-nav__lower-item-link::before {
  content: "";
  margin-right: 9.7px;
  display: inline-block;
  width: 15px;
  height: 2px;
  background: #0764CD;
}

/* ===========================================================/
/  バーガーボタン
=============================================================*/
.burger-btn {
  display: none;
  width: 75px;
  height: 75px;
  background: #000;
  align-items: center;
  justify-content: space-between;
  flex-direction: column;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .burger-btn {
    display: flex;
    border: none;
    box-shadow: none;
  }
}
.burger-btn span {
  display: block;
  background: #fff;
  position: absolute;
  width: 35px;
  height: 2px;
  top: calc(75px/2);
  right: calc(36px/2);
  transition: all 0.3s ease-out;
}
.burger-btn span:nth-of-type(1) {
  top: 26px;
}
.burger-btn span:nth-of-type(3) {
  top: auto;
  bottom: 23px;
}
.burger-btn--js-open span:nth-of-type(1) {
  transform: rotateZ(45deg);
  top: calc(75px/2);
}
.burger-btn--js-open span:nth-of-type(2) {
  opacity: 0;
}
.burger-btn--js-open span:nth-of-type(3) {
  bottom: 35.5px;
  transform: rotateZ(-45deg);
}

/* ===========================================================/
/  バーガーメニュー
=============================================================*/
.burger-menu {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  padding: calc(8% + 75px) 12% 8% 12%;
  background: #0764CD;
  z-index: 5;
  overflow-y: scroll;
}
.burger-menu__inner {
  height: 100%;
}

.burger-nav__list {
  display: flex;
  flex-direction: column;
  gap: 25px;
}
.burger-nav__item {
  color: #fff;
  font-size: 18px;
  letter-spacing: 0.06em;
  border-bottom: 1px solid #fff;
}
.burger-nav__item:nth-of-type(6), .burger-nav__item:nth-of-type(7) {
  border-bottom: none;
}
.burger-nav__item:nth-of-type(7) {
  margin: 0 0 75px 0;
}
.burger-nav__link {
  padding: 13px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.burger-nav__link::after {
  content: ">";
  font-size: 1.9rem;
  color: #fff;
  font-weight: normal;
}
.global-nav__lower-list-sp {
  padding: 0;
  padding: 0 0 13px 0;
}
.burger-nav__link.sp {
  justify-content: flex-start;
  font-size: 72%;
  padding: 6px 0;
}
.burger-nav__link.sp::before {
  content: "-";
  margin: 0 8px 0 0;
}
.burger-nav__link.sp::after {
  display: none;
}
.burger-nav__sns {
  margin-top: 10px;
  display: block;
  padding: 0;
  margin: 0 auto;
}
.burger-nav__sns::after {
  display: none;
}
.burger-nav__sns:first-of-type {
  width: 35px;
  height: 27px;
}
.burger-nav__sns:last-of-type {
  width: 31px;
  height: 32px;
}
.burger-nav__sns img {
  object-fit: contain;
}
.ns-b {
	font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
}

/* ===========================================================/
/  フッター                                                 
=============================================================*/
.footer {
  padding: 53px min(4.375vw, 84px) 62.7px min(8.8020833333vw, 169px);
  background: #000;
}
@media screen and (max-width: 1024px) {
  .footer {
    padding: 0 50px;
  }
}
.footer__row {
  margin: 0 auto;
  max-width: 1667px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1024px) {
  .footer__row {
    flex-direction: column-reverse;
  }
}
.footer__logo {
  padding-bottom: 27px;
  width: 381px;
  max-width: 100%;
  border-bottom: 1px solid #fff;
}
@media screen and (max-width: 1024px) {
  .footer__logo {
    width: 100%;
    margin: 36px auto 0;
  }
}
@media screen and (max-width: 1024px) {
  .footer__logo a {
    display: block;
    margin: 0 auto;
    width: 381px;
    max-width: 100%;
  }
}
.footer__left {
  color: #fff;
  max-width: 30%;
}
@media screen and (max-width: 1024px) {
  .footer__left {
    max-width: none;
  }
}
.footer__address {
  margin-top: 22.3px;
  font-size: 1.8rem;
  letter-spacing: 0.195em;
}
@media screen and (max-width: 1024px) {
  .footer__address {
    margin: 20px auto 0;
    padding: 0 10px;
    width: fit-content;
  }
}
.footer__sns-wrap {
  margin-top: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}
.footer__tel {
  display: block;
  margin-top: 22.3px;
  font-size: 2rem;
  font-weight: bold;
  letter-spacing: 0.255em;
}
@media screen and (max-width: 1024px) {
  .footer__tel {
    margin-top: 8px;
    text-align: center;
  }
}
.footer__copyright {
  margin-top: 44.8px;
  font-size: 1.55rem;
  letter-spacing: 0.1em;
}
@media screen and (max-width: 1024px) {
  .footer__copyright {
    margin: 58px 0 8px;
    text-align: center;
  }
}

/* ===========================================================/
/  フッターナビ                                               
=============================================================*/
.footer-nav {
  margin-left: min(8.5833333333vw, 164.8px);
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .footer-nav {
    margin-left: 0;
    margin-top: 13px;
  }
}
.footer-nav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px min(4.1666666667vw, 80px);
}
@media screen and (max-width: 1024px) {
  .footer-nav__list {
    flex-direction: column;
    gap: 0;
  }
}
.footer-nav__item {
  font-size: 1.8rem;
  font-weight: 600;
  letter-spacing: 0.075em;
}
@media screen and (max-width: 1024px) {
  .footer-nav__item {
    border-bottom: 1px solid #fff;
  }
}
@media screen and (max-width: 1024px) {
  .footer-nav__item-link {
    display: block;
    padding: 13px 0;
    display: flex;
    justify-content: space-between;
  }
}
@media screen and (max-width: 1024px) {
  .footer-nav__item-link::after {
    content: ">";
    font-size: 1.9rem;
    color: #fff;
    font-weight: normal;
  }
}
.footer-nav__lower-list {
  margin-top: 33.7px;
}
@media screen and (max-width: 1024px) {
  .footer-nav__lower-list {
    display: none;
  }
}
.footer-nav__lower-item {
  font-size: 1.6rem;
  letter-spacing: 0;
  margin-top: 1em;
  font-weight: 600;
}
/* .footer-nav__lower-item + .footer-nav__lower-item {
  margin-top: 1em;
} */
.footer-nav__sns {
  display: block;
}
.footer-nav__sns:first-of-type {
  width: 35px;
  height: 27px;
}
.footer-nav__sns:last-of-type {
  margin-top: 29px;
  width: 31px;
  height: 32px;
}
.footer-nav__sns img {
  object-fit: contain;
}

/* ===========================================================/
/  z-index                                                   
=============================================================*/
.header {
  z-index: 9000;
}
.header__main {
  z-index: 1000;
}
.header__btn {
  z-index: 3000;
}
.header__menu {
  z-index: 2000;
}

/* ===========================================================/
/  コンテナ                                          
=============================================================*/
.cmn__inner {
  /* width: 89.5833333333%;
  max-width: 1280px;
  margin: 0 auto; */
  padding: 0 12%;
}
/* .cmn__inner--1390 {
  max-width: 1390px;
} */
@media screen and (max-width: 599.98px) {
  .cmn__inner {
    width: 100%;
    padding: 0 25px;
  }
}

/* ===========================================================/
/  ローディング                                          
=============================================================*/
.loading {
  background-color: #fff;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  pointer-events: auto;
  transition: opacity 1s;
  z-index: 9999;
}
.loading--js-loaded {
  opacity: 0;
  pointer-events: none;
}

/* ===========================================================/
/  セクションタイトル                                        
=============================================================*/
.sec__ttl {
  font-size: 6rem;
  letter-spacing: 0.04em;
  font-weight: bold;
  line-height: 1.33;
  display: flex;
}
@media screen and (max-width: 1024px) {
  .sec__ttl {
    font-size: 5rem;
  }
}
@media screen and (max-width: 479px) {
  .sec__ttl {
    font-size: 4rem;
  }
}
.sec__ttl::before {
  display: block;
  margin-right: 13px;
  color: #0764CD;
  font-weight: 500;
  font-size: 2.5rem;
  transform: translateY(20px);
  line-height: 1;
  font-weight: 500;
}
.sec__ttl--01::before {
  content: "01";
}
.sec__ttl--02::before {
  content: "02";
}
.sec__ttl--03::before {
  content: "03";
}
.sec__ttl--04::before {
  content: "04";
}
.sec__ttl--05::before {
  content: "05";
}

/* ===========================================================/
/  下層ページ                                       
=============================================================*/
.lower-mv {
  position: relative;
  padding: 35% 0 0 0;
  height: 0;
  background: no-repeat center/cover;
}
@media screen and (max-width: 1024px) {
  .lower-mv {
    margin-top: 110px;
    height: 345px;
  }
}
.lower-mv--emalock {
  margin: 90px 0 0 0;
  background-image: url(../img/emalock/mv-photo.jpg);
}
@media screen and (max-width: 1024px) {
  .lower-mv--emalock {
    margin: 75px 0 0 0;
    background-image: url(../img/emalock/mv-photo_sp.jpg);
  }
}
.lower-mv > .cmn__inner {
  height: 100%;
}
.lower-mv__ttl {
  position: absolute;
  top :0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 0 16%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  color: #fff;
}
@media screen and (max-width: 1024px) {
  .lower-mv__ttl {
    align-items: center;
  }
}
.lower-mv__ttl span {
  display: block;
  letter-spacing: 0.1em;
}
.lower-mv__ttl--en {
  font-size: 5rem;
  line-height: 1.17;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .lower-mv__ttl--en {
    text-align: center;
    font-size: 4.8rem;
  }
}
.lower-mv__ttl--ja {
  margin-top: 30px;
  font-size: 2rem;
}

.lower-ttl {
  display: flex;
  flex-direction: column;
}
@media screen and (max-width: 1024px) {
  .lower-ttl {
    align-items: center;
  }
}
.lower-ttl--center {
  align-items: center;
}
.lower-ttl--ja {
  font-size: 4.5rem;
  font-weight: bold;
}
@media screen and (max-width: 1024px) {
  .lower-ttl--ja {
    font-size: 3rem;
    text-align: center;
  }
}
.lower-ttl--en {
  margin-top: 12px;
  font-size: 2rem;
  color: #0764CD;
  letter-spacing: 0.24em;
}
@media screen and (max-width: 1024px) {
  .lower-ttl--en {
    font-size: 1.9rem;
  }
}

/* ===========================================================/
/  ボタン                                       
=============================================================*/
.btn {
  width: fit-content;
  display: block;
  font-size: 2rem;
  letter-spacing: 0.1em;
  line-height: 1.25;
  font-weight: 500;
}
.btn::after {
  content: "";
  display: block;
  margin-top: 13.6px;
  width: 183px;
  height: 2px;
  background: #0764CD;
  transform-origin: left bottom;
}
.btn:hover::after {
  animation: btnBorder .6s ease 0s;
  animation-fill-mode: forwards;
}
@keyframes btnBorder {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(1);
  }
}
.btn--center {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.btn--blue {
  color: #0764CD;
}
.btn--blue::after {
  background: #b3b3b3;
}

/* ===========================================================/
/  初期設定                                                   
=============================================================*/
html {
  height: 100%;
  font-size: 62.5%;
}

body {
  height: 100%;
  color: #282828;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.6;
  -webkit-text-size-adjust: 100%;
  -webkit-font-smoothing: antialiased;
  overflow-wrap: break-word;
  word-wrap: break-word;
  line-break: normal;
  text-rendering: optimizeSpeed;
}

main {
  overflow-x: hidden;
  overflow-y: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  line-height: 1.37;
}

img {
  image-rendering: -webkit-optimize-contrast;
  width: 100%;
  height: 100%;
  vertical-align: bottom;
  object-fit: cover;
}

@media screen and (min-width: 1024.02px) {
  .no-pc {
    display: none !important;
  }
}

@media screen and (max-width: 1439px) {
  .only-pc {
    display: none !important;
  }
}

@media screen and (min-width: 1440px) {
  .only-sp-smpc {
    display: none !important;
  }
}

@media screen and (max-width: 1024px) and (min-width: 600px) {
  .no-tab {
    display: none !important;
  }
}

@media screen and (max-width: 599.98px) {
  .no-sp {
    display: none !important;
  }
}

@media screen and (max-width: 479px) {
  .no-sm {
    display: none !important;
  }
}

.dib {
  display: inline-block;
}

/* @media screen and (min-width: 1024.02px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
} */

.form-reset {
  appearance: none;
  display: block;
  border: none;
  border-radius: 0;
  padding: 0;
  background: none;
  box-shadow: none;
}/*# sourceMappingURL=common.css.map */


/* ===========================================================/
/  投稿カード                                            
=============================================================*/
.top-news-works__list {
  margin-top: 111.6px;
  display: flex;
  flex-wrap: wrap;
  gap: 86.5px 53px;
}
@media screen and (max-width: 1024px) {
  .top-news-works__list {
    margin-top: 68px;
    padding: 0 4%;
    flex-direction: column;
    gap: 30px;
  }
}
.top-news-works__item {
  width: calc((100% - 53px) / 2);
  transition: .3s;
}
.top-news-works__item:hover {
  opacity: .8;
}
@media screen and (max-width: 1024px) {
  .top-news-works__item {
    width: 100%;
  }
}
@media screen and (max-width: 1024px) {
  .top-news-works__item-article {
    display: flex;
    flex-direction: column;
  }
}
.top-news-works__item-row {
  display: flex;
  align-items: flex-start;
  /* gap: 24.5px; */
}
@media screen and (max-width: 1024px) {
  .top-news-works__item-row:nth-of-type(1) {
    display: block;
  }
}
.top-news-works__item-row:nth-of-type(2) {
  margin-top: 22.7px;
  align-items: center;
}
@media screen and (max-width: 1024px) {
  .top-news-works__item-row:nth-of-type(2) {
    margin-top: 20px;
    order: 2;
  }
}
.top-news-works__item-img {
  padding: calc(75% * .53) 0 0 0;
  height: 0;
  width: 53%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}
@media screen and (max-width: 1024px) {
  .top-news-works__item-img {
    width: 100%;
    height: 0;
    padding: 240px 0 0 0;
    max-width: 100%;
    order: 1;
  }
}
.top-news-works__item-txt {
  width: 47%;
  padding: 0 0 0 4%;
  flex: 1;
}
@media screen and (max-width: 1024px) {
  .top-news-works__item-txt {
    display: block;
    width: 100%;
  }
}
.top-news-works__item-ttl {
  font-size: 2.2rem;
  font-weight: bold;
  letter-spacing: 0.16em;
  color: #0764CD;
}
@media screen and (max-width: 1024px) {
  .top-news-works__item-ttl {
    width: 100%;
    margin-top: 30px;
    order: 3;
  }
}
.top-news-works__item-para {
  margin-top: 10.5px;
  font-size: 2rem;
  letter-spacing: 0.2em;
  line-height: 1.44;
}
.top-news-works__item-para + p {
  color: #282828;
  font-size: 1.6rem;
}
@media screen and (max-width: 1024px) {
  .top-news-works__item-para {
    width: 100%;
    margin-top: 16px;
    order: 4;
  }
}
.top-news-works__item-arrow {
  margin-top: 1em;
  font-size: 1.8rem;
  color: #0764CD;
}
@media screen and (max-width: 1024px) {
  .top-news-works__item-arrow {
    order: 5;
  }
}
.top-news-works__item-cat {
  width: auto;
  height: 35.6px;
  padding: 0 28px;
  margin: 0 24px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  background: #0764CD;
  border-radius: 27px;
}
.top-news-works__item-time {
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: #0764CD;
}
.top-news-works__btn {
  margin: 90px auto 108px;
}
@media screen and (max-width: 1024px) {
  .top-news-works__btn {
    margin: 40px auto 75px;
    text-align: center;
  }
}

.blue {
	color: #0764CD;
}
.wh {
  color: #fff;
}
@media only screen and (min-width: 600px) {
  .mobile-footer-fixed {
    display: none;
	}
}
@media only screen and (max-width: 599px) {
	.mobile-footer-fixed {
    display: flex;
		position: fixed;
		bottom: 0;
		left: 0;
		width: 100%;
		font-size: .64rem;
		z-index: 100;
	}
	.mobile-footer-fixed a:nth-of-type(1) {
		width: 60%;
		background: rgba(255, 255, 255, 0.8);
		color: #000;
		text-align: center;
	}
	.mobile-footer-fixed a:nth-of-type(2) {
		width: 40%;
		background: rgba(7, 100, 205, 0.8);
		text-align: center;
	}
	.mobile-footer-fixed a:nth-of-type(1) img {
		width: 16px;
		display: block;
		margin: 10px auto 4px auto;
	}
	.mobile-footer-fixed a:nth-of-type(2) img {
		width: 16px;
		display: block;
		margin: 10px auto 8px auto;
	}
}