@charset "UTF-8";
/* CSS Document */
.btnArea a {
  width: 240px;
  height: 50px;
  background:  linear-gradient(180deg, #7dd420, #0bc854);
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 25px;
  
}
.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: #000;
  opacity: 0.1;
  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: #fff;
}
.ttl .txt h2 {
  font-size: clamp(31px, 4.25vw, 51px);
  font-weight: 900;
  line-height: 1.3em;
  color: #ceba74;
  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: #D1F5E0;
  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: 158px;
  padding: 16px 25px;
  box-sizing: content-box;
}
header .headWrap .hamburger {
  display: block;
  width: 80px;
  height: 80px;
  background: #000000;
  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: #000000;
  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 {
  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 only screen and (max-width: 767px), (orientation: portrait) {
  header {
    height: 55px;
    background: #D1F5E0;
    position: fixed;
  }
  header .headWrap {
    grid-template-columns: 1fr 55px;
    gap: 0px;
    align-items: flex-start;
  }
  header .headWrap .logo {
    padding: 11px 15px;
    height: 100%;
    box-sizing: border-box;
  }
  header .headWrap .btnArea {
    display: none;
  }
  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: #D1F5E0;
  display: grid;
  grid-template-columns: 1fr 42px 1fr 42px 1fr;
  position: relative;
}
.secMvPc .mvLeft {
  grid-column: 1/3;
  grid-row: 1/2;
  background: url("../images/mv_left_bg.png")top right no-repeat;
  background-size: cover;
  position: relative;
}
.secMvPc .mvLeft img {
  position: absolute;
  top: 3%;
  right: 5%;
  z-index: 11;
  max-height: 562px;
  height: 90%;
  width: auto;
}
.secMvPc .mvCenter {
  grid-column: 1/6;
  grid-row: 1/2;
  position: relative;
}
.secMvPc .mvCenter .mvCenterLogo {
  width: auto;
  height: 67%;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 11;
}
.secMvPc .mvCenter .mvCenterLogo .logo {
  width: auto;
  height: 90%;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  z-index: 10;
}
.secMvPc .mvCenter .mvCenterTxt {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 20%;
  position: relative;
  background: url(../img/mv_center_bg.png);
  /*background-color: #ceba74;*/
}
.secMvPc .mvCenter .mvCenterTxt img {
  height: 80%;
  width: auto;
  display: block;
  margin: auto;
}
.secMvPc .mvCenter .mvCenterDate {
  height: 16%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.secMvPc .mvCenter .mvCenterDate img {
  height: 40%;
  width: auto;
}
.secMvPc .cloud {
  position: absolute;
  top: 6%;
  left: 0;
  right: 0;
  height: 55%;
  width: auto;
  margin: auto;
  z-index: 10;
}
.secMvPc .mvRight {
  grid-column: 4/6;
  grid-row: 1/2;
  background: url("../images/mv_right_bg.png") top left no-repeat;
  background-size: cover;
  position: relative;
}
.secMvPc .mvRight img {
  position: absolute;
  bottom: 5%;
  right:10%;
  
  margin: auto;
  max-width: 150px;
  width: 80%;
}

.secMvSp {
  display: none;
}

@media only screen and (max-width: 1080px) {
  .secMvPc .mvCenter {
    margin: 6% 0;
  }
  .secMvPc .cloud {
    height: 53%;
  }
}
@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;
  background:  linear-gradient(180deg, #7dd420, #0bc854);
  font-size: clamp(21px, 2.92vw, 35px);
  font-weight: 900;
  box-shadow: 0px 10px 0px 0px #0c662c;
  position: relative;
  top: 0px;
  transition: 0.3s;
  color:#fff;	
}
.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;
  border: 4px solid #000000;
  position: absolute;
  top: -24px;
  background-color: #fff;
  letter-spacing: 0.1em;
}
.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 rgb(0, 0, 0);
  }
  .secCta .btnCta span {
    font-size: 14px;
    width: -moz-fit-content;
    width: fit-content;
    height: 40px;
    border-radius: 20px;
    border: 2px solid #000000;
    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: #af191c;
  padding: 85px;
}
.secCampaign .commonWidth {
  background: #fff;
  border-radius: 35px;
  padding: 24px;
}
.secCampaign .commonWidth .secCampaignWrap {
  border-radius: 18px;
  padding: 50px 24px;
  border: 5px solid #000000;
}
.secCampaign .commonWidth .secCampaignWrap .mds {
  text-align: center;
  font-size: clamp(18px, 2.5vw, 30px);
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2%;
}
.secCampaign .commonWidth .secCampaignWrap .mds::after, .secCampaign .commonWidth .secCampaignWrap .mds::before {
  content: "";
  display: block;
  width: 24%;
  height: 30px;
  background: url(../img/campaign_bg.png) no-repeat center;
  background-size: contain;
}
.secCampaign .commonWidth .secCampaignWrap h2 {
  font-size: clamp(31px, 4.25vw, 51px);
  font-weight: 900;
  text-align: center;
  color: #af191c;
  margin-bottom: 32px;
}
.secCampaign .commonWidth .secCampaignWrap .secCampaignImg {
  display: block;
  max-width: 438px;
  width: 100%;
  margin: auto;
}
.secCampaign .commonWidth .secCampaignWrap h3 {
  margin: 30px auto;
  text-align: center;
  font-size: clamp(18px, 2.5vw, 30px);
  background-color: #ceba74;
  padding: 8px 10px;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
}
.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: 396px;
  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: 10px;
  }
  .secCampaign .commonWidth .secCampaignWrap {
    border-radius: 9px;
    padding: 24px 8px;
    border: 3px solid #000000;
  }
  .secCampaign .commonWidth .secCampaignWrap .mds {
    font-size: clamp(14px, 5.64vw, 22px);
  }
  .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: #af191c;
  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: #e50012;
}
.secFeatures .inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3%;
}
.secFeatures .inner img {
  margin-bottom: 6px;
  width: 100%;
}
.secFeatures .inner p {
  background-color: #e50012;
  width: -moz-fit-content;
  width: fit-content;
  padding: 4px;
  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: #D1F5E0;
  padding: 140px 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);
　line-height: 1;
}
.secService .content .txt h3 span {
  background-color: #e50012;
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin-bottom: 5px;
  padding: 4px;
  line-height: 1em;
}
.white{
	color:#fff;
}
.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: 36px;
  }
  .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: #fff;
  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: #ceba74;
  border-radius: 20px 20px 0 0;
  font-size: clamp(14px, 2vw, 24px);
  text-align: center;
  transition: 0.3s;
}
.secProgram .tabs .tab.active {
  background-color: #fff;
  transition: 0.3s;
}
.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: #ceba74;
  font-size: clamp(17px, 2.33vw, 28px);
  padding: 2px 12px;
  width: -moz-fit-content;
  width: fit-content;
}
.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: #ceba74;
  text-align: center;
  display: block;
  margin-top: 16px;
  margin-bottom: 12px;
  font-size: clamp(14px, 1.83vw, 22px);
  padding: 0px 2px;
  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: #ceba74;
  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: #af191c;
  padding: 6px 10px;
  margin-top: 10px;
}
.secProgram #content2 .tab-content .tab-panel .content .wrap .container h4 {
  font-size: clamp(14px, 1.5vw, 18px);
  color: #fff;
}
.secProgram #content2 .tab-content .tab-panel .content .wrap .container p {
  font-size: 12px;
  line-height: 1.4em;
  color: #fff;
}

@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: 180px 0 80px;
}
.secStep .ttl {
  margin-bottom: 80px;
}
.secStep .ttl span {
  color: #000000;
  opacity: 0.04;
}
.secStep .ttl p {
  color: #000000;
}
.secStep .ttl h2 {
  color: #e50012;
}
.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;
}
.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;
  }
  .secStep .ttl {
    margin-bottom: 40px;
  }
  .secStep .flow .content {
    padding: 70px 20px;
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
  .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: #af191c;
  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: #af191c;
}
.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: #af191c;
  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: #af191c;
}
.secLocation .content details .wrap .box p {
  font-size: clamp(14px, 1.33vw, 16px);
  font-weight: 700;
  color: #af191c;
}
.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: #e50012;
  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 */


/*-----------------------------
     独自設定
-----------------------------*/
.gk_concept h2{
	text-align: center;
	font-size: clamp(1.4rem, 2vw, 2rem);
}
.gk_concept p{
	color:#000;
	line-height: 2;
	padding: 1.5rem 0;
	font-weight: 400;
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	letter-spacing: .07rem;
}
.gk_concept p span{
	background: #e50012;
	color: #fff;
	font-weight: 700;
    width: -moz-fit-content;
    width: fit-content;
	padding: 0 4px;
}
@media screen and (min-width:768px){
	.gk_concept p{
		text-align: center;
	}
}
.secFeatures .inner .box img{
	border-radius: 20px;
}
.gk_concept_p{
	background-color: #e50012;
  　width: -moz-fit-content;
  　width: fit-content;
  　padding: 4px;
  　font-size: 20px;
  　line-height: 1.4em;
	color:#fff;
	border-radius: 3px;
}
.gk_concept_p2{
	background-color: none;
  　font-size: 1rem;
  　color:#000;
	font-weight: 400;
	margin: .5rem 0 0 0;
	line-height: 1.75;
	letter-spacing: .07rem;
}
.program_p{
	font-weight: 400;
	padding: 1.5rem 0;
	line-height: 2;
	font-size: clamp(1rem, 1.5vw, 1.2rem);
	letter-spacing: .07rem;
}
.program_p span{
	font-weight: 700;
	background-color: none;
}
.guardian_voice{
	border:2px solid #000;
	border-radius: 30px;
	padding: 2rem;
	margin-bottom: 1rem;
}

.guardian_voice h3{
	background-color: #e50012;
  　width: -moz-fit-content;
  　width: fit-content;
	color:#fff;
  　padding: 6px;
  　font-size: 20px;
  　line-height: 1.4em;
	border-radius: 3px;
	font-size:20px;
	display: inline-block;
}
.secService .txt p{
	color:#000;
}
.secService .txt h2{
	color:#e60012;
}
.txt16{
	color:#fff;
}
/*---------------------------------
        料金表
---------------------------------*/
.price-table {
      		width: 300px; /* 表の幅を調整 */
            border-collapse: collapse;
            margin: 0 auto;
        }

        .price-table th,
        .price-table td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: left;
        }

        .price-table th {
            background-color: #f0f0f0;
            font-weight: bold;
        }

        /*.price-table tr:nth-child(odd) {
            background-color: #f9f9f9;
        }*/
		.price-table tr{
			background-color: #f9f9f9;
}

        .price-table .item {
            background-color: #e74c3c; /* 赤色の背景 */
            color: white;
            font-weight: bold;
        }
		.price-table .item2 {
            background-color: #e74c3c; /* 赤色の背景 */
            color: white;
            font-weight: bold;
			text-align: center;
        }

        .price-table .price {
            text-align: right;
        }

        .price-table .tax-included {
            font-size: 0.8em;
            color: #777;
        }
th,td{
	width:50%;
}
@media screen and (min-width:768px){
	.price-table{
		width:600px;
		font-size: 20px;
	}
	

}

.basyo{
	font-weight: 400;
}

.basyo span{
	background-color: #e50012;
  　width: -moz-fit-content;
  　width: fit-content;
	color:#fff;
  　padding: 6px;
  　font-size: 20px;
  　line-height: 1.4em;
	border-radius: 3px;
	display: inline-block;
}
.space{
	width:auto;
	height: 5rem;
}

.special_day{
	width:94%;
	margin: 1rem auto 0 auto;
	background-color: greenyellow;
	border: 3px solid #af191c;
	border-radius: 5px;
	padding: 1rem;
}

.special_day h2{
	background-color: #e50012;
  　width:80%;
	text-align: center;
	color:#fff;
	font-size:2rem;
	letter-spacing: .15rem;
}

.special_day_disc{
	margin-top: 1rem;
}
@media screen and (min-width:1200px){
	.special_day_disc{
		display: flex;
		margin: 1rem auto;
		text-align: center;
		justify-content: space-between;
		max-width: 750px;
		font-size:120%;
	}
	.special_day{
		width:60%;
	}
}

.special_1{
	background-color: #f0fff0;
	padding: 0 1rem 1rem 1rem;
	margin-bottom: 1rem;
}
.special_2{
	background-color: #fefbd8;
	padding: 0 1rem 1rem 1rem;
	margin-bottom: 1rem;
}
.special_3{
	background-color: #e0f7fa;
	padding: 0 1rem 1rem 1rem;
	margin-bottom: 1rem;
}

.special_day_disc ul li{
	list-style-type: none;
	margin: .5rem 0;
	letter-spacing: .1rem;
}

.taiken_title{
	font-size: 20px;
}

.taiken_title span{
	background-color: #e50012;
  　width: -moz-fit-content;
  　width: fit-content;
	color:#fff;
  　padding: 6px;
  　font-size: 20px;
  　line-height: 1.4em;
	border-radius: 3px;
}

.special_day_button{
	margin: 0 auto;
	display: block;
}

.special_day_button a{
	line-height: 45px;
	display: block;
	width:300px;
	height: 50px;
	border-radius: 25px;
	border: 3px solid #000;
	background-color: #fff;
}

a{
	cursor: pointer;
}