@charset "UTF-8";
/*==============================================================================================

    common css

    ※※※※※ブラウザ対応※※※※※

    safari:9以上
    chrome:63以上
    firefox:43以上
    opera:43以上
    edge:12以上
    IE:10以上


    ※※※※※ベンダープレフィックスを付けるプロパティ※※※※※

    -moz-transform
    -webkit-transform
    transform

    -moz-transition
    -webkit-transition
    transition
    -moz-backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;

    -moz-animation
    -webkit-animation
    animation

    display: -webkit-flex;
    display: flex;
    

==============================================================================================*/

/*==============================================================================================

	body要素

==============================================================================================*/

body {
  position: relative;
  overflow-x: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}

/*==========================================================
==========================================================*/

.contents_contain {
  width: 100%;
  max-width: 1280px;
  padding: 0 20px;
  margin: 0 auto;
}

.sec_title {
  font-size: 42px;
  color: #0f3250;
  letter-spacing: 3px;
  font-weight: bold;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.sec_title img {
  width: 180px;
}

.sec_title span {
  color: #eda247;
}

.spb {
  display: none;
}

@media screen and (max-width: 980px) {}

@media screen and (max-width: 768px) {

  .pcb {
    display: none;
  }

  .spb {
    display: block;
  }
}

/*==============================================================================================

	input関係

==============================================================================================*/
input[type="text"],
input[type="password"] {
  border: 1px solid #DDDDDD;
  border-radius: 8px;
  padding: 8px;
  width: 100%;
}

::placeholder {
  color: #cccccc;
}

/*==============================================================================================

	login要素

==============================================================================================*/
#login {
  width: 100%;
  height: 100vh;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.main_view #login {
  display: none;
}

.login_contain {
  width: 190px;
}

.login_logo {
  width: 180px;
  margin: 0 auto;
}

.login_text{
  font-size: 30px;
  font-weight: bold;
  color:#eda247;
  text-align: center;
  margin-bottom: 20px;
}

.login_error_text {
  font-size: 12px;
  color: #ff2f00;
  text-align: center;
  display: none;
}

.login_error .login_error_text {
  display: block;
}

#login_button {
  margin: 10px auto 0;
  background: #eda247;
  color: #FFFFFF;
  width: 100px;
  height: 30px;
  border-radius: 8px;
  -moz-transition: opacity .3s ease;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

#login_button:hover {
  opacity: .6;
}

/*==============================================================================================

	header要素

==============================================================================================*/
header {
  border-bottom: 2px solid #eda247;
}

.header_contain {
  height: 70px;
  background: #FFFFFF;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  font-size: 32px;
  color: #eda247;
  font-weight: bold;
}

.header_logo {
  width: 160px;
}


/*==============================================================================================

	main要素

==============================================================================================*/
#main {
  display: none;
}

.main_view #main {
  display: block
}

#main_sec {
  background: url(../img/main_bg.jpg) bottom right no-repeat;
  background-size: 100% auto;
}

.main_wrap {
  height: 100vh;
  min-height: 600px;
  padding: 100px 0;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

.main_wrap h1 {
  width: 60%;
}

.main_wrap p {
  font-size: 20px;
  padding: 20px 0;
  line-height: 1.8;
  margin-top: 20px;
}

@media screen and (max-width: 980px) {}

@media screen and (max-width: 768px) {}

/*==============================================================================================

	about要素

==============================================================================================*/
#about_sec {
  padding: 100px 0;
  background: url(../img/about_bg.png) center center;
  background-size: cover;
}

.about_wrap {
  padding-top: 50px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

.about_img {
  width: calc(50% - 20px);
}

.about_topic {
  width: calc(50% - 20px);
}

.about_topic dl+dl {
  margin-top: 30px;
}

.about_topic dt {
  font-size: 32px;
  font-weight: bold;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 14px;
}

.about_topic dt span {
  color: #eda247;
  font-size: 40px;
}

.about_topic dd {
  font-size: 20px;
}

@media screen and (max-width: 980px) {}

@media screen and (max-width: 768px) {}

/*==============================================================================================

	chara要素

==============================================================================================*/
.chara_title {
  padding: 80px 0;
  background: #eda247;
}

.chara_title h2 {
  color: #FFFFFF;
  position: relative;
}

/*
.chara_title h2:before {
  content: '';
  display: block;
  width: 400px;
  height: 400px;
  position: absolute;
  top: 0;
  left: 0;
  background: url(../img/chara_title.png);
  background-size: 100% 100%;
  -moz-transform: translate(-30%, -50%);
  -webkit-transform: translate(-30%, -50%);
  transform: translate(-30%, -50%);
}*/

#chara_sec {
  padding: 100px 0 100px;
}

.chara_contain {
  width: 100%;
  max-width: 980px;
  padding: 0 20px;
  margin: 0 auto;
}

.chara_wrap {
  padding-top: 30px;
}

.chara_topic dl+dl {
  margin-top: 100px;
}

.chara_topic dt {
  font-size: 40px;
  font-weight: bold;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  margin-bottom: 40px;
  position: relative;
  padding-left: 50px;
  z-index: 1;
}

.chara_topic dt span {
  color: #f8b71e;
  font-size: 100px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  /*background: #fef8e7;*/
  position: absolute;
  top: 50%;
  left: 0;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: -1;
}

.chara_topic dd {
  padding-left: 50px;
  position: relative;
  z-index: 1;
}

.chara_topic dd p {
  font-size: 20px;
  padding-bottom: 30px;
}

.chara_topic dl:nth-child(3) dd div {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
  -webkit-align-items: center;
  align-items: center;
}

.chara_topic dl:nth-child(3) dd div p{
  width: 40%;
  font-size: 26px;
  font-weight: bold;
  padding-bottom: 30px;
  display: block;
  line-height: 1.8;
}
.chara_topic dl:nth-child(3) dd div img {
  width: calc(60% - 10px);
}

.chara_topic dd p span {
  font-size: 26px;
  font-weight: bold;
  padding-bottom: 30px;
  display: block;
  line-height: 1.8;
}

@media screen and (max-width: 980px) {}

@media screen and (max-width: 768px) {}


/*==============================================================================================

	flow要素

==============================================================================================*/

#flow_sec {
  padding: 100px 0 100px;
  background: #fff6e0;
}

.flow_wrap {
  padding-top: 70px;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

.flow_inner {
  border: 2px solid #949494;
  border-radius: 20px;
  width: calc(100% / 3 - 60px);
  background: #FFFFFF;
  padding: 20px;
  text-align: center;
  font-size: 24px;
  font-weight: bold;
  position: relative;
}

.flow_step {
  position: absolute;
  top: 0;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  background: #eda247;
  color: #FFFFFF;
  padding: 10px;
  border-radius: 5px;
  width: 200px;
  font-size: 24px;
  letter-spacing: 2px;
}

.flow_arrow {
  width: 90px;
  position: relative;
}

.flow_arrow:before {
  content: '';
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 35px 0 35px 50px;
  border-color: transparent transparent transparent #949494;
  position: absolute;
  top: 50%;
  left: 50%;
  -moz-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media screen and (max-width: 980px) {}

@media screen and (max-width: 768px) {}



/*==============================================================================================

	application要素

==============================================================================================*/
#application_sec {
  padding: 80px 0;

}

.info_btn {
  margin: 0 auto;
  width: 500px;
  height: 80px;
  border-radius: 10px;
  background: #eda247;
  color: #FFFFFF;
  font-size: 28px;
  font-weight: bold;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
  -moz-transition: opacity .3s ease;
  -webkit-transition: opacity .3s ease;
  transition: opacity .3s ease;
  -moz-backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.info_btn:hover {
  opacity: .6;
}




/*==============================================================================================

	foot要素

==============================================================================================*/

footer {
  padding: 80px 0;
  text-align: center;
  background: #eeeeee;
}

footer .contents_contain {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-align-items: center;
  align-items: center;
}

.foot_logo {
  width: 240px;
}

.foot_jpx {
  width: 86px;
}

.cpr {
  padding-top: 40px;
  letter-spacing: 3px;
}

@media screen and (max-width: 980px) {
  .foot_btn .btn {
    height: 70px;
  }

  footer {
    padding: 30px 0;
  }

  .foot_logo {
    width: 240px;
  }

  .foot_jpx {
    width: 72px;
  }
}

@media screen and (max-width: 768px) {
  .foot_btn {
    padding: 30px 20px;
  }

  .foot_btn .btn {
    height: 60px;
  }

  footer {
    padding: 20px 0;
    text-align: center;
  }

  footer .contents_contain {
    display: block;
  }

  .foot_logo {
    width: 240px;
    margin: 0 auto 30px;
  }

  .foot_jpx {
    width: 58px;
    margin: 0 auto;
  }

  .cpr {
    font-size: 10px;
    letter-spacing: 2px;
  }
}

/*==============================================================================================

	youtube要素

==============================================================================================*/

#youtube{
  width: 65%;
  margin: 180px auto 50px;
  aspect-ratio: 16 / 9;
  border: none;
  display:
  block;
}

iframe{
  width: 100%;
  height:100%;
}



@media screen and (max-width: 768px) {
#youtube{
  width: 100%;
  margin:30px auto 50px;
  aspect-ratio: 5 / 4;
}
  
}