@charset "UTF-8";
@media only screen and (max-width: 767px) {
  .pb30-sp {
    padding-bottom: 30px !important;
  }
}

#program01 {
  /* 外枠：はみ出しを隠す */
  /* スライドを横一列に並べ、アニメーションを適用 */
  /* 各スライドのサイズ固定 */
  /* アニメーションの設定 */
}
@media print, screen and (min-width: 768px) {
  #program01 {
    background: url("/shop/kahoku/img/program01_bg.png") no-repeat center/contain;
    max-width: 1260px;
    margin-left: auto;
    margin-right: auto;
  }
}
@media only screen and (max-width: 767px) {
  #program01 {
    background: url("/shop/kahoku/img/program01_bg_sp.png") no-repeat center/cover;
    margin-bottom: 120px;
  }
}
#program01 .p01-inner {
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #program01 .p01-inner {
    aspect-ratio: 375/255;
  }
}
@media print, screen and (min-width: 768px) {
  #program01 .p01-inner {
    height: 633px;
  }
}
#program01 .p01-circle {
  position: absolute;
  width: 516px;
  height: 516px;
  border-radius: 260px;
  background-color: rgba(255, 255, 255, 0.79);
  display: flex;
  flex-direction: column;
  align-items: center;
  right: 66px;
  top: -44px;
  font-family: "Hiragino Sans", system-ui, "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
@media only screen and (max-width: 767px) {
  #program01 .p01-circle {
    width: 318px;
    height: 318px;
    top: -20px;
    right: -50px;
  }
}
#program01 .p01-circle .p01-txt_01 {
  font-size: 16px;
  margin-top: 115px;
  line-height: 21px;
}
@media only screen and (max-width: 767px) {
  #program01 .p01-circle .p01-txt_01 {
    font-size: 14px;
    margin-top: 58px;
    text-align: center;
  }
}
@media print, screen and (min-width: 768px) {
  #program01 .p01-circle .p01-txt_02 {
    width: 494px;
    transform: translateX(-30px);
    margin-top: -20px;
  }
}
@media only screen and (max-width: 767px) {
  #program01 .p01-circle .p01-txt_02 {
    width: 280px;
    transform: translateX(-20px);
  }
}
#program01 .p01-circle .p01-txt_03 {
  font-size: 16px;
  margin-top: 27px;
}
@media only screen and (max-width: 767px) {
  #program01 .p01-circle .p01-txt_03 {
    font-size: 14px;
    margin-top: 14px;
  }
}
#program01 .p01-circle .p01-txt_04 {
  margin-top: 10px;
  /* サイズ指定 */
  width: 363px;
  height: 34.5px;
  background-color: #B89550;
  /* 12pxのズレを作るための計算 */
  /* ズレ(12px) / 高さ(34.5px) の逆正接（atan）で角度を算出 */
  transform: skewX(-19.2deg);
  /* 補足：中身のテキストも傾くのを防ぎたい場合は、
     中の要素に対して transform: skewX(19.2deg); をかけて打ち消します */
  display: flex;
  justify-content: center;
  align-items: center;
}
@media only screen and (max-width: 767px) {
  #program01 .p01-circle .p01-txt_04 {
    width: 214px;
    height: 19px;
    margin-top: 0;
  }
}
#program01 .p01-circle .p01-txt_04 span {
  font-size: 20px;
  color: #fff;
  transform: skewX(19.2deg);
  font-family: "Hiragino Sans", system-ui, "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
@media only screen and (max-width: 767px) {
  #program01 .p01-circle .p01-txt_04 span {
    font-size: 14px;
  }
}
#program01 .p01-slider {
  overflow: hidden;
  width: 100%;
  margin-top: auto;
  position: absolute;
}
@media print, screen and (min-width: 768px) {
  #program01 .p01-slider {
    bottom: 0;
  }
}
@media only screen and (max-width: 767px) {
  #program01 .p01-slider {
    top: 100%;
  }
}
#program01 .slider-wrap {
  display: flex;
  gap: 27px;
  /* 間隔27px */
  width: max-content;
  /* 中身のサイズに合わせる */
  animation: loop-slide 20s linear infinite;
  /* 20秒で一周、等速、無限 */
}
@media only screen and (max-width: 767px) {
  #program01 .slider-wrap {
    animation: loop-slide-sp 15s linear infinite;
    gap: 10px;
  }
}
#program01 .slide-item {
  flex-shrink: 0;
  width: 230px;
  height: 199px;
}
@media only screen and (max-width: 767px) {
  #program01 .slide-item {
    width: 147px;
    height: 125px;
  }
}
#program01 .slide-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  vertical-align: bottom;
}
@keyframes loop-slide {
  from {
    transform: translateX(0);
  }
  to {
    /* 4枚分のアニメーション。
       (230px + 27px) * 4枚 = 1028px 移動した時にリセット 
    */
    transform: translateX(-1028px);
  }
}
@keyframes loop-slide-sp {
  from {
    transform: translateX(0);
  }
  to {
    /* 計算式: (画像の幅 147px + 間隔 10px) × 4枚分
       = 157px × 4
       = 628px 左へ動かす
    */
    transform: translateX(-628px);
  }
}
.trial-button_01 {
  margin-top: 90px;
  margin-bottom: 80px;
  position: relative;
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  .trial-button_01 {
    padding-top: 60px;
    margin-bottom: 30px;
  }
}
.trial-button_01 .check_svg {
  width: 193px;
  position: absolute;
  left: -130px;
  top: -50px;
}
@media only screen and (max-width: 767px) {
  .trial-button_01 .check_svg {
    width: 107px;
    left: -30px;
    top: 10px;
  }
}
.trial-button_01 .trial-link_button {
  width: 462px;
  height: 86px;
  background-color: #1B263B;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  border-radius: 43px;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  .trial-button_01 .trial-link_button {
    width: 302px;
    height: 55px;
  }
}
.trial-button_01 .trial-link_button span {
  font-size: 26px;
  color: #fff;
  /*      margin-left: 52px;*/
  font-family: "Hiragino Sans", system-ui, "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
@media only screen and (max-width: 767px) {
  .trial-button_01 .trial-link_button span {
    font-size: 18px;
  }
}

#program02 {
  padding: 56px 0;
  background-color: #FAF7F2;
}
@media only screen and (max-width: 767px) {
  #program02 {
    padding: 30px 0;
  }
}
#program02 .p02-inner {
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #program02 .p02-inner {
    width: auto;
    margin: 0 10px;
  }
}
#program02 .p02-img {
  position: absolute;
  width: 316px;
  right: 15px;
  bottom: -56px;
}
@media only screen and (max-width: 767px) {
  #program02 .p02-img {
    width: 173px;
    right: -60px;
    bottom: -30px;
  }
}
@media print, screen and (min-width: 768px) {
  #program02 .p02-container {
    margin-left: 195px;
    width: fit-content;
  }
}
#program02 .p02-container .p02-txt_01 {
  font-family: "Noto Serif JP", serif;
  font-size: 28px;
  font-weight: 900;
  color: #A65D50;
  margin-bottom: 29px;
}
@media only screen and (max-width: 767px) {
  #program02 .p02-container .p02-txt_01 {
    text-align: center;
    font-size: 21px;
  }
}
#program02 .p02-container .p02-ul {
  width: auto;
}
#program02 .p02-container .p02-ul li {
  padding: 15px;
  display: flex;
  font-size: 20px;
  border-bottom: 1px solid #333333;
  font-family: "Hiragino Sans", system-ui, "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  align-items: center;
}
@media only screen and (max-width: 767px) {
  #program02 .p02-container .p02-ul li {
    padding-right: 37%;
    align-items: baseline;
    padding: 10px 37% 10px 15px;
    font-size: 16px;
  }
}
#program02 .p02-container .p02-ul li::before {
  content: "";
  width: 19.5px;
  height: 15px;
  background: url("/shop/kahoku/img/check-violet.svg") no-repeat center/contain;
  color: #785DC8;
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  #program02 .p02-container .p02-ul li::before {
    width: 16px;
    height: 12px;
    margin-right: 4px;
    flex-shrink: 0;
  }
}
#program02 .p02-container .p02-txt_02 {
  font-size: 30px;
  font-family: "Hiragino Sans", system-ui, "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  margin-top: 10px;
}
@media only screen and (max-width: 767px) {
  #program02 .p02-container .p02-txt_02 {
    font-size: 18px;
    margin-top: 30px;
    margin-left: 10px;
  }
}

#program03 {
  padding: 60px 0 53px;
  background: url("/shop/kahoku/img/program03_bg.png") no-repeat top/contain;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
}
@media only screen and (max-width: 767px) {
  #program03 {
    padding: 60px 36px 30px;
    background: url("/shop/kahoku/img/program03_bg_sp.png") no-repeat top/cover;
  }
}
#program03 .p03-txt_01 {
  font-size: 42px;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  color: #1B263B;
  text-align: center;
  font-weight: 900;
}
@media only screen and (max-width: 767px) {
  #program03 .p03-txt_01 {
    font-size: 24px;
    margin-bottom: 30px;
  }
}
#program03 .p03-txt_01 span {
  position: relative;
}
#program03 .p03-txt_01 span::before {
  content: "・";
  position: absolute;
  top: -1.2em;
  /* 位置の調整 */
  left: 50%;
  transform: translateX(-50%);
  font-size: 40px;
  /* ここでサイズを自由に指定 */
  color: #1B263B;
}
@media only screen and (max-width: 767px) {
  #program03 .p03-txt_01 span::before {
    font-size: 24px;
  }
}
#program03 .p03-container {
  display: flex;
  margin-top: 81px;
  justify-content: center;
  align-items: center;
  gap: 83px;
}
@media only screen and (max-width: 767px) {
  #program03 .p03-container {
    margin-top: 30px;
    gap: 30px;
    flex-direction: column;
  }
}
#program03 .p03-container .p03-unit {
  box-sizing: border-box;
  width: 229px;
  height: 229px;
  padding: 22px 39px;
  background-color: #fff;
}
@media only screen and (max-width: 767px) {
  #program03 .p03-container .p03-unit {
    width: 149px;
    height: 149px;
    padding: 14.5px 19px;
  }
}
#program03 .p03-container .p03-unit .unit-head {
  width: 100%;
  height: 49px;
  font-size: 20px;
  color: #fff;
  font-family: "Hiragino Sans", system-ui, "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #333333;
}
@media only screen and (max-width: 767px) {
  #program03 .p03-container .p03-unit .unit-head {
    font-size: 14px;
    height: 31px;
  }
}
#program03 .p03-container .p03-unit .unit-txt_01 {
  margin-top: 50px;
  text-align: center;
  font-size: 24px;
  line-height: 32px;
  font-family: "Hiragino Sans", system-ui, "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
@media only screen and (max-width: 767px) {
  #program03 .p03-container .p03-unit .unit-txt_01 {
    font-size: 14px;
    margin-top: 34px;
    line-height: 19px;
  }
}
#program03 .p03-container .p03-unit_02 {
  box-sizing: border-box;
  width: 371px;
  height: 371px;
  padding-top: 26px;
  background-color: #fff;
  border: 5px solid #F2E769;
  text-align: center;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #program03 .p03-container .p03-unit_02 {
    width: 303px;
    height: 303px;
    padding-top: 15px;
  }
}
#program03 .p03-container .p03-unit_02 .good-svg {
  width: 245px;
  position: absolute;
  left: -60px;
  top: -60px;
}
@media only screen and (max-width: 767px) {
  #program03 .p03-container .p03-unit_02 .good-svg {
    width: 150px;
    left: -30px;
    top: -30px;
  }
}
#program03 .p03-container .p03-unit_02 .unit-head {
  width: 184px;
  margin: 0 auto;
}
@media only screen and (max-width: 767px) {
  #program03 .p03-container .p03-unit_02 .unit-head {
    width: 144px;
  }
}
#program03 .p03-container .p03-unit_02 .unit-txt_01 {
  font-size: 20px;
  font-family: "Hiragino Sans", system-ui, "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  margin-top: 8px;
}
@media only screen and (max-width: 767px) {
  #program03 .p03-container .p03-unit_02 .unit-txt_01 {
    font-size: 14px;
    margin-top: 4px;
  }
}
#program03 .p03-container .p03-unit_02 .unit-txt_02 {
  font-size: 32px;
  font-family: "Hiragino Sans", system-ui, "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  margin-top: 8px;
  color: #A65D50;
  line-height: 42px;
}
@media only screen and (max-width: 767px) {
  #program03 .p03-container .p03-unit_02 .unit-txt_02 {
    font-size: 21px;
    line-height: 31px;
  }
}
#program03 .p03-container .p03-unit_02 .unit-txt_03 {
  font-size: 24px;
  font-family: "Hiragino Sans", system-ui, "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  margin-top: 20px;
  color: #A65D50;
  line-height: 32px;
}
@media only screen and (max-width: 767px) {
  #program03 .p03-container .p03-unit_02 .unit-txt_03 {
    font-size: 19px;
    line-height: 21px;
  }
}
#program03 .p03-container .p03-unit_02 .unit-list {
  margin-left: auto;
  margin-right: auto;
  width: fit-content;
  margin-bottom: 15px;
  margin-top: 10px;
}
#program03 .p03-container .p03-unit_02 .unit-list li {
  display: flex;
  font-size: 18px;
  font-family: "Hiragino Sans", system-ui, "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  align-items: center;
  line-height: 1.3;
}
@media only screen and (max-width: 767px) {
  #program03 .p03-container .p03-unit_02 .unit-list li {
    font-size: 16px;
  }
}
#program03 .p03-container .p03-unit_02 .unit-list li::before {
  content: "";
  width: 17px;
  height: 13px;
  background: url("/shop/kahoku/img/check-violet.svg") no-repeat center/contain;
  color: #785DC8;
  margin-right: 5px;
}

#program04 {
  padding: 110px 0 50px;
  background: #FAF7F2;
}
@media only screen and (max-width: 767px) {
  #program04 {
    padding: 52px 17px 23px;
  }
}
#program04 .p04-txt_01 {
  font-size: 42px;
  font-family: "Noto Serif JP", serif;
  font-weight: bold;
  color: #1B263B;
  text-align: center;
  font-weight: 900;
}
@media only screen and (max-width: 767px) {
  #program04 .p04-txt_01 {
    font-size: 24px;
    white-space: nowrap;
  }
}
#program04 .p04-txt_01 span {
  position: relative;
}
#program04 .p04-txt_01 span::before {
  content: "・";
  position: absolute;
  top: -1.2em;
  /* 位置の調整 */
  left: 50%;
  transform: translateX(-50%);
  font-size: 40px;
  /* ここでサイズを自由に指定 */
  color: #1B263B;
}
@media only screen and (max-width: 767px) {
  #program04 .p04-txt_01 span::before {
    font-size: 24px;
  }
}
#program04 .p04-container {
  display: flex;
  margin-top: 50px;
  justify-content: center;
  align-items: center;
  gap: 40px;
}
@media only screen and (max-width: 767px) {
  #program04 .p04-container {
    flex-direction: column;
    gap: 30px;
  }
}
#program04 .p04-container .p04-banner {
  width: auto;
  max-width: 340px;
}
#program04 .p04-container .p04-unit_01 {
  box-sizing: border-box;
  width: 550px;
  height: 365px;
  padding: 35px 28.5px 27px;
  background-color: #fff;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #program04 .p04-container .p04-unit_01 {
    max-width: 340px;
    height: auto;
    width: auto;
    padding: 15px 18px;
  }
}
#program04 .p04-container .p04-unit_01 .unit-head {
  position: absolute;
  left: 50%;
  top: -14px;
  width: 315px;
  height: 38px;
  font-size: 28px;
  color: #fff;
  font-family: "Hiragino Sans", system-ui, "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #A65D50;
  transform: skewX(-19.2deg) translateX(-50%);
}
@media only screen and (max-width: 767px) {
  #program04 .p04-container .p04-unit_01 .unit-head {
    font-size: 20px;
    width: 225px;
    height: 27.5px;
  }
}
#program04 .p04-container .p04-unit_01 .unit-head span {
  transform: skewX(19.2deg);
}
#program04 .p04-container .p04-unit_01 .unit-txt_01 {
  text-align: center;
  margin-right: 23px;
  font-size: 35px;
  line-height: 50px;
  font-family: "Noto Serif JP", serif;
  color: #A65D50;
  font-weight: 900;
}
@media only screen and (max-width: 767px) {
  #program04 .p04-container .p04-unit_01 .unit-txt_01 {
    font-size: 23px;
    line-height: 35px;
    margin-right: 0;
  }
}
#program04 .p04-container .p04-unit_01 .unit-txt_01 span {
  font-size: 48px;
}
@media only screen and (max-width: 767px) {
  #program04 .p04-container .p04-unit_01 .unit-txt_01 span {
    font-size: 33px;
  }
}
#program04 .p04-container .p04-unit_01 .unit-txt_02 {
  margin-top: 5px;
  text-align: right;
  font-size: 33px;
  line-height: 44px;
  font-family: "Hiragino Sans", system-ui, "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  margin-right: 53px;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  #program04 .p04-container .p04-unit_01 .unit-txt_02 {
    font-size: 23px;
    line-height: 19px;
    margin-right: 1em;
  }
}
#program04 .p04-container .p04-unit_01 .unit-txt_02 span {
  font-size: 20px;
}
@media only screen and (max-width: 767px) {
  #program04 .p04-container .p04-unit_01 .unit-txt_02 span {
    font-size: 14px;
  }
}
#program04 .p04-container .p04-unit_01 .unit-list {
  margin-left: auto;
  margin-right: auto;
  width: auto;
  margin-bottom: 5px;
  margin-top: 20px;
  padding: 20px;
  border-bottom: 1px solid #B2B2B2;
  border-top: 1px solid #B2B2B2;
  list-style: none;
}
@media print, screen and (min-width: 768px) {
  #program04 .p04-container .p04-unit_01 .unit-list {
    display: grid;
    /* 3行にする（高さは auto もしくは 1fr） */
    grid-template-rows: repeat(3, auto);
    grid-auto-flow: column;
    /* 列ごとの幅を指定したい場合 */
    grid-auto-columns: auto;
    gap: 10px 40px;
  }
}
@media only screen and (max-width: 767px) {
  #program04 .p04-container .p04-unit_01 .unit-list {
    padding: 10px;
    margin-top: 15px;
  }
}
#program04 .p04-container .p04-unit_01 .unit-list li {
  display: flex;
  font-size: 20px;
  font-family: "Hiragino Sans", system-ui, "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  align-items: center;
  line-height: 1.3;
}
@media only screen and (max-width: 767px) {
  #program04 .p04-container .p04-unit_01 .unit-list li {
    font-size: 16px;
  }
}
#program04 .p04-container .p04-unit_01 .unit-txt_03 {
  font-size: 14px;
  margin-left: 20px;
  margin-top: 10px;
  font-family: "Hiragino Sans", system-ui, "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}

#program05 {
  padding: 74px 0 100px;
  background-color: #E3E3E3;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #program05 {
    padding: 29px 0 30px;
  }
}
#program05 .p05-inner {
  width: 100%;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #program05 .p05-inner {
    width: auto;
  }
}
#program05 .p05-img {
  position: absolute;
  width: 335px;
  left: 125px;
  bottom: -100px;
}
@media only screen and (max-width: 767px) {
  #program05 .p05-img {
    width: 160px;
    left: -45px;
    bottom: -30px;
  }
}
#program05 .p05-container {
  width: 327px;
  position: relative;
  margin-right: 150px;
  margin-left: auto;
}
@media only screen and (max-width: 767px) {
  #program05 .p05-container {
    width: 266px;
    margin-left: auto;
    margin-right: auto;
    transform: translateX(20px);
  }
}
#program05 .p05-container .p05-txt_01 {
  font-family: "Hiragino Sans", system-ui, "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  font-size: 28px;
  margin-bottom: 43px;
  text-align: right;
}
@media only screen and (max-width: 767px) {
  #program05 .p05-container .p05-txt_01 {
    text-align: left;
    margin-bottom: 30px;
    font-size: 18px;
  }
}
@media only screen and (max-width: 767px) {
  #program05 .p05-container .p05-list {
    margin-left: auto;
    width: fit-content;
  }
}
#program05 .p05-container .p05-list li {
  display: flex;
  font-size: 20px;
  font-family: "Hiragino Sans", system-ui, "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  align-items: center;
  margin-bottom: 10px;
}
@media only screen and (max-width: 767px) {
  #program05 .p05-container .p05-list li {
    font-size: 16px;
    margin-bottom: 5px;
    line-height: 1.3;
  }
}
#program05 .p05-container .p05-list li::before {
  content: "";
  width: 19.5px;
  height: 15px;
  background: url("/shop/kahoku/img/check-violet.svg") no-repeat center/contain;
  color: #785DC8;
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  #program05 .p05-container .p05-list li::before {
    font-size: 17px;
    height: 13px;
  }
}
#program05 .p05-txt_02 {
  font-size: 35px;
  font-family: "Hiragino Sans", system-ui, "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  position: absolute;
  text-align: center;
  left: 50%;
  transform: translate(-50%);
  bottom: -110px;
  z-index: 2;
}
@media only screen and (max-width: 767px) {
  #program05 .p05-txt_02 {
    font-size: 22px;
    bottom: -50px;
    white-space: nowrap;
  }
}
#program05 .p05-tri {
  width: 100%;
  max-width: 1260px;
  position: absolute;
  bottom: -190px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}
@media only screen and (max-width: 767px) {
  #program05 .p05-tri {
    width: 105%;
    bottom: -95px;
  }
}

#program06 {
  height: 647px;
  background: url("/shop/kahoku/img/program06_bg.jpg") no-repeat top/contain;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #program06 {
    height: 560px;
    background: url("/shop/kahoku/img/program06_bg_sp.jpg") no-repeat top/cover;
  }
}
#program06 .p06-inner {
  width: 100%;
  position: relative;
  height: 647px;
}
@media only screen and (max-width: 767px) {
  #program06 .p06-inner {
    height: 560px;
    max-width: 355px;
    margin-left: auto;
    margin-right: auto;
  }
}
#program06 .p06-txt {
  position: absolute;
  width: 294px;
  left: -20px;
  top: 115px;
}
@media only screen and (max-width: 767px) {
  #program06 .p06-txt {
    width: 190px;
    top: 110px;
    left: 0px;
  }
}
#program06 .p06-unit {
  width: 234px;
  height: 234px;
  background: no-repeat center/contain;
  font-size: 23px;
  font-family: "Hiragino Sans", system-ui, "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}
@media only screen and (max-width: 767px) {
  #program06 .p06-unit {
    font-size: 16px;
    width: 156px;
    height: 156px;
  }
}
#program06 .unit_01 {
  background-image: url("/shop/kahoku/img/program06-unit-bg_02.png");
}
@media print, screen and (min-width: 768px) {
  #program06 .unit_01 {
    top: 170px;
    left: 234px;
  }
}
@media only screen and (max-width: 767px) {
  #program06 .unit_01 {
    top: 69px;
    right: 0;
  }
}
#program06 .unit_02 {
  background-image: url("/shop/kahoku/img/program06-unit-bg_01.png");
}
@media print, screen and (min-width: 768px) {
  #program06 .unit_02 {
    top: 213px;
    left: 0px;
  }
}
@media only screen and (max-width: 767px) {
  #program06 .unit_02 {
    top: 142px;
    left: 80px;
  }
}
#program06 .unit_03 {
  background-image: url("/shop/kahoku/img/program06-unit-bg_04.png");
  padding-top: 20px;
}
@media print, screen and (min-width: 768px) {
  #program06 .unit_03 {
    bottom: 70px;
    left: 400px;
  }
}
@media only screen and (max-width: 767px) {
  #program06 .unit_03 {
    bottom: 132px;
    left: 0;
  }
}
#program06 .unit_04 {
  background-image: url("/shop/kahoku/img/program06-unit-bg_03.png");
}
@media print, screen and (min-width: 768px) {
  #program06 .unit_04 {
    bottom: 21px;
    left: 163px;
  }
}
@media only screen and (max-width: 767px) {
  #program06 .unit_04 {
    left: 100px;
    bottom: 38px;
  }
}

#program07 {
  height: 455px;
  background: url("/shop/kahoku/img/program07_bg.jpg") no-repeat top/contain;
  max-width: 1260px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
@media only screen and (max-width: 767px) {
  #program07 {
    height: 323px;
    background: url("/shop/kahoku/img/program07_bg_sp.jpg") no-repeat top/cover;
  }
}
#program07 .p07-inner {
  width: 100%;
  position: relative;
  height: 455px;
}
@media only screen and (max-width: 767px) {
  #program07 .p07-inner {
    height: 323px;
  }
}
#program07 .p07-container {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media print, screen and (min-width: 768px) {
  #program07 .p07-container {
    position: absolute;
    right: 0;
    top: 40px;
  }
}
@media only screen and (max-width: 767px) {
  #program07 .p07-container {
    margin-top: -10px;
  }
}
#program07 .check_svg {
  width: 195px;
}
@media only screen and (max-width: 767px) {
  #program07 .check_svg {
    width: 107px;
    margin-top: -10px;
  }
}
#program07 .p07-txt {
  font-family: "Noto Serif JP", serif;
  font-size: 39px;
  font-weight: 900;
  margin-top: 0px;
  line-height: 1;
}
@media only screen and (max-width: 767px) {
  #program07 .p07-txt {
    font-size: 23px;
    margin-top: -5px;
  }
}
#program07 .p07-txt span {
  font-size: 56px;
}
@media only screen and (max-width: 767px) {
  #program07 .p07-txt span {
    font-size: 33px;
  }
}
#program07 .button-row {
  margin-top: 30px;
}
@media only screen and (max-width: 767px) {
  #program07 .button-row {
    margin-top: 0;
  }
}
#program07 .button-row .button-txt {
  margin-bottom: 12px;
  font-size: 32px;
  text-align: center;
  font-family: "Hiragino Sans", system-ui, "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
@media only screen and (max-width: 767px) {
  #program07 .button-row .button-txt {
    font-size: 21px;
    margin-bottom: 4px;
    margin-top: 4px;
  }
}
#program07 .button-row .trial-link_button {
  width: 462px;
  height: 86px;
  background-color: #1B263B;
  display: flex;
  align-items: center;
  margin-left: auto;
  margin-right: auto;
  text-decoration: none;
  border-radius: 43px;
  justify-content: center;
}
@media only screen and (max-width: 767px) {
  #program07 .button-row .trial-link_button {
    width: 302px;
    height: 55px;
  }
}
#program07 .button-row .trial-link_button span {
  font-size: 26px;
  color: #fff;
  /*      margin-left: 52px;*/
  font-family: "Hiragino Sans", system-ui, "Hiragino Kaku Gothic ProN", Meiryo, "sans-serif";
}
@media only screen and (max-width: 767px) {
  #program07 .button-row .trial-link_button span {
    font-size: 18px;
  }
}


.intro-content-first span {
  white-space: nowrap;
}


#program04 .p04-container .p04-banner {
  max-width: 410px;
}

/*# sourceMappingURL=page_shop_kahoku.css.map */
