@charset "UTF-8";
/* ===========================================
 * Fonts
 * ===========================================
*/
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&family=Oswald:wght@200..700&display=swap");
/* ===========================================
 * 関数
 * ===========================================
*/
/* -------------------------------------------
 * breakpoint
*/
/* $break-point以下の時に@contentを適用 */
/* $break-point以上の時に@contentを適用 */
/* $break-point-min以上、$break-point-max以下の時に@contentを適用 */
/* ===========================================
 * 変数
 * ===========================================
*/
/* ===========================================
 * style
 * ===========================================
*/
/* -------------------------------------------
 * all
*/
*, *::before, *::after {
  box-sizing: border-box;
}

/* -------------------------------------------
 * body
*/
body {
  background-image: unset;
}

/* -------------------------------------------
 * header
*/
#header {
  position: relative;
  z-index: 1;
}
#header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 44px;
  background-color: #c9c4a3;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  #header {
    z-index: unset;
    background: unset;
  }
  #header::before {
    display: none;
  }
}
#header #header_inner {
  height: 344px;
}
#header #header_inner .__contact_container {
  position: absolute;
  left: 267px;
  top: 137px;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  width: calc(100% - 267px);
}
#header #header_inner .__contact_container .__catch {
  color: #403A39;
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-weight: 500;
  font-style: normal;
  font-size: 16px;
  text-align: left;
}
#header #header_inner .__contact_container .__header_contact .__btn {
  display: block;
  text-decoration: none;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 700;
  font-size: 16px;
  letter-spacing: 1px;
  line-height: 1;
  background-color: #f88c0e;
  border-radius: 999px;
  border: 4px solid #f88c0e;
  width: 300px;
  padding: 0.75em 0;
  transition: background-color 0.3s ease, color 0.3s ease;
}
#header #header_inner .__contact_container .__header_contact .__btn:hover {
  background-color: #FFF;
  color: #f88c0e;
}
@media screen and (max-width: 767px) {
  #header #header_inner .__contact_container {
    position: relative;
    top: unset;
    left: unset;
    width: 100%;
  }
  #header #header_inner .__contact_container .__catch {
    padding: 1em 4%;
    font-size: 14px;
    font-weight: 600;
    color: #f88c0e;
  }
  #header #header_inner .__contact_container .__catch br {
    display: none;
  }
  #header #header_inner .__contact_container .__header_contact {
    display: none;
  }
}
#header #header_inner #main_navi {
  top: 200px;
  padding: 25px 0;
}
#header #header_inner #main_navi ul {
  background-image: unset;
  margin: 0 auto;
  padding: 0;
  list-style: none;
  max-width: 860px;
  display: flex;
  justify-content: space-between;
}
#header #header_inner #main_navi li {
  float: none;
  text-indent: unset;
  position: relative;
  flex: 1 1 20%;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.05em;
}
#header #header_inner #main_navi li::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 120px;
  height: 2px;
  background: #e6613b;
}
#header #header_inner #main_navi li::after {
  content: "";
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 8px;
  height: 8px;
  border-right: 2px solid #e6613b;
  border-bottom: 2px solid #e6613b;
}
#header #header_inner #main_navi li a {
  display: block;
  padding-top: 26px;
  text-decoration: none;
  color: #403A39;
  line-height: 1.4;
  position: relative;
  z-index: 2;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 12px;
  font-weight: 400;
  font-style: normal;
  transition: color 0.3s ease;
  width: auto !important;
  height: auto;
}
#header #header_inner #main_navi li a:hover {
  background-image: unset !important;
  color: #f88c0e;
}
#header #header_inner #main_navi li a:hover::before {
  color: #f88c0e;
}
#header #header_inner #main_navi li a::before {
  content: "";
  display: block;
  font-size: 16px;
  font-weight: bold;
  letter-spacing: 0.12em;
  font-family: "Oswald", sans-serif;
  font-weight: 700;
  color: #403A39;
  transition: color 0.3s ease;
}
#header #header_inner #main_navi #navi01act a,
#header #header_inner #main_navi #navi02act a,
#header #header_inner #main_navi #navi03act a,
#header #header_inner #main_navi #navi04act a,
#header #header_inner #main_navi #navi05act a {
  background: unset;
}
#header #header_inner #main_navi #navi01 a::before,
#header #header_inner #main_navi #navi01act a::before {
  content: "ABOUT US";
}
#header #header_inner #main_navi #navi02 a::before,
#header #header_inner #main_navi #navi02act a::before {
  content: "LESSON";
}
#header #header_inner #main_navi #navi03 a::before,
#header #header_inner #main_navi #navi03act a::before {
  content: "STAFF";
}
#header #header_inner #main_navi #navi04 a::before,
#header #header_inner #main_navi #navi04act a::before {
  content: "PRICE";
}
#header #header_inner #main_navi #navi05 a::before,
#header #header_inner #main_navi #navi05act a::before {
  content: "USERS";
}
@media screen and (max-width: 767px) {
  #header #header_inner {
    height: auto;
  }
}
#header #entry_group.__h1_header_container {
  background: unset !important;
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 3rem;
  position: relative;
  z-index: 1;
  /* スマホ対応 */
}
#header #entry_group.__h1_header_container::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100%;
  background-color: #F7F7F7;
  z-index: -1;
}
#header #entry_group.__h1_header_container .section-heading {
  display: block;
  text-decoration: none;
  text-align: center;
  padding: 24px 0;
  color: #f88c0e;
  /* 上部の縦点線 */
  /* 英語の大見出し（PRICE） */
  /* 下線（太め） */
  /* 日本語サブタイトル */
}
#header #entry_group.__h1_header_container .section-heading__dot {
  display: inline-block;
  width: 3px;
  height: 30px;
  background-image: radial-gradient(#f88c0e 1px, transparent 1px);
  background-size: 3px 6px;
  background-repeat: repeat-y;
  margin-bottom: 4px;
}
#header #entry_group.__h1_header_container .section-heading__en {
  margin: 0 0 8px !important;
  padding: 0 !important;
  background: unset !important;
  float: unset !important;
  font-family: "Oswald", sans-serif;
  font-size: 58px;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  color: #f88c0e;
}
#header #entry_group.__h1_header_container .section-heading__line {
  width: 180px;
  height: 8px;
  margin: 0 auto 8px;
  background: #f88c0e;
}
#header #entry_group.__h1_header_container .section-heading__ja {
  margin: 0;
  letter-spacing: 0.14em;
  color: #f88c0e;
  text-align: left;
  font-size: 12px;
  font-weight: 600;
  font-family: "Noto Sans JP", sans-serif;
}
#header #entry_group.__h1_header_container .__entry_catch p {
  margin: 0;
  font-size: 20px;
  font-weight: 600;
  color: #403A39;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  #header #entry_group.__h1_header_container {
    padding: 0 4%;
    flex-direction: column;
    gap: 0;
  }
  #header #entry_group.__h1_header_container .__entry_catch {
    margin-bottom: 24px;
  }
  #header #entry_group.__h1_header_container .__entry_catch p {
    font-size: 5vw;
  }
}

/* -------------------------------------------
 * banner
*/
body #main #float_navi {
  width: auto;
  height: auto;
}
body #main #float_navi a {
  width: auto !important;
  display: block;
  writing-mode: vertical-rl;
  text-decoration: none;
  color: #fff;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 600;
  font-size: 18px;
  letter-spacing: 2px;
  line-height: 1;
  background-color: #f88c0e;
  border: 2px solid #FFF;
  border-top-left-radius: 24px;
  border-bottom-left-radius: 24px;
  padding: 1.5rem;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  body #main #float_navi {
    display: none;
  }
}

/* 共通：PCでは非表示 */
.sp-floating-banner {
  display: none; /* 基本は非表示、SPメディアクエリでONにする */
  /* スマホのみ表示（ブレイクポイントはお好みで） */
}
@media screen and (max-width: 767px) {
  .sp-floating-banner {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 9999;
    padding: 16px 4%;
    box-sizing: border-box;
    /* 初期状態は画面外に隠す */
    transform: translateY(100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: block; /* SPのみ有効 */
    /* JSで付与される表示用クラス */
  }
  .sp-floating-banner .__bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: -1;
  }
  .sp-floating-banner .sp-floating-banner__btn {
    display: block;
    width: 100%;
  }
  .sp-floating-banner .sp-floating-banner__btn:active {
    opacity: 0.9;
  }
  .sp-floating-banner.is-visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
}

/* ===========================================
 * Trial Page Styles
 * ===========================================
*/
/* -------------------------------------------
 * Common
*/
#main {
  font-size: 16px;
}
#main #contents {
  margin: 0;
  width: 100%;
}

#main p {
  font-family: "Noto Sans JP", sans-serif;
}

section[class^=sec-trial-] {
  position: relative;
}
section[class^=sec-trial-] .__header_container {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
  height: 380px;
}
section[class^=sec-trial-] .__header_container .__h2_header {
  margin: 0;
  padding: 0;
  padding-top: 100px;
  font-size: 28px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  text-align: center;
  color: #403A39;
}
section[class^=sec-trial-] .__header_container .__en {
  margin: 0;
  padding: 0;
  font-size: 18px;
  font-family: "Oswald", sans-serif;
  color: #f88c0e;
}

/* -------------------------------------------
 * About
*/
section.sec-trial-about {
  padding: 0 0 60px;
  background-color: #FFF;
  /* スマホ・タブレット対応 ------------------------------------------- */
}
section.sec-trial-about .__inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
}
section.sec-trial-about .__inner .__flex_container {
  display: flex;
  align-items: stretch;
  gap: 32px;
  /* 左：動画エリア ------------------------------------------------- */
  /* 右：テキストエリア ------------------------------------------- */
}
section.sec-trial-about .__inner .__flex_container .__move_container {
  flex: 1;
  aspect-ratio: 16/9;
  background: #000;
  width: 100%;
  height: 100%;
  overflow: hidden;
}
section.sec-trial-about .__inner .__flex_container .__move_container iframe {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.sec-trial-about .__inner .__flex_container .__text_container {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
section.sec-trial-about .__inner .__flex_container .__text_container .__h2_header {
  margin: 0 0 16px;
  font-size: 28px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  color: #f88c0e;
}
section.sec-trial-about .__inner .__flex_container .__text_container .__contents {
  margin: 0;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.8;
  text-align: left;
}
section.sec-trial-about .__inner .__flex_container .__text_container .__contents .__accent {
  color: #f88c0e;
}
@media screen and (max-width: 767px) {
  section.sec-trial-about {
    padding: 40px 0;
  }
  section.sec-trial-about .__inner .__flex_container {
    flex-direction: column;
    gap: 24px;
  }
  section.sec-trial-about .__inner .__flex_container .__move_container {
    flex: 0 0 auto;
    margin: 0 auto;
  }
  section.sec-trial-about .__inner .__flex_container .__text_container {
    flex: 0 0 auto;
    padding: 0 4%;
  }
  section.sec-trial-about .__inner .__flex_container .__text_container .__h2_header {
    text-align: left;
    font-size: 6.4vw;
    margin-bottom: 24px;
  }
  section.sec-trial-about .__inner .__flex_container .__text_container .__contents {
    font-size: 16px;
  }
}

/* -------------------------------------------
 * Trial Day Flow
*/
section.sec-trial-flow {
  padding: 100px 0;
  /* レスポンシブ：スマホでは縦並びに変更 ------------------------- */
}
section.sec-trial-flow .__header_container {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  height: auto;
}
section.sec-trial-flow .__header_container .__h2_header {
  padding: 0;
}
section.sec-trial-flow .__inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 80px 0 0;
  /* 3カラムグリッド：左コンテンツ／中央ステップ帯／右コンテンツ */
}
section.sec-trial-flow .__inner .flow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 80px minmax(0, 1fr);
  row-gap: 0;
  /* 左右コンテンツボックス共通 */
  /* 中央のオレンジ帯＋STEP文字 */
}
section.sec-trial-flow .__inner .flow-grid .flow-wrapper {
  display: contents;
}
section.sec-trial-flow .__inner .flow-grid .flow-box {
  padding: 0 32px 28px;
}
section.sec-trial-flow .__inner .flow-grid .flow-box--image {
  margin-bottom: 64px;
  padding: 0;
  position: relative;
  width: 100%;
  height: auto;
  aspect-ratio: 16/9;
  overflow: hidden;
  z-index: 0;
}
section.sec-trial-flow .__inner .flow-grid .flow-box--image .__step {
  display: block;
  color: #f88c0e;
  font-family: "Oswald", sans-serif;
  font-size: 56px;
  font-weight: 700;
  white-space: nowrap;
  position: absolute;
  bottom: 0;
  left: 100%;
  transform: translate(-64%, -100%) rotate(-90deg);
  z-index: 1;
  line-height: 1;
}
section.sec-trial-flow .__inner .flow-grid .flow-box--image .__step .__num {
  font-size: 96px;
  line-height: 0;
}
section.sec-trial-flow .__inner .flow-grid .flow-box--image img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
section.sec-trial-flow .__inner .flow-grid .flow-box--text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
}
section.sec-trial-flow .__inner .flow-grid .flow-box .flow-title {
  margin: 0 0 24px;
  font-size: 26px;
  line-height: 1.6;
  color: #403A39;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
}
section.sec-trial-flow .__inner .flow-grid .flow-box .flow-text {
  margin: 0;
  color: #403A39;
  font-size: 14px;
  line-height: 1.9;
}
section.sec-trial-flow .__inner .flow-grid .flow-box a.__link {
  color: #f88c0e;
  text-decoration: none;
  font-size: 14px;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}
section.sec-trial-flow .__inner .flow-grid .flow-box a.__link:hover {
  text-decoration: underline;
}
section.sec-trial-flow .__inner .flow-grid .flow-step {
  grid-column: 2;
  background: #f88c0e;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
section.sec-trial-flow .__inner .flow-grid .flow-item-02 .__step,
section.sec-trial-flow .__inner .flow-grid .flow-item-04 .__step,
section.sec-trial-flow .__inner .flow-grid .flow-item-06 .__step {
  left: 0;
  transform: translate(-36%, -100%) rotate(90deg);
}
section.sec-trial-flow .__inner .flow-grid .flow-item-06 {
  margin-bottom: 0;
}
@media screen and (max-width: 767px) {
  section.sec-trial-flow {
    padding: 40px 0 0;
  }
  section.sec-trial-flow .__inner {
    padding: 40px 0 0;
  }
  section.sec-trial-flow .__inner .flow-grid {
    grid-template-columns: 100%;
    row-gap: 0;
  }
  section.sec-trial-flow .__inner .flow-grid .flow-wrapper {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
    border-left: 8px solid #f88c0e;
    border-bottom: 8px solid #f88c0e;
  }
  section.sec-trial-flow .__inner .flow-grid .flow-wrapper .flow-box--image {
    order: 1;
  }
  section.sec-trial-flow .__inner .flow-grid .flow-wrapper .flow-box--text {
    order: 2;
  }
  section.sec-trial-flow .__inner .flow-grid .flow-wrapper:nth-child(2n) {
    border-left: none;
    border-right: 8px solid #f88c0e;
  }
  section.sec-trial-flow .__inner .flow-grid .flow-wrapper:nth-child(5) .flow-box--text .flow-title br {
    display: none;
  }
  section.sec-trial-flow .__inner .flow-grid .flow-box--image {
    width: 100%;
    margin: 0;
  }
  section.sec-trial-flow .__inner .flow-grid .flow-box--text {
    padding: 24px 4% 40px;
  }
  section.sec-trial-flow .__inner .flow-grid .flow-box--text .flow-title {
    font-size: 6vw;
    margin-bottom: 16px;
  }
  section.sec-trial-flow .__inner .flow-grid .flow-box--text .flow-text {
    font-size: 3.8vw;
  }
  section.sec-trial-flow .__inner .flow-grid .flow-step {
    display: none;
  }
  section.sec-trial-flow .__inner .flow-grid .flow-item-01 .__step,
  section.sec-trial-flow .__inner .flow-grid .flow-item-03 .__step,
  section.sec-trial-flow .__inner .flow-grid .flow-item-05 .__step {
    left: 0;
    transform: translate(-36%, -100%) rotate(90deg);
  }
  section.sec-trial-flow .__inner .flow-grid .flow-item-02 .__step,
  section.sec-trial-flow .__inner .flow-grid .flow-item-04 .__step,
  section.sec-trial-flow .__inner .flow-grid .flow-item-06 .__step {
    left: 100%;
    transform: translate(-64%, -100%) rotate(-90deg);
  }
}

/* -------------------------------------------
 * Message
*/
section.sec-trial-message .__inner {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 0 2%;
}
section.sec-trial-message .__inner .__flex_container {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
section.sec-trial-message .__inner .__flex_container .__title {
  flex: 0 1 50%;
  font-size: 22px;
  font-weight: 700;
  color: #403A39;
  line-height: 1.6;
}
section.sec-trial-message .__inner .__flex_container .__notice {
  flex: 0 1 50%;
  font-size: 14px;
  line-height: 1.8;
  color: #403A39;
}
@media screen and (max-width: 767px) {
  section.sec-trial-message {
    padding: 40px 0;
    border-left: 40px solid #f88c0e;
  }
  section.sec-trial-message .__inner {
    padding: 0 4%;
  }
  section.sec-trial-message .__inner .__flex_container {
    flex-direction: column;
    gap: 24px;
  }
  section.sec-trial-message .__inner .__flex_container .__title,
  section.sec-trial-message .__inner .__flex_container .__notice {
    flex: 0 0 auto;
    width: 100%;
  }
}

/* -------------------------------------------
 * Form
*/
section.sec-trial-form {
  max-width: 1100px;
  width: 100%;
  margin: 0 auto;
  padding: 160px 0 100px;
}
section.sec-trial-form .__inner {
  border: 12px solid #D6D1CF;
  border-radius: 20px;
  padding: 88px 64px 0;
  position: relative;
  z-index: 0;
}
section.sec-trial-form .__inner::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -86%);
  width: 160px;
  height: 90px;
  background: url("../img/icon-form-clip.svg") no-repeat center center;
  background-size: contain;
  z-index: 2;
}
section.sec-trial-form .__inner .__h2_header {
  padding: 0.25em 0;
  padding-left: 1em;
  border-left: 8px solid #f88c0e;
  background-color: #F7F7F7;
  font-size: 22px;
  font-weight: 700;
  font-family: "Noto Sans JP", sans-serif;
  margin-bottom: 1em;
}
section.sec-trial-form .__inner .__flex_container {
  display: flex;
  justify-content: center;
  align-items: center;
}
section.sec-trial-form .__inner .__flex_container.__sp {
  display: none;
}
section.sec-trial-form .__inner .__flex_container .__title_container {
  flex: 0 1 100%;
  width: 100%;
}
section.sec-trial-form .__inner .__flex_container .__title_container .__title {
  font-size: 26px;
  font-weight: 700;
  color: #f88c0e;
  margin-bottom: 16px;
  text-align: left;
}
section.sec-trial-form .__inner .__flex_container .__title_container .__contents {
  font-size: 14px;
  line-height: 1.8;
  color: #403A39;
  text-align: left;
}
section.sec-trial-form .__inner .__flex_container .__img_container {
  flex: 0 0 20%;
  width: 20%;
  max-width: 240px;
}
section.sec-trial-form .__inner .__flex_container .__img_container .__img {
  width: 100%;
  height: auto;
  display: block;
  transform: rotate(-5deg);
}
section.sec-trial-form .__inner .__flex_container .__img_container .__img img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
section.sec-trial-form .__inner .__form_container {
  padding: 64px 0;
}
section.sec-trial-form .__inner .__form_container .contact-form {
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
  box-sizing: border-box;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  -moz-column-gap: 32px;
       column-gap: 32px;
  row-gap: 0;
}
section.sec-trial-form .__inner .__form_container .contact-form .form-group {
  margin-bottom: 18px;
  padding: 16px 20px 20px;
  /* ▼ テキストエリア用の「1カラム専用クラス」 ▼ */
  /* プライバシーポリシー文言 */
  /* 送信ボタン */
}
section.sec-trial-form .__inner .__form_container .contact-form .form-group.form-pp, section.sec-trial-form .__inner .__form_container .contact-form .form-group.form-submit, section.sec-trial-form .__inner .__form_container .contact-form .form-group.form-notice {
  border: none;
  background: transparent;
  padding: 0;
  margin-top: 8px;
}
section.sec-trial-form .__inner .__form_container .contact-form .form-group.form-group--full {
  grid-column: 1/-1;
}
section.sec-trial-form .__inner .__form_container .contact-form .form-group label {
  display: block;
  font-size: 16px;
  font-weight: 700;
  margin-bottom: 8px;
  color: #403A39;
}
section.sec-trial-form .__inner .__form_container .contact-form .form-group .is-required {
  color: #e53935;
  font-size: 12px;
  margin-left: 4px;
}
section.sec-trial-form .__inner .__form_container .contact-form .form-group input,
section.sec-trial-form .__inner .__form_container .contact-form .form-group select,
section.sec-trial-form .__inner .__form_container .contact-form .form-group textarea {
  width: 100%;
  box-sizing: border-box;
  font-size: 16px;
  font-family: inherit;
  border: none;
  border-bottom: 1px solid #ddd;
  padding: 8px;
  background: transparent;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
section.sec-trial-form .__inner .__form_container .contact-form .form-group input::-moz-placeholder, section.sec-trial-form .__inner .__form_container .contact-form .form-group select::-moz-placeholder, section.sec-trial-form .__inner .__form_container .contact-form .form-group textarea::-moz-placeholder {
  color: #b0b0b0;
}
section.sec-trial-form .__inner .__form_container .contact-form .form-group input::placeholder,
section.sec-trial-form .__inner .__form_container .contact-form .form-group select::placeholder,
section.sec-trial-form .__inner .__form_container .contact-form .form-group textarea::placeholder {
  color: #b0b0b0;
}
section.sec-trial-form .__inner .__form_container .contact-form .form-group input:focus,
section.sec-trial-form .__inner .__form_container .contact-form .form-group select:focus,
section.sec-trial-form .__inner .__form_container .contact-form .form-group textarea:focus {
  border-bottom-color: #f88c0e;
  box-shadow: 0 2px 0 rgba(241, 90, 36, 0.25);
}
section.sec-trial-form .__inner .__form_container .contact-form .form-group input select,
section.sec-trial-form .__inner .__form_container .contact-form .form-group select select,
section.sec-trial-form .__inner .__form_container .contact-form .form-group textarea select {
  padding: 8px 32px 8px 0;
  cursor: pointer;
  background-image: linear-gradient(45deg, transparent 50%, #666 50%), linear-gradient(135deg, #666 50%, transparent 50%);
  background-position: calc(100% - 14px) 50%, calc(100% - 9px) 50%;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
}
section.sec-trial-form .__inner .__form_container .contact-form .form-group textarea {
  resize: vertical;
  min-height: 140px;
}
section.sec-trial-form .__inner .__form_container .contact-form .form-group.form-pp {
  margin: 2rem 0;
  font-size: 14px;
  color: #666;
}
section.sec-trial-form .__inner .__form_container .contact-form .form-group.form-pp a {
  color: #f15a24;
  text-decoration: underline;
}
section.sec-trial-form .__inner .__form_container .contact-form .form-group.form-pp a:hover {
  text-decoration: none;
}
section.sec-trial-form .__inner .__form_container .contact-form .form-group.form-submit {
  margin-top: 4rem;
  text-align: center;
}
section.sec-trial-form .__inner .__form_container .contact-form .form-group.form-submit button {
  min-width: 220px;
  width: 100%;
  padding: 14px 28px;
  border: none;
  font-size: 16px;
  font-weight: 700;
  color: #fff;
  background: linear-gradient(90deg, #ff7a2e, #f15a24);
  cursor: pointer;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
section.sec-trial-form .__inner .__form_container .contact-form .form-group.form-submit button:hover {
  opacity: 0.9;
}
section.sec-trial-form .__inner .__form_container .contact-form .form-group.form-submit button:active {
  transform: translateY(0);
  box-shadow: none;
}
section.sec-trial-form .__inner .__form_container .contact-form .form-notice {
  font-size: 14px;
  color: #999;
  text-align: center;
  margin-top: 8px;
}
section.sec-trial-form .__inner .__form_container .contact-form .form-notice .__text {
  margin: 0;
}
@media screen and (max-width: 767px) {
  section.sec-trial-form {
    padding: 80px 0 60px;
  }
  section.sec-trial-form .__inner {
    padding: 64px 24px 0;
  }
  section.sec-trial-form .__inner::before {
    width: 120px;
    height: 68px;
    transform: translate(-50%, -74%);
  }
  section.sec-trial-form .__inner .__flex_container {
    padding-top: 40px;
    position: relative;
    flex-direction: column;
    align-items: center;
    gap: 24px;
  }
  section.sec-trial-form .__inner .__flex_container.__sp {
    display: flex;
  }
  section.sec-trial-form .__inner .__flex_container.__pc {
    display: none;
  }
  section.sec-trial-form .__inner .__flex_container .__title_container {
    text-align: center;
  }
  section.sec-trial-form .__inner .__flex_container .__title_container .__title {
    font-size: 6.4vw;
  }
  section.sec-trial-form .__inner .__flex_container .__title_container .__contents {
    font-size: 4vw;
  }
  section.sec-trial-form .__inner .__flex_container .__img_container {
    position: absolute;
    top: 0;
    right: 0;
    width: 36%;
    max-width: 120px;
  }
  section.sec-trial-form .__inner .__form_container {
    padding: 0;
  }
  section.sec-trial-form .__inner .__form_container .contact-form {
    padding: 24px 0 32px;
    grid-template-columns: 1fr;
  }
  section.sec-trial-form .__inner .__form_container .contact-form .form-group {
    padding: 14px 0 18px;
  }
  section.sec-trial-form .__inner .__form_container .contact-form .form-notice {
    font-size: 12px;
  }
}/*# sourceMappingURL=new-trial.css.map */