@charset "UTF-8";
:root{
    --cream: #FEFCF6;
    --lightblue: #D5EBF8;
    --pink: #F8DEE1;
    --navy: #004681;
    --black: #676565;
    --button: linear-gradient(to right, #F2DCA7, #F4B8BF);
    --text: linear-gradient(to right, #6EB0E1, #F3AAB3);
    --shadow: 1px 1px 6px rgba(103, 101, 101, 0.5);
}
* {
  box-sizing: border-box;
}
html{
    margin: 0;
    padding: 0;
    font-size: 100%;
}
body{
    margin: 0;
    padding: 0;
    color: var(--black);
    font-family: 'Zen Old Mincho', serif;
}
.site-Container{
    overflow: hidden;
    background-color: var(--cream);
}
a{
    text-decoration: none;
    padding: 6px;
    color: var(--cream);
}
img{
    max-width: 100%;
}
ul{
  padding-left: 0;
}
li{
    list-style: none;
}
.wrapper{
    padding: 6% 8%;
    margin: 0 auto;
}
.onlysp{
    display: none;
}
.onlypc{
    display: block;
}
.sec-Title{
    margin-bottom: 2rem;
    text-align: center;
}
.sec-Title h2 {
  display: inline-block;
  padding-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom: 0.1875rem solid var(--navy);
  margin-top: 0;
}

/*====== FV ======*/
.image-carousel {
  position: relative;
  width: 100%;
  padding: 0;
  overflow: hidden;
}
.carousel-main {
  width: 100%;
  overflow: hidden;
}
.carousel-track {
  display: flex;
  transition: transform 0.4s ease-in-out;
  will-change: transform;
}
.carousel-track.no-transition {
  transition: none !important;
}
.carousel-item {
  flex: 0 0 60%;
  box-sizing: border-box;
  opacity: 0.4;
  transform: scale(0.85);
  transition: transform 0.4s ease, opacity 0.4s ease;
}
.carousel-item.is-active {
opacity: 1;
  transform: scale(1);
}
.image-wrapper {
  position: relative;
  width: 100%;
  border-radius: 8px;
  overflow: hidden;
}
/* 矢印ボタン */
.carousel-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  background-color: var(--pink);
  border: solid 1px var(--pink);
  border-radius: 50%;
  cursor: pointer;
  z-index: 99;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.carousel-arrow:hover {
  background-color: var(--lightblue);
  border: solid 1px var(--lightblue);
}
.carousel-arrow::before {
  content: '';
  width: 10px;
  height: 10px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  display: block;
  transition: border-color 0.3s ease;
}
.carousel-arrow:hover::before {
  border-color: #fff;
}
.prev-arrow { left: 16%; }
.prev-arrow::before { transform: rotate(-135deg); margin-left: 4px; }
.next-arrow { right: 16%; }
.next-arrow::before { transform: rotate(45deg); margin-right: 4px; }
.static-Catchphrase {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.8);
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}
.static-Catchphrase p{
  margin: 0 0 1rem;
  font-size: 2rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  line-height: 1.5;
  text-align: center;
  margin: 0;
  background: var(--text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  filter: drop-shadow(1px 1px 0 rgba(255, 255, 255, 1));
}

/*====== 固定ボタン =======*/
#fixed-Btn{
  position: fixed;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  bottom: 3rem;
  right: 0;
  z-index: 999;
}
#fixed-Btn a{
  display: block;
  padding: 2rem 1rem;
  border-radius: 5px 0 0 5px;
  box-shadow: var(--shadow);
  writing-mode: vertical-rl;
  text-orientation: upright;
  color: var(--black);
  font-weight: 700;
  transition: all 0.3s ease;
}
#fixed-Btn a.lightblue{
  background-color: var(--lightblue);
}
#fixed-Btn a.pink{
  background-color: var(--pink);
}
#fixed-Btn a:hover{
  opacity: 0.7;
}

/*====== CTA =======*/
#cta.wrapper {
  font-family: 'Noto sans JP', serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem 7.5rem;
  margin-bottom: 2rem;
}
.button-Container {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.875rem;
}
.button-Text {
  margin: 0;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  letter-spacing: 0.05em;
  white-space: nowrap;
}
.button-Container a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 16rem;
  padding: 1rem 2rem;
  border-radius: 9999px;
  background: var(--button);
  box-shadow: var(--shadow);
  font-size: 1rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.button-Container a:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}

/* ===== WORRIES ===== */
#worries.wrapper {
  position: relative;
  padding: 0;
}
.sec-Container {
  position: relative;
  z-index: 1;
  background-color: #CDCDCD;
  padding: 2.5rem 2rem 2.5rem 0;
  min-height: 14.5rem;
}
.sec-Container > img {
  position: absolute;
  top: -3.25rem;
  left: 7.5rem;
  width: 17.75rem;
  height: 17.75rem;
  border-radius: 50%;
  object-fit: cover;
}
.worries-List {
  list-style: none;
  margin: 0 0 0 32rem;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 1.625rem;
}
.worries-List li {
  display: flex;
  align-items: center;
  gap: 1.75rem;
}
.worries-List li img {
  width: 1.4rem;
  height: 1.4rem;
  flex-shrink: 0;
}
.worries-List li p {
  margin: 0;
  font-size: 1.125rem;
  line-height: 1.6;
}

/* ===== MACHINE ===== */
#machine > img {
  display: block;
  width: 100%;
  height: auto;
}
.machine-Wrapper.wrapper {
  display: flex;
  flex-direction: column;
  gap: 4.4rem;
  padding-top: 3.5rem;
}
.machine-Title {
  display: inline-block;
  margin: 0 0 3.4rem;
  padding-bottom: 0.5rem;
  font-size: 1.75rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom: 0.1875rem solid var(--navy);
}
.machine-Content {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.machine-Content > img {
  width: calc(50% - 2rem);
  object-fit: cover;
  border-radius: 0.5rem;
  flex-shrink: 0;
}
.explanation {
  width: calc(50% - 2rem);
  flex: 1;
  display: flex;
  flex-direction: column;
}
.explanation-Title {
  margin: 0 0 1.75rem;
  padding: 0.625rem 1.375rem;
  width: 100%;
  font-size: 1.375rem;
  font-weight: 700;
  background: linear-gradient(to right, var(--lightblue), transparent);
}
.text {
  margin: 0 0 0.3rem;
  font-size: 1rem;
  line-height: 1.5;
}
.text.title {
  margin: 0 0 0.75rem;
  font-weight: 700;
}
.feature-List {
  display: flex;
  flex-wrap: nowrap;
  gap: 1rem;
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}
.feature-List li {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 6.2rem;
  height: 6.25rem;
  padding: 0.5rem;
  border-radius: 50%;
  background-color: var(--lightblue);
  text-align: center;
}
.feature-List li img {
  width: 1rem;
  height: 1rem;
  margin-bottom: 0.35rem;
}
.feature-List li p {
  font-family: 'Noto Sans JP', serif;
  margin: 0;
  font-size: 0.85rem;
  line-height: 1.3;
  font-weight: 700;
}
.machine-Container:nth-of-type(2) .explanation-Title {
  background: linear-gradient(to right, var(--pink), transparent);
}
.machine-Container:nth-of-type(2) .feature-List li {
  background-color: var(--pink);
}

/* ===== FEATURE ===== */
#feature{
  text-align: center;
  background: linear-gradient(to bottom, var(--pink), var(--lightblue));
}
#feature .sectitle-Container{
  margin-bottom: 2rem;
}
#feature .sectitle-Container .subtitle{
  font-size: 1.8rem;
  font-weight: 700;
  margin: 0;
}
#feature .sectitle-Container .sec-Title{
  display: inline-block;
  padding-bottom: 0.5rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  border-bottom: 0.1875rem solid var(--navy);
}
#feature .text{
  font-size: 1.3rem;
  font-weight: 700;
  margin: 1rem 0 2rem 0;
}
#feature .arrow{
  display: block;
  width: 4%;
  margin: 0 auto;
}
#feature .figure{
  width: 70%;
}


/* ====== CHANGE======*/
#change.wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.75rem;
  background-color: var(--pink);
}
.change-Content {
  width: 100%;
  max-width: 49rem;
  background-color: #fff;
  border: 0.1875rem solid var(--lightblue);
  border-radius: 1.25rem;
  padding: 2.5rem 3.5rem;
  text-align: center;
  box-sizing: border-box;
}
.change-List {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  column-gap: 2.5rem;
  row-gap: 1.25rem;
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: left;
}
.change-List li {
  display: flex;
  align-items: center;
  gap: 0.875rem;
}
.change-List li img {
  width: 1.25rem;
  height: 1.25rem;
  flex-shrink: 0;
}
.change-List li p {
  margin: 0;
  font-size: 1rem;
  font-family: 'Noto sans JP', serif;
  font-weight: 700;
}
#change > .change-Content2 {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
#change > .change-Content2 > img {
  width: 40%;
}
#change > .change-Content2 > .change-Content2 {
  width: 100%;
  max-width: 49rem;
  box-sizing: border-box;
  padding: 2.5rem 3.5rem;
  text-align: center;
  border: 0.1875rem solid transparent;
  border-radius: 1.25rem;
  background-image: linear-gradient(#fff, #fff), var(--button);
  background-origin: border-box;
  background-clip: padding-box, border-box;
}
.change-Title {
  margin: 0 0 0.75rem;
  font-size: 1.125rem;
  font-weight: 700;
}
.change-Text {
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.8;
}

/*====== PROGRAM ======*/
.program-Container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.75rem;
}
.program-Content img {
  display: block;
  width: 100%;
}
.program-explanation {
  margin-top: 0.75rem;
}
.program-Title {
  margin: 0 0 0.5rem;
  padding-bottom: 0.4rem;
  font-size: 1.0625rem;
  font-weight: 700;
  border-bottom: 2px solid;
  border-image: var(--button) 1;
}
.level,
.part {
  margin: 0 0 0.4rem;
  font-size: 0.9rem;
}
.level span {
  margin-left: 0.2rem;
  color: var(--navy);
  letter-spacing: 0.1em;
}
.part span {
  display: inline-block;
  margin-left: 0.3rem;
  padding: 0.15rem 0.75rem;
  background-color: var(--navy);
  color: #fff;
  font-size: 0.7rem;
  border-radius: 999px;
  font-family: 'Noto sans JP', serif;
}
.program-explanation .text {
  margin-top: 0.75rem;
  font-size: 0.875rem;
  line-height: 1.7;
}

/*====== program下のCTA ======*/
.cta2{
  padding: 3% 8%;
  margin-bottom: 0;
}

/*====== MERIT ======*/
#merit{
  text-align: center;
}
#merit .merit-Title{
  font-size: 0.975rem;
  font-weight: 700;
}
#merit .merit-List{
  display: flex;
  justify-content: space-between;
  gap: 1.75rem;
}

/*====== VOICE ======*/
#voice.wrapper {
  background-color: var(--lightblue);
}
.voice-List {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  list-style: none;
  margin: 0 0 3rem;
  padding: 0;
}
.voice-List li {
  background-color: #fff;
  border-radius: 1.125rem;
  box-shadow: var(--shadow);
  padding: 1.75rem;
  box-sizing: border-box;
}
.customer {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.customer img {
  width: calc(30% - 1rem);
  border-radius: 50%;
  object-fit: cover;
  flex-shrink: 0;
}
.customer .title {
  width: calc(70% - 1rem);
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}
.voice-Ttile {
  margin: 0;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  color: var(--navy);
}
.customer-Info {
  margin: 0;
  font-size: 0.9rem;
}
.voice-Text {
  margin: 0;
  font-size: 0.9375rem;
  line-height: 1.5;
}
#voice .cta {
  font-family: 'Noto sans JP', serif;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 2rem 7.5rem;
}

/*====== BEGINNER ======*/
#beginner.wrapper{
  padding-left: 0;
  padding-right: 0;
}
.beginner-Container {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}
.beginner-Content {
  display: flex;
  align-items: flex-start;
  gap: 2rem;
}
.beginner-Content:nth-child(even) {
  flex-direction: row-reverse;
}
.beginner-Content:nth-child(odd){
  padding-right: 4rem;
}
.beginner-Content:nth-child(even){
  padding-left: 4rem;
}
.beginner-Content img {
  width: calc(50% - 2rem);
}
.point {
  margin: 0 0 1.5rem;
  border-bottom: 0.0625rem solid var(--black);
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  display: inline-block;
}
.point span {
  margin-left: 0.5rem;
  font-size: 3rem;
  font-weight: 400;
  letter-spacing: 0;
}
.beginner-Title {
  margin: 0 0 1rem;
  font-size: 1.7rem;
  font-weight: 700;
  line-height: 1.4;
  background: var(--text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.beginner-Text {
  margin: 0;
  font-size: 1rem;
  line-height: 1.9;
  color: var(--black);
}

/*====== FLOW ======*/
.flow-Container,
.flow2,
.flow3,
.flow4 {
  width: 93.75rem;
  max-width: 90%;
  margin: 0 auto 4rem;
}
.flow1 > img{
  margin-bottom: 2rem;
}
.reservation {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.reservation li.flow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  width: 100%;
  background-color: #fff;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  padding: 1rem;
}
.reservation li.flow img:first-child {
  width: calc(60% - 3rem);
}
.reservation li.flow img:last-child {
  width: calc(40% - 3rem);
}
.reservation li.arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3rem;
  width: 100%;
  padding: 1rem;
}
.reservation li.arrow .arrow-Wrapper {
  display: flex;
  justify-content: center;
}
.reservation li.arrow .arrow-Wrapper:first-child{
  width: calc(60% - 3rem);
}
.reservation li.arrow .arrow-Wrapper:last-child{
  width: calc(40% - 3rem);
}
.reservation li.arrow img {
  width: 1.5rem;
  height: auto;
}
.flow1-Text {
  margin: 2rem 0 0;
  text-align: center;
  font-size: 1.125rem;
  color: var(--black);
}
.flow2 picture img,
.flow3 picture img,
.flow4 picture img{
  margin-bottom: 2rem;
}
.flow2-4 {
  display: flex;
  align-items: center;
  gap: 3rem;
  background-color: #fff;
  border-radius: 1.5rem;
  box-shadow: var(--shadow);
  padding: 2rem;
}
.flow2-4 img {
  width: calc(40% - 3rem);
}
.flow2-4 .flow-Text {
  width: calc(60% - 3rem);;
  margin: 0;
  font-size: 1.1rem;
  line-height: 1.9;
}
#flow .cta.wrapper{
  padding: 0;
}
#flow .cta {
  font-family: 'Noto sans JP', serif;
}

/*====== STORE ======*/
#store {
  background: linear-gradient(to bottom, var(--pink), var(--lightblue));
}
#store .store-Container {
  position: relative;
  margin-top: 15px;
  padding: 3rem 2rem 2rem 2rem;
  border: 3px solid transparent;
  background-image: linear-gradient(#fff, #fff), 
                    linear-gradient(to right, #F2DCA7, #F4B8BF);  background-origin: border-box;
  background-origin: padding-box, border-box;
  background-clip: padding-box, border-box;
  border-radius: 1.5rem;
  background-color: #fff;
}
#store .store-Container::after{
  content: "";
  position: absolute;
  top: -2.2px;
  left: 50%;
  transform: translateX(-50%);
  width: 150px;
  height: 3px;
  background: #fff;
  z-index: 5;
}
#store .sec-Title {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -60%);
  margin: 0;
  z-index: 10;
}
.store-Grid {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 2rem;
}
.store-Card{
  width: calc(50% - 2rem);
}
#store .store-Info .name{
  font-size: 1.5rem;
  font-weight: 700;
  margin: 1rem 0;
}
#store .store-Info .address{
  margin: 0;
}
#store .store-Info .tel{
  margin: 0 0 1rem;
}
#store .store-Info .tel a{
  color: #1470CC;
  border-bottom: solid 1px #1470CC;
  padding: 0 3px;
}
#store .store-Info .btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 2rem;
  border-radius: 9999px;
  background: var(--navy);
  box-shadow: var(--shadow);
  font-size: 0.875rem;
  font-weight: 700;
  text-align: center;
  text-decoration: none;
  white-space: nowrap;
  transition: opacity 0.2s ease, transform 0.2s ease;
}
#store .store-Info .btn:hover {
  opacity: 0.9;
  transform: translateY(-2px);
}
#store .cta {
  font-family: 'Noto sans JP', serif;
}

/*====== FOOTER ======*/
#footer.wrapper{
  padding: 3% 8%;
  text-align: center;
}

#footer .copyright{
  margin: 0;
}