﻿@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://fonts.googleapis.com/css2?family=Sawarabi+Mincho&display=swap');

/*----------------------
 * 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 Sans JP', sans-serif;
    margin: 0;
    padding: 0;
    font-size: 1.6rem;
	color: #000;
	background: #163C79;
	line-height: 1.8;
	font-weight: 400;
	overflow: hidden;
}
@media (max-width: 1024px) {
    body {
        font-size: calc(13px + 3 * (100vw - 320px) / 704);
    }
}

a {
    color: #3868cb;
    text-decoration: none;
    cursor: pointer;
}
a:hover {
    color: #3868cb;
    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.5rem;
    line-height: 1.6;
}
@media (max-width: 1024px) {
    small {
        font-size: calc(12px + 3 * (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;
}
.line-hight16 {
    line-height: 1.6;
}
@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-blue,
.txt-blue a,
.txt-blue a:hover {
    color: #3868cb !important;
}
.txt-blue-light,
.txt-blue-light a,
.txt-blue-light a:hover {
    color: #238de6 !important;
}
.txt-green,
.txt-green a,
.txt-green a:hover {
    color: #2c9360 !important;
}
.txt-yellow,
.txt-yellow a,
.txt-yellow a:hover {
    color: #fff100 !important;
}
.txt-gold,
.txt-gold a,
.txt-gold a:hover {
    color: #a17e00 !important;
}
.txt-black,
.txt-black a,
.txt-black a:hover {
    color: #000 !important;
}
.txt-red,
.txt-red a,
.txt-red a:hover {
    color: #f00 !important;
}

a.txt-underline,
.txt-underline {
    text-decoration: underline !important;
}
a.txt-underline:hover {
    text-decoration: none !important;
}

.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: 600;
    line-height: 1.6;
}

.section-ttl {
    margin: 0 auto 3rem;
    font-size: 2.6rem;
    text-align: center;
    font-family: 'Noto Serif JP', serif;
}
.section-ttl span {
    display: block;
    color: #a17e00;
    font-size: 2rem;
    font-weight: 700;
}
@media (max-width: 1024px) {
    .section-ttl {
        font-size: calc(17px + 9 * (100vw - 320px) / 704);
    }
    .section-ttl span {
        font-size: calc(15px + 5 * (100vw - 320px) / 704);
    }
}
@media (max-width: 767px) {
    .section-ttl {
        margin-bottom: 2rem;
    }
}

.ttl {
    background: #238de6;
    color: #fff;
    font-size: 2rem;
    border-radius: 80px;
    text-align: center;
    padding: 0.2rem 1rem 0.3rem;
    margin: 0 0 3rem;
}
.ttl.blue {
    background: #3868cb;
}
.ttl.green {
    background: #2c9360;
}
.ttl.gray {
    background: #5a5e67;
}
.ttl span {
    display: inline-block;
    margin-left: 4rem;
}
div + .ttl {
    margin-top: 5rem;
}
@media (max-width: 1024px) {
    .ttl {
        font-size: calc(15px + 5 * (100vw - 320px) / 704);
    }
}
@media (max-width: 767px) {
    .ttl {
        margin-bottom: 2rem;
        padding: 0.2rem 1rem 0.3rem;
    }
    .ttl span {
        margin-left: 2rem;
    }
    div + .ttl {
        margin-top: 2.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 {
    display: block;
    max-width: 780px;
    margin: 4.5rem auto 5.5rem;
    padding: 1rem 0.5rem 1.2rem;
    position: relative;
    overflow: hidden;
    background: #3868cb;
    color: #fff;
    font-size: 2.4rem;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
}
.btn:hover {
    text-decoration: none;
    color: #fff;
    opacity: 0.8;
    transition: 0.7s;
}
.btn span {
    display: inline-block;
    font-size: 2.8rem;
    vertical-align: -2%;
}
.btn i {
    display: block;
    position: absolute;
    width: 38px;
    height: 42px;
    background: url(../img/icon-entry.png) 0 0 no-repeat;
    background-size: contain;
    top: 50%;
    left: 22px;
    transform: translateY(-50%);
}
@media (max-width: 1024px) {
    .btn {
        font-size: calc(16px + 8 * (100vw - 320px) / 704);
    }
    .btn span {
        font-size: calc(18px + 10 * (100vw - 320px) / 704);
    }
}
@media (max-width: 767px) {
    .btn {
        max-width: 100%;
        padding: 0.7rem 0.5rem 0.9rem 2rem;
        margin: 2.5rem auto;
    }
    .btn i {
        width: 28px;
        height: 31px;
        left: 12px;
    }
}

/*----- side entry -----*/
.side-entry {
    position: fixed;
    top: 30vh;
    right: 0;
    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;
  background: #153C79;
}
@media (max-width: 767px) {
    header {
        height: 60px;
        top: -60px;
    }
}

.header-btn-menu {
    position: absolute;
    right: 7vw;
    top: 90px;
    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: 10.7vw;
    right: 0;
  }
  .header-btn-menu img {
    width: 40px;
    height: 40px;
  }
}

.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: contain;
    cursor: pointer;
    height: 75px;
    width: 75px;
}
@media (max-width: 767px) {
  .header-btn-menu-on {
      right: 0;
      height: 40px;
      width: 40px;
      background-image: url(../img/header-icon-menu2.png);
  }
}

.header-logo {
    position: absolute;
    left: 7vw;
    top: 9px;
}
.header-logo img {
  width: 220px;
}
@media (max-width: 767px) {
  .header-logo {
      left: 5px;
  }
  .header-logo img {
      width: auto;
      height: 40px;
  }
}

.header-btn-entry {
  display: none;
}
@media (max-width: 767px) {
  .header-btn-entry {
    display: block;
    width: 110px;
    height: 40px;
    position: absolute;
    top: 0;
    right: 40px;
    background: #fff;
    box-sizing: border-box;
  }
  .header-btn-entry a {
    width: 110px;
    height: 40px;
    display: block;
    box-sizing: border-box;
    padding-top: 0.3rem;
  }
  .header-btn-entry img {
    display: block;
    width: auto;
    height: 33px;
  }
}

/*----- 共通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(22, 60, 121, 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: #000;
  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: rgba(56, 104, 202, 0.2);
}
.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 {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0
    position: relative;
    z-index: 0;
    -webkit-animation: fadeIn 0.8s ease both;
    animation: fadeIn 0.8s ease both;
}
#main-visual .logo-box {
    position: absolute;
    top: 0;
    left: 0;
    margin: 0;
    z-index: 10;
}
#main-visual .logo-box .logo {
    width: 350px;
    height: auto;
}
@media (max-width: 1024px) {
    #main-visual .logo-box .logo {
        width: 300px;
    }
}
@media (max-width: 960px) {
    #main-visual .logo-box .logo {
        width: 250px;
        margin: 0;
    }
}
@media (max-width: 767px) {
    #main-visual .logo-box {
        width: 100%;
        height: 60px;
        background: #163C7A;
    }
    #main-visual .logo-box .logo {
        width: auto;
        height: 58px;
    }
}

/*----- Swiper ---*/
.swiper {
    z-index: 0 !important;
}
.swiper-slide {
    box-sizing: border-box;
    position: relative;
}

/*----- Swiper TOP main visual ---*/
.swiper-main {
    max-width: 1200px;
    position: relative;
    z-index: 0;
    margin: 0 auto;
    overflow: hidden;
    -webkit-animation: fadeIn 0.8s ease both;
    animation: fadeIn 0.8s ease both;
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}
@media (max-width: 767px) {
    .swiper-main {
        padding-top: 6rem;
    }
}

/*----- Guide box -----*/
.guide-box {
    max-width: 1200px;
    height: 120px;
    margin: -62px 0 0;
    z-index: 20;
    position: relative;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-end;
    align-content: flex-end;
    font-weight: 600;
    overflow: hidden;
}
.guide-box .day-box {
    width: 70%;
    height: 120px;
    padding: 3rem;
    box-sizing: border-box;
    background: #fff;
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
}
.guide-box .txt-box {
    width: 30%;
    height: 60px;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    box-sizing: border-box;
    background: #238de6;
    text-align: center;
    font-size: 2rem;
    color: #fff100;
}
.guide-box .day-box .kikan {
    width: 80px;
    box-sizing: border-box;
}
.guide-box .day-box .kikan .circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #238de6;
    color: #fff;
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    line-height: 1;
    font-size: 1.6rem;
}
.guide-box .day-box .day {
    width: auto;
    font-size: 2.8rem;
    box-sizing: border-box;
    padding: 0 0 0.7rem 3rem;
}
.guide-box .day-box .day .circle {
    display: inline-block;
    margin: 0 0.4rem;
    width: 28px;
    height: 28px;
    background: #495f72;
    border-radius: 50%;
    font-size: 1.7rem;
    vertical-align: 20%;
    line-height: 1;
    padding-top: 0.4rem;
    color: #fff;
    box-sizing: border-box;
    text-align: center;
}
.guide-box .day-box .day .txt {
    display: block;
    font-size: 1.6rem;
    margin-top: 0.5rem;
}
.guide-box .day-box .day .txt .price {
    display: inline-block;
    margin-left: 3rem;
}
@media (max-width: 1024px) {
    .guide-box .txt-box {
        font-size: calc(17px + 3 * (100vw - 320px) / 704);
    }
}
@media (max-width: 960px) {
    .guide-box {
        height: auto;
        margin-top: 0;
    }
    .guide-box .day-box {
        width: 100%;
        height: auto;
        padding: 1.5rem;
    }
    .guide-box .txt-box {
        width: 100%;
        height: 40px;
        padding-bottom: 0.2rem;
    }
    .guide-box .day-box .kikan {
        width: 15%;
    }
    .guide-box .day-box .kikan .circle {
        width: 80px;
        height: 80px;
        font-size: 1.5rem;
    }
    .guide-box .day-box .day {
        width: 85%;
        font-size: 2.2rem;
        padding: 0 0 0 2rem;
    }
    .guide-box .day-box .day .circle {
        width: 22px;
        height: 22px;
        font-size: 1.4rem;
        vertical-align: 15%;
        padding-top: 0.3rem;
    }
    .guide-box .day-box .day .txt {
        font-size: 1.6rem;
    }
    .guide-box .day-box .day .txt .price {
        margin-left: 2rem;
    }
}
@media (max-width: 767px) {
    .guide-box .day-box {
        padding: 0.7rem 1.5rem;
    }
    .guide-box .day-box .kikan {
        width: 15%;
    }
    .guide-box .day-box .kikan .circle {
        width: 60px;
        height: 60px;
        font-size: 1.3rem;
    }
    .guide-box .day-box .day {
        font-size: 1.9rem;
    }
    .guide-box .day-box .day .txt {
        font-size: 1.4rem;
        margin-top: 0;
    }
}
@media (max-width: 380px) {
    .guide-box .day-box .day {
        font-size: 1.7rem;
    }
}
@media (max-width: 360px) {
    .guide-box .day-box .day {
        font-size: 1.6rem;
    }
    .guide-box .day-box .day .txt {
        font-size: 1.3rem;
    }
}

/*-------------------------------
 * 5. CONTENTS
 * ----------------------------*/
main {
    margin: 0 auto;
    padding: 0;
}
.wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
    position: relative;
    z-index: 0;
    background: #fff;
}
.wrap.bg {
    background: #fff url(../img/bg-grade.png) top left repeat-x;
    background-size: contain;
    padding: 4.5rem 8rem 5.5rem;
    box-sizing: border-box;
}
.wrap::after {
    content: "";
    display: block;
    clear: both;
}
section {
    margin: 2rem 0;
    padding: 0;
    position: relative;
}
@media (max-width: 1200px) {
    .wrap {
        max-width: 100%;
        padding-left: 5rem;
        padding-right: 5rem;
    }
}
@media (max-width: 960px) {
    .wrap {
        padding-left: 3rem;
        padding-right: 3rem;
    }
    .wrap.bg {
        padding: 4.5rem 4rem;
    }
}
@media (max-width: 767px) {
    .wrap.bg {
        padding: 2rem 1.5rem 2.5rem;
    }
    section {
        margin: 1rem 0;
    }
    .order1 {
        order: 1;
    }
    .order2 {
        order: 2;
    }
}
@media (max-width: 480px) {
    .wrap {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
}

/*----- invitation -----*/
.invitation-wrap {
    margin: 5rem 0 0;
    font-family: 'Noto Serif JP', serif;
    font-weight: 400;
    text-align: center;
}
.invitation-wrap .wrap {
    background: url(../img/bg-invitation.jpg) center bottom no-repeat;
    padding: 7rem 0 10rem;
    background-size: cover;
    position: relative;
}
.invitation-wrap .ttl-invitation {
    position: absolute;
    width: 170px;
    top: 30px;
    left: 60px;
}
.invitation-wrap .sub-invitation {
    font-size: 2.6rem;
    font-weight: 400;
    margin-bottom: 6rem;
}
.invitation-wrap .sub-invitation span {
    display: inline-block;
    margin: 0 0.5rem;
    color: #a87c4b;
}
.invitation-wrap .txt {
    font-size: 2rem;
    margin: 2.5rem 0;
}
@media (max-width: 1024px) {
    .invitation-wrap .sub-invitation {
        font-size: calc(18px + 8 * (100vw - 320px) / 704);
    }
    .invitation-wrap .txt {
        font-size: calc(14px + 6 * (100vw - 320px) / 704);
    }
}
@media (max-width: 767px) {
    .invitation-wrap {
        margin-top: 1rem;
    }
    .invitation-wrap .wrap {
        background: url(../img/bg-invitation-sp.jpg) right center no-repeat;
        background-size: 100% 100%;
        padding: 3rem 0 5rem;
    }
    .invitation-wrap .ttl-invitation {
        width: 70px;
        top: 12px;
        left: 12px;
    }
    .invitation-wrap .sub-invitation {
        margin-bottom: 2rem;
    }
    .invitation-wrap .txt {
        margin: 1.5rem 0;
    }
}

/*----- info -----*/
.info-wrap .info-list {
    width: 100%;
	display: table;
	margin: 0;
	font-size: 1.8rem;
	font-weight: 500;
	border-bottom: 1px solid #BABBBB;
}
.info-wrap .info-list:first-of-type {
    border-top: 1px solid #BABBBB;
    margin-top: 4rem;
}
.info-wrap .info-list .day {
    font-size: 2.4rem;
}
.info-wrap .info-list .day span {
    font-size: 2.2rem;
}
.info-wrap .info-list dt {
	width: 15%;
	display: table-cell;
	vertical-align: middle;
	color: #238de6;
	font-weight: 500;
	box-sizing: border-box;
	padding: 1.5rem 0;
}
.info-wrap .info-list dd {
	width: 85%;
	display: table-cell;
	vertical-align: middle;
	box-sizing: border-box;
	padding: 1.5rem;
}
@media (max-width: 1024px) {
    .info-wrap .info-list {
        font-size: calc(14px + 4 * (100vw - 320px) / 704);
    }
    .info-wrap .info-list .day {
        font-size: calc(16px + 10 * (100vw - 320px) / 704);
    }
    .info-wrap .info-list .day span {
        font-size: calc(14px + 8 * (100vw - 320px) / 704);
    }
}
@media (max-width: 767px) {
    .info-wrap .info-list:first-of-type {
        margin-top: 2.5rem;
    }
	.info-wrap .info-list dt {
		width: 20%;
		padding: 1rem 0;
	}
	.info-wrap .info-list dd {
	    width: 80%;
	    padding: 1rem 0 1rem 1rem;
	}
}

.info-wrap .bg-box {
    background: #E4F1FC;
    padding: 2rem 3rem;
    border-radius: 20px;
    margin: 4rem 0 0;
}
.info-wrap .box {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: center;
    align-content: center;
    font-size: 1.5rem;
}
.info-wrap .box .img-area {
    width: 15%;
    box-sizing: border-box;
}
.info-wrap .box .txt-area {
    width: 85%;
    box-sizing: border-box;
    padding-left: 3rem;
}
.info-wrap .box .sub {
    font-size: 1.6rem;
}
.info-wrap .list {
    width: 100%;
	display: table;
	margin: 0;
}
.info-wrap .list dt {
	width: 15%;
	display: table-cell;
	vertical-align: middle;
	color: #238de6;
	font-weight: 500;
	box-sizing: border-box;
}
.info-wrap .list dd {
	width: 85%;
	display: table-cell;
	vertical-align: middle;
	box-sizing: border-box;
}
@media (max-width: 1024px) {
    .info-wrap .box .img-area {
        width: 20%;
    }
    .info-wrap .box .txt-area {
        width: 80%;
    }
    .info-wrap .box .sub {
        font-size: calc(15px + 1 * (100vw - 320px) / 704);
    }
}
@media (max-width: 767px) {
    .info-wrap .bg-box {
        padding: 1.2rem;
        border-radius: 8px;
        margin-top: 2.5rem;
    }
    .info-wrap .box .img-area {
        width: 18%;
    }
    .info-wrap .box .txt-area {
        width: 82%;
        padding-left: 1.5rem;
    }
}

/*----- about -----*/
.about-wrap .img-box {
    margin: 3rem auto;
    max-width: 780px;
}
@media (max-width: 767px) {
    .about-wrap .img-box {
        margin: 2rem auto;
    }
}    

/*----- benefits -----*/
.benefits-wrap .img-box {
    margin: 3rem auto 0;
    max-width: 700px;
}
.benefits-wrap .txt-box {
    margin: 1rem auto;
    max-width: 660px;
}
.benefits-wrap .txt-box.wide {
    max-width: 800px;
}
.benefits-wrap .txt-box .txt-indent2 {
    margin: 0;
}
.benefits-wrap .img-flow-box {
    margin: 3rem auto 0;
}
@media (max-width: 767px) {
    .benefits-wrap .img-box {
        margin-top: 1rem;
    }
    .benefits-wrap .txt-box .txt-indent2 {
        text-indent: -1em;
        padding-left: 3rem;
        margin-right: -1.5rem;
    }
} 

.benefits-wrap .sub {
    font-size: 2rem;
    color: #238de6;
    text-align: center;
    margin: 0 0 2rem;
}
.benefits-wrap .subsub {
    font-size: 2rem;
    text-align: center;
    margin: 0 0 2rem;
    color: #3868cb;
}
.benefits-wrap .subsub span {
    display: inline-block;
    margin-left: 2rem;
}
@media (max-width: 1024px) {
    .benefits-wrap .sub,
    .benefits-wrap .subsub {
        font-size: calc(16px + 4 * (100vw - 320px) / 704);
    }
}
@media (max-width: 767px) {
    .benefits-wrap .sub,
    .benefits-wrap .subsub {
        margin-bottom: 1rem;
    }
}

.benefits-wrap .bg-box {
    background: #E7EDF9;
    box-sizing: border-box;
    padding: 2rem 3rem 3rem;
    margin: 4rem auto 0;
}
.benefits-wrap .bg-box:last-of-type {
    margin-bottom: 0;
}
.benefits-wrap .box {
    display: flex;
    flex-flow: row wrap;
    justify-content: flex-start;
    align-items: flex-start;
    align-content: flex-start;
}
.benefits-wrap .box .img-area {
    width: 35%;
    box-sizing: border-box;
}
.benefits-wrap .box .txt-area {
    width: 65%;
    box-sizing: border-box;
    padding-left: 4rem;
}
.benefits-wrap .box .txt-area small {
    line-height: 1.8;
}
.benefits-wrap .box.evenly {
    gap: 30px 15px;
}
.benefits-wrap .box.evenly .col {
    width: calc((100% - 30px) / 3);
}
@media (max-width: 767px) {
    .benefits-wrap .bg-box {
        padding: 1.5rem 1.5rem 1.2rem;
        margin-top: 2rem;
    }
    .benefits-wrap .box .img-area {
        width: 100%;
    }
    .benefits-wrap .box .txt-area {
        width: 100%;
        padding-left: 0;
    }
    .benefits-wrap .box.evenly {
        gap: 20px 0;
    }
    .benefits-wrap .box.evenly .col {
        width: 100%;
    }
}

/*----- news -----*/
.ttl-news {
    margin: 0;
    border-bottom: 5px solid #e7edf9;
    font-size: 3rem;
    font-family: 'Noto Serif JP', serif;
    font-weight: 500;
    letter-spacing: 0.03em;
}
@media (max-width: 1024px) {
    .ttl-news {
        font-size: calc(20px + 10 * (100vw - 320px) / 704);
    }
}

.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 #a6a6a6;
    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;
    color: #238de6;
    font-size: 1.5rem;
}
.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: 17px;
    background: url(../img/icon-new.png) 0 0 no-repeat;
    background-size: contain;
    vertical-align: -8%;
}
@media (max-width: 1024px) {
    .news-box ul li .day {
        font-size: calc(13px + 2 * (100vw - 320px) / 704);
    }
}
@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: 14px;
    }
}

/*----- banner -----*/
.bnr-list {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: center;
    align-content: center;
    padding: 0;
    margin: 4rem auto 0;
    gap: 20px 20px;
}
.bnr-list li {
    width: calc(25% - 20px);
    box-sizing: border-box;
}
.bnr-list + .bnr-list {
    margin-top: 3rem;
}
@media (max-width: 960px) {
    .bnr-list {
        margin-top: 3rem;
    }
}
@media (max-width: 480px) {
    .bnr-list {
        gap: 20px 10px;
    }
    .bnr-list li {
        width: calc(33% - 10px);
    }
    .bnr-list.two-sp {
        width: 66%;
    }
    .bnr-list.two-sp li {
        width: calc(50% - 10px);
    }
    .bnr-list + .bnr-list {
        margin-top: 2rem;
    }
}

/*-------------------------------
 * 6. FOOTER
 * ----------------------------*/
footer {
    margin: 0;
    padding: 0;
    font-size: 1.5rem;
    text-align: center;
}
footer ul {
    display: flex;
    flex-flow: row wrap;
    justify-content: center;
    align-items: flex-start;
    align-content: flex-start;
    gap: 0 40px;
    font-size: 1.5rem;
    margin: 4rem 0 -1rem;
    color: #3868cb;
    font-weight: 500;
}
footer ul li span {
    color: #000;
}
@media (max-width: 1024px) {
    footer ul {
        font-size: calc(13px + 2 * (100vw - 320px) / 704);
    }
}
@media (max-width: 767px) {
    footer ul {
        margin: 3rem 0 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;
    }
}
