@font-face {
  font-family: YuMincho;
  font-style: normal;
  font-weight: 500;
  src: url("../font/yumindb.ttf");
}

* {
  margin: 0px;
  padding: 0px;
  box-sizing: border-box;
}

html, body {
  overflow-x: hidden;
}

body {
  color: rgb(17, 17, 17);
  font-weight: bold;
  font-size: 14px;
  line-height: 1.7;
  text-size-adjust: 100%;
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
}

body.is-fixed {
  overflow: hidden;
  position: fixed;
  width: 100vw;
}

.font-yugothic {
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif !important;
}
ul {
  list-style-type: none;
}

a {
  color: currentcolor;
  text-decoration: none;
  transition: all 0.2s ease 0s;
}

a:hover {
  opacity: 0.5;
}

img {
  max-width: 100%;
}
h1 {
  display: none;
}
.c-bg {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

.c-bg--before,
.c-bg--after{
  position: relative;
}
.c-bg--before::before,
.c-bg--after::after{
  content: '';
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  display: inline-block;
}
.c-flex{
  display: flex;
  justify-content: space-between;
}
.c-highlight{
  display: inline-block;
  border-bottom: 1px solid #CC0011;
  color: #CC0011;
  padding-bottom: 2px;
}
/**Btn*/
.c-btn-list {
  display: flex;
  justify-content: center;
  gap: 20px 40px;
}
  
  .c-btn {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0px;
    position: relative;
    line-height: 1;
    /* font-family: YuMincho; */
    transition: all 0.4s ease 0s;
  }
  
  .c-btn::before, .c-btn::after {
    content: "";
    flex-shrink: 0;
    display: block;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    transition: inherit;
  }
  
  .c-btn:hover {
    opacity: 1;
  }
  @media(max-width: 1024px){
    .c-btn-list{
      gap: 15px 20px;
    }
  }
  @media(max-width: 767px){
    .c-btn-list{
      gap: 15px 10px;
      flex-wrap: wrap;
    }
  }
  /*Custom btn*/
  .c-btn1 {
    background: transparent;
    color: rgb(169, 140, 7);
    border: 1px solid rgb(169, 140, 7);
    padding: 14px 10px;
    width: 180px;
  }
  
  .c-btn1::before {
    margin-right: 9px;
    background-image: url("../images/common/ic-arrow-btn.png");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center center;
    width: 8px;
    height: 14px;
    margin-top: -2px;
  }
  
  .c-btn1.active, .c-btn1:hover {
    background: rgb(169, 140, 7);
    color: rgb(255, 255, 255);
  }
  
  .c-btn1:hover::before {
    background-image: url("../images/common/ic-arrow-btn-hv.png");
  }
  
  .c-btn2 {
    font-size: 18px;
    line-height: 1;
    border: 2px solid rgb(245, 112, 11);
    padding: 18px;
    background-color: rgb(255, 255, 255);
    color: rgb(245, 112, 11);
  }
  
  .c-btn3 {
    font-size: 18px;
    border: 2px solid currentcolor;
    padding: 18px;
    width: 100%;
    max-width: 260px;
  }
  
  .c-btn-footer {
    border: 1px solid rgb(169, 140, 7);
    border-radius: 30px;
    font-size: 20px;
    color: rgb(169, 140, 7);
    width: 300px;
    height: 64px;
  }
  
  .c-btn-footer:hover {
    color: rgb(255, 255, 255);
    background-color: rgb(169, 140, 7);
  }
  
  .c-btn-footer::before {
    margin-top: -3px;
    margin-right: 13px;
    width: 24px;
    height: 24px;
  }
  
  .c-btn-footer.ic-line::before {
    background-image: url("../images/common/ic-line.png");
  }
  
  .c-btn-footer.ic-line:hover::before {
    background-image: url("../images/common/ic-line-hv.png");
  }
  
  .c-btn-footer.ic-mail::before {
    background-image: url("../images/common/ic-mail.png");
  }
  
  .c-btn-footer.ic-mail:hover::before {
    background-image: url("../images/common/ic-mail-hv.png");
  }
  
  .c-btn4 {
    background: transparent;
    border-bottom: 1px solid #ccc;
    padding: 0 20px 20px;
    width: 440px;
    justify-content: space-between;
    text-align: left;
    line-height: 1.4;
    font-size: 18px;
  }
  .c-btn4::after {
    background-image: url("../images/common/ic-arr-black.png");
    width: 13px;
    height: 20px;
    transition: all ease 0.4s;
  }
  .c-btn4::before {
    width: 80px;
    background: #00056B;
    height: 2px;
    position: absolute;
    left: 0;
    bottom: -1px;
    display: block;
  }
  .c-btn4:hover{
    color: #00056B;
  }
  .c-btn4:hover::before {
    width: 100%;
  }
  .c-btn4:hover::after{
    background-image: url("../images/common/ic-arr-blue.png");
  }
  @media(max-width: 767px){
    .c-btn1 {
      font-size: 13px;
      width: 160px;
    }
    .c-btn1::before{
      width: 6px;
      height: 12px;
    }
    .c-btn-footer{
      width: 200px;
      font-size: 13px;
      height: 50px;
    }
    .c-btn-footer::before{
      width: 19px;
      height: 19px;
      margin-right: 8px;
    }
	.c-btn4{
		font-size: 14px;
		padding: 10px;
	}
	  .c-btn4::after{
		  width: 8px;
		  height: 15px;
		 }
	  .c-btn4::before{
		  width: 50px;
	  }
  }
  /**End btn*/
  
/*Title*/
.c-title {
  text-align: center;
  font-weight: 600;
}

.c-title span {
  display: block;
  text-align: center;
}
.c-title.--bord::after{
  content: '';
  width: 20px;
  height: 1px;
  background-color: #111;
  margin: 20px auto 0;
  display: block;
}
/*custom*/
.c-title1 {
  font-size: 42px;
}
.c-title2 {
  font-size: 32px;
}

.c-title1 span,
.c-title2 span
{
  color: rgb(169, 140, 7);
  margin-bottom: 17px;
  font-size: 10px;
}
 
@media(max-width: 1024px){
  .c-title1{
    font-size: 38px;
  }
  .c-title2 {
    font-size: 28px;
  }
}
@media(max-width: 767px){
  .c-title1{
    font-size: 24px;
  }
  .c-title2 {
    font-size: 22px;
  }
  .c-title1 span, .c-title2 span{
    margin-bottom: 8px;
  }
}
/**End Title */

/**pallarax*/
.c-pallarax {
  height: 320px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.c-parallax--bg {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: auto;
}

.parallax__container {
  position: absolute;
  clip: rect(0px, auto, auto, 0px);
  width: 100%;
  height: 100%;
  top: 0px;
  left: 0px;
  z-index: -10;
}

.parallax {
  position: fixed;
  width: 100%;
  top: 0px;
  left: 0px;
}

/*custom*/
.c-pallarax__content {
  position: absolute;
  top: 0px;
  left: 0px;
  background: rgb(255, 255, 255);
  width: 683px;
  padding: 72px 55px 94px 160px;
}

.c-pallarax__title {
  font-size: 97px;
  font-weight: bold;
  letter-spacing: 0px;
  line-height: 120%;
}

.c-pallarax__subtt {
  font-size: 37px;
  line-height: 120%;
  margin: 17px 0px 0px;
  letter-spacing: 1.8px;
}

.c-pallarax__desc {
  line-height: 200%;
  font-size: 14px;
  letter-spacing: 2px;
  margin-top: 26px;
  font-weight: bold;
}

@media(max-width: 767px){
  .c-pallarax{
    height: 200px;
  }
}
/**End pallarax*/

/**Nav Menu*/
.c-nav__menu {
  display: flex;
  align-items: center;
}

.c-nav__link {
  display: block;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  letter-spacing: 0px;
  transition: all 0.4s ease 0s;
  padding: 3px 30px;
  position: relative;
  color: rgb(255, 255, 255);
  border-left: 1px solid #fff;
}
.c-header.active .c-nav__link{
  border-left-color:#707070;
}
.c-nav__item:first-child .c-nav__link{
  border-left: 0;
}
.c-header.active .c-nav__link {
  color: rgb(17, 17, 17);
  opacity: 1;
}

.c-nav__link:hover {
  opacity: 0.5;
}
.c-header.active .c-nav__link:hover{
	color: #00056B;
}
.c-nav__insta{
  width: 38px;
  display: block;
  margin: 0 30px;
  height: 38px;
  position: relative;
}
.c-nav__insta img{
  display: block;
  width: 100%;
  position: absolute;
  opacity: 1;
  z-index: 1;
  top: 0;
  left: 0;
  transition: all ease 0.4s;
}
.c-nav__insta .--imgb,
.c-nav__insta .--imgblue{
  opacity: 0;
  z-index: -1;
}
.c-header.active .c-nav__insta .--imgb{
  opacity: 1;
  z-index: 1;
}
.c-header.active .c-nav__insta .--imgw{
  opacity: 0;
  z-index: -1;
}
.c-header.active .c-nav__insta:hover, 
.c-header.active .c-nav__insta:hover .--imgblue{
  z-index: 1;
  opacity: 1;
}
.c-header.active .c-nav__insta:hover .--imgb{
  opacity: 0;
  z-index: -1;
}
.c-nav__btn{
  width: 184px;
  height: 60px;
  border-radius: 10px;
  font-size: 18px;
}
.c-nav__btn:hover{
  opacity: 1;
}
.c-nav__btn.--w{
  background-color: #fff;
  color: #00056B;
  border: 2px solid transparent;
}
.c-nav__btn.--w:hover{
  background-color: #00056B;
  color: #fff;
}
.c-header.active .c-nav__btn.--w{
  border-color: #00056B;
}
.c-nav__btn.--blue{
  background-image: url('../images/common/bg-btn.png');
  color: #fff;
  margin-left: 20px;
  border: 2px solid transparent;
}
.c-nav__btn.--blue:hover{
  background: #fff;
  color: #00056B;
  border-color: currentColor;
}
.c-menuIcon {
  display: none;
}

@media screen and (max-width: 1600px) {
  .c-nav__link{
		font-size: 14px;
		padding: 0 15px;
	 }
	.c-nav__insta{
		width: 30px;
		height: 30px;
		margin: 0 20px;
	}
	.c-nav__btn{
		width: 150px;
		font-size: 14px;
		height: 45px;
	}
}

@media screen and (max-width: 1200px) {
  .c-nav__menu {
    display: block;
    width: 100%;
  }

  .c-nav__item {
    border-left: 0px;
    text-align: center;
  }

  .c-nav__link {
    color: #111;
    padding: 10px;
  }
	.c-nav__btn.--w{
		border: 1px solid currentColor;
		margin: 10px auto;
	}
	.c-nav__btn.--blue{
		margin: auto;
	}
	.c-nav__insta{
		margin: 10px auto 0;
		opacity: 1 !important;
	}
	.c-nav__insta .--imgw{
		opacity: 0 !important;
		z-index: -1 !important;
	}
	
	.c-nav__insta .--imgb{
		opacity: 1;
		z-index: 1;
	}
  .c-nav__link:hover{
    opacity: 1;
    color: rgb(179, 152, 32) !important;
  }
	.c-nav__insta:hover .--imgb{
		opacity: 0;
		z-index: -1;
	}
	.c-nav__insta:hover .--imgblue{
		opacity: 1;
		z-index: 1;
	}

  .c-nav__item--last .c-btn {
      margin: 0px auto;
      width: 100%;
      max-width: 300px;
      padding: 20px;
  }
}
/**End Nav Menu*/

/**Menu Icon*/
@media screen and (max-width: 1200px) {
  .c-menuIcon {
      display: block;
      height: 30px;
      width: 35px;
      z-index: 1001;
      cursor: pointer;
      margin-left: 25px;
      position: relative;
  }

  .c-menuIcon span {
      width: 100%;
      height: 3px;
      background-color: #fff;
      position: absolute;
      left: 0px;
      transition: all 0.2s ease 0s;
  }
	.c-header.active .c-menuIcon span{
		background-color:#00056B;
	}
  .c-menuIcon span:nth-child(1) {
      top: 0px;
  }

  .c-menuIcon span:nth-child(2) {
      top: 50%;
      transform: translateY(-50%);
  }

  .c-menuIcon span:nth-child(3) {
      bottom: 0px;
  }

  .c-menuIcon.active span:nth-child(1) {
      top: 50%;
      transform: rotate(45deg) translateY(-50%);
  }

  .c-menuIcon.active span:nth-child(2) {
      left: 150%;
      opacity: 0;
  }

  .c-menuIcon.active span:nth-child(3) {
      bottom: 50%;
      transform: rotate(-45deg) translateY(50%);
  }
}
@media screen and (max-width: 767px) {
  .c-menuIcon {
      height: 30px;
  }
}
/**End Menu Icon*/

/**Header*/
.c-header {
  position: fixed;
  top: 0px;
  left: 0px;
  z-index: 1000;
  width: 100%;
  height: 120px;
  color: rgb(17, 17, 17);
  display: flex;
  align-items: center;
  transition: all 0.4s ease 0s;
}

.c-header.active {
  background-color: rgb(255, 255, 255);
}

.c-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: inherit;
  position: relative;
  padding: 0px 50px;
  width: 100%;
  height: 100%;
}

.c-header__logo {
  flex-shrink: 0;
  width: 428px;
}

.c-header__logo img {
  width: 100%;
  display: block;
}

.c-header__group {
  display: flex;
  align-items: center;
}
.c-logo{
  position: relative;
  display: block;
  height: 45px;
}
.c-logo .--logo{
  opacity: 1;
  z-index: 1;
  position: absolute;
  width: 100%;
  left: 0;
  top: 0;
  transition: all ease 0.4s;
}
.c-logo .--logo2 {
  opacity: 0;
  z-index: -1;
}
.c-header.active .c-logo .--logo1 {
  opacity: 0;
  z-index: -1;
}

.c-header.active .c-logo .--logo2 {
  opacity: 1;
  z-index: 1;
}
@media(max-width: 1600px){
	.c-header__inner{
		padding: 0 20px;
	}
	.c-header__logo{
		width: 300px;
		height: 30px;
	}
}
@media screen and (max-width: 1200px) {
	.c-header{
		height: 90px;
	}
  .c-header__group {
      display: none;
  }
  .c-header__group {
    position: absolute;
    top: 0;
    left: 0px;
    width: 100%;
    height: 100vh;
    background-color: rgb(255, 255, 255);
    justify-content: center;
    z-index: 1000;
    display: flex;
    transform: translateX(100%);
    transition: all ease 0.4s;
    padding-top: 0 !important;
  }
  .c-header__group::before{
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background-image: url('../images/common/bg-menu.png');
    background-size: cover;
    background-position: center;
  }

  .c-header__group.active {
    transform: translateX(0);
  }

}

@media screen and (max-width: 767px) {
  .c-header {
    height: 70px;
  }
  .c-header__logo{
    width: 200px;
    height: 20px;
  }
  .c-header__logo img{
    width: 150px;
  }
  .c-header__inner{
    padding: 0 20px;
  }
}
/**End Header*/
/**Footer*/
.c-footer .c-pallarax {
  height: 540px;
}

.c-footer .c-parallax--bg {
  background-size: 100%;
  background-position-y: 0%;
}

.c-footer .c-pallarax::before {
  content: "";
  background-image: url("../images/common/footer-bg-gradient.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  z-index: 1;
}

.c-footer-content {
  position: relative;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: YuMincho;
  font-weight: 600;
  text-align: center;
  color: rgb(255, 255, 255);
  z-index: 2;
}

.c-footer-content__left, .c-footer-content__right {
  width: 50%;
}

.c-footer-content::after {
  content: "";
  height: 131px;
  width: 1px;
  background: rgb(204, 204, 204);
  display: block;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.c-footer-content__title {
  font-size: 18px;
}

.c-footer-content__title::before, .c-footer-content__title::after {
  content: "";
  display: block;
}

.c-footer-content__title::before {
  width: 30px;
  height: 1px;
  background-color: rgb(255, 255, 255);
  margin: 0px auto 18px;
}

.c-footer-content__title::after {
  background-image: url("../images/common/footer-line.png");
  background-size: contain;
  background-position: center center;
  height: 1px;
  width: 100%;
  max-width: 181px;
  margin: 5px auto 20px;
}

.c-footer-content__txt {
  font-size: 15px;
  margin-top: 19px;
}

.c-footer__bottom {
  text-align: center;
}

.c-footer__logo {
  max-width: 100%;
  margin-bottom: 30px;
}

.c-footer__title {
  font-family: YuMincho;
  font-weight: 600;
  font-size: 24px;
  text-align: center;
}

.c-footer__title span {
  color: rgb(40, 126, 181);
  display: inline-block;
  border-bottom: 1px solid currentcolor;
}

.c-footer__menu {
  display: flex;
  justify-content: center;
  gap: 10px 14px;
  margin-top: 52px;
}

.c-footer__menu a {
  position: relative;
  font-size: 15px;
}
.c-footer__menu a::after{
  position: absolute;
  content: "";
  background: #111;
  width: 0;
  height: 1px;
  bottom: 0;
  left: 0;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.c-footer__menu a:hover{
  opacity: 1;
}
.c-footer__menu a:hover::after{
  width: 100%;
}

.c-footer__menu a::before {
  content: "|";
  display: inline-block;
  width: 1px;
  height: 100%;
  position: absolute;
  left: -10px;
  top: 0px;
}

.c-footer__menu li:first-child a::before {
  display: none;
}

.c-copyright {
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0px;
  margin: 40px 0px 50px;
}
@media(max-width: 1500px){
  .c-footer .c-parallax--bg{
    background-position: center;
    background-size: cover;
  }
}
@media(max-width: 1500px){
  .c-footer .c-pallarax{
    height: 400px;
  }
}
@media(max-width: 767px){
  .c-footer .c-pallarax{
    height: 430px;
  }
  .c-footer-content{
    flex-wrap: wrap;
    align-content: center;
    gap: 40px;
  }
  .c-footer-content__left,
  .c-footer-content__right{
    width: 100%;
  }
  .c-footer-content::after {
    height: 0;
    width: 0;
  }
  .c-footer-content__title{
    font-size: 15px;
  }
  .c-footer-content__txt{
    font-size: 12px;
  }
  .c-footer-content__title::before{
    margin-bottom: 10px;
  }
  .c-footer__logo{
    margin-bottom: 15px;
    width: 240px;
  }
  .c-footer__title{
    font-size: 18px;
  }
  .c-footer__menu{
    flex-wrap: wrap;
    margin-top: 35px;
  }
	.c-copyright{
		font-size: 13px;
		margin: 30px 0;
	}
}

/* SCROLLDOWN */
.c-scrolldown {
  position: fixed;
  background-color: #fff;
  border-radius: 100px;
  width: 100px;
  height: 100px;
  bottom: 50px;
  right: 50px;
  display: flex;
  align-content: center;
  justify-content: center;
  font-size: 10px;
  text-align: center;
  flex-wrap: wrap;
  box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  transition: all ease 0.7s;
  z-index: 4;
}
.hide .c-scrolldown{
  right: -100%;
}
.c-scrolldown::before{
  background-image: url('../images/common/ic-arr-downb.png');
  width: 23px;
  height: 13px;
  margin-bottom: 6px;
  transition: all ease 0.4s;
}
.c-scrolldown span{
  display: block;
  width: 100%;
  color: #111;
  font-size: 10px;
}
.c-scrolldown.toTop::before{
  transform: rotate(180deg);
}

@media(max-width: 1024px){
  .c-scrolldown{
    width: 70px;
    height: 70px;
    right: 20px;
    bottom: 20px;
  }
  .c-scrolldown::before{
    width: 18px;
    height: 8px;
  }
}
@media(max-width: 768px){
  .c-scrolldown{
    width: 40px;
    height: 40px;
    right: 10px;
    bottom: 10px;
    align-content: center;
  }
	.c-scrolldown span{
		font-size: 8px;
		line-height: 1.2;
	}
	.c-scrolldown::before{
		margin-bottom: 5px;
		width: 15px;
		height: 5px;
	}
}
/* END SCROLLDOWN */
/* News
   ========================================================================== */
.p-news {

}

/* Element: Header
   ========================================================================== */
.p-news__header {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    margin-bottom: 20px;
    max-width: 1160px;
}

.p-news__title {
  display: flex;
  align-items: baseline;
  gap: 14px;
  margin: 0;
}

.p-news__title-en {
    font-size: 34px;
}

.p-news__title-ja {
    font-size: 20px;
}

/* Element: More link
   ========================================================================== */
.p-news__more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    text-decoration: none;
    transition: opacity 0.2s;
}

.p-news__more::after {
    content: "";
    display: block;
    width: 38px;
    height: 8px;
    position: relative;
    background-image: url(../images/common/arr-news-b.png);
    background-size: contain;
    background-repeat: no-repeat;
}

.p-news__more:hover {
    opacity: 1;
    color: #00056B;
}
.p-news__more:hover::after {
  background-image: url(../images/common/arr-news-blue.png);
}

.p-news__list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.p-news__item {
    border-top: 1px dashed #ccc;
}

.p-news__item:last-child {
    border-bottom: 1px dashed #CCC;
}

.p-news__item:nth-child(odd) {
    background: #F7F7FA;
}

.p-news__link {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 22px 30px;
    text-decoration: none;
    transition: background 0.2s;
    max-width: 100%;
    width: 860px;
    margin: auto;
}

.p-news__link:hover {
  opacity: 1;
  color: #00056B;
}

.p-news__date {
    flex-shrink: 0;
    font-size: 16px;
}

.p-news__badge {
    flex-shrink: 0;
    display: inline-block;
    font-size: 13px;
    line-height: 1;
    padding: 8px 15px;
    border: 1px solid #EC0B1E;
    border-radius: 20px;
    color: #EC0B1E;
}
.c-news__new {
    width: 36px;
    height: 36px;
    color: #fff;
    font-size: 10px;
    background-color: #E82020;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    margin-right: 15px;
    line-height: 1;
    border-radius: 100px;
    padding-top: 2px;
    transform: translateY(-2px);
}
.p-news__text {
    font-size: 18px;
    line-height: 1.6;
}
@media(max-width: 768px){
	.p-news__title{
		gap: 10px;
	}
	.p-news__title-en{
		font-size: 22px;
	}
	.p-news__title-ja{
		font-size: 14px;
	}
	.p-news__more{
		font-size: 13px;
	}
	.p-news__more::after{
		width: 25px;
		height: 5px;
	}

	.p-news__link{
		flex-wrap: wrap;
		gap: 10px;
		padding: 15px 20px;
	}
	.p-news__text{
		display: block;
		width: 100%;
		font-size: 15px;
	}
	.p-news__badge{
		font-size: 11px;
		padding: 5px 10px;
	}
	.p-news__date{
		font-size: 13px;
	}
}