@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@400;500;700;900&family=Noto+Serif+JP:wght@400;500;600;700;900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@700&display=swap');

@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: 'Hiragino Kaku Gothic ProN W3', 'ヒラギノ角ゴ ProN W3', "游ゴシック",YuGothic, sans-serif;
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
	background: #fff;
	color: #000;
	line-height: 1.8;
	font-weight: 500;
	overflow: hidden;
}
@media (max-width: 991px) {
    body {
        font-size: 1.5rem;
    }
}
@media (max-width: 767px) {
    body {
        font-size: 1.4rem;
    }
}

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

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

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

strong {
    font-weight: 600;
    font-family: 'Hiragino Kaku Gothic ProN W6', 'ヒラギノ角ゴ ProN W6', "游ゴシック",YuGothic, sans-serif;
}

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;
}
.pc,
.pc-lg {
    display: block !important;
}
@media (max-width: 1199px) {
    .lg,
    .md-lg,
    .sp-md-lg {
        display: block !important;
    }
    .pc {
        display: none !important;
    }
}
@media (max-width: 991px) {
    .pc-lg {
        display: none !important;
    }
    .md,
    .sp-md {
        display: block !important;
    }
}
@media (max-width: 767px) {
    .sp {
        display: block !important;
    }
    .md-lg,
    .lg,
    .md,
    .pc {
        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; }
.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; }

.mb00 { margin-bottom: 0 !important; }
.mb05 { margin-bottom: 0.5rem !important; }
.mb10 { margin-bottom: 1rem !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; }

@media (max-width: 767px) {
    .mt00-xs {
        margin-top: 0 !important;
    }
    .mt10-xs {
        margin-top: 1rem !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;
    }
    .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;
}
@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: #b90000 !important;
}
.txt-black,
.txt-black a,
.txt-black a:hover {
    color: #000 !important;
}
.txt-white,
.txt-white a,
.txt-white a:hover {
    color: #fff !important;
}
.txt-orenge,
.txt-orenge a,
.txt-orenge a:hover {
    color: #ffa94d !important;
}

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

.txt-indent {
    text-indent: -1em;
    padding-left: 1em;
    margin: 0;
}

.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: 991px) {
    .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;
    line-height: 1.6;
    font-family: 'Hiragino Kaku Gothic ProN W6', 'ヒラギノ角ゴ ProN W6', "游ゴシック",YuGothic, sans-serif !important;
    font-weight: 600;
}
.sub-bg {
    margin: 0 0 2.5rem;
    padding: 5px 10px;
    font-size: 2rem;
    text-align: center;
    border-radius: 30px;
    background: #fff;
}
@media (max-width: 767px) {
    .sub-bg {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }
}

/* 1.4 Buttons
 * ------------------------------*/
.btn-link {
    display: block;
    max-width: 550px;
    margin: 2.5rem auto 0;
    border-radius: 50px;
    font-size: 1.8rem;
    font-weight: 600;
    font-family: 'Hiragino Kaku Gothic ProN W6', 'ヒラギノ角ゴ ProN W6', "游ゴシック",YuGothic, sans-serif !important;
    padding: 1.3rem 1rem;
    box-sizing: border-box;
    outline: none;
    transition: all .3s;
    cursor: pointer;
    overflow: hidden;
    text-decoration: none;
    text-align: center;
    color: #fff;
    background: #555c63 url(../img/icon-window.png?=v2) 30px center no-repeat;
    background-size: 25px 20px;
    position: relative;
}
.btn-link.mail {
    background: #555c63 url(../img/icon-mail.png?=v2) 30px center no-repeat;
    background-size: 26px 20px;
}
.btn-link.arrow {
    background: #453c3a url(../img/icon-arrow.png) 30px center no-repeat;
    background-size: 23px 27px;
    font-size: 2.4rem;
}
.btn-link.contact {
    background-image: none;
    overflow: visible;
    border: 3px solid #5dafe6;
    font-size: 2rem;
    padding-left: 3rem;
}
.btn-link.contact i {
    width: 81px;
    height: 83px;
    display: block;
    position: absolute;
    top: -16px;
    left: 25px;
    background: url(../img/icon-contact.png) center center no-repeat;
    background-size: contain;
}
.btn-link:hover {
    text-decoration: none;
    color: #fff;
    background-color: #444444;
}
.btn-link.arrow:hover {
    background-color: #302a28;
}
.btn-link:focus {
    outline: none;
    overflow: hidden;
    text-decoration: none;
}
.btn-link + .sub-bg {
    margin-top: 4rem;
}
.btn-link .small {
    font-size: 1.6rem;
}
@media (max-width: 1199px) {
    .btn-link {
        background-position: 20px center !important;
    }
    .btn-link.pd {
        padding-left: 4.5rem;
    }
    .btn-link .small {
        font-size: 1.5rem;
    }
}
@media (max-width: 991px) {
    .btn-link.pd {
        padding-left: 0;
    }
}
@media (max-width: 767px) {
    .btn-link {
        max-width: 100%;
        font-size: calc(1.3rem + (1vw - 0.32rem) * 1.1186);
        margin: 2rem auto 0;
        padding: 0.8rem 0.5rem 0.8rem 1.6rem;
        background-position: 15px center !important;
        background-size: 20px 16px;
    }
    .btn-link.mail {
        background-size: 20px 15px;
    }
    .btn-link.arrow {
        font-size: calc(1.5rem + (1vw - 0.32rem) * 2.0134);
        background-size: 20px 23px;
    }
    .btn-link.contact {
        margin-top: 2.5rem;
        font-size: calc(1.3rem + (1vw - 0.32rem) * 1.5660);
    }
    .btn-link.contact i {
        width: 50px;
        height: 52px;
        top: -8px;
        left: 15px;
    }
    .btn-link + .sub-bg {
        margin-top: 3rem;
    }
    .btn-link .small {
        font-size: calc(1.2rem + (1vw - 0.32rem) * 0.8949);
    }
}
@media (max-width: 320px) {
    .btn-link.contact {
        padding-left: 5rem;
    }
}

/* 1.5 Other Elements
 * ------------------------------*/
/* 1.5.1 sns Icon ------------*/
#sns-list {
    width: 50px;
    height: 150px;
    padding: 1rem;
    position: fixed;
    top: 190px;
    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: "游ゴシック",YuGothic, sans-serif !important;
}
#sns-list .fa-facebook,
#sns-list .fa-twitter {
	font-size: 2.1rem !important;
    color: #fff !important;
    margin-top: 2rem;
    display: block;
}
#sns-list .fa-facebook:hover,
#sns-list .fa-twitter:hover {
    text-decoration: none !important;
    opacity: 0.8;
    transition: 0.5s;
}
@media (max-width: 1199px) {
    #sns-list {
        top: 80px;
    }
}
@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: 3rem;
}
.knt_general-set .icon_social .socialBoxON > iframe {
	margin: 0 0.5rem;
}

/* 1.5.2 page top ------------*/
#pagetop {
    display: none;
    position: fixed;
    bottom: 15px;
    right: 15px;
    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: 991px) {
    #pagetop {
        width: 55px;
        height: 55px;
    }
}
@media (max-width: 767px) {
    #pagetop {
        right: 15px;
    }
}

/* 1.5.3 movie ------------*/
.movie {
    margin: 0 auto 2rem;
    padding: 0;
}
.movie iframe {
	margin: 0;
	padding: 0;
}
@media (max-width: 767px) {
    .movie {
        margin-bottom: 1.7rem;
    }
	.movie {
		position: relative;
		padding-bottom: 75%;
		height: 0;
		overflow: hidden;
	}
	.movie iframe {
		position: absolute;
		top: 0;
		left: 0;
		width: 100% !important;
		height: 100% !important;
	}
}

/*-------------------------------
 * 2. HEADER
 * ----------------------------*/
header {
    width: 100%;
    height: 700px;
    margin: 0;
    padding: 0;
    z-index: 0;
    background: url(../img/main.jpg?=v2) center center no-repeat;
    background-size: cover !important;
    -webkit-animation: fadeIn 1s linear both;
    animation: fadeIn 1s linear both;
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}
header .container {
    position: relative;
    height: 700px;
}
header .main-ttl {
    margin: 0 auto;
    position: absolute;
    bottom:  -1px;
    left: 0;
    right: 0;
}
@media (max-width: 1199px) {
    header,
    header .container {
        height: 550px;
    }
}
@media (max-width: 991px) {
    header,
    header .container {
        height: 400px;
    }
}
@media (max-width: 767px) {
    header,
    header .container {
        height: 300px;
    }
}
@media (max-width: 575px) {
    header {
        background-image: url(../img/main-sp.jpg?=v2);
    }
}
@media (max-width: 380px) {
    header,
    header .container {
        height: 280px;
    }
}
@media (max-width: 360px) {
    header,
    header .container {
        height: 270px;
    }
}
@media (max-width: 320px) {
    header,
    header .container {
        height: 240px;
    }
}

/*-------------------------------
 * 3. CONTENT
 * ----------------------------*/
main {
    width: 100%;
    margin: 0;
    padding: 0;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  padding: 0 1.5rem;
  position: relative;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
    padding: 0;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

section {
    margin: 0;
    padding: 0;
}

.flex-box {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: flex-start;
    align-content: flex-start;
}
.flex-box .col {
    width: 47.5%;
    margin: 0;
    box-sizing: border-box;
}
@media (max-width: 767px) {
    .flex-box {
        display: block;
    }
    .flex-box .col {
        width: 100%;
    }
    .flex-box .col + .col {
        margin-top: 2.5rem;
    }
}

/*----- Info -----*/
.info-wrap {
    padding: 6rem 0 7rem;
}
.info-wrap .sub {
    margin: 0 0 3rem;
}
.info-wrap .subsub {
    font-size: 2rem;
    margin: 0;
    text-align: center;
    line-height: 1.8;
}
.info-wrap .txt-read {
    margin: 4rem auto 0;
}
.info-wrap .sub-txt {
    margin: 6rem auto 2rem;
    text-align: center;
    font-size: 2rem;
}
@media (max-width: 991px) {
    .info-wrap .subsub {
        font-size: 1.8rem;
    }
    .info-wrap .sub-txt {
        font-size: 1.8rem;
    }
}
@media (max-width: 767px) {
    .info-wrap {
        padding: 4rem 0;
    }
    .info-wrap .sub {
        margin-bottom: 1.5rem;
    }
    .info-wrap .subsub {
        font-size: calc(1.4rem + (1vw - 0.32rem) * 1.3423);
    }
    .info-wrap .txt-read {
        margin-top: 2rem;
    }
    .info-wrap .sub-txt {
        font-size: calc(1.4rem + (1vw - 0.32rem) * 1.3423);
        margin: 2.5rem auto 1.5rem;
    }
}

.info-wrap .flex-box {
    max-width: 970px;
    margin: 0 auto;
    align-items: center;
    align-content: center;
}
.info-wrap .flex-box .img-area {
    width: 68%;
}
.info-wrap .flex-box .txt-area {
    width: 27%;
}
@media (max-width: 767px) {
    .info-wrap .flex-box .col {
        width: 100%;
    }
}

.info-wrap .waku-box {
    max-width: 970px;
    margin: 0 auto;
    box-shadow: 1px 0px 6px rgba(0,0,0,0.2);
    background-image: linear-gradient(0deg, rgba(244, 241, 241, 0.6), rgba(255, 255, 255, 1));
    border-radius: 8px;
    padding: 2rem 3rem;
    font-family: 'Noto Sans JP', sans-serif !important;
    font-weight: 400;
    box-sizing: border-box;
}
.info-wrap .waku-box p {
    margin: 0;
}
.info-wrap .waku-box strong {
    display: inline-block;
    font-family: 'Noto Sans JP', sans-serif !important;
    font-weight: 900;
}
.info-wrap .waku-box span {
    font-size: 2rem;
}
@media (max-width: 767px) {
    .info-wrap .waku-box {
        padding: 1rem 1.5rem;
        text-align: center;
    }
    .info-wrap .waku-box.small {
        width: 70%;
    }
    .info-wrap .waku-box strong {
        margin-top: -0.7rem;
    }
    .info-wrap .waku-box span {
        font-size: calc(1.7rem + (1vw - 0.32rem) * 0.6711);
    }
}

/*----- Teian -----*/
.teian-wrap {
    padding: 7rem 0;
    background: #a49788;
}
.teian-wrap .ttl {
    margin: 0 auto 5rem;
}
.teian-wrap .sub {
    color: #ffee00;
    font-size: 1.8rem;
    margin: 0 0 2rem;
}
@media (max-width: 991px) {
    .teian-wrap .sub {
        margin: 2rem 0 1rem;
        text-align: center;
    }
}
@media (max-width: 767px) {
    .teian-wrap {
        padding: 3rem 0 2rem;
    }
    .teian-wrap .ttl {
        margin-bottom: 2rem;
    }
    .teian-wrap .ttl img {
        width: auto;
        height: 30px;
    }
    .teian-wrap .sub {
        font-size: calc(1.4rem + (1vw - 0.32rem) * 1.1186);
        margin: 1.5rem 0 1rem;
    }
}

.teian-wrap .flex-box {
    margin: 0 0 6rem;
}
.teian-wrap .flex-box:last-of-type {
    margin-bottom: 0;
}
.teian-wrap .flex-box .img-area {
    width: 35%;
}
.teian-wrap .flex-box .txt-area {
    width: 62%;
}
@media (max-width: 991px) {
    .teian-wrap .flex-box .col {
        width: 100%;
    }
    .teian-wrap .flex-box .img-area img {
        width: 60%;
    }
}
@media (max-width: 767px) {
    .teian-wrap .flex-box {
        margin-bottom: 3rem;
    }
    .teian-wrap .flex-box .col {
        margin-top: 0;
    }
    .teian-wrap .flex-box .img-area img {
        width: 100%;
    }
}

.teian-wrap .txt-box {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
    background: #f5f0ee;
    padding: 1rem 2rem 1rem 3rem;
    border-radius: 20px;
    margin: 2.5rem 0 0;
}
.teian-wrap .txt-box div:nth-of-type(1) {
    width: 15%;
    box-sizing: border-box;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    text-align: center;
}
.teian-wrap .txt-box div:nth-of-type(2) {
    width: 81%;
    box-sizing: border-box;
    font-family: "ヒラギノ明朝 ProN W3", "HiraMinProN-W3", "游明朝", YuMincho, serif !important;
}
@media (max-width: 991px) {
    .teian-wrap .txt-box {
        margin-top: 1.5rem;
    }
}
@media (max-width: 767px) {
    .teian-wrap .txt-box {
        margin-top: 1.5rem;
        border-radius: 10px;
        padding: 1rem 1.5rem;
    }
    .teian-wrap .txt-box div {
        width: 100% !important;
    }
    .teian-wrap .txt-box div:nth-of-type(1) img {
        width: 45%;
        margin-bottom: 0.5rem;
    }
    .teian-wrap .txt-box div:nth-of-type(1) img.osusume {
        width: 70%;
    }
}

/*----- Pantena -----*/
.pantena-wrap {
    padding: 6rem 0 7rem;
}
.pantena-wrap .ttl {
    margin: 0 auto 5rem;
}
.pantena-wrap .sub {
    font-size: 3.2rem;
    font-family: 'Noto Sans JP', sans-serif !important;
    font-weight: 900;
    line-height: 1.5;
    margin: 0 0 2rem;
}
@media (max-width: 1199px) {
    .pantena-wrap .sub {
        font-size: 2.8rem;
    }
}
@media (max-width: 991px) {
    .pantena-wrap .sub {
        font-size: 2.4rem;
    }
}
@media (max-width: 767px) {
    .pantena-wrap {
        padding: 3rem 0 3.5rem;
    }
    .pantena-wrap .ttl {
        margin-bottom: 2.5rem;
    }
    .pantena-wrap .ttl img {
        width: auto;
    }
    .pantena-wrap .sub {
        font-size: calc(1.6rem + (1vw - 0.32rem) * 3.1320);
        margin-bottom: 1rem;
    }
}

.pantena-wrap .flex-box {
    align-items: stretch;
    align-content: stretch;
    margin: 0 0 5rem;
}
.pantena-wrap .flex-box .img-area {
    width: 33%;
}
.pantena-wrap .flex-box .txt-area {
    width: 64%;
    border-left: 16px solid #6DC0F3;
    padding-left: 2rem;
    font-family: 'Noto Sans JP', sans-serif !important;
    color: #444444;
    font-size: 2rem;
    font-weight: 500;
}
@media (max-width: 991px) {
    .pantena-wrap .flex-box .img-area {
        width: 100%;
    }
    .pantena-wrap .flex-box .img-area img {
        width: 60%;
    }
    .pantena-wrap .flex-box .txt-area {
        font-size: 1.7rem;
        width: 100%;
        margin-bottom: 1rem;
        border-width: 12px;
    }
}
@media (max-width: 767px) {
    .pantena-wrap .flex-box {
        margin-bottom: 3rem;
    }
    .pantena-wrap .flex-box .col {
        margin-top: 1.5rem;
    }
    .pantena-wrap .flex-box .img-area img {
        width: 100%;
    }
    .pantena-wrap .flex-box .txt-area {
        font-size: calc(1.4rem + (1vw - 0.32rem) * 1.3423);
        border-width: 8px;
    }
}

/*----- Case -----*/
.case-wrap {
    padding: 6rem 0;
    background: #a49788;
}
.case-wrap .ttl {
    margin: 0 auto 5rem;
}
.case-wrap .sub {
    font-size: 1.5rem;
    margin: 0 0 1rem;
}
.case-wrap .sub.blue {
    color: #57c0f9;
}
.case-wrap .sub.orange {
    color: #ff2000;
}
.case-wrap .sub.purple {
    color: #af57f9;
}
.case-wrap .sub.green {
    color: #00ae4a;
}
.case-wrap .txt-link {
    text-align: center;
    margin: 3rem 0 0;
}
.case-wrap .txt-link strong {
    color: #b8e8ff;
}
@media (max-width: 767px) {
    .case-wrap {
        padding: 3rem 0;
    }
    .case-wrap .ttl {
        margin-bottom: 2rem;
    }
    .case-wrap .ttl img {
        width: auto;
        height: 30px;
    }
    .case-wrap .sub {
        font-size: 1.3rem;
        margin: 0 0 -0.7rem;
        text-align: center;
    }
}

.case-wrap .flex-box {
    align-items: stretch;
    align-content: stretch;
}
.case-wrap .flex-box .col {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch;
    margin: 0 0 3rem;
    background: #fff;
    width: 48.7%;
}
.case-wrap .flex-box .col a {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
    align-items: stretch;
    align-content: stretch
    background: #fff;
    padding: 3rem 2rem 3rem 1rem;
}
.case-wrap .flex-box .col a:hover {
    background: #eeeeee;
    transition: 0.5s;
    text-decoration: none;
}
.case-wrap .flex-box .num-area {
    width: 8%;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    font-size: 3.2rem;
    color: #d7d7d7;
    text-align: center;
    font-family: 'Roboto Condensed', sans-serif !important;
    font-weight: 700;
    box-sizing: border-box;
    padding-right: 1rem;
}
.case-wrap .flex-box .img-area {
    width: 48%;
    box-sizing: border-box;
}
.case-wrap .flex-box .txt-area {
    width: 44%;
    padding-left: 1.5rem;
    box-sizing: border-box;
}
@media (max-width: 991px) {
    .case-wrap .flex-box .col {
        width: 100%;
    }
}
@media (max-width: 767px) {
    .case-wrap .flex-box .col {
        margin-bottom: 1.5rem;
    }
    .case-wrap .flex-box .col a {
        padding: 1.5rem 1.5rem 0 1rem;
    }
    .case-wrap .flex-box .num-area {
        width: 11%;
    }
    .case-wrap .flex-box .img-area {
        width: 89%;
    }
    .case-wrap .flex-box .txt-area {
        width: 100%;
        padding-left: 0;
        padding-top: 1rem;
    }
    .case-wrap .txt-link {
        margin-top: 1.5rem;
    }
}

/*-------------------------------
 * 4. FOOTER
 * ----------------------------*/
footer {
    text-align: center;
    padding: 6rem 0 4rem;
}
footer .sub {
    font-size: 1.8rem;
    color: #b8732e;
    margin: 0 0 4rem;
}
footer .logo {
    margin: 0 auto 4rem;
}
footer .txt {
    font-size: 1.8rem;
    margin-bottom: 4rem;
}
footer .btn-link {
    margin-bottom: 8rem;
}
footer .copyright {
    font-size: 1.6rem;
    font-weight: 600;
    color: #5d5d5d;
    font-family: "游ゴシック",YuGothic, sans-serif !important;
}
@media (max-width: 767px) {
    footer {
        padding: 3rem 0 7rem;
    }
    footer .sub {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }
    footer .logo {
        max-width: 220px;
        margin-bottom: 2rem;
    }
    footer .txt {
        font-size: 1.4rem;
        margin-bottom: 2rem;
    }
    footer .btn-link {
        margin-bottom: 4rem;
    }
    footer .copyright {
        font-size: 1.2rem;
    }
}

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

/*--------- 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: "游ゴシック",YuGothic, 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: 575px) {
    #knt_noticebar p {
        font-size: 11px;
    }
}
