@charset "utf-8";
/* --------------------------------------------------
    リセット
-------------------------------------------------- */
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, form, fieldset, input, textarea, p, blockquote {
  margin: 0;
  padding: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
fieldset, img {
  border: 0;
  vertical-align: bottom;
}
address, caption, cite, code, dfn, em, th, var {
  font-style: normal;
  font-weight: normal;
}
ul, ol {
  list-style: none;
  letter-spacing: -.4em;
}
li {
  letter-spacing: normal;
}
h1, h2, h3, h4, h5, h6 {
  font-size: 100%;
  font-weight: normal;
  line-height: 1.5;
}
figure:not(.wp-block-image) {
  margin: 0;
}
iframe {
  vertical-align: bottom;
}
*, *::before, *::after {
  box-sizing: border-box;
}

/* --------------------------------------------------
    base
-------------------------------------------------- */
html {
  height: 100%;
}
body {
  color: #262626;
  font-family: "Zen Maru Gothic", sans-serif;
  font-size: 18px;
  line-height: 1.8;
}
a {
  color: #262626;
  text-decoration: none;
  word-wrap: break-word;
  transition: all .3s ease;
}
a.op:hover img {
  opacity: .7;
}
img {
  max-width: 100%;
  height: auto;
}
a[href^="tel:"] {
  pointer-events: none;
}
@media screen and (max-width: 1199px) {
  body {
    max-width: 768px;
    font-size: 16px;
    margin: 0 auto;
    position: relative;
    -webkit-text-size-adjust: 100%;
  }
  a[href^="tel:"] {
    pointer-events: auto;
  }
}
/* --------------------------------------------------
    structure
-------------------------------------------------- */
.inner {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 1199px) {
  .inner {
    width: 90%;
    max-width: 768px;
  }
}
/* --------------------------------------------------
    アニメーション共通
-------------------------------------------------- */
.slideUp {
  transform: translateY(30px);
  transition: .6s cubic-bezier(.165, .84, .44, 1);
  opacity: 0;
}
.slideDown {
  transform: translateY(-30px);
  transition: .6s cubic-bezier(.165, .84, .44, 1);
  opacity: 0;
}
.slideLeft {
  transform: translateX(-30px);
  transition: .6s cubic-bezier(.165, .84, .44, 1);
  opacity: 0;
}
.slideRight {
  transform: translateX(30px);
  transition: .6s cubic-bezier(.165, .84, .44, 1);
  opacity: 0;
}
.animated[class*="slide"], .animated[class*="slideDown"], .animated[class*="slideLeft"], .animated[class*="slideRight"], .animated [class*="slideUp"], .animated [class*="slideDown"], .animated [class*="slideLeft"], .animated [class*="slideRight"] {
  transform: translate(0, 0) !important;
  opacity: 1 !important;
}
.fadeIn {
  transition: .6s cubic-bezier(.45, 0, .55, 1);
  opacity: 0;
}
.animated .fadeIn, .animated.fadeIn {
  opacity: 1;
}
/* --------------------------------------------------
    Tableレイアウト
-------------------------------------------------- */
table {
  width: 100%;
}
th, td {
  padding: 15px;
  border: 1px solid #ccc;
}
th {
  background: #f2f2f2;
}
thead th {
  background: #e5e5e5;
}
.table01 th {
  width: 30%;
  text-align: center;
}
@media screen and (max-width: 1199px) {
  th, td {
    padding: 10px;
  }
  .table01 {
    margin: 0 auto;
  }
  .table01 th, .table01 td {
    width: auto;
    display: block;
    border-top: none;
  }
  .table01 tr:first-child th {
    border-top: 1px solid #ccc;
  }
  .table02 {
    display: block;
    position: relative;
  }
  .table02 th, .table02 td {
    width: 100% !important;
    display: block;
  }
  .table02 thead {
    display: block;
    float: left;
    overflow-x: scroll;
  }
  .table02 thead th {
    width: auto;
    display: block;
  }
  .table02 tbody {
    width: auto;
    display: block;
    overflow-y: hidden;
    overflow-x: auto;
    white-space: nowrap;
  }
  .table02 tbody tr {
    display: inline-block;
    margin: 0 -2px;
  }
  .table02 tbody td {
    display: block;
  }
  /* table横スクロール */
  .scroll {
    font-size: 14px;
    overflow: auto;
    white-space: nowrap;
  }
}
/* --------------------------------------------------
    【注意書き】
-------------------------------------------------- */
.notes.disc {
  list-style: none;
  margin-left: 0;
}
.notes > li {
  text-indent: -1em;
  padding-left: 1em;
}
.notes > li:before {
  content: "※";
}
.notes ul li {
  text-indent: 0;
}
/* --------------------------------------------------
    【リストデザイン】
-------------------------------------------------- */
.disc {
  list-style: disc;
  margin-left: 1.5em;
}
.decimal {
  list-style: decimal;
  margin-left: 1.5em;
}
/* 丸数字 */
.bracket {
  counter-reset: cnt;
  margin-left: 1.5em;
}
.bracket > li::before {
  width: 1.4em;
  height: 1.4em;
  content: counter(cnt);
  counter-increment: cnt;
  font-size: .875em;
  display: inline-grid;
  place-content: center;
  margin: 0 .3em 0 -1.8em;
  border: 1px solid;
  border-radius: 50%;
}
/* 括弧付数字 */
.paren {
  counter-reset: cnt;
  margin-left: 1.5em;
}
.paren > li::before {
  counter-increment: cnt;
  content: "(" counter(cnt) ")";
  padding-right: .3em;
  margin-left: -1.5em;
}
/* --------------------------------------------
  【Flexbox】
-------------------------------------------- */
.flex {
  display: -webkit-flex;
  display: -ms-flex;
  display: flex;
}
.flex-inline {
  display: -webkit-inline-flex;
  display: -ms-inline-flex;
  display: inline-flex;
}
.flex-column {
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex-reverse {
  -webkit-flex-direction: row-reverse;
  -ms-flex-direction: row-reverse;
  flex-direction: row-reverse;
}
.flex-wrap {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.flex-end {
  -webkit-justify-content: flex-end;
  -ms-justify-content: flex-end;
  justify-content: flex-end;
}
.flex-center {
  -webkit-justify-content: center;
  -ms-justify-content: center;
  justify-content: center;
}
.flex-between {
  -webkit-justify-content: space-between;
  -ms-justify-content: space-between;
  justify-content: space-between;
}
.flex-around {
  -webkit-justify-content: space-around;
  -ms-justify-content: space-around;
  justify-content: space-around;
}
.flex-evenly {
  -webkit-justify-content: space-evenly;
  -ms-justify-content: space-evenly;
  justify-content: space-evenly;
}
.align-start {
  align-items: flex-start;
}
.align-end {
  align-items: flex-end;
}
.align-center {
  align-items: center;
}
.flex .flex-col2 {
  width: 50%;
  -ms-flex-preferred-size: 50%;
  flex-basis: 50%;
}
.flex .flex-col3 {
  width: 33.33333333%;
  -ms-flex-preferred-size: 33.33333333%;
  flex-basis: 33.33333333%;
}
.flex .flex-col4 {
  width: 25%;
  -ms-flex-preferred-size: 25%;
  flex-basis: 25%;
}
.flex img:not([data-src]), .flex img.lazy-loaded {
  height: auto;
}
@media screen and (max-width: 1199px) {
  .mbBlock > [class*="flex-col"] {
    width: auto;
  }
}
/* --------------------------------------------------
    PC・スマホ切り替え
-------------------------------------------------- */
.mb {
  display: none !important;
}
.pcBlock {
  display: block;
}
.inline {
  display: inline-block;
}
@media screen and (max-width: 1199px) {
  .pc {
    display: none !important;
  }
  .mb {
    display: initial !important;
  }
  .pcBlock {
    display: initial !important;
  }
  .mbBlock {
    display: block !important;
  }
  .spInline {
    display: inline-block;
  }
}
/* --------------------------------------------------
    【テキストスタイル】
-------------------------------------------------- */
.center {text-align: center !important;}
.right {text-align: right !important;}
.left {text-align: left !important;}
.top {vertical-align: top !important;}
.bottom {vertical-align: bottom !important;}

.bold{ font-weight:bold; }
.normal {font-weight:normal;}
.underline {text-decoration:underline;}
.italic {font-style:italic;}

.f10 {font-size:10px !important;}
.f11 {font-size:11px !important;}
.f12 {font-size:12px !important;}
.f13 {font-size:13px !important;}
.f14 {font-size:14px !important;}
.f15 {font-size:15px !important;}
.f16 {font-size:16px !important;}
.f18 {font-size:18px !important;}
.f20 {font-size:20px !important;}
.f22 {font-size:22px !important;}
.f24 {font-size:24px !important;}
.f26 {font-size:26px !important;}
.f28 {font-size:28px !important;}
.f30 {font-size:30px !important;}
.f32 {font-size:32px !important;}
.f34 {font-size:34px !important;}
.f36 {font-size:36px !important;}

.lh10 {line-height:1;}
.lh12 {line-height:1.2;}
.lh15 {line-height:1.5;}
.lh20 {line-height:2;}

.marker_red {
  background: linear-gradient(transparent 60%, #ffd8d8 0%);
}
.marker_yellow {
  background: linear-gradient(transparent 60%, #fff79d 0%);
}

/* --------------------------------------------------
    【余白】	5px未満は個別に追加
-------------------------------------------------- */
.mt00 {margin-top: 0 !important;}
.mt05 {margin-top: 5px !important;}
.mt10 {margin-top: 10px !important;}
.mt15 {margin-top: 15px !important;}
.mt20 {margin-top: 20px !important;}
.mt30 {margin-top: 30px !important;}
.mt40 {margin-top: 40px !important;}
.mt60 {margin-top: 60px !important;}
.mt80 {margin-top: 80px !important;}
.mb00 {margin-bottom: 0 !important;}
.mb05 {margin-bottom: 5px !important;}
.mb10 {margin-bottom: 10px !important;}
.mb15 {margin-bottom: 15px !important;}
.mb20 {margin-bottom: 20px !important;}
.mb30 {margin-bottom: 30px !important;}
.mb40 {margin-bottom: 40px !important;}
.mb60 {margin-bottom: 60px !important;}
.mb80 {margin-bottom: 80px !important;}
.ml00 {margin-left: 0px !important;}
.ml05 {margin-left: 5px !important;}
.ml10 {margin-left: 10px !important;}
.ml15 {margin-left: 15px !important;}
.ml20 {margin-left: 20px !important;}
.ml30 {margin-left: 30px !important;}
.ml40 {margin-left: 40px !important;}
.ml60 {margin-left: 60px !important;}
.mr00 {margin-right: 0px !important;}
.mr05 {margin-right: 5px !important;}
.mr10 {margin-right: 10px !important;}
.mr15 {margin-right: 15px !important;}
.mr20 {margin-right: 20px !important;}
.mr30 {margin-right: 30px !important;}
.mr40 {margin-right: 40px !important;}
.mr60 {margin-right: 60px !important;}

.pt00 {padding-top: 0px !important;}
.pt05 {padding-top: 5px !important;}
.pt10 {padding-top: 10px !important;}
.pt20 {padding-top: 20px !important;}
.pt30 {padding-top: 30px !important;}
.pt40 {padding-top: 40px !important;}
.pt60 {padding-top: 60px !important;}
.pt80 {padding-top: 80px !important;}
.pb00 {padding-bottom: 0px !important;}
.pb05 {padding-bottom: 5px !important;}
.pb10 {padding-bottom: 10px !important;}
.pb20 {padding-bottom: 20px !important;}
.pb30 {padding-bottom: 30px !important;}
.pb40 {padding-bottom: 40px !important;}
.pb60 {padding-bottom: 60px !important;}
.pb80 {padding-bottom: 80px !important;}
.pl00 {padding-left: 0px !important;}
.pl05 {padding-left: 05px !important;}
.pl10 {padding-left: 10px !important;}
.pl15 {padding-left: 15px !important;}
.pl20 {padding-left: 20px !important;}
.pl30 {padding-left: 30px !important;}
.pl40 {padding-left: 40px !important;}
.pl60 {padding-left: 60px !important;}
.pr00 {padding-right: 00px !important;}
.pr05 {padding-right: 05px !important;}
.pr10 {padding-right: 10px !important;}
.pr15 {padding-right: 15px !important;}
.pr20 {padding-right: 20px !important;}
.pr30 {padding-right: 30px !important;}
.pr40 {padding-right: 40px !important;}
.pr60 {padding-right: 60px !important;}

/* --------------------------------------------------
    【フロート】	#は削除
-------------------------------------------------- */
.fltL { float:left; }
.fltR { float:right; }
.both 	{ clear:both; }
.both05 { clear:both;height:05px;line-height:1;font-size:1px; }
.both10 { clear:both;height:10px;line-height:1;font-size:1px; }
.both15 { clear:both;height:15px;line-height:1;font-size:1px; }
.both20 { clear:both;height:20px;line-height:1;font-size:1px; }
.both30 { clear:both;height:30px;line-height:1;font-size:1px; }
.both40 { clear:both;height:40px;line-height:1;font-size:1px; }
.both50 { clear:both;height:50px;line-height:1;font-size:1px; }

.clearfix:after {
  content: "";
  display: block;
  clear: both;
}

/* --------------------------------------------------
    【テキストスタイル】
-------------------------------------------------- */
.fcRed { color:#c00; }
.fcPink { color:#e5006b; }
.fcBlue { color:#0076c3; }
.fcGreen { color:#3aa537; }
.fcOrange { color:#ef7f1e; }
.fcYellow { color:#ffff00; }

.bgPink { background:#e5006b; }
.bgBlue { background:#0076c3; }
.bgGreen { background:#3aa537; }
.bgOrange { background:#ef7f1e; }

/* --------------------------------------------------
    header
-------------------------------------------------- */
#header {
  background: linear-gradient(90deg, #e5006b, #e5006b 25%, #0076c3 25%, #0076c3 50%, #3aa537 50%, #3aa537 75%, #ef7f1e 75%, #ef7f1e 100%) repeat-x left top / 200px 5px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 25px 25px 20px 20px;
}
.hdrContact {
  display: flex;
  align-items: center;
  column-gap: 25px;
}
.hdrContact .contact {
  font-size: 16px;
}
.hdrContact .tel {
  font-size: 2.25em;
  font-weight: 900;
  line-height: 1;
}
.hdrContact .tel a {
  display: flex;
  align-items: center;
  column-gap: 5px;
}
.hdrContact .tel a::before {
  width: 1.25em;
  height: .722em;
  content: "";
  background: url("images/icon_freedial.png") no-repeat center / contain;
}
.trial_btn a {
  background: #e5006b;
  color: #fff;
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  column-gap: 5px;
  line-height: 1.3;
  padding: 1em 1.5em;
  border-radius: calc(1px/0);
}
.trial_btn a:hover {
  filter: brightness(1.1);
}
.trial_btn a::before {
  width: 1.36em;
  height: 1em;
  content: "";
  background: url("images/icon_mail.svg") no-repeat center / contain;
  display: block;
  flex-shrink: 0;
}
@media screen and (max-width: 1199px) {
  #header {
    background-size: 100px 4px;
    flex-direction: column;
    row-gap: 1em;
    padding: 1em 0;
  }
  .hdrLogo {
    max-width: 240px;
  }
  .hdrContact {
    column-gap: .5em;
  }
  .hdrContact .contact {
    font-size: min(2.933vw, 12px);
  }
  .trial_btn a {
    font-size: min(3.733vw, 14px);
    padding: .35em 1.25em;
  }
}
/* --------------------------------------------------
    main
-------------------------------------------------- */
/* 共通 */
section {
  padding: 100px 0;
}
section h2 {
  font-size: 50px;
  font-weight: bold;
}
.apply_btn {
  text-align: center;
  margin-top: 60px;
}
.apply_btn a {
  width: 760px;
  background: linear-gradient(to bottom, #ef7f1e, #e5006b);
  color: #fff;
  font-size: 40px;
  font-weight: bold;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  column-gap: 1em;
  line-height: 1.5;
  padding: .5em 1em;
  border-radius: calc(1px/0);
}
.apply_btn a:hover {
  transform: scale(1.02);
}
.apply_btn a > span {
  display: flex;
  align-items: center;
  column-gap: 10px;
}
.apply_btn a > span::before {
  width: 1.125em;
  height: .825em;
  content: "";
  background: url("images/icon_mail.svg") no-repeat center / contain;
  display: block;
  flex-shrink: 0;
}
.apply_btn a::before, .apply_btn a::after {
  width: 1.125em;
  height: 1.075em;
  content: "";
  background: url("images/icon_arrow_double.svg") no-repeat center / contain;
  display: block;
  flex-shrink: 0;
}
.apply_btn a::after {
  transform: scale(-1, 1);
}
/* mainVisual */
#mainVisual {
  height: 100vh;
  min-height: max(40vw, 768px);
  max-height: 56.25vw;
  background: #fffbd9;
  display: grid;
  place-content: center;
  position: relative;
}
.mv_copy {
  font-size: max(1.5625vw, 24px);
  font-weight: bold;
  text-align: center;
  line-height: 1.4;
}
.mv_copy .popular {
  font-size: 1.067em;
}
.mv_copy .em {
  font-size: 1.33em;
}
.mv_copy .copy {
  font-size: 2.2em;
  line-height: 1.5;
}
.mv_img li, .mv_game {
  position: absolute;
}
.mv_img li:first-child {
  width: 40%;
  height: 52.9%;
  top: 0;
  left: 3.125%;
}
.mv_img li:nth-child(2) {
  width: 40%;
  height: 49.1%;
  top: 0;
  right: 3.645%;
}
.mv_img li:nth-child(3) {
  width: 37.3%;
  height: 47.2%;
  bottom: 0;
  left: 2.6%;
}
.mv_img li:nth-child(4) {
  width: 37.135%;
  height: 48.36%;
  bottom: 0;
  right: 2.5%;
}
.mv_img img, .mv_game img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.mv_img li:nth-child(-n+2) img {
  object-position: top;
}
.mv_img li:nth-child(n+3) img {
  object-position: bottom;
}
.mv_game {
  width: 17.45%;
  height: 27.56%;
  margin: auto;
  bottom: 3.7%;
  left: 0;
  right: 0;
}
/* campaign */
#campaign {
  background: url("images/campaign_bg.jpg") no-repeat center / cover;
  color: #fff;
  text-align: center;
}
#campaign .heading {
  width: fit-content;
  margin: 0 auto;
  position: relative;
}
#campaign .heading h2 {
  font-size: 60px;
  line-height: 1;
  margin-bottom: .25em;
}
#campaign .heading p {
  font-size: 24px;
  font-weight: normal;
  line-height: 1.4;
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(50%, -100%) rotate(10deg);
}
#campaign .heading p span {
  display: block;
  display: flex;
  column-gap: .5em;
}
#campaign .heading p span::before, #campaign .heading p span::after {
  width: 2px;
  content: "";
  background: #fff;
  display: block;
}
#campaign .heading p span::before {
  transform: rotate(-15deg);
}
#campaign .heading p span::after {
  transform: rotate(15deg);
}
#campaign .deadline {
  font-size: 48px;
  font-weight: bold;
  line-height: 1.2;
}
#campaign .deadline span {
  font-size: 2.5em;
  font-weight: 900;
  line-height: 1;
}
#campaign .apply_btn {
  width: fit-content;
  margin-inline: auto;
  position: relative;
  z-index: 1;
}
#campaign .apply_btn:before, #campaign .apply_btn::after {
  content: "";
  display: block;
  position: absolute;
  top: -146px;
  z-index: -1;
}
#campaign .apply_btn:before {
  width: 115px;
  height: 207px;
  background: url("images/illust_boy.png") no-repeat center / contain;
  left: 60px;
}
#campaign .apply_btn::after {
  width: 118px;
  height: 208px;
  background: url("images/illust_girl.png") no-repeat center / contain;
  right: 60px;
}
#campaign .apply_btn a {
  background: #fff;
  color: #e5006b;
}
#campaign .apply_btn a::before, #campaign .apply_btn a::after {
  background-image: url("images/icon_arrow_double_pink.svg");
}
#campaign .apply_btn a > span::before {
  background-image: url("images/icon_mail_pink.svg");
}
/* trouble */
#trouble {
  background: #e3f4ff url("images/trouble_bg.png") no-repeat center top / 1920px auto;
  text-align: center;
}
#trouble .inner::before, #trouble .inner::after {
  content: "";
  display: block;
  position: absolute;
}
#trouble .inner::before {
  width: 210px;
  height: 222px;
  background: url("images/trouble_illust01.png") no-repeat center / contain;
  bottom: -110px;
  left: 0;
}
#trouble .inner::after {
  width: 144px;
  height: 283px;
  background: url("images/trouble_illust02.png") no-repeat center / contain;
  bottom: -100px;
  right: 0;
}
#trouble h2 {
  margin: -1em 0 0;
}
#trouble h2 > span {
  display: inline-flex;
  align-items: center;
}
#trouble h2 > span::before, #trouble h2 > span::after {
  content: "";
  display: block;
}
#trouble h2 > span::before {
  width: 134px;
  height: 157px;
  background: url("images/trouble_h2_boy.png") no-repeat center / contain;
  margin-right: 10px;
}
#trouble h2 > span::after {
  width: 134px;
  height: 143px;
  background: url("images/trouble_h2_girl.png") no-repeat center left / contain;
  margin-left: 15px;
}
#trouble .balloon {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  column-gap: 20px;
  margin-bottom: 40px;
}
#trouble .balloon > li {
  background: url("images/balloon_blue.svg") no-repeat center / cover;
  color: #0076c3;
  font-size: 26px;
  font-weight: bold;
  display: grid;
  place-content: center;
  line-height: 1.5;
  padding-bottom: 20%;
  aspect-ratio: 1/.94;
}
#trouble .balloon > li:nth-child(2) {
  background-image: url("images/balloon_pink.svg");
  color: #e5006b;
}
#trouble .balloon > li:nth-child(3) {
  background-image: url("images/balloon_orange.svg");
  color: #ef7f1e;
}
#trouble .balloon > li:nth-child(4) {
  background-image: url("images/balloon_green.svg");
  color: #3aa537;
}
#trouble .label {
  font-size: 34px;
  font-weight: bold;
  line-height: 1.5;
}
#trouble .label > span {
  background: #0076c3;
  color: #fff;
  display: inline-block;
  padding:  0 .25em;
}
#trouble .label + p {
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
  margin-top: .5em;
}
/* about */
#about {
  background: #fffbd9 url("images/about_bg.png") no-repeat center top / 1920px auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
}
#about .txt {
  padding: 0 10%;
}
#about h2 .label {
  color: #0076c3;
  font-size: .72em;
  display: inline-block;
  line-height: 1.3;
  padding: 0 1.5em;
  position: relative;
}
#about h2 .label::before, #about h2 .label::after {
  width: 6px;
  height: 54px;
  content: "";
  background: radial-gradient(circle, #0076c3 3px, transparent 3px) repeat-y left top -5px / 6px 16px;
  display: block;
  position: absolute;
  bottom: 0;
  transform-origin: top;
}
#about h2 .label::before {
  left: 0;
  transform: translateY(25%) rotate(-45deg);
}
#about h2 .label::after {
  right: 0;
  transform: translateY(25%) rotate(45deg);
}
#about h3 {
  color: #e5006b;
  font-size: 28px;
  font-weight: bold;
  text-align: center;
  line-height: 1.6;
  padding-bottom: .75em;
  margin: 1.25em 0;
  border-bottom: 3px solid;
}
#about .img {
  position: relative;
}
#about .img li:not(:first-child) {
  width: 35%;
  position: absolute;
}
#about .img li:nth-child(2) {
  top: -100px;
  left: -20px;
}
#about .img li:nth-child(3) {
  bottom: -200px;
  right: 0;
}
#about .img li:first-child img {
  border-radius: 40px 0 0 40px;
}
/* reason */
#reason {
  padding: 0;
}
#reason h2 {
  padding: .25em 0 .75em;
}
#reason h2 .fcPink span {
  font-size: 1.8em;
  line-height: 1;
}
#reason h2 > span {
  display: inline-block;
  padding: 0 1.75em;
  position: relative;
}
#reason h2 > span::before, #reason h2 > span::after {
  width: 8px;
  height: 88px;
  content: "";
  background: radial-gradient(circle, #e5006b 4px, transparent 4px) repeat-y left top -6px / 8px 20px;
  display: block;
  position: absolute;
  bottom: 0;
  transform-origin: top;
}
#reason h2 > span::before {
  left: 0;
  transform: translateY(25%) rotate(-45deg);
}
#reason h2 > span::after {
  right: 0;
  transform: translateY(25%) rotate(45deg);
}
#reason .reasons {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  counter-reset: reason_cnt;
}
#reason .reason_box {
  background: #e2f2fd;
  color: #0076c3;
  font-weight: bold;
  display: grid;
  grid-template-columns: 32.5% auto;
  align-items: center;
  column-gap: 5%;
  padding: 100px 10%;
  position: relative;
  z-index: 1;
  overflow: hidden;
}
#reason .reason_box:nth-child(2) {
  background: #fee8f2;
  color: #e5006b;
}
#reason .reason_box:nth-child(3) {
  background: #ffeddd;
  color: #ef7f1e;
}
#reason .reason_box:nth-child(4) {
  background: #e1f6e0;
  color: #3aa537;
}
#reason .reason_box::before {
  content: counter(reason_cnt, decimal-leading-zero);
  counter-increment: reason_cnt;
  font-size: 325px;
  font-weight: bold;
  line-height: 1;
  letter-spacing: .075em;
  -webkit-text-fill-color: rgb(0 118 195 / .2);
  -webkit-text-stroke: 3px #0076c3;
  text-stroke: 3px #0076c3;
  position: absolute;
  bottom: -.05em;
  right: -.08em;
  z-index: -1;
  opacity: .2;
}
#reason .reason_box:nth-child(2)::before {
  -webkit-text-fill-color: rgb(299 0 107 / .2);
  -webkit-text-stroke: 3px #e5006b;
  text-stroke: 3px #e5006b;
}
#reason .reason_box:nth-child(3)::before {
  -webkit-text-fill-color: rgb(239 127 30 / .2);
  -webkit-text-stroke: 3px #ef7f1e;
  text-stroke: 3px #ef7f1e;
}
#reason .reason_box:nth-child(4)::before {
  -webkit-text-fill-color: rgb(58 165 55 / .2);
  -webkit-text-stroke: 3px #3aa537;
  text-stroke: 3px #3aa537;
}
#reason .reason_box .icon img {
  width: 100%;
}
#reason .reason_box h3 {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 1em;
}
#reason .reason_box h3 span {
  font-size: 1.8em;
  line-height: 1;
  position: relative;
}
#reason .reason_box h3 span::before {
  width: 100%;
  height: 5px;
  content: "";
  background: #0076c3;
  display: block;
  border-radius: calc(1px/0);
  position: absolute;
  bottom: 0;
  left: 0;
}
#reason .reason_box:nth-child(2) h3 span::before {
  background: #e5006b;
}
#reason .reason_box:nth-child(3) h3 span::before {
  background: #ef7f1e;
}
#reason .reason_box:nth-child(4) h3 span::before {
  background: #3aa537;
}
#reason .reason_box .check > li {
  display: flex;
  align-items: center;
}
#reason .reason_box .check > li::before {
  width: 1.389em;
  height: 1.11em;
  content: "";
  background: url("images/icon_check.svg") no-repeat center /contain;
  display: block;
  margin-right: 5px;
}
#reason .reason_box .check span {
  font-size: 2.22em;
  line-height: 1;
  transform: translateY(-.25em);
}
#reason .reason_box .check sup {
  font-size: .75em;
  transform: translateY(-.75em);
}
#reason .reason_point {
  font-size: 24px;
  font-weight: bold;
  text-align: center;
  padding: 60px 5%;
}
#reason .reason_point [class^="fc"] {
  font-size: 1.9167em;
  border-bottom: 5px solid;
}
/* apply */
.apply_sec {
  background: #fff1ae url("images/illust_garland.svg") no-repeat left top / 700px auto;
  padding-bottom: 60px;
}
.apply_sec h2 {
  font-size: 30px;
  font-weight: 500;
  margin-bottom: 1em;
  position: relative;
}
.apply_sec h2::after {
  width: 335px;
  height: 261px;
  content: "";
  background: url("images/game_img.png") no-repeat center / contain;
  display: block;
  position: absolute;
  top: -20px;
  right: 0;
  z-index: 1;
}
.apply_sec h2 span {
  width: 1.667em;
  height: 1.667em;
  color: #fff;
  font-size: 2.6em;
  font-weight: bold;
  display: inline-grid;
  place-content: center;
  margin-top: .75rem;
  border-radius: .5rem;
}
.apply_sec h2 span + span {
  margin-left: .75rem;
}
.apply_sec .apply_box {
  background: #fff;
  font-weight: bold;
  text-align: center;
  padding: 30px;
  margin-inline: 40px;
  border-radius: 30px;
  position: relative;
}
.apply_sec .apply_box::before, .apply_sec .apply_box::after {
  content: "";
  display: block;
  position: absolute;
  bottom: -20px;
}
.apply_sec .apply_box::before {
  width: 230px;
  height: 414px;
  background: url("images/illust_boy.png") no-repeat center / contain;
  left: -40px;
}
.apply_sec .apply_box::after {
  width: 235px;
  height: 416px;
  background: url("images/illust_girl.png") no-repeat center / contain;
  right: -40px;
}
.apply_sec .apply_box h3 {
  font-size: 32px;
  font-weight: bold;
}
.apply_sec .apply_box .ribbon {
  background: #e5006b;
  color: #fff;
  font-size: 48px;
  font-weight: bold;
  padding: .25em 0;
  margin: .5em 120px;
  position: relative;
}
.apply_sec .apply_box .ribbon::before, .apply_sec .apply_box .ribbon::after {
  width: 190px;
  height: 100%;
  content: "";
  background: #e5006b;
  display: block;
  clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 40px 50%);
  position: absolute;
  top: 25px;
  right: calc(100% + 1px);
}
.apply_sec .apply_box .ribbon::after {
  clip-path: polygon(0 0, 100% 0, calc(100% - 40px) 50%, 100% 100%, 0 100%);
  left: calc(100% + 1px);
  right: auto;
}
.apply_sec .apply_box h5 {
  color: #e5006b;
  font-size: 32px;
  font-weight: bold;
  margin: .25em 0;
}
.apply_sec .apply_box h5::before {
  content: "＼";
  margin-right: .5em;
}
.apply_sec .apply_box h5::after {
  content: "／";
  margin-left: .5em;
}
.apply_sec .free_box {
  background: #fdecdd;
  font-size: 20px;
  display: inline-flex;
  align-items: center;
  column-gap: 40px;
  padding: .75em 5.8em .75em 2em;
  margin: 1em 0 .5em;
  border-radius: .5rem;
}
.apply_sec .free_box > p {
  text-align: left;
  line-height: 1.5;
}
.apply_sec .free_box .marker_white {
  background: linear-gradient(to bottom, transparent 50%, #fff 50%);
}
.apply_sec .free_box .tax {
  font-size: .7em;
}
.apply_sec .free_box .free {
  font-size: 4em;
  line-height: 1;
  position: relative;
}
.apply_sec .free_box .now {
  width: 3.8em;
  height: 3.8em;
  background: #e5006b;
  color: #fff;
  font-size: .25em;
  display: grid;
  place-content: center;
  border-radius: 50%;
  position: absolute;
  top: -1.3em;
  right: -4em;
  transform: rotate(10deg);
}
.apply_sec .free_box .now::before {
  width: 12px;
  height: 10px;
  content: "";
  background: #e5006b;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  position: absolute;
  bottom: 4px;
  left: 1px;
  transform: rotate(50deg);
}
.apply_sec .deadline {
  color: #ef7f1e;
  font-size: 24px;
}
.apply_sec .notes {
  line-height: 1.5;
}
/* voice */
#voice {
  background: #ffecd1 url("images/voice_bg.png") repeat left top / 322px auto;
  padding-bottom: 0;
}
#voice .voice_box {
  display: flex;
  align-items: center;
  column-gap: 50px;
}
#voice .voice_box.rev {
  flex-direction: row-reverse;
  margin-top: 50px;
}
#voice .voice_box .img {
  flex-shrink: 0;
}
#voice .voice_box h2 {
  text-align: center;
  margin-bottom: .25em;
}
#voice .balloon {
  background: #fff;
  padding: 1.5em 2em;
  border: 4px solid #ef7f1e;
  border-radius: 20px;
  position: relative;
}
#voice .balloon::before {
  width: 35px;
  height: 35px;
  content: "";
  background: #ef7f1e;
  display: block;
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 100%;
}
#voice .voice_box.rev .balloon::before {
  clip-path: polygon(0 0, 100% 50%, 0 100%);
  left: 100%;
  right: auto;
}
#voice .balloon + .balloon {
  margin-top: 20px;
}
#voice .voice_box .ttl {
  font-size: 30px;
  font-weight: bold;
}
#voice .voice_results {
  padding: 50px 0;
}
#voice .voice_results h2 {
  font-size: 34px;
  text-align: center;
  margin-bottom: 1em;
}
#voice .voice_results h2 > span {
  display: inline-block;
  line-height: 1.2;
  padding: 0 1.5em;
  position: relative;
}
#voice .voice_results h2 > span::before,#voice .voice_results h2 > span::after {
  width: 6px;
  height: 54px;
  content: "";
  background: radial-gradient(circle, #ef7f1e 3px, transparent 3px) repeat-y left top -5px / 6px 16px;
  display: block;
  position: absolute;
  bottom: 0;
  transform-origin: top;
}
#voice .voice_results h2 > span::before {
  left: 0;
  transform: translateY(25%) rotate(-45deg);
}
#voice .voice_results h2 > span::after {
  right: 0;
  transform: translateY(25%) rotate(45deg);
}
#voice .voice_results h2 .fcOrange {
  font-size: 1.3em;
  line-height: 1;
}
#voice .voice_results .results {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  column-gap: 20px;
}
#voice .voice_results .results > li {
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  display: grid;
  place-content: center;
  text-align: center;
  line-height: 1.4;
  aspect-ratio: 1/1.134;
  padding-bottom: 15%;
  position: relative;
  z-index: 1;
}
#voice .voice_results .results > li:nth-child(even) {
  color: #ef7f1e;
}
#voice .voice_results .results > li::before, #voice .voice_results .results > li::after {
  content: "";
  display: block;
  position: absolute;
}
#voice .voice_results .results > li::before {
  background: #ef7f1e;
  aspect-ratio: 1/1;
  border: 4px solid #ef7f1e;
  border-radius: 50%;
  inset: 0;
  z-index: -1;
}
#voice .voice_results .results > li:nth-child(even)::before {
  background: #fff;
}
#voice .voice_results .results > li::after {
  width: 100%;
  height: 35%;
  content: "";
  background: url("images/icon_ribon_solid.png") no-repeat center / contain;
  display: block;
  position: absolute;
  bottom: 0;
  z-index: -2;
}
#voice .voice_results .results > li:nth-child(even)::after {
  background-image: url("images/icon_ribon.png");
}
#voice .voice_results .results .num {
  font-size: 1.538em;
  line-height: 1;
}
#voice .voice_results .results sup {
  font-size: .5em;
}
#voice .voice_parent {
  background: #ef7f1e;
  color: #fff;
  font-size: 30px;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  padding: 1em 5%;
}
/* teacher */
#teacher {
  position: relative;
}
#teacher::before, #teacher::after {
  width: 700px;
  height: 378px;
  content: "";
  background: url("images/illust_garland_orange.svg") no-repeat center top / contain;
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}
#teacher::after {
  left: auto;
  right: 0;
  transform: scale(-1, 1);
}
#teacher .inner {
  display: flex;
  align-items: flex-end;
  column-gap: 50px;
}
#teacher h2 {
  margin-bottom: .5em;
}
#teacher .comment .fcOrange {
  font-size: 26px;
  font-weight: bold;
  margin: 1em 0 1.5em;
}
#teacher .comment .fcOrange::before {
  content: "“";
}
#teacher .comment .fcOrange::after {
  content: "”";
}
#teacher .info {
  background: #f2f2f2;
  padding: 45px;
  border-radius: 20px;
}
#teacher .info sup {
  font-size: .65em;
}
#teacher .img {
  flex-shrink: 0;
  border-radius: 20px;
  overflow: hidden;
}
#teacher .img p {
  background: #ef7f1e;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  text-align: center;
  padding: .5em;
}
/* price・course */
#price_course {
  display: grid;
  grid-template-columns: 1fr 1fr;
}
#price {
  background: #e3f4ff url("images/price_bg.png") no-repeat left center / auto 100%;
  padding-inline: 15%;
}
#course {
  background: #d2efd1 url("images/course_bg.png") no-repeat right center / auto 100%;
  padding-inline: 15%;
}
#price_course h2 {
  margin-bottom: .75em;
}
#price_course .box {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
}
#price dl {
  font-size: 24px;
  font-weight: bold;
  display: grid;
  grid-template-columns: 30% auto;
  gap: 10px 15px;
  line-height: 1.5;
}
#price dt {
  background: #0076c3;
  color: #fff;
  display: grid;
  place-content: center;
  padding: .5em 0;
  border-radius: 6px;
}
#price dd {
  background: linear-gradient(to right, #ccc 6px, transparent 4px) repeat-x left bottom / 10px 2px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  column-gap: .333em;
  padding: .5em 0;
}
#price .tax {
  font-size: .75em;
}
#price .notes {
  font-size: .667em;
  align-self: flex-end;
}
#course .box {
  text-align: center;
}
#course h3 {
  background: #3aa537;
  color: #fff;
  font-size: 26px;
  font-weight: bold;
  line-height: 1.5;
  padding: .25em;
  border-radius: 6px;
}
#course .label {
  background: #f2f2f2;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.5;
  padding: .4em;
  margin: .5em 0;
  border-radius: 6px;
}
#course .soft {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 10px;
  margin-top: 10px;
}
/* faq */
#faq h2 {
  margin-bottom: .75em;
}
#faq .faq {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
}
#faq .faq dl {
  display: grid;
  grid-template-rows: subgrid;
  grid-row: span 2;
  gap: 30px;
}
#faq .faq dt {
  font-size: 22px;
  font-weight: bold;
  display: flex;
  align-items: center;
  column-gap: 15px;
  line-height: 1.6;
}
#faq .faq dt::before {
  width: 2.167em;
  height: 2.167em;
  content: "Q";
  background: #3aa537;
  color: #fff;
  font-size: 1.36em;
  display: grid;
  place-content: center;
  flex-shrink: 0;
  border-radius: 50%;
}
#faq .faq dd {
  background: #f3f3f3;
  padding: 30px;
  border-radius: 20px;
}
/* flow */
#flow {
  background: #e3f4ff url("images/flow_bg.png") repeat left top / 322px auto;
  text-align: center;
}
#flow .copy {
  font-size: 30px;
  font-weight: bold;
  margin-bottom: 1.5em;
}
#flow .copy::before {
  content: "＼";
}
#flow .copy::after {
  content: "／";
}
#flow .copy .time {
  font-size: 1.333em;
  line-height: 1;
}
#flow .copy .time span {
  font-size: 1.5em;
}
#flow .flow {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: 30px;
}
#flow .flow > li {
  position: relative;
}
#flow .flow > li:not(:last-child)::after {
  width: 45px;
  height: 43px;
  content: "";
  background: url("images/icon_arrow_double_blue.svg") no-repeat center / contain;
  display: block;
  position: absolute;
  top: 130px;
  right: -37px;
}
#flow .flow h3 {
  color: #0076c3;
  font-size: 28px;
  font-weight: bold;
  margin: .25em 0;
}
#flow .info {
  max-width: 1000px;
  background: #fff;
  color: #0076c3;
  font-size: 20px;
  font-weight: bold;
  display: flex;
  justify-content: center;
  column-gap: 1em;
  line-height: 1.5;
  padding: .75em;
  margin: 2.5em auto 1.5em;
  border: 3px solid #0076c3;
  border-radius: calc(1px/0);
}
#flow .after_voice {
  color: #0076c3;
  font-weight: bold;
}
#flow .after_voice .parent, #flow .after_voice .parent span {
  font-size: 1.333em;
}
#flow .after_voice .parent span {
  color: #262626;
}
#flow .apply_box {
  margin-top: 2em;
}
#flow .apply_box p {
  font-size: 32px;
  font-weight: bold;
}
#flow .apply_box .apply_btn {
  margin-top: .5em;
}
/* access */
#access {
  padding: 0;
  position: relative;
}
#access .gmap {
  height: max(44.25vw, 768px);
  overflow: hidden;
}
#access .gmap iframe {
  width: 150%;
  height: 100%;
  margin-left: -45%;
}
#access .access {
  background: #ef7f1e;
  color: #fff;
  padding: 60px 4%;
  border-radius: 40px 0 0 0;
  position: absolute;
  bottom: 0;
  right: 0;
}
#access .access h2 {
  margin-bottom: .25em;
}
#access .access h2 + p {
  font-weight: bold;
  text-align: center;
  margin-bottom: 1.5em;
}
#access .access dl {
  display: grid;
  grid-template-columns: 30% auto;
  gap: 8px 2.5%;
}
#access .access dt {
  background: #fff;
  color: #ef7f1e;
  font-weight: bold;
  text-align: center;
  line-height: 1.5;
  padding: .5em 0;
  border-radius: calc(1px/0);
}
#access .access dd {
  place-content: center;
  padding: 0 0 2px 1em;
  border-bottom: 2px solid;
}
#access .access a {
  color: #fff;
}
/* line */
#line {
  background: #3aa537;
  color: #fff;
  padding: 40px 0;
}
#line .inner {
  display: flex;
  justify-content: center;
  align-items: center;
  column-gap: 20px;
}
#line p {
  font-size: 20px;
  font-weight: bold;
  line-height: 1.6;
}
#line p span {
  font-size: 1.5em;
}
#line .line_btn {
  flex-shrink: 0;
}
#line .line_btn a {
  background: #fff;
  color: #3aa537;
  font-size: 34px;
  font-weight: bold;
  display: flex;
  align-items: center;
  column-gap: 10px;
  padding: 10px 20px 10px 10px;
  border-radius: calc(1px/0);
}
#line .line_btn a:hover {
  transform: scale(1.02);
}
#line .line_btn a::before {
  width: 2.05em;
  height: 2.05em;
  content: "";
  background: url("images/icon_line.png") no-repeat center / contain;
  display: block;
  flex-shrink: 0;
}
@media screen and (max-width: 1560px) {
  /* reason */
  #reason .reason_box {
    grid-template-columns: 30% auto;
  }
  #reason .reason_box {
    padding-inline: 5%;
  }
  #reason .reason_box::before {
    font-size: 280px;
  }
  /* apply */
  .apply_sec {
    background-size: 45% auto;
  }
  #teacher::before, #teacher::after {
    width: 45%;
  }
}
@media screen and (max-width: 1199px) {
  /* 共通 */
  section {
    padding: 60px 0;
  }
  section h2 {
    font-size: 30px;
  }
  .apply_btn {
    margin-top: 30px;
  }
  .apply_btn a {
    width: auto;
    font-size: min(5.067vw, 24px);
    column-gap: .5em;
    padding: .75em 1em;
  }
  .apply_btn a > span {
    column-gap: 5px;
  }
  /* mainVisual */
  #mainVisual {
    height: inherit !important;
    min-height: inherit;
    max-height: inherit;
    padding: 30% 0 40%;
    overflow: hidden;
  }
  .mv_copy {
    font-size: min(4.267vw, 30px);
  }
  .mv_img li {
    height: auto !important;
  }
  .mv_img li:first-child {
    width: 50%;
    left: -3.125%;
  }
  .mv_img li:nth-child(2) {
    width: 50%;
    right: -3.645%;
  }
  .mv_img li:nth-child(3) {
    width: 45%;
    left: -2.6%;
  }
  .mv_img li:nth-child(4) {
    width: 45%;
    right: -2.5%;
  }
  .mv_img img, .mv_game img {
    width: 100%;
    height: 100%;
    object-fit: contain;
  }
  .mv_img li:nth-child(-n+2) img {
    object-position: top;
  }
  .mv_img li:nth-child(n+3) img {
    object-position: bottom;
  }
  .mv_game {
    width: 30%;
    height: auto;
    bottom: 15%;
  }
  /* campaign */
  #campaign .heading h2 {
    font-size: min(8.533vw, 48px);
  }
  #campaign .heading p {
    font-size: min(3.2vw, 16px);
    transform: translate(2em, -100%) rotate(10deg);
  }
  #campaign .heading p span::before, #campaign .heading p span::after {
    width: 1px;
  }
  #campaign .deadline {
    font-size: min(6.67vw, 32px);
  }
  #campaign .deadline .deadline_count {
    font-size: 2.5em;
  }
  #campaign .apply_btn {
    margin-top: 30px;
  }
  #campaign .apply_btn:before, #campaign .apply_btn::after {
    top: -73px;
  }
  #campaign .apply_btn:before {
    width: 58px;
    height: 104px;
    left: 20px;
  }
  #campaign .apply_btn::after {
    width: 59px;
    height: 104px;
    right: 20px;
  }
  /* trouble */
  #trouble {
    background-size: 125% auto;
  }
  #trouble .inner::before {
    width: 105px;
    height: 111px;
    background: url("images/trouble_illust01.png") no-repeat center / contain;
    bottom: -65px;
  }
  #trouble .inner::after {
    width: 64px;
    height: 126px;
    bottom: -60px;
  }
  #trouble h2 {
    margin: 0 0 1em;
  }
  #trouble h2 > span {
    display: inline;
  }
  #trouble h2 > span::before, #trouble h2 > span::after {
    content: none;
  }
  #trouble .balloon {
    max-width: 480px;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 4%;
    margin: 0 auto 30px;
  }
  #trouble .balloon > li {
    font-size: min(4.267vw, 20px);
  }
  #trouble .label {
    font-size: min(6.4vw, 30px);
  }
  #trouble .label > span {
    display: inline;
    padding: 0 .75em;
    -webkit-box-decoration-break: clone;
    box-decoration-break: clone;
  }
  #trouble .label + p {
    font-size: min(4.8vw, 24px);
    padding-bottom: 2em;
  }
  /* about */
  #about {
    background-size: 200% auto;
    background-position: left top;
    grid-template-columns: auto;
    row-gap: 3em;
  }
  #about .txt {
    padding: 0 5%;
  }
  #about h2 .label {
    line-height: 1.3;
    padding: 0 1.5em;
  }
  #about h2 .label::before, #about h2 .label::after {
    width: 4px;
    height: 34px;
    content: "";
    background: radial-gradient(circle, #0076c3 2px, transparent 2px) repeat-y left top -3px / 4px 10px;
  }
  #about h3 {
    font-size: 20px;
    padding-bottom: .5em;
    margin: 1em 0;
  }
  #about .img {
    padding-left: 5%;
  }
  #about .img li:not(:first-child) {
    width: 35%;
    position: absolute;
  }
  #about .img li:nth-child(2) {
    top: -30px;
    left: 0;
  }
  #about .img li:nth-child(3) {
    bottom: -60px;
  }
  #about .img li:first-child img {
    border-radius: 20px 0 0 20px;
  }
  /* reason */
  #reason {
    padding: 0;
  }
  #reason h2 {
    line-height: 1;
    padding: .75em 0;
  }
  #reason h2 > span {
    display: inline-grid;
    padding: 0 1.25em;
  }
  #reason h2 > span::before, #reason h2 > span::after {
    width: 6px;
    height: 48px;
    content: "";
    background: radial-gradient(circle, #e5006b 3px, transparent 3px) repeat-y left top -4px / 6px 14px;
  }
  #reason h2 > span::before {
    transform: translateY(0) rotate(-30deg);
  }
  #reason h2 > span::after {
    transform: translateY(0) rotate(30deg);
  }
  #reason .reasons {
    display: block;
  }
  #reason .reason_box {
    display: flex;
    flex-wrap: wrap;
    gap: .75em;
    padding: 40px 5%;
  }
  #reason .reason_box::before {
    font-size: min(40vw, 200px);
  }
  #reason .reason_box .icon {
    width: min(19.2vw, 120px);
  }
  #reason .reason_box .txt {
    display: contents;
  }
  #reason .reason_box h3 {
    font-size: min(5.867vw, 24px);
    margin-bottom: 0;
  }
  #reason .reason_box h3 span {
    font-size: 1.5em;
  }
  #reason .reason_box h3 span::before {
    height: 4px;
  }
  #reason .reason_box h3 ~ * {
    width: 100%;
  }
  #reason .reason_point {
    font-size: 16px;
    text-align: left;
    padding: 30px 5%;
  }
  #reason .reason_point [class^="fc"] {
    font-size: 1.5em;
    line-height: 1.2;
    border-bottom-width: 3px;
  }
  /* apply */
  .apply_sec {
    background-size: 40% auto;
    padding-bottom: 40px;
  }
  .apply_sec h2 {
    font-size: min(4.267vw, 24px);
  }
  .apply_sec h2::after {
    content: none;
  }
  .apply_sec h2 span {
    width: 1.5em;
    height: 1.5em;
    font-size: 2em;
    margin-top: .25em;
    border-radius: 4px;
  }
  .apply_sec h2 span + span {
    margin-left: 4px;
  }
  .apply_sec .apply_box {
    max-width: 680px;
    font-size: min(4vw, 18px);
    line-height: 1.6;
    padding: 1em;
    margin-inline: auto;
    border-radius: 10px;
    position: relative;
  }
  .apply_sec .apply_box::before, .apply_sec .apply_box::after {
    content: none;
  }
  .apply_sec .apply_box h3 {
    font-size: min(5.867vw, 32px);
  }
  .apply_sec .apply_box .ribbon {
    font-size: min(5.333vw, 36px);
    margin: .5em 0;
  }
  .apply_sec .apply_box .ribbon::before, .apply_sec .apply_box .ribbon::after {
    width: 10%;
    clip-path: polygon(0 0, 100% 0, 100% 100%, 0 100%, 50% 50%);
    top: 25%;
  }
  .apply_sec .apply_box .ribbon::after {
    clip-path: polygon(0 0, 100% 0, 50% 50%, 100% 100%, 0 100%);
  }
  .apply_sec .apply_box h5 {
    font-size: min(4.867vw, 30px);
    display: inline-block;
    position: relative;
  }
  .apply_sec .apply_box h5::before, .apply_sec .apply_box h5::after {
    position: absolute;
    bottom: 0;
  }
  .apply_sec .apply_box h5::before {
    margin-right: 0;
    left: 20%;
  }
  .apply_sec .apply_box h5::after {
    margin-left: 0;
    right: 20%;
  }
  .apply_sec .apply_box h5 + p {
    text-align: left;
  }
  .apply_sec .free_box {
    max-width: 380px;
    font-size: 1.125em;
    display: block;
    padding: .75em;
    margin-inline: auto;
    position: relative;
  }
  .apply_sec .free_box::before, .apply_sec .free_box::after {
    content: "";
    display: block;
    position: absolute;
    bottom: 0;
  }
  .apply_sec .free_box::before {
    width: 58px;
    height: 104px;
    background: url("images/illust_boy.png") no-repeat center / contain;
    left: -1.5em;
  }
  .apply_sec .free_box::after {
    width: 59px;
    height: 104px;
    background: url("images/illust_girl.png") no-repeat center / contain;
    right: -1.5em;
  }
  .apply_sec .free_box .free_txt {
    display: inline-block;
    margin-top: 1em;
  }
  .apply_sec .free_box .free {
    font-size: 3.5em;
  }
  .apply_sec .deadline {
    font-size: 1.2em;
    margin: 0 -1em;
  }
  .apply_sec .notes {
    font-size: 11px;
  }
  /* voice */
  #voice {
    background-size: 161px auto;
  }
  #voice .voice_box {
    flex-direction: column;
    row-gap: 30px;
  }
  #voice .voice_box.rev {
    flex-direction: column;
    margin-top: 40px;
  }
  #voice .voice_box .img {
    width: min(80%, 320px);
    margin: 0 auto;
  }
  #voice .balloon {
    font-size: 14px;
    padding: 1em;
    border-radius: 1em;
  }
  #voice .balloon::before {
    width: 25px;
    height: 25px;
    clip-path: polygon(50% 0, 100% 100%, 0 100%) !important;
    top: -25px;
    bottom: auto;
    left: 0 !important;
    right: 0 !important;
  }
  #voice .balloon + .balloon {
    margin-top: 30px;
  }
  #voice .voice_box .ttl {
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: .5em;
  }
  #voice .voice_results {
    padding: 30px 0;
  }
  #voice .voice_results h2 {
    font-size: min(6.4vw, 34px);
  }
  #voice .voice_results h2 > span {
    padding: 0 1.25em;
  }
  #voice .voice_results h2 > span::before,#voice .voice_results h2 > span::after {
    width: 4px;
    height: 44px;
    background: radial-gradient(circle, #ef7f1e 2px, transparent 2px) repeat-y left top -3px / 4px 10px;
  }
  #voice .voice_results h2 > span::before {
    transform: translateY(0) rotate(-30deg);
  }
  #voice .voice_results h2 > span::after {
    transform: translateY(0) rotate(30deg);
  }
  #voice .voice_results h2 .fcOrange {
    font-size: 1.2em;
  }
  #voice .voice_results .results {
    max-width: 480px;
    grid-template-columns: repeat(2, 1fr);
    margin-inline: auto;
  }
  #voice .voice_results .results > li {
    font-size: min(4.8vw, 26px);
  }
  #voice .voice_results .results > li:last-child {
    transform: translateX(50%);
  }
  #voice .voice_results .results > li::before {
    border-width: 3px;
  }
  #voice .voice_parent {
    font-size: min(5.867vw, 24px);
  }
  #voice .voice_parent .inline {
    display: inline;
  }
  /* teacher */
  #teacher::before, #teacher::after {
    width: 40%;
  }
  #teacher .inner {
    flex-direction: column;
    align-items: center;
  }
  #teacher .txt {
    display: contents;
  }
  #teacher h2 {
    order: 1;
  }
  #teacher .comment {
    order: 2;
  }
  #teacher .comment .fcOrange {
    width: fit-content;
    font-size: min(5.067vw, 24px);
    display: grid;
    text-align: center;
    line-height: 1.5;
    padding: 0 .5em;
    margin: .5em auto 1em;
    position: relative;
  }
  #teacher .comment .fcOrange::before, #teacher .comment .fcOrange::after {
    position: absolute;
    bottom: 0;
    left: 0;
  }
  #teacher .comment .fcOrange::after {
    left: auto;
    right: 0;
  }
  #teacher .info {
    padding: 1.25em;
    border-radius: 1em;
    order: 4;
  }
  #teacher .img {
    max-width: 320px;
    margin-bottom: 1em;
    border-radius: 1em;
    order: 3;
  }
  #teacher .img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    aspect-ratio: 1/1;
  }
  #teacher .img p {
    font-size: 18px;
  }
  /* price・course */
  #price_course {
    display: block;
  }
  #price , #course {
    padding-inline: 5%;
  }
  #price_course .box {
    padding: 1.25em;
    border-radius: 1em;
  }
  #price dl {
    font-size: 18px;
    grid-template-columns: 25% auto;
    gap: 5px 10px;
  }
  #course h3 {
    font-size: min(4.8vw, 26px);
  }
  #course .label {
    font-size: min(4.267vw, 24px);
  }
  #course .soft {
    max-width: 240px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-inline: auto;
  }
  /* faq */
  #faq .faq {
    grid-template-columns: auto;
    row-gap: 30px;
  }
  #faq .faq dl {
    display: block;
  }
  #faq .faq dt {
    font-size: 18px;
    font-weight: bold;
    display: flex;
    align-items: center;
    column-gap: .5em;
    line-height: 1.6;
    margin-bottom: .5em;
  }
  #faq .faq dd {
    padding: 1em;
    border-radius: 1em;
  }
  /* flow */
  #flow {
    background-size: 161px auto;
  }
  #flow h2 {
    margin-bottom: .5em;
  }
  #flow .copy {
    width: fit-content;
    font-size: min(4.5vw, 24px);
    margin: 0 auto 1em;
    position: relative;
  }
  #flow .copy::before, #flow .copy::after {
    position: absolute;
    top: .5em;
  }
  #flow .copy::before {
    left: 3em;
  }
  #flow .copy::after {
    right: 3em;
  }
  #flow .flow {
    width: fit-content;
    grid-template-columns: auto;
    row-gap: 40px;
    margin-inline: auto;
  }
  #flow .flow > li {
    display: grid;
    grid-template-columns: 120px auto;
    align-items: center;
    column-gap: 10px;
    text-align: left;
  }
  #flow .flow > li:not(:last-child)::after {
    width: 30px;
    height: 29px;
    margin: auto;
    top: auto;
    bottom: -35px;
    left: 0;
    right: 0;
    transform: rotate(90deg);
  }
  #flow .flow h3 {
    font-size: 22px;
  }
  #flow .info {
    width: min(100%, 320px);
    font-size: 16px;
    font-weight: bold;
    display: grid;
    place-items: flex-start;
    padding: .5em 0;
    margin: 1.5em auto 1em;
  }
  #flow .after_voice {
    text-align: left;
  }
  #flow .after_voice .parent, #flow .after_voice .parent span {
    font-size: 1.125em;
  }
  #flow .apply_box {
    margin-top: 1em;
  }
  #flow .apply_box p {
    font-size: 20px;
  }
  /* access */
  #access .gmap {
    height: min(100vw, 400px);
  }
  #access .gmap iframe {
    width: 100%;
    height: 100%;
    margin-left: 0;
  }
  #access .access {
    font-size: 15px;
    padding: 20px 5%;
    margin: 30px 5% 0;
    border-radius: 1em 1em 0 0;
    position: static;
  }
  #access .access h2 + p {
    text-align: left;
    margin-bottom: 1em;
  }
  #access .access dl {
    font-size: .875em;
    grid-template-columns: 89px auto;
    line-height: 1.5;
  }
  #access .access dt {
    display: grid;
    place-content: center;
  }
  #access .access dd {
    padding: .25em .5em calc(.25em + 2px);
  }
  /* line */
  #line {
    font-size: 16px;
    padding: 30px 0;
  }
  #line .inner {
    flex-direction: column;
    row-gap: 1em;
  }
  #line .line_btn a {
    font-size: 20px;
  }
}
/* --------------------------------------------------
    footer
-------------------------------------------------- */
#footer {
  background: #262626;
  color: #fff;
  padding-inline: 5%;
}
.notes_num {
  font-size: 12px;
  display: flex;
  justify-content: center;
  column-gap: 1em;
  line-height: 1.5;
  padding-top: 1rem;
  counter-reset: num;
}
.notes_num li {
  text-indent: -1.75em;
  padding-left: 1.75em;
}
.notes_num li::before {
  content: "※"counter(num)" ";
  counter-increment: num;
}
.copyright {
  font-size: 14px;
  text-align: center;
  padding: 1rem 0;
}
@media screen and (max-width: 1199px) {
  .notes_num {
    font-size: 10px;
    flex-direction: column;
    row-gap: .5em;
  }
  .copyright {
    font-size: 12px;
  }
}
/* --------------------------------------------------
    追従
-------------------------------------------------- */
#fltBnr {
  display: none;
  position: fixed;
  bottom: 30px;
  right: 0;
  z-index: 99;
}
#fltBnr li {
  margin-bottom: 10px;
}
#fltBnr li:not(.pamphlet) a {
  width: 300px;
  color: #fff;
  font-size: 18px;
  font-weight: bold;
  display: flex;
  align-items: center;
  padding: 10px 15px;
  border-radius: calc(1px/0) 0 0 calc(1px/0);
}
#fltBnr .apply a {
  background: #e5006b;
}
#fltBnr .line a {
  background: #3aa537;
}
#fltBnr a:hover {
  filter: brightness(1.1);
}
#fltBnr li:not(.pamphlet) a::before {
  width: 2em;
  height: 2em;
  content: "";
  display: block;
  flex-shrink: 0;
  margin-right: 10px;
}
#fltBnr .apply a::before {
  background: url("images/icon_mail.png") no-repeat center / contain;
}
#fltBnr .line a::before {
  background: url("images/icon_line.png") no-repeat center / contain;
}
#fixedTop {
  width: 59px;
  height: 59px;
  background: #0076c3 url("images/gotop_arrow.svg") no-repeat center left 61% / 34% auto;
  margin-left: auto;
  border-radius: calc(1px/0) 0 0 calc(1px/0);
  cursor: pointer;
}
#fixedTop:hover {
  filter: brightness(1.1);
}
@media screen and (max-width: 1199px) {
  #fltBnr {
    bottom: 0;
    left: 0;
  }
  #fltBnr ul {
    width: fit-content;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    column-gap: 2px;
    line-height: 1;
  }
  #fltBnr li {
    margin-bottom: 0;
  }
  #fltBnr li:not(.pamphlet) a, #fltBnr .pamphlet a {
    width: auto;
    height: 4.8em;
    font-size: min(3.467vw, 16px);
    display: grid;
    place-content: center;
    place-items: center;
    row-gap: 5px;
    padding: 0 .75em;
    border-radius: 0;
    border-radius: .5em .5em 0 0;
  }
  #fltBnr .pamphlet a {
    background: #ef7f1e;
    color: #fff;
    font-weight: bold;
    display: flex;
    flex-direction: column;
    align-items: center;
    row-gap: 5px;
    border-radius: .5em .5em 0 0;
  }
  #fltBnr li:not(.pamphlet) a::before {
    width: 2.4em;
    height: 2.4em;
    margin-right: 0;
  }
  #fltBnr .pamphlet a::before {
    width: 2.4em;
    height: 2.4em;
    content: "";
    background: url("images/icon_pamphlet.png") no-repeat center / contain;
    display: block;
    flex-shrink: 0;
  }
  #fixedTop {
    border-radius: 1em 0 0 0;
    background-position: center;
    position: absolute;
    bottom: 0;
    right: 0;
  }
}