@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.8;
  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%;
}
.logo-title {
  font-size: 24px;
}
.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 #5ED6CA;
  color: #5ED6CA;
  line-height: 1.6;
}
@media(max-width: 1400px){
	.logo-title {
	    font-size: 18px;
	}
}

@media(max-width: 768px){
  .logo-title {
    font-size: 15px;
  }
}
/*Title*/
.c-title {
  font-family: YuMincho;
  text-align: center;
  font-weight: 600;
}

.c-title span {
  display: block;
  text-align: center;
}
.c-title::after{
  width: 16px;
  height: 1px;
  background-color: #111;
  margin: 25px 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 */
/**Btn*/
.c-btn-list {
  display: flex;
  justify-content: center;
  gap: 20px 30px;
}
.c-btns {
  display: flex;
  justify-content: center;
  gap: 30px;
  flex-wrap: wrap;
}
  .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;
    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;
  }

  .c-btn1 {
  background-color: #fff;
  border-radius: 60px;
  padding: 0 2%;
  width: 494px;
  height: 78px;
  font-size: 20px;
  justify-content: center;
  border: 2px solid currentColor;
  color: #FFA500;
}

.c-btn1::after{
  display: none;
}
.c-btn1::before {
  margin-right: 9px;
  background-image: url("../images/common/ic-arrR-O.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  width: 18px;
  height: 18px;
  margin-top: -2px;
}

.c-btn1:hover {
  background: #FFA500;
  color: #fff;
}

.c-btn1:hover::before {
  background-image: url("../images/common/ic-arrR-W.png");
}


.c-btn2 {

  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 700;
  font-size: 17px;
  letter-spacing: 0;
  width: 100%;
  max-width: 440px;
  padding: 0 20px 30px;
  position: relative;
  -webkit-transition: 0.4s;
  -o-transition: 0.4s;
  transition: 0.4s;
  border-bottom: 1px solid #CCCCCC;
}

.c-btn2::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  bottom: -1px;
  background-color: #5ED6CA;
  z-index: 2;
  -webkit-transform: scaleX(0.14);
  -ms-transform: scaleX(0.14);
  transform: scaleX(0.14);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
  -webkit-transition: 0.6s;
  -o-transition: 0.6s;
  transition: 0.6s;
}

.c-btn2::after {
  background-image: url(./../images/common/ic-arrR2-B.png);
  width: 10px;
  height: 16px;
  margin-left: 10px;
}
.c-btn2:hover{
  color: #5ED6CA;
}
.c-btn2:hover::before {
    -webkit-transform: scaleX(1);
    -ms-transform: scaleX(1);
    transform: scaleX(1);
}
.c-btn2:hover::after{
  background-image: url(./../images/common/ic-arrR2-G.png);
}
@media(max-width: 768px){
	.c-btns{
		gap: 15px;
	}
	.c-btn1{
		width: 220px;
		height: 45px;
		padding: 0 8%;
		font-size: 13px;
	}
	.c-btn1::before{
		width: 12px;
		height: 12px;
		margin-top: -3px;
	}
	.c-btn2{
		width: 280px;
		font-size: 13px;
		padding: 0 10px 20px; 
	}
	.c-btn2::after {
		width: 8px;
		height: 12px;
	}
}
  /*Custom btn*/
  /**End btn*/
  
/**Nav Menu*/
.c-nav__menu {
  display: flex;
  align-items: flex-end;
  /* font-family: YuMincho; */
  padding-top: 10px;
}

.c-nav__link {
  display: block;
  font-weight: 600;
  font-size: 18px;
  text-align: center;
  letter-spacing: 0px;
  transition: all 0.4s ease 0s;
  padding: 6px 30px;
  position: relative;
  border-left: 1px solid #111;
}
.c-nav__item:first-child .c-nav__link {
  border-left: 0;
}
.c-header.active .c-nav__link {
  /* color: rgb(17, 17, 17); */
}

.c-nav__link:hover {
  opacity: 1;
  color: #FFA500;
}

.c-nav__link::before {
  content: "";
  display: block;
  position: absolute;
  top: 0px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 1px;
  background-image: url("../images/common/border-menu.png");
  background-position: center center;
  background-size: contain;
  transition: all 0.4s ease 0s;
}

.c-nav__link:hover::before {
  width: 40px;
}

.c-nav__btn {
  width: 200px;
  height: 54px;
  background: linear-gradient(
        90deg,
        #FF9F00 0%,
        #FFB800 50%,
        #FFD800 100%
    );
  border-radius: 20px;
  color: #fff;
  margin-left: 30px;
  border: 1px solid;
  gap: 10px;
  font-size: 17px;
}
.c-nav__btn:before{
  height: 15px;
  width: 20px;
  background-image: url('../images/common/ic-mailW.png');
  margin-top: -1px;
}
.c-nav__btn:hover{
  color: #FFA500;
  background: #fff;
}
.c-nav__btn:hover:before{
  background-image: url('../images/common/ic-mailO.png');
}
.c-menuIcon {
  display: none;
}

@media screen and (max-width: 1350px) {
  .c-nav__btn{
	  margin-left: 10px;
  }
}

@media screen and (max-width: 1200px) {
  .c-nav__menu {
    display: block;
    width: 100%;
    padding-top: 0;
  }
    .c-nav__btn {
        margin-left: 0;
		margin-top: 20px;
    }
  .c-nav__item {
    border-left: 0px;
  }

  .c-nav__link {
    /* color: #fff !important; */
    border: 0;
  }
  .c-nav__link:hover{
    /* opacity: 1; */
    /* color: rgb(179, 152, 32) !important; */
  }

  .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: 40px;
      width: 40px;
      z-index: 1001;
      cursor: pointer;
      margin-left: 25px;
      position: relative;
  }

  .c-menuIcon span {
      width: 100%;
      height: 3px;
      background-color: #FFA500;
      position: absolute;
      left: 0px;
      transition: all 0.2s ease 0s;
  }

  .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(max-width: 1024px){
	.c-menuIcon{
		height: 30px;
	}
}
@media screen and (max-width: 767px) {
  .c-menuIcon {
      height: 25px;
      width: 30px;
      margin-top: 4px;
  }
}
/**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;
  background: #fff;
}

.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;
}

.c-header__logo {
  flex-shrink: 0;
  width: 176px;
  position: relative;
  z-index: 99999;
}
.c-header__logo h1{
	display: none;
}
.c-header__logo img {
  width: 100%;
  display: block;
}

.c-header__group {
  display: flex;
  align-items: center;
  margin-right: 30px;
}

@media screen and (max-width: 1200px) {
  .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);
  }
	.c-header__logo{
		width: 130px;
	}
}
@media(max-width: 1024px){
	.c-header{
		height: 100px;
	}
	.c-header__inner{
		padding: 0 20px;
	}
}
@media screen and (max-width: 767px) {
  .c-header {
    height: 70px;
  }
  .c-header__logo{
    width: 100px;
  }
  .c-header__logo img{
    /* width: 150px; */
  }
  .c-header__inner{
    padding: 0 20px;
  }
}
/**End Header*/