@charset "utf-8";

@import url(//maxcdn.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css);
@import url(//fonts.googleapis.com/earlyaccess/notosansjapanese.css);

/*
	font-family:"FontAwesome";
	font-family:"Font Awesome 5 Free";
*/

/*========================================
 Base／固定
========================================*/
body {font-family:'Noto Sans JP', "メイリオ", Meiryo, Osaka, "ＭＳ Ｐゴシック", "MS P Gothic", sans-serif;}

/*===== FontSize 早見表(必要なもののみ残す) 　※ 16pxは1remで記載 ※ =====*/
html {
    --12px:calc(12 / 16 * 1rem);
    --13px:calc(13 / 16 * 1rem);
    --14px:calc(14 / 16 * 1rem);
    --15px:calc(15 / 16 * 1rem);
    --18px:calc(18 / 16 * 1rem);
    --20px:calc(20 / 16 * 1rem);
    --24px:calc(24 / 16 * 1rem);
    --26px:calc(26 / 16 * 1rem);
    --30px:calc(30 / 16 * 1rem);
    --36px:calc(36 / 16 * 1rem);
    --40px:calc(40 / 16 * 1rem);
}

/* topへ戻る */
footer #totop{
    width:40px;
    height:40px;
    padding:0;
    text-indent:-9999px;
    background-color:#385eaa;
    border-radius:100%;
    position:fixed;
    bottom:10px;
    right:20px;
    z-index:800;
    display:none;
    cursor:pointer;
}
footer #totop a {display:block;}
footer #totop::after{
    content:"\f106";
    font-family:"FontAwesome";
    font-size:40px;
    line-height:35px;
    text-indent:0;
    text-align:center;
    color:#fff;
    display:block;
    position:absolute;
    top:0;
    left:0;
    right:0;
}


/*========================================
 カスタム用 ／PC&SP
========================================*/
body {
    position: relative;
    color: #333;
    font-size: 1rem;
    letter-spacing: 1px;
    line-height: 1.6;
}
body:after {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    content:"";
    z-index: -5;
    background: url(../images/ptn.png),linear-gradient(#42a8ed, #a5d9ff);
    background-size: 200px;
}
main {
    margin-inline: auto;
    width: min(100%,800px);
}
.mainWrap {
	position: relative;
	overflow: hidden;
}
.mainWrap:before {
	content:"";
	position: fixed;
	top: 0;
	left: 50%;
	transform: translateX(-50%);
	width: min(100%, 800px);
	height: 100%;
	background: #fff;
	background-image: url(../images/bg.jpg);
	z-index: -1;
	background-size: 100% auto;
	background-repeat: no-repeat;
	pointer-events: none;
}

/*スクロール連動 フェードイン*/
.scrollIn {
    opacity: 0;
    /*transition: all 2s;*/
}
.fadeIn {
    opacity: 1;
    animation: fadein 1s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
@keyframes fadein { 
  0% {
      opacity: 0;
      transform: translateY(30px);
  }
  100% { 
      opacity: 1;
      transform: translateY(0);
  }
}


/*hamburger*/
.header {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 100;
}
.hamburger {
    position: relative;
    width: 60px;
    height: 60px;
    border: none;
    border-radius: 50%;
    background: #385eaa;
    z-index: 110;
}
.hamburgerLine {
    display: block;
    width: 24px;
    height: 3px;
    background-color: #fff; 
    position: absolute;
    left: 18px;
    transition: transform 0.3s, opacity 0.3s;
}
.hamburgerLine:nth-child(1) { top: 20px; }
.hamburgerLine:nth-child(2) { top: 29px; }
.hamburgerLine:nth-child(3) { top: 38px; }

.hamburger.active .hamburgerLine:nth-child(1) { top: 29px; transform: rotate(45deg); }
.hamburger.active .hamburgerLine:nth-child(2) { opacity: 0; }
.hamburger.active .hamburgerLine:nth-child(3) { top: 29px; transform: rotate(-45deg); }

.nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 70%;
    max-width: 300px;
    height: 100vh;
    color: #fff;
    font-size: var(--20px);
    font-weight: bold;
    background: linear-gradient(#42a8ed, #a5d9ff);
    backdrop-filter: blur(5px);
    z-index: 105;
    transition: right 0.5s;
    padding-top: 150px;
}
.nav.active {
    right: 0; 
}
.navList {
    padding-left: 0;
    list-style: none;
}
.navItem {
    text-align: center;
    margin-bottom: 30px;
}
.navLink {
    color: #fff;
    text-decoration: none;
    transition: all 0.3s;
}
.navLink:hover {
    color: #385eaa;
}
.overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 104;
}
.overlay.active {
    display: block;
}


/*img*/
img {
    width: 100%;
    height: auto;
}
.imgWrap {
    margin: 0 auto 1.5rem;
    width: min(100%, 800px);
}

/*top*/
.topImg {
    opacity: 0;
    animation: fade 1.5s cubic-bezier(0.19, 1, 0.22, 1) forwards;
}
@keyframes fade {
  from {
    opacity: 0; /* 開始時の不透明度 */
  }
  to {
    opacity: 1; /* 終了時の不透明度 */
  }
}

/*lead*/
.lead {
    margin: 2.5rem auto;
    text-align: center;
}
.leadText {
    padding: 2rem;
    font-size: var(--20px);
    color: #385eaa;
    letter-spacing: 3px;
    line-height: 2;
    text-shadow: 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff;
}


/*container*/
section {
    margin-bottom: 60px;
    padding-top: 40px;
}
.container {
    margin-inline: auto;
    padding: 0 2rem;
}
.container2 {
    margin-bottom: 2rem;
}

/*inner*/
.inner {
    margin-bottom: 4rem;
}
.inner:last-child, .item:last-child {
    margin-bottom:0;
}


/*見出し*/
.heading {
    margin-bottom: 40px;
    text-align: center;
    color: #385eaa;
    font-size: 60px;
    font-weight: 200;
    letter-spacing: 6px;
    text-shadow: 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff,0px 0px 5px #fff;
}
.headingSub {
    position: relative;
    display: inline-block;
    padding: .5em 2em;
    margin-bottom: 2rem;
    font-size: var(--20px);
    line-height: 1.4;
    font-weight: bold;
    border-radius: 10px;
    background-color: #ffffff;
    color: #385eaa;
    filter: drop-shadow(3px 3px 0 rgb(56, 94, 170, 0.6));
}
.headingSub::after {
    content: '';
    position: absolute;
    top: 100%;
    left: calc(50% - 10px);
    width: 20px;
    height: 20px;
    background-color: #ffffff;
    clip-path: polygon(0 0px, 20px 0, 10px 10px);
}
.innerTitle {
    margin-bottom: 1rem;
    font-size: var(--18px);
    font-weight: bold;
    color: #385eaa;
}

/*text*/
.center {
    text-align: center;
}
.point {
    color: tomato;
}
.small {
	font-size: var(--13px);
}
.marker {
    background: linear-gradient(transparent 60%, #ffe100 60%);
}
.innerText {
    letter-spacing: 3px;
    line-height: 2;
    text-shadow: 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff;
}


/*btn*/
.btnWrap {
    margin: 1.5rem auto;
}
.button {
    margin-inline: auto;
    position:relative;
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 16px 24px;
    width: min(100%, 500px);
    color: #fff;
    background-color: #385eaa;
    border: 1px solid #385eaa;
    border-radius: 5px;
    line-height: 1.4;
    font-weight:bold;
    transition: all 0.3s;
}
.button:hover {
    background-color: #0dcaf0;
}
/*.button:before {
	position: absolute;
	content: "\f105";
	font-family: "FontAwesome";
	font-weight: 900;
	font-size: 16px;
	top: 50%;
	right: 12px;
	transform: translatey(-50%);
}*/
.btnInvert {
    color: #385eaa;
    background-color: #ffffff;
}
.btnInvert:hover {
	color: #fff;
}


/*list*/
.data {
    margin: 1.5rem auto;
    width: min(100%,500px);
    text-shadow: 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff, 0px 0px 5px #fff;
}
.dataList {
    margin: 0 auto;
}
.dataCap {
    float: left;
    padding: 8px;
    font-size: var(--15px);
    width: 8em;
    border-top: 1px dashed;
}
.dataText {
    margin:0 0  0 8em;
    border-top: 1px dashed;
    padding: 8px;
    font-size: var(--15px);

}
.dataCap:first-child{
     border-top:none;
}
.dataCap:first-child + dd{
     border-top:none;
}

.staffCap {
    float: left;
    padding: 4px 8px;
    font-size: var(--15px);
    width: 50%;
    text-align: right;
    font-weight: normal;
}
.staffText {
    margin:0 0  0 50%;
    padding: 4px 8px;
    font-size: var(--15px);
}

/*pv*/
#pv {
    background: #385eaa;
    padding: 2rem;
}
#pv .heading {
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: none;
}


/*result*/
#result {
    margin-bottom: 6rem;
    text-align: center;
}
.resultTitle {
    margin-bottom: 4rem;
    font-weight: 600;
    border-top: 2px #fff dashed;
}
.resultTitle span {
    font-size: 20px;
    font-weight: 500;
}
.resultWrap {
    margin-bottom: 4rem;
    position: relative;
    width: min(90%, 500px);
}
.resultList .resultWrap {
    margin-bottom: 0;
}
.resultNo {
    position: absolute;
    top: -8px;
    left: -8px;
    padding: .5em 0;
    z-index: 2;
    width: 3em;
    text-align: center;
    color: #fff;
    font-weight: 600;
    font-size: var(--24px);
    background: linear-gradient(#ffd347 0%, #e9ab10 100%);
}
.resultNo:after {
    content: '';
    position: absolute;
    left: 0;
    top: 100%;
    height: 0;
    width: 0;
    border-left: 1.5em solid #e9ab10;
    border-right: 1.5em solid #e9ab10;
    border-bottom: .8em solid transparent;
}
.resultNo2 .resultNo {
    font-size: var(--20px);
    background: linear-gradient(#cecece 0%, #9b9b9b 100%);
}
.resultNo2 .resultNo:after {
    border-left: 1.5em solid #9b9b9b;
    border-right: 1.5em solid #9b9b9b;
    border-bottom: .8em solid transparent;
}
.resultNo2 .resultImg {
    border-color: #b6b6b6 #d2d2d2 #ececec #c4c4c4 ; 
}
.resultNo3 .resultNo {
    font-size: var(--20px);
    background: linear-gradient(#e6b380 0%, #b17c47 100%);
}
.resultNo3 .resultNo:after {
    border-left: 1.5em solid #b17c47;
    border-right: 1.5em solid #b17c47;
    border-bottom: .8em solid transparent;
}
.resultNo3 .resultImg {
    border-color: #b17c47 #dbb084 #f3c79b #d59e68; 
}
.resultList {
    margin: 1.5rem auto;
    padding: 0;
    list-style: none;
    width: 95%;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: .5rem;
}
.resultImg {
    padding: 10px;
    border: 5px solid;
    border-color: #e9ab10 #ffd347 #ffe080 #fcbf00 ; 
    background: #ffffff;
    box-shadow: 1px 1px 4px #8f8f8f;
}


/*chara*/
.thumb-wrapper {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
    padding: 0 2rem 1rem;
    width: min(100%,800px);
}
.thumb-media {
  cursor: pointer;
  -webkit-transition: var(--transition);
  transition: var(--transition);
}
.thumb-media img {
  -webkit-transition: var(--transition);
  transition: var(--transition);
    border: 5px solid #fff;
    border-radius: 20px;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
}

.swiper1 .swiper-slide {
    padding:0 2rem;
}
.swiper2 {
    background: #fff;
    box-shadow: 0 3px 3px rgba(0, 0, 0, 0.1);
}
.swiper2 .swiper-slide {
    padding: 1.5rem;
    text-align: center;
    color: #385eaa;
    font-style: italic;
}

.swiper-button-prev svg,
.swiper-button-next svg{
	display:none;
}
.swiper-button-next::after, .swiper-button-prev::after {
    font-family: 'FontAwesome';
	font-weight: 600;
    color: #fff;
    font-size: 2.5rem;
	-webkit-text-stroke: 1px #385eaa;
	text-stroke: 1px #385eaa;
}
.swiper-button-next::after {
    content: '\f054';
}
.swiper-button-prev::after {
    content: '\f053';
}

/* 画像サイズ調整 */
.swiper-slide img {
  height: auto;
  width: 100%;
}


/*注意分*/
.note {
    margin: 1.5rem auto;
    padding-left: 0;
    list-style: none;
    font-size: var(--14px);
}
.noteTitle {
    font-weight: bold;
    padding-bottom: .4rem;
}
.noteItem {
    padding-left: 1em;
    text-indent: -1em;
}


/*動画*/
.movieWrap {
    margin-inline: auto;
    text-align: center;
}
.movie {
    max-width: 800px;
    width: 100%;
    height:auto;
    aspect-ratio:16/9;
}

/*footer*/
#preFooter {
    margin-bottom: 1rem;
    padding-top: 0;
    text-align: center;
    font-size: var(--14px);
}
.copyright {
    margin-bottom: 0;
}

.footerLink {
    width: 100%;
    height: 50px;
    background: #fff;
    border-top: 1px solid #385eaa;
}
.logoLink {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
}
.logoLink img {
    max-width: 100px;
}

.completed {
    color: #fff;
}

/* PC */
@media screen and (min-width: 768px) {

    .sp {display: none;}
    
}

/* スマホ */
@media screen and (max-width: 767px) {
    .pc {display: none;}
    
    /* topへ戻る */
    footer #totop{
        right: 10px;
    }
    
    /*hamburger*/
    .header {
        top: 10px;
        right: 10px;
    }

    /*img*/
    .imgWrap {
        margin-bottom: 1rem;
    }

    /*lead*/
    .lead {
        margin: 1rem auto 2rem;
    }
    .leadTitle {
        margin-bottom: 1rem;
        font-size: var(--20px);
    }
    .leadText {
        padding: 1rem;
        font-size: 1rem;
    }
    
    /*container*/
    section {
        padding-top: 20px;
    }
    section:last-child {
        padding-bottom: 0;
    }
    .container {
        padding: 0 1rem;
    }
    
    /*inner*/
    .inner {
        margin-bottom: 40px;
    }
    
    /*見出し*/
    .heading {
        margin-bottom: 40px;
        font-size: 40px;
        letter-spacing: 1px;
    }
    .headingSub {
        padding: .8rem 1rem;
        font-size: var(--15px);
    }
    .innerTitle {
        font-size: var(--15px);
    }

    /*text*/
    .innerText {
        font-size: var(--13px);
        letter-spacing: 2px;
        line-height: 1.6;
    }
    
    /*btn*/
    .btnWrap {
        margin: 1rem auto;
    }
    .button {
        padding: 10px 16px;
        font-size: var(--15px);
    }
    .button:before {
        font-size: var(--12px);
    }
    
    /*list*/
    .dataCap, .dataText {
        padding: 8px 0;
        font-size: var(--13px);
        border: none;
    }
    .dataCap {
        width: 6em;
    }
    .dataText {
        margin-left: 6em;
    }
    
    /*chara*/
    .thumb-wrapper {
        padding: 0 1rem 1rem;
    }
    .thumb-media img {
        border: 3px solid #fff;
        border-radius: 10px;
    }
    .swiper1 .swiper-slide {
        padding:0 1rem;
    }
    .swiper2 .swiper-slide {
        padding: 10px;
    }
    .swiper2 .innerText {
        font-size:var(--12px);
        letter-spacing:1px;
    }
    .swiper-button-next::after, .swiper-button-prev::after {
        font-size: 1.5rem;
    }
    
    /*pv*/
    #pv {
        padding: 1rem;
    }
    #pv .heading {
        margin-bottom: 1rem;
    }
    
    /*result*/
    .resultTitle {
        padding-top: 20px;
        line-height: 1.4;
        letter-spacing: 3px;
    }
    #result .innerText {
        font-size: 1rem;
    }
    .resultWrap {
        margin-bottom: 3rem;
    }
    .resultNo2 .resultNo, .resultNo3 .resultNo {
        font-size: 1rem;
    }
    .resultImg {
        padding: 8px;
    }
    
    /*staff*/
    .staffCap, .staffText {
        font-size: var(--12px);
    }
    
    /*footer*/
    #preFooter {
        font-size: var(--12px);
    }

    
}