@charset "UTF-8";
/*-----------------------------------------------------------
import
------------------------------------------------------------*/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100;300;400;500;700;900&display=swap');

/*-----------------------------------------------------------
reset
------------------------------------------------------------*/
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
dialog,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  vertical-align: baseline;
  background: transparent;
}

body {
  line-height: 1;
}

article,
aside,
dialog,
figure,
footer,
header,
hgroup,
nav,
section {
  display: block;
}

ul,
ol {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

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

a {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: baseline;
  background: transparent;
}

ins {
  background-color: #ffff99;
  color: #000000;
  text-decoration: none;
}

mark {
  background-color: #ffff99;
  color: #000000;
  font-style: italic;
  font-weight: bold;
}

del {
  text-decoration: line-through;
}

abbr[title],
dfn[title] {
  border-bottom: 1px dotted #000000;
  cursor: help;
}

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

hr {
  display: block;
  height: 1px;
  border: 0;
  border-top: 1px solid #ccc;
  margin: 1em 0;
  padding: 0;
}

input,
select {
  vertical-align: middle;
}

/*-----------------------------------------------------------
base
------------------------------------------------------------*/
* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

a:link {
  color: #000;
  text-decoration: none;
  transition: .3s ease-in-out;
}

a:hover {
  text-decoration: none;
  opacity: 0.7;
}

a:visited {
  color: #000;
  text-decoration: none;
  transition: .3s ease-in-out;
}

html {
  font-size: 100%;
}

body {
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.6rem;
  font-weight: 500;
  color: #000;
  line-height: 1.5;
}

@media only screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
  }
}

.pc {
  display: block;
}

.sp {
  display: none;
}

@media screen and (max-width: 767px) {
  .pc {
    display: none;
  }

  .sp {
    display: block;
  }
}

/*element*/
.commonHeader {
  background: #013960 url("../img/commonHeaderBack.png") no-repeat bottom 30% center/cover;
  padding: 40px 0;
  position: relative;
}

.commonHeader::after {
  display: inline-block;
  content: "";
  width: 0;
  height: 0;
  margin: auto;
  border-color: #013960 transparent transparent transparent;
  border-style: solid;
  border-width: 20px 22px 0;
  position: absolute;
  top: 100%;
  right: 0;
  left: 0;
  z-index: 2;
}

.commonHeader h2 {
  font-size: 2.5rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  line-height: 1;
}

.areaLead {
  color:#676a70;
  font-size: 1.6rem;
  text-align: center;
  line-height: 1.6;
  margin-bottom: 1.5rem;
}
.why-remote2 {
    padding: 2rem 0;
    background: #DBEAFB;
}

.remote-benefits {
    max-width: 1000px;
    margin: 0 auto;
}

.benefit-highlight {
    background: white;
    padding: 1rem 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    text-align: left;
    font-size: 1rem;
}
.section-title{
  text-align: center;
}


@media only screen and (max-width: 767px) {
  .commonHeader {
    background: #013960;
    padding: 20px 0;
  }

  .commonHeader::after {
    top: 99%;
  }

  .commonHeader h2 {
    font-size: 2.4rem;
    line-height: 1.2;
  }

  .areaLead {
    font-size: 1.2rem;
    margin: 0 !important;
  }
}

/* header */
header {
  background: #fff;
  width: 100%;
  height: 80px;
  padding: 0px 2%;
  -moz-box-shadow: 0px 10px 18px -10px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 10px 18px -10px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 10px 18px -10px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  height: 80px;
}

header .headerInner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 80px;
}

header .logo {
  width: 170px;
  height: auto;
}

header .logo a {
  display: block;
}

header .logo img {
  display: block;
  max-width: 100%;
  height: auto;
}

header .headerRight {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

header nav {
  margin-right: 40px;
}

header nav ul {
  display: flex;
  justify-content: flex-start;
}

header nav ul li {
  font-size: 1.0vw;
}

header nav ul li a::after {
  content: "|";
  margin: 0 15px;
}

header nav ul li:last-child a::after {
  content: none;
}

header .headerButton {
  width: 30%;
}

header .headerButton a {
  opacity: 1;
}

header .headerButton img {
  width: 100%;
}

@media only screen and (max-width: 767px) {
  header {
    height: 60px;
    padding: 10px 2%;
  }

  header .headerInner {
    height: 40px;
  }

  header .logo {
    width: 180px;
  }

  header .headerRight {}

  header nav {
    display: none;
  }

  header .headerButton {
    width: 90%;
  }

  header .headerButton img {
    width: 100%;
  }
}

/* mainVisual */
.mainVisual {
  display: block;
  width: 100%;
  height: 600px;
  margin-top: 80px;
  position: relative;
}

.mainVisual .mainTxt {
  background: rgba(11, 137, 79, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 600px;
  padding: 0 1em;
  z-index: 998;
  position: absolute;
}

.mainVisual .mainTxtInner {
  margin-top: -10px;
}

.mainVisual .mainTxtInner h1 {
  font-size: 3.0rem;
  font-weight: 500;
  color: #fff;
  letter-spacing: 0.25rem;
  text-align: center;
  line-height: 1.25;
  margin: -25px 0 0;
  -moz-text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.14);
  -webkit-text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.14);
  text-shadow: 3px 3px 3px rgba(0, 0, 0, 0.14);
}

.mainVisual .mainTxtInner h1 a {
  font-size: 4.4rem;
  font-weight: 700;
  letter-spacing: 0.65rem;
  opacity: 1;
  background: linear-gradient(transparent 80%, #B7E956 0%);
}

.mainVisual .mainTxtInner h1 a img {
  max-width: 100%;
  position: relative;
  bottom: -8px;
  padding: 0 10px 0 2px;
}

.mainVisual .mainTxtInner h1 strong {
  font-weight: 500;
  font-size: 12.0rem;
}

.mainVisual .mainTxtInner h1 span {
  font-size: 6.0rem;
}

.mainVisual .mainTxtInner h2 {
  font-size: 2.0rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
  line-height: 1;
  letter-spacing: 0.35rem;
  padding: 10px 0;
  border: 2px solid #fff;
  width: 70%;
  margin: auto;
}

.mainVisual .mainTxtInner p {
  color: #fff;
  text-align: center;
}

.mainVisual .mainTxtInner .headMedal {
  width: 50%;
  margin: 15px auto;
}

.mainVisual .mainTxtInner .headMedal img {
  width: 100%;
  height: auto;
}

.mainVisual .mainTxtInner .headAchievement {
  font-size: 1.4rem;
  font-weight: 300;
  line-height: 1;
  margin-top: 10px;
}

.mainVisual .mainTxtInner .headContact {
  font-weight: 600;
  letter-spacing: 0.35rem;
  margin-top: 10px;
}

.mainVisual .mainVisualInner {
  background: url(../img/topImage.png) no-repeat center center/cover;
  width: 100%;
  height: 600px;
}

@media only screen and (max-width: 767px) {
  .mainVisual {
    display: block;
    margin-top: 60px;
    height: 400px
  }

  .mainVisual .mainTxt {
    background: rgba(11, 137, 79, 0.6);
    width: 100%;
    height: 400px;
    position: absolute;
    bottom: 0;
    left: 0;
    padding: 1em 0;
  }

  .mainVisual .mainTxtInner {
    width: 100%;
    margin-top: -30px;
  }

  .mainVisual .mainTxtInner h1 {
    font-size: 2.2rem;
    letter-spacing: 0.1rem;
    text-align: center;
    margin: -22px auto 10px;
  }

  .mainVisual .mainTxtInner h1 a {
    font-size: 3.6rem;
    background: linear-gradient(transparent 75%, #B7E956 75%);
  }

  .mainVisual .mainTxtInner h1 a img {
    padding: 0;
  }

  .mainVisual .mainTxtInner h1 strong {
    font-size: 10rem;
    font-weight: 400;
  }

  .mainVisual .mainTxtInner h1 span {
    font-size: 4.4rem;
  }

  .mainVisual .mainTxtInner h2 {
    font-size: 1.5rem;
    letter-spacing: 0.05rem;
    width: auto;
    margin: 0 4%;
    padding: 7px 0 8px;
  }

  .mainVisual .mainTxtInner p {}

  .mainVisual .mainTxtInner .headMedal {
    width: auto;
    margin: 0 2rem 0.5em;
  }

  .mainVisual .mainTxtInner .headMedal img {
    max-width: 100%;
    height: auto;
    margin: auto;
  }

  .mainVisual .mainTxtInner .headAchievement {
    font-size: 1.0rem;
    margin-bottom: 0.5em;
  }

  .mainVisual .mainTxtInner .headContact {
    font-weight: 500;
    letter-spacing: 0.05rem;
    margin: 10px 4% 0;
  }

  .mainVisual .mainTxtInner .headContact a {
    font-size: 1.8rem;
    padding: 8px 3vw;
  }

  .mainVisual .mainTxtInner .headContact a span {
    font-size: 1.5rem;
  }

  .mainVisual .mainVisualInner {
    background: url(../img/topImage_sp.png) no-repeat center center/cover;
    width: 100%;
    height: 400px;
  }
}

/* speechBalloon */
.speechBalloon {
  padding: 0;
  width: 100%;
  position: relative;
  z-index: 999;
}

.speechBalloon__image {
  margin-top: -20px;
}

.speechBalloon__image img {
  width: 70%;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .speechBalloon__image {
    margin-top: -30px;
  }

  .speechBalloon__image img {
    width: 90%;
    margin: auto;
  }
}

/* contactBlock */
.contactBlock {
  max-width: 100%;
  padding: 20px 0;
  text-align: center;
}

.contactBlock h2 {
  font-size: 3.4rem;
  font-weight: 600;
  line-height: 1.3;
  color: #0CBD6D;
  padding: 0 0 25px;
}

.contactBlock h3 {
  font-size: 2.0rem;
  font-weight: 400;
  letter-spacing: .2rem;
  padding: 0 0 10px;
}

.contactBlock h3 span {
  font-size: 2.0rem;
  font-weight: 900;
  margin: 0 20px
}

.contactBlock .contactSubText {
  font-weight: 400;
  line-height: 3.0rem;
  padding: 0 0 25px;
}

.contactBlock a {
  opacity: 1;
}

.contactBlock a img {
  width: 50%;
  margin: auto;
}

@media only screen and (max-width: 767px) {
  .contactBlock {
    width: 90%;
    margin: 0 auto;
  }

  .contactBlock h2 {
    font-size: 2.6rem;
    line-height: 1.3;
  }

  .contactBlock h3 {
    font-size: 1.2rem;
    padding: 0 0 2px;
  }

  .contactBlock h3 span {
    font-size: 1.4rem;
    margin: 0 10px
  }

  .contactBlock .contactSubText {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .contactBlock a img {
    width: 90%;
  }
}

/* schoolAbout */
.schoolAbout {
  max-width: 100%;
  margin-bottom: 40px;
  padding: 40px 0;
  overflow: hidden;
}

.schoolAbout h2 {
  font-size: 2.4rem;
  text-align: center;
}

.schoolAbout h2 span {
  font-size: 3.0rem;
  color: #FF760C;
}

.schoolAbout h2 strong {
  font-size: 4.0rem;
  color: #0fa05e;
  padding: 0 10px;
  border-bottom: 7px double #0fa05e;
}

.schoolAbout h2 strong span {
  font-size: 3.5rem;
  color: #0fa05e;
}

.schoolAbout .jobChange {
  margin-top: 80px;
  position: relative;
}

.schoolAbout .jobChange::before {
  background-color: #ebf9ed;
  display: block;
  content: "";
  width: 100vw;
  height: 360px;
  margin: auto;
  transform: skew(-30deg, 0deg);
  transform-origin: center center;
  position: absolute;
  top: -40px;
  right: 0;
  left: -40px;
  z-index: -1;
}

.schoolAbout .jobChange h3 {
  font-size: 3.3rem;
  text-align: center;
  line-height: 1;
  position: relative;
}

.schoolAbout .jobChange h3::before,
.schoolAbout .jobChange h3::after {
  display: inline-block;
  position: absolute;
}

.schoolAbout .jobChange h3::before {
  content: "＼";
  margin-left: 10px;
}

.schoolAbout .jobChange h3::after {
  content: "／";
  margin-left: -40px;
}

.schoolAbout .jobChange h3 span {
  background: linear-gradient(transparent 75%, #fef39c 0%);
  padding: 0 50px;
}

.schoolAbout .jobChange h3 small {
  font-size: 2.5rem;
}

.schoolAbout .jobChange .topSlider {
  display: flex;
  justify-content: space-between;
  max-width: 1150px;
  margin: 30px auto 0;
}

.schoolAbout .jobChange .topSlider li {
  width: 18%;
}

.schoolAbout .jobChange .topSlider li img {
  display: block;
  max-width: 100%;
  height: auto;
}

.schoolAbout .jobChange p {
  font-size: 1.2rem;
  text-align: right;
  line-height: 1;
  max-width: 1150px;
  margin: 10px auto 0;
}

@media only screen and (max-width: 767px) {
  .schoolAbout {
    margin-bottom: 20px;
    padding: 20px 0;
    overflow: hidden;
  }

  .schoolAbout h2 {
    font-size: 1.7rem;
  }

  .schoolAbout h2 span {
    font-size: 1.8rem;
  }

  .schoolAbout h2 strong {
    font-size: 2.4rem;
    line-height: 1.8;
    padding: 0 5px;
  }

  .schoolAbout h2 strong span {
    font-size: 2.2rem;
  }

  .schoolAbout .jobChange {
    margin-top: 60px;
  }

  .schoolAbout .jobChange::before {
    width: 120vw;
    margin: auto;
    transform: skew(-25deg, 0deg);
    top: -20px;
    right: 0;
    left: -30px;
  }

  .schoolAbout .jobChange h3 {
    font-size: 2.4rem;
    line-height: 1.4;
  }

  .schoolAbout .jobChange h3::before,
  .schoolAbout .jobChange h3::after {
    content: none;
  }

  .schoolAbout .jobChange h3 span {
    padding: 0;
  }

  .schoolAbout .jobChange h3 small {
    font-size: 1.8rem;
  }

  .schoolAbout .jobChange .topSlider {
    display: block;
    max-width: 100%;
  }

  .schoolAbout .jobChange .topSlider li {
    margin: 0 5px;
  }

  .schoolAbout .jobChange .topSlider li img {
    display: block;
    max-width: 100%;
    height: auto;
  }

  .schoolAbout .jobChange p {
    font-size: 1.2rem;
    text-align: center;
    max-width: 100%;
  }
}

/* campaignArea */
.campaignArea {
  max-width: 100%;
  height: 360px;
  margin-top: 80px;
  margin-bottom: 55px;
  position: relative;
  overflow: hidden;
}

.campaignArea::after {
  background: #e3e9f4;
  display: block;
  content: "";
  width: 100vw;
  height: 360px;
  margin: auto;
  transform: skew(-30deg, 0deg);
  transform-origin: center center;
  position: absolute;
  top: 0;
  right: -200px;
  left: 0px;
  z-index: -1;
}

.campaignInner {
  max-width: 960px;
  height: auto;
  margin: auto;
  position: relative;
}

.campaignInner::before {
  font-size: 8.0rem;
  font-weight: 400;
  color: #fff;
  content: "Campaign";
  display: block;
  position: absolute;
  top: -30px;
  left: 80px;
}

.campaignInner .presentText {
  margin: auto;
  position: absolute;
  top: 110px;
  right: 0;
  left: 0;
  z-index: 1;
}

.campaignInner figure.notePc {
  width: 300px;
  height: auto;
  position: absolute;
  top: 40px;
  left: -12%;
}

.campaignInner figure.notePc img {
  display: block;
  max-width: 100%;
  height: auto;
}

.campaignInner h4 {
  font-size: 4.0rem;
  font-weight: 600;
  color: #456396;
  text-align: center;
  line-height: 1.2;
}

.campaignInner p {
  font-size: 1.4rem;
  text-align: center;
  margin-top: 10px;
}

.campaignInner figure.ico10 {
  width: 220px;
  height: auto;
  position: absolute;
  top: 100px;
  right: -6%;
}

.campaignInner figure.ico10 img {
  display: block;
  max-width: 100%;
  height: auto;
}

@media only screen and (max-width: 767px) {
  .campaignArea {
    height: 320px;
    margin-top: 60px;
    margin-bottom: 0;
  }

  .campaignArea::after {
    width: 200vw;
    height: 280px;
    transform: skew(-25deg, 0deg);
    right: 0;
    left: -40px;
  }

  .campaignInner {
    max-width: 100%;
    padding: 60px 0 0;
  }

  .campaignInner::before {
    font-size: 5.0rem;
    top: -20px;
    left: 40px;
  }

  .campaignInner .presentText {
    position: static;
  }

  .campaignInner .campaignBox {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    margin: 10px 2em;
  }

  .campaignInner figure.notePc {
    width: 280px;
    position: static;
  }

  .campaignInner h4 {
    font-size: 2.8rem;
  }

  .campaignInner figure.ico10 {
    width: 160px;
    position: relative;
    top: unset;
    right: unset;
    left: -20px;
  }

  .campaignText {
    font-size: 1.2rem;
    text-align: center;
    margin: 0 1em 40px;
  }
}

/* freeReason */
.freeReason {
  position: relative;
  padding: 0;
  margin-top: 40px;
}

.freeReason__inner {}

.freeReason__inner .freeReasonBox {
  background: #fff;
  width: 85%;
  margin: 0 auto 50px;
  padding: 40px 20px;
  position: relative;
  border: 1px solid #59B184;
  box-shadow: 0px 0px 10px 0px rgba(163, 194, 168, 0.6);
}

.freeReason__inner .freeReasonBox>p {
  font-size: 1.6rem;
  line-height: 1.8;
  margin-top: 40px;
  padding: 0 30px;
}

.freeReason__inner .freeReasonBox>p span {
  color: #FF770D;
  font-weight: 700;
}

.freeReason__inner .freeReasonBox h3 {
  font-size: 3.8rem;
  font-weight: 700;
  color: #05A85E;
  line-height: 1.4;
  text-align: center;
  position: relative;
  display: flex;
  justify-content: center;
}

.freeReason__inner .freeReasonBox h3 span {
  background: linear-gradient(transparent 75%, #ffce5b 75%);
}

.freeReason__inner .freeReasonBox__inner {
  margin-top: 40px;
  display: flex;
  justify-content: space-around;
}

.freeReason__inner .freeReasonBox__inner .txtbox {
  width: calc(100% - 460px);
  display: inline-block;
}

.freeReason__inner .freeReasonBox__inner .txtbox .sp {
  display: none;
}

.freeReason__inner .freeReasonBox__inner h4 {
  font-size: 1.8rem;
  font-weight: 700;
  color: #05A85E;
  margin-bottom: 10px;
}

.freeReason__inner .freeReasonBox__inner p {
  font-size: 1.4rem;
  line-height: 1.8;
}

.freeReason__inner .freeReasonBox__inner p span {
  color: #FF770D;
  font-weight: 700;
}

.freeReason__inner .freeReasonBox__inner p+h4 {
  margin-top: 20px;
}

.freeReason__inner .freeReasonBox__inner figure {
  width: 360px;
  margin-bottom: 0;
  display: inline-block;
}

.freeReason__inner .freeReasonBox__inner figure img {
  display: block;
  max-width: 100%;
  height: auto;
}

@media screen and (max-width: 768px) {
  .freeReason {
    background-color: #D7F3DC;
    margin-bottom: 20px;
  }

  .freeReason__inner {
    padding: 2em 1.5em 0.1em;
  }

  .freeReason__inner .freeReasonBox {
    width: auto;
    margin-bottom: 40px;
    padding: 2.5em 1.5em 1em;
    border: none;
    border-radius: 5px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  }

  .freeReason__inner .freeReasonBox>p {
    font-size: 1.4rem;
    font-weight: 400;
    margin-top: 20px;
  }

  .freeReason__inner .freeReasonBox h3 {
    font-size: 2.2rem;
  }

  .freeReason__inner .freeReasonBox__inner {
    display: block;
    margin-top: 0;
  }

  .freeReason__inner .freeReasonBox__inner .txtbox {
    width: auto;
    margin: 0 0 20px;
  }

  .freeReason__inner .freeReasonBox__inner .txtbox figure {
    margin-top: 15px;
    margin-bottom: 0;
  }

  .freeReason__inner .freeReasonBox__inner .txtbox .sp {
    display: block;
  }

  .freeReason__inner .freeReasonBox__inner .txtbox h4 {
    margin-bottom: 0;
    text-align: center;
  }

  .freeReason__inner .freeReasonBox__inner .txtbox h4+p {
    margin-top: 10px;
  }

  .freeReason__inner .freeReasonBox__inner h4 {
    font-size: 2.0rem;
  }

  .freeReason__inner .freeReasonBox__inner p {
    font-size: 1.4rem;
    font-weight: 400;
  }

  .freeReason__inner .freeReasonBox__inner figure {
    width: auto;
    display: flex;
    justify-content: center;
  }

  .freeReason__inner .freeReasonBox__inner .pc {
    display: none;
  }

  .freeReason__inner .freeReasonBox__inner figure img {
    max-width: 450px;
    width: 100%;
    margin: auto;
  }
}

/* featureArea */
.featureArea {
  background: #d7f3dc;
  position: relative;
  padding: 0;
  margin: 30px 0;
}

.featureArea .featureAreaInner {
  padding: 100px 0 60px;
}

.featureArea .featureBox {
  background: #fff;
  width: 95%;
  margin: 0 auto 80px;
  padding: 80px 80px 60px;
  border-radius: 5px;
  position: relative;
  -moz-box-shadow: 3px 3px 10px 0px rgba(163, 194, 168, 0.3);
  -webkit-box-shadow: 3px 3px 10px 0px rgba(163, 194, 168, 0.3);
  box-shadow: 3px 3px 10px 0px rgba(163, 194, 168, 0.3);
}

.featureArea .featureBox.tableBox {
  margin-bottom: 0;
  padding: 80px 60px 60px;
}

.featureArea .featureBox .featureNum {
  font-size: 2.5rem;
  font-weight: 600;
  background: #09ac60;
  color: #fff;
  text-align: center;
  width: 90px;
  height: auto;
  margin: auto;
  padding: 12px 0;
  position: absolute;
  top: -40px;
  right: 0;
  left: 0;
}

.featureArea .featureBox .featureNum span {
  font-size: 1.3rem;
  display: block;
}

.featureArea .featureBox h3 {
  font-size: 3.0rem;
  color: #0fa05e;
  text-align: center;
  line-height: 1.2;
}

.featureArea .featureBox h3 strong {
  background: linear-gradient(transparent 70%, #ffce5b 70%);
}

.featureArea .featureBox .featureInner {
  display: flex;
  justify-content: space-between;
  margin-top: 40px;
}

.featureArea .featureBox .featureInner p {
  font-size: 1.8rem;
  line-height: 1.8;
  width: calc(100% - 440px);
}

.featureArea .featureBox .featureInner p a {
  color: #551a8b;
  text-decoration: underline;
  line-height: 1.8;
  width: calc(100% - 440px);
}

.featureArea .featureBox.tableBox p.tableLead {
  font-size: 1.8rem;
  text-align: center;
  line-height: 1.8;
  margin-top: 20px;
}

.featureArea .featureBox .featureInner p span,
.featureArea .featureBox.tableBox p.tableLead span {
  font-weight: 600;
  color: #ff770d;
}

.featureArea .featureBox.tableBox p.tableComplement {
  font-size: 1.4rem;
  font-weight: 400;
  text-align: center;
  line-height: 1.6;
  margin-top: 20px;
}

.featureArea .featureBox .featureInner figure {
  width: 400px;
}

.featureArea .featureBox .featureInner figure img {
  display: block;
  width: 100%;
  height: auto;
}

.featureArea table {
  font-size: 1.6rem;
  width: 100%;
  margin-top: 20px;
  border: 3px solid #05a85e;
  border-collapse: collapse;
}

.featureArea table th {
  background: #ccc;
  color: #fff;
  width: 15%;
  padding: 1em .3em;
  border: solid 1px #ddd;
}

.featureArea table th:first-child {
  background: #fff;
}

.featureArea table th.main {
  font-size: 1.6rem;
  background: #05a85e;
  color: #fff;
  width: 23%;
  border-right: 4px solid #05a85e;
  border-left: 4px solid #05a85e;
}

.featureArea table .shead {
  font-weight: 600;
}

.featureArea table td {
  font-size: 1.4rem;
  font-weight: 400;
  font-feature-settings: 'palt';
  letter-spacing: 0.05em;
  border: solid 1px #ddd;
  padding: 1.0em .8em;
}

.featureArea table td span {
  font-size: 1.2rem;
}

.featureArea table td.main {
  font-size: 1.7rem;
  font-weight: 600;
  background: #dceee5;
  border-right: 4px solid #59b184;
  border-left: 4px solid #59b184;
}

.featureArea table td.main .main-text {
  text-align: left;
}

.featureArea table td.main .main-text span {
  font-size: 1.4rem;
  font-weight: 500;
  display: block;
}

.featureArea .clientlist-image {
  margin: 9% 0 2%;
}

@media only screen and (max-width: 767px) {
  .featureArea {}

  .featureArea .featureAreaInner {
    padding: 70px 0 50px;
  }

  .featureArea .featureBox {
    width: auto;
    margin: 0 1em 70px;
    padding: 40px 20px 20px;
  }

  .featureArea .featureBox:last-child {
    margin-bottom: 0;
  }

  .featureArea .featureBox.tableBox {
    padding: 40px 20px 20px;
  }

  .featureArea .featureBox .featureNum {
    font-size: 2.0rem;
    line-height: 1.2;
    width: 60px;
    padding: 8px 0;
    top: -30px;
  }

  .featureArea .featureBox .featureNum span {
    font-size: 1.2rem;
    font-weight: 500;
  }

  .featureArea .featureBox h3 {
    font-size: 2.3rem;
    line-height: 1.3;
  }

  .featureArea .featureBox .featureInner {
    display: block;
    margin-top: 20px;
  }

  .featureArea .featureBox .featureInner p {
    font-size: 1.5rem;
    line-height: 1.6;
    width: auto;
  }

  .featureArea .featureBox.tableBox p.tableLead {
    font-size: 1.5rem;
    text-align: left;
    line-height: 1.6;
  }

  .featureArea .featureBox.tableBox p.tableComplement {
    font-size: 1.3rem;
    text-align: left;
    line-height: 1.4;
    margin-top: 10px;
  }

  .featureArea .featureBox .featureInner figure {
    width: auto;
    margin-top: 20px;
  }

  .featureArea .featureBox .featureInner figure img {
    display: block;
    width: 100%;
    height: auto;
  }

  .featureArea .featureBox figure {
    margin-top: 10px;
  }

  .featureArea .featureBox figure img {
    display: block;
    width: 100%;
    height: auto;
  }

  .featureArea .clientlist-image {
    margin: 9% 0 2%;
  }
}

/* case-area */
.case-area {
  width: 100%;
}

.case-wrapper {
  width: 100%;
  margin: 70px auto 0;
}

.case-block {
  width: auto;
}

.case-title {
  text-align: center;
}

.case-title h2 {
  font-size: 3.0rem;
}

.case-title h2 span {
  background: #2fc682;
  color: #fff;
  display: inline-block;
  line-height: 1;
  margin-bottom: 3px;
  padding: 5px 15px 7px;
}

.case-block img {
  width: 70%;
  margin: 0 auto 20px;
}

.case-block .case-text {
  padding: 25px 0 15px;
  text-align: center;
}

.case-block .case-text p {
  font-size: 1.6rem;
  font-weight: 400;
}

@media screen and (max-width: 767px) {
  .case-area {
    width: auto;
  }

  .case-wrapper {
    display: block;
    width: auto;
    margin: 30px 20px 0;
  }

  .case-block {
    width: auto;
    margin-bottom: 40px;
  }

  .case-title {
    padding: 10px 0px 0;
  }

  .case-title h2 {
    font-size: 1.6rem;
  }

  .case-title h2 span {
    background: #2fc682;
    color: #fff;
    display: inline-block;
    line-height: 1;
    margin-bottom: 3px;
    padding: 5px 10px 7px;
  }

  .case-block img {
    margin: -10px auto -30px;
  }

  .case-block .case-text {
    padding: 20px 20px 0;
    text-align: left;
  }

  .case-block .case-text p {
    font-size: 1.6rem;
  }
}

/* coursearea */
.coursearea {
  background-color: rgba(241, 241, 237, 0.5);
  padding: 0 0 60px;
  margin-top: 50px;
}

.coursearea ul {
  width: 86%;
  margin: 70px auto 20px;
  display: flex;
  justify-content: space-around;
}

.coursearea ul li {
  width: 430px;
  background-color: #fff;
}

.coursearea ul li figure {
  width: 100%;
  margin: 0;
}

.coursearea ul li figure img {
  max-width: 100%;
  height: auto;
  margin: 0 auto;
  display: block;
}

.coursearea ul li h3 {
  text-align: center;
  font-size: 2.2rem;
  font-weight: 700;
  margin-top: 20px;
}

.coursearea ul li h3::after {
  content: "";
  display: block;
  width: 35px;
  height: 5px;
  border-radius: 10px;
  margin: 10px auto 0;
}

button{
    margin: 0;
    padding: 0;
    background: none;
    border: none;
    border-radius: 0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.coursearea ul li.greenbox {
  border: 1px solid #05A85E;
}

.coursearea ul li.greenbox h3 {
  color: #05A85E;
}

.coursearea ul li.greenbox h3::after {
  background-color: #05A85E;
}

.coursearea ul li.greenbox p a {
  background-color: #05A85E;
  border: 2px solid #05A85E;
}

.coursearea ul li.greenbox p a:hover {
  color: #05A85E;
  background-color: #EFFDF1;
}

.coursearea ul li.purplebox {
  border: 1px solid #4359B3;
}

.coursearea ul li.purplebox h3 {
  color: #4359B3;
}

.coursearea ul li.purplebox h3::after {
  background-color: #4359B3;
}

.coursearea ul li.purplebox p a {
  background-color: #4359B3;
  border: 2px solid #4359B3;
}

.coursearea ul li.purplebox p a:hover {
  color: #4359B3;
  background-color: #F2F4FD;
}

.coursearea ul li p {
  font-size: 1.6rem;
  font-weight: 400;
  margin: 20px 30px 0;
  min-height: 190px;
}

@media screen and (max-width: 768px) {
  .coursearea {
    margin-top: 30px;
  }

  .coursearea ul {
    width: auto;
    display: block;
    margin: 3em 1.5em 0;
  }

  .coursearea ul li {
    width: auto;
  }

  .coursearea ul li .coursetxt {
    padding: 0 1em;
  }

  .coursearea ul li h3 {
    font-size: 1.8rem;
  }

  .coursearea ul li.greenbox {
    margin-bottom: 20px;
  }

  .coursearea ul li p {
    font-size: 1.4rem;
  }

  .coursearea ul li p {
    margin: 20px 0;
    min-height: auto;
  }
}

/* flowArea */
.flowArea {
  background: #f1f1ed;
  max-width: 100%;
  font-weight: 400;
  text-align: center;
}

.flowInner {
  margin: auto;
  padding: 60px 50px;
}

.flowInner picture {
  display: block;
  margin: 30px 0 10px;
}

.flowInner .areaLead {
  font-size: 1.4rem;
}

.flowInner picture img {
  max-width: 100%;
  height: auto;
}

.flowInner p {
  font-size: 1.2rem;
}

@media only screen and (max-width: 767px) {
  .flowInner {
    max-width: 100%;
    margin: 0 1em;
    padding: 40px 0;
  }

  .flowInner picture {
    margin-top: 20px;
  }

  .flowInner h3 {
    padding: 15px 30px;
    border-radius: 2px;
    text-align: center;
  }
}

/* introductionCompany */
.introductionCompany {
  max-width: 100%;
  padding: 100px 0 40px;
}

.introductionCompany h2 {
  font-size: 4.0rem;
  font-weight: 600;
  color: #0fa05e;
  text-align: center;
  line-height: 1;
}

.introductionCompany p {
  font-size: 1.6rem;
  color: #0fa05e;
  text-align: center;
  line-height: 1;
  margin-top: 20px;
}

.introductionCompany .logoSlider {
  margin-top: 30px;
  overflow: hidden;
}

@media only screen and (max-width: 767px) {
  .introductionCompany {
    padding: 50px 0;
  }

  .introductionCompany h2 {
    font-size: 3.0rem;
    line-height: 1.4;
  }

  .introductionCompany h2 span {
    display: none;
  }

  .introductionCompany p {
    font-size: 1.5rem;
    margin-top: 10px;
  }

  .introductionCompany .logoSlider {
    margin-top: 20px;
  }

  .logoSlider .slick-slide img {
    max-width: 100%;
  }
}

/* voice-area */
.graduate-voices{
  background: #ffffff;
}
.voice-area {
  width: 100%;
  margin: 40px 0 30px;
}

.voice-area h2 {
  font-size: 2.5rem;
  color: #1f2937;
  text-align: center;
  line-height: 1;
}

.voice-wrapper {
  display: flex;
  justify-content: center;
  width: 100%;
}



@media screen and (max-width: 767px) {
  .voice-area {
    width: auto;
    padding:  0;
    margin: 1rem 0;
  }

  .voice-area h2 {
    font-size: 1.8rem;
  }

  .voice-area h2::after {
    margin: 10px auto 0;
  }

  .voice-wrapper {
    display: block;
    width: auto;
    margin: 0;
  }
}

/*==================================================
卒業生の声 スライダー
===================================*/
.slider {
  width: 94%;
  margin: 0 auto;
}

.slider img {
  width: 50%;
  height:50%;
}

.slider .slick-slide {
  margin: 1rem;
}


.prev-arrow,
.next-arrow {
  display: inline-block;
  top: -42%;
  cursor: pointer;
}

.prev-arrow:before,
.next-arrow:before {
  content: '';
  width: 50px;
  height: 50px;
  background: #98defc33;
  border-radius: 50%;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 1;
  opacity: 0.9;
}

.prev-arrow:after,
.next-arrow:after {
  content: '';
  width: 15px;
  height: 15px;
  border: 0;
  border-top: solid 3px #44a7d2;
  border-right: solid 3px #44a7d2;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 2;
}

.prev-arrow:before {
  left: -10px;
}

.prev-arrow:after {
  left: 10px;
  transform: rotate(225deg);
}

.next-arrow:before {
  right: -10px;
}

.next-arrow:after {
  right: 10px;
  transform: rotate(45deg);
}

/*ドットナビゲーションの設定*/
.dots-class button {
  display: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: none;
  padding: 0;
  border: none;
  background-color: transparent;
}

.dots-class {
  display: flex;
  justify-content: center;
  margin-top: -1.5rem;
}

.dots-class li {
  width: 15px;
  height: 15px;
  background-color: #97defc;;
  border-radius: 50%;
  margin-right: 10px;
  cursor: pointer;
  transition: background-color .5s ease;
}

.dots-class li.slick-active {
  background-color: #2463eb;
}

.dots-class li:hover {
  background-color: #2463eb;
}

.dots-class li:last-child {
  margin-right: 0;
}

@media screen and (max-width: 767px) {
  .dots-class {
    margin-top: 0;
  }
}

/* operatingCompany */
.operatingCompany {
  max-width: 100%;
}

.companyInner {
  display: flex;
  justify-content: space-between;
  max-width: 960px;
  margin: auto;
}



.companyText h3 {
  font-size: 1.8rem;
  line-height: 1;
}

.companyText p {
  font-size: 0.8rem;
  font-weight: 400;
  margin-top: 20px;
}

.companyMap {
  width: 560px;
  height: 300px;
}

.companyMap iframe {
  display: block;
}

@media only screen and (max-width: 767px) {
  .companyInner {
    display: block;
    max-width: 100%;
    margin: 0 1em;
    padding: 40px 0;
  }

  .companyText {
    width: auto;
  }

  .companyText h3 {
    font-size: 1.8rem;
  }

  .companyText p {
    font-size: 1.5rem;
    margin-top: 10px;
  }

  .companyMap {
    width: auto;
    height: 300px;
    margin-top: 20px;
  }
}

/* faq-area よくあるご質問 */
.faq-area {
  margin: 4em 0 5em;
}

.faq-area_inner {
  padding: 0 60px;
}

.faq-area h2 {
  color: #212f68;
  font-size: 4.0rem;
  margin-bottom: 1em;
  text-align: center;
  line-height: 1;
}

.faq-area h2::after {
  background: #2fc682;
  display: block;
  content: "";
  width: 30px;
  height: 5px;
  margin: 20px auto 0;
  border-radius: 5px;
}

.faq-area h3 {
  color: #11a05e;
}

.faq-area p {
  line-height: 2em;
  margin: 0.5em 1em 2em;
}

@media screen and (max-width: 767px) {
  .faq-area {
    margin: 3em 0;
  }

  .faq-area_inner {
    padding: 0 20px;
  }

  .faq-area h2 {
    font-size: 2.4rem;
    line-height: 1.5;
  }

  .faq-area h2::after {
    margin: 10px auto 0;
  }

  .faq-area p {
    line-height: 1.6em;
    margin: 0.5em 1em 1.4em;
  }
}

/* contactForm */
.contactForm {
  background: #eff1f7;
  padding: 0;
  padding-top: 30px;
}

.contactInner {
  width: 95%;
  margin: auto;
  padding: 70px 0;
}

.contactForm form {
  background: #ffffff6e;
  height: 100%;
  margin: 0 auto;
  padding: 5px 20px;
  border-radius: 10px;
  align-content: center;
}

.contactForm form h2 {
  margin-bottom: 0;
  text-align: center;
  color: #1645A1;
}

.contactForm form h2:after {
  background: #CB0C3E;
}

.contactForm  input[type="text"],
.contactForm  input[type="tel"],
.contactForm  input[type="email"] {
  width: 100%;
  height: 45px;
  border: 1px solid #ddd;
  border-radius: 3px;
  box-sizing: border-box;
  padding: 1em;
  font-size: 1.2rem;
}

.comment textarea {
  width: 100%;
  height: 150px;
  border: 1px solid #ddd;
  border-radius: 3px;
  box-sizing: border-box;
  padding: 1em;
  font-size: 1.6rem;
}

.contactForm form h3 {
  font-size: 1.2rem;
  margin: 0.5rem;
  color: #424242;
}

.contactForm form h3 span {
  font-size: .8em;
  background: #2986F3;
  color: #fff;
  padding: .2em .5em;
  border-radius: 3px;
  margin: 0 0 0 .5em;
  font-weight: normal;
}

.contactForm form p {
  font-size: 1.4rem;
  width: 100%;
  text-align: center;
  line-height: 1rem;
  margin: 2rem auto;
}

.contactForm form p a {
  color: #ff9e0d;
}

.contactForm form p.att {
  font-size: 1.0rem;
  text-align: left;
  line-height: 1.3;
  width: 100%;
  margin: 0;
  color: #333;
}

.contactForm  input[type="submit"] {
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  background: #ff770d;
  color: #fff;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 60px;
  margin: 0 auto;
  border: none;
  border-radius: 30px;
  transition: .3s;
  cursor: pointer;
}

.contactForm  input[type="submit"]:hover {
  opacity: .7;
}

.contactForm form .row {
  display: grid;
  text-align: left;
}

.contactForm form .row .w50 {
  width: 100%;
}

.contactForm form .row .w30 {
  width: 30%;
}

.contactForm form .row .w70 {
  width: 68%;
}

.terms-modal-txt {
  font-size: 1.0rem;
}
.terms-modal {
    display: none; /* 初期状態では非表示 */
    position: fixed;
    z-index: 1999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden; /* モーダル全体のスクロールを無効に */
    background-color: rgba(0, 0, 0, 0.4);
}

/* モーダルコンテンツ */
.terms-modal-content {
    display: flex;
    flex-direction: column;
    background-color: #fefefe;
    margin: 10% auto;
    padding: 0 20px;
    border: 1px solid #888;
    width: 60%;
    max-height: 80vh; /* コンテンツが画面に収まるように最大高さを設定 */
    overflow-y: hidden;
    word-wrap: break-word; /* 長い単語を適切に折り返す */
    @media screen and (max-width: 780px) {
        width: 80%;
    }
}

/* クローズボタン */
.terms-modal-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    align-self: flex-end;
    cursor: pointer;
    @media screen and (max-width: 780px) {
        font-size: 22px;
    }
}
.terms-modal-close:hover,
.terms-modal-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

/* モーダル内テキスト */
.terms-modal-txt {
  max-height: calc(40vh - 40px);
  overflow-y: auto;
  padding: 0 20px 20px;
  flex: 1;
	text-align: left;
  font-size: 1.4rem;
  @media screen and (max-width: 780px) {
      font-size: 1.2rem;
  }
}
.terms-modal-txt ol {
	padding-left: 10px;
	list-style-type: decimal;
}
.terms-modal-txt ul {
	padding-left: 20px;
	font-weight: 500;
}
.terms-modal-txt .list-num {
	margin: 1rem 0 2rem;
	font-weight: 600;
}
.terms-modal-txt .circle {
	list-style-type: circle;
	margin-left: 10px;
}
.terms-modal-txt .square {
	list-style-type: square;
	margin-left: 10px;
}
.terms-modal-txt .space {
	margin-bottom: 20px;
}
.terms-modal-txt .txt-bold {
	font-weight: 600;
}
.terms-modal-txt .no-type {
	list-style-type: none;
}
.terms-modal-txt p {
	margin: 10px 0 20px 10px;
	font-weight: 500;
}
.terms-modal-txt .numbered-list {
	list-style-type: none;
	padding-left: 20px;
	counter-reset: item;
}
.terms-modal-txt .numbered-list li {
	text-indent: -30px;
}
.terms-modal-txt .numbered-list li::before {
	content: counter(item) "）";
	counter-increment: item;
	margin-right: 10px;
}

/*form*/
.selectBox {
  position: relative;
  border: 1px solid #ddd;
  border-radius: 3px;
  height: 45px;
}

.selectBox:after {
  content: "";
  background: url(../img/selectArrow.png) no-repeat;
  width: 10px;
  height: 6px;
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto 0;
  right: .5em;
  pointer-events: none;
}

select {
  width: 100%;
  height: 100%;
  font-size: 1.2rem;
  box-sizing: border-box;
  padding: 0.5em;
  text-indent: 0.01px;
  text-overflow: ellipsis;
  background: #ffffff;
  vertical-align: middle;
  border: none;
  outline: none;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

select option {
  background-color: #fff;
  color: #333;
  white-space: normal;
}

select::-ms-expand {
  display: none;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #828c9a;
}

@media only screen and (max-width: 767px) {
  .contactForm {}

  .contactInner {
    margin: 2rem;
    width: auto;
    padding: 0;
  }

  .contactForm form {
    max-width: 100%;
    padding: 20px;
  }
  .contactForm form h3 {
    font-size: 1.4rem;
  }

  .contactForm form h2 {
    margin-bottom: 1em;
  }

  .contactForm  input[type="text"],
  .contactForm  input[type="tel"],
  .contactForm  input[type="email"] {
    font-size: 1.0rem;
    height: auto;
    padding: 0.5rem;
  }

  .contactForm form textarea {
    font-size: 1.5rem;
    height: auto;
    padding: .5em;
  }

  .contactForm form h3 {
    font-size: 1.5rem;
    margin: 0.5rem 0;
  }

  .contactForm form h3 span {
    font-size: .8em;
    padding: .2em .5em;
    border-radius: 3px;
    margin: 0 0 0 .5em;
    font-weight: normal;
  }

  .contactForm form p {
    width: auto;
    line-height: 1.6;
    margin: 10px auto;
  }

  .contactForm  input[type="submit"] {
    background: #ff9e0d;
    width: 100%;
    height: 60px;
    color: #fff;
    border: none;
    border-radius: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    text-align: center;
    font-size: 1.8rem;
    transition: .3s;
  }

  .contactForm form .row {
    display: grid;
  }

  .contactForm form .row .w50 {
    width: 100%;
  }

  .contactForm form .row .w30 {
    width: 30%;
  }

  .contactForm form .row .w70 {
    width: 68%;
  }

  /*form*/
  .selectBox {
    height: auto;
  }

  select {
    font-size: 1.0rem;
    height: auto;
  }
}

/*mail confirm*/
.alartBox {
  padding: 2em 0;
  background: #fff;
}

.btn {
  font-family: 'Noto Sans JP', "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  display: flex;
  margin: 0 auto;
  border: none;
  border-radius: 5px;
}

.btn.send {
  background: #ff770d;
  color: #fff;
  margin-bottom: 1em;
}

.btn.prev {}

.btn:hover {
  opacity: 0.7;
}

.error_messe {
  color: #CB0C3E;
}

.validation_error {
  display: none;
  color: #FF6B6B;
}

.formTable {
  width: 90%;
  margin: 2em auto;
}

.formTable th {
  width: 30%;
  text-align: left;
  padding: .5em;
}

.sideScroll {
  width: 100%;
  overflow-x: scroll;
  border: 2px solid #ccc;
}

.selectDatetimeTable {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  color: #666;
  font-size: 1.1rem;
}

.selectDatetimeTable__cell {
  height: 40px;
  text-align: center;
  vertical-align: middle;
}

.selectDatetimeTable__disable {
  background-color: #f1f1f1;
}

.selectDatetimeTable__leftHeading {
  height: 40px;
  padding: 0 10px;
  text-align: center;
  vertical-align: middle;
  position: sticky;
  left: 0;
  background-color: white;
}

.selectDatetimeTable__topHeading {
  padding: 0 20px;
  height: 30px;
  text-align: center;
  vertical-align: middle;
}

.selectDatetimeTable td,
.selectDatetimeTable th {
  border: 1px solid #ccc;
  border-spacing: 0;
}

@media screen and (max-width: 1000px) {
  .selectDatetimeTable__leftHeading {
    padding: 0 5px;
  }

  .selectDatetimeTable__topHeading {
    padding: 0 5px;
  }
}

.selectDatetimeTable__icon {
  height: 30px;
  color: #fa7e02;
}

.selectDatetimeTable--negative {
  color: #C4C4C4;
}

.selectDatetimeTable__label {
  width: 100%;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.selectDatetimeTable__labelText {
  display: none;
  color: #FFF;
  font-size: 1.0rem;
}

.selectDatetimeTable__radio {
  display: none;
}

.selectDatetimeTable__radio:hover~label>div>.selectDatetimeTable__icon {
  opacity: .3;
}

.selectDatetimeTable__radio:checked+label {
  background-color: #fa7e02;
}

.selectDatetimeTable__radio:checked~label>.selectDatetimeTable__labelText {
  display: block;
}

.selectDatetimeTable__radio:checked~label>div>.selectDatetimeTable__icon {
  display: none;
}

.selectDatetimeTable__flexBox {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.selectDatetimeTable__flexBox--center {
  justify-content: center;
}

.feather {
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none;
}

.inlineBtn {
  display: flex;
  justify-content: space-between;
  width: 100%;
  margin: 1em 0;
}

.inlineBtn>button {
  width: 80px;
  height: 25px;
  font-size: 1.4rem;
  background-color: #fff;
  border-radius: 5px;
}

.inlineBtn__enable {
  border: solid 1.5px #59b184;
  color: #59b184;
}

.inlineBtn__disable {
  border: solid 1.5px #c4c4c4;
  color: #c4c4c4;
}

.icon_explain {
  width: 100%;
  text-align: center;
  margin-top: 0.5em;
}

.icon_explain-icon {
  height: 13px;
  color: #fa7e02;
  vertical-align: middle;
}

.icon_explain-text {
  color: #666;
  font-size: 1.3rem;
}

.age_decline-modalButton {
  padding: 0.5em 1em;
  border: 0;
  border-radius: 0.25em;
  background: initial;
  background-color: #59b184;
  color: #fff;
  font-size: 1em;
}

.age_decline-modalButton:hover {
  cursor: pointer;
  background-image: linear-gradient(rgba(0, 0, 0, .1), rgba(0, 0, 0, .1));
}

.swal2-popup {
  font-size: 16px !important;
}

/* 同意チェック */
.agreement {
  cursor: pointer;
  font-size: 14px;
  text-align: center;
  margin: 15px 0;
}
.agreement span {
    cursor: pointer;
    color: #3f5b8b;
    text-decoration: underline;
}

.agreement a {
  color: #3f5b8b;
  text-decoration: underline;
}

.agreement__small {
  font-size: 12px;
  margin: 10px 0;
}

.agreement>input[type="checkbox"] {
  display: none;
}

/* カスタムチェックボックスのスタイル */
.agreement>input[type="checkbox"]+label {
  height: 20px;
  position: relative;
  padding-left: 25px;
  cursor: pointer;
  user-select: none;
}

.agreement>input[type="checkbox"]+label:before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #fff;
}

.agreement__small>input[type="checkbox"]+label:before {
  width: 15px;
  height: 15px;
}

/* チェックされた状態のスタイル */
.agreement>input[type="checkbox"]:checked+label:before {
  background-color: #FA7E02;
  border-color: #FA7E02;
}

.agreement>input[type="checkbox"]:checked+label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.agreement>input[type="checkbox"]:checked+label:after {
  content: "";
  position: absolute;
  left: 5px;
  top: 2px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.agreement__small>input[type="checkbox"]:checked+label:after {
  width: 4px;
  height: 8px;
}

/* footer */
footer {
  background: #013960;
  position: relative;
  padding: 0;
}

footer .gotoTop {
  display: none;
  position: fixed;
  bottom: 2em;
  right: 1em;
  width: 80px;
  height: 80px;
  z-index: 999;
}

footer .gotoTop img {
  width: 100%;
  height: auto;
}

footer .footerInner {
  max-width: 100%;
  margin: auto;
  padding: 20px 0;
}

footer .footerInner ul {
  display: flex;
  justify-content: center;
  align-items: center;
}

footer .footerInner ul li:after {
  color: #fff;
  content: "|";
  margin: 0 10px;
  font-size: 0.9rem;
}

footer .footerInner ul li:last-child:after {
  display: none;
}

footer .footerInner ul li a {
  font-weight: 400;
  color: #fff;
  text-decoration: none;
  font-size: 0.9rem;
}

footer .footerInner p {
  font-size: 1.4rem;
  margin-bottom: 3em;
}

footer .copy {
  background: #003458;
  padding: 20px 0;
}

footer .copy p {
  font-size: 0.9rem;
  font-weight: 400;
  color: #fff;
  text-align: center;
}

@media only screen and (max-width: 767px) {
  footer .gotoTop {
    width: 60px;
    height: 60px;
    position: fixed;
    right: 1em;
    bottom: 2em;
  }
}

/* フッター固定 */
.wrapper {
  min-height: 100vh;
  height: 100vh;
  position: relative;
  padding-bottom: 160px;
  box-sizing: border-box;
}

.wrapper-footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
  -webkit-box-sizing: content-box;
  -webkit-appearance: button;
  appearance: button;
  border: none;
  box-sizing: border-box;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
  display: none;
}

input[type="submit"]:focus,
input[type="button"]:focus {
  outline-offset: -2px;
}

/* PCプレゼント ポップアップ start */
.present-popup-overlay-bg {
  background: rgb(0, 0, 0, .6);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
}

.present-popup-inner {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 500px;
  min-width: 280px;
  max-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 99999;
  -webkit-animation: fadein .5s;
  -moz-animation: fadein .5s;
  -ms-animation: fadein 0.5s;
  -o-animation: fadein .5s;
  animation: fadein .5s;
}

.present-popup-close {
  position: absolute;
  top: -10px;
  right: -10px;
  width: 29px;
  height: 29px;
  display: flex;
  border: 1px solid #fff;
  align-items: center;
  justify-content: center;
  background: #fff;
  cursor: pointer;
  border-radius: 50%;
  z-index: 999999;
}

.present-popup-close:after,
.present-popup-close:before {
  width: 14px;
  height: 2px;
  content: "";
  position: absolute;
  left: 7px;
  top: 12px;
  background: #667075;
}

.present-popup-close:before {
  -ms-transform: rotate(-45deg);
  transform: rotateZ(-45deg);
}

.present-popup-close:after {
  -ms-transform: rotate(45deg);
  transform: rotateZ(45deg);
}

.present-popup-close {
  width: 23px;
  height: 23px;
}

.present-popup-close:after,
.present-popup-close:before {
  width: 11px;
  height: 2px;
  left: 6px;
  top: 9px;
}

.present-popup-inner img {
  max-width: 100%;
  max-height: 500px;
  opacity: 1 !important;
}

#presentPopup {
  display: none;
}

/* アニメーション */
@keyframes fadein {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@-moz-keyframes fadein {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@-webkit-keyframes fadein {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

@-o-keyframes fadein {
  from {
    opacity: 0
  }

  to {
    opacity: 1
  }
}

/* PCプレゼント ポップアップ end */

.formContents {
  text-align: center;
  margin-top: 80px;
  padding: 100px 0;
}

.formContents a {
  font-size: 1.7rem;
  background: #ff770d;
  color: #fff;
  display: block;
  text-align: center;
  text-decoration: none;
  line-height: 1.2;
  width: 420px;
  margin: 40px auto 0;
  padding: 20px 3vw;
  border: 2px solid #ff770d;
  border-radius: 5px;
  transition: .3s;
}

.formContents a:hover {
  background: #ffecce;
  color: #ff770d;
  opacity: 1;
}

.formContents .formTable {
  max-width: 960px;
  margin: auto;
}

.formContents .formTable {
  width: 100%;
  margin-top: 20px;
  margin-bottom: 60px;
  border-collapse: collapse;
}

.formContents .formTable tr {}

.formContents .formTable tr th {
  background: #f3f3f3;
  padding: 20px;
  border: 1px solid #ccc;
}

.formContents .formTable tr td {
  text-align: left;
  padding: 20px;
  border: 1px solid #ccc;
}

@media only screen and (max-width: 767px) {
  .formContents {
    margin-top: 60px;
    padding: 60px 0;
  }

  .formContents h2 {
    font-size: 1.8rem;
  }

  .formContents p {
    margin: 0 1em;
  }

  .formContents a {
    font-size: 1.5rem;
    width: auto;
    margin: 40px 1.5em 0;
    padding: 15px 2vw;
  }

  .formContents .formTable {
    max-width: 100%;
    width: auto;
    margin: 20px 1em 40px;
  }

  .formContents .formTable tr th {
    padding: 10px;
  }

  .formContents .formTable tr td {
    padding: 10px;
  }


}



---------------------------------------------------



* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
body {
  font-family: 'Hiragino Sans', 'ヒラギノ角ゴシック', 'Yu Gothic', 'メイリオ', sans-serif;
  line-height: 1.6;
  color: #333;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 2rem;
}

/* Header */
.header {
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1rem 1rem;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: #2563eb;
  text-decoration: none;
}

.nav {
  display: flex;
  gap: 2rem;
}

.nav a {
  text-decoration: none;
  color: #374151;
  font-weight: 500;
  transition: color 0.3s;
}

.nav a:hover {
  color: #FF770D;
}

.header-cta {
  background: #FF770D;
  color: white;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  transition:  0.3s;
}
.header-cta a{
  color: white;
}

.header-cta:hover {
  background: #ffab1f;
}

/* Urgency Banner */
.urgency-banner {
  background: linear-gradient(90deg, #f59e0b 0%, #d97706 100%);
  color: white;
  text-align: center;
  padding: 0.75rem;
  font-weight: 600;
  margin-top: 80px;
}

/* Hero Section */
.hero {
  background: url(../img/bg_color2.png)no-repeat center center/cover;
  color: #1545a1;
  padding: 7rem 0 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  height: 600px;
  box-sizing: border-box;
}
.hero-right{
  max-width: 100%;
  height: 600px;
}
.hero-right img{
  max-width: 100%;
  height: 470px;
}

.hero-top {
  display: flex;
  justify-content: space-around;
  align-items: center;
}
.hero-top img {
  width: 9rem;
  height: auto;
}
.hero-text{
  max-height: 600px;
  max-width: 600px;
}

.hero-text h1 {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
  color: #1545a1;
}

.hero-text .subtitle {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  opacity: 0.9;
}

.hero-text .highlight {
  font-size: 1.1rem;
  margin-bottom: 2rem;
  background: rgba(255, 255, 255, 0.55);
  padding: 1rem;
  border-radius: 8px;
  border-left: 4px solid #FF770D;
}

.hero-form {
  background: rgba(255, 255, 255, 0.45);
  backdrop-filter: blur(10px);
  padding: 0.5rem 1rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  max-width: 100%;
}

.hero-form h3 {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  text-align: center;
}
.hero-text p{
  font-size: 0.8rem;
  text-align: center;
  margin-top: 0.5rem;
}

.form-group {
  margin-bottom: 1rem;
}

.form-group input {
  width: 100%;
  padding: 1rem;
  border: none;
  border-radius: 8px;
  font-size: 1rem;
  background: rgba(255, 255, 255, 0.9);
}

.btn {
  display: inline-block;
  padding: 1rem 2rem;
  background: #FF770D;
  color: white;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  width: 100%;
}


.btn-primary-top img{
  max-width: 100%;
}
.btn-primary img{
  max-width: 60%;
}
.cta-btn{
  padding-top: 2rem;
  text-align: center;
}
.cta-btn p{
  margin: 0 !important;
}
.cta-btn-top{
margin: 0;
}


 /* Section Styles */
.section {
  padding: 2rem 0;
}

.section-header {
  text-align: center;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1f2937;
}

.section-header p {
  font-size: 1.2rem;
  color: #6b7280;
  max-width: 600px;
  margin: 0 auto;
}

/* Empathy Section */
.empathy-section {
  position: relative;
  text-align: center;
}
.empathy-section::after {
  background: url(../img/tri.png) no-repeat center;
  background-size: 10%;
  content: "";
  display: block;
  width: 100%;
  height: 114px;
  position: absolute;
  top: 85%;
}

.concerns-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.concern-text {
  font-size: 1.2rem;
}

.concern-item {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}
.concern-item2 {
  background: white;
  padding: 2rem;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  text-align: center;
  transition: transform 0.3s;
}

.concern-item img{
  display: inline;
  width: 100%;
}
.concern-item2 img{
  display: inline;
  width: 100%;
}

.concern-item:hover {
  transform: translateY(-5px);
}

.concern-icon {
  font-size: 3rem;
  margin-bottom: 1rem;
}

/* Solution Section */
.solution-section {
  background: white;
}

.solution-content {
  display: grid;
  gap: 4rem;
  align-items: center;
}
.solution-text {
  text-align: center;
}
.solution-text h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #1645A1;
}

.solution-text p {
  font-size: 1.0rem !important;
  margin-bottom: 2rem;
  color: #4b5563;
}
.solution-text a {
 color:#ffffff
}
.sp-solution-text{
  display: none;
}
.hp-solution-text{
  display: block;
}

.stats-grid {
  display: grid;
  /* grid-template-columns: repeat(2, 1fr); */
  gap: 1.5rem;
}

.stat-item {
  text-align: center;
  padding: 1.5rem;
  background: #f8fafc;
  border-radius: 12px;
}
.stat-number {
  font-size: 2rem;
  font-weight: 700;
  color: #2986F3;
  display: block;
}
.stat-label {
  font-size: 0.9rem;
  color: #6b7280;
}

/* Problem Section */
.problem-section {
  background: #ffffff;
  display: flex;
  text-align: center;
}
.problem-section2 {
  background: #f8fafc;
  display: flex;
  text-align: center;
}
.problem-section3 {
  background: #DBEAFB;
  display: flex;
  text-align: center;
}
.problem-section4 {
  background: #ffffff;
  display: flex;
  text-align: center;
}
.problem-section5 {
  background: #ffffff;
  display: flex;
  text-align: center;
}
.problem-section6 {
  background: #ffffff;
  display: flex;
  text-align: center;
}
.problem-bottom{
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.problem-content p{
  margin: 0.5rem !important;
}
.problem-content p span{
  font-weight: 600 !important;
  color: #EC7804;
}

.hp-section2-top{
  display: inline;
}
.sp-section2-top{
  display: none;
}
.bottom-left{
  flex:2;
}

.bottom-right{
  flex:1;
  align-self: center;
}

.bottom-left-check {
  width: fit-content;
  margin: 0 auto;
  text-align: left;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.bottom-left-check img{
  max-width: 70%;
}
.check{
  display: flex;
}
.check img{
  max-width:1.2rem;
  height: 1.2rem;
  align-self: center;
}
.check p{
  margin: 0.3rem!important;
}

.bottom-right img{
  max-width: 100%;
}
.bottom-right3 img{
  max-width: 200px;
  align-self: center;
}
.bottom-left3 img{
  align-self: center;
}
.problem-content {
  display: grid;
  max-width: 1000px;
  text-align: center;
  position: relative;
  align-items: center;
  margin: 0 auto;
}
.problem-top{
  text-align: center;
}
.hp-problem-top{
  display: inline;
}
.sp-problem-top{
  display: none;
}
.problem-top img{
  max-width: 80%;
}

.problem-top h2 {
  font-size: 2.2rem;
  font-weight: 600;
  margin-bottom: 2rem;
  color: #1f2937;
}

.problem-content p {
  font-size: 1.1rem;
  line-height: 1.8;
  color: #4b5563;
}

.problem2-bottom{
  display: flex;
}
.bottom-left2{
  background-color: #dadbdb;
  padding: 1rem;
  display: grid;
}
.bottom-left2 h3{
  font-size: 1.4rem;
}
.bottom-right2{
  background-color: #fff;
  padding: 1rem;
}
.bottom-right2 h3{
  font-size: 1.4rem;
}
.black-bottom{
  text-align: left;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
}
.white-bottom{
  text-align: left;
  font-size: 1.2rem;
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-top: 0.5rem;
}
.black-bottom p{
  text-align: left;
  font-size: 1.2rem;
}
.black-bottom ul{
  display:grid;
}
.white-bottom p{
  text-align: left;
  font-size: 1.2rem;
  line-height: 1.5rem;
}
.black-bottom img{
  max-width: 30% !important;
  height: auto;
  align-self: center;
}
.white-bottom img{
  max-width: 30% !important;
  height: 100%;
  align-self: center;
}
.container p{
  font-size: 1.2rem;
  margin: 1rem;
}
.container h2{
  font-size: 2.2rem;
  font-weight: 600;
  color: #1645A1;
}


.college-info{
  display: flex;
  text-align: left;
  gap: 2rem;
}
.college-left{
  flex: 1;
}
.college-left h3{
  font-size: 1.2rem;
}
.college-left p{
  font-size: 1.0rem;
  margin: 0.2rem;
}
.college-left p span{
  color: #1545a1;
  font-size: 1.0rem;
  font-weight: 600;
}
.college-right{
  flex: 2;
  display: flex;
}
.college-right img{
  max-width: 100%;
  align-self: center;
}
.college-content{
  margin-bottom: 1.2rem;
}
.free-icon{
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 1rem;
}
.free-icon img{
  max-width: 2.6rem;
  height: 2.6rem;
  margin: 0 0.4rem;
}
.free-icon h3{
  font-size: 1.6rem;
  font-weight: 500;
}
.teacher-info{
  display: flex;
  text-align: center;
  gap: 1rem;
}
.teacher-left{
  flex: 1;
}
.teacher-left img{
  max-width: 100%;
  align-self: center;
}
.teacher-right{
  flex: 2;
  text-align: center;
}
.teacher-right h3{
  font-size: 1.4rem;
  margin: 1rem;
}
.teacher-right p{
  text-align: left;
  margin: 0 1rem;
}
.step-icon img{
  max-width: 100%;
  padding: 0 1rem;
}
.advisor-icon img{
  max-width: 100%;
  padding: 0 1rem;
}


/* Results Section */
.results-section {
  background: #DBEAFB;
}

.results-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}
.result-item {
  text-align: center;
  background: #fff;
  border-radius: 12px;
  position: relative;
  width: -webkit-fill-available;
  padding: 2rem 0;
}

.result-number {
  font-size: 3rem;
  font-weight: 700;
  color: #2986F3;
  display: block;
  max-width: 100%;
}
.result-number span{
  font-size: 0.5rem;
  vertical-align: text-top;
}

.result-label {
  font-size: 1.1rem !important;
  font-weight: 600;
  margin: 0.5rem 0;
  color: #1f2937;
}

.result-description {
  font-size: 0.9rem;
  color: #6b7280;
}
.detail p{
  font-size: 0.6rem;
  color: #6b7280;
}

/* Companies Section */
.companies-section {
  background: #f8fafc;
}

.companies-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.company-item {
  background: white;
  padding: 1.5rem;
  font-size: 1.0rem;
  border-radius: 8px;
  display: grid;
  place-items: center;
  text-align: center;
  font-weight: 600;
  color: #374151;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

/* Testimonials Section */
.voice-top{
  display: flex;
  max-height: 11rem;
  align-items: center;
}
.voice-right{
  margin: 1rem;
}

  .testimonials-section {
    background: white;
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}

.testimonial-item {
  background: #f8fafc;
  padding: 2rem;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
}

.testimonial-content {
  font-style: italic;
  font-size: 0.8rem;
  font-weight: bold;
  margin-top: 1rem;
  color: #4b5563;
  border-radius: 12px;
  border-left: 4px solid #2563eb;
  padding: 0.5rem;
}

.testimonial-author {
  font-weight: 600;
  color: #1f2937;
  font-size: 1.4rem;
  line-height: 1.2rem;
}
.testimonial-author span{
  font-size: 0.9rem;
  font-weight: 400;
}

.testimonial-company {
  font-size: 0.9rem;
  margin-top: 0.5rem;
}

/* Process Section */
.process-section {
  background: #f8fafc;
}

.process-steps {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
}
.advisor-steps {
  display: flex;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-top: 2rem;
  }

.process-step {
  background: white;
  padding: 0.5rem;
  border-radius: 12px;
  text-align: center;
  position: relative;
  width: -webkit-fill-available;
}
.process-btn {
  text-align: center;
  margin-top: 3rem;
}
.process-btn a{
  color: #ffffff;
}

.step-number {
  background: #2563eb;
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  margin: 0 auto 1rem;
}

.step-title {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1rem;
  color: #1f2937;
}

.step-description {
  color: #6b7280;
}

/* Comparison Table */
.comparison-section {
  background: #f8fafc;
}

.comparison-table {
  table-layout: fixed;
  word-wrap: break-word;
  width: 100%;
  border-collapse: collapse;
  margin-top: 2rem;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.comparison-table th,
.comparison-table td {
  padding: 1.2rem 1rem;
  text-align: center;
  border-bottom: 1px solid #e5e7eb;
  font-size: 1.0rem;
  word-break: break-word;
  white-space: normal;
}

.comparison-table th {
  background: #1645A1;
  color: white;
  font-weight: 600;
  word-break: break-word;
  white-space: normal;
}

.comparison-table .our-service {
  background: #2986F3 !important;
  color: white !important;
}

.comparison-table .item-header {
  background: #1645A1 !important;
  text-align: left !important;
  color: white !important;
  min-width:8rem;
}

.comparison-table .our-value {
  background: #DBEAFB;
  color: #1645A1;
  font-weight: 600;
  font-size: 1.1rem;
}

.comparison-table .other-value {
  background: #f3f4f6;
  color: #6b7280;
  border-left: 1px solid #e5e7eb;
}

/* FAQ Section */
.faq-section {
   background: #ffffff;
}

.faq-list {
  max-width: 800px;
  margin: 0 auto;
}

.faq-item {
  background: white;
  border-radius: 8px;
  margin-bottom: 1rem;
  overflow: hidden;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-question {
  width: 100%;
  padding: 1.5rem;
  background: white;
  border: none;
  text-align: left;
  font-size: 0.8rem;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.faq-question:hover {
  background: #f8fafc;
}

.faq-icon {
  font-size: 1.2rem;
  font-weight: 700;
}

.faq-answer {
  padding: 1.5rem;
  background: #f8fafc;
  display: none;
  font-size: 1.2rem;
}

.faq-answer.active {
  display: block;
}

/* Final CTA Section */
.final-cta-section {
  background: linear-gradient(135deg, #1e3a8a 0%, #3b82f6 100%);
  color: white;
  padding: 4rem 0;
  text-align: center;
}

.final-cta-content h2 {
  color: #fff;
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  }

.final-cta-content p {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
}

.final-cta-form {
  max-width: 500px;
  margin: 0 auto;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  padding: 2rem;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
  font-size: 1.2rem;
}
.footer-section p {
  font-size: 1.0rem;
  font-weight: 400;
}

.footer-section h3 {
  font-size: 1.6rem;
  font-weight: 600;
}

.footer-section ul {
  list-style: none;
}

.footer-section a {
  color: #d1d5db;
  text-decoration: none;
}

.footer-section a:hover {
  color: white;
}

.footer-bottom {
  border-top: 1px solid #374151;
  padding-top: 1rem;
  text-align: center;
  color: #9ca3af;
}

.fade-in {
  animation: fadeIn 0.6s ease-out forwards;
}

 .thanks-main{
  margin-top: 7rem;
 }

 .thanks-section {
  display: flex;
  gap: 1rem;
  background: url(../img/bg_color2.png) no-repeat center center/cover;;
  color: white;
  padding: 0rem 1rem;
  border-radius: 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(30, 58, 138, 0.3);
  max-width: 960px;
  max-height: 500px;
  margin: 0 auto;
  }
  .thanks-section h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  font-weight: 700;
  }
  .thanks-section img {
  max-width: 4rem;
  }

  .thanks-section .subtitle {
  font-size: 1.2rem;
  margin-bottom: 2rem;
  opacity: 0.9;
  }


/* Benefits Section */
  .benefits-section {
    background: white;
    padding: 1rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 960px;
    margin-bottom: 4rem;
  }

  .benefits-section h2 {
    color: #1e3a8a;
    font-size: 2rem;
    text-align: center;
    margin: 2rem;
  }

  .benefits-grid {
    display: inline-flex;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
  }

  .benefit-card {
    text-align: center;
    padding: 2rem;
    background: #f8fafc;
    border-radius: 15px;
    transition: all 0.3s ease;
  }
  .benefit-card img {
    max-width: 100%;
  }

  .benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
  }

  .benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
  }

  .benefit-card h3 {
    color: #1e3a8a;
    margin-bottom: 1rem;
    font-size: 1.3rem;
  }

  .benefit-card p {
    color: #6b7280;
    line-height: 1.6;
    font-size: 1.4rem;
  }
  .follow-cta{
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 9999;
    width: 100%;
    display: none; /* 初期状態では非表示 */
  }
.bottom-btn{
  background: #f59e0cc2;
  display: inline-block;
  padding: 1rem 2rem;
  color: white!important;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s;
  border: none;
  cursor: pointer;
  font-size: 1rem;
  width: 100%;
}
.p-header{
  text-align: center;
  background-image: url(../img/q.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center;
}
.p-header h2{
  margin: 2rem;
  color: #1645A1;
}
.sp-title-top{
  display: none;
}

.p-image{
  background: #2686f3;
  display: flex;
  justify-content: center;
  flex-wrap: nowrap;
  gap:2rem;
  padding: 3rem;
}
.p-image img{
  max-width: 30%;
}

.supportAll{
  background:#f8fafc ;
  padding: 2rem;
}
.support{
  max-width: 1000px;
  margin: 0 auto;
}
.support-top{
  text-align: center;
  margin-bottom: 2rem;
}
.support h2{
  color: #1645A1;
  margin-bottom: 1rem;
  font-weight: 550;
}
.sp-support-top{
  display: none;
}
.support-contents{
  text-align: center;
}
.support-container{
  display: flex;
  justify-content: center;
  border: 1px solid #1645A1;
  border-radius: 5px;
  margin-bottom: 2rem;
  position: relative;
}

.support.support-container :last-child{
  margin-bottom: 0;
}

.support-left{
  background: #1645A1;
}
.support-title{
  width: 350px;
  padding: 30px 20px;
  display: flex;
  align-items: center;
}
.support-title p{
  color: #fff;
  font-size: 3rem;
  font-weight: 400;
  line-height: 1;
}
.support-title p::after {
  background-color: #fff;
  content: "";
  display: inline-block;
  width: 2px;
  height: 50px;
  margin: 0 10px;
  position: relative;
  top: 2px;
}
.support-title h3{
  font-size: 1.2rem;
  color: #fff;
  text-align: left;
}
.support-right{
  width: calc(100% - 350px);
  padding: 30px;
}
.support-right p{
  font-size: 0.9rem;
}
.support-right p span{
  color: #EC7804;
}

.support-rightbottom{
  display: flex;
  justify-content: space-between;
  margin-top: 20px;
  gap: 20px;
  text-align: center;
}
.support-rightbottom img{
  max-width: 15rem !important;
  height: auto;
}
.support-subtitle{
  text-align: left;
}
.support-subtitle h4{
  font-size: 1.2rem;
  color: #1645A1;
}
.advisor-section{
  background: #DBEAFB
}
.advisor-card{
  background: white;
  padding: 0.5rem;
  border-radius: 12px;
  text-align: center;
  position: relative;
  width: -webkit-fill-available;
}
.advisor-card p{
  font-size: 1.0rem;
  margin: 0.5rem;
  text-align: center;
}
.advisor-name{
  font-size: 1.2rem;
  font-weight: 600;
  color: #1f2937;
}
.advisor-info{
  text-align: left !important;
}
.dot-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.dot-list li {
  display: flex;
  align-items: flex-start;
  margin-bottom: 0.5em;
}

.dot {
  width: 1em; /* ここで記号幅を固定 */
  text-align: right;
  margin-right: 0.5em;
  flex-shrink: 0; /* 縮まないように */
}

.text {
  flex: 1;
}
.sp-last{
  display: none;
}
.hp-last{
  display: inline;
}
.sp-last h2{
   font-size: 2.0rem;
   font-weight: 600;
  }
.sp-right {
    display:none;
  }
.bottom-left p {
  margin: 1rem;
  text-align: left;
}
.sp-college {
  display: none;
}
.sp-left3 {
  display: none;
}
.sp-teacher{
  display: none;
}
.checkarea img{
  max-width: 65%;
}
.slick-list {
  margin: 0 2rem !important;
}
.problem-bottom2 {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 1rem;
}
.fllow {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #1645A1;
}
.hp-fllow{
  display: inline;
}
.sp-fllow{
  display: none;
}
.fllow h2{
  width: 100%;
  text-align: center;
  margin: 1rem 0;
  font-weight: 550;
}
.big-fllow {
  width: 100%;
  max-width: 900px;
  height: 7px;
  background: #1645A1;
  position: relative;
}

.big-fllow::after {
  content: '';
  position: absolute;
  right: -5px;
  top: -12px;
  width: 0;
  height: 0;
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  border-left: 17px solid #1645A1;
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}


/* Responsive Design */
@media (max-width: 768px) {

  .title-top{
    display: none;
  }


  .concern-item2 {
    display: none;
  }
  .hero {
  background: url(../img/bg_sp_color2.png)no-repeat center center/cover;
  color: #013960;
  padding: 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  margin-top: 60px;
}

.hp-solution-text {
    display: none;
  }
.sp-solution-text{
  display: contents;
}

.hero-man{
  background: url(../img/fv_man.png);
}
  .hero-content {
    display: contents;
    grid-template-columns: 1fr;
    text-align: center;
   }
.hero-top{
  display: contents;
}
.hero-top img{
  width: 7rem;
}

.hero-text {
  background: #b2daffc2;
  width: 100%;
  position: absolute;
  left: 0;
  bottom: 0;
}
.hero-right{
 margin-top: 0;
}
.hero-form{
  padding: 0.5rem 1rem;
  margin: 1rem 1rem 0rem 1rem;
}
.hero-form h3{
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}
  .hero-text h1 {
    font-size: 1.8rem;
  }
  .subtitle{
    display: none;
  }
  .form-group {
    margin-bottom: 0.5rem;
  }
.header-cta {
  padding: 0;
}
  .highlight{
    display: none;
  }
  .section-header {
    margin-bottom: 1rem;
  }
  .section-header h2 {
    font-size: 1.6rem;
  }

  .solution-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .nav {
    display: none;
  }
  .section{
    padding: 0;
  }

  .hp-section2-top{
  display: none;
  }
  .sp-section2-top{
  display: inline;
  }

  .comparison-table th,
  .comparison-table td {
    padding: 0.4rem 0.4rem;
    font-size: 0.6rem;
   }
  .advisor-steps {
    display:grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 0.4rem;
    margin-top: 1rem;
  }
  .process-steps {
  display: flex;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.4rem;
  margin-top: 1rem;
}

  .problem-content {
    display: inline;
  }
  .problem-top img{
  max-width: 90%;
}

  .commonHeader h2 {
    font-size: 1.4rem;
    line-height: 1.2;
  }
  .contactForm form h3 {
    font-size: 1.0rem;
  }
  .final-cta-section {
    padding: 0;
  }
  .final-cta-content h2 {
    font-size: 1.8rem;
  }

.final-cta-form {
  padding: 1rem;
}
.concern-item {
  padding: 1rem 2rem;
}
.concern-item img {
  width: 90%;
}
.concern-text{
  font-size: 1.2rem;
}
.hp-problem-top{
  display: none;
}
.sp-problem-top{
  display: inline;
}
.problem-top h2 {
  font-size: 1.4rem;
  margin-bottom: 1rem;
}
.problem-content p {
    font-size: 0.7rem !important;
  }
.problem-right img{
  max-width: 200px;
}
.why-remote2 {
  padding:  0;
}

.stat-item {
  padding: 0.5rem;
}
.result-number {
  font-size: 2.0rem;
}
.result-item {
  padding: 1rem 0.5rem;
}
.result-item p{
  margin: 0.5rem;
}
.result-label {
  margin: 0;
}
.benefit-highlight {
    padding: 0;
}
.benefit-highlight p{
    font-size: 0.6rem !important;
    padding: 0.5rem 0.5rem;
}
.process-step {
  padding: 0.2rem;
}
.process-step p{
  margin: 0.2rem !important;
  font-size: 0.5rem !important;
}

.step-title {
  margin-bottom: 0;
  font-size: 0.6rem;
}
.step-number {
    margin: 0 auto 0;
  }
.header-cta a {
    padding: 0rem 0.5rem;
  }

  .process-btn a {
    font-size: 0.9rem;
  }
.comparison-table {
  margin-top: 0rem;
}
.comparison-table .item-header {
  min-width: auto;
  font-size: 0.6rem;
}
.comparison-table .our-value {
  font-size: 0.6rem;
}
footer .footerInner {
  padding: 10px 0;
}
footer .copy {
padding: 10px 0;
}
footer .footerInner ul li a {
  font-size: 0.7rem;
}
footer .copy p {
    font-size: 0.7rem;
  }
.thanks-section {
  display: grid;
  margin: 2rem;
  padding: 1.5rem 1rem;
  max-height: 100%;
}
.thanks-main {
    margin-top: 40px;
  }
.thanks-section h1 {
    font-size: 1.7rem;
  }
.thanks-section .subtitle {
    font-size: 1.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
  }
.thanks-section p {
    font-size: 0.8rem;
    margin-bottom: 0;
    line-height: 1.5;
  }
  .benefits-grid {
    display: grid;
  }
  .benefits-section h2{
    margin: 1rem;
  }
  .benefits-section {
    background: white;
    padding: 1rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin: 0 auto;
    max-width: 960px;
    padding-bottom: 3rem;
  }
  .container{
    padding: 1.4rem;
  }
  .container p{
    font-size: 1.0rem;
  }
  .container h2{
    font-size: 1.3rem;
  }
  .empathy-section::after{
    background-size: 20%;
    top: 85%;
  }
  .support-contents img{
    max-width: 20%;
  }

  .support-container {
    display: block;
    margin-bottom: 0.5rem;
  }
  .support-left{
    width: auto;
    padding: 10px;
  }
  .support-title h3{
    font-size: 1.0rem;
  }
  .support-title p{
    max-width: 100%;
    padding: 0;
    font-size: 2.2rem;
  }
  .support-right{
    width: auto;
    padding: 0.5rem 1.0em;
  }
  .support-right p{
    font-size: 0.8rem;
  }
  .support-rightbottom{
    display: block;
  }
  .results-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.5rem;
  }
  .cta-btn{
    padding: 0;
    margin-top: 1rem;
  }
  .cta-btn p{
    font-size: 0.8rem !important;
  }
  .btn-primary img {
    max-width: 100%;
    opacity: 0.9;
  }

  .p-header h2{
    font-size: 1.2rem;
  }
  .p-image{
    display: inline;
    padding: 1rem;
  }
  .bottom-left-check{
    display:none;
  }
  .bottom-left3 h3{
    display: none;
  }
  .problem-bottom2 {
    gap: 0.5rem;
    display: grid;
  }
  .bottom-right img {
    max-width: 50% !important;
  }
  .bottom-left p {
    margin: 0.5rem;
  }
  .checkarea img {
    max-width: 80%;
  }
  .bottom-right3 img {
    max-width: 90px;
  }

  .sp-last{
  display: inline;
  }
  .hp-last{
  display: none;
  }
  .sp-last p{
    font-size: 1.2rem;
    font-weight: 600;
    margin: 0.3rem;
  }
  .problem2-bottom {
    display: grid;
  }
  .white-bottom p{
    margin: 0.4rem;
    font-size: 0.9rem;
  }
  .black-bottom p{
    margin: 0.4rem;
    font-size: 0.9rem;
  }
  .bottom-left3 p{
    margin: 0.5rem !important;
    font-size: 0.9rem !important;
  }
  .bottom-left2 {
    padding: 0.5rem;
  }
  .bottom-left2 h3{
    font-size: 1.0rem;
  }
  .sp-right {
    display:inline;
  }
  .sp-right img{
    max-width: 50%;
    margin: 0 auto;
  }
  .bottom-right2 {
    padding: 0.5rem;
  }
  .bottom-right2 h3{
    font-size: 1.0rem;
  }
  .support-top{
    display: none;
  }
  .sp-support-top{
    display: inline;
    text-align: center;
    margin-bottom: 2rem;
    font-size: 1.0rem;
    font-weight: 500;
  }
  .support-subtitle h4 {
    font-size: 0.9rem;
  }
  .support-title {
    padding: 0;
    width: 100%;
  }
  .support-title p::after {
    height: 35px;
  }
  .college-info {
    display: grid;
  }
  .college-right{
  display:none;
  }
  .sp-college {
    display: grid;
    margin: 0.5rem;
  }
  .sp-college img{
    max-width: 100%;
  }
  .college-left p {
    font-size: 0.9rem !important;
  }
  .teacher-right p{
    font-size: 0.8rem !important;
  }
  .teacher-right h3{
    margin-top: 0;
  }
  .teacher-left{
    display: none;
  }
  .sp-teacher{
    display: block;
  }
  .sp-teacher img{
    max-width: 50% !important;
  }
  .advisor-card p {
    font-size: 0.7rem;
    margin: 0;
  }
  .advisor-name {
    font-size: 0.6rem;
  }
  .advisor-detail {
    display: flex;
  }
  .step-icon img {
    padding: 0;
  }
  .advisor-icon{
    flex: 2;
  }
  .advisor-icon p{
    font-size: 0.35rem;
    white-space: nowrap;
  }
  .advisor-info{
    flex: 3;
    display: flex;
    align-items: center;
    font-size: 0.7rem;
  }

.faq-question {
    padding: 1.0rem;
    color: #000;
  }
  .empathy-section {
    display: grid;
  }
  .p-image img {
    max-width: 50%;
  }
  .detail p{
    font-size: 0.6rem;
  }
  .sp-left3 {
    display: grid;
  }
  .sp-left3 img{
    max-width: 100%;
  }
  .black-bottom ul {
    font-size: 0.8rem;
  }
  .white-bottom ul {
    font-size: 0.8rem;
  }
  .slick-list {
  margin: 0  !important;
  }
  .testimonial-company {
    font-size: 0.8rem;
  }
  .section-title {
    font-size: 1.2rem !important;
  }
  .free-icon h3 {
    font-size: 1.0rem;
  }
  .container img{
  max-width: 100%;
}
.hero-text p {
    font-size: 0.6rem;
    text-align: center;
    margin-top: 0rem;
  }
  .hp-fllow{
  display: none;
  }
  .sp-fllow{
  display: inline;
  }

}






.hidden {
    display: none;
  }

   table {
    min-width: 600px; /* 必要に応じて調整 */
    width: max-content;
    border-collapse: collapse;
    width: 100%;
  }

  th, td {
    font-size: 1.2rem;
    border: 1px solid #ccc;
    padding: 6px;
    text-align: center;
    white-space: nowrap; /* セル内改行を防止 */
  }

  th {
    background-color: #f8f8f8;
  }

  tr:nth-child(even) td {
    background-color: #fdfdfd;
  }

  .week-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 1em 0;
    font-weight: bold;
  }
  .week-header {
    flex-wrap: wrap;
    gap: 0.5em;
    font-size: 1em;
  }
  .week-header button {
    font-size: 1em;
    padding: 6px 10px;
  }

  .week-header button {
    background-color: #1645A1;
    color: white;
    border: none;
    padding: 6px 12px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.2s;
  }

  .week-header button:hover {
    background-color: #0056b3;
  }

  #week-title {
    flex: 1;
    text-align: center;
    font-size: 1.1rem;
  }
  .table-wrapper {
    overflow-x: auto;
    width: 100%;
  }

  .scroll-hint {
  font-size: 0.8rem;
  color: #666;
  text-align: center;
  margin-bottom: 0.5em;
  display: none; /* デフォルトは非表示 */
}
td[disabled], td.no-select {
  background-color: #f5f5f5;
  color: #aaa;
}
.abe-coment-top{
  display: grid;
  flex: 1;
  max-height: 100%;
  overflow: hidden;
}
.abe-right{
  display: grid;
  justify-content: center;
}
.abe-icon img{
  max-width: 100%;
  height: auto;
}
.contact-top{
  flex: 2;
}
.abe-icon{
  align-items: flex-start;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  overflow: hidden;
  background: #DBEAFB;
}
.abe-coment {
    position: relative;
    background-color: #fff;
    color: #333;
    padding: 16px 20px;
    border-radius: 10px;
    max-width: 320px;
    height: fit-content;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.abe-coment::after {
    content: '';
    position: absolute;
    bottom: -60px;
    right: 60px;
    width: 0;
    height: 0;
    border-left: 30px solid #ffffff;
    border-top: 10px solid transparent;
    border-bottom: 60px solid transparent;
  }
.date-form{
  max-width: 960px;
  background:#fff;
  margin: 0 auto;
  border-radius: 20px;
  padding: 2rem 4rem;
  text-align: center;
}
.date-form h2{
  font-size: 2.0rem;
}
.date-form p{
  font-size: 1.0rem;
}
.comment{
  text-align: left;
  margin-top: 2rem;
}
.comment h3{
  font-size: 1.4rem;
}
.cta-btn-submit img{
  max-width: 70%;
}



@media (max-width: 768px) {
  .scroll-hint {
    display: block; /* スマホ・タブレットで表示 */
  }
  .date-form h2 {
    font-size: 1.4rem;
}
.week-header button {
  display: none;
}
th, td {
    font-size: 0.8rem;
  }
.date-form{
  padding: 1rem 1rem;
}
.comment h3 {
    font-size: 1rem;
  }
  .cta-btn-submit img{
  max-width: 100%;
}
 .abe-coment::after {
    content: '';
    position: absolute;
    bottom: -30px;
    right: 20px;
    width: 0;
    height: 0;
    border-left: 30px solid #ffffff;
    border-top: 10px solid transparent;
    border-bottom: 30px solid transparent;
  }



}



