


/* **********************************
 *  ヘッダー
 * ********************************* */
header{
  width: 100%;
  position: absolute;
  left: 0;
  top: 0;
  z-index: 6;
}
header .hdr1{
  width: 100%;
  padding: 12px 28px 42px;
  padding-right: 127px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #fff;
  position: relative;
  z-index: 10;
}
header .hdr1:after{
  width: 100%;
  height: 100%;
  background: #f39800;
  clip-path: polygon(0 0, 100% 0, 100% 60%, 0% 100%);
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
  content: "";
  pointer-events: none;
}
header .hdr1.on{
  padding-bottom: 13px;
  animation: DownAnime 0.5s forwards;
}
header .hdr1.on:after{
  background: #fff;
  clip-path: none;
}
header .hdr1.on.hide{
  /*display: none;*/
  animation: UpAnime 0.5s forwards;
}
@keyframes UpAnime{
  from {
    opacity: 1;
    transform: translateY(0);
  }
  to {
    opacity: 0;
    transform: translateY(-100px);
  }
}
@keyframes DownAnime{
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
a.hdr_entry {
  min-width: 180px;
  font-size: 24px;
  padding: 5px 0;
  width: fit-content;
  background: #e60012;
  border-radius: 25px;
  text-align: center;
  letter-spacing: 0.075em;
  box-shadow: 0px 10px 20px 0px rgba(0, 0, 0, 0.15);
  display: block;
}
a.hdr_entry:before{
  content: "";
  width: 31px;
  height: 23px;
  margin-right: 20px;
  margin-top: -4px;
  background: url(/img/header/hdr_entry_i.png) no-repeat center / contain;
  display: inline-block;
  vertical-align: middle;
  transition: 0.2s;
}
a.hdr_entry:hover{
  text-decoration: none;
}
a.hdr_entry:hover:before{
  scale: 1.1;
}


.hdr_menu{
  display: none;
}
.hdr_logo .logo{
  font-size: 30px;
  padding-top: 13px;
  line-height: 1;
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.075em;
}
.on .hdr_logo .logo{
  color: #f39800;
}
.hdr_logo .logo a{
  transition: 0.2s;
}
.hdr_logo .logo a:hover{
  opacity: 0.7;
  text-decoration: none;
}

@media(max-width:1670px){
  header .hdr1 {
    padding-right: 50px;
  }
  .hdr_logo img{
    width: 230px;
  }
  a.hdr_entry {
    min-width: 160px;
  }

  .hdr_logo .logo{
    font-size: 1.7vw;
  }
}
@media(max-width:1300px){
  header .hdr1 {
    padding-right: 30px;
  }
}
@media(max-width:1199px){
  header .hdr1{
    padding-top: 13px;
    padding-right: 100px;
  }
  .hdr_menu{
    width: 70px;
    height: 70px;
    display: block;
    position: fixed;
    right: 15px;
    top: 5px;
    z-index: 11;
    background: #fff;
    border-radius: 50%;
    box-shadow: 0px 10px 34px 0px rgba(0, 0, 0, 0.2);
  }
  .hdr_menu span{
    left: 14px;
    height: 2px;
    width: 38px;
    background-color: #f4a500;
    transition: all .4s;
    position: absolute;
    left: 50%;
    top: 26px;
    transform: translateX(-50%);
  }
  .hdr_menu span:nth-child(2){
    top: 34px;
  }
  .hdr_menu span:nth-child(3){
    top: 42px;
  }
  .hdr_menu.on{
    background: #f4a500;
  }
  .hdr_menu.on span{
    background-color: #fff;
  }
  .hdr_menu.hide{
    display: none;
  }
  .hdr_menu.active span:nth-of-type(1) {
    top: 34px;
    left: 16px;
    transform: rotate(-45deg);
    width: 40px;
  }
  .hdr_menu.active span:nth-of-type(2) {
    opacity: 0;
  }
  .hdr_menu.active span:nth-of-type(3) {
    top: 40px;
    left: 16px;
    transform: translateY(-6px) rotate(45deg);
    width: 40px;
  }
  .hdr_links{
    display: flex;
    align-items: center;
  }
  .hdr_logo .logo{
    font-size: 24px;
  }
}
@media(max-width:770px){
  header .hdr1 {
    padding: 20px 15px 45px;
  }
  header a.hdr_entry{
    display: none;
  }
  .hdr_logo img {
    width: 180px;
  }
  .hdr_menu{
    margin: 0;
  }
  /*.hdr_menu img {
    width: 70px;
    margin-bottom: -10px;
  }*/

  .hdr_logo .logo{
    font-size: 18px;
  }
  header .hdr1.on{
    padding-bottom: 22px;
  }
}
@media(max-width:600px){
}


/* **********************************
 *  グローバルナビ
 * ********************************* */
.gnav {
  margin-right: 58px;
}
.gnav.sp{
  display: none;
}
.gnav > ul{
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-around;
  align-items: center;
  text-align: center;
  /*font-size: 18px;*/
  transition: 0.2s;
}
.gnav > ul > li{
  /*width: 100%;*/
  padding: 0 13px;
  position: relative;
}
.gnav > ul > li.menu-item-has-children:after{
  content: "\f0d7";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  color: #FFF;
  display: block;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.gnav li a{
  font-size: 17px;
  color: #fff;
  text-decoration: none;
  display: block;
  letter-spacing: 0.075em;
  font-weight: 500;
  transition: 0.2s;
}
.gnav ul:hover li{
  opacity: 0.7;
}
.gnav ul:hover li:hover{
  opacity: 1;
}

.gnav .children,
.gnav .sub-menu{
  display: none;
  background: #aaa;
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  z-index: 1;
}
.gnav li:hover > .children,
.gnav li:hover > .sub-menu{
  display: block;
}
.on .gnav li a{
  color: #f39800;
}

@media(max-width:1670px){
  .gnav {
    margin-right: 20px;
  }
  .gnav > ul > li {
    padding: 0 5px;
  }
  .gnav li a {
    font-size: 14px;
  }
}
@media(max-width:1300px){
  .gnav {
    margin-right: 10px;
  }
}
@media(max-width:1199px){
  .gnav.pc{
    display: none!important;
  }

  .gnav{
    /*background: #f39800;*/
    color: #fff;
    padding: 0;
    z-index: 10;
    overflow-y: scroll;

    /*transition: all 0.2s;*/
    /*transform: translateX(100%);*/
    padding: 5px 40px 15px;
    display: none;
  }
  .gnav.active{
    width: 100%;
    display: block;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    /*transform: translateX(0%);*/
  }
  .gnav.sp.active{
    padding-top: 50px;
    display: block!important;
  }
  .gnav > ul{
    display: block;
  }
  .gnav > ul > li{
    width: 100%;
    padding: 10px 0;
    border: 0;
    border-bottom: 1px solid #FFF;
  }
  .gnav > ul > li + li,
  .gnav > ul > li:first-child,
  .gnav > ul > li:last-child{
    border-left: 0;
    border-right: 0;
  }
  .gnav > ul > li a{
    font-size: 20px;
    padding: 10px 0;
  }
  .gnav .children, .gnav .sub-menu{
    display: block;
    position: static;
    background: #EEE;
  }

  /*.gnav .hdr_menu{
    margin: 0 auto;
    margin-right: 30px;
    display: block;
    width: fit-content;
  }
  .gnav .hdr_menu img{
    width: 70px;
  }*/

  .circle-bg {
    position: fixed;
    z-index: 6;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: #f39800;
    transform: scale(0);
    right: -50px;
    top: -50px;
    transition: all .6s;
  }
  .circle-bg.circleactive {
    transform: scale(50);
  }
  .gnav.sp.active ul li {
    animation-name: gnaviAnime;
    animation-duration: 1s;
    animation-delay: .2s;
    animation-fill-mode: forwards;
    opacity: 0;
  }
  @keyframes gnaviAnime{
    0% {
      opacity: 0;
    }
    100% {
      opacity: 1;
    }
  }
}
@media(max-width:770px){
  .gnav{
    padding-top: 0;
  }
  /*.gnav .hdr_menu{
    margin-top: -8px;
    margin-right: -10px;
  }
  .gnav .hdr_menu img {
    width: 90px;
  }*/

}
@media(max-width:600px){
  .gnav > ul > li a {
    font-size: 16px;
  }

}



/* **********************************
 *  フッター
 * ********************************* */
footer{
  background: #e8ca26;
  text-align: center;
}
footer .container{
  position: relative;
}
footer .container:before{
  content: "";
  width: 111px;
  height: 288px;
  background: url(/img/footer/ftr_i2.png) no-repeat center / contain;
  position: absolute;
  left: 192px;
  top: 29px;
}
footer .container:after{
  content: "";
  width: 131px;
  height: 303px;
  background: url(/img/footer/ftr_i3.png) no-repeat center / contain;
  position: absolute;
  right: 156px;
  bottom: 60px;
}
.ftr_ttl_en {
  font-size: 180px;
  color: #eb6100;
  font-weight: 600;
  line-height: 1;
}
.ftr_ttl_ja {
  font-size: 30px;
  margin-top: 15px;
  color: #eb6100;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: -0.01em;
}
.ftr_ttl {
  margin-bottom: 35px;
  position: relative;
  top: -75px;
}
footer .links{
  padding-bottom: 147px;
  display: flex;
  justify-content: center;
}
footer .links .link_1{
  width: 350px;
  padding: 19px;
  background: #e60012;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: 40px;
  display: block;
  color: #fff;
  transition: 0.2s;
}
footer .links .link_1:before {
  content: "";
  width: 40px;
  height: 29px;
  margin-right: 20px;
  margin-top: -3px;
  background: url(/img/header/hdr_entry_i.png) no-repeat center / contain;
  display: inline-block;
  vertical-align: middle;
  transition: 0.2s;
}
footer .links .link_2{
  width: 350px;
  padding: 12px;
  margin-left: 100px;
  background: #fff;
  font-size: 30px;
  font-weight: 700;
  letter-spacing: -0.01em;
  border-radius: 40px;
  display: block;
  color: #e63c00;
  transition: 0.2s;
}
footer .links .link_2:before {
  content: "";
  width: 29px;
  height: 45px;
  margin-right: 20px;
  background: url(/img/footer/link_2_i.png) no-repeat center / contain;
  display: inline-block;
  vertical-align: text-bottom;
  margin-top: 3px;
  transition: 0.2s;
}
footer .links .link_1:hover,
footer .links .link_2:hover{
  text-decoration: none;
}
footer .links .link_1:hover:before,
footer .links .link_2:hover:before{
  scale: 1.1;
}


footer .copy{
  font-size: 15px;
  padding: 28px 0;
  background: #f39800;
  text-align: center;
  color: #fff;
  letter-spacing: -0.01em;
}
footer .copy a{
  /*color: #111;*/
}


.footer_fix{
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #aec4e5;
  z-index: 10;
}
.footer_fix ul{
  /*display: table;*/
  width: 100%;
  font-size: 14px;

  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 3px;
}
.footer_fix ul li{
  /*display: table-cell;*/
  text-align: center;
  /*vertical-align: middle;*/
}
.footer_fix ul li.btn1{
  width: 36%;
}
.footer_fix ul li.btn2{
  width: 24%;
}
.footer_fix ul li a{
  display: block;
  padding: 10px;
  background: #4072b3;
  color: #FFF;
  text-decoration: none;
}

/* ページTOPに戻る */
.pagetop{
  display: none;
  position: fixed;
  right: 35px;
  bottom: 60px;
  z-index: 5;
}
.pagetop a{
  display: block;
  font-size: 0;
  text-align: center;
}
.pagetop a i{
  font-size: 40px;
}

.hdr_links.sp{
  display: none;
}

@media(max-width:1199px){
  footer .links .link_2 {
    margin-left: 40px;
  }
  footer .container:before {
    width: 81px;
    height: 208px;
  }
  footer .container:after {
    width: 101px;
    height: 233px;
    right: 30px;
  }

  .hdr_links.sp{
    position: fixed;
    right: 120px;
    bottom: 70px;
    z-index: 5;
    color: #fff;
    display: none;
  }

}
@media(max-width:770px){
  footer .container:before {
    top: -60px;
    left: 30px;
  }
  footer .container:after {
    right: 20px;
    bottom: inherit;
    top: -100px;
  }
  .ftr_ttl_en {
    font-size: 150px;
  }
  .ftr_ttl_ja {
    font-size: 26px;
  }
  footer .links {
    padding-bottom: 120px;
  }
  .pagetop{
    width: 80px;
  }
}
@media(max-width:600px){
  footer .container:before {
    width: 51px;
    height: 138px;
    top: -50px;
    left: 15px;
  }
  footer .container:after {
    width: 61px;
    height: 143px;
    right: 0;
    top: -60px;
  }
  .ftr_ttl {
    margin-bottom: 0;
    top: -45px;
  }
  .ftr_ttl_en {
    font-size: 100px;
  }
  .ftr_ttl_ja {
    font-size: 18px;
  }
  footer .links {
    padding-bottom: 120px;
  }
  footer .container{
    padding: 0 15px;
  }
  footer .links {
    padding-bottom: 70px;
  }
  footer .links .link_1 {
    padding: 12px 0;
    font-size: 14px;
  }
  footer .links .link_1:before {
    width: 20px;
    height: 15px;
    margin-right: 10px;
  }
  footer .links .link_2 {
    padding: 10px 0;
    margin-left: 20px;
    font-size: 16px;
  }
  footer .links .link_2:before {
    width: 14px;
    height: 22px;
    margin-right: 10px;
  }
  footer .copy {
    font-size: 10px;
    padding: 15px 0;
  }

  .pagetop {
    width: 70px;
    right: 20px;
    bottom: 30px;
  }
  .hdr_links.sp{
    right: 110px;
    bottom: 38px;
  }
}