@charset "utf-8";

/*==========================
common
==========================*/
:root {
    --primary-text: #333;
    --primary-navy: #010022;
    --primary-orange: #E04100;
    --primary-bg: #F5F7F8;
    --primary-black: #1A1A1A;
    --gray0: #FFF;
    --gray10: #F3F3F3;
    --gray60: #BABABA;
}

@media screen and (min-width:1024px) {
:root {

}
}

*,
*:before,
*:after {
    -webkit-box-sizing: inherit;
    box-sizing: inherit;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style: none;
}

html {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-size: 62.5%;
    /* scroll-behavior: smooth; */
}

body {
    font-family: "Noto Serif JP", serif;
    font-style: normal;
    color: var(--primary-text, #333A3A);
    background-color: var(--gray0, #FFF);
    line-height: 190%;
    overflow-x: hidden;
    margin: 0;
}
main {

}
section {
    display: flex;
    padding: 20.5vw 0px;
    flex-direction: column;
    align-items: center;
    position: relative;
}
/* section::before {
    border-style: solid;
    border-width: 50px 100vw 0 0;
    bottom: 0;
    content: "";
    height: 0;
    position: absolute;
} */
article {
    background-image: linear-gradient(90deg, #010022, #000);
}
@media (min-width: 768px) {
    section {
        padding: 80px 0px 160px;
    }
    section::before {
        border-width: 100px 100vw 0 0;
    }
}

.pc {
    display: none;
}
@media screen and (min-width: 1024px) {
    .pc {
        display: block;
    }
    .sp {
        display: none !important;
    }
}

h2 {
    margin-bottom: 10.25vw;
}
h2 span {
    font-size: 7.69vw;
    font-weight: 700;
    line-height: 220%;
    letter-spacing: 0.3vw;
    color: var(--primary-text, #333);
    position: relative;
    position: relative;
    display: table-cell;
    padding: 0 0 0 8.56vw;
}
h2 span:before {
	content: '';
	position: absolute;
	top: 50%;
	display: inline-block;
    width: 8.71vw;
    height: 0.51vw;
	background-color: var(--primary-orange, #E04100);
	left:0;
	transform: rotate(-56deg);
}
p {
    font-size: 4.1vw;
    font-weight: 500;
    line-height: 153%;
    color: var(--primary-text, #333);
}
img {
    width: 100%;
}
@media screen and (min-width: 768px) {
    h2 {
        margin-bottom: 40px;
    }
    h2 span {
        font-size: 36px;
        line-height: 183.333%;
        letter-spacing: 1.44px;
        padding: 0 0 0 40px;
    }
    h2 span:before {
        width: 36px;
        height: 2px;
    }
    p {
        font-size: 16px;
        line-height: 190%;
    }
}
@media screen and (min-width: 1024px) {

}

/*==========================
header
==========================*/
.header {

}
.pc-header__wrap {
    display: none;
}

.header__topic,
.nav__topic {
    font-size: 2rem;
    font-family: Noto Sans JP;
    line-height: 1.3;
}

.header__topic a,
.nav__topic a {
    display: flex;
    align-items: center;
}

.header__topic span,
.nav__topic span {
    font-size: 0.8rem;
    letter-spacing: 1.6px;
    margin: 0 17px 0 18px;
}

/* .nav初期表示 */
.nav {
    background: rgba(var(--primary-greenR), 0.97);
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100;
    transform: translateX(-100%);
    transition: transform 0.4s;
}

.nav__header {
    padding-left: 4.2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav__topic {
    color: var(--primary-whiteLow);
}

.nav__list {
    margin-top: 67px;
}

.nav__item {
    color: var(--primary-white);
    font-size: 2.4rem;
    line-height: 1;
    margin-bottom: 48px;
    display: flex;
    align-items: center;
}

.nav__item::before {
    content: '';
    display: inline-block;
    width: 32px;
    height: 2px;
    background-color: var(--primary-white);
    margin-right: 16px;
}

.nav__btnEntry {
    color: var(--primary-white);
    text-align: center;
    font-size: 1.6rem;
    font-weight: 500;
    line-height: 1;
    border-radius: 4px;
    background-color: var(--primary-green);
    padding: 12px 0 12px 16px;
    display: flex;
    align-items: center;
    transition: 0.4s;
}

.nav__btnEntry::after {
    content: '';
    display: inline-block;
    width: 16px;
    height: 16px;
    background-image: url(../images/icon-arrow.svg);
    background-size: contain;
    background-position: center;
    margin: 0 8px;
}

.nav__btnEntry:hover {
    opacity: 0.5;
}

.nav__item:last-of-type {
    display: none;
}

/* .nav.active表示 */
.nav.active {
    transform: translateX(0);
}

.header__btn {
    display: block;
    width: 64px;
    height: 64px;
}

.h-fix {

}

.h-fixbtn {
    position: fixed;
    z-index: 9999;
    top: 20px;
    right: 90px;
    width: 130px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    background: var(--primary-orange, #E04100);
    color: var(--gray0, #FFF);
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
}

/* .header pc */
@media screen and (min-width:1260px) {
    .pc-header__wrap {
        display: block;
    }
    .h-fix {
        display: none;
    }

    .header {
        padding: inherit;
        height: inherit;
        display: inherit;
    }
    .pc-header {
        display: flex;
        justify-content: space-between;
        padding-right: 2%;
        max-width: 1500px;
        width: 91.6%;
        position: fixed;
        z-index: 9999;
        background-color: #fff;
        top: 30px;
        right: 0;
        left: 0;
        margin: 0 auto;
        box-shadow: 4px 4px 7px 0px rgba(1, 0, 34, 0.10);
    }
    .header .h-logo {
        display: flex;
    }

    .header .h-logo img {
        height: 60px;
    }

    .header .pc-nav { 
        display: flex;
        align-items: center;
        gap: 26px;
    }

    .header .pc-nav li{
        position: relative;
    }

    .header .pc-nav li a {
        font-size: 14px;
        color: var(--primary-text, #333);
        font-weight: 700;
    }
    .header .pc-nav li:last-of-type a {
        color: var(--gray0, #FFF);
    }
    .header .pc-nav li a:hover {
        color: var(--primary-orange, #E04100);
    }
    .header .pc-nav li:last-of-type a:hover {
        color: var(--gray0, #FFF);
    }

    .header .pc-nav li::after {
        position: absolute;
        content: "/";
        right: -16px;
        font-size: 14px;
        font-weight: 700;
    }

    .header .pc-nav li:nth-last-child(2)::after {
        content: none;
    }

    .pc-nav__entry {
        width: 130px;
        height: 40px;
        display: flex;
        justify-content: center;
        align-items: center;
        font-size: 14px;
        background: var(--primary-orange, #E04100);
        color: var(--gray0, #FFF);
        margin-left: 10px;
    }
    .pc-nav__entry:hover {
        background: var(--primary-navy, #010022);
    }

}
/*========= ナビゲーション ===============*/

#g-nav{
    position:fixed;
    z-index: 999;
    top:0;
    right: -120%;
    width:100%;
    height: 100vh;
    background:#F3F3F3;
    transition: all 0.6s;
  }
  
  #g-nav.panelactive{
    right: 0;
  }
  
  #g-nav.panelactive #g-nav-list{
    position: fixed;
    z-index: 999; 
    width: 100%;
    height: 100vh;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
  }
  
  /*ナビゲーション*/
  #g-nav ul {
    position: absolute;
    z-index: 999;
    top: 31%;
    left: 65%;
    transform: translate(-50%,-50%);
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    gap: 40px;
  }
  
  #g-nav li{
    list-style: none;
    text-align: left;
  }
  
  #g-nav li a{
    color: var(--primary-text, #333);
    text-decoration: none;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-size: 1.8rem;
    font-weight: bold;
  }
  @media (min-width: 1024px) {

  }
  /*========= ナビゲーション ===============*/
  
  /*========= ハンバーガー ===============*/
  .openbtn{
    position:fixed;
    z-index: 9999;/*ボタンを最前面に*/
    top:20px;
    right: 20px;
    background: var(--gray0, #FFF);
    cursor: pointer;
    width: 50px;
    height:50px;
    box-shadow: 0px 4px 4px 0px rgba(0, 0, 0, 0.25);
  }
  
  /*ボタン内側*/
  .openbtn span{
      display: inline-block;
      transition: all .4s;/*アニメーションの設定*/
      position: absolute;
      left: 14px;
      height: 2px;
      background: var(--primary-black, #1A1A1A);
      width: 45%;
    }
  
  .openbtn span:nth-of-type(1) {
    top:15px; 
  }
  
  .openbtn span:nth-of-type(2) {
    top:23px;
  }
  
  .openbtn span:nth-of-type(3) {
    top:31px;
  }
  
  /*activeクラスが付与されると線が回転して×に*/
  
  .openbtn.active span:nth-of-type(1) {
      top: 18px;
      left: 18px;
      transform: translateY(6px) rotate(-45deg);
      width: 30%;
  }
  
  .openbtn.active span:nth-of-type(2) {
    opacity: 0;/*真ん中の線は透過*/
  }
  
  .openbtn.active span:nth-of-type(3){
      top: 30px;
      left: 18px;
      transform: translateY(-6px) rotate(45deg);
      width: 30%;
  }
  @media (min-width: 1260px) {
    .openbtn {
      display: none;
    }
  }
  /*========= ハンバーガー ===============*/
  

  /*========= h1 ===============*/
  h1 {
    position: relative;
    width: fit-content;
    font-family: "Noto Serif JP", serif;
    font-size: 28px;
}
h1::before{
    content: '';
    position: absolute;
    top: 44%;
    display: inline-block;
    width: 30px;
    height: 2px;
    background-color: var(--primary-orange, #E04100);
    left: -32px;
    transform: rotate(-56deg);
} 
 /*========= h1 ===============*/

/*==========================
footer
==========================*/
.footer {
    background: #1A1A1A;
    background-repeat: no-repeat;
    background-position: top center;
    height: 64.1vw;
    background-size: 140%;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 27.56vw 0 12.56vw;
}
.footer a {
    color: var(--gray0, #FFF);
    margin-bottom: 12.82vw;
    font-size: 3.84vw;
    line-height: 190%; /* 30.4px */
    letter-spacing: 0.64px;
}
.footer p {
    color: var(--gray0, #FFF);
    font-size: 3.58vw;
    font-weight: 500;
    line-height: 26px; /* 185.714% */
}
/* @media (min-width: 768px) and (max-width: 1023px) {
    .footer {
        height: 400px;
        padding-top: 80px;
    }
} */
@media screen and (min-width: 768px) {
    .footer {
        height: 400px;
        background-size: 140%;
        background-position-x: left;
        background-position-y: 10%;
        padding: 0;
    }
    .footer a {
        margin-top: 170px;
        font-size: 1.6rem;
        margin-bottom: 60px;
    }
    .footer p {
        font-size: 1.6rem;
    }
}




/*==========================
下層のfooter
==========================*/
.lower-footer {
    background-color: #1A1A1A;
    background-image: none;
}

@media screen and (min-width: 768px) {
    .lower-footer {
        height: 220px;
    }
    .lower-footer a {
        margin: 60px 0;
    }
}

