@charset "UTF-8";

html {
  overflow: auto;
  height: 100%;
  scroll-behavior: smooth;
}
body {
  overflow: hidden;
  -webkit-text-size-adjust: none;
  min-width: 1280px;
  color: #333333;
  font-family: "Noto Sans JP", "游ゴシック体", Yu Gothic, YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
  font-size: 16px;
  line-height: 1.5;
  letter-spacing: 0.1em;
  background: #fff;
}
a:link, a:visited, a:active {
  color: #333;
  text-decoration: none;
}
a:hover {
  color: #999;
  text-decoration: none;
}
.sp {
  display: block;
}
.pc {
  display: none;
}
.tCenter {
  text-align: center;
}


/*-------------- header ---------------*/
.header {
  min-width: 1000px;
  max-width: 1920px;
	background: rgba(255,255,255,.95);
  margin: auto;
  position: fixed;
  top: -1px;
  left: 0;
  right: 0;
  z-index: 9;
}
.header .logo {
  width: 504px;
  height: 152px;
  position: absolute;
  top: -1px;
  left: -1px;
}
.header .logo a {
  display: block;
  width: 200px;
  height: 46px;
  margin: 20px 0 0 25px;
  position: relative;
  z-index: 2;
}
.header .logo a img {
  width: 100%;
}
.header .logo a:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.header .inner {
  position: relative;
  margin: auto;
}


/*-------------- globalNav ---------------*/
.globalNav {
  position: relative;
  z-index: 1;
  padding: 15px 40px 5px 250px;
}
.globalNav ul {
  display: flex;
  justify-content: flex-end;
	gap: 40px;
  transition: 0.6s;
}
.globalNav ul li {
  position: relative;
}
.globalNav ul li a {
  display: block;
	font-family: 'lato';
  font-size: 14px;
	font-weight: 400;
  line-height: 1.5;
  letter-spacing: 1.8px;
  color: #E37CA1;
  padding: 15px 0;
}
.globalNav ul li a:hover {
  color: #302920;
}
.globalNav ul li.act a{
	color: #e37ca1;
}
.globalNav ul li.act::after {
  content: "";
  position: absolute;
  top: initial;
  bottom: 0;
  width: 100%;
  border-bottom: 1px solid #e37ca1;
}
.globalNav_sp {
  display: none;
}


/*-------------- ctaArea ---------------*/
.ctaArea {
  max-width: 1920px;
  padding: 100px 0;
	margin: auto;
}
.ctaArea .inner {
	width: 1280px;
	padding: 0 40px;
	margin: auto;
}
.ctaArea .inner .lineBtn {
}
.ctaArea .inner .lineBtn a {
	font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  letter-spacing: 0;
  text-align: left;
  color: #06C755;
  border: 2px solid #06C755;
  border-radius: 8px;
  display: flex;
  align-items: center;
  gap: 15px;
  max-width: 520px;
  margin: auto;
  padding: 8px 40px 8px 15px;
}
.ctaArea .inner .lineBtn a::before {
	flex-shrink: 0;
	content: url("../images/icon2/line.svg");
	width: 75px;
	line-height: 1;
}
.ctaArea .inner .lineBtn a::after {
	border: solid #B4EECC;
	border-width: 2px 2px 0 0;
	width: 15px;
	height: 15px;
	right: 20px;
}
.ctaArea .inner .lineBtn a:hover {
	background: #F1FCF5;
}
.ctaArea .inner ul.sns {
	display: flex;
	justify-content: center;
	gap: 30px;
	margin: 30px 0;
}
.ctaArea .inner ul.sns li {
	width: 45px;
}
.ctaArea .inner ul.sns li a:hover {
	opacity: .8;
}


/*-------------- footer ---------------*/
footer {
  position: relative;
  max-width: 1920px;
  margin: auto;
	padding: 60px 0 0;
  background: #FBF3F6;
}
footer .inner {
  width: 1280px;
  margin: auto;
}
footer .inner h3 {
  font-family: 'lato';
	font-size: 22px;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 4px;
	text-align: center;
	color: #E37CA1;
}
footer .inner ul.banner {
  display: flex;
	justify-content: center;
	gap: 15px;
	margin: 30px 0 0;
}
footer .inner ul.banner a:hover {
	opacity: .8;
}
footer .inner ul.banner li {
	width: 240px;
}
footer .inner nav {
	margin: 40px 0 0;
}
footer .inner nav ul.footerNav {
	display: flex;
	justify-content: center;
	gap: 40px;
}
footer .inner nav ul.footerNav li {
}
footer .inner nav ul.footerNav li a {
  font-size: 14px;
	color: #707070;
}
footer .inner nav ul.footerNav li a:hover {
	text-decoration: underline;
}
footer small {
  display: block;
  font-family: 'lato';
	font-size: 13px;
	line-height: 1.2;
	letter-spacing: 1px;
  text-align: center;
	color: #fff;
  background: #E37CA1;
	margin: 70px 0 0;
	padding: 10px;
}


/*================================trans================================*/
.transMv01 {
  opacity: 0;
  transform: translateY(100px);
}
.transMv02 {
  opacity: 0;
}
.transMv03 {
  opacity: 0;
  transform: translateX(-30px);
}
.transMv04 {
  opacity: 0;
  transform: translateX(30px);
}
.mv01 {
  opacity: 1;
  transition: 1.5s;
  transform: translateY(0);
}
.mv02 {
  opacity: 1;
  transition: 1s;
}
.mv03 {
  opacity: 1;
  transition: 1s;
  transform: translateX(0);
}
.mv04 {
  opacity: 1;
  transition: 1s;
  transform: translateX(0);
}


/*================================page_top================================*/
#topcontrol {
  position: relative;
	bottom: 40px !important;
  z-index: 999;
}
.page_top a {
  position: relative;
  display: block;
  height: 50px;
  width: 50px;
  outline-style: none;
  background: url(../images/icon/icon_pagetop.svg) no-repeat 0 0;
  background-size: 100% auto;
  opacity: 0.7;
}
.page_top a:hover {
  transform: scale(1.1);
  opacity: 1;
}
@media print, screen and (max-width: 767px) {
  #topcontrol {
    display: none;
  }
}


/*================================clearfix================================*/
.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.clearfix {
  display: inline-block;
}
/* Hides from IE-mac \*/
* html .clearfix {
  height: 1%;
}
.clearfix {
  display: block;
}


/* End hide from IE-mac */
/*================================emoji================================*/
img.wp-smiley, img.emoji {
  display: inline !important;
  border: none !important;
  box-shadow: none !important;
  height: 1em !important;
  width: 1em !important;
  margin: 0 0.07em !important;
  vertical-align: -0.1em !important;
  background: none !important;
  padding: 0 !important;
}




@media only screen and (max-width: 767px) {
	
  html {
    height: 100%;
    scroll-behavior: smooth;
  }
  body {
    position: static;
    -webkit-text-size-adjust: none;
    min-width: 100%;
    color: #333333;
    font-family: "Noto Sans JP", "游ゴシック体", Yu Gothic, YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-size: small;
    line-height: 1.5;
    letter-spacing: 0.2em;
  }
  .sp {
    display: none;
  }
  .pc {
    display: block;
  }
	
	
  /*-------------- header ---------------*/
  .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    min-width: 100%;
    max-width: 100%;
    height: auto;
    border-top: none;
    background: #fff;
  }
  .header .logo {
    display: none;
  }
  .header::after {
    display: none;
  }
  .header .inner {
    width: 100%;
    position: relative;
    margin: auto;
  }
  .header .inner::after {
    display: none;
  }
  .header .inner::before {
    display: none;
  }
  .header .inner .headerNav {
    display: none;
  }
  .header .inner .globalNav_sp {
    display: block;
  }
  .header .inner .menu.toggle2.on .logo_sp a {
    display: block;
    width: 200px;
    text-align: left;
    margin: 3px auto 0;
  }
  /*.header .inner .menu.fix.toggle2 .logo_sp a {
    display: block;
    width: 200px;
    text-align: left;
    margin: 3px auto 0;
    padding: 0;
  }
  .header .inner .menu.fix {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 40px;
    background: #ffffffcf;
    opacity: 1;
  }
  .header .inner .menu.fix > ul {
    padding-top: 60px;
  }
  .header .inner .menu.fix .toggle {
    top: 0;
    right: 12px;
  }
  .header .inner .menu.fix .toggle::before {
    display: none;
  }
  .header .inner .menu.fix .logo_sp a {
    display: block;
    width: 150px;
    text-align: left;
    margin: 7px 0 0 15px;
  }
  .header .inner .menu.fix .logo_sp a img {
    display: block;
    width: 80%;
    height: auto;
  }*/
  .header .inner .menu {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 50px;
    background: #ffffff70;
    z-index: 102;
  }
  .header .inner .menu .toggle {
    position: absolute;
    top: 5px;
    right: 12px;
    width: 36px;
    height: 36px;
    cursor: pointer;
    border-radius: 10px;
  }
  .header .inner .menu .bar {
    position: relative;
    top: 8px;
    right: 0;
    display: block;
    height: 3px;
    width: 20px;
    background: #c54d78;
    margin: 4px auto;
    transition: all 0.7s ease;
    z-index: 3;
  }
  .header .inner .menu .middle {
    margin: 0 auto;
  }
  .header .inner .menu .toggle.on .top {
    transform: translateY(7px) rotateZ(45deg);
  }
  .header .inner .menu .toggle.on .bottom {
    transform: translateY(-7px) rotateZ(-45deg);
  }
  .header .inner .menu .toggle.on .middle {
    width: 0;
  }
  .header .inner .menu img {
    display: block;
  }
  .header .inner .menu .logo_sp a {
    display: block;
    width: 150px;
    text-align: left;
    margin: 10px 0 0 15px;
  }
  .header .inner .menu .logo_sp a img {
    display: block;
    width: 100%;
    height: auto;
  }
  .header .inner .menu_sp {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    padding-bottom: 25px;
    background: rgba(255, 255, 255, 0.7);
    z-index: 101;
  }
  .header .inner .menu_sp ul {
    width: calc(100% - 30px);
    padding: 20px 15px 20px;
    margin: 75px auto 0;
    background: #fff;
    border-radius: 20px;
    border: 4px solid #c54d78;
  }
  .header .inner .menu_sp ul li {
    border-top: 1px dotted #efcfdb;
  }
  .header .inner .menu_sp ul li.cta a {
    color: #fff;
    background: #c54d78;
    border-radius: 80px;
    padding: 5px 30px 5px 30px;
    margin-top: 15px;
    font-weight: normal;
    border: 4px solid #fdcbd6;
  }
  .header .inner .menu_sp ul li.cta a.qustn {
    color: #fff;
    background: #1789d9;
    border-radius: 80px;
    padding: 5px 30px 5px 30px;
    margin-top: 15px;
    font-weight: normal;
    border: 4px solid #cbe4fd;
  }
  .header .inner .menu_sp ul li.cta a:after {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    display: block;
    width: 20px;
    height: 20px;
    background: url(../images/arrow02.svg) no-repeat center right;
    background-size: 100% auto;
  }
  .header .inner .menu_sp ul li.cta a span {
    color: #fdcbd6;
  }
  .header .inner .menu_sp ul li.cta a.qustn span {
    color: #cbe4fd;
  }
  .header .inner .menu_sp ul li a {
    color: #333333;
    display: block;
    font-size: 0.8rem;
    font-family: "Noto Sans JP", "游ゴシック体", Yu Gothic, YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: bold;
    line-height: 1.5;
    padding: 10px 30px 10px 15px;
    text-decoration: none;
    position: relative;
    letter-spacing: 1px;
  }
  .header .inner .menu_sp ul li a span {
    display: block;
    color: #c54d78;
    font-size: x-small;
  }
  .header .inner .menu_sp ul li a:after {
    position: absolute;
    right: 10px;
    top: 0;
    bottom: 0;
    margin: auto;
    content: "";
    display: block;
    width: 16px;
    height: 16px;
    background: url(../images/arrow01.svg) no-repeat center right;
    background-size: 12px auto;
  }
  .header .inner .menu_sp ul li p {
    cursor: pointer;
    color: #333333;
    display: block;
    font-size: 0.8rem;
    font-family: "Noto Sans JP", "游ゴシック体", Yu Gothic, YuGothic, "游ゴシック", "Yu Gothic", "メイリオ", sans-serif;
    font-weight: bold;
    line-height: 1.4;
    padding: 10px 30px 10px 40px;
    text-decoration: none;
    position: relative;
    background: url(../images/icon/iconGlobalNav_a.svg) no-repeat center left 15px, url(../images/btnLocationNav_a.png) repeat top center;
  }
  .header .inner .menu_sp ul li.open p:after {
    transition: 0.3s;
    position: absolute;
    right: 15px;
    top: 0;
    bottom: 5px;
    transform: rotate(-90deg);
  }
	
  .globalNav {
    display: none;
  }
	
	
  /*-------------- ctaArea ---------------*/
  .ctaArea {
		padding: 50px 0;
  }
  .ctaArea .inner {
		width: 100%;
		padding: 0 15px;
	}
	.ctaArea .inner .lineBtn a {
		font-size: 12px;
    font-weight: 500;
    line-height: 1.3;
    gap: 8px;
    border-width: 1px;
    max-width: 310px;
    padding: 6px 30px 6px 8px;
	}
	.ctaArea .inner .lineBtn a::before {
		width: 54px;
	}
	.ctaArea .inner .lineBtn a::after {
		width: 10px;
		height: 10px;
		right: 15px;
	}
	.ctaArea .inner ul.sns {
		gap: 20px;
		margin: 20px 0;
	}
	.ctaArea .inner ul.sns li {
		width: 35px;
	}
	
	
  /*-------------- footer ---------------*/
  footer {
		padding: 30px 0 0;
		margin: 0 0 60px;
  }
  footer .inner {
		width: 100%;
		padding: 0 15px;
	}
	footer .inner h3 {
		font-size: 18px;
		letter-spacing: 3px;
	}
	footer .inner ul.banner {
		flex-wrap: wrap;
		gap: 10px;
		margin: 20px 10px 0;
	}
	footer .inner ul.banner li {
		width: calc(50% - 10px);
	}
	footer .inner nav {
		display: none;
	}
	footer small {
		font-size: 10px;
		margin: 40px 0 0;
	}
	
	
  /*================================trans================================*/
  .transMv01 {
    opacity: 0;
    transform: translateY(100px);
  }
  .transMv02 {
    opacity: 0;
    transform: translateY(50px);
  }
  .mv01 {
    opacity: 1;
    transition: 1.5s;
    transform: translateY(0);
  }
  .mv02 {
    opacity: 1;
    transition: 1s;
    transform: translateY(0);
  }

  /*================================clearfix================================*/
  .clearfix:after {
    content: ".";
    display: block;
    height: 0;
    clear: both;
    visibility: hidden;
  }
  .clearfix {
    display: inline-block;
  }
  /* Hides from IE-mac \*/
  * html .clearfix {
    height: 1%;
  }
  .clearfix {
    display: block;
  }
  /* End hide from IE-mac */
}