@charset "UTF-8";
/* ----------------------------------------
   index.css
---------------------------------------- */
/* header
---------------------------------------- */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 80px;
  background: rgba(0, 0, 0, 0.75);
  color: #fff;
  z-index: 10;
}

header > div {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

header > div .btn {
  position: relative;
  width: 80px;
  height: 100%;
  margin-left: 7%;
  cursor: pointer;
}

header > div .btn span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 47.5%;
  height: 4px;
  margin: -2px 0 0 -25%;
  background: #fff;
  transition: all 300ms ease;
}

header > div .btn span:nth-child(1) {
  margin-top: -13px;
}

header > div .btn span:nth-child(2) {
  margin-top: -2px;
}

header > div .btn span:nth-child(3) {
  margin-top: 9px;
}

header.open > div .btn span:nth-child(1) {
  margin-top: -2px;
  transform: rotate(135deg);
}

header.open > div .btn span:nth-child(2) {
  margin-top: -2px;
  transform: scale(0) rotate(90deg);
}

header.open > div .btn span:nth-child(3) {
  margin-top: -2px;
  transform: rotate(45deg);
}

header > div .btn2 {
  display: table;
  width: 215px;
  height: 100%;
  margin-right: 7%;
}

header > div .btn2 a {
  display: table-cell;
  background: #dd5e00;
  vertical-align: middle;
  color: #fff;
  font-size: 2rem;
}

header nav {
  display: none;
  position: absolute;
  top: 80px;
  left: 0;
  overflow: hidden;
  width: 100%;
}

header nav ul {
  display: table;
  width: 100%;
  height: 0;
  background: rgba(0, 0, 0, 0.75);
  transition: height 300ms ease;
}

header nav ul li {
  display: table-row;
}

header nav ul li a {
  display: table-cell;
  height: 80px;
  border-top: 1px solid #999;
  text-align: center;
  vertical-align: middle;
  color: #fff;
  font-size: 2rem;
}

@media screen and (max-width: 480px) {
  header {
    height: 60px;
  }
  header nav {
    top: 60px;
  }
  header nav ul li a {
    height: 60px;
    font-size: 1.8rem;
  }

  header > div .btn {
    width: 60px;
    margin-left: 0;
  }
  header > div .btn2 {
    width: 160px;
    margin-right: 0;
  }
  header > div .btn2 a {
    font-size: 1.8rem;
  }
}
/* #hero
---------------------------------------- */
#hero {
  position: relative;
  width: 100%;
  height: 100vh;
  background: #000;
  color: #fff;
}
#hero .scroll {
  position: absolute;
  left: calc(50% - 35px);
  bottom: 10px;
  width: 70px;
  height: 117px;
  background: url("../img/img_hero_scroll.png") no-repeat left top;
  background-size: cover;
}

#slider1,
#slider1 .pic {
  width: 100%;
  height: 100vh;
}

#slider1 {
  position: relative;
  opacity: 0.25;
  z-index: 1;
}
#slider1 div {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
}

#slider1 div.p1 {
  background-image: url("../img/slide01.jpg");
}

#slider1 div.p2 {
  /*background-color: #999;*/
  background-image: url("../img/slide01.jpg");    
}

#slider1 div.p3 {
  /*background-color: #ccc;*/
  background-image: url("../img/slide01.jpg");    
}

#hero .title {
  display: table;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  font-family: "source-han-serif-japanese", "Times", serif;
  font-weight: 400;
  font-style: normal;
  z-index: 5;
}
#hero .title > div {
  display: table-cell;
  padding: 0 30px;
  text-align: center;
  vertical-align: middle;
}
#hero .title > div h1 {
  margin-bottom: 45px;
  line-height: 1.3;
  font-size: 2rem;
}
#hero .title > div h1 span:first-child {
  margin-right: 1em;
  font-size: 1.6rem;
}
#hero .title > div .box {
  display: inline-block;
  margin: 0 auto;
  padding: 20px 70px;
  border: 1px solid #fff;
  line-height: 2.0;
  font-size: 2.6rem;
}

/* #purpose
---------------------------------------- */
#purpose {
  padding: 120px 0px 115px;
  background: url("../img/bg_purpose.jpg") no-repeat 70% 30%;
  background-size: cover;
  color: #fff;
}
#purpose h2 {
  display: inline-block;
  margin: 0 auto 75px;
  padding: 0 70px 20px;
  border-bottom: 2px solid #fff;
  line-height: 1.1;
  font-family: "source-han-serif-japanese", "Times", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
}
#purpose article {
  max-width: 1100px;
  margin: 0 auto;
  text-align: left;
  font-size: 1.7rem;
}
#purpose article .text {
  line-height: 2.0;
  font-feature-settings: "palt";
}
#purpose article .signature {
  margin-top: 80px;
  text-align: right;
}
#purpose article .signature span {
  display: inline-block;
  text-align: left;
}

/* #greeting
---------------------------------------- */
#greeting article {
  position: relative;
  max-width: 1100px;
  margin: 0 auto;
}
#greeting article .president {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: end;
  -ms-flex-align: end;
  align-items: flex-end;
  position: absolute;
  left: 0;
  top: -40px;
  width: 42%;
  max-width: 460px;
  height: auto;
  padding: 15px;
  background: #d6c9c9;
  z-index: 1;
}
#greeting article .president .photo {
  width: 45%;
  max-width: 190px;
}
#greeting article .president .name {
  width: 50%;
  line-height: 1.3;
  text-align: left;
  font-size: 1.4rem;
}
#greeting article .president .name span {
  font-size: 1.2rem;
}
#greeting article .main {
  position: relative;
  left: 30.2%;
  width: 71%;
  max-width: 780px;
  padding: 55px 0 115px;
  text-align: left;
  z-index: 5;
}
#greeting article .main h2 {
  margin-bottom: 40px;
  line-height: 1.1;
  font-family: "source-han-serif-japanese", "Times", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
}
#greeting article .main p {
  margin-left: 20%;
  font-feature-settings: "palt";
}
#greeting article .main p + p {
  margin-top: 1em;
}
#greeting article::after {
  content: url("../img/bg_greeting.png");
  position: absolute;
  left: -400px;
  top: -300px;
  z-index: -10;
}

/* #training
---------------------------------------- */
#training {
  padding: 65px 90px 50px;
  background: #e8e8e8;
}
#training h2 {
  display: inline-block;
  margin: 0 auto 75px;
  padding: 0 70px 20px;
  border-bottom: 2px solid #000;
  line-height: 1.1;
  font-family: "source-han-serif-japanese", "Times", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
}
#training article {
  max-width: 1100px;
  margin: 0 auto;
}
#training article ul {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
#training article ul li {
  width: 32%;
  max-width: 350px;
  text-align: center;
}
#training article ul li .txt {
  display: table;
  width: 100%;
  height: 90px;
}
#training article ul li .txt > span {
  display: table-cell;
  padding: 0 20px;
  background: #000;
  line-height: 1.3;
  vertical-align: middle;
  color: #fff;
  font-family: "source-han-serif-japanese", "Times", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 2.2rem;
}
#training article .btns {
  padding-top: 2px;
}
#training article .btns ul li {
  width: calc(50% - 1px);
}
#training article .btns ul li a {
  display: block;
  height: 100%;
  padding: 15px;
  background: #000;
  line-height: 1.1;
  color: #fff;
}
#training article .btns ul li a:hover {
  opacity: 0.8;
  text-decoration: none;
}

/* #news
---------------------------------------- */
#news {
  padding: 35px 90px 110px;
  background: #e8e8e8;
}
#news h2 {
  position: relative;
  max-width: 1100px;
  margin: 0 auto 20px;
  padding-left: 45px;
  line-height: 1.1;
  text-align: left;
  font-family: "source-han-serif-japanese", "Times", serif;
  font-weight: 400;
  font-style: normal;
  font-size: 3rem;
}
#news h2::after {
  content: 'Schedule';
  position: absolute;
  left: 0;
  top: -33px;
  letter-spacing: 0.04em;
  line-height: 1.0;
  opacity: 0.12;
  font-family: Times, "Times New Roman", Georgia, "serif";
  font-size: 6rem;
}
#news article {
  /* position: relative; */
  max-width: 1100px;
  min-height: 325px;
  margin: 0 auto;
  text-align: left;
  display: flex;
}
#news article div {
  width: 50%;
}
#news article div:last-child {
  margin-left: 30px;
}

#news article div h4 {
  font-size: 18px;
  padding-left: 10px;
  font-family: "source-han-serif-japanese", "Times", serif;
  font-weight: 400;
  font-style: normal;
}

#news article .box {
  display: block;
  overflow: scroll;
  /* width: 55%; */
  width: 100%;
  max-width: 530px;
  height: 360px;
  padding: 0 0 15px 20px;
  border-left: 4px solid #000;
}
#news article .box li {
  display: flex;
  display: -ms-flex;
  display: -webkit-flex;
  width: 100%;
  padding: 10px 0;
  border-bottom: 1px dashed #000;
  line-height: 1.3;
  font-size: 1.4rem;
}
#news article .box li .date, #news article .box li .ctg, #news article .box li .txt {
  padding-top: 5px;
  padding-bottom: 5px;
}

#news article .box li .date {
  position: relative;
  width: 155px;
  padding-left: 30px;
  white-space: nowrap;
}
#news article .box li .date span {
  display: inline-block;
}
#news article .box li .date::before {
  content: '';
  position: absolute;
  left: 7px;
  top: 0.8em;
  width: 10px;
  height: 4px;
  background: #000;
}
#news article .box li .ctg,
#news article .box li .ctg2 {
  width: 105px;
 /* padding-right: 10px;*/
  text-align: center;
  white-space: nowrap;
    background: #000C3A;
    color: #fff;
    border-radius: 3px;
    padding: 0;
}
#news article .box li .yusho{
    background: #280000;
}
#news article .box li a{
    display: block;
    color: #fff;
   /* padding: 5px 0;*/
	padding: 12px 0;
}

#news article .box li .txt {
  width: calc(100% - 155px - 105px);
  padding-left: 1em;
}
/* #news article::after {
  content: '';
  position: absolute;
  right: 0;
  top: -30px;
  width: 42%;
  max-width: 457px;
  height: 354px;
  background: url("../img/img_news01.png") no-repeat left top;
  background-size: 100% auto;
} */

#news article .box li .ctg2 {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 80px;
}
#news article .box li .txt2 {
  width: 100%;
  padding-left: 1em;
}


/* ▼ @media : PC */
@media screen and (max-width: 1120px) {
  #purpose,
  #greeting,
  #training,
  #news {
    padding-right: 40px;
    padding-left: 40px;
  }

  #greeting article::after {
    left: auto;
    right: 60%;
  }
}
/* ▼ @media : SP */
@media screen and (max-width: 768px) {
  #hero .scroll {
    position: absolute;
    left: calc(50% - 35px);
    bottom: 10px;
    height: 11.42578125vh;
  }

  #greeting article .president {
    display: block;
    width: 220px;
  }
  #greeting article .president .photo,
  #greeting article .president .name {
    width: 100%;
  }
  #greeting article .president .name {
    padding-top: 10px;
  }
  #greeting article .main {
    left: 240px;
    width: calc(100% - 240px);
    padding-top: 30px;
  }
  #greeting article .main h2 {
    margin-bottom: 30px;
  }
  #greeting article .main p {
    margin-left: 0;
  }
  #greeting article::after {
    right: auto;
    left: -500px;
    top: -340px;
    transform: scale(0.7);
  }

  #training article ul li .txt > span {
    font-size: 3.125vw;
  }

  #news article .box {
    width: auto;
    max-width: none;
  }
  #news article div:last-child {
    margin-top: 60px;
    margin-left: 0;
  }
    
  #news article::after {
    top: -120px;
    width: 20%;
  }

  #news article {
    display: block;
  }
  #news article div {
    width: 100%;
}

}
/*@media*/
@media screen and (max-width: 480px) {
  #hero .title > div .box {
    padding: 20px;
    font-size: 5.4166666667vw;
  }

  #purpose,
  #greeting,
  #training,
  #news {
    padding-right: 20px;
    padding-left: 20px;
  }

  #purpose {
    padding-top: 50px;
    padding-bottom: 80px;
  }
  #purpose h2 {
    display: block;
    margin: 0 auto 20px;
    padding: 0 0 10px;
    font-size: 2.4rem;
  }
  #purpose article {
    font-size: 1.6rem;
  }
  #purpose article .text {
    line-height: 1.5;
  }
  #purpose article .signature {
    margin-top: 1em;
  }

  #greeting article .president {
    position: relative;
    margin: 0 auto;
  }
  #greeting article .main {
    left: 0;
    width: 100%;
    padding: 0 0 50px;
  }
  #greeting article .main h2 {
    margin-bottom: 15px;
    text-align: center;
    font-size: 2.4rem;
  }
  #greeting article::after {
    left: -350px;
    top: -360px;
  }

  #training {
    padding-top: 50px;
    padding-bottom: 50px;
  }
  #training h2 {
    display: block;
    margin: 0 auto 20px;
    padding: 0 0 10px;
    font-size: 2.4rem;
  }
  #training article ul {
    display: block;
  }
  #training article ul li {
    width: 90%;
    margin: auto;
  }
  #training article ul li .txt {
    height: 60px;
  }
  #training article ul li .txt span {
    font-size: 4.1666666667vw;
  }
  #training article ul li + li {
    margin-top: 10px;
  }

  #training article .btns ul li {
    width: 100%;
  }
  #training article .btns ul li + li {
    margin-top: 2px;
  }

  #news {
    padding-bottom: 50px;
  }
  #news article::after {
    width: 30%;
  }
  #news article .box {
    width: 100%;
    height: 360px;
    padding-left: 10px;
  }
  #news article .box li .date::before {
    top: 0.5em;
  }
  #news article::after {
    top: -85px;
  }

  #news h2 {
    font-size: 1.6rem;
  }
  #news h2::after {
    font-size: 3rem;
  }

  #news article .box,
  #news article .box li {
    display: block;
  }
  #news article .box .date, #news article .box .ctg, #news article .box .txt,
  #news article .box li .date,
  #news article .box li .ctg,
  #news article .box li .ctg2,
  #news article .box li .txt {
    display: block;
    width: 100%;
    padding-top: 0;
    padding-left: 30px;
    text-align: left;
  }

  #news article .box li + li .date, #news article .box li + li .ctg, #news article .box li + li .txt {
    padding-top: 0;
  }
}
/*@media*/
