﻿@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://use.typekit.net/glv0sbx.css');

/*----------------------
 * 1. GENERAL
 *   1.1  Margin
 *   1.2  Text
 *   1.3  Titles and Subtitles
 *   1.4  Lists
 *   1.5 Btn
 * 2. HEADER
 * 3. MENU
 * 4. MAIN VISUAL
 * 5. CONTENTS
 *    5.1 News
 *    5.2 Benefits
 * 6. FOOTER
 * 7. MODAL
 * 8. SNS
 */

/*-------------------------------
 * 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.8rem;
	color: #000;
	line-height: 1.8;
	font-weight: 400;
	overflow: hidden;
}
@media (max-width: 1199px) {
    body {
        font-size: calc(14px + 4 * (100vw - 320px) / 879);
    }
}

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: 80%;
    vertical-align: 7%;
}

ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

strong {
    font-weight: 500;
}

img {
    display: block;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}

.opacity:hover {
  opacity: 0.8;
  transition: 0.7s;
}

.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: 1199px) {
    .lg,
    .md-lg,
    .sp-md-lg {
        display: block !important;
    }
    .pc {
        display: none !important;
    }
}
@media (max-width: 991px) {
    .lg-pc,
    .lg {
        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 {
        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; }

.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; }

.ml05 { margin-left: 0.5rem !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-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: 991px) {
     .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-blue,
.txt-blue a,
.txt-blue a:hover {
    color: #4f607e !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; }
@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;
    padding: 0;
    font-weight: 500;
    line-height: 1.8;
}
@media (max-width: 767px) {
    h1, h2, h3, h4 {
        line-height: 1.6;
    }
}

.section-ttl {
    margin: 0 0 3rem;
    font-size: 3.8rem;
    font-weight: 500;
    position: relative;
}
.section-ttl:before {
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 120px;
  height: 10px;
  content: '';
  background: #4f607e;
}
.section-ttl.center {
    text-align: center;
}
.section-ttl.center::before {
    left: 50%;
    transform: translateX(-50%);
}
.section-ttl.wide {
    margin: 0;
    font-size: 2.6rem;
    border-bottom: 4px solid #4f607e;
}
.section-ttl.wide::before {
    display: none;
}
.section-sub {
    margin: 0 0 1.5rem;
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.4;
}
@media (max-width: 991px) {
    .section-ttl {
        font-size: calc(22px + 16 * (100vw - 320px) / 671);
    }
    .section-ttl:before {
        bottom: -8px;
        height: 8px;
    }
    .section-ttl.wide {
        font-size: calc(20px + 6 * (100vw - 320px) / 671);
    }
    .section-sub {
        font-size: calc(18px + 12 * (100vw - 320px) / 671);
    }
}
@media (max-width: 767px) {
    .section-ttl:before {
        height: 6px;
        width: 90px;
    }
}

.sub {
    font-size: 1.8rem;
    margin: 3.5rem 0 1.5rem;
    padding-bottom: 0.2rem;
    text-align: center;
    color: #4f607e;
    background: #fff;
    border: 1px solid #4f607e;
}
.section-ttl + .sub {
    margin-top: 4.5rem;
}
@media (max-width: 1199px) {
    .sub {
        margin: 2.5rem 0 1rem;
        font-size: calc(15px + 3 * (100vw - 320px) / 879);
    }
}
@media (max-width: 767px) {
    .sub {
        margin-top: 2rem;
    }
    .sub + p {
        margin-top: 0;
    }
    .section-ttl + .sub {
        margin-top: 3.5rem;
    }
}

/* 1.4 Lists
 * ------------------------------*/
ul.disc-list {
    list-style: disc;
    margin: 0 0 0 2.2rem;
    line-height: 2.3;
}

ol.ol-list {
    padding: 0;
    margin: 0 0 0 2.2rem;
    line-height: 2.3;
}
@media (max-width: 767px) {
    ul.disc-list {
        margin-left: 2rem;
    }
    ul.disc-list,
    ol.ol-list {
        line-height: 2;
    }
}

/* 1.5 Btn
 * ------------------------------*/
 /*----- btn entry ------*/
#entry {
    background: url(../img/bg01.jpg) top center no-repeat;
    background-size: cover;
    padding: 8rem 0;
    margin-top: -1px;
}
@media (max-width: 991px) {
    #entry {
        padding-left: 4rem;
        padding-right: 4rem;
    }
}
@media (max-width: 767px) {
    #entry {
        padding: 3.5rem 1.5rem;
    }
}

.btn-entry {
    max-width: 940px;
    margin: 0 auto;
    background: #e7d400;
}
.btn-entry a {
    display: block;
    color: #000;
    padding: 2.7rem 0 2.7rem 2.7rem;
    position: relative;
    overflow: visible;
}
.btn-entry a:hover {
    text-decoration: none;
}
.btn-entry:hover {
    text-decoration: none;
    opacity: 0.8;
    transition: 0.7s;
}
.btn-entry .txt-box {
    border-left: 8px solid #fff;
    padding-left: 2.3rem;
}
.btn-entry .subsub {
    font-weight: 700;
    font-size: 3.7rem;
}
.btn-entry .txt {
    font-size: 2.1rem;
    margin: 0;
    color: #4f607e;
}
.btn-entry .pict {
    position: absolute;
    bottom: 0;
    right: 0;
}
@media (max-width: 1199px) {
    .btn-entry .subsub {
        font-size: calc(15px + 31 * (100vw - 320px) / 879);
    }
    .btn-entry .txt {
        font-size: calc(14px + 6 * (100vw - 320px) / 879);
    }
}
@media (max-width: 991px) {
    .btn-entry .pict {
        width: calc(250 / 991 * 100vw);
    }
}
@media (max-width: 767px) {
    .btn-entry a {
        padding: 1.5rem 0 1.5rem 1.5rem;
    }
    .btn-entry .txt-box {
        border-width: 5px;
        padding-left: 1.2rem;
    }
    .btn-entry .subsub {
        font-size: calc(15px + 12 * (100vw - 320px) / 447);
        line-height: 1.4;
        margin-top: 0.5rem;
    }
    .btn-entry .txt {
        font-size: calc(12px + 3 * (100vw - 320px) / 447);
        line-height: 1.4;
    }
    .btn-entry .pict {
        width: calc(230 / 767 * 100vw);
    }
}
@media (max-width: 480px) {
    .btn-entry .pict {
        width: calc(190 / 480 * 100vw);
    }
}
@media (max-width: 380px) {
    .btn-entry .pict {
        width: calc(140 / 380 * 100vw);
    }
}

/*----- btn step -----*/
.btn-step {
    max-width: 620px;
    margin: 6rem auto 0;
    display: block;
    color: #000;
    padding: 1.3rem 0 1.5rem 2rem;
    background: #e75f50;
    border: 4px solid #e09689;
    border-radius: 50px;
    position: relative;
    color: #fff;
    cursor: pointer;
}
.btn-step:hover {
    text-decoration: none;
    opacity: 0.8;
    transition: 0.7s;
}
.btn-step .txt {
    font-weight: 600;
    margin: 0;
}
.btn-step .pict {
    position: absolute;
    bottom: 0;
    right: 5px;
}
@media (max-width: 767px) {
    .btn-step {
        max-width: 80%;
        margin-top: 2rem;
        padding: 0.5rem 0 0.6rem 1.8rem;
        line-height: 1.5;
    }
    .btn-step .pict {
        width: calc(220 / 767 * 100vw);
    }
}
@media (max-width: 480px) {
    .btn-step {
        font-size: calc(12px + 3 * (100vw - 320px) / 160);
    }
}

/*----- btn -----*/
.btn {
    display: block;
    margin: 2rem 0;
    padding: 0.8rem 0.5rem 1.1rem 1.5rem;
    max-width: 250px;
    position: relative;
    outline: none;
    font-size: 1.8rem;
    font-weight: 500;
    background: #e7d400;
    color: #4f607e;
    text-align: center;
    border-radius: 30px;
}
.btn.wide {
    max-width: 300px;
}
.btn.center {
    margin-left: auto;
    margin-right: auto;
}
.btn:hover {
    color: #4f607e;
    text-decoration: none;
    opacity: 0.8;
    transition: 0.7s;
}
.btn i {
    width: 24px;
    height: 22px;
    background: url(../img/icon-arrow.png) 0 0 no-repeat;
    background-size: contain;
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
}
.btn.cart {
    max-width: 800px;
    margin: 5rem auto;
    border-radius: 50px;
    font-size: 2.2rem;
    font-weight: 600;
}
.btn.cart i {
    width: 40px;
    height: 39px;
    background: url(../img/icon-cart.png) 0 0 no-repeat;
    background-size: contain;
    left: 30px;
}
.btn.cart .txt {
    display: block;
    margin-top: 0.5rem;
    font-size: 1.4rem;
    font-weight: 400;
}
@media (max-width: 767px) {
    .btn {
        margin: 1rem 0;
        padding: 0.4rem 0.5rem 0.7rem 1.5rem;
        font-size: calc(15px + 3 * (100vw - 320px) / 447);
        max-width: 180px;
    }
    .btn.wide {
        max-width: 250px;
        margin-top: 2.3rem;
    }
    .btn i {
        width: 20px;
        height: 20px;
        left: 15px;
    }
    .btn.cart {
        font-size: calc(16px + 6 * (100vw - 320px) / 447);
        border-radius: 40px;
        margin: 3rem auto;
    }
    .btn.cart i {
        width: 30px;
        height: 29px;
        left: 20px;
    }
    .btn.cart .txt {
        font-size: calc(11px + 3 * (100vw - 320px) / 447);
        margin-top: 0;
        line-height: 1.5;
    }
}

/*----- side entry -----*/
.side-entry {
    position: fixed;
    top: 30%;
    right: 0;
    transform: translateY(-30%);
    margin: 0;
    z-index: 1;
}
.side-entry:hover {
    opacity: 0.8;
    transition: 0.7s;
}
@media (max-width: 767px) {
    .side-entry {
        display: none;
    }
}

/*-------------------------------
 * 2. HEADER
 * ----------------------------*/
header {
  background: #fff;
  height: 75px;
  left: 0;
  position: fixed;
  top: -75px;
  transition: 0.5s;
  width: 100%;
  z-index: 9;
}
header .inner {
  align-items: center;
  display: flex;
  height: 100%;
  justify-content: space-between;
  margin: 0;
  position: relative;
}
header.fixed {
  top: 0;
}
@media (max-width: 767px) {
  header {
    height: 10.4166666667vw;
    top: -10.4166666667vw;
  }
}

.header-btn-menu {
    position: fixed;
    right: 7vw;
  top: 14%;
  margin: 0;
  opacity: 1;  
  transition: 0.5s;
  z-index: 9;
}
.header-btn-menu img {
    width: 75px;
    height: 75px;
    cursor: pointer;
}
.header-btn-menu.fixed {
  opacity: 0;
  top: 0;
}
@media (max-width: 991px) {
    .header-btn-menu {
        top: 12.5vw;
    }
}
@media (max-width: 767px) {
  .header-btn-menu {
    top: 14vw;
    right: 0;
  }
  .header-btn-menu img {
    width: 10.4166666667vw;
    height: 10.4166666667vw;
  }
}

.header-btn-menu-on {
    position: absolute;
    top: 0;
    right: 7vw;
    margin: 0;
    opacity: 1;
    transition: 0.5s;
    z-index: 9;
    background: url(../img/header-icon-menu.png) 50% 50% no-repeat;
    background-size: 100% 100%;
    cursor: pointer;
    height: 75px;
    width: 75px;
}
@media (max-width: 767px) {
  .header-btn-menu-on {
      right: 0;
    height: 10.4166666667vw;
    width: 10.4166666667vw;
  }
}

.header-logo {
    position: absolute;
    left: 7vw;
    top: 7px;
}
.header-logo img {
  width: 276px;
}
@media (max-width: 767px) {
  .header-logo {
      top: 4px;
      left: 8px;
  }
  .header-logo img {
    width: 36vw;
  }
}

.header-btn-entry {
  display: none;
}
@media (max-width: 767px) {
  .header-btn-entry {
    display: block;
    flex-shrink: 0;
    height: 100%;
    width: 27.7777777778%;
    position: absolute;
    top: 0;
    right: 10vw;
  }
  .header-btn-entry a {
    align-items: center;
    background: #e7d400;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
  }
  .header-btn-entry img {
    display: block;
    width: 86.5%;
  }
}

/*----- 共通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;
    }
}

/*-------------------------------
 * 3. MENU
 * ----------------------------*/
.menu {
  background: rgba(51, 65, 99, 0.9);
  display: none;
  height: 100%;
  position: fixed;
  right: 0;
  top: 0;
  z-index: 10;
  width: 100%;
}
.menu > div {
  background: #fff;
  height: 100%;
  margin-left: auto;
  padding-top: 100px;
  width: 600px;
}
@media screen and (max-width: 767px) {
  .menu > div {
    padding-top: 13.8888888889vw;
    width: 89.1666666667%;
  }
}
.menu ul {
  border-bottom: 1px solid #ccc;
}
.menu ul ul {
  border-bottom: 0;
}
.menu li {
  border-top: 1px solid #ccc;
}
.menu li a {
  color: #000;
  display: block;
  font-family: "Noto Sans JP";
  font-size: 2rem;
  padding: 16px 0 16px 70px;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  .menu li a {
    font-size: 4.1666666667vw;
    padding: 2.7777777778vw 0 2.7777777778vw 15.2777777778vw;
  }
}
.menu li a:hover {
  /*opacity: 0.5;*/
  transition: 0.5s;
  background: #F8EBDC;
}
.menu li a.current {
  background: #F8EBDC;
}
.menu li li a {
  padding-left: 98px;
}
@media screen and (max-width: 767px) {
  .menu li li a {
    padding-left: 21.5277777778vw;
  }
}

.menu-btn-close {
  cursor: pointer;
  position: absolute;
  right: 7.8vw;
  top: 20px;
}
@media screen and (max-width: 767px) {
  .menu-btn-close {
    right: 2.7777777778vw;
    top: 2.7777777778vw;
  }
}
.menu-btn-close img {
  width: 38px;
}
@media screen and (max-width: 767px) {
  .menu-btn-close img {
    width: 5.8333333333vw;
  }
}

/*-------------------------------
 * 4. MAIN VISUAL
 * ----------------------------*/
#main-visual {
    background: url(../img/bg01.jpg) top center no-repeat;
    background-size: cover;
    width: 100%;
    margin: 0;
    padding: 0 4rem;
    box-sizing: border-box;
    position: relative;
    z-index: 0;
    -webkit-animation: fadeIn 0.8s ease both;
    animation: fadeIn 0.8s ease both;
}
#main-visual .inner {
    width: 100%;
    max-width: 2400px;
    min-height: 800px;
    padding-bottom: 2vw;
    margin: 0 auto;
    background: #C5936F;
    position: relative;
    z-index: 0;
    box-sizing: border-box;
}
#main-visual .logo {
    width: 100%;
    position: absolute;
    top: calc(80 / 1280 * 100vw);
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 1;
}
#main-visual .logo img {
    width: calc(780 / 1280 * 100vw);
    height: auto;
}
@media (min-width: 1300px) {
    #main-visual .img-main {
        width: 100%;
        height: 1160px;
        object-fit: cover;
        padding-bottom: 0;
    }
}
@media (min-width: 1400px) {
    #main-visual .img-main {
        height: 1200px;
    }
    #main-visual .logo {
        top: 100px;
    }
    #main-visual .logo img {
        width: 850px;
    }
}
@media (min-width: 1500px) {
    #main-visual .img-main {
        height: 1230px;
    }
}
@media (min-width: 1800px) {
    #main-visual .img-main {
        height: 1300px;
    }
    #main-visual .logo img {
        width: 900px;
    }
}
@media (min-width: 1900px) {
    #main-visual .img-main {
        height: 1350px;
    }
}
@media (max-width: 1200px) {
    #main-visual .inner {
        min-height: 0;
        height: calc(1080 / 1200 * 100vw);
    }
}
@media (max-width: 1024px) {
    #main-visual .inner {
        height: calc(980 / 1024 * 100vw);
    }
}
@media (max-width: 991px) {
    #main-visual .inner {
        height: calc(1000 / 991 * 100vw);
    }
}
@media screen and (orientation:landscape) and (max-width: 896px) {
    #main-visual .inner {
        height: 860px;
    }
}
@media (max-width: 767px) {
    #main-visual {
        padding: 0;
    }
    #main-visual .inner {
        height: 730px;
    }
}
@media (max-width: 480px) {
    #main-visual .inner {
        width: 100%;
        /*height: 540px;*/
        height: 570px;
    }
    #main-visual .logo img {
        width: 65%;
    }
}
@media (max-width: 390px) {
    #main-visual .inner {
        /*height: 520px;*/
        height: 550px;
    }
}
@media (max-width: 380px) {
    #main-visual .inner {
        /*height: 510px;*/
        height: 540px;
    }
}

#main-visual .outline {
    width: 100%;
    position: absolute;
    top: calc(700 / 1280 * 100vw);
    left: 50%;
    transform: translateX(-50%);
}
#main-visual .outline .day {
    margin: 0 0 0.5rem;
    font-size: 4.5rem;
    font-weight: 400;
    text-align: center;
}
#main-visual .outline .day .txt-counter {
    display: inline-block;
    margin-right: 1rem;
    font-size: 2rem;
    vertical-align: 40%;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #fff;
    color: #42649e;
}
#main-visual .outline .day .txt-counter span {
    display: inline-block;
    font-size: 2.5rem;
    font-weight: 600;
    padding-top: 1.5rem;
}
#main-visual .outline .day .num {
    font-family: "trajan-pro-3", serif;
    font-weight: 400;
    font-style: normal;
    font-size: 5.6rem;
}
#main-visual .outline .day .circle {
    display: inline-block;
    margin: 0 2rem 0 0.5rem;
    width: 50px;
    height: 50px;
    background: #db0400;
    border-radius: 50%;
    font-size: 3.5rem;
    vertical-align: 10%;
    line-height: 1.3;
    color: #fff;
    box-sizing: border-box;
}
#main-visual .outline .deadline {
   max-width: 530px;
    margin: 0 auto;
    padding: 0.3rem 0.5rem 0.6rem;
    font-size: 2.4rem;
    background: #e7d400;
    border-radius: 6px;
    line-height: 1.5;
    box-sizing: border-box;
    text-align: center;
}
#main-visual .outline .deadline .txt {
    font-size: 2rem;
}
@media (min-width: 1300px) {
    #main-visual .outline {
        top: 770px;
    }
}
@media (min-width: 1500px) {
    #main-visual .outline {
        top: 830px;
    }
}
@media (min-width: 1600px) {
    #main-visual .outline {
        top: 830px;
    }
}
@media (min-width: 1800px) {
    #main-visual .outline {
        top: 890px;
    }
}
@media (min-width: 1900px) {
    #main-visual .outline {
        top: 960px;
    }
}
@media (max-width: 991px) {
    #main-visual .outline .day {
        font-size: calc(17px + 20 * (100vw - 320px) / 671);
    }
}
@media (max-width: 767px) {
    #main-visual .outline {
        max-width: 94%;
        top: 400px;
    }
    #main-visual .outline .day {
        margin-bottom: 1rem;
    }
    #main-visual .outline .day .num {
        font-size: calc(25px + 20 * (100vw - 320px) / 447);
    }
    #main-visual .outline .day .txt-counter {
        font-size: calc(13px + 6 * (100vw - 320px) / 447);
        vertical-align: 25%;
        width: calc(65 / 767 * 100vw);
        height: calc(65 / 767 * 100vw);
        margin-right: 0.5rem;
    }
    #main-visual .outline .day .txt-counter span {
        font-size: calc(17px + 7 * (100vw - 320px) / 447);
        padding-top: 0.75rem;
    }
    #main-visual .outline .day .circle {
         margin: 0 0.5rem;
         width: calc(45 / 767 * 100vw);
         height: calc(45 / 767 * 100vw);
         font-size: calc(16px + 17 * (100vw - 320px) / 447);
         vertical-align: 10%;
         padding-top: 0;
      }
      #main-visual .outline .deadline {
          padding: 0.1rem 0.5rem 0.4rem;
          font-size: calc(18px + 6 * (100vw - 320px) / 447);
    }
    #main-visual .outline .deadline .txt {
        font-size: calc(14px + 6 * (100vw - 320px) / 447);
    }
}
@media (max-width: 480px) {
    #main-visual .outline {
        top: calc(305 / 480 * 100vw);
    }
    #main-visual .outline .day .txt-counter {
        width: 48px;
        height: 48px;
    }
    #main-visual .outline .day .circle {
         width: 26px;
         height: 26px;
      }
}
@media (max-width: 360px) {
    #main-visual .outline .deadline {
          font-size: 1.7rem;
    }
    #main-visual .outline .deadline .txt {
        font-size: 1.4rem;
    }
}
@media (max-width: 320px) {
    #main-visual .outline .deadline {
          font-size: 1.5rem;
    }
    #main-visual .outline .deadline .txt {
        font-size: 1.3rem;
    }
}

#main-visual .guide {
    font-size: 2.4rem;
    line-height: 1.6;
    text-align: center;
}
#main-visual .guide .subsub {
    color: #fff;
    font-size: 2rem;
    margin: 4rem 0 0;
}
#main-visual .guide .txt + .subsub {
    margin-top: 1rem;
}
#main-visual .guide .txt {
    margin: 0;
}
#main-visual .guide .txt.add {
    font-size: 2.8rem;
    font-weight: 500;
}
#main-visual .guide .txt small {
    font-size: 70%;
    margin-left: 2rem;
}
@media (max-width: 991px) {
    #main-visual .guide {
        font-size: calc(14px + 10 * (100vw - 320px) / 671);
    }
    #main-visual .guide .subsub {
        margin-top: 2rem;
        font-size: calc(16px + 4 * (100vw - 320px) / 671);
    }
    #main-visual .guide .txt.add {
        font-size: calc(18px + 20 * (100vw - 320px) / 671);
    }
    #main-visual .guide .txt small {
        font-size: calc(12px + 2 * (100vw - 320px) / 671);
    }
}

/*-------------------------------
 * 5. CONTENTS
 * ----------------------------*/
main {
    margin: 0 auto;
    padding: 0;
}
.wrap {
    max-width: 960px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 0;
}
.wrap::after {
    content: "";
    display: block;
    clear: both;
}
@media (max-width: 991px) {
    .wrap {
        max-width: 100% !important;
        padding-left: 5rem;
        padding-right: 5rem;
    }
}
@media (max-width: 480px) {
    .wrap {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

section {
    margin: 4rem 0;
    padding: 0;
}
.bg {
    margin: 2rem 0;
    background: url(../img/bg02.jpg) center center repeat;
    background-size: contain;
}
.bg.wide {
    padding: 2.5% 0;
}
@media (max-width: 767px) {
    section {
        margin: 2rem 0;
    }
    .bg.wide {
        padding: 1.5rem 0;
    }
}

.contents-box {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: stretch;
    align-content: stretch;
}
.contents-box .img-area {
    width: 50%;
    box-sizing: border-box;
    min-height: 500px;
    background-size: cover !important;
    display: flex;
    flex-flow: row nowrap;
    justify-content: center;
    align-items: center;
    align-content: center;
}
.contents-box .img-area.about {
    background: url(../img/img-about.jpg) center center no-repeat;
}
.contents-box .img-area.level {
    background: url(../img/img-level.jpg) center center no-repeat;
}
.contents-box .img-area.book {
    background: url(../img/bg03.jpg) center center no-repeat;
    padding-top: 3%;
    padding-bottom: 3%;
}
.contents-box .img-area.book img {
    /*width: 45%;*/
    width: calc(300 / 1280 * 100vw);
}
.contents-box .img-area.message {
    display: block;
    padding: 3% 10% 3% 4%;
}
.contents-box .txt-area {
    width: 50%;
    box-sizing: border-box;
}
.contents-box .txt-area.right {
    padding: 2.5% 10% 2.5% 4%;
}
.contents-box .txt-area.left {
    padding: 2.5% 4% 2.5% 10%;
}
.contents-box .txt-area.left.message {
    padding: 2.5% 0 2.5% 10%;
}
.contents-box .txt-area.left.message p {
    margin-top: calc(40 / 1280 * 100vw);
    margin-bottom: calc(40 / 1280 * 100vw);
}
.contents-box .txt-area.left.message .text-right {
    margin-right: 2rem;
}
.contents-box .txt {
    display: inline-block;
    font-size: 1.6rem;
}
.contents-box .price {
    display: inline-block;
    font-size: 2.4rem;
    margin: 0 0.5rem;
}
@media (min-width: 1800px) {
    .contents-box .img-area.book img {
        width: calc(350 / 1920 * 100vw);
    }
    .contents-box .txt-area.left.message p {
        margin: 5rem 0;
    }
}
@media (max-width: 1500px) {
    .contents-box .txt-area.right {
        padding-right: 6%;
    }
    .contents-box .txt-area.left {
        padding-left: 6%;
    }    
}
@media (max-width: 1199px) {
    .contents-box .img-area.book img {
        /*width: 60%;*/
        width: calc(350 / 1199 * 100vw);
    }
    .contents-box .img-area.message {
        padding-right: 4%;
    }
    .contents-box .txt-area.right {
        padding-right: 4%;
    }
    .contents-box .txt-area.left {
        padding-left: 4%;
    }
    .contents-box .txt-area.left.message {
        padding-left: 4%;
    }
    .contents-box .txt-area.left.message .text-right {
        margin-right: 0;
    }
    .contents-box .txt {
        font-size: calc(13px + 3 * (100vw - 320px) / 879);
    }
}
@media (max-width: 767px) {
    .contents-box .img-area {
        width: 100%;
        min-height: 250px;
    }
    .contents-box .img-area.about {
        background-image: url(../img/img-about-sp.jpg);
    }
    .contents-box .img-area.level {
        background-image: url(../img/img-level-sp.jpg);
    }
    .contents-box .img-area.book {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .contents-box .img-area.book img {
        width: 45%;
    }
    .contents-box .img-area.message {
        padding: 0 12%;
        background: #C5926D;
        min-height: 0;
    }
    .contents-box .txt-area.left.message p {
        margin: 1rem 0;
    }
    .contents-box .txt-area.left.message .text-right {
        margin: 1.5rem 0 2rem;
    }
    .contents-box .txt-area {
        width: 100%;
        padding: 1.5rem !important;
    }
    .contents-box .price {
        font-size: calc(20px + 4 * (100vw - 320px) / 671);
    }
}

.box {
    max-width: 80%;
    margin: 2rem auto 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    gap: 0 35px;
}
.box.wide {
    max-width: 100%;
}
.box .col {
    width: calc(100% / 2 - 18px );
}
.box .col-three {
    width: calc(100% / 3 - 24px );
}
@media (max-width: 767px) {
    .box {
        max-width: 100%;
        gap: 0 15px;
    }
    .box .col,
    .box .col-three {
        width: calc(100% / 2 - 8px );
    }
    .box .col.col-sp-one {
        width: 100%;
    }
    .box .col.col-sp-one + .col-sp-one {
        margin-top: 1.5rem;
    }
    .order1 {
        order: 1;
    }
    .order2 {
        order: 2;
    }
}

.img-size {
    max-width: 90%;
}
@media (max-width: 767px) {
    .img-size-sp {
        max-width: 60%;
    }
}
 
/* 5.1 News
 * ------------------------------*/
.news-box {
    margin: 0;
}
.news-box ul li {
    width: 100%;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    padding: 2rem 0;
    border-bottom: 1px solid #000;
    line-height: 1.8;
}
.news-box ul li a {
    display: block;
    color: #000;
    text-decoration: none;
}
.news-box ul li a:hover {
    text-decoration: none;
    color: #666;
    transition: 0.5s;
}
.news-box ul li .day {
    width: 80px;
}
.news-box ul li .txt {
    box-sizing: border-box;
    padding-left: 3rem;
}
.news-box ul li .icon-new {
    display: inline-block;
    margin-left: 0.5rem;
    width: 50px;
    height: 20px;
    background: url(../img/icon-new.png) 0 0 no-repeat;
    background-size: contain;
    vertical-align: -5%;
}
@media (max-width: 991px) {
    .news-box ul li {
        padding: 1.5rem 0;
    }
}
@media (max-width: 767px) {
    .news-box ul {
        padding-right: 0;
    }
    .news-box ul li {
        padding: 0.8rem 0;
    }
    .news-box ul li .day {
        width: 85px;
    }
    .news-box ul li .txt {
        display: block;
        width: 100%;
        padding-left: 0;
    }
    .news-box ul li .icon-new {
        width: 40px;
        height: 16px;
    }
}

/* 5.2 Benefits
 * ------------------------------*/
#cate-main {
    width: 100%;
    background: url(../img/bg01.jpg) center center no-repeat;
    background-size: cover;
    padding: 3.2rem 0;
    color: #fff;
    text-align: center;
}
#cate-main .ttl {
    font-size: 3rem;
    line-height: 1;
}
@media (max-width: 767px) {
    #cate-main {
        padding: 2rem 0 2.2rem;
    }
    #cate-main .ttl {
        font-size: calc(20px + 10 * (100vw - 320px) / 447);
    }
}

.sub-benefits {
    font-size: 2.4rem;
    text-align: center;
    color: #4f607e;
    margin: 0 0 2rem;
}
.sub-benefits .txt {
    font-size: 2.8rem;
    color: #000;
}
.sub-benefits .num {
    background: #4f607e;
    color: #fff;
    font-size: 2.4rem;
    display: inline-block;
    margin-right: 1.5rem;
    padding: 0.2rem 2.5rem 0.6rem;
    line-height: 1;
}
.sub-benefits .num span {
    font-size: 2.8rem;
    display: inline-block;
    margin-left: 0.5rem;
    vertical-align: -5%;
}
@media (max-width: 767px) {
    .sub-benefits {
        font-size: calc(19px + 5 * (100vw - 320px) / 447);
    }
    .sub-benefits .txt {
        display: block;
        margin-top: 0.7rem;
        font-size: calc(21px + 7 * (100vw - 320px) / 447);
    }
    .sub-benefits .num {
        font-size: calc(18px + 6 * (100vw - 320px) / 447);
        margin-right: 1rem;
        padding: 0.3rem 1.5rem 0.5rem;
    }
    .sub-benefits .num span {
        font-size: calc(20px + 8 * (100vw - 320px) / 447);
    }
}

/*-------------------------------
 * 6. FOOTER
 * ----------------------------*/
footer {
    margin: 6rem 0 7rem;
    padding: 0;
    font-size: 1.6rem;
    text-align: center;
}
@media (max-width: 767px) {
    footer {
        margin: 4rem 0 5rem;
        font-size: calc(13px + 2 * (100vw - 320px) / 447);
    }
}

/*-------------------------------
 * 7. MODAL
 * ----------------------------*/
.cmn-modal {
  background: rgba(51, 65, 99, 0.9);
  display: none;
  height: 100%;
  left: 0;
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 95;
}
.cmn-modal > div {
  align-items: center;
  display: flex;
  height: 100%;
  /*padding: 30px;*/
  justify-content: center;
  /*width: 100%;*/
  width: auto;
}
@media screen and (max-width: 767px) {
  .cmn-modal > div {
    padding: 4.1666666667vw;
  }
}
.cmn-modal__close {
  position: absolute;
  right: 0;
  top: 0;
}

.modal-content {
  background-color: #fea660;
  max-width: 800px;
  overflow: auto;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .modal-content {
    max-height: calc(100vh - 8.3333333333vw);
    top: -4.167vw;
  }
}
@media screen and (max-width: 480px) {
  .modal-content {
    top: -8.3333333333vw;
  }
}

.modal-content .cmn-modal__close {
  background: url("../img/modal_ico_close.png") 50% 50% no-repeat;
  background-size: 24px 24px;
  cursor: pointer;
  height: 56px;
  width: 64px;
}
@media screen and (max-width: 767px) {
  .modal-content .cmn-modal__close {
    background-size: 3.3333333333vw 3.3333333333vw;
    height: 7.7777777778vw;
    width: 8.8888888889vw;
  }
}
.modal-content__body {
  padding: 18px 30px 30px;
}
@media screen and (max-width: 767px) {
  .modal-content__body {
    padding: 3.3333333333vw 2.7777777778vw;
  }
}
.modal-content__hd {
  color: #000;
  font-size: 1.8rem;
  font-weight: 700;
  margin-bottom: 24px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .modal-content__hd {
    font-size: 1.2rem;
    margin-bottom: 12px;
  }
}
.modal-content__box {
  background-color: #fff;
  /*padding: 16px 24px 32px;*/
  padding: 16px 0 32px;
}
@media screen and (max-width: 767px) {
  .modal-content__box {
    padding: 2.5vw 1.1111111111vw 3.3333333333vw;
  }
}
.modal-content__box figure {
  margin: 0 0 32px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .modal-content__box figure {
    margin: 0 5px 16px;
  }
}
.modal-content__box figure img {
  max-width: 100%;
}
.modal-content__txt1 {
  color: #ff5656;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .modal-content__txt1 {
    font-size: 1.2rem;
  }
}
.modal-content__txt2 {
  color: #444444;
  font-size: 1.4rem;
  margin-bottom: 16px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .modal-content__txt2 {
    font-size: 0.9rem;
  }
}
.modal-content__txt3 {
  color: #333333;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .modal-content__txt3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
  }
}
.modal-content__btn {
  align-items: center;
  background-color: #ff5656;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-family: "Noto Sans JP";
  font-size: 1.7rem;
  font-weight: 700;
  height: 60px;
  line-height: 2.2rem;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
  width: 100%;
}
@media screen and (max-width: 767px) {
  .modal-content__btn {
    border-radius: 6px;
    font-size: 1.02rem;
    height: 36px;
    line-height: 1.32rem;
    max-width: 258px;
  }
}
.modal-content__btn::after {
  background: url("../img/modal_content_img_02.png") 0% 0% no-repeat;
  background-size: 100% 100%;
  content: "";
  display: block;
  height: 64px;
  left: 11px;
  position: absolute;
  top: -4px;
  width: 101px;
}
@media screen and (max-width: 767px) {
  .modal-content__btn::after {
    height: 38.4px;
    left: 6.6px;
    top: -2.4px;
    width: 60.6px;
  }
}
.modal-content__btn::before {
  background: url(../img/btn-icon-modal.png) 0% 0% no-repeat;
  background-size: 100% 100%;
  content: "";
  display: block;
  height: 22px;
  right: 20px;
  position: absolute;
  top: 50%;
  transform: translate(0, -50%);
  width: 24px;
}
@media screen and (max-width: 767px) {
  .modal-content__btn::before {
    height: 13.2px;
    right: 12px;
    width: 14.4px;
  }
}
.modal-content__btn:hover {
  opacity: 0.5;
}
.modal-content__btn > div {
    margin-top: -0.6rem;
  padding-left: 26.0465116279%;
}
.modal-content__btn span {
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
    .modal-content__btn > div {
        margin-top: -0.25rem;
    }
  .modal-content__btn span {
    font-size: 0.9rem;
  }
}
.modal-content__btn a {
  color: #fff;
  text-decoration: none;
}
.modal-content ul {
  color: #231815;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  margin-top: 16px;
}
@media screen and (max-width: 767px) {
  .modal-content ul {
    font-size: 0.9rem;
  }
}
.modal-content ul li {
  padding-left: 1em;
  text-indent: -1em;
}

/*-------------------------------
 * 8. SNS
 * ----------------------------*/
.knt_general-set {
    max-width: 350px;
    margin: 0 auto;
}
.knt_general-set .icon_social {
    position: relative;
    top: 0;
    right: 0;
    margin: auto;
    height: auto;
}
.knt_general-set .icon_social img {
    width: auto;
    vertical-align: top;
}
.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 {
    margin-left:10px;
    max-width: 120px !important
}
.knt_general-set .icon_social .twitter-share-button {
    height: 25px !important
}

.social-footer {
    margin: 7rem auto 0;
}
.social-footer .socialBoxON {
    -ms-flex-pack: center;
    -webkit-box-pack: center;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
}
.social-footer .socialBoxON iframe {
    margin: 5px;
}
@media (max-width: 767px) {
    .social-footer {
        margin: 5rem auto 0;
    }
}

/*--------- keyframes --------- */
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
