body{
	font-family: LINE Seed JP_OTF Regular,"Noto Sans JP", sans-serif;;
}

a{
	cursor: pointer;
}

.btnArea a {
  width: 240px;
  height: 50px;
  background: #00B900;
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  border: 1px solid #00B900;
  color: #fff;
	
}
.btnArea a p {
  color: #fff;
}
.btnArea a:hover {
  letter-spacing: 0.15em;
  transition: 0.3s;
}

main {
  padding-top: 80px;
}

.ttl {
  position: relative;
  z-index: 3;
}
.ttl span {
  font-size: clamp(60px, 11.6vw, 140px);
  text-transform: uppercase;
  position: absolute;
  top: -50%;
  left: 0;
  right: 0;
  margin: auto;
  z-index: -1;
  color: #fff;
  opacity: 0.5;
  line-height: 1em;
  text-align: center;
}
.ttl .txt {
  text-align: center;
}
.ttl .txt p {
  font-size: clamp(18px, 2.5vw, 30px);
  line-height: 1.3em;
  color: #000;
}
.ttl .txt h2 {
  font-size: clamp(31px, 4.25vw, 51px);
  font-family: LINE Seed JP_OTF bold;
  line-height: 1.3em;
  color: #00B900;
  letter-spacing: 0.08em;
}

@media only screen and (max-width: 767px), (orientation: portrait) {
  main {
    padding-top: 55px;
  }
  .ttl span {
    font-size: clamp(36px, 15.38vw, 60px);
    top: -20%;
  }
  .ttl .txt p {
    font-size: clamp(14px, 4.1vw, 16px);
  }
  .ttl .txt h2 {
    font-size: clamp(18px, 7.69vw, 30px);
    margin-top: 3px;
  }
}
header {
  display: block;
  height: 80px;
  width: 100%;
  background: #111111;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
}
header .headWrap {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 240px 80px;
  gap: 30px;
  align-items: center;
	
}
header .headWrap .logo {
  max-width: 128px;
  padding: 16px 25px;
  box-sizing: content-box;
}
header .headWrap .hamburger {
  display: block;
  width: 80px;
  height: 80px;
  background: #24c1d6;
  position: relative;
  transition: 0.3s;
  cursor: pointer;
}
header .headWrap .hamburger span {
  background: #fff;
  position: absolute;
  height: 3px;
  width: 40px;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  border-radius: 2px;
  transition: 0.3s;
}
header .headWrap .hamburger span:nth-child(2) {
  top: -28px;
}
header .headWrap .hamburger span:nth-child(3) {
  top: 28px;
}

header .global-nav {
  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}
header .global-nav .global-nav-inner {
  max-width: 390px;
  position: absolute;
  right: -100px;
  width: 100%;
  top: 80px;
  background: #24c1d6;
  height: calc(100vh - 80px);
  padding: 40px 32px;
  transition: 0.3s;
}
header .global-nav .global-nav-inner .global-nav-box {
  max-width: 240px;
  margin: auto;
}
header .global-nav .global-nav-inner .global-nav-box a {
  color: #fff;
  display: block;
  text-align: left;
  margin-bottom: 30px;
}
header .global-nav .global-nav-inner .global-nav-box .btnArea {
  margin-top: 32px;
}

header .global-nav .global-nav-inner .global-nav-box .btnArea a {
  background-color: #00B900;
  margin-bottom: 0px;
  display: flex;
}

header .global-nav .closeArea {
  width: 100vw;
  height: 100vh;
  display: block;
  background: #000;
  opacity: 0;
  position: absolute;
  z-index: -1;
  transition: 0.3s;
}

.onMenu {
  overflow-y: hidden;
}
.onMenu header .headWrap .hamburger {
  transition: 0.3s;
}
.onMenu header .headWrap .hamburger span {
  width: 40px;
  transition: 0.3s;
}
.onMenu header .headWrap .hamburger span:nth-child(1) {
  opacity: 0;
  left: -50%;
  pointer-events: none;
}
.onMenu header .headWrap .hamburger span:nth-child(2) {
  top: 0px;
  transform: rotate(45deg);
}
.onMenu header .headWrap .hamburger span:nth-child(3) {
  top: 0px;
  transform: rotate(-45deg);
}
.onMenu header .global-nav {
  opacity: 1;
  pointer-events: all;
}
.onMenu header .global-nav .global-nav-inner {
  right: 0px;
}
.onMenu header .global-nav .closeArea {
  width: 100vw;
  height: 100vh;
  display: block;
  background: #000;
  opacity: 0.3;
  position: absolute;
  z-index: -1;
}
@media screen and (max-width:960px){
	header .headWrap .btnArea2 {
    	display: none;
  }
	header .headWrap {
  height: 100%;
  display: grid;
  grid-template-columns: 1fr 150px 80px;
  gap: 30px;
  align-items: center;
	
}
}
@media only screen and (max-width: 767px), (orientation: portrait) {
  header {
    height: 55px;
    background: #111111;
    position: fixed;
  }
  header .headWrap {
    grid-template-columns: 1fr 160px;
    gap: 0px;
    align-items: flex-start;
  }
  header .headWrap .logo {
    padding: 11px 15px;
    height: 100%;
    box-sizing: border-box;
  }
	.logo img{
		width:90%;
	}
  header .global-nav .global-nav-inner .global-nav-box .btnArea {
  margin-top: 5px;
}
  header .headWrap .btnArea2 {
    display: none;
  }
  header .headWrap .btnArea3 a {
    height: 40px;
	margin-top: 8px;
	width: 150px;
  }
	
  header .headWrap .hamburger {
    width: 55px;
    height: 55px;
  }
  header .headWrap .hamburger span {
    height: 2px;
    width: 25px;
    border-radius: 1px;
  }
  header .headWrap .hamburger span:nth-child(2) {
    top: -20px;
  }
  header .headWrap .hamburger span:nth-child(3) {
    top: 20px;
  }
  header .global-nav .global-nav-inner {
    top: 55px;
    height: calc(100vh - 55px);
  }
  .onMenu header .headWrap .hamburger {
    transition: 0.3s;
  }
  .onMenu header .headWrap .hamburger span {
    width: 25px;
  }
}
.secMvPc {
  width: 100vw;
  height: calc(100vh - 80px);
  background: #f5bcb9;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
}
.secMvPc .mvLeft {
  background: url(images/mv_left_bg.jpg) center/cover;
  position: relative;
}
.secMvPc .mvLeft .left {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 10%;
  margin: auto;
  max-height: 666px;
  height: 91%;
  width: auto;
  z-index: 5;
}
.secMvPc .mvLeft .right {
  position: absolute;
  right: 24px;
  bottom: 34px;
}
.secMvPc .mvRight {
  position: relative;
}
.secMvPc .mvRight img {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  max-height: 666px;
  height: 91%;
  width: auto;
}

.secMvSp {
  display: none;
}

@media only screen and (max-width: 767px), (orientation: portrait) {
  .secMvPc {
    display: none;
  }
  .secMvSp {
    display: block;
    width: 100%;
  }
  .secMvSp img {
    width: 100%;
  }
}
.secCta {
  display: block;
  padding: 110px 0;
}
.secCta .btnCta {
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 30px;
  max-width: 860px;
  height: 140px;
  border-radius: 77px;
  color: #fff;
  background: #00B900;
  font-size: clamp(21px, 2.92vw, 35px);
  font-family: LINE Seed JP_OTF bold;
  box-shadow: 0px 10px 0px 0px #034703;
  position: relative;
  top: 0px;
  transition: 0.3s;
	font-weight: 400;
	
}
.secCta .btnCta span {
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: clamp(15px, 2.08vw, 25px);
  font-weight: 700;
  width: 90%;
  max-width: 618px;
  height: 48px;
  border-radius: 24px;
  position: absolute;
  top: -24px;
  background-color: #e63077;
  color: #fff;
  letter-spacing: 0.1em;
	font-weight: 400;
}
.secCta .btnCta:hover {
  top: 8px;
  box-shadow: 0px 2px 0px 0px rgb(0, 0, 0);
  opacity: 1;
}
@media only screen and (max-width: 767px), (orientation: portrait) {
  .secCta {
    display: block;
    padding: 48px 0 24px;
  }
  .secCta .btnCta {
    gap: 12px;
    height: 60px;
    border-radius: 30px;
    font-size: clamp(14px, 4.62vw, 18px);
    box-shadow: 0px 4px 0px 0px #036d7c;
  }
  .secCta .btnCta span {
    font-size: 14px;
    width: -moz-fit-content;
    width: fit-content;
    height: 40px;
    border-radius: 20px;
    top: -28px;
    text-align: center;
    line-height: 1.3em;
    padding: 0 38px;
  }
  .secCta .btnCta svg {
    width: 20px;
    height: 14px;
  }
  .secCta:hover {
    top: 3px;
    opacity: 1;
  }
  .secCta.secCtaWh {
    padding: 95px 0 70px;
  }
}
.secCampaign {
  background: #f5bcb9;
  padding: 85px;
}
.secCampaign .commonWidth {
  background: #fff;
  border-radius: 10px;
  padding: 80px 24px 70px;
  border: 10px solid #24c1d6;
  box-shadow: 4px 4px 4px 0px rgba(0, 0, 0, 0.25);
}
.secCampaign .commonWidth .secCampaignWrap {
  border-radius: 18px;
}
.secCampaign .commonWidth .secCampaignWrap .mds {
  max-width: 920px;
  width: 90%;
  height: 48px;
  text-align: center;
  font-size: clamp(18px, 2.5vw, 30px);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #e63077;
  color: #fff;
  border-radius: 10px;
  margin: 0 auto 30px;
}
.secCampaign .commonWidth .secCampaignWrap h2 {
  font-size: clamp(31px, 4.25vw, 51px);
  font-weight: 900;
  text-align: center;
  color: #e63077;
  margin-bottom: 32px;
}
.secCampaign .commonWidth .secCampaignWrap .secCampaignImg {
  display: block;
  max-width: 180px;
  width: 100%;
  margin: 0 auto 12px;
}
.secCampaign .commonWidth .secCampaignWrap .subtxt {
  font-size: clamp(14px, 1.5vw, 18px);
  display: flex;
  justify-content: center;
  align-items: baseline;
}
.secCampaign .commonWidth .secCampaignWrap .subtxt span {
  color: #fff;
  background-color: #24c1d6;
  border-radius: 5px;
  padding: 2px 5px;
}
.secCampaign .commonWidth .secCampaignWrap h3 {
  margin: 30px auto 20px;
  text-align: center;
  font-size: clamp(18px, 2.5vw, 30px);
  background-color: #e63077;
  color: #fff;
  padding: 8px 10px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 10px;
}
.secCampaign .commonWidth .secCampaignWrap p {
  font-size: clamp(14px, 1.67vw, 20px);
  text-align: center;
  margin-bottom: 30px;
}
.secCampaign .commonWidth .secCampaignWrap .secCampaignDate {
  display: block;
  max-width: 471px;
  width: 100%;
  margin: auto;
}
.secCampaign .commonWidth .secCampaignWrap span {
  font-size: clamp(14px, 1.67vw, 20px);
  text-align: center;
  margin-top: 12px;
  display: block;
}

@media only screen and (max-width: 767px), (orientation: portrait) {
  .secCampaign {
    padding: 50px 0;
  }
  .secCampaign .commonWidth {
    border-radius: 10px;
    padding: 0px;
  }
  .secCampaign .commonWidth .secCampaignWrap {
    border-radius: 9px;
    padding: 24px 0px;
  }
  .secCampaign .commonWidth .secCampaignWrap h2 {
    margin-bottom: 12px;
  }
  .secCampaign .commonWidth .secCampaignWrap .mds {
    font-size: clamp(14px, 5.64vw, 22px);
    margin-bottom: 8px;
  }
  .secCampaign .commonWidth .secCampaignWrap .mds::after, .secCampaign .commonWidth .secCampaignWrap .mds::before {
    width: 20%;
    height: 21px;
    background: url(../img/campaign_bg_sp.png) no-repeat center;
    background-size: contain;
  }
  .secCampaign .commonWidth .secCampaignWrap h3 {
    margin-bottom: 14px;
    font-size: clamp(14px, 4.1vw, 16px);
  }
  .secCampaign .commonWidth .secCampaignWrap p {
    font-size: clamp(14px, 4.1vw, 16px);
  }
  .secCampaign .commonWidth .secCampaignWrap span {
    font-size: clamp(14px, 4.62vw, 18px);
    margin-top: 2px;
  }
  .secCampaign .commonWidth .secCampaignWrap .secCampaignDate {
    width: 90%;
  }
}
.secSolution {
  background: #f5bcb9;
  padding: 150px 0 0;
}
.secSolution .img {
  margin-top: 88px;
}
.secSolution .img .solutionTxt {
  width: 100%;
}
.secSolution .img .woman {
  display: block;
  width: 30%;
  max-width: 342px;
  margin: auto;
}




@media only screen and (max-width: 767px), (orientation: portrait) {
  .secSolution {
    padding: 80px 0 0;
  }
  .secSolution .img {
    margin-top: 40px;
  }
  .secSolution .img .woman {
    width: 50%;
    max-width: 260px;
    margin-top: 24px;
  }
	
}

.secFeatures {
  padding: 180px 0 160px;
}
.secFeatures .ttl {
  margin-bottom: 80px;
}
.secFeatures .ttl span {
  color: #000000;
  opacity: 0.04;
}
.secFeatures .ttl p {
  color: #000000;
}
.secFeatures .ttl h2 {
  color: #e63077;
}
.secFeatures .inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3%;
}
.secFeatures .inner img {
  margin-bottom: 6px;
  width: 100%;
  border-radius: 10px;
}
.secFeatures .inner p {
  background-color: #e63077;
  color: #fff;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
  padding: 4px 8px;
  font-size: clamp(14px, 1.67vw, 20px);
  line-height: 1.4em;
}

@media only screen and (max-width: 767px), (orientation: portrait) {
  .secFeatures {
    padding: 90px 0 70px;
  }
  .secFeatures .ttl {
    margin-bottom: 32px;
  }
  .secFeatures .inner {
    grid-template-columns: repeat(1, 1fr);
    gap: 30px;
  }
  .secFeatures .inner img {
    margin-bottom: 8px;
  }
  .secFeatures .inner p {
    font-size: clamp(14px, 4.1vw, 16px);
  }
}
.secService {
  background-color: #D5F9D2;
  padding: 50px 0 120px;
}
.secService .ttl {
  margin-bottom: 80px;
}
.secService .content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background-color: #fff;
  border-radius: 20px;
  overflow: hidden;
  align-items: center;
  margin-bottom: 60px;
}
.secService .content .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.secService .content .txt {
  padding: 3% 10%;
}
.secService .content .txt h3 {
  font-size: clamp(14px, 2vw, 24px);
}
.secService .content .txt h3 span {
  background-color: #00B900;
  color: #fff;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 5px;
  padding: 4px;
  /*border-radius: 5px;*/
  line-height: 1em;
}
.secService .content .txt .small {
  font-size: 14px;
  margin-top: 3px;
}
.secService .content .txt p {
  margin-top: 24px;
  line-height: 2em;
  font-size: clamp(14px, 1.33vw, 16px);
}
.secService .secCta {
  padding: 70px 0 0;
}

@media only screen and (max-width: 767px), (orientation: portrait) {
  .secService {
    padding: 70px 0 60px;
  }
  .secService .ttl {
    margin-bottom: 34px;
  }
  .secService .content {
    grid-template-columns: 1fr;
    border-radius: 15px;
    margin-bottom: 30px;
  }
  .secService .content .txt {
    padding: 30px;
  }
  .secService .content .txt h3 {
    font-size: clamp(14px, 5.64vw, 22px);
  }
  .secService .content .txt h3 span {
    margin-bottom: 5px;
    padding: 4px 2px;
  }
  .secService .content .txt .small {
    font-size: 14px;
    margin-top: 3px;
  }
  .secService .content .txt p {
    margin-top: 18px;
    line-height: 2em;
    font-size: clamp(14px, 4.1vw, 16px);
  }
  .secService .secCta {
    padding: 70px 0 0;
  }
}
.swiper-wrapper {
  transition-timing-function: linear;
}
.swiper-wrapper .swiper-slide {
  -o-object-fit: cover;
     object-fit: cover;
  height: 100%;
  width: 100%;
  aspect-ratio: 4/3;
}
.swiper-wrapper .swiper-slide img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.secProgram {
  background-color: #f5bcb9;
  padding: 140px 0 0;
}
.secProgram .ttl {
  margin-bottom: 80px;
}
.secProgram .tabs {
  list-style: none;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
}
.secProgram .tabs .tab {
  display: inline-block;
  padding: 10px 10px 2px;
  cursor: pointer;
  background-color: #e63077;
  color: #fff;
  border-radius: 20px 20px 0 0;
  font-size: clamp(14px, 2vw, 24px);
  text-align: center;
  transition: 0.3s;
}
.secProgram .tabs .tab span {
  color: #fff;
}
.secProgram .tabs .tab.active {
  background-color: #fff;
  transition: 0.3s;
  color: #000000;
}
.secProgram .tabs .tab.active span {
  color: #000000;
}
.secProgram .tab-content .tab-panel {
  padding: 36px;
  display: none;
  width: 100%;
  background-color: #fff;
  border-radius: 0 0 20px 20px;
  transition: 0.3s;
  opacity: 0;
}
.secProgram .tab-content .tab-panel.active {
  display: block;
  transition: 0.3s;
  opacity: 1;
}
.secProgram .tab-content .tab-panel h3 {
  display: block;
  margin: 0 auto 24px;
}
.secProgram .tab-content .tab-panel p {
  font-size: clamp(14px, 1.5vw, 18px);
  line-height: 1.8em;
}
.secProgram .tab-content .tab-panel .box img {
  width: 100%;
}
.secProgram #content1 {
  margin-bottom: 0px;
}
.secProgram #content1 .tab-content .tab-panel h3 {
  text-align: center;
  background: #e63077;
  color: #fff;
  font-size: clamp(17px, 2.33vw, 28px);
  padding: 2px 16px 4px;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 5px;
}
.secProgram #content1 .tab-content .tab-panel .content {
  max-width: 830px;
  margin: auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3%;
}
.secProgram #content1 .tab-content .tab-panel .content h4 {
  background: #e63077;
  color: #fff;
  text-align: center;
  display: block;
  margin-top: 16px;
  margin-bottom: 12px;
  font-size: clamp(14px, 1.83vw, 22px);
  padding: 0px 2px;
  border-radius: 5px;
  width: -moz-fit-content;
  width: fit-content;
}
.secProgram #exemple {
  padding-top: 150px;
}
.secProgram #content2 .tab-content .tab-panel .content {
  margin: auto;
  display: grid;
  grid-template-columns: 40% 50%;
  gap: 8%;
  align-items: center;
}
.secProgram #content2 .tab-content .tab-panel .content .txt h3 {
  font-size: clamp(14px, 2vw, 24px);
  margin: 0 0 30px;
}
.secProgram #content2 .tab-content .tab-panel .content .txt h3 span {
  display: block;
  margin-bottom: 4px;
  text-align: center;
  background: #e63077;
  color: #fff;
  padding: 2px 6px;
  width: -moz-fit-content;
  width: fit-content;
}
.secProgram #content2 .tab-content .tab-panel .content .wrap {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4%;
}
.secProgram #content2 .tab-content .tab-panel .content .wrap .container {
  background: #24c1d6;
  padding: 6px 10px;
  margin-top: 10px;
}
.secProgram #content2 .tab-content .tab-panel .content .wrap .container h4 {
  font-size: clamp(14px, 1.5vw, 18px);
}
.secProgram #content2 .tab-content .tab-panel .content .wrap .container p {
  font-size: 12px;
  line-height: 1.4em;
}

@media only screen and (max-width: 767px), (orientation: portrait) {
  .secProgram {
    padding: 70px 0 30px;
  }
  .secProgram #exemple {
    padding-top: 70px;
  }
  .secProgram .ttl {
    margin-bottom: 40px;
  }
  .secProgram .tabs {
    list-style: none;
    gap: 3px;
  }
  .secProgram .tabs .tab {
    padding: 20px 10px 20px;
    border-radius: 15px 15px 0 0;
    font-size: clamp(14px, 5.13vw, 20px);
    line-height: 1.2em;
  }
  .secProgram .tab-content .tab-panel {
    padding: 40px 5%;
    width: 100%;
    border-radius: 0 0 15px 15px;
  }
  .secProgram .tab-content .tab-panel .content {
    width: 80%;
    margin: auto;
  }
  .secProgram .tab-content .tab-panel .content h3 {
    margin: 0 auto 14px;
    font-size: clamp(14px, 5.13vw, 20px);
  }
  .secProgram .tab-content .tab-panel .content p {
    font-size: clamp(14px, 4.1vw, 16px);
  }
  .secProgram #content1 {
    margin-bottom: 40px;
  }
  .secProgram #content1 .tab-content .tab-panel h3 {
    font-size: clamp(14px, 5.13vw, 20px);
    padding: 2px 4px;
  }
  .secProgram #content1 .tab-content .tab-panel .content {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .secProgram #content1 .tab-content .tab-panel .content h4 {
    margin-bottom: 12px;
    font-size: clamp(14px, 5.13vw, 20px);
  }
  .secProgram #content2 .tab-content .tab-panel .content {
    width: 100%;
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .secProgram #content2 .tab-content .tab-panel .content .txt h3 {
    font-size: clamp(14px, 5.13vw, 20px);
    margin: 0 0 20px;
  }
  .secProgram #content2 .tab-content .tab-panel .content .txt h3 span {
    display: block;
    margin-bottom: 4px;
    text-align: center;
  }
  .secProgram #content2 .tab-content .tab-panel .content .wrap {
    display: flex;
    flex-wrap: wrap;
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .secProgram #content2 .tab-content .tab-panel .content .wrap .box {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
  }
  .secProgram #content2 .tab-content .tab-panel .content .wrap .box .container {
    margin-top: 0;
  }
  .secProgram #content2 .tab-content .tab-panel .content .wrap .box .container h4 {
    font-size: clamp(14px, 5.13vw, 20px);
  }
  .secProgram #content2 .tab-content .tab-panel .content .wrap .box .container p {
    font-size: 16px;
  }
}
.secStep {
  padding: 50px 0 50px;
	background-color: #D5F9D2;
}
.secStep .ttl {
  margin-bottom: 80px;
}
.secStep .ttl span {
  color: #000000;
  opacity: 0.04;
}
.secStep .ttl p {
  color: #000000;
}
.secStep .ttl h2 {
  color: #00B900;
}
.secStep .flow .content {
  padding: 80px 100px 80px 50px;
  display: grid;
  grid-template-columns: 158px 180px 1fr;
  align-items: center;
  border: 2px solid #000000;
  border-radius: 20px;
  margin-bottom: 30px;
  background-color: #fff;	
}
.secStep .flow .content .num {
  padding: 0px 50px;
  display: block;
}
.secStep .flow .content .num .numStep {
  display: block;
  font-size: clamp(14px, 1.83vw, 22px);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  text-align: center;
  width: 100%;
}
.secStep .flow .content .num .numNum {
  display: block;
  font-size: clamp(24px, 3.33vw, 40px);
  font-family: "Roboto", sans-serif;
  font-weight: 700;
  line-height: 0.8em;
  text-align: center;
  width: 100%;
}
.secStep .flow .content .img {
  border-left: 2px solid #000000;
}
.secStep .flow .content .img img {
  display: block;
  margin: auto;
}
.secStep .flow .content .txt h3 {
  font-size: clamp(15px, 2.08vw, 25px);
  margin-bottom: 14px;
}
.secStep .flow .content .txt p {
  font-size: clamp(14px, 1.33vw, 16px);
  color: #585555;
}

@media only screen and (max-width: 767px), (orientation: portrait) {
  .secStep {
    padding: 80px 0 70px;
	  background-color: #D5F9D2;
  }
  .secStep .ttl {
    margin-bottom: 40px;
  }
  .secStep .flow .content {
    padding: 70px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
	background-color: #fff;
  }
  .secStep .flow .content .num {
    padding: 0px 20px;
    display: block;
  }
  .secStep .flow .content .num .numStep {
    font-size: clamp(14px, 5.64vw, 22px);
  }
  .secStep .flow .content .num .numNum {
    font-size: clamp(24px, 10.26vw, 40px);
  }
  .secStep .flow .content .txt {
    grid-column: 1/3;
    margin-top: 30px;
  }
  .secStep .flow .content .txt h3 {
    font-size: clamp(15px, 6.41vw, 25px);
    text-align: center;
  }
  .secStep .flow .content .txt p {
    font-size: clamp(14px, 4.1vw, 16px);
  }
}
.secLoyalty {
  background-color: #f5bcb9;
  padding: 140px 0 100px;
}
.secLoyalty .ttl {
  margin-bottom: 80px;
}
.secLoyalty .content {
  display: flex;
  justify-content: center;
  gap: 2%;
}

@media only screen and (max-width: 767px), (orientation: portrait) {
  .secLoyalty {
    padding: 70px 0 50px;
  }
  .secLoyalty .ttl {
    margin-bottom: 40px;
  }
  .secLoyalty .content {
    flex-wrap: wrap;
    gap: 30px;
  }
}
.secLocation {
  padding: 140px 0 100px;
}
.secLocation .ttl {
  margin-bottom: 24px;
}
.secLocation .ttl span {
  color: #000000;
  opacity: 0.04;
}
.secLocation .ttl p {
  color: #000000;
}
.secLocation .ttl h2 {
  color: #00B900;
}
.secLocation .subtxt {
  font-size: clamp(14px, 1.33vw, 16px);
  text-align: center;
  display: block;
}
.secLocation iframe {
  margin-top: 40px;
  width: 100%;
  aspect-ratio: 4/3;
}
.secLocation .i4ewOd-pzNkMb-haAclf {
  display: none !important;
}
.secLocation .i4ewOd-pzNkMb-haAclf {
  background-color: rgb(46, 49, 47);
  display: none;
}
.secLocation .content {
  margin-top: 48px;
}
.secLocation .content details {
  margin-bottom: 40px;
}
.secLocation .content details summary {
  background: #e63077;
  font-size: clamp(14px, 2vw, 24px);
  text-align: center;
  color: #fff;
  padding: 12px;
  cursor: pointer;
  transition: 0.3s;
  position: relative;
}
.secLocation .content details summary:hover {
  opacity: 0.7;
  transition: 0.3s;
}
.secLocation .content details summary svg {
  transform: rotate(90deg);
  position: absolute;
  right: 14px;
  top: 0;
  bottom: 0;
  margin: auto;
  transition: 0.3s;
}
.secLocation .content details summary::-webkit-details-marker {
  display: none;
}
.secLocation .content details[open] summary svg {
  transform: rotate(-90deg);
  transition: 0.3s;
}
.secLocation .content details .wrap {
  max-width: 1020px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px 5%;
  margin: 40px auto;
}
.secLocation .content details .wrap .box h3 {
  font-size: clamp(14px, 1.5vw, 18px);
  margin: 15px 0 5px;
  font-weight: 700;
  color: #e63077;
}
.secLocation .content details .wrap .box p {
  font-size: clamp(14px, 1.33vw, 16px);
  font-weight: 700;
  color: #e63077;
}
.secLocation .content details .wrap .box.black h3 {
  color: #000000;
}
.secLocation .content details .wrap .box.black p {
  color: #000000;
}

@media only screen and (max-width: 900px) {
  .secLocation .content details .wrap {
    width: 90%;
    grid-template-columns: 1fr 1fr;
    gap: 30px 24px;
  }
}
@media only screen and (max-width: 767px) {
  .secLocation {
    padding: 80px 0 70px;
  }
  .secLocation .ttl {
    margin-bottom: 18px;
  }
  .secLocation .subtxt {
    font-size: clamp(14px, 4.1vw, 16px);
  }
  .secLocation .content {
    margin-top: 40px;
  }
  .secLocation .content details {
    margin-bottom: 20px;
  }
  .secLocation .content details summary {
    font-size: clamp(14px, 4.62vw, 18px);
    text-align: left;
    color: #fff;
    padding: 12px 24px;
  }
  .secLocation .content details summary svg {
    right: 24px;
  }
  .secLocation .content details .wrap {
    width: 80%;
    grid-template-columns: 1fr;
    gap: 30px;
    margin: 30px auto;
  }
  .secLocation .content details .wrap img {
    width: 100%;
  }
  .secLocation .content details .wrap h3 {
    font-size: clamp(14px, 4.62vw, 18px);
    margin: 15px 0 5px;
  }
  .secLocation .content details .wrap p {
    font-size: clamp(14px, 4.1vw, 16px);
  }
}
footer {
  background-color: #00B900;
  height: 45px;
  display: flex;
  justify-content: center;
  align-items: center;
}
footer .footerArea p {
  color: #fff;
  font-size: clamp(14px, 1.25vw, 15px);
  text-align: center;
  font-weight: 700;
}

@media only screen and (max-width: 767px), (orientation: portrait) {
  footer {
    height: 35px;
  }
  footer .footerArea p {
    font-size: 12px;
  }
}
#content2 .tab-content .box {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
}/*# sourceMappingURL=style.css.map */



/* 個別対応　*/
.Mv img,
.cta img{
	width:100%;
}

.cta_zone{
	background-color: #111111;
	padding: 1rem;
}

.cta .cta_zone p{
	text-align: center;
	color:#fff;
	padding: 0 0 1rem 0;
}

.cta_zone a{
	display: block;
	text-align: center;
	
}

.cta_zone button{
	height: 50px;
	border-radius: 25px;
	width:60%;
	text-align: center;
	background-color: #aad900;
	margin: 0 auto;
	display: block;
}

.nayami img,
.simulator img,
.reason5_sp img{
	width:100%;
}

.reason5_pc,
.function_pc{
	background-color: #111111;
	padding: 2rem 0;
}

.price_pc{
	padding: 2rem 0;
	background-color: #D5F9D2;
}
.price_pc p{
	text-align: center;
	margin-top: .5rem;
}

.reason5_pc h2,
.price_pc h2,
.intro_pc h2,
.function_pc h2,
.voice h2,
#Q_a h2,
.secStep h2
{
	color:#aad900;
	text-align: center;
	font-weight: 900;
	font-size:3rem;
	letter-spacing: .3rem;
}

.reason5_pc h3,
.function_pc h3{
	color:#fff;
	text-align: center;
	font-size:1.3rem;
}

.price_pc h3,
.intro_pc h3,
.voice h3,
#Q_a h3,
.secStep h3 {
	color:#111111;
	text-align: center;
	font-size:1.3rem;
}

.grid1{
	display: grid;
	grid-template-areas: 
		"grid01 grid02 grid03"
		"grid04 grid05 .";
	grid-template-columns: 1fr 1fr 1fr;
	justify-content: center;
	margin:2rem 0 2rem 5rem;
	gap:1rem;
}

.grid01{
	grid-area: grid01;
	width:70%;
}
.grid02{
	grid-area: grid02;
	width:70%;
}
.grid03{
	grid-area: grid03;
	width:70%;
}
.grid04{
	grid-area: grid04;
	width:70%;
}
.grid05{
	grid-area: grid05;
	width:70%;
}

.price_sp img{
	width:100%;
}

/* 料金表　*/
table , td, th {
	border: 1px solid #595959;
	border-collapse: collapse;
	margin: 0 auto;
	
}
td, th {
	padding: 3px;
	width: 300px;
	height: 25px;
}
th {
	background: #f0e6cc;
}
.even {
	background: #fbf8f0;
}
.odd {
	background: #fefcf9;
}
.table_title{
	text-align: center;
}
.syubetu{
	padding: 3px;
	width: 200px;
	height: 25px;
	text-align: center;
	font-size:20px;
}
.price{
	text-align: end;
	font-size:20px;
	color:red;
	padding-right: 2rem;
}
td span{
	font-size: 20px;
    width: -moz-fit-content;
    width: fit-content;
	background-color: #111111;
	color:#fff;
}

.intro_sp img{
	width:100%;
}
.space5rem{
	width:auto;
	height: 5rem;
}
.space2rem{
	width:auto;
	height: 2rem;
}
.intro_pc h4{
	font-weight: 900;
	color:#111111;
	text-align: center;
	font-size:5rem;
}
.intro_pc h5{
	background-color: #111111;
	color:#aad900;
	width: -moz-fit-content;
    width: fit-content;
	margin: 0 auto;
	font-size:20px;
	padding: 3px;
}
.intro_pc img{
	width:50%;
	margin: 2rem auto;
	display: block;
}
.intro_pc p{
	width:50%;
	margin: 0 auto;
	font-size:20px;
	line-height: 1.75;
}



.function_sp img{
	width:100%;
}

.grid2{
	display: grid;
	grid-template-areas: 
		"grid11 grid12"
		"grid13 grid14";
		
	grid-template-columns: 1fr 1fr;
	justify-content: center;
	margin:2rem 0 2rem 5rem;
	gap:1rem;
	place-items: center;
}

.grid11{
	grid-area: grid11;
	width:70%;
}
.grid12{
	grid-area: grid12;
	width:70%;
}
.grid13{
	grid-area: grid13;
	width:70%;
}
.grid14{
	grid-area: grid14;
	width:70%;
}

.compare{
	background-color: #111111;
}

.compare img{
	width:100%;
	display: block;
	margin: 0 auto;
}

@media screen and (min-width:768px){
	.compare img{
		width:30%;
		display: block;
		margin: 0 auto;
	}
}

.voice_box{
	width:90%;
	background-color: #A9F8A1;
	margin: 1rem auto 0 auto;
	line-height: 1.75;
	letter-spacing: .1rem;
	padding: 1rem;
}	

@media screen and (min-width:768px){
	.voice_box{
		width:60%;
		font-size:1.2rem;
	}
}

.cta{
	background-image: url("images/cta_back.jpg");
	height: 250px;
	/*margin: 2rem 0;*/
}

.cta_inner{
	padding: 2rem 0;
	
}

.cta_inner p{
	color:#fff;
	text-align: center;
	line-height: 2;
	font-size:20px;
	letter-spacing: .1rem;
}
.cta_inner a{
	display: block;
	height: 50px;
	line-height: 50px;
	text-align: center;
	background-color: #A9F8A1;
	margin: 1rem auto 0 auto;
	width:70%;
	max-width:300px;
	border-radius: 25px;
}

/* Q&A */
.index_accordion {
    margin: 0 auto;
	max-width:100%;
	border: 1px solid #000;
}
.index_accordion{
	margin-top:1rem;
}


.accordion-header {
    padding: 1rem;
    cursor: pointer;
    outline: none;
    font-weight: bold;
    color:#000;
    position: relative; 
    list-style: none; 
	letter-spacing: .1rem;
	font-size:clamp(16px, 2vw, 20px); 
	height: auto;
	line-height: 1.5;
	background-color: #A9F8A1;
}


.accordion-content {
  padding: 1rem;
  line-height: 1.5;
  letter-spacing: .1rem;
  font-weight: 600;
  background-color: #F0FFF0;
	
}


.accordion-header::after {
  content: '▼'; 
  position: absolute;
  right: 10px; 
  transition: transform 0.2s ease-in-out; 
  color:#000;
}


.index_accordion[open] .accordion-header::after {
  transform: rotate(180deg); 
}


.index_accordion .accordion-header::-webkit-details-marker {
  display: none;
}



#Q_a
{
	background-color: #D5F9D2;;
	padding: 5% 8%;
}

.flow{
	margin-top: 2rem;
}

.place span{
	  background-color: #00B900;
	  color: #fff;
	  display: block;
	  width: -moz-fit-content;
	  width: fit-content;
}

iframe {
	margin: 0 auto;
	display: block;
	width:100%;
}

.space3rem{
	width:auto;
	height: 3rem;
}

.voice{
	padding-bottom: 3rem;
}

.intro_pc{
	background-color: #D5F9D2;
	padding-bottom: 3rem;
}
	

