@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Noto+Serif+JP:wght@400;500;600;700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Sawarabi+Mincho&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
 * 2. HEADER
 * 3. CONTENTS
 * 4. FOOTER
 * 5. INTERACTIONS
 * 6. 共通header 修正
 */

/*-------------------------------
 * 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: 1.6rem;
	background: #282A2F;
	background-size: 100%;
	color: #fff;
	line-height: 2;
	font-weight: 400;
	overflow: hidden;
}
@media (max-width: 1024px) {
    body {
        font-size: calc(13px + 3 * (100vw - 320px) / 704);
    }
}
@media (max-width: 767px) {
    body {
        line-height: 1.8;
    }
}

a {
    color: #e8cb64;
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    color: #e8cb64;
    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;
    }
}

.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
 * ------------------------------*/
.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; }

.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; }

@media (max-width: 767px) {
    .mt00-xs {
        margin-top: 0 !important;
    }
    .mt10-xs {
        margin-top: 1rem !important;
    }
    .mt15-xs {
        margin-top: 1.5rem !important;
    }
    .mt20-xs {
        margin-top: 2rem !important;
    }
    .mt30-xs {
        margin-top: 3rem !important;
    }
    .mt40-xs {
        margin-top: 4rem !important;
    }
    .mt50-xs {
        margin-top: 5rem !important;
    }
    .mb00-xs {
        margin-bottom: 0 !important;
    }
    .mb10-xs {
        margin-bottom: 1rem !important;
    }
    .mb15-xs {
        margin-bottom: 1.5rem !important;
    }
    .mb20-xs {
        margin-bottom: 2rem !important;
    }
    .mb30-xs {
        margin-bottom: 3rem !important;
    }
    .mb40-xs {
        margin-bottom: 4rem !important;
    }
    .mb50-xs {
        margin-bottom: 5rem !important;
    }
}

/* 1.2 Text
 * ------------------------------*/
p {
    margin: 1rem 0;
}
.text-left {
    text-align: left !important;
}
.text-center {
    text-align: center !important;
}
.text-right {
    text-align: right !important;
}
.text-justify {
    text-align: justify;
    text-justify: inter-ideograph;
}
@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;
    }
    .text-justify-xs {
        text-align: justify;
        text-justify: inter-ideograph;
    }
}

.txt-gold,
.txt-gold a,
.txt-gold a:hover {
    color: #e8cb64 !important;
}
.txt-white,
.txt-white a,
.txt-white a:hover {
    color: #fff !important;
}
.txt-indent {
    margin: 0;
    text-indent: -1em;
    padding-left: 1em;
}

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; }
@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;
    }
    .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;
    font-weight: 600;
    line-height: 1.8;
}
@media (max-width: 767px) {
    h1, h2, h3, h4 {
        line-height: 1.6;
    }
}

/* 1.4 Buttons
 * ------------------------------*/

/* 1.5 Other Elements
 * ------------------------------*/
/* 1.5.1 sns Icon ------------*/
.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: 4rem auto 0;
    max-width: 400px;
    text-align: center;
}
.social .icon_social {
    position: relative;
    right: 0;
    top: 0;
    z-index: 3;
}
@media (max-width: 767px) {
	.social {
		margin-top: 3rem;
	}
}

.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;
}

/*-------------------------------
 * 2. HEADER
 * ----------------------------*/
header {
    width: 100vw;
    margin: 0;
    padding: 0;
    position: relative;
    z-index: 10;
    background-size: cover !important;
    -webkit-animation: fadeIn 0.5s linear both;
    animation: fadeIn 0.5s linear both;
}

/*-------------------------------
 * 3. CONTENTS
 * ----------------------------*/
main {
    margin: 0;
    padding: 8rem 0 2rem;
    background: #282A2F url(../img/bg.jpg) center center repeat;
    background-size: cover;
}
.wrap {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 5rem;
    position: relative;
    z-index: 0;
}
.wrap::after {
    content: "";
    display: block;
    clear: both;
}
section {
    margin: 0;
    padding: 0;
    position: relative;
}
@media (max-width: 767px) {
	main {
		padding: 3rem 0 0.5rem;
	}
}
@media (max-width: 480px) {
    .wrap {
        padding: 0 1.5rem;
    }
}

.ttl {
	max-width: 996px;
	margin: 0 auto 3rem;
}
.sub {
	font-family: "Sawarabi Mincho", serif;
	font-weight: 400;
	font-style: normal;
	color: #e8cb64;
	font-size: 5rem;
	text-align: center;
	margin: 0 0 1rem;
	letter-spacing: 0.06em;
}
.subsub {
	font-family: "Sawarabi Mincho", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 2.8rem;
	text-align: center;
	letter-spacing: 0.06em;
	margin: 0 0 2rem;
}
.txt {
	font-family: "Sawarabi Mincho", serif;
	font-weight: 400;
	font-style: normal;
	font-size: 2rem;
	text-align: center;
	letter-spacing: 0.06em;
}
@media (max-width: 1024px) {
    .sub {
        font-size: calc(20px + 30 * (100vw - 320px) / 704);
    }
    .subsub {
    	font-size: calc(17px + 11 * (100vw - 320px) / 704);
    }
    .txt {
    	font-size: calc(15px + 5 * (100vw - 320px) / 704);
    }
}
@media (max-width: 767px) {
	.ttl {
		max-width: 90%;
		margin-bottom: 1rem;
	}
	.subsub {
		margin-bottom: 1rem;
	}
}

/*----- bnr list -----*/
ul.bnr-list {
	display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    gap: 20px 20px;
    margin: 7rem auto;
}
ul.bnr-list li {
	width: calc(100% / 4 - 15px );
}
ul.bnr-list li a:hover {
	opacity: 0.75;
	transition: 0.5s;
}
@media (max-width: 960px) {
	ul.bnr-list li {
		width: calc(100% / 2 - 10px );
	}
}
@media (max-width: 767px) {
	ul.bnr-list {
		gap: 15px 15px;
		margin: 2.5rem auto 4rem;
	}
	ul.bnr-list li {
		width: calc(100% / 2 - 8px );
	}
}

/*-------------------------------
 * 4. FOOTER
 * ----------------------------*/
footer {
    margin: 0;
    padding: 0;
    text-align: center;
}

footer ul {
	display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    gap: 5px 30px;
    margin: 0 0 3rem;
    font-size: 1.8rem;
}
footer ul li span {
	font-size: 1.6rem;
	display: inline-block;
	margin: 0 0.7rem;
}
@media (max-width: 1024px) {
	footer ul {
		font-size: calc(14px + 4 * (100vw - 320px) / 704);
		line-height: 1.7;
		margin-bottom: 1rem;
	}
    footer ul li span {
        font-size: calc(13px + 3 * (100vw - 320px) / 704);
    }
}
@media (max-width: 767px) {
	footer ul {
		line-height: 1.7;
		margin-bottom: 1rem;
	}
}

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

.fade {
	opacity: 0;
}
.fade.move {
	animation: fadeInUp forwards 0.5s 1 ease 0s normal;
}

/*--------- 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);
  }
  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);
  }
  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. 共通header 修正
 * ----------------------------*/
.cmn-header {
     position: relative;
}
.cmn-header__logo img {
     position: absolute;
     top: 10px;
}
@media screen and (max-width: 656px) {
    .cmn-header__logo img {
        top: 1.4444444vw;
    }
}
