@charset "utf-8";
@import url('../../../../../cdn.jsdelivr.net/npm/destyle.css%401.0.15/destyle.css');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Lora:ital@0;1&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@400;500;700&amp;display=swap');
@import url('https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;700&amp;display=swap');
/*font-family: 'Noto Sans JP', sans-serif;*/
/*font-family: 'Lora', serif;*/
/*font-family: 'Roboto', sans-serif;*/
/*font-family: 'Oswald', sans-serif;*/
/*font-family: 'Barlow Condensed', sans-serif;*/

/* ------- LINK ---------------------------------------------- */
a:link {
  color: inherit;
  text-decoration: inherit;
}
a:visited {
  color: inherit;
  text-decoration: inherit;
}
a:hover {
  color: inherit;
  text-decoration: inherit;
}
a:active {
  color: inherit;
  text-decoration: inherit;
}



/* ------- BODY ---------------------------------------------- */
html{
  font-size: 62.5%;
}
body {
  background-color: #FFF;
  color: #000000;
  font-family: 'Noto Sans JP',"ヒラギノ角ゴ Pro W3", "メイリオ", "Meiryo", "ＭＳ Ｐゴシック", "Helvetica Neue", "Helvetica", "Arial", sans-serif;
  font-weight: 400;
  font-feature-settings: "palt";
  line-height: 2;
  overflow-x: hidden;
}

*{
  backface-visibility: hidden;/* animation時のにじみ防止 */
  -webkit-backface-visibility: hidden;/* animation時のにじみ防止 */
  -webkit-font-smoothing: antialiased/* animation時の文字にじみ防止 */
  -moz-osx-font-smoothing: grayscale;/* animation時の文字にじみ防止 */
  -webkit-font-smoothing: antialiased;
}

img {
  height: auto;
  max-width: 100%;
}


/* ------- RESPONSIVE ---------------------------------------------- */
@media print, screen and (min-width:781px) {
  .pc-ver {
    display: block;
  }
  .sp-ver {
    display: none;
  }
}
@media screen and (max-width: 780px) {
  .pc-ver {
    display: none;
  }
  .sp-ver {
    display: block;
  }
}


/* ------- BODY ---------------------------------------------- */
@media print, screen and (min-width:781px) {
	body{
    font-size: 1.6rem;
    padding-top: 80px;
	}
}
@media screen and (max-width: 780px) {
	body{
    font-size: 1.5rem;
    padding-top: 60px;
	}
}




/* ------- HEADER ---------------------------------------------- */
#header-area{
  background-color: #FFFFFF;
  display: flex;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 100;
}
#logo-main{
  display: flex;
  align-items: center;
}
#logo-main .logo img{
  vertical-align: middle;
}
#logo-main .desc{
  font-weight: 400;
  line-height: 1.66;
}
@media print, screen and (min-width:781px) {
  #header-area{
    padding: 0 30px;
    height: 80px;
  }
  #logo-main .logo{
    width: 118px;
  }
  #logo-main .desc{
    font-size: 1.2rem;
    margin-left: 20px;
  }
}
@media screen and (max-width: 780px) {
  #header-area{
    padding: 0 20px;
    height: 60px;
  }
  #logo-main .logo{
    width: 115px;
  }
  #logo-main .desc{
    display: none;
  }
}



/* ------- HUMBERGER ---------------------------------------------- */
#humberger {
	text-align: center;
	cursor: pointer;
  display: flex;
	position: absolute;
	top: 0;
	z-index: 101;
}
#humberger .trigger, #humberger .trigger > span, #humberger .trigger > span > span {
	transition: ease-out .2s;
	box-sizing: border-box;
}
#humberger .trigger{
	position: absolute;
	right: 0;
}
#humberger .trigger > span {
	position: absolute;
	right: 0;
	width: 100%;
	height: 2px;
	background-color: #000000;
}
#humberger .trigger > span:nth-of-type(1) {
	top: 0px;
}
#humberger .trigger > span:nth-of-type(2) {
	bottom: 0;
}
@media print, screen and (min-width: 781px) {
  #humberger {
	height: 80px;
	width: 136px;
	right: 30px;
}
  #humberger::before{
  content: "MENU";
  font-family: 'Roboto', sans-serif;
  font-weight: 400;
  font-size: 1.4rem;
  display: block;
  align-self: center;
  margin-right: 15px;
}
  #humberger .trigger{
	width: 80px;
	height: 15px;
	top: 32px;
}
  #humberger.active .trigger > span:nth-of-type(1) {
	-webkit-transform: translateY(7px) rotate(20deg);
	transform: translateY(7px) rotate(20deg);
}
#humberger.active .trigger > span:nth-of-type(2) {
	-webkit-transform: translateY(-7px) rotate(-20deg);
	transform: translateY(-7px) rotate(-20deg);
}
}
@media screen and (max-width: 780px) {
  #humberger {
    height: 60px;
    width: 38px;
    right: 20px;
  }
  #humberger .trigger {
    width: 38px;
    height: 10px;
    top: 26px;
  }
  #humberger.active .trigger > span:nth-of-type(1) {
    -webkit-transform: translateY(4px) rotate(20deg);
    transform: translateY(4px) rotate(20deg);
  }
  #humberger.active .trigger > span:nth-of-type(2) {
    -webkit-transform: translateY(-4px) rotate(-20deg);
    transform: translateY(-4px) rotate(-20deg);
  }
}


/* ------- NAVI GLOBAL ---------------------------------------------- */
#navi-global-area{
  background-color: #FFFFFF;
  display: none;
  flex-direction: column;
  justify-content: space-between;
  overflow-y: auto;
  width: 100%;
  position: fixed;
  left: 0;
  z-index: 101;
}
#navi-global-area a{
  transition: .3s;
}
#navi-global-area .navi-entry{
  font-weight: 900;
}
#navi-global-area .navi-entry > dl > dt{
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 700;
}
#navi-global-area .navi-entry > dl > dt a{
  border: 1px solid #000000;
  display: block;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 85px;
}
#navi-global-area .navi-entry dd a{
  color: #FFF;
  text-align: center;
  display: block;
}
#navi-global-area .next a{
  background-color: #333333;
}
#navi-global-area .current a{
  background-color: #0CB4ED;
}

#navi-global-area .navi-contents > li{
  font-weight: 900;
}
#navi-global-area .navi-contents > li > a,
#navi-global-area .navi-contents > li > span{
  border-bottom: 1px solid #707070;
  padding-bottom: 10px;
  display: block;
}
#navi-global-area .navi-contents > li > ul{
  margin-left: 10px;
  line-height: 1.6;
}
#navi-global-area .navi-contents > li > ul > li{
  font-weight: 700;
}
#navi-global-area .navi-contents > li > ul > li a{
  background-image: url("../img/ic_arrow.svg");
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 16px;
  display: inline-block;
  position: relative;
}
#navi-global-area .navi-contents > li:first-child > ul > li:first-child a{
  background-image: url("../img/ic_window.svg");
  background-position: left 8px;
}
#navi-global-area .navi-contents > li > ul > li a:after{
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #707070;
  transition: .3s;
  transform: scale(0, 1);
  transform-origin: left top;
}


#navi-global-area .news{
  background-color: #F2F2F2;
}
#navi-global-area .news h2{
  font-family: 'Barlow Condensed', sans-serif;
  font-weight: 500;
}
#navi-global-area .news > dl > div > dt{
  font-weight: 400;
}
@media print, screen and (min-width:781px) {
  #navi-global-area{
    padding: 40px 0 60px;
    top: 80px;
    height: calc(100vh - 80px);
  }
  #navi-global-area .news{
    border-radius: 5px;
    display: flex;
    align-items: center;
    padding: 20px 40px;
    margin-left: auto;
    margin-right: auto;
    width: 86%;
  }
  #navi-global-area .news h2{
    font-size: 1.7rem;
    width: 90px;
  }
  #navi-global-area .news > dl{
    width: 100%;
  }
  #navi-global-area .news > dl > div{
    padding: 15px 0;
    display: flex;
    font-size: 1.5rem;
  }
  #navi-global-area .news > dl > div:nth-child(n + 2){
    border-top: 1px dashed #D8D8D8;
  }
  #navi-global-area .news > dl > div > dt{
    width: 108px;
  }
  #navi-global-area .news > dl > div > dd{
    width: calc(100% - 108px);
  }
  #navi-global-area .navi-rec{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    width: 86%;
  }
  #navi-global-area .navi-entry > dl{
    display: flex;
    flex-wrap: wrap;
  }
  #navi-global-area .navi-entry > dl > dt{
    font-size: 2.4rem;
    display: flex;
  }
  #navi-global-area .navi-entry > dl > dt a{
    width: 180px;
  }
  #navi-global-area .navi-entry > dl > dd ul{
    display: flex;
  }
  #navi-global-area .navi-entry > dl > dd ul > li{
    margin-left: 20px;
  }
  #navi-global-area .navi-entry dd a{
    padding: 10px 30px;
  }
  
  #navi-global-area .navi-contents{
    display: flex;
    justify-content: space-between;
    margin-left: auto;
    margin-right: auto;
    width: 86%;
  }
  #navi-global-area .navi-contents > li{
    font-size: 2.0rem;
    margin-right: 40px;
    margin-top: 50px;
    width: 22.317%;
  }
  #navi-global-area .navi-contents > li:nth-child(4n){
    margin-right: 0;
  }
  #navi-global-area .navi-contents > li > ul > li{
    font-size: 1.6rem;
    margin-top: 20px;
  }
  #navi-global-area .navi-contents > li > ul > li > a > span,
  #navi-global-area .navi-contents > li > ul > li > span > span{
    font-size: 1.3rem;
  }
  
  #navi-global-area .news{
    margin-top: 50px;
  }
}
@media screen and (min-width:781px) and (max-width:1300px) {
  #navi-global-area .navi-contents{
    flex-wrap: wrap;
    justify-content: space-between;
  }
  #navi-global-area .navi-contents > li{
    margin-right: 0;
    width: 45%;
  }
}
@media screen and (min-width:781px) and (max-width:1120px) {
  #navi-global-area{
    padding: 40px 40px 40px;
  }
  #navi-global-area .navi-rec{
    flex-direction: column;
  }
  #navi-global-area .navi-rec > div{
    text-align: center;
  }
  #navi-global-area .navi-entry > dl > dt,
  #navi-global-area .navi-entry > dl > dd{
    flex-grow: 1;
  }
  #navi-global-area .navi-entry > dl > dd ul{
    flex-grow: 1;
  }
  #navi-global-area .navi-entry > dl > dt a{
    width: 100%;
  }
  #navi-global-area .navi-entry dd a{
    text-align: center;
  }
  #navi-global-area .navi-entry{
    margin-top: 50px;
  }
}
@media screen and (max-width: 780px) {
  #navi-global-area{
    padding: 0 20px 60px;
    top: 60px;
    height: calc(100vh - 60px);
    height: calc(100dvh - 60px);
  }
  #navi-global-area .navi-rec{
    text-align: center;
  }
  #navi-global-area .navi-rec > .catch{
    display: none;
  }
  #navi-global-area .navi-entry > dl{
    margin-top: 30px;
  }
  #navi-global-area .navi-entry > dl > dt a{
    padding: 10px 15px;
  }
  #navi-global-area .navi-entry > dl > dd ul{
  }
  #navi-global-area .navi-entry > dl > dd ul > li{
    margin-top: 5px;
  }
  #navi-global-area .navi-entry > dl > dd ul > li br{
    display: none;
  }
  #navi-global-area .navi-entry dd a{
    padding: 10px 15px;
  }
  
  #navi-global-area .navi-contents > li{
    font-size: 2.0rem;
    margin-top: 30px;
  }
  #navi-global-area .navi-contents > li a{
    display: block;
  }
  #navi-global-area .navi-contents > li > ul{
    margin-top: 15px;
  }
  #navi-global-area .navi-contents > li > ul > li{
    font-size: 1.6rem;
    margin-top: 10px;
  }
  #navi-global-area .navi-contents > li > ul > li > a > span,
  #navi-global-area .navi-contents > li > ul > li > span > span{
    font-size: 1.3rem;
  }
  
  #navi-global-area .news{
    margin-top: 50px;
    padding: 20px 20px;
  }
  #navi-global-area .news h2{
    font-size: 1.7rem;
    text-align: center;
  }
  #navi-global-area .news > dl > div{
    padding: 15px 0;
  }
  #navi-global-area .news > dl > div:nth-child(n + 2){
    border-top: 1px dashed #D8D8D8;
  }
}
@media (hover: hover) and (pointer: fine){
  #navi-global-area .navi-entry > dl > dt a:hover{
    border-color: #707070;
  }
  #navi-global-area .navi-entry a:hover{
    background-color: #707070;
    color: #FFF;
  }
  #navi-global-area .navi-contents > li > ul > li a:hover:after {
    transform: scale(1, 1);
  }
}




/* ------- CONTENTS ---------------------------------------------- */
@media print, screen and (min-width:781px) {
}
@media screen and (max-width: 780px) {
}



/* ------- FOOTER ---------------------------------------------- */
#footer-area{
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: #FFF;
}
.btn-ft-entry{
  border-bottom: 1px solid rgba(255,255,255,.30);
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  letter-spacing: .14em;
  display: block;
  text-align: center;
  line-height: 1;
  transition: .3s;
}
.btn-ft-entry span{
  background-image: url("../img/ic_arrow_entry.svg");
  background-position: right center;
  background-repeat: no-repeat;
  display: inline-block;
}
.footer-inner{
  background-color: #FFF;
  color: #000000;
}
.footer-inner dd ul > li{
  font-weight: 500;
}
.footer-inner dd ul > li a{
  background-image: url("../img/ic_arrow_ft.svg");
  background-position: left center;
  background-repeat: no-repeat;
  padding-left: 25px;
  display: block;
  position: relative;
}
.footer-inner dd ul > li a:after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 1px;
  background: #000;
  transition: .3s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.copyright{
  font-family: 'Lora', serif;
  font-weight: 400;
  display: block;
  line-height: 1;
}
@media print, screen and (min-width:781px) {
  #footer-area{
    background-image: url("../img/bg_footer.jpg");
    margin-top: 200px;
    position: relative;
    z-index: 20;
  }
  .btn-ft-entry{
    font-size: 5.0rem;
    padding: 100px 20px;
  }
  .btn-ft-entry span{
    padding-right: 55px;
  }
  .footer-inner{
    padding: 60px 60px;
  }
  .footer-inner dl{
    display: flex;
    justify-content: space-between;
  }
  .footer-inner dl dt{
    width: 244px;
  }
  .footer-inner dd ul{
    display: flex;
    justify-content: flex-end;
  }
  .footer-inner dd ul > li:nth-child(n+2){
    margin-left: 40px;
  }
  .copyright{
    font-size: 1.3rem;
    margin-top: 30px;
  }
}
@media screen and (min-width:781px) and (max-width:1101px) {
  .footer-inner dd ul{
    flex-wrap: wrap;
    margin-left: 50px;
  }
}
@media screen and (max-width: 780px) {
  #footer-area{
    background-image: url("../img/bg_footer_sp.jpg");
    margin-top: 200px;
  }
  .btn-ft-entry{
    font-size: 4.0rem;
    padding: 100px 20px;
  }
  .btn-ft-entry span{
    padding-right: 55px;
  }
  .footer-inner{
    padding: 40px 20px 60px;
  }
  .footer-inner dl{
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .footer-inner dl dt{
    text-align: center;
    margin-top: 60px;
    order: 1;
    width: 244px;
  }
  .footer-inner dd ul{
     order: 0;
  }
  .footer-inner dd ul > li{
    margin-top: 15px;
  }
  .copyright{
    font-size: 1.3rem;
    margin-top: 30px;
    text-align: center;
  }
}
@media (hover: hover) and (pointer: fine){
  .btn-ft-entry:hover{
    background-color: rgba(160,43,46,.90);
  }
  .footer-inner dd ul > li a:hover:after {
    transform: scale(1, 1);
  }
}








/* ------- COMMON PARTS ---------------------------------------------- */
/* ENGLISH FONT */
.en{
  font-family: 'Barlow Condensed', sans-serif !important;
  font-weight: 500 !important;
}


/* MAIN HEAD */
.heading > h1{
  font-weight: 700;
  line-height: 1.28;
}
.heading > h1 > b{
  font-weight: 700;
  color: #0CB4ED;
}
.heading > .sub{
  color: #0CB4ED;
}

/* SECTION HEAD */
.section-heading{
  background-color: #0CB4ED;
  color: #FFFFFF;
  font-weight: 900;
  line-height: 1.66;
  text-align: center;
}


/* MAIN HEAD TEXT */
.heading-text{
  font-weight: 700;
}



.note-list > li,
.dot-list > li{
  font-size: 1.2rem;
  text-indent: -1em;
  padding-left: 1em;
}
.note-list > li:before{
  content: "※";
}
.dot-list > li:before{
  content: "●";
}


.btn{
  background-image: url("img/img_btn.html");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: 75px auto;
  color: #FFF !important;
  line-height: 1.25;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  margin-top: 75px;
  height: 75px;
  width: 75px;
}


.sec{
  border-top: 1px solid rgba(112,112,112,.10);
}

.inline{
  display: inline-block;
}
@media print, screen and (min-width:781px) {
  .align-c-pc{
    text-align: center !important;
  }
  .align-l-pc{
    text-align: left !important;
  }
  .align-r-pc{
    text-align: right !important;
  }
  
  /* MAIN HEAD */
  .heading{
    margin-left: auto;
    margin-right: auto;
    margin-top: 100px;
  }
  .heading > .sub{
    font-size: 1.6rem;
  }
  .heading > h1{
    font-size: 5.0rem;
    margin-top: 30px;
  }
  .heading > h1 > span{
    font-size: 2.0rem;
  }
  
  /* SECTION HEAD */
  .section-heading{
    font-size: 3.2rem;
    padding: 20px;
  }
  
  
  /* MAIN HEAD TEXT */
  .heading-text{
    font-size: 2.0rem;
    margin-top: 75px;
  }
  
  
  .inner{
    margin-left: auto;
    margin-right: auto;
    max-width: 1360px;
    width: 86%;
  }
  
  .inner-middle{
    margin-left: auto;
    margin-right: auto;
    max-width: 1180px;
    width: 86%;
  }
  
  .inner-short{
    margin-left: auto;
    margin-right: auto;
    max-width: 1080px;
    width: 86%;
  }
  
  
  .btn{
    transition: .3s;
  }
  .btn:hover{
    opacity: .7;
  }
  
  
  .sec{
    padding-bottom: 90px;
    padding-top: 90px;
  }
}
@media screen and (max-width: 780px) {
  .align-c-sp{
    text-align: center !important;
  }
  .align-l-sp{
    text-align: left !important;
  }
  .align-r-sp{
    text-align: right !important;
  }
  
  
  /* MAIN HEAD */
  .heading{
    text-align: center;
    margin-top: 30px;
    padding: 0 20px;
  }
  .heading > .sub{
    font-size: 1.2rem;
  }
  .heading > h1{
    font-size: 3.0rem;
    margin-top: 13px;
  }
  .heading > h1 > span{
    display: block;
    font-size: 1.5rem;
    margin-top: 10px;
  }
  
  
  /* SECTION HEAD */
  .section-heading{
    font-size: 2.4rem;
    padding: 20px;
  }
  
  
  /* MAIN HEAD TEXT */
  .heading-text{
    font-size: 2.0rem;
    margin-top: 30px;
    text-align: left;
  }
  
  
  .sec{
    padding: 90px 15px;
  }
}



/* ------- ANIMATION PARTS ---------------------------------------------- */
.fade-in {
  opacity: 0;
  transition-duration: 1s;
  transition-property: opacity, transform;
}
.fade-in-up {
  transform: translate(0, 30px);
}

.fade-in-down {
  transform: translate(0, -30px);
}

.fade-in-left {
  transform: translate(-30px, 0);
}

.fade-in-right {
  transform: translate(30px, 0);
}
.scroll-in {
  opacity: 1;
  transform: translate(0, 0);
}