﻿@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=Noto+Serif+JP:wght@300;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
 * 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: 300;
	overflow: hidden;
}
@media (max-width: 1024px) {
    body {
        font-size: calc(14px + 4 * (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: 960px) {
    small {
        font-size: calc(12px + 2 * (100vw - 320px) / 640);
    }
}

ul,
ul li {
    margin: 0;
    padding: 0;
    list-style: none;
}

dl,
dl dt,
dl dd {
    margin: 0;
    padding: 0;
}

strong {
    font-weight: 600;
}

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: 1024px) {
    .lg,
    .md-lg,
    .sp-md-lg {
        display: block !important;
    }
    .pc {
        display: none !important;
    }
}
@media (max-width: 960px) {
    .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; }

@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: 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-white,
.txt-white a,
.txt-white a:hover {
    color: #fff !important;
}
.txt-gray,
.txt-gray a,
.txt-gray a:hover {
    color: #546988 !important;
}
.txt-yellow,
.txt-yellow a,
.txt-yellow a:hover {
    color: #ff0 !important;
}

a.txt-underline,
.txt-underline {
    text-decoration: underline !important;
}
a.txt-underline:hover {
    text-decoration: none !important;
}

.txt-trajan {
    font-family: "trajan-pro-3", serif;
    font-weight: 300;
    font-style: normal;
}

.txt-indent {
    margin: 0;
    text-indent: -1em;
    padding-left: 1em;
}

.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: 300;
    line-height: 1.8;
}
@media (max-width: 767px) {
    h1, h2, h3, h4 {
        line-height: 1.6;
    }
}

.section-ttl {
    margin: 0 auto 3rem;
    font-size: 3.2rem;
    text-align: center;
}
@media (max-width: 1024px) {
    .section-ttl {
        font-size: calc(20px + 12 * (100vw - 320px) / 704);
    }
}
@media (max-width: 767px) {
    .section-ttl {
        margin-bottom: 2rem;
    }
}

/* 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 {
    display: block;
    max-width: 380px;
    margin: 0 auto;
    padding: 0.6rem 0 0.8rem;
    position: relative;
    overflow: visible;
    background: #5a606a;
    color: #fff;
    font-size: 1.8rem;
    font-weight: 500;
    border-radius: 80px;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
}
.btn.left {
    margin: 0;
}
.btn:hover {
    text-decoration: none;
    color: #fff;
    opacity: 0.8;
    transition: 0.7s;
}
@media (max-width: 1024px) {
    .btn {
        font-size: calc(14px + 4 * (100vw - 320px) / 704);
    }
}
@media (max-width: 767px) {
    .btn {
        max-width: 300px;
        padding: 0.4rem 0 0.6rem;
    }
}

 /*----- btn entry ------*/
.btn-entry {
    display: block;
    max-width: 640px;
    margin: 4.5rem auto 0;
    color: #fff;
    padding: 1.5rem 0 1.8rem;
    position: relative;
    overflow: hidden;
    background: #5a606a;
    font-size: 2.7rem;
    font-weight: 500;
    border-radius: 80px;
    text-align: center;
    cursor: pointer;
}
.btn-entry.add {
    line-height: 1.4;
}
.btn-entry:hover {
    text-decoration: none;
    color: #fff;
    opacity: 0.8;
    transition: 0.7s;
}
.btn-entry.dantai {
    margin-top: 3rem;
    background: #7e7e7e;
}
.btn-entry small {
    display: inline-block;
    font-size: 1.5rem;
}
.btn-entry small .txt-large {
    font-size: 2.1rem;
}
@media (min-width: 1600px) {
    .btn-entry {
        margin-top: calc(-10 / 1600 * 100vw);
    }
}
@media (min-width: 1700px) {
    .btn-entry {
        margin-top: calc(-30 / 1700 * 100vw);
    }
}
@media (min-width: 1800px) {
    .btn-entry {
        margin-top: calc(-55 / 1800 * 100vw);
    }
}
@media (max-width: 1300px) {
    .btn-entry {
        margin-top: 9rem;
    }
}
@media (max-width: 1024px) {
    .btn-entry {
        margin-top: 12rem;
        font-size: calc(15px + 12 * (100vw - 320px) / 704);
    }
    .btn-entry small {
        font-size: calc(11px + 4 * (100vw - 320px) / 704);
    }
    .btn-entry small .txt-large {
        font-size: calc(15px + 6 * (100vw - 320px) / 704);
    }
}
@media (max-width: 960px) {
    .btn-entry {
        margin-top: 20rem;
    }
}
@media (max-width: 767px) {
    .btn-entry {
        margin-top: 13rem;
        max-width: 90%;
        padding: 0.8rem 0 0.9rem;
    }
    .btn-entry.dantai {
        margin-top: 2rem;
    }
}
@media (max-width: 480px) {
    .btn-entry {
        margin-top: 15.5rem;
    }
    .btn-entry small {
        line-height: 1.6;
    }
}
@media (max-width: 380px) {
    .btn-entry small {
        font-size: calc(10px + 2 * (100vw - 320px) / 60);
    }
    .btn-entry small .txt-large {
        font-size: calc(13px + 2 * (100vw - 320px) / 60);
    }
}

/*----- btn step -----*/
.btn-step {
    max-width: 480px;
    margin: 3rem auto 0;
    display: block;
    color: #000;
    padding: 0.4rem 0 0.6rem;
    background: #c6ccce;
    border: 1px solid #5a606a;
    border-radius: 50px;
    position: relative;
    color: #5a606a;
    cursor: pointer;
    font-size: 1.8rem;
    text-align: center;
}
.btn-step:hover {
    text-decoration: none;
    opacity: 0.8;
    transition: 0.7s;
    color: #5a606a;
}
@media (max-width: 1024px) {
    .btn-step {
        font-size: calc(14px + 4 * (100vw - 320px) / 704);
    }
}
@media (max-width: 767px) {
    .btn-step {
        max-width: 80%;
        margin-top: 2rem;
        padding: 0.5rem 0 0.7rem;
        line-height: 1.5;
    }
}
@media (max-width: 480px) {
    .btn-step {
        font-size: calc(11px + 4 * (100vw - 320px) / 160);
    }
}

/*----- side btn -----*/
.side-btn {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    margin: 0;
    z-index: 1;
}
.side-btn a:hover {
    opacity: 0.8;
    transition: 0.5s;
}
@media screen and (orientation:landscape) and (max-width: 932px) {
    .side-btn {
        top: 20vh;
        transform: translateY(0%);
    }
}
@media (max-width: 767px) {
    .side-btn {
        display: none;
    }
}

.side-btn .entry {
    position: relative;
    z-index: 10;
}
.side-btn .sns {
    background: #333;
    color: #fff;
    width: 59px;
    text-align: center;
    box-sizing: border-box;
    padding: 3rem 0.7rem 1.7rem;
    border-bottom-left-radius: 5px;
    position: relative;
    z-index: 0;
    top: -15px;
}
.side-btn .sns .txt {
    line-height: 1.3;
    font-size: 1.4rem;
    font-weight: 500;
}
.side-btn .sns ul li {
    margin: 1.1rem auto 0;
}
@media screen and (orientation:landscape) and (max-width: 932px) {
    .side-btn .entry {
        width: 40px;
    }
    .side-btn .sns {
        padding: 2rem 0 1.7rem;
        width: 40px;
    }
    .side-btn .sns .txt {
        font-size: 1.2rem;
    }
    .side-btn .sns ul li img {
        width: 25px;
    }
}

/*-------------------------------
 * 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;
  /*background: transparent;*/
  background: #c6ccce;
}
@media (max-width: 767px) {
    header {
        height: 10.4166666667vw;
        top: -10.4166666667vw;
    }
    /*header.fixed {
        background: #c6ccce;
    }*/
}

.header-btn-menu {
    position: fixed;
    right: 7vw;
    top: 11%;
    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: 960px) {
    .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?=v2) 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: 9px;
}
.header-logo img {
  width: 173px;
}
@media (max-width: 767px) {
  .header-logo {
      left: 10px;
  }
  .header-logo img {
    width: 22vw;
  }
}
@media (max-width: 480px) {
    .header-logo {
        top: 6px;
    }
    .header-logo img {
        width: 22vw;
    }
}

.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: #5a606a;
    display: flex;
    height: 100%;
    justify-content: center;
    width: 100%;
  }
  .header-btn-entry img {
    display: block;
    width: 86.5%;
  }
}

.header-sns {
    display: none;
}
@media (max-width: 767px) {
    .header-sns {
        display: block;
        position: absolute;
        top: 0;
        right: 37.7777777778%;
        width: 74px;
        height: 100%;
        padding-top: 0.2rem;
        box-sizing: border-box;
        background: #333;
    }
    .header-sns .txt {
        font-size: 0.9rem;
        font-weight: 500;
        line-height: 1;
        text-align: center;
        color: #fff;
        margin-top: 0.1rem;
    }
    .header-sns ul {
        display: flex;
        flex-flow: row wrap;
        justify-content: center;
        align-items: flex-start;
        align-content: flex-start;
        gap: 0 10px;
    }
    .header-sns ul li img {
        margin-top: 0.3rem;
    }
}

/*----- 共通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(90, 96, 106, 0.85);
  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 #d1d1d1;
}
.menu ul ul {
  border-bottom: 0;
}
.menu li {
  border-top: 1px solid #d1d1d1;
}
.menu li a {
  color: #5a606a;
  display: block;
  font-size: 2rem;
  padding: 16px 0 16px 70px;
  text-decoration: none;
  font-weight: 500;
}
@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: #f1f1f1;
}
.menu li a.current {
  background: #f1f1f1;
}
.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 {
    width: 100%;
    margin: 0;
    padding: 0 0 7rem;
    background: #c6ccce;
    position: relative;
    z-index: 0;
    -webkit-animation: fadeIn 0.8s ease both;
    animation: fadeIn 0.8s ease both;
}
#main-visual .logo {
    position: absolute;
    top: calc(300 / 1280 * 100vw);
    left: calc(160 / 1280 * 100vw);
    margin: 0;
    z-index: 1;
}
#main-visual .logo img {
    width: calc(350 / 1280 * 100vw);
    height: auto;
}
#main-visual .main-sub {
    width: 100%;
    position: absolute;
    top: calc(30 / 1280 * 100vw);
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    z-index: 1;
}
#main-visual .main-sub img {
    width: calc(800 / 1280 * 100vw);
}
@media (max-width: 1024px) {
    #main-visual .logo {
        left: 6vw;
    }
    #main-visual .logo img {
        width: 320px;
    }
    #main-visual .main-sub img {
        width: 63%;
    }
}
@media (max-width: 960px) {
    #main-visual .logo {
        left: 7vw;
    }
    #main-visual .logo img {
        width: 250px;
    }
}
@media (max-width: 767px) {
    #main-visual {
        padding-bottom: 3rem;
    }
    #main-visual .logo {
        left: 5vw;
    }
    #main-visual .logo img {
        width: calc(250 / 767 * 100vw);
    }
    #main-visual .main-sub {
        top: 15px;
    }
    #main-visual .main-sub img {
        width: 90%;
    }
}
@media (max-width: 480px) {
    #main-visual .logo {
        top: calc(315 / 480 * 100vw);
    }
    #main-visual .logo img {
        width: 200px;
    }
}

/*----- Guide box -----*/
.guide-box {
    width: 100%;
    position: absolute;
    top: calc(640 / 1280 * 100vw);
    left: calc(160 / 1280 * 100vw);
    margin: 0;
    z-index: 1;
}
.guide-box .day {
    font-size: 5.5rem;
    font-weight: 300;
}
.guide-box .day .num {
    display: inline-block;
    font-family: "trajan-pro-3", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 6.2rem;
}
.guide-box .day .num.spacing {
    display: inline-block;
    letter-spacing: 0.1em;
    margin-right: -0.5rem;
}
.guide-box .day .circle {
    display: inline-block;
    margin: 0 1.2rem 0 0;
    width: 48px;
    height: 48px;
    background: #ff122f;
    border-radius: 50%;
    font-size: 3.8rem;
    vertical-align: 15%;
    line-height: 1.1;
    color: #fff;
    box-sizing: border-box;
    text-align: center;
}
.guide-box .dead {
    font-size: 3rem;
    font-weight: 300;
    margin: -1rem 0 1.5rem;
    line-height: 1.6;
}
.guide-box .dead .num {
    display: inline-block;
    font-family: "trajan-pro-3", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 3.5rem;
}
.guide-box .dead .small {
    display: inline-block;
    font-size: 2.2rem;
    vertical-align: 10%;
    letter-spacing: 0;
    margin-right: 0.5rem;
}
@media screen and (max-width: 1024px) {
    .guide-box {
        top: 520px;
        left: 6vw;
    }
    .guide-box .day {
        font-size: calc(21px + 27 * (100vw - 320px) / 704);
    }
    .guide-box .day .num {
        font-size: calc(25px + 30 * (100vw - 320px) / 704);
    }
    .guide-box .dead {
        margin-top: -0.5rem;
        font-size: calc(15px + 14 * (100vw - 320px) / 704);
    }
    .guide-box .dead .num {
        font-size: calc(18px + 16 * (100vw - 320px) / 704);
    }
    .guide-box .dead .small {
        font-size: calc(13px + 8 * (100vw - 320px) / 704);
    }
}
@media (max-width: 960px) {
    .guide-box {
        top: 470px;
    }
}
@media (max-width: 767px) {
    .guide-box {
        top: 350px;
        left: 5vw;
    }
    .guide-box .day .circle {
        width: 34px;
        height: 34px;
        font-size: 2.4rem;
        vertical-align: 15%;
        line-height: 1.25;
    }
    .guide-box .dead {
        margin: 0 0 0.7rem;
    }
    .guide-box .dead .small {
        margin-right: 0.2rem;
        vertical-align: 2%;
    }
}
@media (max-width: 480px) {
    .guide-box {
        top: calc(435/ 480 * 100vw);
    }
    .guide-box .day .circle {
        width: 26px;
        height: 26px;
        font-size: 2rem;
        vertical-align: 8%;
        line-height: 1.2;
        margin: 0 0.8rem 0 0.3rem;
    }
    .guide-box .dead .small.ss {
        font-size: 1.3rem;
        letter-spacing: -0.02em;
    }
}
@media (max-width: 390px) {
    .guide-box .dead .small.ss {
        font-size: 1.2rem;
    }
}
@media (max-width: 360px) {
    .guide-box .dead {
        font-size: 1.4rem;
    }
    .guide-box .dead .num {
        font-size: 1.7rem;
    }
}

.guide-box dl.guide-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    font-size: 2.5rem;
}
.guide-box dl.guide-list dt {
    color: #fff;
    width: 170px;
}
.guide-box dl.guide-list dt span {
    font-size: 2.2rem;
}
@media (max-width: 1024px) {
    .guide-box dl.guide-list {
        font-size: calc(16px + 9 * (100vw - 320px) / 704);
    }
    .guide-box dl.guide-list dt span {
        font-size: calc(14px + 8 * (100vw - 320px) / 704);
    }
}
@media (max-width: 960px) {
    .guide-box dl.guide-list dt {
        width: 150px;
    }
}
@media (max-width: 767px) {
    .guide-box dl.guide-list dt {
        width: 130px;
    }
}
@media (max-width: 480px) {
    .guide-box dl.guide-list dt {
        width: 110px;
    }
}

.guide-box .announce {
    font-size: 3rem;
    font-weight: 600;
    margin: 2rem 0;
    line-height: 1.5;
    color: #D61C01;
}
.guide-box .announce .line {
    display: inline-block;
    /*border-bottom: 5px solid #ff6;*/
    background:linear-gradient(transparent 87%, #ff6 87%) !important;
    line-height: 1.3;
}
.guide-box .announce .line.pd {
    line-height: 1.5;
    margin-top: 0.5rem;
}
.guide-box .announce .num {
    display: inline-block;
    font-family: "trajan-pro-3", serif;
    font-weight: 300;
    font-style: normal;
    font-size: 3.5rem;
}
.guide-box .announce .small {
    display: inline-block;
    font-size: 2.2rem;
    vertical-align: 10%;
    margin: 0 0.5rem;
}
.guide-box .announce .medium {
    display: inline-block;
    font-size: 2.5rem;
}
#entry.announce-add {
    margin-top: 17rem;
}
@media (min-width: 1500px) {
    #entry.announce-add {
        margin-top: 15rem;
    }
}
@media (min-width: 1900px) {
    #entry.announce-add {
        margin-top: 11rem;
    }
}
@media (max-width: 1300px) {
    #entry.announce-add {
        margin-top: 20rem;
    }
}
@media (max-width: 1024px) {
    .guide-box .announce {
        font-size: calc(15px + 14 * (100vw - 320px) / 704);
    }
    .guide-box .announce .num {
        font-size: calc(18px + 16 * (100vw - 320px) / 704);
    }
    .guide-box .announce .medium {
        font-size: calc(14px + 9 * (100vw - 320px) / 704);
    }
    .guide-box .announce .small {
        font-size: calc(13px + 8 * (100vw - 320px) / 704);
    }
    .guide-box .announce .line.pd {
        margin-bottom: 0.5rem;
        margin-top: 0;
    }
    #entry.announce-add {
        margin-top: 30rem;
    }
}
@media (max-width: 960px) {
    #entry.announce-add {
        margin-top: 36.5rem;
    }
}
@media (max-width: 767px) {
    .guide-box .announce {
        margin-top: 1rem;
        line-height: 1.4;
    }
    .guide-box .announce .line {
        border-width: 2px;
    }
    .guide-box .announce .line.pd {
        margin-bottom: 0.4rem;
        margin-top: 0.2rem;
    }
    #entry.announce-add {
        margin-top: 29rem;
    }
}
@media (max-width: 480px) {
    #entry.announce-add {
        margin-top: 26rem;
    }
}

/*----- Swiper ---*/
.swiper {
    z-index: 0 !important;
}
.swiper-slide {
    box-sizing: border-box;
    position: relative;
}

/*----- Swiper TOP main visual ---*/
.swiper-main {
    width: 100%;
    position: relative;
    z-index: 0;
    background: #C7CCCE;
    overflow: hidden;
    -webkit-animation: fadeIn 0.8s ease both;
    animation: fadeIn 0.8s ease both;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

/*-------------------------------
 * 5. CONTENTS
 * ----------------------------*/
main {
    margin: 0 auto;
    padding: 0;
}
.wrap {
    max-width: 1120px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 0;
}
.wrap::after {
    content: "";
    display: block;
    clear: both;
}
@media (max-width: 1120px) {
    .wrap {
        max-width: 100%;
        padding-left: 5rem;
        padding-right: 5rem;
    }
}
@media (max-width: 960px) {
    .wrap {
        padding-left: 3rem;
        padding-right: 3rem;
    }
}
@media (max-width: 480px) {
    .wrap {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

section {
    margin: 0;
    padding: 0;
    position: relative;
}

/*----- box -----*/
.box {
    margin: 0;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
    gap: 10px 30px;
}
.box .col {
    width: calc(100% / 2 - 15px );
    box-sizing: border-box;
}
@media (max-width: 767px) {
    .box .col {
        width: 100%;
    }
    .order1 {
        order: 1;
    }
    .order2 {
        order: 2;
    }
}

/*----- about -----*/
.about-wrap {
    background: url(../img/bg-about.jpg) center center no-repeat;
    background-size: cover;
    margin: 0;
    padding: 10rem 0 8rem;
    font-size: 2.2rem;
    line-height: 2.5;
}
@media (max-width: 1024px) {
    .about-wrap {
        font-size: calc(15px + 6 * (100vw - 320px) / 704);
        padding: 7rem 0 6rem;
    }
}
@media (max-width: 767px) {
    .about-wrap {
        line-height: 2;
        padding: 3.5rem 0;
        text-align: justify;
        text-justify: inter-ideograph
    }
}

.about-wrap .sub {
    margin: 0 auto;
}
.about-wrap .txt-box {
    margin: -7rem 0 0 7rem;
}
.about-wrap .txt {
    font-size: 2rem;
    margin: 6rem 0 0;
}
@media (max-width: 1024px) {
    .about-wrap .txt-box {
        margin: -6rem 0 0 6rem;
    }
    .about-wrap .txt {
        margin-top: 3rem;
        font-size: calc(14px + 6 * (100vw - 320px) / 704);
    }
}
@media (max-width: 960px) {
    .about-wrap .txt-box {
        margin: -5rem 0 0 5rem;
    }
}
@media (max-width: 767px) {
    .about-wrap .txt-box {
        margin: -3.5rem 0.8rem 0 3.5rem;
    }
    .about-wrap .txt {
        margin-top: 2rem;
    }
}

/*----- news -----*/
.news-wrap {
    padding: 5rem 0 7rem;
    background: #DCDFE0;
}
.news-wrap .section-ttl {
    text-align: left;
    letter-spacing: 0.08em;
    margin-left: 1rem;
}
@media (max-width: 767px) {
    .news-wrap {
        padding: 3rem 0 3.5rem;
    }
    .news-wrap .section-ttl {
        margin-left: 0;
        text-align: center;
    }
}

.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: 2.5rem 1rem 2.7rem;
    border-top: 1px solid #babbbe;
    box-sizing: border-box;
}
.news-box ul li:last-of-type {
    border-bottom: 1px solid #babbbe;
}
.news-box ul li a {
    display: block;
    color: #000;
    text-decoration: underline;
}
.news-box ul li a:hover {
    text-decoration: none;
}
.news-box ul li .day {
    width: 17%;
}
.news-box ul li .txt {
    width: 83%;
    box-sizing: border-box;
}
.news-box ul li .icon-new {
    display: inline-block;
    margin-left: 1rem;
    width: 48px;
    height: 25px;
    background: url(../img/icon-new.png) 0 0 no-repeat;
    background-size: contain;
    vertical-align: -15%;
}
.news-box ul li .icon-pdf {
    display: inline-block;
    margin-right: 1rem;
    width: 30px;
    height: 30px;
    background: url(../img/icon-pdf.png) 0 0 no-repeat;
    background-size: contain;
    vertical-align: -20%;
}
@media (max-width: 1024px) {
    .news-box ul li .day {
        font-size: calc(13px + 2 * (100vw - 320px) / 704);
        width: 13%;
    }
    .news-box ul li .txt {
        width: 87%;
    }
}
@media (max-width: 767px) {
    .news-box ul {
        padding-right: 0;
    }
    .news-box ul li {
        padding: 1.5rem 0 1.7rem;
    }
    .news-box ul li .day {
        display: block;
        width: 100%;
    }
    .news-box ul li .txt {
        display: block;
        width: 100%;
        padding-left: 0;
    }
    .news-box ul li .icon-new {
        width: 33px;
        height: 17px;
        margin-left: 0.5rem;
    }
    .news-box ul li .icon-pdf {
        width: 20px;
        height: 20px;
        margin-right: 0.5rem;
    }
}

/*----- question -----*/
.question-wrap {
    padding: 5rem 0 5.2rem;
    background: #f9f9f9;
}
@media (max-width: 767px) {
    .question-wrap {
        padding: 3rem 0;
    }
}

dl.question-list {
    border-top: 1px solid #babbbe;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}
.question-wrap dl.question-list:last-of-type {
    border-bottom: 1px solid #babbbe;
}
dl.question-list dt {
    width: 17%;
    padding: 2.5rem 1rem 2.7rem;
    box-sizing: border-box;
    white-space: nowrap;
}
dl.question-list dd {
    width: 83%;
    padding: 2.5rem 1rem 2.7rem;
    box-sizing: border-box;
}
dl.question-list .bg {
    display: inline-block;
    font-size: 1.4rem;
    background: #ade1ee;
    padding: 0.07rem 1.3rem 0.09rem;
}
dl.question-list .bg.ml {
    margin-left: 1rem;
}
@media (max-width: 1024px) {
    dl.question-list dt {
        width: 13%;
    }
    dl.question-list dd {
        width: 87%;
    }
    dl.question-list .bg.ml-sp {
        margin-left: 1rem;
    }
}
@media (max-width: 767px) {
    dl.question-list dt {
        width: 15%;
        padding: 1.5rem 0 1.7rem;
    }
    dl.question-list dd {
        width: 85%;
        padding: 1.5rem 0 1.7rem 1rem;
        text-align: justify;
        text-justify: inter-ideograph
    }
    dl.question-list .bg {
        padding: 0.05rem 1rem 0.07rem;
    }
    dl.question-list .bg.ml {
        margin-left: 0;
    }
}

/*----- practice -----*/
.practice-wrap {
    background: #F9F9FB url(../img/bg-practice.jpg) center center no-repeat;
    background-size: auto 100%;
    margin: 0;
    padding: 15rem 0 8rem;
}
@media (max-width: 1024px) {
    .practice-wrap {
        font-size: calc(15px + 6 * (100vw - 320px) / 704);
        padding: 7rem 0 6rem;
    }
}
@media (max-width: 767px) {
    .practice-wrap {
        background-size: cover;
        padding: 3.5rem 0;
        text-align: justify;
        text-justify: inter-ideograph
    }
}

.practice-wrap .section-ttl {
    position: relative;
    top: -10rem;
    margin-bottom: -4rem;
}
.practice-wrap .sub {
    margin: 0 auto 4rem;
    font-size: 3.2rem;
    text-align: center;
}
.practice-wrap .sub span {
    display: block;
    font-size: 1.8rem;
    margin-top: 0.5rem;
}
.practice-wrap ul.list {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    font-size: 2.7rem;
    gap: 0 40px;
    margin: 0;
}
.practice-wrap ul.list li span {
    display: inline-block;
    margin-right: 0.8rem;
    color: #5a606a;
}
@media (max-width: 1024px) {
    .practice-wrap .section-ttl {
        top: -3rem;
        margin-bottom: 2rem;
    }
    .practice-wrap .sub {
        font-size: calc(18px + 14 * (100vw - 320px) / 704);
    }
    .practice-wrap ul.list {
        font-size: calc(16px + 11 * (100vw - 320px) / 704);
    }
}
@media (max-width: 767px) {
    .practice-wrap .section-ttl {
        top: 0;
        margin-bottom: 2rem;
    }
    .practice-wrap .sub {
        margin-bottom: 2rem;
    }
    .practice-wrap .sub span {
        margin-top: 0.2rem;
    }
    .practice-wrap ul.list {
        gap: 0 20px;
        max-width: 95%;
        margin: 0 auto;
    }
    .practice-wrap ul.list li {
        width: calc(100% / 2 - 15px );
    }
    .practice-wrap ul.list li span {
        margin-right: 0.5rem;
    }
}

.practice-wrap .answer-btn,
.practice-wrap .answer-txt {
    max-width: 800px;
    font-weight: 500;
    font-size: 2.4rem;
    background: #5a606a;
    padding: 2.5rem 0 2.9rem;
    border-radius: 80px;
    color: #fff;
    text-align: center;
    outline: none;
    overflow: hidden;
    position: relative;
    box-sizing: border-box;
    margin: 5rem auto 7rem;
    cursor: pointer;
}
.practice-wrap .answer-txt {
    display: none;
    animation-name: fadeIn;
    animation-duration: 1s;
    animation-fill-mode: forwards;
}
.practice-wrap .answer-txt span {
    display: inline-block;
    margin-right: 0.8rem;
}
.practice-wrap .answer-btn:hover {
    text-decoration: none;
    color: #fff;
    opacity: 0.85;
    transition: 0.5s;
}
@media (max-width: 1024px) {
    .practice-wrap .answer-btn,
    .practice-wrap .answer-txt {
        font-size: calc(17px + 7 * (100vw - 320px) / 704);
    }
}
@media (max-width: 767px) {
    .practice-wrap .answer-btn,
    .practice-wrap .answer-txt {
        margin: 2.5rem auto 3rem;
        padding: 1.3rem 0 1.5rem;
    }
    .practice-wrap .answer-txt span {
        margin-right: 0.5rem;
    }
}

/*----- book -----*/
.book-wrap {
    background: url(../img/bg-book.jpg) center center no-repeat;
    background-size: cover;
    padding: 5rem 0 6rem;
}
@media (max-width: 767px) {
    .book-wrap {
        padding: 3rem 0;
    }
}

.book-wrap .box {
    gap: 0;
}
.book-wrap .box .img-area {
    width: 35%;
    box-sizing: border-box;
}
.book-wrap .box .txt-area {
    width: 65%;
    padding-left: 7rem;
    box-sizing: border-box;
}
@media (max-width: 1024px) {
    .book-wrap .box .txt-area {
        padding-left: 5rem;
    }
}
@media (max-width: 960px) {
    .book-wrap .box .txt-area {
        padding-left: 3rem;
    }
}
@media (max-width: 767px) {
    .book-wrap .box .img-area {
        width: 100%;
    }
    .book-wrap .box .img-area img {
        width: 60%;
    }
    .book-wrap .box .txt-area {
        width: 100%;
        padding: 2rem 0 0;
        text-align: justify;
        text-justify: inter-ideograph
    }
}

.book-wrap .sub {
    font-size: 3.6rem;
    font-weight: 500;
    line-height: 1.6;
    margin: 0;
}
@media (max-width: 1024px) {
    .book-wrap .sub {
        font-size: calc(18px + 17 * (100vw - 320px) / 704);
    }
}

.book-wrap .price dl {
    display: table;
}
.book-wrap .price dl dt {
    display: table-cell;
}
.book-wrap .price dl dd {
    display: table-cell;
    padding-left: 1rem;
}
.book-wrap .price {
    font-size: 2.4rem;
    font-weight: 500;
    margin: 1.5rem 0;
    line-height: 1.6;
}
.book-wrap .price .num {
    display: inline-block;
    font-size: 2.8rem;
    margin-right: 0.5rem;
}
.book-wrap .price .tax {
    display: inline-block;
    font-size: 2.2rem;
    margin-left: 0.5rem;
}
@media (max-width: 1024px) {
    .book-wrap .price {
        font-size: calc(16px + 8 * (100vw - 320px) / 704);
    }
    .book-wrap .price .num {
        font-size: calc(19px + 9 * (100vw - 320px) / 704);
    }
    .book-wrap .price .tax {
        font-size: calc(14px + 8 * (100vw - 320px) / 704);
    }
}
@media (max-width: 767px) {
    .book-wrap .price {
        margin: 1rem 0;
    }
}

.book-wrap .btn.book {
    margin: 4rem 0;
    max-width: 300px;
    padding-left: 3rem;
}
.book-wrap .btn.book .icon-zoom {
    display: block;
    width: 60px;
    height: 60px;
    background: #5a606a url(../img/icon-zoom.png) center center no-repeat;
    background-size: 48px 42px;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    border-radius: 50%;
}
@media (max-width: 1024px) {
    .book-wrap .btn.book {
        margin: 3rem 0;
    }
}
@media (max-width: 767px) {
    .book-wrap .btn {
        margin: auto;
    }
    .book-wrap .btn.book {
        max-width: 250px;
        margin: 3rem auto;
    }
    .book-wrap .btn.book .icon-zoom {
        width: 50px;
        height: 50px;
        background-size: 36px 32px;
    }
}

/*----- benefits -----*/
.benefits-wrap {
    padding: 5rem 0 5.2rem;
    text-align: center;
}
@media (max-width: 767px) {
    .benefits-wrap {
        padding: 3rem 0 2rem;
    }
}

.benefits-wrap .sub {
    font-size: 2rem;
    margin: 0 0 3rem;
}
.benefits-wrap .txt {
    font-size: 1.4rem;
    margin: 3rem 0 0;
}
@media (max-width: 1024px) {
    .benefits-wrap .sub {
        font-size: calc(16px + 4 * (100vw - 320px) / 704);
    }
    .benefits-wrap .txt {
        font-size: calc(12px + 2 * (100vw - 320px) / 704);
    }
}
@media (max-width: 767px) {
    .benefits-wrap .sub {
        margin-bottom: 2rem;
    }
    .benefits-wrap .txt {
        margin-top: 1.5rem;
    }
}

/*-------------------------------
 * 6. FOOTER
 * ----------------------------*/
footer {
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
    text-align: center;
}
footer .txt a {
    text-decoration: underline;
    color: #003bc2;
}
footer .txt a:hover {
    text-decoration: none;
    color: #003bc2;
}
footer ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    gap: 0 30px;
    font-size: 1.8rem;
    margin: 4rem 0;
}
footer ul li span {
    font-size: 1.6rem;
}
@media (max-width: 1024px) {
    footer ul {
        font-size: calc(15px + 3 * (100vw - 320px) / 704);
    }
    footer ul li span {
        font-size: calc(14px + 2 * (100vw - 320px) / 704);
    }
}
@media (max-width: 767px) {
    footer {
        margin-top: 2rem;
    }
    footer ul {
        margin: 2rem 0;
    }
}

/*-------------------------------
 * 7. MODAL
 * ----------------------------*/
.hide-area {
    display: none;
}

.modaal-close:after, 
.modaal-close:before {
    background: #ccc;  
}
.modaal-close:focus:after,
.modaal-close:focus:before,
.modaal-close:hover:after,
.modaal-close:hover:before {
    background: #666;
}

.modaal-inner-wrapper {
    padding: 0;
}
.modaal-container {
    max-width: 800px;
    background: transparent;
}
.modaal-content-container {
	padding: 0;
}
@media screen and (max-width: 767px) {
  .modaal-inner-wrapper {
    padding:  0 4vw;
  }
}

.modal-content {
  background-color: #c6ccce;
  overflow: auto;
  position: relative;
  width: 100%;
}

.modaal-close {
    position: absolute;
    color: #747474;
    width: 50px;
    height: 50px;
    top: 5px;
    right: 20px;
    -webkit-transition: none;
    transition: none;
}
.modaal-close:before,
.modaal-close:after {
    width: 4px;
    height: 28px;
}
.modaal-close:focus,
.modaal-close:hover {
	background: none;
	color: #747474;
}
.modaal-close::before,
.modaal-close::after,
.modaal-close:focus:before,
.modaal-close:focus:after,
.modaal-close:hover:before,
.modaal-close:hover:after {
	background: #747474;
}
@media screen and (max-width: 767px) {
  .modaal-close {
    width: 30px;
    height: 30px;
    top: 0;
    right: 15px;
  }
  .modaal-close:before,
  .modaal-close:after {
      width: 3px;
      height: 18px;
    }
}

.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: #5a606a;
  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.4rem;
    margin-bottom: 12px;
  }
}

.modal-content__box {
  background-color: #fff;
  padding: 16px 0 32px;
}
.modal-content__box figure {
  margin: 0 0 32px;
  text-align: center;
}
.modal-content__box figure img {
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .modal-content__box {
    padding: 2.5vw 1.1111111111vw 3.3333333333vw;
  }
  .modal-content__box figure {
    margin: 0 5px 16px;
  }
}

.modal-content__txt1 {
  color: #5a606a;
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  text-align: center;
}
.modal-content__txt2 {
  color: #444444;
  font-size: 1.4rem;
  margin-bottom: 16px;
  text-align: center;
}
.modal-content__txt3 {
  color: #333;
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 32px;
  text-align: center;
  font-family: 'Noto Sans JP', sans-serif;
}
@media screen and (max-width: 767px) {
  .modal-content__txt1 {
    font-size: 1.4rem;
    line-height: 1.5;
  }
  .modal-content__txt2 {
    font-size: 1.2rem;
    margin-bottom: 8px;
  }
  .modal-content__txt3 {
    font-size: 1.3rem;
    margin-bottom: 16px;
  }
}

.modal-content__btn {
  align-items: center;
  background-color: #2789c1;
  border-radius: 10px;
  color: #fff;
  cursor: pointer;
  display: flex;
  font-size: 1.7rem;
  font-weight: 700;
  height: 60px;
  line-height: 2.2rem;
  max-width: 430px;
  margin: 0 auto;
  position: relative;
  width: 100%;
  font-size: 1.5rem;
  font-family: 'Noto Sans JP', sans-serif;
}
.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;
}
.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;
}
.modal-content__btn:hover {
  opacity: 0.75;
  transition: 0.7s;
}
.modal-content__btn a {
    display: block;
    width: 100%;
  color: #fff;
  text-decoration: none;
  padding-left: 26.0465116279%;
}
@media screen and (max-width: 767px) {
    .modal-content__btn {
    border-radius: 6px;
    height: 36px;
    line-height: 1.32rem;
    max-width: 258px;
    font-size: 1rem;
    margin-bottom: 3px;
  }
  .modal-content__btn::after {
    height: 38.4px;
    left: 6.6px;
    top: -2.4px;
    width: 60.6px;
  }
  .modal-content__btn::before {
    height: 13.2px;
    right: 12px;
    width: 14.4px;
  }
}

.modal-content ul {
  color: #231815;
  font-size: 1.4rem;
  line-height: 1.7142857143;
  margin-top: 16px;
}
.modal-content ul li {
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 767px) {
  .modal-content ul {
    font-size: 1rem;
    margin-top: 10px;
  }
}

/*-------------------------------
 * 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: 4rem auto;
}
.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: 2rem auto;
    }
}

/*--------- keyframes --------- */
@-webkit-keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
@keyframes fadeIn {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}
