html, body, h1, h2, h3, h4, h5, h6, a, p, span, em, small, strong, sub, sup, mark, del, ins, strike, abbr, dfn, blockquote, q, cite, code, pre, ol, ul, li, dl, dt, dd, div, section, article, main, aside, nav, header, hgroup, footer, img, figure, figcaption, address, time, audio, video, canvas, iframe, details, summary, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
  padding: 0;
  margin: 0;
  border: 0
}

html {
  font-size: 62.5%
}

body {
  padding-top: 0!important;
  line-height: 1.4;
  font-size: 1.6rem;
  overflow-x: hidden;
}

* {
  box-sizing: border-box;
  line-height: inherit;
  font-family: inherit;
  font-size: inherit
}

a, a:visited {
  text-decoration: inherit
}

article, aside, footer, header, nav, section, main {
  display: block
}

*::before, *::after {
  box-sizing: inherit
}

table {
  border-spacing: 0;
  border-collapse: collapse
}

ol, ul {
  list-style: none
}

img, video {
  max-width: 100%
}

img {
  border-style: none
}

blockquote, q {
  quotes: none
}

blockquote::after, blockquote::before, q::after, q::before {
  content: "";
  content: none
}

[hidden] {
  display: none !important
}

[disabled] {
  cursor: not-allowed
}

:focus:not(:focus-visible) {
  outline: none
}

.sr-only {
  position: absolute;
  top: -9999px;
  left: -9999px;
  clip: rect(1px, 1px, 1px, 1px)
}

button {
  appearance: none;
  padding: 0;
  border: none;
  background-color: rgba(0, 0, 0, 0);
  cursor: pointer;
  outline: none
}

:root {
  --main: #5D3123;
  --black: #454545;
  --gray: #E4E9E3;
  --bg: #F3EFEA;
  --1: #5D3123;
  --2: #C3AF98
}

html {
  color: var(--black);
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", "メイリオ", Meiryo, "ＭＳ ゴシック", sans-serif;
  font-size: 62.5%;
  scroll-behavior: smooth
}

a {
  transition: opacity .3s
}

a:hover {
  opacity: .5
}

.sp {
  display: none
}

.sp.inline {
  display: none
}

.pc {
  display: block
}

.pc.inline {
  display: inline
}

@media screen and (max-width: 1080px) {
  .sp {
    display: block
  }

  .sp.inline {
    display: inline
  }

  .pc {
    display: none
  }

  .pc.inline {
    display: none
  }
}

.target.enter {
  animation: frame .5s ease-in-out forwards
}

@keyframes frame {
  0% {
    opacity: 0;
    transform: translateX(-10%)
  }

  100% {
    opacity: 1;
    transform: translateX(0%)
  }
}

.wait {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(-45deg, #d6d7ec, #e9edf6);
  z-index: 100;
  transition: .5s
}

.wait-logo {
  width: 65%;
  max-width: 280px;
  height: 56px;
  animation: topAnimation infinite ease 2s
}

.wait.off {
  opacity: 0;
  transform: translateX(-100%);
  animation: topLeave ease .8s
}

@keyframes topAnimation {
  0% {
    opacity: .8;
    transform: scale(1)
  }

  50% {
    opacity: 1;
    transform: scale(1.05)
  }

  100% {
    opacity: .8;
    transform: scale(1)
  }
}

@keyframes topLeave {
  0% {
    opacity: 1;
    transform: translateX(0)
  }

  99% {
    opacity: 0;
    transform: translateX(0)
  }

  100% {
    transform: translateX(-100%)
  }
}

.ui-circle-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  margin-top: -30px;
  margin-left: -30px
}

.ui-circle-loading.animate {
  width: 60px;
  height: 60px;
  padding: 0;
  margin: 0
}

.ui-circle-loading.animate li {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 5px;
  height: 5px;
  padding: 0;
  margin: auto;
  border-radius: 50%;
  list-style: none;
  animation-name: loading-item;
  animation-duration: 6s;
  animation-iteration-count: infinite
}

.ui-circle-loading.animate li:nth-child(0) {
  animation-delay: 0s
}

.ui-circle-loading.animate li:nth-child(1) {
  animation-delay: .1s
}

.ui-circle-loading.animate li:nth-child(2) {
  animation-delay: .2s
}

.ui-circle-loading.animate li:nth-child(3) {
  animation-delay: .3s
}

.ui-circle-loading.animate li:nth-child(4) {
  animation-delay: .4s
}

.ui-circle-loading.animate li:nth-child(5) {
  animation-delay: .5s
}

.ui-circle-loading.animate li:nth-child(6) {
  animation-delay: .6s
}

.ui-circle-loading.animate li:nth-child(7) {
  animation-delay: .7s
}

@keyframes loading-item {
  0% {
    background-color: hsla(0, 0%, 100%, 0);
    transform: rotate(0) translateX(-100px) translateY(30px);
    animation-timing-function: linear
  }

  5% {
    background-color: #fff;
    transform: rotate(0deg) translateX(0) translateY(30px);
    animation-timing-function: cubic-bezier(0.1, 0.5, 0.9, 0.5)
  }

  30% {
    background-color: #fff;
    transform: rotate(-360deg) translateX(0) translateY(30px);
    animation-timing-function: cubic-bezier(0.1, 0.5, 0.9, 0.5)
  }

  55% {
    background-color: #fff;
    transform: rotate(-720deg) translateX(0) translateY(30px);
    animation-timing-function: cubic-bezier(0.1, 0.5, 0.9, 0.5)
  }

  80% {
    background-color: #fff;
    transform: rotate(-1080deg) translateX(0) translateY(30px);
    animation-timing-function: linear
  }

  85% {
    background-color: hsla(0, 0%, 100%, 0);
    transform: rotate(-1080deg) translateX(100px) translateY(30px);
    animation-timing-function: linear
  }

  100% {
    background-color: hsla(0, 0%, 100%, 0);
    transform: rotate(0) translateX(-100px) translateY(30px);
    animation-timing-function: linear
  }
}

.inner-main {
  width: 1080px;
  margin: 0 auto
}

@media screen and (max-width: 1080px) {
  .inner-main {
    width: auto;
    padding: 0 20px
  }
}

.nav-toggle {
  display: none
}

.nav-toggle {
  position: fixed;
  top: 72px;
  width: 100%;
  height: 100vh;
  z-index: 1000;
  background-color: var(--main);
  display: block;
  opacity: 0;
  transform: translateX(100%);
  transition: all .3s;
  text-align: center
}

.nav-toggle.active {
  opacity: 1;
  transform: translateX(0)
}

.nav-toggle-list {
  display: flex;
  flex-direction: column;
  grid-row-gap: 24px;
  padding: 40px 20px
}

.nav-toggle-item {
  font-size: 22px
}

.nav-toggle-item>a {
  color: #fff
}

@media screen and (max-width: 1200px) {
  .nav-toggle {
    top: 62px
  }

  .nav-toggle-item {
    font-size: 18px
  }
}

.not-found {
  background-color: #fff;
  padding: 64px 0
}

.not-found-inner {
  margin: 0 auto;
  width: 1080px;
  text-align: center
}

.not-found p {
  padding-bottom: 16px
}

.not-found a {
  color: var(--main);
  cursor: pointer
}

a {
  cursor: pointer
}

html {
  overflow-x: hidden
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover
}

.header {
  position: fixed;
  top: 0;
  width: 100%;
  height: 100px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  background-color: #fff;
  z-index: 100
}

.header-title {
  font-size: 0;
  background-image: url(../lp/tamai/logo.png);
  background-size: contain;
  background-repeat: no-repeat;
  width: 283px;
  height: 80px;
  flex-shrink: 0
}

.header-sub {
  display: flex;
  align-items: center;
  grid-column-gap: 80px
}

.header-phone {
  display: flex;
  align-items: flex-start;
  grid-column-gap: 8px
}

.header-phone-icon {
  width: 32px;
  height: 32px
}

.header-phone-link {
  font-family: "Open Sans", sans-serif;
  color: #333;
  font-size: 32px;
  line-height: 100%;
  font-weight: 700
}

.header-phone-text {
  color: #333;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%
}

.header-button {
  display: flex;
  grid-column-gap: 12px
}

.header-button-first {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 56px;
  width: 150px;
  height: 56px;
  border-radius: 8px;
  background: #e6003a
}

.header-button-second {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 56px;
  width: 150px;
  height: 56px;
  border-radius: 8px;
  background: #f29100
}

@media screen and (max-width: 1200px) {
  .header {
    padding: 0 20px;
    height: 60px
  }

  .header-title {
    width: 110px;
    height: 40px
  }

  .header-phone-icon {
    width: 24px;
    height: 24px
  }

  .header-phone-link {
    font-size: 24px
  }

  .header-phone-text {
    font-size: 10px
  }

  .header-button {
    display: none
  }
}

.hero {
  background: #f8f7f6;
  height: 910px
}

.hero::before {
  content: "";
  width: 255px;
  height: 215px;
  background-image: url(../lp/tamai/hero_bg_1.svg);
}

@media screen and (max-width: 1920px) {
  .hero {
    height: 47.3958333333vw
  }
}

.hero-inner {
  position: relative;
  max-width: 1440px;
  height: 100%;
  margin: 0 auto
}

.hero-inner::before {
  content: "";
  position: absolute;
  top: 148px;
  left: 32px;
  width: 255px;
  height: 215px;
  flex-shrink: 0;
  background-image: url(../lp/tamai/hero_bg_1.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0
}

@media screen and (max-width: 1920px) {
  .hero-inner::before {
    width: 13.28125vw;
    height: 11.1979166667vw;
    top: 3.75vw;
    left: 1.6666666667vw
  }
}

.hero-inner::after {
  content: "";
  position: absolute;
  top: 80px;
  right: 120px;
  width: 214px;
  height: 60px;
  flex-shrink: 0;
  background-image: url(../lp/tamai/hero_bg_2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  z-index: 0
}

@media screen and (max-width: 1920px) {
  .hero-inner::after {
    width: 11.1458333333vw;
    height: 3.125vw;
    top: 2.0833333333vw;
    right: 6.25vw
  }
}

.hero-main-img {
  display: flex;
  position: absolute;
  left: -12.5%;
  bottom: 0;
  width: 63.6979166667%;
  height: auto
}

.hero-main-img::after {
  position: absolute;
  content: "";
  width: 30%;
  height: 100%;
  display: block;
  top: 0;
  right: 0;
  background-image: linear-gradient(90deg, rgba(248, 247, 246, 0), rgb(248, 247, 246) 100%)
}

.hero-body {
  position: absolute;
  top: 50%;
  right: 12.5%;
  transform: translateY(-50%)
}

.hero-body::after {
  content: "";
  position: absolute;
  top: -148px;
  left: 0;
  display: block;
  width: 163px;
  height: 305px;
  background: url(../lp/tamai/hero_icon_1.png);
  background-size: contain
}

.hero-body::before {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  bottom: -270px;
  width: 197px;
  height: 309px;
  background: url(../lp/tamai/hero_icon_2.png);
  background-size: contain
}

.hero-text-img {
  width: 528px;
  height: 100px;
  margin: 0 auto 24px
}

.hero-text-first {
  color: #333;
  text-align: center;
  font-size: 36px;
  font-weight: 900;
  line-height: 150%
}

.hero-text-first span {
  font-size: 56px
}

.hero-text-second {
  color: #e56913;
  text-align: center;
  font-size: 80px;
  font-style: normal;
  font-weight: 900;
  line-height: 150%
}

.hero-text-second span {
  font-size: 48px
}

.hero-text-third {
  color: #333;
  text-align: center;
  font-size: 40px;
  font-style: normal;
  font-weight: 900;
  line-height: 150%;
  letter-spacing: 4px
}

.hero-side {
  position: absolute;
  bottom: 64px;
  right: 16.3020833333%
}

@media screen and (max-width: 1520px) {
  .hero-side {
    bottom: 32px;
    right: 8.3333333333%
  }
}

.hero-side-body {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 162px;
  height: 162px;
  flex-shrink: 0;
  background-color: #fdcd2e;
  border: 1px solid #333;
  border-radius: 9in;
  text-align: center;
  z-index: 1
}

.hero-side-text {
  font-family: "Noto Sans JP";
  font-size: 28px;
  font-style: normal;
  font-weight: 700;
  line-height: 120%;
  letter-spacing: 1.4px;
  margin-top: -10px
}

.hero-side-text span {
  font-size: 20px
}

.hero-side-img {
  position: absolute;
  width: 232px;
  height: 337px;
  flex-shrink: 0;
  top: -111px;
  z-index: 0;
  right: -158px
}

@media screen and (max-width: 1200px) {
  .hero {
    height: auto
  }

  .hero-inner {
    display: flex;
    flex-direction: column-reverse;
    align-items: center;
    width: 100%
  }

  .hero-inner::before {
    content: none
  }

  .hero-inner::after {
    content: none
  }

  .hero-main-img {
    position: relative;
    width: 537px;
    height: 358px;
    left: -10px
  }

  .hero-body {
    position: relative;
    top: inherit;
    left: inherit;
    transform: inherit;
    padding-top: 20px;
    margin: 0 auto 8px;
    right: inherit
  }

  .hero-body::after {
    top: 10px;
    width: 50px;
    height: 94px
  }

  .hero-body::before {
    width: 107px;
    height: 168px;
    left: -56px;
    bottom: inherit;
    top: 392px
  }

  .hero-text-img {
    width: 54.9333333333vw;
    height: 10.6666666667vw
  }

  .hero-text-first {
    font-size: 16px
  }

  .hero-text-first span {
    font-size: 18px
  }

  .hero-text-second {
    font-size: 35px
  }

  .hero-text-second span {
    font-size: 24px
  }

  .hero-text-third {
    font-size: 18px
  }

  .hero-side {
    right: 50px
  }

  .hero-side-body {
    width: 90px;
    height: 90px
  }

  .hero-side-text {
    font-size: 16px
  }

  .hero-side-text span {
    font-size: 11px
  }

  .hero-side-img {
    width: 130px;
    height: 193px;
    flex-shrink: 0;
    top: -70px;
    right: -90px;
    z-index: 1
  }
}

.target {
  position: relative;
  height: 738px;
  background: #f4fcfc;
  z-index: 1
}

@media screen and (max-width: 1920px) {
  .target {
    height: 38.4375vw
  }
}

.target::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 1360px;
  height: 364px;
  transform: translateX(-50%);
  background-image: url(../lp/tamai/target_bg_pc.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center
}

.target-inner {
  position: relative;
  display: flex;
  align-items: center;
  max-width: 1080px;
  height: 100%;
  margin: 0 auto
}

.target-title {
  color: #333;
  font-size: 72px;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 3.6px
}

.target-desc {
  color: #333;
  font-size: 32px;
  font-weight: 700;
  line-height: 200%;
  letter-spacing: 1.6px
}

.target-img {
  position: absolute;
  width: 1180px;
  right: 188px;
  bottom: 0
}

@media screen and (max-width: 1920px) {
  .target-img {
    width: 61.4583333333vw;
    right: 4.8958333333vw
  }
}

@media screen and (max-width: 1200px) {
  .target {
    height: auto;
    padding-top: 106px
  }

  .target::after {
    width: 100%;
    background-image: url(../lp/tamai/target_bg_sp.png)
  }

  .target-inner {
    width: 100%;
    height: auto;
    align-items: center;
    justify-content: center
  }

  .target-title {
    font-size: 40px;
    text-align: center
  }

  .target-desc {
    font-size: 20px;
    text-align: center
  }

  .target-img {
    position: relative;
    bottom: inherit;
    margin: 40px auto 0;
    width: 100%;
    right: 0
  }
}

.resolve-inner {
  position: relative;
  width: 1080px;
  margin: 0 auto 80px
}

.resolve-inner::after {
  content: "";
  position: absolute;
  width: 146px;
  height: 41px;
  background-image: url(../lp/tamai/hero_bg_2.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 40px;
  right: 16px
}

.resolve-title {
  padding-top: 80px;
  margin-bottom: 40px
}

.resolve-title-sub {
  color: #e56913;
  font-family: "Micro 5";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%
}

.resolve-title-main {
  color: #333;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.6px
}

.resolve-title-main span {
  color: #333;
  font-size: 56px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 2.8px
}

.resolve-body {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  grid-column-gap: 40px
}

.resolve-item:first-of-type .resolve-img {
  position: relative
}

.resolve-item:first-of-type .resolve-img::after {
  content: "";
  position: absolute;
  width: 117px;
  height: 99px;
  background-image: url("../lp/tamai/hero_bg_1.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: 30px;
  left: -54px
}

.resolve-item:last-of-type .resolve-img {
  position: relative
}

.resolve-item:last-of-type .resolve-img::after {
  content: "";
  position: absolute;
  width: 57px;
  height: 105px;
  flex-shrink: 0;
  background-image: url("../lp/tamai/resolve_icon_1.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  bottom: -1px;
  right: -1px
}

.resolve-img {
  width: 100%;
  aspect-ratio: 520/297;
  margin-bottom: 20px
}

.resolve-text {
  color: #333;
  font-size: 18px;
  font-weight: 400;
  line-height: 180%;
  letter-spacing: .9px
}

.resolve-text span {
  color: #e56913
}

@media screen and (max-width: 1200px) {
  .resolve-inner {
    width: 100%;
    margin-bottom: 40px
  }

  .resolve-title {
    padding: 80px 20px 0;
    margin-bottom: 20px
  }

  .resolve-title-sub {
    font-size: 36px;
    margin-bottom: 8px
  }

  .resolve-title-main {
    font-size: 24px
  }

  .resolve-body {
    grid-template-columns: 1fr;
    grid-row-gap: 30px
  }

  .resolve-img {
    margin-left: 30px;
    width: calc(100% - 30px);
    border-radius: 10px 0px 0px 10px
  }

  .resolve-item:first-of-type .resolve-img::after {
    width: 83px;
    height: 70px;
    flex-shrink: 0
  }

  .resolve-item:last-of-type .resolve-img::after {
    width: 28px;
    height: 52px;
    bottom: -1px;
    right: -1px
  }

  .resolve-text {
    padding: 0 30px;
    font-size: 16px
  }
}

.about {
  position: relative;
  background-image: url(../lp/tamai/about_bg.svg);
  background-repeat: repeat;
  z-index: 1
}

.about::before {
  content: "";
  position: absolute;
  top: -65px;
  right: 420px;
  background-image: url(../lp/tamai/about_logo.png);
  background-size: contain;
  width: 121px;
  height: 121px;
  flex-shrink: 0
}

@media screen and (max-width: 1920px) {
  .about::before {
    right: 15.5729166667vw
  }
}

.about-inner {
  padding-top: 60px;
  width: 920px;
  margin: 0 auto;
  padding-bottom: 80px;
  pointer-events: none;
}

.about-title {
  color: #333;
  text-align: center;
  font-size: 56px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 2.8px;
  margin-bottom: 40px
}

.about-title span {
  font-size: 32px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 1.6px
}

.about-movie {
  position: relative;
  width: 100%;
  aspect-ratio: 920/526;
  background-color: #fefefe;
  border-radius: 8px;
  margin-bottom: 20px;
  z-index: 0;
}
.about-movie iframe, .about-movie video{
  border-radius: 8px;
  width: 100%;
  height: auto;
  aspect-ratio: 920/526;
  pointer-events: all;
}

.about-box {
  position: relative;
  grid-column-gap: 16px;
  padding: 16px 40px;
  background-color: #fff;
  border-radius: 8px;
  border: 1px solid #333;
  background: #fff
}

.about-box::before {
  content: "";
  position: absolute;
  width: 116px;
  height: 116px;
  flex-shrink: 0;
  background-image: url(../lp/tamai/about_box_bg.svg);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: -100px;
  left: -80px;
  z-index: -1
}

.about-box::after {
  width: 5px;
  height: 5px;
  border-radius: 9in;
  position: absolute;
  top: 8px;
  left: 8px;
  background-color: #e56913;
  content: "";
  box-shadow: 898px 0px 0 0 #e56913, 0px 174px 0 0 #e56913, 898px 174px 0 0 #e56913
}

.about-flex {
  display: grid;
  grid-column-gap: 16px;
  width: 100%;
  grid-template-columns: 100px 1fr
}

.about-img {
  width: 100px;
  height: 100px;
  border-radius: 9in
}

.about-main-name {
  color: #333;
  font-size: 18px;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: .9px;
  margin-bottom: 8px
}

.about-main-desc {
  color: #333;
  font-size: 14px;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: .7px
}

.about-logo {
  width: 40px;
  height: 45px;
  flex-shrink: 0
}

@media screen and (max-width: 1200px) {
  .about::before {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    right: 20px;
    top: -25% px
  }

  .about-inner {
    width: 100%;
    padding: 30px 15px 40px
  }

  .about-title {
    font-size: 40px;
    margin-bottom: 27px;
    text-align: left
  }

  .about-title span {
    font-size: 24px
  }

  .about-movie {
    margin-bottom: 20px
  }

  .about-box {
    padding: 10px
  }

  .about-box::before {
    width: 58px;
    height: 58px
  }

  .about-box::after {
    top: 8px;
    left: 8px;
    box-shadow: inherit
  }

  .about-flex {
    position: relative
  }

  .about-flex::after {
    width: 5px;
    height: 5px;
    border-radius: 9in;
    position: absolute;
    top: -2px;
    right: -2px;
    background-color: #e56913;
    content: ""
  }

  .about-flex::before {
    width: 5px;
    height: 5px;
    border-radius: 9in;
    position: absolute;
    bottom: -2px;
    right: -2px;
    background-color: #e56913;
    content: ""
  }

  .about-logo {
    width: 40px;
    height: 45px;
    position: absolute;
    bottom: 18px;
    left: 18px
  }

  .about-logo::before {
    width: 5px;
    height: 5px;
    border-radius: 9in;
    position: absolute;
    bottom: -10px;
    left: -10px;
    background-color: #e56913;
    content: ""
  }
}

.class {
  margin-bottom: 80px
}

.class-title {
  padding-top: 80px;
  margin-bottom: 40px;
  width: 1080px;
  margin: 0 auto 40px
}

.class-title-sub {
  color: #e56913;
  font-family: "Micro 5";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%
}

.class-title-main {
  color: #333;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.6px
}

.class-title-main span {
  color: #333;
  font-size: 56px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 2.8px
}

.class-list {
  display: flex;
  flex-wrap: wrap;
  grid-column-gap: 8px;
  grid-row-gap: 8px;
  width: 1080px;
  margin: 0 auto 40px
}

.class-item {
  background: #f29100;
  border-radius: 9in;
  padding: 4px 20px 6px;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%
}

.class-item button {
  color: #fff
}

.class-box {
  display: none;
  opacity: 0;
  transform: translateY(20px);
  transition-property: display, opacity, height, padding-top;
  transition-behavior: allow-discrete;
  transition-duration: .3s
}

@starting-style {
  .class-box {
    transform: translateY(0);
    opacity: 0
  }
}

.class-box.active {
  display: block;
  opacity: 1;
  transform: translateY(0)
}

.class-box-item {
  width: fit-content;
  margin: 0 auto 80px
}

.class-box-img {
  width: 66.6666666667vw;
  aspect-ratio: 1280/720;
  margin: 0 25px;
  border-radius: 15px;
  overflow: hidden
}

.class-box-slick {
  margin-bottom: 80px
}

.class-slick {
  display: flex;
  margin-bottom: 80px
}

.class-slick-dots {
  display: flex;
  grid-column-gap: 8px;
  margin: 20px auto 0;
  width: fit-content
}

.class-slick-dots li {
  width: 14px;
  height: 14px;
  font-size: 0;
  border: 1px solid #252525;
  border-radius: 9in
}

.class-slick-dots li.slick-active {
  background-color: #252525
}

@media screen and (max-width: 1080px) {
  .class-slick-dots {
    margin-top: 10px
  }

  .class-slick-dots li {
    width: 8px;
    height: 8px;
    border-radius: 4px
  }
}

.class-link {
  margin: 0 auto;
  text-align: center
}

.class-name {
  display: flex;
  justify-content: center;
  grid-column-gap: 8px;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  text-decoration-line: underline;
  text-underline-position: from-font;
  margin-bottom: 20px
}

.class-name-icon {
  width: 24px;
  height: 24px;
  margin-top: 2px
}

.class-detail-item {
  display: grid;
  max-width: 520px;
  grid-template-columns: 62px 1fr;
  grid-column-gap: 20px;
  margin-bottom: 16px
}

.class-detail-item:last-of-type {
  margin-bottom: 0
}

.class-detail-title {
  padding: 0 10px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  line-height: 26px;
  border-radius: 5px;
  background: #f29100;
  text-align: center;
  height: 26px
}

.class-detail-text {
  align-self: center;
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 150%
}

.class-detail-map {
  color: #e56913;
  padding-left: 8px
}

.class-detail a {
  text-decoration: underline
}

.class-detail-type {
  color: #333;
  font-size: 16px;
  font-weight: 400;
  line-height: 200%;
  margin-top: -2px
}

.class-detail-type span {
  color: #e56913;
  font-weight: 700;
  width: 110px;
  display: inline-block
}

.class-bottom {
  position: relative;
  width: 920px;
  background: #f8f7f6;
  border-radius: 8px;
  border: 1px solid #333;
  margin: 0 auto;
  padding: 30px 0 20px
}

.class-bottom::before {
  content: "";
  background-image: url(../lp/tamai/class_bottom_main.png);
  width: 100%;
  height: 334px;
  position: absolute;
  left: 0;
  bottom: 0;
  background-size: contain;
  background-repeat: no-repeat;
  z-index: 0
}

.class-bottom::after {
  content: "";
  background-image: url("../lp/tamai/hero_bg_1.svg");
  width: 82px;
  height: 69px;
  flex-shrink: 0;
  background-size: contain;
  background-repeat: no-repeat;
  left: 20px;
  top: 20px;
  position: absolute
}

.class-bottom-main {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-left: 328px;
  margin-bottom: 20px;
  width: fit-content;
  z-index: 2
}

.class-bottom-main::after {
  content: "";
  background-image: url("../lp/tamai/hero_bg_2.svg");
  width: 95px;
  height: 27px;
  flex-shrink: 0;
  position: absolute;
  top: -8px;
  right: -55px;
  background-repeat: no-repeat;
  background-size: contain
}

.class-bottom-first {
  width: 232px;
  height: 44px
}

.class-bottom-first img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.class-bottom-second {
  color: #e56913;
  -webkit-text-stroke-width: 1;
  -webkit-text-stroke-color: #fff;
  font-family: "Noto Sans JP";
  font-size: 48px;
  font-style: normal;
  font-weight: 900;
  line-height: 150%
}

.class-bottom-third {
  color: #333;
  text-align: center;
  font-size: 24px;
  font-weight: 700;
  line-height: 150%
}

.class-bottom-logo {
  position: absolute;
  width: 40px;
  height: 40px;
  right: 50px;
  bottom: 0
}

.class-bottom-button {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  grid-column-gap: 12px;
  z-index: 1
}

.class-bottom-button::after {
  content: "";
  position: absolute;
  display: block;
  width: 93px;
  height: 183px;
  bottom: -20px;
  left: 43px;
  background-image: url(../lp/tamai/class_bottom_icon_1.png);
  background-repeat: no-repeat;
  background-size: contain
}

.class-bottom-button::before {
  content: "";
  position: absolute;
  display: block;
  width: 124px;
  height: 160px;
  bottom: -20px;
  right: 0px;
  background-image: url(../lp/tamai/class_bottom_icon_2.png);
  background-repeat: no-repeat;
  background-size: contain
}

.class-bottom-button-first {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 56px;
  width: 240px;
  height: 56px;
  border-radius: 8px;
  background: #e6003a
}

.class-bottom-button-second {
  color: #fff;
  text-align: center;
  font-size: 16px;
  font-weight: 700;
  line-height: 56px;
  width: 240px;
  height: 56px;
  border-radius: 8px;
  background: #f29100
}

@media screen and (max-width: 1200px) {
  .class {
    margin-bottom: 48px
  }

  .class-title {
    width: 100%;
    padding: 40px 20px 0;
    margin-bottom: 20px
  }

  .class-title-sub {
    font-size: 36px;
    margin-bottom: 10px
  }

  .class-title-main {
    font-size: 24px
  }

  .class-list {
    width: 100%;
    padding: 0 20px
  }

  .class-item {
    font-size: 13px;
    padding: 4px 10px 6px
  }

  .class-bottom {
    width: 100%
  }

  .class-box-item {
    padding: 0 20px;
    margin-bottom: 40px
  }

  .class-box-img {
    width: 315px;
    height: 315px;
    margin: 0 10px;
    aspect-ratio: 1/1
  }

  .class-box-slick {
    margin-bottom: 20px
  }

  .class-name {
    justify-content: flex-start;
    font-size: 18px
  }

  .class-name-icon {
    width: 16px;
    height: 16px
  }

  .class-detail-item {
    grid-template-columns: 56px 1fr;
    grid-column-gap: 10px
  }

  .class-detail-title {
    font-size: 12px
  }

  .class-detail-text {
    font-size: 13px
  }

  .class-detail-type {
    font-size: 13px;
    margin-bottom: 12px
  }

  .class-detail-type span {
    display: block;
    line-height: 100%;
    display: block
  }

  .class-bottom {
    padding: 20px 10px 10px;
    margin: 0 auto;
    width: 350px;
    overflow: hidden
  }

  .class-bottom::before {
    width: 480px;
    aspect-ratio: 376/250;
    height: auto;
    flex-shrink: 0;
    bottom: -148px;
    left: -80px
  }

  .class-bottom::after {
    width: 51px;
    height: 43px;
    flex-shrink: 0;
    left: 10px;
    top: 14px
  }

  .class-bottom-main {
    margin-left: auto;
    margin-top: 30px;
    margin-bottom: 20px
  }

  .class-bottom-main::after {
    width: 53px;
    height: 15px;
    top: -34px;
    right: 60px
  }

  .class-bottom-first {
    width: 160px;
    height: 30px
  }

  .class-bottom-second {
    font-size: 24px
  }

  .class-bottom-third {
    font-size: 16px
  }

  .class-bottom-logo {
    width: 24px;
    height: 24px;
    right: 10px
  }

  .class-bottom-button::after {
    width: 36px;
    height: 71px;
    flex-shrink: 0;
    bottom: 130px;
    left: 96px
  }

  .class-bottom-button::before {
    width: 52px;
    height: 71px;
    flex-shrink: 0;
    bottom: 128px;
    right: -10px
  }

  .class-bottom-button-first {
    font-size: 16px;
    line-height: 56px;
    width: 100%;
    height: 56px
  }

  .class-bottom-button-second {
    font-size: 16px;
    line-height: 56px;
    width: 100%;
    height: 56px
  }
}

.feature {
  position: relative;
  background-image: url("../lp/tamai/about_bg.svg");
  background-repeat: repeat;
  z-index:0;
  padding-bottom: 80px
}

.feature-inner {
  width: 1080px;
  padding-top: 56px;
  margin: 0 auto 80px
}

.feature-inner::after {
  content: "";
  position: absolute;
  background-image: url(../lp/tamai/feature_icon_2.png);
  width: 60px;
  height: 111px;
  flex-shrink: 0;
  right: 506px;
  bottom: -51px;
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1
}

@media screen and (max-width: 1920px) {
  .feature-inner::after {
    right: 26.3541666667vw
  }
}

.feature-title {
  position: relative;
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 56px;
  font-style: normal;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 2.8px;
  margin-bottom: 30px
}

.feature-title span {
  font-size: 32px
}

.feature-title-sub {
  width: 360px;
  height: 72px;
  margin: 0 auto 40px
}

.feature-title::before {
  content: "";
  position: absolute;
  right: 0;
  width: 98px;
  height: 191px;
  flex-shrink: 0;
  background-image: url("../lp/tamai/feature_icon_1.png");
  background-size: contain;
  background-repeat: no-repeat;
  right: 124px;
  top: 16px
}

.feature-list {
  margin-bottom: 40px
}

.feature-item {
  position: relative;
  margin-bottom: 20px;
  border-radius: 10px;
  width: 100%;
  padding: 20px;
  background: #fff;
  border: 1px solid #333;
  display: grid;
  grid-template-columns: 360px 1fr;
  grid-column-gap: 20px;
  align-items: center
}

.feature-item:nth-child(1)::before {
  content: "";
  position: absolute;
  width: 98px;
  height: 83px;
  background-image: url("../lp/tamai/feature_img_sub_1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: -46px;
  left: -28px
}

.feature-item:nth-child(2)::before {
  content: "";
  position: absolute;
  width: 120px;
  height: 83px;
  background-image: url("../lp/tamai/feature_img_sub_2.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: -33px;
  right: -39px
}

.feature-item:nth-child(3)::before {
  content: "";
  position: absolute;
  width: 82px;
  height: 78px;
  background-image: url("../lp/tamai/feature_img_sub_3.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: -41px;
  left: 62px
}

.feature-item:nth-child(4)::before {
  content: "";
  position: absolute;
  width: 77px;
  height: 67px;
  background-image: url("../lp/tamai/feature_img_sub_4.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: -31px;
  right: 160px
}

.feature-item-img {
  width: 100%;
  aspect-ratio: 360/204
}

.feature-item-text {
  display: flex;
  justify-content: center;
  grid-column-gap: 10px;
  align-items: center;
  color: #e56913;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 900;
  line-height: 130%;
  letter-spacing: 1.2px;
  margin-bottom: 20px
}

.feature-item-text::before {
  content: "";
  width: 56px;
  height: 12px;
  background-image: url(../lp/tamai/feature_title.svg);
  background-size: contain;
  display: block;
  margin-top: 2px
}

.feature-item-text::after {
  content: "";
  width: 56px;
  height: 12px;
  background-image: url(../lp/tamai/feature_title.svg);
  background-size: contain;
  display: block;
  margin-top: 2px
}

.feature-item-desc {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: .8px
}

.feature-bottom-title {
  color: #333;
  text-align: center;
  font-family: "Noto Sans JP";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 1.2px;
  margin-bottom: 10px
}

.feature-bottom-title span {
  font-size: 32px;
  letter-spacing: 1.6px
}

.feature-bottom-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 520px;
  grid-column-gap: 20px;
  border-radius: 8px;
  background: #a587bd;
  padding: 20px 40px
}

.feature-bottom-inner::after {
  width: 5px;
  height: 5px;
  border-radius: 9in;
  position: absolute;
  top: 8px;
  left: 8px;
  background-color: #fff;
  content: "";
  box-shadow: 1058px 0px 0 0 #fff, 0px 315px 0 0 #fff, 1058px 315px 0 0 #fff
}

.feature-bottom-main {
  width: 100%
}

.feature-bottom-logo {
  width: 100%;
  height: 130px;
  margin-bottom: 20px
}

.feature-bottom-logo img {
  height: 100%;
  object-fit: contain
}

.feature-bottom-desc {
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: .8px
}

.feature-bottom-movie {
  aspect-ratio: 520/292
}

.feature-bottom-movie iframe {
  width: 100%;
  height: 100%;
}

@media screen and (max-width: 1200px) {
  .feature {
    padding-bottom: 40px
  }

  .feature-inner {
    width: 100%;
    padding: 40px 20px 0;
    margin-bottom: 0
  }

  .feature-inner::after {
    width: 12vw;
    height: 22.1333333333vw;
    bottom: -2.9333333333vw;
    right: 28.2666666667vw
  }

  .feature-title {
    font-size: 40px;
    margin-bottom: 20px;
    text-align: left
  }

  .feature-title span {
    font-size: 24px
  }

  .feature-title-sub {
    width: 63.7333333333vw;
    height: 12.8vw
  }

  .feature-title::before {
    width: 16.2666666667vw;
    height: 31.7333333333vw;
    right: -3.2vw;
    top: 21.3333333333vw
  }

  .feature-item {
    padding: 20px;
    grid-template-columns: 1fr;
    grid-row-gap: 15px
  }

  .feature-item-text {
    font-size: 18px;
    margin-bottom: 15px
  }

  .feature-item-desc {
    font-size: 16px
  }

  .feature-item-img {
    display: flex
  }

  .feature-item:nth-child(1)::before {
    width: 21.0666666667vw;
    height: 17.8666666667vw;
    top: -8vw;
    left: -2.6666666667vw
  }

  .feature-item:nth-child(2)::before {
    width: 25.3333333333vw;
    height: 17.6vw;
    bottom: -12.8vw;
    right: -5.3333333333vw
  }

  .feature-item:nth-child(3)::before {
    width: 16vw;
    height: 15.2vw;
    top: -8vw;
    left: 13.3333333333vw
  }

  .feature-item:nth-child(4)::before {
    width: 14.1333333333vw;
    height: 12.2666666667vw;
    top: -8vw;
    right: 17.8666666667vw
  }

  .feature-bottom-title {
    font-size: 16px
  }

  .feature-bottom-title span {
    font-size: 24px
  }

  .feature-bottom-inner {
    display: flex;
    flex-direction: column;
    grid-row-gap: 25px;
    padding: 24px
  }

  .feature-bottom-inner::after {
    top: 8px;
    left: 8px;
    box-shadow: inherit
  }

  .feature-bottom-inner::before {
    width: 5px;
    height: 5px;
    border-radius: 9in;
    position: absolute;
    top: 8px;
    right: 8px;
    content: "";
    position: absolute;
    background-color: #fff
  }

  .feature-bottom-logo {
    margin-bottom: 12px
  }

  .feature-bottom-movie {
    position: relative
  }

  .feature-bottom-movie::before {
    width: 5px;
    height: 5px;
    border-radius: 9in;
    position: absolute;
    bottom: -15px;
    right: -15px;
    content: "";
    position: absolute;
    background-color: #fff
  }

  .feature-bottom-movie::after {
    width: 5px;
    height: 5px;
    border-radius: 9in;
    position: absolute;
    bottom: -15px;
    left: -15px;
    content: "";
    position: absolute;
    background-color: #fff
  }
}

.result-inner {
  width: 1080px;
  padding-top: 80px;
  margin: 0 auto 80px
}

.result-title {
  margin-bottom: 40px;
  width: 1080px;
  margin: 0 auto 40px
}

.result-title-sub {
  color: #e56913;
  font-family: "Micro 5";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%
}

.result-title-main {
  color: #333;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.6px
}

.result-title-main span {
  color: #333;
  font-size: 56px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 2.8px
}

.result-title-main span small{
  color: #333;
  font-size: 32px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 2.8px
}

.result-box {
  width: 920px;
  margin: 0 auto
}

.result-box-tab {
  display: grid;
  grid-template-columns: repeat(1, 1fr);
  grid-column-gap: 1px;
  height: 58px;
  margin-bottom: 35px
}

.result-box-tab-button {
  position: relative;
  border-radius: 10px 10px 10px 10px;
  background: #ebeae9;
}
.result-box-tab-button.active {
  background: #e56913;
  color: #fff;
  font-family: 'Noto Sans JP';
  font-weight: 700;
  font-size: 18px;
  line-height: 23px;
}

.result-box-tab-button.active::after {
  content: "";
  position: absolute;
  width: 20px;
  height: 20px;
  display: block;
  background-image: url(../lp/tamai/icon_triangle.svg);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%)
}

.result-box-main {
  padding: 20px 80px;
  border-radius: 10px;
  border: 1px solid #e56913;
  background: rgba(229, 105, 19, .15)
}

.result-box-item {
  display: none;
  opacity: 0;
  transform: translateY(-20px);
  transition-property: display, opacity, height, padding-top;
  transition-behavior: allow-discrete;
  transition-duration: .3s
}

@starting-style {
  .result-box-item {
    transform: translateY(0);
    opacity: 0
  }
}

.result-box-item.active {
  display: block;
  opacity: 1;
  transform: translateY(0)
}

.result-box-img {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  width: 582px;
  height: 720px;
  border-radius: 8px;
  background: #fff;
  box-shadow: 4px 4px 4px 0px rgba(51, 51, 51, .25)
}

.result-box-img-main {
  width: 460px;
  height: 650px;
  margin: 0 auto 10px
}

.result-box-img-main img {
  width: 100%;
  height: 100%;
  object-fit: contain
}

.result-box-link {
  display: flex;
  justify-content: center;
  align-items: center;
  grid-column-gap: 4px;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: .65px
}

.result-box-link img {
  width: 15px;
  height: 15px;
  object-fit: contain
}

.result-box-text {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 170%;
  letter-spacing: .9px
}

.result-box-text span {
  color: #e56913;
  background: linear-gradient(transparent 75%, rgba(242, 145, 0, 0.3) 75%);
  font-weight: 700
}

@media screen and (max-width: 1200px) {
  .result-inner {
    padding: 40px 20px 0;
    width: 100%
  }

  .result-box {
    width: 100%
  }

  .result-box-tab {
    grid-column-gap: 1px;
    height: 55px;
    font-size: 16px;
    margin-bottom: 16px
  }

  .result-box-main {
    padding: 20px
  }

  .result-box-img {
    padding: 24px;
    width: 100%;
    height: 100%;
    aspect-ratio: 582/720
  }

  .result-box-img-main {
    width: 100%;
    height: 100%;
    aspect-ratio: 460/650
  }

  .result-box-text {
    font-size: 16px
  }

  .result-title {
    padding: 0;
    margin-bottom: 20px
  }

  .result-title-main {
    font-size: 24px
  }

  .result-title-main span {
    font-size: 40px
  }

  .result-title-main span small{
    font-size: 24px
  }
}

.reason {
  padding-top: 264px;
  position: relative
}

.reason::before {
  position: absolute;
  display: block;
  content: "";
  width: 850px;
  height: 186px;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  background-image: url(../lp/tamai/why_logo_pc.png);
  background-repeat: no-repeat;
  background-size: contain;
  z-index: 1
}

.reason-inner {
  position: relative;
  margin: 0 auto;
  background: #f29100;
  padding-bottom: 80px
}

.reason-inner::before {
  content: "";
  width: 120%;
  height: 320px;
  flex-shrink: 0;
  background: #f39100;
  position: absolute;
  border-radius: 100%;
  top: -114px;
  left: 50%;
  transform: translateX(-50%);
  z-index: -1
}

.reason-title {
  position: relative;
  color: #fff;
  text-align: center;
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  letter-spacing: 2.8px;
  margin-bottom: 40px
}

.reason-title::before {
  position: absolute;
  z-index: 0;
  content: "WHY";
  color: hsla(0, 0%, 100%, .5);
  text-align: center;
  font-family: "Micro 5";
  font-size: 120px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  display: block;
  left: 50%;
  transform: translateX(-50%);
  top: -100px
}

.reason-title span {
  font-size: 56px
}

.reason-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 1080px;
  margin: 0 auto;
  grid-column-gap: 40px
}

.reason-item {
  position: relative;
  background: #fff;
  border-radius: 10px;
  padding: 40px
}

.reason-item:nth-child(1)::before {
  content: "";
  position: absolute;
  width: 98px;
  height: 195px;
  flex-shrink: 0;
  background-image: url("../lp/tamai/why_icon_1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: -77px;
  left: -6px;
  transform: scaleX(-1)
}

.reason-item:nth-child(1)::after {
  content: "";
  position: absolute;
  width: 139px;
  height: 97px;
  flex-shrink: 0;
  background-image: url("../lp/tamai/why_icon_bottom_1.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  bottom: -38px;
  right: 32px
}

.reason-item:nth-child(2)::before {
  content: "";
  position: absolute;
  width: 105px;
  height: 207px;
  flex-shrink: 0;
  background-image: url("../lp/tamai/why_icon_2.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: -86px;
  right: 0
}

.reason-item:nth-child(2)::after {
  content: "";
  position: absolute;
  width: 117px;
  height: 99px;
  flex-shrink: 0;
  background-image: url("../lp/tamai/why_icon_bottom_2.png");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  bottom: -68px;
  right: 40px
}

.reason-item-title {
  color: #e56913;
  text-align: center;
  font-size: 24px;
  font-weight: 900;
  line-height: normal;
  margin-bottom: 20px
}

.reason-item-desc {
  color: #333;
  font-size: 18px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: .9px
}

@media screen and (max-width: 1200px) {
  .reason {
    padding-top: 107px
  }

  .reason-inner {
    width: 100%;
    padding-bottom: 40px
  }

  .reason-list {
    width: 100%
  }

  .reason::before {
    width: 92vw;
    height: 49.6vw;
    top: -60px;
    left: 50%;
    transform: none;
    background-image: url("../lp/tamai/why_logo_sp.png");
    transform: translateX(-50%)
  }

  .reason-title {
    font-size: 32px
  }

  .reason-title span {
    font-size: 40px
  }

  .reason-title::before {
    font-size: 100px;
    margin-top: 24px
  }

  .reason-list {
    grid-template-columns: 1fr;
    grid-row-gap: 20px;
    padding: 0 20px
  }

  .reason-item {
    padding: 24px 20px
  }

  .reason-item:nth-child(1)::before {
    width: 16.2666666667vw;
    height: 32.2666666667vw;
    top: -8.8vw;
    right: -2.6666666667vw;
    left: inherit;
    transform: scaleX(1)
  }

  .reason-item:nth-child(1)::after {
    width: 25.3333333333vw;
    height: 17.0666666667vw;
    bottom: -8.2666666667vw;
    right: -5.3333333333vw;
    z-index: 1
  }

  .reason-item:nth-child(2)::before {
    width: 17.3333333333vw;
    height: 34.1333333333vw;
    top: -12vw;
    left: -4.8vw
  }

  .reason-item:nth-child(2)::after {
    width: 22.1333333333vw;
    height: 18.6666666667vw;
    bottom: -16.2666666667vw;
    left: -2.6666666667vw;
    z-index: 2
  }

  .reason-item-title {
    font-family: "Noto Sans JP";
    font-size: 20px
  }

  .reason-item-desc {
    font-size: 16px
  }
}

.price-inner {
  width: 1080px;
  padding-top: 80px;
  margin: 0 auto 80px
}

.price-title {
  position: relative;
  margin-bottom: 40px
}

.price-title::after {
  content: "";
  position: absolute;
  width: 232px;
  height: 131px;
  flex-shrink: 0;
  background-image: url(../lp/tamai/price_icon_1.png);
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  top: -70px;
  right: 66px
}

.price-title-sub {
  color: #e56913;
  font-family: "Micro 5";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  padding-bottom: 20px
}

.price-title-main {
  color: #333;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.6px
}

.price-title-main span {
  color: #333;
  font-size: 56px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 2.8px
}

.price-box {
  width: 920px;
  margin: 0 auto 10px;
  display: grid;
  grid-template-areas: "first head head""first monthly monthly""first time time";
  grid-template-columns: 128px 1fr 1fr
}

.price-head {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  color: #fff;
  background: #f29100;
  color: #fff;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-weight: 900
}

.price-monthly {
  border-bottom: 1px solid #bfb9af
}

.price-monthly.first {
  display: flex;
  justify-content: center;
  align-items: center;
  background: #ffe6d4;
  padding: 0
}

.price-monthly-inner {
  position: relative;
  padding: 16px 0 28px;
  width: 314px
}

.price-monthly-inner+.price-monthly-inner {
  margin-top: 10px
}

.price-monthly-inner::before {
  position: absolute;
  content: "";
  width: 30px;
  height: 90px;
  background-image: url(../lp/tamai/price_icon.svg);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  bottom: 16px;
  right: 200px
}

.price-monthly-border {
  border: 1px dashed #bfb9af;
  margin-left: 20px
}

.price-monthly-border.right {
  margin-left: 0;
  margin-right: 20px
}

.price-monthly p {
  display: flex;
  width: fit-content;
  justify-content: flex-end;
  align-items: flex-end;
  color: #333;
  font-family: "Open Sans";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  margin-left: auto;
  margin-bottom: 28px
}

.price-monthly p.price-monthly-first {
  font-size: 18px
}

.price-monthly p:last-of-type {
  margin-bottom: 0
}

.price-monthly-title {
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  padding-bottom: 1px
}

.price-monthly-price {
  color: #333;
  font-family: "Open Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  margin-bottom: -3px
}

.price-monthly-first .price-monthly-price {
  font-size: 32px
}

.price-monthly-second {
  position: relative
}

.price-monthly-second::after {
  content: "+";
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  color: #333;
  font-family: "Open Sans";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  bottom: -28px
}

.price-time {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  color: #333;
  height: 56px;
  border-bottom: 1px solid #bfb9af;
  color: #333;
  font-family: "Open Sans";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%
}

.price-time.first {
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  background: #ffe6d4
}

.price-time span {
  font-size: 32px
}

.price-note {
  width: 920px;
  margin: 0 auto 80px;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 13px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%
}

@media screen and (max-width: 1200px) {
  .price {
    position: relative;
    z-index: -1
  }

  .price-inner {
    width: 100%;
    padding: 40px 20px 0
  }

  .price-box {
    width: 100%;
    grid-template-columns: 76px 1fr 1fr
  }

  .price-head {
    height: 48px;
    font-size: 16px
  }

  .price-note {
    width: 100%;
    font-size: 12px;
    margin-bottom: 24px
  }

  .price-title {
    width: 100%;
    margin-bottom: 20px
  }

  .price-title-sub {
    font-size: 36px;
    padding-bottom: 10px
  }

  .price-title-main {
    font-size: 24px
  }

  .price-title::after {
    width: 120px;
    height: 68px;
    top: -20px;
    right: 20px
  }

  .price-monthly-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 15px 0;
    width: fit-content;
    margin: 0 auto
  }

  .price-monthly-inner::before {
    bottom: 15px;
    right: 78px;
    width: 21px;
    height: 60px
  }

  .price-monthly p {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    margin-bottom: 20px;
    font-size: 11px
  }

  .price-monthly p.price-monthly-first {
    font-size: 12px;
    margin-bottom: 10px
  }

  .price-monthly-title {
    display: block;
    font-size: 8px;
    margin-bottom: 4px
  }

  .price-monthly-second::after {
    bottom: -18px;
    font-size: 12px
  }

  .price-monthly-first .price-monthly-price {
    font-size: 24px
  }

  .price-monthly-price {
    font-size: 16px
  }

  .price-monthly-border {
    margin-left: 12px
  }

  .price-monthly-border.right {
    margin-left: 0;
    margin-right: 12px
  }

  .price-time {
    font-size: 14px
  }

  .price-time.first {
    font-size: 14px
  }

  .price-time span {
    font-size: 24px
  }

  .price-time p {
    height: 48px;
    line-height: 48px
  }
}

.faq-inner {
  width: 1080px;
  margin: 0 auto 80px
}

.faq-title {
  margin-bottom: 40px
}

.faq-title-sub {
  color: #e56913;
  font-family: "Micro 5";
  font-size: 40px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  padding-bottom: 20px
}

.faq-title-main {
  color: #333;
  font-size: 32px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 1.6px
}

.faq-title-main span {
  color: #333;
  font-size: 56px;
  font-weight: 700;
  line-height: 130%;
  letter-spacing: 2.8px
}

.faq-box {
  border-top: 1px solid #bfb9af
}

.faq-item {
  cursor: pointer;
  display: grid;
  grid-template-columns: 1fr 16px;
  grid-column-gap: 10px;
  justify-content: space-between;
  align-items: flex-start;
  width: 100%;
  padding: 20px 10px;
  border-bottom: 1px solid #bfb9af
}

.faq-item-title {
  display: flex;
  align-items: center;
  grid-column-gap: 10px;
  margin-bottom: 5px;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: .9px
}

.faq-item-title span {
  display: block;
  color: #e56913;
  font-family: "Open Sans";
  font-size: 32px;
  font-style: normal;
  font-weight: 700;
  line-height: 100%
}

.faq-item-desc {
  display: none;
  align-items: flex-start;
  grid-column-gap: 17px;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
  letter-spacing: .8px;
  opacity: 0;
  transform: translateY(-10px)
}

.faq-item-desc span {
  display: block;
  color: #f29100;
  font-family: "Open Sans";
  font-size: 24px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin-top: -4px
}

.active .faq-item-desc {
  display: flex;
  opacity: 1;
  transform: translateY(0);
  transition-property: display, opacity, height, padding-top;
  transition-behavior: allow-discrete;
  transition-duration: .3s
}

@starting-style {
  .active .faq-item-desc {
    transform: translateY(0);
    opacity: 0
  }
}

.faq-item-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 16px;
  height: 37px;
  transform: rotate(0);
  transition-property: display, opacity, height, padding-top;
  transition-behavior: allow-discrete;
  transition-duration: .3s
}

@starting-style {
  .faq-item-arrow {
    transform: rotate(0);
    opacity: 0
  }
}

.active .faq-item-arrow {
  transform: rotate(180deg)
}

.faq-item-arrow img {
  width: 16px;
  height: 16px
}

@media screen and (max-width: 1200px) {
  .faq-inner {
    width: 100%;
    padding: 0 20px;
    margin-bottom: 40px
  }

  .faq-title {
    position: relative;
    margin-bottom: 20px
  }

  .faq-title::before {
    content: "";
    position: absolute;
    display: block;
    top: -20px;
    right: 0;
    width: 120px;
    height: 78px;
    background-image: url("../lp/tamai/faq_icon.png");
    background-repeat: no-repeat;
    background-size: contain
  }

  .faq-title-sub {
    font-size: 36px;
    padding-bottom: 10px
  }

  .faq-title-main {
    font-size: 24px
  }

  .faq-title-main span {
    font-size: 40px
  }

  .faq-item {
    align-items: center
  }

  .faq-item-title {
    font-size: 16px
  }

  .faq-item-title span {
    font-size: 24px
  }

  .faq-item-desc {
    margin-top: 12px;
    font-size: 14px
  }

  .faq-item-desc span {
    font-size: 18px
  }
}

.footer {
  padding: 30px 0;
  background-color: #f8f5f4;
  font-size: 11px
}

.footer-inner {
  max-width: 1080px;
  margin: 0 auto;
  display: flex;
  align-items: center
}

.footer-link {
  display: flex
}

.footer-privacy {
  display: flex;
  width: 390px;
  grid-column-gap: 8px;
  margin-left: 32px
}

.footer-privacy-img {
  width: 46px;
  height: 46px;
  flex-shrink: 0
}

.footer a {
  margin-right: 16px;
  color: #333
}

.footer-copy {
  margin-left: auto;
  color: #333;
  font-family: "Noto Sans JP";
  font-size: 11px;
  font-style: normal;
  font-weight: 400;
  line-height: 100%;
  letter-spacing: .55px
}

@media screen and (max-width: 1080px) {
  .footer {
    padding-bottom: 80px
  }

  .footer-inner {
    padding: 0 20px
  }

  .footer-link {
    flex-direction: column;
    font-size: 1rem;
    flex-shrink: 0;
    grid-row-gap: 18px
  }

  .footer-privacy {
    flex-direction: row-reverse;
    width: 100%;
    margin-left: 24px;
    grid-row-gap: 8px;
    font-size: 1rem;
    align-items: flex-end
  }

  .footer-copy {
    font-size: 13px;
    text-align: center;
    padding: 40px 20px 0
  }
}

@media screen and (max-width: 1080px) {
  .nav {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 64px;
    background: #fff;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-column-gap: 2px;
    padding: 4px 2px;
    z-index: 100
  }

  .nav-item {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
    border-radius: 8px;
    background: #f29100;
    color: #fff;
    text-align: center;
    font-family: "Noto Sans JP";
    font-size: 13px;
    font-style: normal;
    font-weight: 700;
    line-height: 130%
  }

  .nav-item.main {
    background: #e6003a
  }

  .nav li {
    list-style: none
  }
}

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

/* 2025/2/12 aby村山追加 */
.classroom__section-title {
  padding-left: clamp(10px, 2.6041666667vw, 30px);
  font-size: clamp(20px, 3.3854166667vw, 32px);
  border-top: 3px solid #E56913;
  border-bottom: 3px solid #E56913;
}
.classroom__article {
  max-width: 1280px;
  width: 100%;
  margin: auto;
  display: grid;
  row-gap: clamp(30px, 5.859375vw, 60px);
  @media screen and (max-width: 1080px) {
    padding-inline: 15px;
  }
}
@media screen and (min-width: 768px) {
  .classroom__section-inner {
    grid-template-columns: repeat(2, 1fr);
    margin-inline: 20px;
  }
}

.classroom__section-inner {
  display: grid;
  gap: clamp(10px, 3.2552083333vw, 40px);
  margin-top: clamp(20px, 3.90625vw, 40px);
}
.classroom__item {
  color: #fff;
  display: grid;
  grid-template:
    "info img" auto
    "btn btn" auto / 1fr auto;
  padding: clamp(12px, 1.7578125vw, 15px) clamp(5px, 1.3020833333vw, 15px);
  border-radius: 10px;
  background-color: #F29100;
}
.classroom__item-info {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: info;
  padding-top: clamp(8px, 1.4973958333vw, 15px);
  padding-left: 15px;
}
.classroom__item-name {
  font-size: clamp(20px, 2.6666666667vw, 32px);
  line-height: 1;
}
.classroom__item-name.ex{
  font-size: 24px;
  span{
    font-size: 16px;
  }
  @media screen and (max-width: 1080px) {
    font-size: 16px;
    span{
      font-size: 10px;
    }
  }
}
/* p:last-child {
  margin-bottom: 0;
} */

.classroom__item-address {
  grid-area: address;
  margin-top: clamp(12px, 2.0833333333vw, 20px);
  font-size: clamp(12px, 1.6vw, 20px);
  line-height: 1.2;
}
.classroom__item-img {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: img;
  width: clamp(127px, 18.6666666667vw, 263px);
  height: auto;
  border-radius: 10px;
}
.classroom__item-btn-list {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: btn;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  -moz-column-gap: clamp(5px, 0.9765625vw, 10px);
  column-gap: clamp(5px, 0.9765625vw, 10px);
  margin-top: clamp(10px, 1.6276041667vw, 15px);
}
.classroom__item-btn {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  padding-block: clamp(14px, 2.2135416667vw, 20px);
  border-radius: 10px;
  text-decoration: none;
  font-size: clamp(14px, 1.8666666667vw, 20px);
  line-height: 1;
  border: 1px solid #CCC;
  background: #FFF;
  box-shadow: 2px 2px 2px 0px rgba(0, 0, 0, 0.25);
  color: #4B4B4B;;
}
.classroom__item-btn .--icon {
  width: auto;
  height: clamp(14px, 2.2135416667vw, 20px);
}
@media screen and (min-width: 600px) {
  a img {
    transition: 0.3s linear opacity;
  }
}
.classroom__navigation {
  max-width: 1080px;
  margin-inline: auto;
  display: flex;
  flex-wrap: wrap;
  gap: clamp(10px, 1.5625vw, 14px);
  margin-bottom: 30px;
  @media screen and (max-width: 1080px) {
    padding-inline: 15px;
  }
}
.classroom__navigation-button {
  padding: 4px 14px;
  border-radius: 5px;
  background-color: #F29100;
  border: 0;
  font-size: clamp(12px, 1.8229166667vw, 16px);
  font-feature-settings: "palt";
  color: #fff;
  text-decoration: none;
  transition: 0.3s background-color linear;
  cursor: pointer;
}
