/*
Theme Name: 2022 Early
Author: Author
Author URI: URI
Version: 1.0
*/
.blueBg {
  background: #0B41A0;
  color: #fff;
}

.blueClr {
  color: #0B41A0;
}

.orangeBg {
  background: #E5810E;
  color: #fff;
}

.orangeClr {
  color: #E5810E;
}

/* ===========================================================
   # BASE
=========================================================== */
* {
  border: none;
  box-sizing: border-box;
  font: inherit;
  outline: none;
  vertical-align: bottom;
  -webkit-tap-highlight-color: transparent;
}

html {
  font-size: 10px;
}

html, body {
  width: 100%;
  height: 100%;
}

body {
  background: #fff;
  color: #020A19;
  font: 400 1.6rem/1 YakuHanJPs_Noto, "Noto Sans JP", sans-serif;
  font: 400 1.6rem/1 YakuHanJPs_Noto, "Zen Kaku Gothic New", sans-serif;
}

strong {
  font-weight: 500;
}

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

ol, ul {
  list-style: none;
}

table {
  border-collapse: collapse;
}

/* = CLASS
----------------------------------------------------------- */
.auto {
  margin: auto;
}

.boxradiusAll {
  border-radius: 1rem;
}

.boxShadow {
  box-shadow: 0 0 2px 0 rgba(0, 0, 0, 0.4);
}

.clear {
  clear: both;
}

.disNon {
  display: none !important;
}

.hidden {
  overflow: hidden;
}

.serif {
  font-family: YakuHanMPs, 'Zen Old Mincho', serif;
}

.small {
  font-size: .9em;
}

.transAll {
  transition: all 300ms 0s ease;
}

.txtShadow {
  text-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
}

/* ALIGN */
.align_c, .has-text-align-center {
  text-align: center;
}

.align_l, .has-text-align-left {
  text-align: left;
}

.align_r, .has-text-align-right {
  text-align: right;
}

/* DISPLAY */
.noSP, .onPC,
.noSP.flex, .onPC.flex {
  display: none;
}

/* FLEX */
.flex {
  display: flex;
  flex-wrap: wrap;
}

/* POSITION */
.posRe {
  position: relative;
}

.posAb {
  position: absolute;
}

@media (min-width: 768px) {
  .alignleft {
    float: left;
  }
  .alignright {
    float: right;
  }
  .onSP {
    display: none !important;
  }
  .noSP {
    display: block;
  }
  img.noSP,
  span.noSP,
  strong.noSP {
    display: inline;
  }
  .noSP.flex {
    display: flex;
  }
}

@media (min-width: 1024px) {
  .onPC {
    display: block;
  }
  .onPC.flex {
    display: flex;
  }
  strong.onPC {
    display: inline;
  }
  .noPC {
    display: none !important;
  }
}

/* ===========================================================
   # HREF
=========================================================== */
a {
  color: #020A19;
  outline: none;
  text-decoration: none;
}

.entryBody a {
  color: #7d075a;
  text-decoration: underline;
}

.entryBody a:hover img {
  opacity: 0.9;
}

a.linkBtn, .entryBody .linkBtn a {
  background: #0B41A0;
  color: #fff;
  display: inline-block;
  font-weight: 500;
  line-height: 4rem;
  padding: 0 7rem 0 2rem;
  max-width: 100%;
  position: relative;
  text-decoration: none;
}

a.linkBtn::after, .entryBody .linkBtn a::after {
  content: "\f061";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  margin: auto;
  position: absolute;
  right: 2rem;
  top: 0;
  bottom: 0;
  transition: all 500ms 0s ease;
}

a.linkBtn:hover::after, .entryBody .linkBtn a:hover::after {
  right: 1rem;
}

a.linkBox {
  background: #fff;
  border: 1px solid #0B41A0;
  color: #0B41A0;
  display: inline-block;
  font-weight: 500;
  padding: 0 1.5rem;
  max-width: 100%;
  position: relative;
  text-decoration: none;
  transition: all 300ms 0s ease;
}

a.linkBox path {
  fill: #0B41A0;
  transition: all 300ms 0s ease;
}

a.linkBox::after {
  content: "\f061";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  text-rendering: auto;
  -webkit-font-smoothing: antialiased;
  position: absolute;
  right: 1.5rem;
  top: auto;
}

a.linkBox.external::after {
  content: "\f08e";
}

a.linkBox:hover {
  background: #0B41A0;
  color: #fff;
}

a.linkBox:hover path {
  fill: #fff;
}

@media (min-width: 768px) {
  a.linkBtn, .entryBody .linkBtn a {
    font-size: 2rem;
    line-height: 7.5rem;
    padding: 0 18rem 0 3rem;
  }
  a.linkBtn::after, .entryBody .linkBtn a::after {
    right: 3rem;
  }
  a.linkBtn:hover::after, .entryBody .linkBtn a:hover::after {
    right: 2rem;
  }
}

/* ===========================================================
   # MAIN
=========================================================== */
.wrap {
  min-height: 100%;
}

.inner {
  width: 103rem;
  max-width: 100%;
}

.innerS {
  max-width: calc(100% - 2rem);
}

.home .main {
  background: url(./img/home_bg.jpg) center 0/192rem no-repeat;
}

@media (min-width: 768px) {
  .innerS {
    max-width: calc(100% - 5rem);
  }
}

@media (min-width: 1024px) {
  .main {
    padding-top: 6rem;
  }
}

@media (min-width: 1366px) {
  .innerS {
    max-width: 100%;
  }
}

/* ===========================================================
   # HEAD
=========================================================== */
.head {
  background: #fff;
  align-items: center;
  justify-content: space-between;
  padding-left: 1rem;
  width: 100%;
  position: fixed;
  left: 0;
  top: 0;
  z-index: 999;
}

.head .logo img.noPC {
  width: auto;
  height: 4.8rem;
}

.head .request {
  color: #fff;
  font-weight: 500;
  letter-spacing: 4px;
  line-height: 5rem;
  padding: 0 2em;
}

.head .request::before, .head .request::after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  z-index: -1;
  transition: all 500ms 0s ease;
}

.head .request::before {
  background: #C1A724;
}

.head .request::after {
  background: linear-gradient(115deg, #C12424 0%, #C1A724 100%);
}

.head .request:hover::after {
  opacity: 0;
}

.head .btnMenu {
  cursor: pointer;
  display: inline-block;
  width: 5rem;
  height: 5rem;
}

.head .btnMenu span {
  background: #eee;
  width: 3.7rem;
  height: 1px;
  left: 0;
  right: 0;
}

.head .btnMenu01 {
  top: 1.6rem;
}

.head .btnMenu02 {
  top: 0;
  bottom: 0;
}

.head .btnMenu03 {
  bottom: 1.5rem;
}

.open .head .btnMenu01 {
  transform: translateY(0.8rem) rotate(25deg);
}

.open .head .btnMenu02 {
  opacity: 0;
}

.open .head .btnMenu03 {
  transform: translateY(-1rem) rotate(-25deg);
}

@media (min-width: 768px) {
  .head {
    padding-left: 2rem;
  }
  .head .logo img.noPC {
    height: 8.8rem;
  }
  .head .request {
    font-size: 1.12em;
    line-height: 9.3rem;
    padding: 0 3.7em;
  }
  .head .btnMenu {
    width: 9.3rem;
    height: 9.3rem;
  }
  .head .btnMenu span {
    background: #eee;
    width: 4.7rem;
    height: 1px;
    left: 0;
    right: 0;
  }
  .head .btnMenu01 {
    top: 3.7rem;
  }
  .head .btnMenu03 {
    bottom: 3.7rem;
  }
}

@media (min-width: 1024px) {
  .head {
    padding-left: 3rem;
  }
}

/* ===========================================================
   # SIDE
=========================================================== */
/* ===========================================================
   # FOOT
=========================================================== */
/* = LINK
----------------------------------------------------------- */
.footLink ul {
  justify-content: space-between;
}

.footLink ul li {
  width: 100%;
}

.footLink ul li a {
  display: flex;
  align-items: center;
  font-weight: 700;
  line-height: 5rem;
  margin-bottom: 1rem;
  padding: 0 0 0 1rem;
  width: 100%;
}

.footLink ul li a svg {
  margin-right: 1rem;
  width: 3rem;
  transform: translateY(1px);
}

.footLink ul li a svg.posAb {
  right: 0;
}

@media (min-width: 768px) {
  .footLink {
    padding: 6rem 0;
  }
  .footLink ul li {
    width: 49%;
  }
  .footLink ul li a {
    font-size: 1.8rem;
    letter-spacing: 3px;
    line-height: 7.5rem;
    margin-bottom: 1.5rem;
    padding: 0 2rem;
  }
  .footLink ul li a svg {
    transform: translateY(2px);
  }
}

@media (min-width: 1024px) {
  .footLink ul {
    justify-content: center;
    margin-left: -1.2rem;
    margin-right: -1.2rem;
  }
  .footLink ul li {
    padding: 0 1.2rem;
    width: 33.33%;
  }
  .footLink ul li a {
    letter-spacing: 1px;
    margin-bottom: 2.7rem;
  }
}

/* = FOOT
----------------------------------------------------------- */
.foot {
  background: linear-gradient(180deg, rgba(11, 160, 145, 0) 0%, rgba(11, 115, 152, 0.2) 46%, rgba(11, 105, 154, 0.4) 60%, rgba(11, 90, 156, 0.8) 82%, #0B41A0 100%);
  padding: 1.5rem 0;
}

.foot p {
  display: inline-block;
  margin-bottom: 4rem;
}

.foot p .linkBox {
  display: flex;
  align-items: center;
  justify-content: space-between;
  line-height: 5.5rem;
  margin-top: 1.5rem;
  padding: 0 1.5rem;
}

.foot .copy {
  color: #fff;
  display: block;
  font-size: 1.2rem;
  font-weight: 500;
  letter-spacing: 3px;
}

@media (min-width: 768px) {
  .foot p {
    margin-bottom: 6rem;
  }
}

.gotoTop {
  background: #0B41A0;
  width: 4rem;
  height: 4rem;
  position: fixed;
  right: 0;
  bottom: 0;
  z-index: 999;
}

.gotoTop_arrow {
  display: block;
  fill: #fff;
  width: 2.8rem;
  height: auto;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
}

@media (min-width: 768px) {
  .gotoTop {
    width: 9.3rem;
    height: 9.3rem;
  }
}

/* ===========================================================
   # NAVI
=========================================================== */
body.open {
  position: fixed;
}

@media (min-width: 1024px) {
  body.open {
    position: static;
  }
}

/* = G NAVI
----------------------------------------------------------- */
.gNav {
  background: #fff;
  display: none;
  overflow: auto;
  width: 100%;
  height: 100%;
  padding-top: 5rem;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 9;
  -webkit-overflow-scrolling: touch;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.gNav::-webkit-scrollbar {
  display: none;
}

.gNav > div {
  padding: 0 2rem;
  width: 50rem;
}

.gNav_main li {
  border-bottom: 1px solid #0B41A0;
  width: 100%;
}

.gNav_main li a {
  color: #0B41A0;
  display: block;
  font-size: 1.4rem;
  letter-spacing: 2px;
  line-height: 1.2;
  padding: 2rem 0;
  position: relative;
  transition: all 500ms 0s ease;
}

.gNav_main li a::after {
  content: "\f061";
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
}

.gNav_main li a strong {
  display: block;
  font-size: 2rem;
  font-weight: 500;
}

.gNav_main li a:hover,
.gNav_main li.current-menu-item a, .gNav_main li.current-menu-parent a,
.gNav_main li.current-category-ancestor a, .gNav_main li.current-page-ancestor a {
  background-position: 0px -60px;
}

.gNav_sub {
  margin-top: 2rem;
}

.gNav_sub li {
  margin: 0 1.4rem 1.4rem 0;
}

.gNav_sub li a {
  border: 1px solid #0B41A0;
  color: #0B41A0;
  display: block;
  font-weight: 500;
  line-height: 3rem;
  font-size: 1.4rem;
  padding: 0 8px;
}

@media (min-width: 768px) {
  .gNav {
    padding-top: 9.3rem;
  }
  .gNav_main li a {
    letter-spacing: 4px;
  }
  .gNav_main li a strong {
    font-size: 2.4rem;
    letter-spacing: 2px;
  }
  .gNav_sub {
    margin-top: 3.5rem;
  }
  .gNav_sub li {
    margin: 0 2.4rem 2.4rem 0;
  }
  .gNav_sub li:nth-child(even) {
    margin-right: 2.4rem;
  }
  .gNav_sub li a {
    line-height: 3.6rem;
  }
  .gNav_sub li a::after {
    content: "\f08e";
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    margin-left: 1em;
  }
}

@media (min-width: 1024px) {
  .gNav {
    width: 50%;
  }
}

@media (min-height: 770px) {
  .gNav > div {
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
  }
}

/* ===========================================================
   # CONTENT
=========================================================== */
/* = TITLE
----------------------------------------------------------- */
.ttl {
  color: #E6E9EF;
  font-size: 5em;
  font-weight: 300;
  margin-bottom: 2rem;
}

.ttl strong {
  font-size: .25em;
  font-weight: 700;
  letter-spacing: .25em;
  left: .2em;
  bottom: 0;
}

.ttl strong.auto {
  left: 0;
  right: 0;
}

@media (min-width: 768px) {
  .ttl {
    font-size: 6em;
    margin-bottom: 4rem;
    letter-spacing: .16em;
  }
}

/* ===========================================================
   # HOME
=========================================================== */
/* = MV
----------------------------------------------------------- */
.homeMv {
  background: url(./img/mv.jpg) center bottom/cover no-repeat;
  width: 100%;
  height: 100vh;
  height: 100svh;
  left: 0;
  top: 0;
}

.homeMv_in {
  font-weight: 700;
  padding: 0 1em;
  width: 100%;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

.homeMv_in h2 {
  font-size: 1.4em;
  background: #fff;
  margin-bottom: 1rem;
  padding: 5px 0;
  white-space: nowrap;
}

.homeMv_in p {
  font-size: 4.4vw;
  letter-spacing: 1px;
  line-height: 2.4;
}

.homeMv .scroll {
  font-size: 0.75em;
  font-weight: 700;
  letter-spacing: 0.25em;
  left: 0;
  right: 0;
  bottom: 1.7rem;
}

.homeMv .scroll::before {
  background: #0B41A0;
  content: "";
  margin: auto;
  width: 2px;
  height: 4.8rem;
  position: absolute;
  left: 0;
  right: 0;
  top: -6rem;
}

.homeMv_event {
  background: #0B41A0;
  color: #fff;
  right: 0;
  bottom: 0;
  width: 100%;
}

.homeMv_event > span {
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  line-height: 1.4;
  padding: 1rem;
}

.homeMv_event > span i {
  font-size: 2rem;
}

@media (min-width: 768px) {
  .homeMv {
    min-height: 60rem;
  }
  .homeMv_in {
    display: flex;
    align-items: center;
    width: auto;
  }
  .homeMv_in h2 {
    font-size: 3em;
    letter-spacing: 3px;
    margin: 0 5rem 0 0;
    padding: 1.2rem 8px;
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
  }
  .homeMv_in p {
    font-size: 1.2em;
    letter-spacing: 5px;
    line-height: 3.2;
    white-space: nowrap;
  }
  .homeMv_event {
    box-shadow: 1rem 1rem 0 rgba(11, 65, 160, 0.4);
    right: 3rem;
    bottom: 3rem;
    width: 24rem;
  }
}

@media (min-width: 1024px) {
  .homeMv_in h2 {
    margin-right: 9rem;
    margin-top: 2rem;
  }
}

@media (min-width: 1366px) {
  .homeMv_event {
    right: 5rem;
    bottom: 5rem;
    width: auto;
  }
}

/* = CONTENT
----------------------------------------------------------- */
.homeCont .contBody {
  padding: 3rem 0;
}

.homeCont .homeFeature .body {
  letter-spacing: 1px;
  line-height: 2.5;
}

.homeCont .homeFeature .body p {
  margin: 1em 0;
}

.homeCont .homeEvent .mv {
  background: url(./img/home_event_mv.jpg) 0 0/cover no-repeat;
  box-shadow: 1rem 1rem 0 white;
  display: block;
}

.homeCont .homeEvent .mv span {
  background: #0B41A0;
  color: #fff;
  align-items: center;
  justify-content: space-between;
  font-size: 2rem;
  font-weight: 500;
  line-height: 7.5rem;
  padding: 0 3rem;
  width: 32.8rem;
  max-width: 82%;
  left: 0;
  right: 0;
  bottom: 2.5rem;
}

.homeCont .homeEvent .mv:hover span {
  background: #E5810E;
  padding-right: 2rem;
}

.homeCont .homeEvent .body {
  background: transparent linear-gradient(110deg, #E4EEFF 0%, #E4FBF4 100%);
  padding: 23rem 0 7rem;
  margin-top: -23rem;
}

.homeCont .homeEvent .body h3 {
  align-items: center;
  display: inline-flex;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 2px;
  margin-bottom: 3rem;
  padding: 2rem 0 1rem;
}

.homeCont .homeEvent .body h3::after {
  background: linear-gradient(110deg, #0B41A0 0%, transparent 100%);
  content: "";
  width: 100%;
  height: 3px;
  position: absolute;
  left: 0;
  bottom: 0;
}

.homeCont .homeEvent .body h3 span {
  font-size: 1.2rem;
  letter-spacing: 1px;
  padding-left: 2rem;
}

.homeCont .homeEvent .eventList li {
  background: #fff;
  align-items: center;
  justify-content: space-between;
  font-weight: 500;
  margin-bottom: 1rem;
  padding: 1rem;
}

.homeCont .homeEvent .eventList li p {
  font-size: 2rem;
}

.homeCont .homeEvent .eventList li p .eventTtl {
  background: #fff;
  display: block;
  font-weight: 500;
  margin-bottom: 5px;
}

.homeCont .homeEvent .eventList li p .eventDate {
  font-weight: 700;
}

.homeCont .homeEvent .eventList li a {
  padding: 5px 1rem;
}

.homeCont .homeEvent .eventList li a:hover {
  background: #C12424;
}

@media (min-width: 768px) {
  .homeCont .homeFeature .body img {
    position: absolute;
    right: 0;
    max-width: 49%;
    transition: all 300ms 0s ease;
  }
  .homeCont .homeFeature .body .homeFeature_txt {
    max-width: 49%;
  }
  .homeCont .homeEvent .mv {
    box-shadow: 2.4rem 2.4rem 0 white;
  }
  .homeCont .homeEvent .mv span {
    left: 3rem;
    right: auto;
    bottom: 3rem;
  }
  .homeCont .homeEvent .body h3 {
    font-size: 2.4rem;
    letter-spacing: 4px;
    padding: 6.4rem 0 1.5rem;
  }
  .homeCont .homeEvent .body h3 span {
    letter-spacing: 3px;
    padding-left: 5rem;
  }
  .homeCont .homeEvent .eventList li {
    margin-left: 5rem;
    padding: 2rem;
  }
  .homeCont .homeEvent .eventList li p {
    display: inline-flex;
    align-items: center;
  }
  .homeCont .homeEvent .eventList li p .eventTtl {
    border: 2px solid #E5810E;
    margin-left: -7rem;
    padding: 2rem 3rem;
    min-width: 12em;
  }
  .homeCont .homeEvent .eventList li p .eventDate {
    letter-spacing: 5px;
    padding-left: 2rem;
  }
  .homeCont .homeEvent .eventList li a {
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 3rem;
  }
  .homeCont .homeEvent .eventList li a:hover {
    padding-right: 2rem;
  }
  .homeCont .homeEvent .eventList li a i {
    display: inline-block;
    margin-left: 1em;
  }
}

@media (min-width: 1024px) {
  .homeCont .contBody {
    padding: 6rem 0;
  }
  .homeCont .homeFeature .body .homeFeature_txt {
    letter-spacing: 2px;
    padding-bottom: 10%;
  }
  .homeCont .homeEvent .eventList li {
    margin-left: 18rem;
  }
  .homeCont .homeEvent .eventList li p .eventTtl {
    font-size: 2.4rem;
    margin-left: -20rem;
  }
  .homeCont .homeEvent .eventList li p .eventDate {
    font-size: 3.2rem;
    padding-left: 5rem;
  }
  .homeCont .homeEvent .eventList li a {
    width: 22rem;
  }
}

@media (min-width: 1920px) {
  .homeCont .homeFeature .body .homeFeature_txt {
    max-width: 60%;
  }
}

/* ===========================================================
   # NEWS
=========================================================== */
.newsList {
  justify-content: space-between;
}

.newsList li {
  width: 100%;
}

.newsList li a {
  background: #fff;
  box-shadow: 5px 5px 3rem rgba(0, 0, 0, 0.05);
  flex-wrap: nowrap;
  margin-bottom: 1rem;
  padding: 5px;
}

.newsList li a img {
  width: 8rem;
}

.newsList li a i {
  color: #0B41A0;
  font-size: 2rem;
  width: 1.8rem;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
}

@media (min-width: 768px) {
  .newsList li a img {
    width: 15rem;
  }
  .newsList li a i {
    right: 2.5rem;
  }
  .newsList li a:hover i {
    color: #E5810E;
    right: 2rem;
  }
}

@media (min-width: 1024px) {
  .newsList li {
    width: 49%;
  }
  .newsList li a {
    margin-bottom: 2.4rem;
  }
}

.newsHead {
  font-weight: 500;
  letter-spacing: 1px;
  line-height: 1.3em;
  padding: 5px 0 5px 1rem;
}

.newsHead .date {
  font-weight: 300;
  letter-spacing: 4px;
}

.newsHead .cat {
  border: 1px solid #ccc;
  border-radius: 2rem;
  display: inline-block;
  font-size: 1.2rem;
  width: 12rem;
  transform: translateY(1px);
}

.newsHead .cat.info {
  border-color: #0B41A0;
  color: #0B41A0;
}

.newsHead .cat.report {
  border-color: #E5810E;
  color: #E5810E;
}

.newsHead .newsTtl {
  display: block;
  margin-top: 3px;
  padding-right: 3rem;
}

@media (min-width: 768px) {
  .newsHead {
    line-height: 1.5em;
    padding: 2rem 0 2rem 2.5rem;
  }
  .newsHead .date::after {
    background: #0B41A0;
    content: "";
    display: inline-block;
    margin: 0 1.5rem 0 2rem;
    width: 2.4rem;
    height: 1px;
    transform: translateY(-1rem);
  }
  .newsHead .newsTtl {
    margin-top: 5px;
    padding-right: 6rem;
  }
}

/*# sourceMappingURL=style.map */