@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Zen+Maru+Gothic:wght@400;500;700&display=swap');
@import url('https://use.typekit.net/glv0sbx.css');

@charset "UTF-8";

/*----------------------
 * 1. GENERAL
 *   1.1  Margin
 *   1.2  Text
 *   1.3  Titles and Subtitles
 *   1.4  Buttons
 *   1.5 Other Elements
 *        1.5.1 sns icon
 *        1.5.2 page top
 *        1.5.3 movie
 * 2. HEADER
 * 3. CONTENT
 * 4. FOOTER
 * 5. INTERACTIONS
 */

/*-------------------------------
 * 1.GENERAL
 * ----------------------------*/
html {
    font-size: 62.5%;
}
html,
body {
	overflow-x: hidden;
}
body {
    font-family: 'Noto Serif JP', serif;
    margin: 0;
    padding: 0;
    font-size: 2rem;
	background: #fff;
	color: #000;
	line-height: 1.8;
	font-weight: 500;
	overflow: hidden;
}
@media (max-width: 1024px) {
    body {
        font-size: calc(14px + 6 * (100vw - 320px) / 704);
    }
}

a {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    color: #000;
    text-decoration: underline;
    
}
a:focus {
  outline: none !important;
  overflow: hidden;
  text-decoration: none;
}
*:focus {
    outline: none;
}

a[href^="tel:"] {
	cursor: default;
	text-decoration: none;
}
a[href^="tel:"]:hover {
	text-decoration: none;
}
@media (max-width: 767px) {
	a[href^="tel:"] {
		cursor: pointer;
	}
}

small {
    display: inline-block;
    font-size: 1.4rem;
}
@media (max-width: 1024px) {
	small {
		font-size: calc(12px + 2 * (100vw - 320px) / 704);
	}
}

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

strong {
    font-weight: 600;
}

img {
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.sp,
.md,
.sp-md,
.sp-md-lg,
.md-lg,
.lg {
	display: none !important;
}
.md-lg-pc,
.lg-pc,
.pc {
    display: block !important;
}
@media (max-width: 1024px) {
    .lg,
    .md-lg,
    .sp-md-lg {
        display: block !important;
    }
    .pc {
        display: none !important;
    }
}
@media (max-width: 960px) {
    .lg-pc,
    .lg,
    .sp-md-none {
        display: none !important;
    }
    .md,
    .sp-md {
        display: block !important;
    }
}
@media (max-width: 767px) {
    .sp {
        display: block !important;
    }
    .md-lg-pc,
    .md-lg,
    .lg,
    .md,
    .pc,
    .sp-none {
        display: none !important;
    }
}
@media (max-width: 480px) {
    .sp-48-none {
        display: none !important;
    }
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

/* 1.1  Margin
 * ------------------------------*/
.mt-10 { margin-top: -1rem !important; }
.mt00 { margin-top: 0 !important; }
.mt05 { margin-top: 0.5rem !important; }
.mt10 { margin-top: 1rem !important; }
.mt15 { margin-top: 1.5rem !important; }
.mt20 { margin-top: 2rem !important; }
.mt30 { margin-top: 3rem !important; }
.mt40 { margin-top: 4rem !important; }
.mt50 { margin-top: 5rem !important; }
.mt60 { margin-top: 6rem !important; }
.mt70 { margin-top: 7rem !important; }
.mt80 { margin-top: 8rem !important; }
.mt90 { margin-top: 9rem !important; }
.mt100 { margin-top: 10rem !important; }

.mb-10 { margin-bottom: -1rem !important; }
.mb00 { margin-bottom: 0 !important; }
.mb05 { margin-bottom: 0.5rem !important; }
.mb10 { margin-bottom: 1rem !important; }
.mb15 { margin-bottom: 1.5rem !important; }
.mb20 { margin-bottom: 2rem !important; }
.mb30 { margin-bottom: 3rem !important; }
.mb40 { margin-bottom: 4rem !important; }
.mb50 { margin-bottom: 5rem !important; }
.mb60 { margin-bottom: 6rem !important; }
.mb70 { margin-bottom: 7rem !important; }
.mb80 { margin-bottom: 8rem !important; }
.mb90 { margin-bottom: 9rem !important; }
.mb100 { margin-bottom: 10rem !important; }

.mr00 { margin-right: 0 !important; }
.mr10 { margin-right: 1rem !important; }
.mr20 { margin-right: 2rem !important; }
.mr30 { margin-right: 3rem !important; }

.ml00 { margin-left: 0 !important; }
.ml10 { margin-left: 1rem !important; }
.ml20 { margin-left: 2rem !important; }
.ml30 { margin-left: 3rem !important; }

@media (max-width: 960px) {
    .mt10-md {
        margin-top: 1rem !important;
    }
    .mt20-md {
        margin-top: 2rem !important;
    }
    .mt30-md {
        margin-top: 3rem !important;
    }
    .mt40-md {
        margin-top: 4rem !important;
    }
    .mt50-md {
        margin-top: 5rem !important;
    }
    .mt60-md {
        margin-top: 6rem !important;
    }
    .mt70-md {
        margin-top: 7rem !important;
    }
    .mt80-md {
        margin-top: 8rem !important;
    }
    .mb10-md {
        margin-bottom: 1rem !important;
    }
    .mb20-md {
        margin-bottom: 2rem !important;
    }
    .mb30-md {
        margin-bottom: 3rem !important;
    }
    .mb40-md {
        margin-bottom: 4rem !important;
    }
    .mb50-md {
        margin-bottom: 5rem !important;
    }
    .mb60-md {
        margin-bottom: 6rem !important;
    }
    .mb70-md {
        margin-bottom: 7rem !important;
    }
    .mb80-md {
        margin-bottom: 8rem !important;
    }
}
@media (max-width: 767px) {
    .mt-10-xs {
        margin-top: -1rem !important;
    }
    .mt00-xs {
        margin-top: 0 !important;
    }
    .mt05-xs {
        margin-top: 0.5rem !important;
    }
    .mt10-xs {
        margin-top: 1rem !important;
    }
    .mt15-xs {
        margin-top: 1.5rem !important;
    }
    .mt20-xs {
        margin-top: 2rem !important;
    }
    .mt25-xs {
        margin-top: 2.5rem !important;
    }
    .mt30-xs {
        margin-top: 3rem !important;
    }
    .mt40-xs {
        margin-top: 4rem !important;
    }
    .mt50-xs {
        margin-top: 5rem !important;
    }
    .mb-10-xs {
        margin-bottom: -1rem !important;
    }
    .mb00-xs {
        margin-bottom: 0 !important;
    }
    .mb05-xs {
        margin-bottom: 0.5rem !important;
    }
    .mb10-xs {
        margin-bottom: 1rem !important;
    }
    .mb15-xs {
        margin-bottom: 1.5rem !important;
    }
    .mb20-xs {
        margin-bottom: 2rem !important;
    }
    .mb25-xs {
        margin-bottom: 2.5rem !important;
    }
    .mb30-xs {
        margin-bottom: 3rem !important;
    }
    .mb40-xs {
        margin-bottom: 4rem !important;
    }
    .mb50-xs {
        margin-bottom: 5rem !important;
    }
    .mr00-xs {
        margin-right: 0 !important;
    }
    .ml00-xs {
        margin-left: 0 !important;
    }
}

/* 1.2 Text
 * ------------------------------*/
p {
    margin: 1rem 0;
    text-align: justify;
    text-justify: inter-ideograph;
}
.text-left {
    text-align: left !important;
}
.text-center {
    text-align: center !important;
}
.text-right {
    text-align: right !important;
}
@media (max-width: 960px) {
     .text-left-md {
        text-align: left !important;
    }
    .text-center-md {
        text-align: center !important;
    }
    .text-right-md {
        text-align: right !important;
    }
}
@media (max-width: 767px) {
     .text-left-xs {
        text-align: left !important;
    }
    .text-center-xs {
        text-align: center !important;
    }
    .text-right-xs {
        text-align: right !important;
    }
}

.txt-red,
.txt-red a,
.txt-red a:hover {
    color: #cc0000 !important;
}
.txt-brown,
.txt-brown a,
.txt-brown a:hover {
    color: #bb621d !important;
}
.txt-brown-dark,
.txt-brown-dark a,
.txt-brown-dark a:hover {
    color: #662a07 !important;
}
.txt-yellow,
.txt-yellow a,
.txt-yellow a:hover {
    color: #ffee00 !important;
}
.txt-beige,
.txt-beige a,
.txt-beige a:hover {
    color: #fff5d4 !important;
}
.txt-green,
.txt-green a,
.txt-green a:hover {
    color: #7e8500 !important;
}

a.txt-underline,
.txt-underline {
    text-decoration: underline !important;
}
a.txt-underline:hover {
    text-decoration: none !important;
}

.f10 { font-size: 1rem !important; }
.f11 { font-size: 1.1rem !important; }
.f12 { font-size: 1.2rem !important; }
.f13 { font-size: 1.3rem !important; }
.f14 { font-size: 1.4rem !important; }
.f15 { font-size: 1.5rem !important; }
.f16 { font-size: 1.6rem !important; }
.f17 { font-size: 1.7rem !important; }
.f18 { font-size: 1.8rem !important; }
.f19 { font-size: 1.9rem !important; }
.f20 { font-size: 2rem !important; }
.f21 { font-size: 2.1rem !important; }
.f22 { font-size: 2.2rem !important; }
.f23 { font-size: 2.3rem !important; }
.f24 { font-size: 2.4rem !important; }
.f25 { font-size: 2.5rem !important; }
.f50 { font-size: 5rem !important; }
@media (max-width: 960px) {
    .f18, .f19 {
        font-size: 1.6rem !important;
    }
    .f20, .f21 {
        font-size: 1.7rem !important;
    }
    .f22, .f23 {
        font-size: 1.8rem !important;
    }
    .f24, .f25 {
        font-size: 2rem !important;
    }
}
@media (max-width: 767px) {
    .f13, .f14 {
        font-size: 1.2rem !important;
    }
    .f15, .f16 {
        font-size: 1.3rem !important;
    }
    .f17, .f18 {
        font-size: 1.4rem !important;
    }
    .f19, .f20, .f21 {
        font-size: 1.5rem !important;
    }
    .f22, .f23, .f24, .f25 {
        font-size: 1.6rem !important;
    }
    .f50 {
        font-size: 3rem !important;
    }
    .f25-xs {
        font-size: 2.5rem !important;
    }
    .f24-xs {
        font-size: 2.4rem !important;
    }
    .f23-xs {
        font-size: 2.3rem !important;
    }
    .f22-xs {
        font-size: 2.2rem !important;
    }
    .f21-xs {
        font-size: 2.1rem !important;
    }
    .f20-xs {
        font-size: 2rem !important;
    }
    .f19-xs {
        font-size: 1.9rem !important;
    }
    .f18-xs {
        font-size: 1.8rem !important;
    }
    .f17-xs {
        font-size: 1.7rem !important;
    }
    .f16-xs {
        font-size: 1.6rem !important;
    }
    .f15-xs {
        font-size: 1.5rem !important;
    }
    .f14-xs {
        font-size: 1.4rem !important;
    }
    .f13-xs {
        font-size: 1.3rem !important;
    }
    .f12-xs {
        font-size: 1.2rem !important;
    }
    .f11-xs {
        font-size: 1.1rem !important;
    }
    .f10-xs {
        font-size: 1rem !important;
    }
}

/* 1.3 Titles and Subtitles
 * ------------------------------*/
h1, h2, h3, h4 {
    margin: 0;
    padding: 0;
    line-height: 1.8;
    font-weight: 500;
}
@media (max-width: 767px) {
    h1, h2, h3, h4 {
        line-height: 1.5;
    }
}

/* 1.4 Buttons
 * ------------------------------*/
.btn {
    display: block;
    max-width: 100%;
    margin: 0 auto;
    border-radius: 0;
    font-size: 2.2rem;
    line-height: 1.5;
    padding: 0.7rem 0.5rem 1.1rem;
    box-sizing: border-box;
    border: none;
    background: #418dde;
    border: 4px solid #8fb5df;
    outline: none;
    transition: all .3s;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    font-weight: 400;
    text-align: center;
}
.btn:hover {
  text-decoration: none;
  opacity: 0.85;
  transition: 0.5s;
}
.btn:focus {
    outline: none;
    overflow: hidden;
    text-decoration: none;
}
.btn + .btn {
	margin-top: 1.5rem;
}
@media (max-width: 1024px) {
	.btn {
		font-size: calc(17px + 5 * (100vw - 320px) / 704);
	}
}
@media (max-width: 767px) {
    .btn {
        padding: 0.7rem 0.5rem 0.8rem;
    }
}

.btn-link {
    display: block;
    max-width: 320px;
    margin: 1.5rem 0 0;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 400;
    line-height: 1;
    padding: 0.5rem 1rem 0.7rem;
    box-sizing: border-box;
    border: 2px solid #dadada;
    outline: none;
    transition: all .3s;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
    color: #444444;
    background: #f5f5f5 url(../img/icon-arrow.png) 6px center no-repeat;
    background-size: 20px 20px;
}
.btn-link:hover {
    color: #444444;
    text-decoration: none;
    background-color: #fff;
}
.btn-link:focus {
    outline: none;
    overflow: hidden;
    text-decoration: none;
}
@media (max-width: 767px) {
    .btn-link {
        max-width: 280px;
        font-size: 1.4rem;
        margin: 1.5rem auto 0;
        padding: 0.8rem 1rem 1rem;
    }
}

/* 1.5 Other Elements
 * ------------------------------*/
/* 1.5.1 sns Icon ------------*/
#sns-list {
    width: 50px;
    height: 150px;
    padding: 1rem;
    position: fixed;
    top: 30vh;
    right: 0;
    margin: 0;
    background: #000;
    color: #fff;
    text-align: center;
    z-index: 10010 !important;
    box-sizing: border-box;
    border-top-left-radius: 6px;
    border-bottom-left-radius: 6px;
}
#sns-list .sub {
    margin: 0;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.5;
    font-family: 'Noto Sans JP',sans-serif !important;
}

#sns-list .fa-facebook-f,
#sns-list .fa-x-twitter {
	font-size: 2.1rem !important;
    color: #fff !important;
    margin-top: 2rem;
    display: block;
}
#sns-list .fa-facebook-f:hover,
#sns-list .fa-x-twitter:hover {
    text-decoration: none !important;
    opacity: 0.8;
    transition: 0.5s;
}
@media (max-width: 1024px) {
    #sns-list {
		top: 20vh;
	}
}
@media screen and (orientation:portrait) and (max-width: 1024px) {
	#sns-list {
		top: 13vh;
	}
}
@media (max-width: 767px) {
    #sns-list {
        display: none;
    }
}

.knt_general-set .icon_social {
    padding: 0;
    text-align: right;
}
.knt_general-set .icon_social .line {
    display: inline-block;
    line-height: 23px;
}
.knt_general-set .icon_social .line img {
    vertical-align: top;
}
.knt_general-set .icon_social iframe {
    max-width: 150px !important;
}
.knt_general-set .icon_social .twitter-share-button {
    height: 25px !important;
}

.social {
    margin: 0 auto;
    max-width: 400px;
}
.social .icon_social {
    position: relative;
    right: 0;
    top: 0;
    z-index: 3;
}
.knt_general-set,
.knt_general-set .icon_social .socialBoxON {
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-ms-flex-pack: center;
	justify-content: center;
}
.knt_general-set .icon_social .socialBoxON {
	margin-bottom: 30px;
}
.knt_general-set .icon_social .socialBoxON > iframe {
	margin: 0 5px;
}

/* 1.5.2 page top ------------*/
#pagetop {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 20px;
    width: 91px;
    height: 91px;
    z-index: 1000;
    background: url(../img/pagetop.png) 50% 50% no-repeat;
    background-size: contain;
    text-indent: 100% !important;
	white-space: nowrap;
	overflow: hidden;
}
#pagetop:hover {
    cursor: pointer;
    opacity: 0.8;
    transition: 0.5s;
}
@media (max-width: 960px) {
    #pagetop {
        width: 55px;
        height: 55px;
    }
}
@media (max-width: 767px) {
    #pagetop {
        right: 10px;
    }
}

/* 1.5.3 movie ------------*/
.movie {
	max-width: 600px;
    margin: 2rem auto 0;
    aspect-ratio: 16 / 9;
}
.movie iframe {
	width: 100%;
	height: 100%;
}

/*-------------------------------
 * 2. HEADER
 * ----------------------------*/
header {
    width: 100vw;
    height: calc(600 / 1280 * 100vw);
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
}
header .mv-mask {
	width: 100vw;
    height: calc(600 / 1280 * 100vw);
    background: url(../img/mv-mask.png?=v2) center center no-repeat;
    background-size: cover;
    margin: 0;
    padding: 0;
    position: relative;
    overflow: hidden;
    z-index: 10;
}
header video {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    min-width: 100%;
    min-height: 100%;
    margin: 0;
    padding: 0;
}
@media (max-width: 1024px) {
    header,
    header .mv-mask {
        height: 500px;
    }
}
@media (max-width: 960px) {
    header,
    header .mv-mask {
        height: 450px;
    }
}
@media (max-width: 480px) {
    header,
    header .mv-mask {
        height: 360px;
    }
}
@media (max-width: 380px) {
    header,
    header .mv-mask {
        height: calc(350 / 380 * 100vw);
    }
}

.mv-ttl {
    width: calc(1000 / 1280 * 100vw);
    margin: 0;
    position: absolute;
    top: calc(30 / 1280 * 100vw);
    left: 50%;
    transform: translateX(-50%);
    z-index: 20;
}
@media (max-width: 1024px) {
	.mv-ttl {
		width: 800px;
		top: 40px;
	}
}
@media (max-width: 960px) {
	.mv-ttl {
		width: 700px;
	}
}
@media (max-width: 767px) {
	.mv-ttl {
		top: 12px;
		max-width: 450px;
	}
}
@media (max-width: 480px) {
	.mv-ttl {
		max-width: 360px;
	}
}
@media (max-width: 380px) {
	.mv-ttl {
		max-width: calc(350 / 380 * 100vw);
	}
}

/*-------------------------------
 * 3. CONTENT
 * ----------------------------*/
main {
    padding: 0;
    margin: 0;
}
section {
    margin: 0;
    padding: 0;
}
.wrap {
    max-width: 1140px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 0;
}
.wrap::after {
    content: "";
    display: block;
    clear: both;
}
@media (max-width: 1140px) {
    .wrap {
        padding-left: 5rem;
        padding-right: 5rem;
    }
}
@media (max-width: 960px) {
    .wrap {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}
@media (max-width: 767px) {
    .wrap {
        max-width: 100% !important;
        padding-left: 5rem;
        padding-right: 5rem;
    }
}
@media (max-width: 480px) {
    .wrap {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

.flex-box {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
}
.flex-box .col {
    box-sizing: border-box;
}

/*----- info -----*/
.info-wrap {
    padding: 5rem 0;
    background: #E9A81D;
	text-align: center;
}
.info-wrap .sub {
    font-size: 2.4rem;
}
.info-wrap strong {
    display: inline-block;
    margin-left: 0.5rem;
    font-size: 2.9rem;
}
@media (max-width: 1024px) {
	.info-wrap {
		padding: 4rem 0;
	}
	.info-wrap .sub {
		font-size: calc(15px + 9 * (100vw - 320px) / 704);
	}
	.info-wrap strong {
		font-size: calc(17px + 12 * (100vw - 320px) / 704);
	}
}
@media (max-width: 960px) {
	.info-wrap {
		padding: 3rem 0;
	}
}
@media (max-width: 767px) {
	.info-wrap {
		padding-bottom: 3rem;
	}
	.info-wrap strong {
		margin-left: 0.2rem;
	}
}

/*----- graph -----*/
.graph-wrap {
	text-align: center;
	padding: 3rem 0;
}
.graph-wrap .sub {
	font-size: 2.4rem;
	margin: 0;
}
.graph-wrap .sub span {
	display: block;
	margin-top: 0.5rem;
	font-size: 2rem;
}
.graph-wrap .subsub {
	font-size: 2rem;
	margin: 0 0 1.5rem;
}
.graph-wrap .subsub span {
    font-family: "trajan-pro-3", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 3rem;
    color: #ffae00;
    display: inline-block;
    margin-right: 1rem;
    vertical-align: -8%;
}
@media (max-width: 1024px) {
	.graph-wrap .sub {
		font-size: calc(16px + 8 * (100vw - 320px) / 704);
	}
	.graph-wrap .sub span {
		font-size: calc(14px + 6 * (100vw - 320px) / 704);
	}
    .graph-wrap .subsub {
        font-size: calc(14px + 6 * (100vw - 320px) / 704);
    }
    .graph-wrap .subsub span {
    	font-size: calc(18px + 12 * (100vw - 320px) / 704);
    }
}
@media (max-width: 767px) {
	.graph-wrap {
		padding: 2.5rem 0;
	}
	.graph-wrap .sub span {
		margin-top: 0.8rem;
	}
}

.graph-box {
	margin: 2rem auto 3rem;
	gap: 0 100px;
}
.graph-box .col {
	width: calc(100% / 2 - 50px );
}
.graph-box .col img {
	max-width: 80%;
}
@media (max-width: 1024px) {
	.graph-box {
		gap: 0 50px;
	}
	.graph-box .col {
		width: calc(100% / 2 - 25px );
	}
}
@media (max-width: 960px) {
	.graph-box {
		gap: 30px 0;
	}
	.graph-box .col {
		width: 100%;
	}
	.graph-box .col img {
		max-width: 70%;
	}
	.graph-box .col img.graph01 {
		margin-top: -4rem;
	}
	.graph-box .col img.graph02 {
		margin-left: 6.9vw;
	}
}
@media (max-width: 767px) {
	.graph-box {
		margin-bottom: 2rem;
	}
	.graph-box .col img.graph01 {
		margin-top: -3rem;
	}
}
@media (max-width: 480px) {
	.graph-box .col img {
		max-width: 80%;
	}
	.graph-box .col img.graph02 {
		margin-left: 3vw;
	}
}

/*----- pancierge -----*/
.pancierge-wrap {
    padding: 1.5rem 0 4rem;
    background: url(../img/bg-grade.png) top center repeat-x;
    background-size: contain;
}
@media (max-width: 767px) {
	.pancierge-wrap {
		padding-bottom: 3rem;
		background-image: url(../img/bg-grade-sp.png);
	}
}

.pancierge-wrap .sub {
	font-size: 3.4rem;
	text-align: center;
}
.pancierge-wrap .sub .num {
	display: inline-block;
	font-size: 5.6rem;
	margin: 0 0.5rem;
	vertical-align: -7%;
}
.pancierge-wrap .sub strong {
	display: inline-block;
	font-size: 4rem;
	font-weight: 500;
}
@media (max-width: 1024px) {
	.pancierge-wrap .sub {
		line-height: 1.4;
		margin-bottom: 3rem;
		font-size: calc(16px + 18 * (100vw - 320px) / 704);
	}
	.pancierge-wrap .sub .num {
		font-size: calc(25px + 31 * (100vw - 320px) / 704);
	}
	.pancierge-wrap .sub strong {
		font-size: calc(18px + 22 * (100vw - 320px) / 704);
	}
}
@media (max-width: 767px) {
	.pancierge-wrap .sub {
		margin-bottom: 2rem;
	}
}

.pancierge-box {
    max-width: 880px;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: center;
    align-content: center;
    margin: 4rem auto 0;
}
.pancierge-box .img-area {
    width: 25%;
    box-sizing: border-box;
}
.pancierge-box .txt-area {
    width: 72%;
    box-sizing: border-box;
    color: #444444;
}
.pancierge-box .logo-pancierge {
    max-width: 80%;
    height: auto;
}
.pancierge-box .subsub {
    margin: 0 0 0.5rem;
    font-size: 1.8rem;
    font-weight: 500;
}
.pancierge-box .sub-txt {
    margin: 0;
    font-size: 1.6rem;
    font-weight: 400;
}
.pancierge-box .txt {
    font-size: 1.4rem;
    margin: 0;
}
@media (max-width: 1024px) {
	.pancierge-box .subsub {
		font-size: calc(14px + 4 * (100vw - 320px) / 704);
	}
	.pancierge-box .sub-txt {
		font-size: calc(13px + 3 * (100vw - 320px) / 704);
	}
	.pancierge-box .txt {
		font-size: calc(12px + 2 * (100vw - 320px) / 704);
	}
}
@media (max-width: 960px) {
    .pancierge-box .img-area {
        width: 30%;
    }
    .pancierge-box .txt-area {
        width: 67%;
    }
}
@media (max-width: 767px) {
    .pancierge-box {
        margin-top: 2rem;
    }
    .pancierge-box .logo-pancierge {
        max-width: 100%;
    }
    .pancierge-box .subsub {
        margin: ;
    }
}

/*----- comment -----*/
.comment-wrap {
    padding: 5rem 0;
    background: #E2D5CA url(../img/bg-comment.png) 50% 20% no-repeat;
    background-size: cover;
}
@media (min-width: 1920px) {
	.comment-wrap {
    	padding-top: calc(80 / 1920 * 100vw);
    	padding-bottom: calc(80 / 1920 * 100vw);
    }
}
@media (min-width: 2200px) {
	.comment-wrap {
    	padding-top: calc(200 / 2200 * 100vw);
    	padding-bottom: calc(200 / 2200 * 100vw);
    }
}
@media (max-width: 1440px) {
	.comment-wrap {
		padding: 5rem 0 4rem;
		background-position: 50% 7%;
	}
}
@media (max-width: 1024px) {
	.comment-wrap {
		background-image: url(../img/bg-comment-sp.png);
		background-position: top center;
	}
}
@media (max-width: 767px) {
	.comment-wrap {
		padding: 3rem 0 6rem;
	}
}

.comment-wrap .sub {
	max-width: 580px;
	margin: 0 auto 5rem;
}
.comment-wrap .txt-catch {
	font-weight: 500;
	font-size: 3.4rem;
	text-align: center;
	margin: -0.5rem 0 0;
}
@media (max-width: 1024px) {
    .comment-wrap .txt-catch {
    	font-size: calc(18px + 16 * (100vw - 320px) / 704);
    }
}
@media (max-width: 767px) {
	.comment-wrap .sub {
		max-width: 60%;
		margin-bottom: 3rem;
	}
	.comment-wrap .txt-catch {
		margin-top: 0;
	}
}
@media (max-width: 480px) {
	.comment-wrap .sub {
		max-width: 70%;
	}
}

.comment-box {
    width: 1000px;
    margin: 3rem auto 5rem;
    font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 400;
	font-style: normal;
}
.comment-box .w-box {
    border-radius: 40px;
    padding: 2rem;
    background: #fff;
    text-align: center;
    margin: 3.5rem auto 0;
    position: relative;
}
.comment-box .txt {
    text-align: center;
    line-height: 2;
}
.comment-box .ten-left {
    width: 30px;
    position: absolute;
    margin: 0;
    top: 30px;
    left: 30px;
}
.comment-box .ten-right {
    width: 30px;
    position: absolute;
    margin: 0;
    top: 30px;
    right: 30px;
}
@media (max-width: 1024px) {
    .comment-box {
        width: 890px;
    }
}
@media (max-width: 960px) {
    .comment-box {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .comment-box {
        margin: 0 auto 5rem;
    }
    .comment-box .w-box {
        border-radius: 20px;
        padding: 0.5rem 1rem;
        margin-top: 1.5rem;
    }
    .comment-box .ten-left {
        width: 15px;
        top: 20px;
        left: 15px;
    }
    .comment-box .ten-right {
        width: 15px;
        top: 20px;
        right: 15px;
    }
    .comment-box .txt {
        font-size: 1.3rem;
        line-height: 1.8;
    }
}
@media (max-width: 320px) {
	.comment-box .txt {
        font-size: 1.2rem;
    }
}

/*----- lineup -----*/
.lineup-wrap {
    padding: 5rem 0;
    background: url(../img/bg-lineup.png) center center no-repeat;
    background-size: cover;
    color: #fff;
    position: relative;
}
@media (max-width: 767px) {
	.lineup-wrap {
		padding: 3rem 0;
	}
}

.lineup-wrap .sub {
    font-size: 3.6rem;
    color: #eedd99;
    margin: 0 0 2rem;
    font-family: "Zen Maru Gothic", sans-serif;
	font-weight: 400;
	font-style: normal;
	text-align: center;
}
@media (max-width: 1024px) {
	.lineup-wrap .sub {
		font-size: calc(23px + 13 * (100vw - 320px) / 704);
	}
}
@media (max-width: 767px) {
	.lineup-wrap .sub {
		margin-bottom: 0;
	}
}

.lineup-box {
	margin: 5rem auto 0;
	font-weight: 400;
}
.lineup-box .img-area {
	width: 65%;
}
.lineup-box .txt-area {
	width: 35%;
	padding-left: 3rem;
}
.lineup-box .sub-waku {
    font-size: 1.6rem;
    font-weight: 400;
    text-align: center;
    color: #402311;
    border-radius: 30px;
    background: #ead29c;
    line-height: 1;
    padding: 0.8rem 0.5rem 0.8rem;
    margin: 0 0 1.5rem;
}
.lineup-box .price {
	display: inline-block;
    font-size: 1.8rem;
    color: #fff;
    margin-left: 2rem;
}
.lineup-box .price span {
	display: inline-block;
}
.lineup-box .price:hover {
	color: #fff;
}
.lineup-box .price .num {
    font-size: 2.4rem;
    margin : 0 0.5rem;
    vertical-align: -3%;
}
.lineup-box .price .tax {
    font-size: 1.6rem;
}
.lineup-box .txt-detail {
	margin: -0.5rem 0 1rem;
}
.lineup-box .txt-detail small {
	padding-left: 2.8rem;
}
.lineup-box .txt-buy {
	font-size: 1.8rem;
	margin: 0 0 1rem;
}
.lineup-box .txt-buy small {
	margin-left: 1rem;
}
.lineup-box .txt-cap {
	font-size: 1.6rem;
	margin: 1rem 0 0;
	text-align: center;
}
@media (max-width: 1024px) {
	.lineup-box .img-area {
		width: 60%;
	}
	.lineup-box .txt-area {
		width: 40%;
		padding-left: 1rem;
	}
	.lineup-box .sub-waku {
		font-size: calc(13px + 3 * (100vw - 320px) / 704);
	}
	.lineup-box .price {
		font-size: calc(14px + 4 * (100vw - 320px) / 704);
	}
	.lineup-box .price .num {
		font-size: calc(17px + 7 * (100vw - 320px) / 704);
	}
	.lineup-box .price .tax {
		font-size: calc(13px + 3 * (100vw - 320px) / 704);
	}
	.lineup-box .txt-buy {
		font-size: calc(14px + 4 * (100vw - 320px) / 704);
	}
	.lineup-box .txt-cap {
		font-size: calc(13px + 3 * (100vw - 320px) / 704);
	}
}
@media (max-width: 960px) {
	.lineup-box {
		max-width: 90%;
		gap: 20px 0;
	}
	.lineup-box .img-area,
	.lineup-box .txt-area {
		width: 100%;
	}
	.lineup-box .txt-area {
		padding-left: 0;
	}
	.lineup-box .txt-detail small {
		padding-left: 2.4rem;
	}
}
@media (max-width: 767px) {
	.lineup-box {
		margin-top: 2.5rem;
	}
	.lineup-box .txt-detail small {
		padding-left: 2rem;
	}
	.lineup-box .txt-cap {
		margin: -1rem 0 0;
		text-align: right;
	}
	.lineup-box .sub-waku {
		padding: 0.8rem 0.5rem 0.9rem;
	}
}

.lineup-circle-box {
	max-width: 700px;
	margin: 0 auto;
	color: #000;
	font-weight: 400;
	text-align: center;
	gap: 0 50px;
}
.lineup-circle-box .col {
	width: calc(100% / 3 - 34px );
}
.lineup-circle-box .col div {
	width: 190px;
	height: 190px;
	display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
	border-radius: 50%;
	background: #96C8FF;
	font-size: 1.9rem;
	overflow-wrap: break-word;
}
.lineup-circle-box .col div strong {
	font-size: 2.6rem;
	font-weight: 400;
}
.lineup-circle-box .col .wide {
	width: 100%;
}
@media (max-width: 1024px) {
	.lineup-circle-box {
		margin-top: 4rem;
	}
	.lineup-circle-box .col div {
		font-size: calc(13px + 6 * (100vw - 320px) / 704);
	}
	.lineup-circle-box .col div strong {
		font-size: calc(16px + 10 * (100vw - 320px) / 704);
	}
}
@media (max-width: 960px) {
	.lineup-circle-box {
		gap: 0 30px;
	}
	.lineup-circle-box .col {
		width: calc(100% / 3 - 20px );
	}
}
@media (max-width: 480px) {
	.lineup-circle-box {
		gap: 0 20px;
		margin-top: 3rem;
	}
	.lineup-circle-box .col {
		width: calc(100% / 3 - 14px );
	}
	.lineup-circle-box .col div {
		width: calc(130 / 480 * 100vw);
		height: calc(130 / 480 * 100vw);
		line-height: 1.4;
	}
}
@media (max-width: 390px) {
	.lineup-circle-box .col div {
		width: calc(110 / 390 * 100vw);
		height: calc(110 / 390 * 100vw);
	}
}

/*-------------------------------
 * 4. FOOTER
 * ----------------------------*/
footer {
    margin: 0;
    padding: 5rem 0;
}
footer .copy {
    font-size: 1.6rem;
    color: #5d5d5d;
    text-align: center;
    font-family: 'Noto Sans JP',sans-serif !important;
}
@media (max-width: 767px) {
    footer {
        padding: 3rem;
    }
    footer .copy {
        font-size: 1.2rem;
    }
}

/*-------------------------------
 * 5. INTERACTIONS
 * ----------------------------*/
.opacity:hover {
  opacity: 0.75;
  transition: 0.5s;
}

/*--------- keyframes --------- */
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@-webkit-keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  30% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
  }
  30% {
    opacity: 0;
    -webkit-transform: translate3d(0, 20px, 0);
    transform: translate3d(0, 20px, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
  to {
    opacity: 1;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
  }
}

.fadeInUp {
  -webkit-animation-name: fadeInUp;
  animation-name: fadeInUp;
}

/*-------------------------------
 * 6. NOTICEBAR
 * ----------------------------*/
#knt_noticebar {
    background: #e7eaec;
    width: 100%;
    font-family: 'Noto Sans JP',sans-serif !important;
}
#knt_noticebar p {
    background: url(/common/imgs/i-attention.gif) 3% no-repeat;
    color: #000;
    font-size: 12px;
    line-height: 1.7;
    margin: 0;
    padding: 10px 0;
    text-align: left;
}
@media (max-width: 575.98px) {
    #knt_noticebar p {
        font-size: 11px;
    }
}
