@charset "UTF-8";

/* ------------- COMMON ------------- */
/*  Setting
================ */
:root {
  --white: #FFF;
  --l-gray: #F8F8F8;
  --l-gray2: #E2E2E2;
  --gray: #999999;
  --d-gray: #535151;
  --black: #313131;
  --border1: #CCCCCC;
  --color1: #9F8555;
  --color2: #B2D1D5;
  --color2h: #95C1C7;
  --color3: #BEB54D;
  --color3h: #AAA13A;
  --red: #AA010A;

  --font1: 'Cormorant', sans-serif;
  --mincho: "游明朝体", "Yu Mincho", YuMincho, "ヒラギノ明朝 Pro", "Hiragino Mincho Pro", "MS P明朝", "MS PMincho", serif;
}
/*  Loading
================ */
#container {
  opacity: 0;
  transition: opacity .4s;
}
body.loaded #container {
  opacity: 1 !important;
}
body #container::before {
  content: '';
  width: 100%;
  height: 100%;
  background: var(--white);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 105;
  transition: 1s .4s cubic-bezier(.39, .575, .565, 1);
}
body.loaded #container::before {
  opacity: 0;
  pointer-events: none;
}
/*  Animation
================ */
.iv { opacity: 0; }
/*  Base
================ */
html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}
body {
  font-size: 3.475vw;
  font-family: sans-serif;
  line-height: 2.2;
  letter-spacing: 0.02em;
  color: var(--black);
}
@media (min-width: 375px) {
  body { font-size: calc(81.3% + .125vw); }
}
@media (min-width: 576px) {
  body { font-size: 87.5%; }
}
@media (min-width: 992px) {
  body {
    font-family: "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "MS Pゴシック", "MS PGothic", sans-serif;
  }
}
@media (min-width: 1440px) {
  body { font-size: 93.8%; }
}

#container {
  width: 100%;
  overflow: hidden;
}

/*  Header
================ */
#siteHeader {
  height: 60px;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
  transition: background .6s, color .6s, height .6s; }
#siteHeader.is-fixed {
	position: fixed;
  background: rgba(255,255,255,1);
}
body.confirm #siteHeader .gNav,
body.complete #siteHeader .nav-btn,
body.confirm #siteHeader .gNav,
body.complete #siteHeader .nav-btn {
	display: none;
}

.UpMove{
  animation: UpAnime 0.5s forwards;
}
.DownMove{
  animation: DownAnime 0.5s forwards;
}
@keyframes UpAnime{
  0% { opacity: 1; transform: translateY(0); }
  100% { opacity: 0; transform: translateY(-100px); }
}
@keyframes DownAnime{
  0% { opacity: 0; transform: translateY(-100px); }
  100% { opacity: 1; transform: translateY(0); }
}

.inner-header {
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center; }

#logo {
  margin: 0;
  flex: 0 1 94px;
  max-width: 94px;
  margin: 0 5%;
  position: relative;
  z-index: 999;
  color: var(--black);
}
#logo .logo__inner {
  display: block;
  color: inherit;
  position: relative;
}
#logo .logo__inner img,
#logo .logo__inner svg {
	width: 100%;
	height: auto;
  display: inline-block;
  vertical-align: middle;
  fill: currentColor;
}

@media (min-width: 992px) {
  #siteHeader {
    height: 115px;
  }
  #siteHeader.is-fixed {
	  height: 80px;
	}
  #logo {
  	margin-right: 0;
  	margin-left: 35px;
    flex: 0 0 12.615em;
    max-width: 12.615em;
    transition: transform .3s;
  }
  #siteHeader.is-fixed #logo {
    transform: scale(0.8);
	}
}
/*  Global Navi
================ */
nav a {
  display: block;
  text-decoration: none; }
nav ul {
  display: flex;
  flex-wrap: wrap;
  border-bottom: 0;
  margin: 0; }
nav ul li a {
  display: block;
  color: inherit;
  text-decoration: none;
  line-height: 1.25;
  padding: .75em 1em; }
nav ul li a span,
nav ul li a em {
  display: block;
  font-style: normal; }

@media(max-width: 991px){
	.gNav {
		color: var(--white);
	  flex: 1 1 100%;
	  max-width: 100%;
	  height: 100%;
	  position: fixed;
	  top: 60px;
	  right: 0;
	  left: 0;

	  display: none; 
	}
	.gNav .gNav__overlay {
		width: 100%;
		height: 100%;
		background: transparent;
		position: absolute;
	  top: 0;
	  right: 0;
	}
	.gNav__inner {
	  display: flex;
	  width: 22em;
	  height: calc(100vh - 60px);
	  background: rgba(178,209,213,.95);
	  color: var(--white);
	  position: absolute;
	  top: 0;
	  right: 0;
	    
	  opacity: 0;
	  transform: translate3d(100%,0,0);
	  transition: opacity .4s, transform 1s cubic-bezier(0.190, 1.000, 0.220, 1.000);
	}
	.gNav .navBar {
	  width: 100%;
	  position: relative;
	}
	.gNav .navBar ul {
	  display: flex;
	  justify-content: flex-end;
	  margin: 0;
	}
	.gNav .navBar > ul {
	  flex-direction: column;
	  margin: 10px 25px;
	}
	.gNav .navBar > ul > li {
	  border-bottom: 1px solid currentColor;
	  opacity: 0;
	  transform: translate3d(1em,0,0);
	  transition: transform 1.6s cubic-bezier(0.190, 1.000, 0.220, 1.000), opacity 1s;
	}
	.gNav .navBar > ul > li:nth-of-type(1) { transition-delay: 0.4s; }
	.gNav .navBar > ul > li:nth-of-type(2) { transition-delay: 0.5s; }
	.gNav .navBar > ul > li:nth-of-type(3) { transition-delay: 0.6s; }
	.gNav .navBar > ul > li:nth-of-type(4) { transition-delay: 0.7s; }
	.gNav .navBar > ul > li:nth-of-type(5) { transition-delay: 0.8s; }
	.gNav .navBar > ul > li:nth-of-type(6) { transition-delay: 0.9s; }
	.gNav .navBar > ul > li:nth-of-type(7) { transition-delay: 1.0s; }
	.gNav .navBar > ul > li:nth-of-type(8) { transition-delay: 1.1s; }
	.gNav .navBar > ul > li:nth-of-type(9) { transition-delay: 1.2s; }

	.gNav .navBar ul li a {
		font-family: var(--mincho);
	  padding: 1.5em 0;
	  letter-spacing: 0.06em;
	}
	.gNav .navBar ul li a span {
	  display: block;
	  font-size: 1.375rem;
	  letter-spacing: 0.1em;
	  display: block;
	  margin-bottom: .35em;
	}

	/* OPEN */
	.gNav.on .gNav__inner{
	  opacity: 1;
	  transform: translate3d(0,0,0);
	}
	.gNav.on .navBar > ul > li {
	  opacity: 1;
	  transform: translate3d(0,0,0);
	}

	/* Nav Btn */
	.nav-btn {
		color: var(--white);
	  background: rgba(178,209,213,.95);
	  display: flex;
	  justify-content: center;
	  align-items: center;
	  width: 60px;
	  height: 60px;
	  padding: 15px;
	  position: absolute;
	  top: 0;
	  right: 0;
	  z-index: 2;
	  transition: top .6s;
	}
	.nav-btn i {
	  display: block;
	  background: currentColor;
	  height: 1px;
	  position: absolute;
	  right: 17px;
	  left: 17px;
	  margin-top: -0.5px;
	  transition: transform .3s;
	}
	.nav-btn i:nth-of-type(1){
	  top: 50%;
	}
	.nav-btn i:nth-of-type(2){
	  top: 20px;
	  transition: top .3s .35s, transform .3s .1s;
	}
	.nav-btn i:nth-of-type(3){
	  top: 40px;
	  transition: top .3s .35s, transform .3s .1s;
	}
	.nav-btn.on i:nth-of-type(1){
	  transform: scaleX(0);
	}
	.nav-btn.on i:nth-of-type(2){
	  top: 50%;
	  transform: rotate(30deg);
	  transition: top .3s .1s, transform .3s .35s;
	}
	.nav-btn.on i:nth-of-type(3){
	  top: 50%;
	  transform: rotate(-30deg);
	  transition: top .3s .1s, transform .3s .35s;
	}
}


@media(min-width: 992px){
	.gNav .navBar ul {
		justify-content: flex-end;
  }
	.gNav .navBar ul li a {
    padding: .35em 1em;
  }
  .gNav .navBar ul li a span {
    font-size: 1.875rem;
  }
  .nav-btn {
    top: calc((115px - 60px)/2);
    right: calc(5vw - 17px);
  }
  #siteHeader.is-fixed .nav-btn {
	  top: calc((80px - 60px)/2);
	}
}



.nav-btn {
	pointer-events: none;
  opacity: 0;
  transition: top .6s, opacity .4s;
}
#siteHeader.is-fixed .nav-btn {
	pointer-events: auto;
  opacity: 1;
}
@media(min-width: 992px){
	.gNav {
		display: block !important;
		padding-right: 255px;
		pointer-events: none;
    opacity: 0;
  }
  #siteHeader.is-fixed .gNav {
  	pointer-events: auto;
    opacity: 1;
  }
	.nav-btn {
    display: none !important;
  }
}

/*  Footer
================ */
#siteFooter {
  clear: both;
  overflow: hidden;
}
#siteFooter .inner-footer {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#siteFooter .logo__inner {
  display: inline-block;
  color: inherit;
}
#siteFooter .footer-bottom {
	padding-top: 2.75em;
  background: var(--d-gray);
  color: var(--white);
}
#siteFooter .footer-bottom__inner {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
#siteFooter .footer-bottom #footerLogo img,
#siteFooter .footer-bottom #footerLogo svg {
  width: 12.615em;
  margin-bottom: .25em;
  fill: currentColor;
}
#siteFooter .footer-bottom .navBar ul li {
	font-size: .923em;
	position: relative;
}
#siteFooter .footer-bottom .navBar ul li:not(:last-child)::after {
  content: '';
  display: block;
  width: 1px;
  height: .8em;
  background: currentColor;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
#siteFooter .copyright {
  font-size: .846em;
  text-align: center;
}



.fixedFormLink {
	width: 100%;
	text-align: center;
	background: rgba(255,255,255,0.6);
	padding: 15px 7.5%;
	position: fixed;
	bottom: 0;
	right: 0;
	z-index: 9999;
}
.fixedFormLink .button {
	line-height: 1.275;
}
@media (max-width: 991px) {
	.fixedFormLink {
		opacity: 0;
		transform: translateY(100%);
		transition: transform .6s, opacity .6s;
	}
	.fixedFormLink.on {
		opacity: 1;
		transform: translateY(0);
	}
}
@media (min-width: 992px) {
	.fixedFormLink {
		width: 245px;
		background: transparent;
		padding: 15px 15px 15px 0;
		top: 0;
		bottom: auto;
	}
	.fixedFormLink .button {
		padding-right: 3em;
	}
}



/*  Set
================ */
a {
  color: inherit;
  text-decoration: none;
  transition: color .2s, background .2s, opacity .2s;
}
img {
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: middle;
}
p { margin-bottom: 1em; }
p:last-child { margin-bottom: 0; }
h2,h3,h4,h5,h6 {
	font-family: var(--mincho);
	font-weight: 500 !important;
}
h2,h3 {
	line-height: 1.75;
	margin-bottom: .75em;
}
h4,h5,h6 {
	line-height: 1.75;
	margin-bottom: 1em;
}
.h1 { font-size: 1.846em; }
h2 { font-size: 1.714em; }
h3 { font-size: 1.429em; }
h4 { font-size: 1.286em; }
h5 { font-size: 1.143em; }
h6 { font-size: 1.071em; }

.ttl, .ja_ttl, .read, .mincho {
	font-family: var(--mincho);
	font-weight: 500 !important;
}
.font1, .en_ttl {
	font-family: var(--font1);
	font-weight: 400;
	letter-spacing: .1em;
	text-transform: uppercase;
}

.text-left { text-align: left !important; }
.text-right { text-align: right !important; }
.text-center { text-align: center !important; }

@media (min-width: 576px) {
  .text-sm-left { text-align: left !important; }
  .text-sm-right { text-align: right !important; }
  .text-sm-center { text-align: center !important; }
}
@media (min-width: 768px) {
  .text-md-left { text-align: left !important; }
  .text-md-right { text-align: right !important; }
  .text-md-center { text-align: center !important; }
}
@media (min-width: 992px) {
  .text-lg-left { text-align: left !important; }
  .text-lg-right { text-align: right !important; }
  .text-lg-center { text-align: center !important; }
}
@media (min-width: 1200px) {
  .text-xl-left { text-align: left !important; }
  .text-xl-right { text-align: right !important; }
  .text-xl-center { text-align: center !important; }
}

.btn {
  display: inline-block;
  text-align: center;
  font-size: 1rem;
  font-family: Lato, sans-serif;
  letter-spacing: 0;
  line-height: 1.5;
  font-weight: 400;
  padding: .5em 1em;
  width: 250px;
  max-width: 100%;
  background-color: var(--color2);
  border: 0;
  color: var(--white);
  border-radius: 3em;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: .2s;
}
.btn:hover {
  background-color: var(--color2h);
}
.btn .insta {
  padding-left: 1.75em;
  position: relative;
}
.btn .insta::before {
  content: '';
  width: 1em;
  height: 1em;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2214%22%20height%3D%2213.997%22%20viewBox%3D%220%200%2014%2013.997%22%3E%0A%20%20%3Cpath%20id%3D%22Icon_awesome-instagram%22%20data-name%3D%22Icon%20awesome-instagram%22%20d%3D%22M7%2C5.648a3.589%2C3.589%2C0%2C1%2C0%2C3.589%2C3.589A3.583%2C3.583%2C0%2C0%2C0%2C7%2C5.648Zm0%2C5.922A2.333%2C2.333%2C0%2C1%2C1%2C9.329%2C9.236%2C2.337%2C2.337%2C0%2C0%2C1%2C7%2C11.569ZM11.569%2C5.5a.837.837%2C0%2C1%2C1-.837-.837A.835.835%2C0%2C0%2C1%2C11.569%2C5.5Zm2.377.85a4.142%2C4.142%2C0%2C0%2C0-1.131-2.933A4.17%2C4.17%2C0%2C0%2C0%2C9.882%2C2.287c-1.156-.066-4.619-.066-5.775%2C0A4.164%2C4.164%2C0%2C0%2C0%2C1.175%2C3.414%2C4.156%2C4.156%2C0%2C0%2C0%2C.044%2C6.347c-.066%2C1.156-.066%2C4.619%2C0%2C5.775a4.142%2C4.142%2C0%2C0%2C0%2C1.131%2C2.933%2C4.175%2C4.175%2C0%2C0%2C0%2C2.933%2C1.131c1.156.066%2C4.619.066%2C5.775%2C0a4.142%2C4.142%2C0%2C0%2C0%2C2.933-1.131%2C4.169%2C4.169%2C0%2C0%2C0%2C1.131-2.933c.066-1.156.066-4.616%2C0-5.772Zm-1.493%2C7.012a2.362%2C2.362%2C0%2C0%2C1-1.331%2C1.331A15.426%2C15.426%2C0%2C0%2C1%2C7%2C14.974a15.546%2C15.546%2C0%2C0%2C1-4.126-.281A2.362%2C2.362%2C0%2C0%2C1%2C1.54%2C13.362a15.426%2C15.426%2C0%2C0%2C1-.281-4.126A15.546%2C15.546%2C0%2C0%2C1%2C1.54%2C5.11%2C2.362%2C2.362%2C0%2C0%2C1%2C2.87%2C3.78%2C15.426%2C15.426%2C0%2C0%2C1%2C7%2C3.5a15.546%2C15.546%2C0%2C0%2C1%2C4.126.281A2.362%2C2.362%2C0%2C0%2C1%2C12.453%2C5.11a15.426%2C15.426%2C0%2C0%2C1%2C.281%2C4.126A15.417%2C15.417%2C0%2C0%2C1%2C12.453%2C13.362Z%22%20transform%3D%22translate(0.005%20-2.238)%22%20fill%3D%22%23fff%22%2F%3E%0A%3C%2Fsvg%3E');
  background-size: contain;
}

.bg-l-gray {
	background-color: var(--l-gray);
}

@media (min-width: 576px) {
	body .container {
		padding-right: 20px;
		padding-left: 20px;
	}
}
@media (min-width: 1200px) {
	body .container {
		max-width: 1080px;
	}
}
@media (min-width: 1440px) {
	body .container {
		max-width: 1400px;
	}
}


.section {
  margin-top: 3.5em;
  margin-bottom: 3.5em;
}
.section-padding {
  padding-top: 3.5em;
  padding-bottom: 3.5em;
}
.content {
  margin-top: 2.25em;
  margin-bottom: 2.25em;
}

@media (min-width: 992px) {
  .section {
    margin-top: 4.25em;
    margin-bottom: 4.25em;
  }
  .section-padding {
    padding-top: 4.25em;
    padding-bottom: 4.25em;
  }
  .content {
    margin-top: 3.25em;
    margin-bottom: 3.25em;
  }
}

.section__header {
	text-align: center;
}
.section__header .en_ttl {
	font-size: 1.143em;
	line-height: 1;
	margin-bottom: .25em;
	color: var(--color1);
}
.section__header .en_ttl.h1 {
	font-size: 1.714em;
}
.en_ttl + .ja_ttl {
	display: block;
	font-size: 1.429em;
	margin-top: .5em;
}
@media (min-width: 992px) {
	.section__header .en_ttl {
		font-size: 1.286em;
	}
	.en_ttl + .ja_ttl {
		font-size: 1.714em;
	}
}

#main > article > section:nth-of-type(odd){
	background: url(img/bg.jpg) no-repeat center center / cover;
}


.card {
	padding-top: 15px;
	padding-bottom: 35px;
	position: relative;
}
.card .imgBox {
	margin-bottom: 20px;
}
.card .name {
	margin-bottom: .5em;
}
.card p {
	font-size: .929em;
}
.card .btn {
	margin-top: 5px;
}
.card sub {
	display: block;
	font-size: .688rem;
	line-height: 1.75;
}

/* ------------- MAIN ------------- */

/* ============================
   MV
=============================== */
#mv {
	background: #EAEAEA;
	position: relative;
	color: var(--white);
}
#mv .mv__bg {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100vh;
	background-color: #EAEAEA;
	background-repeat: no-repeat;
	background-position: center center;
	background-size: cover;
}
#mv .mv__bg img {
	width: 100%;
	height: 100%;
	object-fit: cover;
}
#mv .mv__bg::before {
	content: '';
	width: 100%;
	height: 25%;
	/*background: linear-gradient(0deg, #EAEAEA 0%, transparent 100%);*/
	position: absolute;
	right: 0;
	bottom: 0;
}
#mv .mv__inner {
	position: relative;
	z-index: 5;
}
#mv .mv__cont .bnr {
	display: block;
}

@media (max-width: 767px){
	#mv .mv__bg {
		min-height: 175vw;
	}
	#mv .mv__bg img {
		/*object-position: 30% 50%;*/
	}
	#mv .mv__ttl {
		height: 100vh;
		min-height: 175vw;
		display: flex;
		justify-content: center;
		align-items: flex-end;
		padding-bottom: 30px;
	}
	#mv .mv__cont {
		background: #EAEAEA;
		padding-bottom: 50px;
	}
	#mv .mv__cont .date,
	#mv .mv__cont .bnr {
		margin-top: 20px;
	}
}
@media (min-width: 768px){
	#mv {
		background-position: left center;
		background-size: cover;
	}
	#mv .mv__bg::before {
		display: none;
		width: 15%;
		height: 100%;
		background: linear-gradient(90deg, transparent 0%, #EAEAEA 100%);
	}
	#mv .mv__bg {
		width: 100%;
		min-height: 700px;
		max-height: 75vw;
	}
	#mv .mv__inner {
		height: 100vh;
		min-height: 700px;
		max-height: 75vw;
		display: flex;
		flex-direction: column;
		justify-content: flex-end;
		padding: 0 0 6% 0;
	}
	#mv .mv__ttl,
	#mv .mv__cont {
		padding-left: 2.5%;
		width: 90%;
	}
	#mv .mv__cont {
		margin-top: 30px;
	}
	#mv .mv__cont .date,
	#mv .mv__cont .bnr {
		margin-top: 30px;
	}
}
@media (min-width: 992px){
	#mv .mv__bg,
	#mv .mv__inner {
		min-height: 600px;
	}
	#mv .mv__ttl,
	#mv .mv__cont {
		padding-right: 5%;
	}
	#mv .mv__cont .date {
		margin-top: 45px;
		width: 82%;
	}

	#mv .fix__bnr {
		width: 230px;
		position: fixed;
		right: 0;
		bottom: 0;
	}
}
@media (min-width: 1200px){
	#mv .mv__bg,
	#mv .mv__inner {
		min-height: 700px;
	}
}
@media (min-width: 1440px){
	#mv .mv__bg,
	#mv .mv__inner {
		min-height: 800px;
	}
	#mv .mv__ttl,
	#mv .mv__cont {
		padding-right: 2.5%;
	}
}



/* ============================
   About
=============================== */
#about {
	position: relative;
}
#about .imgBox figure img {
	display: block;
}
#about .imgBox figure img:nth-of-type(1) {
	width: 82.5%;
}
#about .imgBox figure img:nth-of-type(2) {
	width: 80%;
	margin: -20% calc(((100vw - 100%)/2)*-1) 0 auto;
}
@media (min-width: 576px) {
}
@media (min-width: 768px) and (max-width: 991px) {
	#about .txtBox,
	#about .imgBox {
		width: 83.333333%;
		margin-right: auto;
		margin-left: auto;
	}
	#about .imgBox figure img:nth-of-type(1) {
		width: 55%;
	}
	#about .imgBox figure img:nth-of-type(2) {
		width: 55%;
		margin: -35% 0 0 auto;
	}
}
@media (min-width: 992px) {
	#about {
		min-height: calc(60vw + 160px);
	}
	#about .section__header {
		text-align: left;
	}
	#about .txtBox {
		width: 50%;
	}
	#about .imgBox {
		width: 46%;
		position: absolute;
		top: 60px;
		right: 0;
	}
	#about .imgBox figure img:nth-of-type(1) {
		width: 64%;
	}
	#about .imgBox figure img:nth-of-type(2) {
		width: 62%;
		margin: -12% 0 0 auto;
	}
}
@media (min-width: 1200px) {
	#about {
		min-height: calc(58vw + 160px);
	}
	#about .imgBox {
		width: 40%;
		top: 80px;
	}
	#about .txtBox {
		padding-top: 20px;
		padding-bottom: 20px;
	}
}
@media (min-width: 1440px) {
	#about .txtBox {
		padding-top: 60px;
		padding-bottom: 60px;
	}
}
/* ============================
   Program
=============================== */
#program #cont2 .box {
	background: var(--white);
	padding: 35px 5%;
}
#program #cont2 .box .imgBox {
	max-width: 316px;
}
#program #cont2 .box .name {
	display: flex;
	align-items: center;
	line-height: 1.5;
}
#program #cont2 .box .name span {
	font-size: 1rem;
	color: var(--color1);
	margin-left: 1em;
}
#program #cont2 .box p {
	font-size: .929em;
}
#program #cont2 .box .btn {
	margin-top: 10px;
}

#program #cont3 .item-ttl,
#program #cont3 .item {
	margin-top: 1em;
	margin-bottom: 1em;
}
#program #cont3 .acc_btn {
	padding: .25em;
	background: var(--d-gray);
	color: var(--white);
	font-weight: 600;
	text-align: center;
}
#program #cont3 ul {
	list-style: none;
	padding-top: .25em;
}
#program #cont3 li {
	display: flex;
	padding: .75em 0;
	border-bottom: 1px dotted var(--border1);
}
#program #cont3 li span.time {
	font-family: 'Lato', sans-serif;
	font-weight: 700;
	display: inline-block;
	text-align: right;
	flex: 0 0 3em;
}
#program #cont3 li span.time + span {
	padding-left: 1.5em;
}

@media (max-width: 767px) {
	#program #cont2 .box .imgBox {
		margin-bottom: 30px;
	}
	#program #cont3 .acc_btn {
	  display: block;
	  font-weight: 600;
	  white-space: nowrap;
	  padding: 1em 4em;
	  position: relative;
	  cursor: pointer;
	}
	#program #cont3 .acc_btn::before {
	  content: '';
	  display: block;
	  width: 2em;
	  height: 2em;
	  border: 1px solid currentColor;
	  border-radius: 50%;
	  position: absolute;
	  top: 50%;
	  right: 1em;
	  transition: .2s;
	  transform: translateY(-50%);
	}
	#program #cont3 .acc_btn::after {
	  content: '';
	  display: block;
	  width: .5em;
	  height: .5em;
	  border-top: 1px solid currentColor;
	  border-right: 1px solid currentColor;
	  position: absolute;
	  top: 50%;
	  right: 1.75em;
	  transition: .2s;
	  transform: translateY(-72.5%) rotate(135deg);
	}
	#program #cont3 .acc_sp.on .acc_btn:after {
	  transform: translateY(-25%) rotate(-45deg);
	}
	#program #cont3 .acc_body {
		padding-bottom: 1em;
	}
	#program #cont3 li:last-child {
	  border-bottom: 0;
	}
}
@media (max-width: 991px) {
	#program #cont1 .txtBox {
		margin-top: 0;
		margin-bottom: 0;
	}
	#program #cont3 .item-ttl {
		width: 19.46em;
		padding-bottom: 1em;
		margin-right: auto;
		margin-left: auto;
	}
	#program #cont3 .item-ttl,
	#program #cont3 .item {
		margin-top: .5em;
		margin-bottom: .5em;
	}
	#program #cont3 li {
		font-size: .929em;
	}
}
@media (min-width: 992px) {
	#program #cont1 .imgBox .over {
		margin-left: calc(((50vw - 100%)/2)*-1);
		padding-right: 12%;
		height: 100%;
	}
	#program #cont1 .imgBox .over img {
		width: 100%;
		height: 100%;
		object-fit: cover;
	}
	#program #cont1 .txtBox {
		padding-left: 0;
	}
	#program #cont2 .box {
		padding: 35px;
	}
}
@media (min-width: 1200px) {
	#program #cont3 li {
		font-size: 1.071em;
	}
	#program #cont3 li span.time {
		flex: 0 0 4em;
	}
}
@media (min-width: 1440px) {
	#program #cont1 .row {
		align-items: center;
	}
	#program #cont2 .box .txtBox {
		padding-left: 25px;
	}
	#program #cont3 .item-ttl {
		width: 80%
	}
}

/* ============================
   Brand
=============================== */
#brand .cards {
	margin-right: -30px;
	margin-left: -30px;
}
#brand .cards .card {
	padding-right: 30px;
	padding-left: 30px;
}
#brand .card .name {
	color: var(--color1);
	font-family: var(--font1);
	font-size: 1.857em;
	margin-bottom: .25em;
}
#brand .card .btn {
	margin-top: 1em;
}


/* ============================
   Benefits
=============================== */
#benefits .card .num {
	color: var(--color1);
	font-family: 'Didot', 'GFS Didot', serif;
	font-size: 5.714em;
	line-height: 1;
	font-style: italic;
}
#benefits .card .ttl {
	font-size: 1.1em;
}
@media (max-width: 767px) {
	#benefits .card .txtBox {
		padding-left: 25%;
		position: relative;
	}
	#benefits .card .num {
		width: 25%;
		position: absolute;
		top: -7.5%;
		left: 0;
		text-align: center;
	}
}
@media (min-width: 768px) {
	#benefits .card .imgBox {
		margin-bottom: -40px;
	}
}
@media (min-width: 1200px) {
	#benefits .cards {
		margin-right: -20px;
		margin-left: -20px;
	}
	#benefits .cards .card {
		padding-right: 10px;
		padding-left: 10px;
	}
}

/* ============================
   Model
=============================== */
#model .item {
	padding-top: 15px;
	padding-bottom: 15px;
}
#model .item .btn {
	margin-top: 10px;
}
#model .card {
}
.col-lg-3 {
    flex: 0 0 20%;
    max-width: 20%;
}
@media (max-width: 991px) {
	#model .item .imgBox {
		margin-bottom: 25px;
	}
	#model .card {
	}
}
@media (max-width: 575px) {
	#model .item .imgBox {
		margin-bottom: 25px;
	}
	#model .card {
		padding: 20px 30px;
    	position: relative;
	}
	#model .card::before {
		content: '';
		display: block;
		height: 1px;
		border-top: 1px dotted var(--border1);
		position: absolute;
		top: 0;
		right: 15px;
		left: 15px;
	}
	#model .card .imgBox {
		margin-bottom: 0;
	}
	#model .card .txtBox {
		position: static;
	}
	#model .card .txtBox p {
		margin-bottom: 0;
	}
	#model .card .btn {
		left: 50%;
		transform: translateX(-50%);
	}
}
@media (min-width: 576px) {
	#model .item {
		padding-top: 15px;
		padding-bottom: 0;
		align-items: center;
	}
	#model .card {
		padding: 0;
    	margin: 0 1.5% 30px;
	}
}

/* ============================
   FAQ
=============================== */
.acc {
  background: var(--white);
  margin-bottom: 1.25em;
}
.acc .acc_btn {
  display: block;
  font-family: var(--mincho);
  font-weight: 400;
  white-space: nowrap;
  padding: 1.25em 4em;
  position: relative;
  cursor: pointer;
}
.acc .acc_btn::before {
  content: '';
  display: block;
  width: 2em;
  height: 2em;
  background: var(--l-gray2);
  border-radius: 50%;
  position: absolute;
  top: 50%;
  right: 1em;
  transition: .2s;
  transform: translateY(-50%);
}
.acc .acc_btn::after {
  content: '';
  display: block;
  width: .5em;
  height: .5em;
  border-top: 1px solid var(--black);
  border-right: 1px solid var(--black);
  position: absolute;
  top: 50%;
  right: 1.75em;
  transition: .2s;
  transform: translateY(-72.5%) rotate(135deg);
}
.acc .acc.on .acc_btn:after {
  transform: translateY(-25%) rotate(-45deg);
}



.acc .acc_btn .faq__q {
  font-size: 1.231em;
  line-height: 1.5;
  letter-spacing: .08em;
  white-space: normal;
  padding: .5rem 0 .5rem .5rem;
  position: relative;
}
.acc .acc_btn .faq__q .label {
  font-family: var(--font1);
  color: var(--color1);
  display: block;
  font-size: 1.538rem;
  line-height: 1.25;
  position: absolute;
  top: .25em;
  left: -2rem;
}

.acc .acc_body .faq__a {
  padding: 0 4em 1.25em 4.6em;
  position: relative;
}
.acc .acc_body .faq__a .label {
  font-family: var(--font1);
  color: var(--color1);
  display: block;
  font-size: 1.538rem;
  line-height: 1.25;
  position: absolute;
  top: 0;
  left: 1.1em;
}
.acc .acc_body .faq__a a {
  color: var(--color1);
  text-decoration: underline;
}
@media (max-width: 575px){
  .acc .acc_btn .faq__q {
    font-size: 1.154em;
  }
}
/* ============================
   Access
=============================== */
.ggmap {
	position: relative;
	width: 100%;
	height: 0;
	padding-top: 100%;
}
.ggmap iframe {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
}
@media (min-width: 576px) {
	.ggmap {
		padding-top: 75%;
	}
}
@media (min-width: 768px) {
	.ggmap {
		padding-top: 60%;
	}
}
@media (min-width: 992px) {
	.ggmap {
		padding-top: 36.36%;
	}
}

#access {
  position: relative;
}
#access .txtBox dl {
	display: flex;
	flex-wrap: wrap;
}
#access .txtBox dl dt {
	font-weight: 600;
	flex: 0 0 5em;
	margin: .5em 0;
}
#access .txtBox dl dd {
	flex: 0 0 calc(100% - 5em);
	margin: .5em 0;
}
@media (min-width: 576px) {
	#access .txtBox dl dt {
		flex: 0 0 7em;
	}
	#access .txtBox dl dd {
		flex: 0 0 calc(100% - 7em);
	}
}
@media (min-width: 768px) {

}
@media (min-width: 992px) {
	#access .imgBox {
		padding-right: 0;
	}
	#access .txtBox {
		padding-left: 7.5%;
	}
	#access .txtBox dl {
		margin-top: 2.5em;
	}
}
/* ============================
   Form
=============================== */
#form {
  background: url(img/bg.jpg) no-repeat center center / cover;
}
@media (max-width: 575px) {
	#form .form-box .form-help-block {
	  background: url(img/bg.jpg) no-repeat center center / 300%;
	}
}
@media (min-width: 576px) and (max-width: 767px) {
	#form .form-box .form-help-block {
	  margin: 40px 15px;
	}
}
@media (min-width: 768px) {
	#form .txtBox {
		text-align: center;
	}
}


/* ==========================================================================
   Form
========================================================================== */
.form-box {
	font-size: .875rem;
  text-align: left;
  background: var(--white);
  margin-right: -15px;
  margin-left: -15px;
  padding-bottom: 80px;
}
.form-box .row {
}
.form-box .form-label {
	background: var(--l-gray2);
	display: block;
  font-weight: 700;
  line-height: 20px;
  padding: 11px 15px;
  position: relative;
}
.form-box .req,
.form-box .any {
  display: inline-block;
  padding: 0 .75em;
  background: var(--color1);
  color: var(--white);
  font-size: 11px;
  line-height: 20px;
  font-weight: 700;
  letter-spacing: .08em;
  position: absolute;
  right: 15px;
}
.form-box .req {
  background: var(--red);
}
.form-box .any {
  background: var(--gray);
}
.form-box .form-field {
  padding: 25px 15px;
}
.form-box .form-field p {
  line-height: 1.75;
}
.form-box .button {
  margin-top: 15px;
}
.form-box .button-back {
  color: var(--gray);
  background: var(--l-gray);
  border-color: var(--l-gray);
}
input[type="text"], input[type="email"], input[type="tel"], input[type="number"], button, textarea, select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  background-color: var(--white);
  border: 1px solid var(--gray);
  border-radius: 0;
  outline: 0;
  box-sizing: border-box;
  font-size: 1rem;
  color: inherit;
  max-width: 100%;
  transition: border 0.2s ease-out;
}
input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--border1);
}
label {
  cursor: pointer;
}
input[type="text"], input[type="email"], input[type="tel"], input[type="number"] {
	width: 100%;
  height: 35px;
  padding: 0 14px;
}
input[type="number"] {
  width: auto;
}
input[type="radio"], input[type="checkbox"] {
  margin-top: 0;
  margin-bottom: 0;
}
input[type="radio"], input[type="checkbox"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font-family: inherit;
  background-color: var(--white);
  border: 1px solid var(--gray);
  border-radius: 0;
  outline: 0;
  box-sizing: border-box;
  color: inherit;
  width: 22px;
  height: 22px;
  margin: 0 1em 0 0 !important;
  position: relative;
}
input[type="checkbox"]:before {
  position: absolute;
  top: 2px;
  left: 7px;
  transform: rotate(45deg);
  width: 6px;
  height: 12px;
  border-right: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  content: '';
  transition: border 0.2s ease-out;
}
input[type="checkbox"]:checked:before {
  border-color: var(--color2h);
}
input[type="radio"] {
  border-radius: 50%;
}
input[type="radio"]:before {
  position: absolute;
  top: 4px;
  left: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  content: '';
  transition: background 0.2s ease-out;
}
input[type="radio"]:checked:before {
  background: var(--color2h);
}
textarea {
  padding: 14px;
  width: 100%;
  height: auto;
}
select {
	font-size: .875rem;
  height: 35px;
  min-width: 8em;
  padding: 0 30px 0 14px;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%229.966%22%20height%3D%228.636%22%20viewBox%3D%220%200%209.966%208.636%22%3E%3Cpath%20d%3D%22M5.5.44l4.983-8.635H.517Z%22%20transform%3D%22translate(-0.517%208.195)%22%2F%3E%3C%2Fsvg%3E%0A');
  background-repeat: no-repeat;
  background-position: center right 14px;
  background-size: 11px;
}
select::-ms-expand {
  display: none;
}
.form-box .form-field label {
  display: flex;
  align-items: center;
}
.form-box .form-field .form-help {
  font-size: .786em;
}
.form-box .form-help {
  margin: 5px 0;
  padding-left: 1.5em;
  line-height: 1.75;
  position: relative;
}
.form-box .form-help::before {
  content: '※';
  position: absolute;
  left: 0;
}
.form-box .form-control + .form-help {
  margin-top: 12px;
}
.form-box .form-help-b {
  margin-top: 12px;
  font-weight: 600;
  line-height: 1.75;
}
.form-box .privacy-check .form-field {
  margin-bottom: 30px;
}
.form-box .privacy-check .mwform-checkbox-field-text {
  padding-right: 0;
  margin-right: 0;
}
.form-box .form-help-block {
  background: var(--l-gray);
  padding: 20px 5%;
  margin: 40px 0;
}
.form-box .form-help-block .form-help {
  font-size: .75rem;
  margin: 1em 0;
}
.form-box .form-buttons .col-md-auto:empty {
	padding: 0;
}
.form-box .form-field table th {
	white-space: nowrap;
	font-weight: 400;
	line-height: 35px;
	padding: 5px 5em 5px 10px;
	position: relative;
}
.form-box .form-field table th .req,
.form-box .form-field table th .any {
	top: 12px;
}
.form-box .form-field table td {
	padding: 5px 10px;
	vertical-align: middle;
}
.form-box .form-field table.group th {
	padding: 10px 5em 10px 10px;
}
.form-box .form-field table.group td {
	padding: 10px;
}
.form-box .form-field table.group th .req,
.form-box .form-field table.group th .any {
	top: 18px;
}
.mw_wp_form .vertical-item + .vertical-item {
    margin-top: 15px;
}
@media (max-width: 991px) {
	.form-box .form-field table {
		width: 100%;
	}
	.form-box .form-field table th .req,
	.form-box .form-field table th .any {
		top: 12px;
	}
	.form-box .form-field table.group tr {
		display: block;
	}
	.form-box .form-field table.group tr:not(:first-child) {
		padding-top: 10px;
	}
	.form-box .form-field table.group tr:not(:last-child) {
		border-bottom: 1px dotted var(--border1);
		padding-bottom: 5px;
	}
	.form-box .form-field table.group th {
		display: inline-block;
		padding: 0 5em 5px 0;
	}
	.form-box .form-field table.group th .req,
	.form-box .form-field table.group th .any {
		top: 7px;
	}
	.form-box .form-field table.group td {
		display: block;
		padding: 0 0 13px;
	}
}
@media (min-width: 576px) {
	.form-box {
		margin-right: 0;
  	margin-left: 0;
	}
}
@media (min-width: 768px) {
	.form-box {
		padding: 60px 40px 80px;
		margin-right: -30px;
  	margin-left: -30px;
	}
  .form-box .form-group {
    display: flex;
	  border-bottom: 1px solid var(--border1);
	}
	.form-box .form-group:first-child {
	  border-top: 1px solid var(--border1);
	}
  .form-box .form-group.form-block {
    display: block;
    padding-bottom: 0;
  }
  .form-box .form-group .form-label {
    flex: 0 0 17em;
    padding: 20px;
    margin-bottom: 0;
    background: var(--l-gray);
  }
  .mw_wp_form_input .form-box .form-group .form-label {
    padding-top: 28px;
    padding-right: 65px;
  }
  .form-box .req,
	.form-box .any {
		top: 28px;
	}
  .form-box .form-group .form-field {
    flex-basis: 100%;
    padding: 20px;
  }
  .form-box .form-group.privacy-check .form-label {
	  line-height: 2;
	  margin-bottom: 0.5em;
	}
}
@media (min-width: 768px) and (max-width: 991px) {
	.form-box .form-group.form-buttons .form-label {
		display: none;
	}
}
@media (min-width: 992px) {
	input[type="text"], input[type="email"], input[type="tel"], input[type="number"] {
		width: auto;
	}
	.form-box {
		padding: 60px 60px 100px;
	}
	.form-box .form-group .form-label {
    padding: 25px 70px 25px 20px;
  }
  .mw_wp_form_input .form-box .form-group .form-label {
    padding-top: 33px;
  }
  .form-box .req,
	.form-box .any {
		top: 33px;
	}
  .form-box .form-group .form-field {
    padding: 25px 40px;
  }
}
@media (min-width: 1200px) {
	.form-box {
		padding: 80px 80px 100px;
		margin-right: -60px;
  	margin-left: -60px;
	}
}
@media (min-width: 1440px) {
	.form-box {
		padding: 80px 80px 100px;
		margin-right: 0;
  	margin-left: 0;
	}
}
.privacy-check a {
  text-decoration: underline;
}
.form-scroll-field > * {
  margin: 0 0 .75rem;
}
.mw_wp_form_send_error {
  text-align: center;
}
.mw_wp_form .error {
  color: var(--red);
  font-family: var(--gothic);
  font-size: .923em;
  line-height: 1.25;
  margin: 5px 0;
}
.input-only, .confirm-only {
  display: none;
}
.mw_wp_form_input .input-only {
  display: block;
}
.mw_wp_form_confirm .confirm-only {
  display: block;
}
.mw_wp_form_confirm .form-label {
  line-height: inherit;
}
.mw_wp_form .horizontal-item {
  display: inline-flex;
  height: 35px;
}
.mw_wp_form .mwform-checkbox-field.vertical-item {
  display: flex;
  align-items: center;
  height: 35px;
  margin-top: 0 !important;
}
.mw_wp_form .horizontal-item + .horizontal-item {
  margin-left: 0 !important;
}
.mwform-radio-field-text,
.mwform-checkbox-field-text {
  font-size: .75rem;
  margin-right: 2.5em;
  line-height: 22px;
}
@media (min-width: 768px) {
	.mwform-radio-field-text,
	.mwform-checkbox-field-text {
	  font-size: .875rem;
	}
}
@media (min-width: 1200px) {
	.mw_wp_form .horizontal-item {
	  min-width: 32.75%;
	}
	.mw_wp_form .privacy-check .horizontal-item {
	  min-width: inherit;
	}
	.mwform-radio-field-text,
	.mwform-checkbox-field-text {
	  margin-right: 1em;
	}
}

::placeholder {
  color: var(--gray);
  font-size: .75rem;
  font-weight: 700;
}
::-ms-input-placeholder {
  color: var(--gray);
  font-size: .75rem;
  font-weight: 700;
}
:-ms-input-placeholder {
  color: var(--gray);
  font-size: .75rem;
  font-weight: 700;
}


/* ==========================================================================
   Button
========================================================================== */
.button,
input[type="button"],
input[type="submit"] {
  display: inline-block;
  text-align: center;
  font-size: .938rem;
  font-family: inherit;
  letter-spacing: 0;
  line-height: 1.5;
  font-weight: 600;
  padding: 1em 1em;
  width: 100%;
  background-color: var(--color2);
  border: 0;
  color: var(--white);
  border-radius: 3em;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  position: relative;
  transition: .2s;
}
.button::after,
input[type="button"]::after,
input[type="submit"]::after {
  content: '';
  display: block;
  width: 2em;
  height: 2em;
  background-image: url('data:image/svg+xml;charset=utf8,%3Csvg%20xmlns%3D%22http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%22%20width%3D%2230%22%20height%3D%2230%22%20viewBox%3D%220%200%2030%2030%22%3E%3Cg%20transform%3D%22translate(-836%20-10872)%22%3E%3Crect%20width%3D%2230%22%20height%3D%2230%22%20rx%3D%2215%22%20transform%3D%22translate(836%2010902)%20rotate(-90)%22%20fill%3D%22rgba(255%2C255%2C255%2C0.3)%22%2F%3E%3Cpath%20d%3D%22M15%2C1A14%2C14%2C0%2C0%2C0%2C5.1%2C24.9%2C14%2C14%2C0%2C1%2C0%2C24.9%2C5.1%2C13.908%2C13.908%2C0%2C0%2C0%2C15%2C1m0-1A15%2C15%2C0%2C1%2C1%2C0%2C15%2C15%2C15%2C0%2C0%2C1%2C15%2C0Z%22%20transform%3D%22translate(836%2010902)%20rotate(-90)%22%20fill%3D%22%23fff%22%2F%3E%3Cg%20transform%3D%22translate(849.097%2010881.422)%20rotate(45)%22%3E%3Crect%20width%3D%227.464%22%20height%3D%220.878%22%20transform%3D%22translate(0%200)%22%20fill%3D%22%23fff%22%2F%3E%3Crect%20width%3D%227.464%22%20height%3D%220.878%22%20transform%3D%22translate(7.464%200)%20rotate(90)%22%20fill%3D%22%23fff%22%2F%3E%3C%2Fg%3E%3C%2Fg%3E%3C%2Fsvg%3E');
  background-size: contain;
  position: absolute;
  top: 50%;
  right: .7em;
  transform: translateY(-50%);
}
.button:hover,
input[type="button"]:hover,
input[type="submit"]:hover {
  background-color: var(--color2h);
}
@media (min-width: 768px) {
	.button,
	input[type="button"],
	input[type="submit"] {
	  width: 400px;
	  max-width: 100%;
	}
}

.button.bg3 {
  background-color: var(--color3);
}
.button.bg3:hover {
  background-color: var(--color3h);
}