@charset "UTF-8";
/*base is →　! sanitize.css v5.0.0 | CC0 License | github.com/jonathantneal/sanitize.css */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

article, aside, footer, header, nav, section, figcaption, figure, main {
  display: block;
}

sub, sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  vertical-align: top;
}

table {
  border-collapse: collapse;
}

button, input, select, textarea {
  color: inherit;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

button, html [type=button], [type=reset], [type=submit] {
  -webkit-appearance: button;
}

textarea {
  overflow: auto;
  resize: vertical;
}

[type=checkbox], [type=radio] {
  box-sizing: border-box;
  padding: 0;
}

a, area, button, input, label, select, summary, textarea, [tabindex] {
  touch-action: manipulation;
}

/* --------------- variables --------------------- */
/* Break Point */
/* Color */
/*サイトカラー*/
/*テキストに使うフォントカラー*/
/*テキスト内で使うリンクカラー*/
/* other */
/*transition-timing-function*/
body {
  color: #333;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}

.mcBody.scrollNone {
  width: 100%;
  height: 100%;
  position: fixed;
}

p {
  font-weight: 500;
}

a {
  color: #333;
  text-decoration: none;
}
.en {
  font-family: "Inter", sans-serif;
}

.ib {
  display: inline-block !important;
}

/* .adjustAnchorPos {
  display: inline-block;
} */

img {
  max-width: 100%;
  height: auto;
}

ul li {
  list-style-type: none;
}

.textLink {
  color: #235dad;
  text-decoration: underline;
  text-underline-offset: 10px;
  word-break: break-word;
  transition: 0.3s opacity cubic-bezier(0.64, -0.01, 0.26, 0.91);
}

#globalHeader {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  transition: 0.3s background-color, 0.3s height cubic-bezier(0.64, -0.01, 0.26, 0.91);
}
#globalHeader .catch {
  line-height: 1.4;
  font-weight: 700;
  color: #fff;
  transition: 0.3s background-color cubic-bezier(0.64, -0.01, 0.26, 0.91);
}

#menuBtn {
  cursor: pointer;
  position: relative;
  z-index: 101;
}
#menuBtn span {
  background-color: #1f6360;
  position: absolute;
  transition: all 0.3s cubic-bezier(0.64, -0.01, 0.26, 0.91);
}
#menuBtn.isOpen span:nth-of-type(1) {
  transform: rotate(35deg);
}
#menuBtn.isOpen span:nth-of-type(2) {
  transform: rotate(-35deg);
}

#langBtn {
  color: #1f6360;
  font-weight: bold;
  position: absolute;
}
#langBtn span {
  padding: 0 2px;
}
#langBtn a {
  color: #333;
  transition: 0.3s color cubic-bezier(0.64, -0.01, 0.26, 0.91);
}
#langBtn a.onLink {
  color: #1f6360;
}

#gMenu {
  position: fixed;
  top: -100%;
  background-color: #fff;
  height: 100%;
  z-index: 100;
  transition: 0.5s all cubic-bezier(0.64, -0.01, 0.26, 0.91);
  opacity: 0;
}
#gMenu.isOpen {
  top: 0;
  opacity: 1;
}
#gMenu .gMenuColList li a {
  display: block;
  position: relative;
}
#gMenu .gMenuColList li a::before {
  content: "";
  background: url(../images/arrow_link.png) no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
  right: 0;
  transition: 0.3s transform cubic-bezier(0.64, -0.01, 0.26, 0.91);
}
#gMenu .jaMenu,
#gMenu .enMenu {
  display: block;
  transition: 0.3s color cubic-bezier(0.64, -0.01, 0.26, 0.91);
}
#gMenu .enMenu {
  color: #1f6360;
  font-weight: bold;
  font-family: "Inter", sans-serif;
  line-height: 1.4;
}
#gMenu .jaMenu {
  font-weight: bold;
}

.gMenuLink{
  width: 100%;
  display: flex;
  margin-top: 70px;
  justify-content: center;
  gap: 40px;
}
.gMenuLink a{
  background-color: #1f6360;
  border-radius: 50px;
  color: #fff;
  display: block;
  font-weight: bold;
  padding: 20px;
  position: relative;
  text-align: center;
  text-decoration: none;
  width: 400px;
}
.gMenuLink li+li a{
  background-color: #000000;
  border-radius: 50px;
  color: #fff;
  display: block;
  font-weight: bold;
  padding: 20px;
  position: relative;
  text-align: center;
  text-decoration: none;
}
.gMenuLink .arrowBtn::before {
  content: "";
  background: url(../images/btn_arrow_airplane_w.png);
  background-size: contain;
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}
.gMenuLink .academyBtn:hover {
    opacity: 0.7;
    transition: 0.3s all cubic-bezier(0.64, -0.01, 0.26, 0.91);
}

.overlay {
  background-color: rgba(0, 0, 0, 0.2);
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  z-index: 96;
  visibility: hidden;
  pointer-events: none;
  opacity: 0;
  transition: 0.3s all ease-in-out;
}
.overlay.isOpen {
  visibility: visible;
  opacity: 1;
}

#hero {
  position: relative;
  width: 100%;
  overflow: hidden;
}
#hero::before {
  content: "";
  display: block;
  background-color: #1f6360;
  position: absolute;
  top: 0;
  left: 0;
  width: 960px;
  height: 849px;
  z-index: -1;
}
#hero .str {
  position: absolute;
  left: 100vw;
  top: 50%;
  transform: translateY(-50%);
  aspect-ratio: 1941/118;
  width: 100%;
  /*mix-blend-mode: difference;*/
  opacity: 0.35;
}
#hero .str0 {
  /*animation: strAnim0 15s linear forwards;*/
  left: 0;
  width: 1470px;
}
#hero .str1 {
  animation: strAnim 30s linear infinite;
  animation-delay: 1s;
}
#hero .str2 {
  animation: strAnim 30s linear infinite;
  animation-delay: 16s;
}
@keyframes strAnim0 {
  0% {
    left: 0;
  }
  90%, 100% {
    left: -100vw;
  }
}
@keyframes strAnim {
  0% {
    left: 100vw;
  }
  90%, 100% {
    left: -100vw;
  }
}
#hero .copStr {
  fill: #fff;
}
#hero #videoArea {
  background: url(../images/hero_img.jpg) no-repeat center/cover;
  width: 100%;
  margin-left: 10vw;
  height: 843px;
  overflow: hidden;
}
/* #hero #videoArea:before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 5;
} */
#hero #videoArea > div {
  position: relative;
}
#hero #videoArea video {
  position: absolute;
  min-width: 100%;
  min-height: 100%;
  width: auto;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 0;
}
#hero #logo {
  aspect-ratio: 89/36;
  max-width: 890px;
  width: 70vw;
  position: absolute;
  left: 9.5vw;
  z-index: 30;
}
#hero #logo img {
  width: 100%;
  height: auto;
}
#hero #sen {
  width: 2px;
  height: 200px;
  position: absolute;
  top: 750px;
  left: 5vw;
}
#hero #videoArea .hero_jp{
  /* background-image:url("../images/hero_img.jpg") ; */
height: 100%;
}
/* #hero #videoArea .hero_jp:before{
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-image: linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0) 35%, #428380cc);
} */
#hero #videoArea img{
  object-fit: cover;
  height: 100%;
}

#globalFooter {
  background-color: #fff;
}
#globalFooter .footNavArea .footNav .footMenuColBlock .footMenuColList li a {
  font-family: "Inter", sans-serif;
  font-weight: 500;
}
#globalFooter .footInfoArea {
  display: flex;
}
#globalFooter .footInfoArea .wideFootElm {
  /* width: 100%; */
}
#globalFooter .footInfoArea .footInfo .footTel {
  font-weight: bold;
  font-family: "Inter", sans-serif;
}
#globalFooter .footInfoArea .footInfo .footTel .tel,
#globalFooter .footInfoArea .footInfo .footTel .num {
  display: block;
}
#globalFooter .footInfoArea #pageTop {
  cursor: pointer;
  position: relative;
}
#globalFooter .footInfoArea #pageTop::after {
  content: "";
  background: url(../images/pagetop.png);
  display: block;
  z-index: 2;
  transition: 0.3s transform cubic-bezier(0.64, -0.01, 0.26, 0.91);
}

.footBottomArea .inner{

max-width: 570px;
display: flex;
}
.iconSnsWrap li .instaIcon {
  display: block;
  max-width: 52px;
}
.iconSnsWrap li .youtubeIcon {
  max-width: 50px;  display: block;
}
#globalFooter .footInfoArea .iconSnsWrap{
  display: flex;
  gap: 24px;
  margin-top: 30px;
  align-items: center;
}

.contactBlock {
  background-color: #1f6360;
  overflow: hidden;
  position: relative;
}
.contactBlock::before {
  content: "";
  background: url(../images/parts_contact_illust.png) no-repeat;
  display: block;
  position: absolute;
  mix-blend-mode: color-dodge;
}
.contactBlock.type2::before {
  content: none;
}
.contactBlock .inner {
  position: relative;
  z-index: 1;
}
.contactBlock .contactTitle {
  text-align: center;
}
.contactBlock .contactText {
  color: #fff;
  text-align: center;
}
.contactBlock .contactBtn {
  background-color: #fff;
  border-radius: 50px;
  color: #1f6360;
  display: block;
  font-weight: bold;
  padding: 20px;
  position: relative;
  text-align: center;
  text-decoration: none;
}

.programcourse2 {
  font-size: 20px;
  background-color: #1f6360;
  color: #fff;
  display: block;
  font-weight: bold;
  padding: 8px 15px;
  position: relative;
  text-align: center;
  text-decoration: none;
  margin-top: 20px;
  margin-bottom: 20px;
  border-radius: 10px;
}

#program .triangle{
  margin-top: 20px;
  text-align: center;
}

#program .contactBtn {
  background-color: #fff;
    font-size: 20px;
    color: #1f6360;
    display: block;
    font-weight: bold;
    margin-top: 40px;
    padding: 8px 26px 11px;
    position: relative;
    text-align: center;
    text-decoration: none;
    max-width: 644px;
    margin-inline: auto;
    margin-bottom: 45px;
}
#program .contactBtng {
  background-color: #1f6360;
  border-radius: 50px;
  font-size: 18px;
  color: #ffffff;
  display: block;
  font-weight: bold;
  margin-top: 40px;
  padding: 16px 40px;
  position: relative;
  text-decoration: none;
  max-width: 448px;
  margin-inline: auto;
}
#program #logo {
  text-align: center;
}

#program .checkpoint{
 font-size: 18px;
 font-weight: bold;
 background-color: rgba(255, 255, 255, 0.85);
 color: #1f6360;
 padding: 20px 20px;
 width: 80%;
 margin: 0 auto;
 margin-top: 20px;
 line-height: 2;
 border-radius: 10px;
 border: #1f6360 2px solid;
}
#program  span.academy{
  color: #1f6360;
  font-weight: bold;
}
#program  span.business{
  color: #333;
  font-weight: bold;

}


.contactBlock .contactBtn.arrowBtn::before {
  content: "";
  background: url(../images/btn_arrow_airplane.png);
  background-size: contain;
  display: block;
  position: absolute;
  top: 50%;
  right: 20px;
  transform: translateY(-50%);
}

#voice {
  position: relative;
}
#voice::before {
  content: "";
  background: url(../images/parts_catch_shadow_top.png);
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
#voice::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
}
#voice h2,
#voice .voiceCopy {
  position: relative;
  z-index: 1;
  text-align: center;
}
#voice h2 {
  font-size: 34px;
}
#voice .voiceCopy {
  font-weight: bold;
  line-height: 2;
}
#latestUpdates {
  background-color: #fff;
}
#latestUpdates .newsArea .newsItem:not(:last-child).newsItem {
  border-bottom: 1px solid #dddddd;
}
#latestUpdates .newsArea .newsItem.oneItem {
  border-bottom: 1px solid #dddddd;
}
#latestUpdates .newsArea .newsItem dt time {
  font-weight: bold;
}
#role {
  background-color: #f1f1f1;
  position: relative;
}
#role .titleBlock {
  position: relative;
}
#role .titleBlock .enTitle .deco {
  display: inline-block;
  position: relative;
}
#role .titleBlock .enTitle .deco img {
  position: relative;
  z-index: 1;
}
#role .titleBlock .enTitle .deco.deco1 {
  background-color: #2e8d89;
}
#role .titleBlock .enTitle .deco.deco1::before {
  background-color: #2e8d89;
}
#role .titleBlock .enTitle .deco.deco2 {
  background-color: #1f6360;
}
#role .titleBlock .enTitle .deco.deco2::before {
  background-color: #1f6360;
}
#role .titleBlock .enTitle .deco.deco3 {
  background-color: #1f6360;
}
#role .titleBlock .enTitle .deco.deco3::before {
  background-color: #1f6360;
}
#role .titleBlock .enTitle .deco::before {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  transform: translateX(-100%);
  transition: 0.3s transform cubic-bezier(0.64, -0.01, 0.26, 0.91);
}
#role .titleBlock .jaTitle {
  color: #1f6360;
}
#role .col2Reverse {
  display: flex;
  flex-flow: wrap;
}
#role .col2Reverse .col2ReverseItem {
  display: flex;
  align-items: center;
}
#role .col2Reverse .col2ReverseItem .textArea {
  background-color: #fff;
  box-shadow: 10px 10px 0 rgba(31, 99, 96, 0.7);
  position: relative;
}
#role .col2Reverse .col2ReverseItem .textArea .col2ReverseNum {
  color: #1f6360;
  font-weight: bold;
  position: absolute;
  top: 0;
  left: 0;
}
.secWrap {
  color: #fff;
}
.secWrap .secCol2 .titleBlock {
  text-align: center;
}
.secWrap .envm .titleBlock {
  text-align: center;
}
.secWrap #vision {
  background: url(../images/vision_img01.jpg) center 0;
  background-size: cover;
}
.secWrap #vision .visionCatch {
  font-weight: bold;
  text-align: center;
}
.secWrap #mission {
  background: url(../images/mission_img01.jpg) center 0;
  background-size: cover;
}
#recommend {
  background-repeat: no-repeat;
  position: relative;
}
#recommend .titleBlock {
  position: relative;
  z-index: 1;
}
#recommend .titleBlock .jaTitle {
  color: #1f6360;
  font-weight: bold;
}
#recommend .floatImgs {
  position: absolute;
  left: 0;
  width: 100%;
}
#recommend .floatImgs .floatImg {
  position: absolute;
  max-width: none;
}
#recommend .checkList li {
  font-weight: bold;
  position: relative;
}
#recommend .checkList li::after {
  content: "";
  background-image: url(../images/parts_check.png);
  background-repeat: no-repeat;
  background-size: contain;
  display: block;
  position: absolute;
}

#program {
  position: relative;
}
#program .inner {
  position: relative;
  z-index: 3;
}
#program .titleBlock .jaTitle {
  color: #1f6360;
}
#program .mc_academy {
  position: relative;
  background-color: rgba(255, 255, 255, 0.95);
}

#program .programBoxList {
  display: flex;
  flex-wrap: wrap;
}
#program .programBoxList .programBoxItem {
  position: relative;
  background-color: rgba(255, 255, 255, 0.95);
}
#program .programBoxList .programBoxItem h3 {
  color: #1f6360;
  line-height: 1.1;
}
#program .programBoxList .programBoxItem .tag {
  background-color: rgba(31, 99, 96, 0.85);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.08em;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
}
#program .programBoxList .programBoxItem .entag {
  background-color: rgba(31, 99, 96, 0.85);
  color: #fff;
  font-weight: 500;
  letter-spacing: 0.06em;
  position: absolute;
  top: 0;
  left: 0;
  text-align: center;
}
#program .programBoxList .programBoxItem.wideItem {
  width: 100%;
}
#program .programColorBox {
  background-color: #fff;
}

#about {
  position: relative;
}
#about .titleBlock {
  position: relative;
  z-index: 1;
}
#about .floatImgArea {
  position: absolute;
  left: 0;
  width: 100%;
}
#about .floatImgArea .floatImg {
  position: absolute;
  max-width: none;
}
#about .textArea .aboutWrap h3 {
  color: #1f6360;
}
#features {
  background-color: #ece9dd;
  position: relative;
}
#features::before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  background-image: url(../images/bg_features2.png);
  background-size: 100% auto;
  background-repeat: no-repeat;
  z-index: 2;
  top: 0;
  height: 100%;
}
#features .inner {
  position: relative;
  z-index: 3;
}
#features .titleBlock {
  position: relative;
  z-index: 1;
  text-align: center;
}
#features .featuresBox {
  background-color: rgba(255, 255, 255, 0.95);
  border-radius: 10px;
}
#features .featuresBox .imgArea .movieItem {
  position: relative;
}
#features .featuresBox .imgArea .movieItem.playMarkNone::before {
  content: none;
}
#features .featuresBox .imgArea .movieItem::before {
  content: "";
  display: inline-block;
  background: url(../images/moviebtn.png) no-repeat;
  background-size: cover;
  width: 99px;
  height: 99px;
  position: absolute;
  top: calc(50% - 48px);
  left: calc(50% - 48px);
  z-index: 1;
}
#features .featuresBox .imgArea .featuresMessage {
  font-weight: 500;
}
#features .featuresBox .showyTitle {
  display: inline-block;
}
#features .featuresBox .showyTitle span {
  background-color: #1f6360;
  color: #fff;
  display: inline-block;
  font-weight: bold;
  border-radius: 5px;
}
#features .featuresBox .showyTitle span + span {
  margin-top: 4px;
}
#features .featuresBox.typeProfileBox .profileBox .profileTextArea .profDesc .subTitle {
  display: inline-block;
  font-weight: bold;
}
#features .featuresBox.typeProfileBox .titleProf > span {
  display: block;
}
#features .featuresBox.typeProfileBox .titleProf .jaTitleProf {
  font-weight: bold;
}
#features .featuresBox .movieSizeWrap{
margin-inline: auto;  margin-top: 50px;
}
#features .featuresBox .movieArea{
  width: 100%;
  /* padding-bottom: 56.25%; */
  position: relative;
}
#features .featuresBox .movieArea iframe{
  border: none;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}
#features.adnames{
  display: block;
}
#credo .credoList li .credoTitles {
  background-color: #f1f1f1;
  font-weight: bold;
  border-radius: 8px 8px 0 0;
}
#credo .credoList li .credoTitles .credNum {
  color: #1f6360;
}
#credo .credoList li .credoTitles .credoEnTitle,
#credo .credoList li .credoTitles .credoJaTitle {
  text-align: center;
}
#credo .credoList li .credoTitles .credoEnTitle {
  color: #1f6360;
  font-weight: bold;
}
#credo .credoList li .credoText .credoBodyDesc {
  font-weight: bold;
  text-align: center;
}
#credo .credoList li .credoText .credoBodySubDesc {
  text-align: center;
}
#credo .titleBlock {
  position: relative;
  z-index: 1;
  text-align: center;
}
#credo .titleBlock .jaTitle {
  color: #fff;
}
#credo .desc {
  color: #fff;
  font-weight: bold;
}

#profile .titleBlock {
  position: relative;
  z-index: 1;
  text-align: center;
}
#profile .lineTable {
  line-height: 1.625;
}
#profile .lineTable > div {
  display: flex;
}
#profile .lineTable > div dt {
  border-bottom: 1px solid #dddddd;
  font-weight: bold;
  display: flex;
  flex-flow: wrap;
}
#profile .lineTable > div dd {
  border-bottom: 1px solid #dddddd;
  padding: 25px 0;
}

#message {
  position: relative;
}
#message .grayBox {
  position: relative;
  background-color: #f9f9f9;
}
#message .grayBox_r {
  position: relative;
  background-color: #f9f9f9;
}
#ambassadors .titleBlock {
  position: relative;
  z-index: 1;
  text-align: center;
}
#ambassadors .ambProfileList li .imgArea {
  text-align: center;
}
#ambassadors .ambProfileList li .textArea {
  background-color: #fff;
  border-radius: 10px;
	
}
#ambassadors .ambProfileList li .textArea .regularworks span {
  color: #1f6360;
  font-weight: bold;
}
#ambassadors .ambProfileList li .textArea .ambProfileName {
  color: #1f6360;
  font-weight: bold;
}
#ambassadors .ambProfileList li .ambProfileComment .main {
  font-weight: bold;
}
#ambassadors .ambProfileList li .ambProfileComment .sub {
  font-size: 16px;
  margin-top: 10px;
}

#latestUpdates {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1s;
}
#latestUpdates.inView {
  opacity: 1;
  transform: translateY(0);
}

#vision {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1s;
}
#vision.inView {
  opacity: 1;
  transform: translateY(0);
}

#mission {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1s;
}
#mission.inView {
  opacity: 1;
  transform: translateY(0);
}

#recommend {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1s;
}
#recommend.inView {
  opacity: 1;
  transform: translateY(0);
}

#about {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1s;
}
#about.inView {
  opacity: 1;
  transform: translateY(0);
}

#credo {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1s;
}
#credo.inView {
  opacity: 1;
  transform: translateY(0);
}

#profile {
  opacity: 1;
  /* transform: translateY(100px); */
  transition: all 1s;
}
#profile.inView {
  opacity: 1;
  transform: translateY(0);
}

#message {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1s;
}
#message.inView {
  opacity: 1;
  transform: translateY(0);
}


#features {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1s;
}
#features.inView {
  opacity: 1;
  transform: translateY(0);
}


#deal {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1s;
}
#deal.inView {
  opacity: 1;
  transform: translateY(0);
}

#ambassadors {
  opacity: 1;
  /* transform: translateY(100px); */
  transition: all 1s;
  /* margin-bottom: 100px; */
}

#ambassadors.inView {
  opacity: 1;
  transform: translateY(0);
}


#mind {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1s;
}
#mind.inView {
  opacity: 1;
  transform: translateY(0);
}

#partner {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1s;
}
#partner.inView {
  opacity: 1;
  transform: translateY(0);
}


#mind .titleBlock {
  position: relative;
  z-index: 1;
  text-align: center;
}


#mind p{

  line-height: 2;
}

#voice {
  background-color: rgb(255, 255, 255);
  background-blend-mode: lighten;
  transition: 3s background cubic-bezier(0.64, -0.01, 0.26, 0.91);
}
#voice::after {
  opacity: 0;
  transition: 3s opacity cubic-bezier(0.64, -0.01, 0.26, 0.91) 0.5s;
}
#voice.inView {
  background-color: rgba(255, 255, 255, 0);
}
#voice.inView::after {
  opacity: 1;
}

#role .titleBlock,
#role .col2ReverseItem {
  opacity: 0;
  transform: translateY(100px);
  transition: all 1s;
}
#role.inView .titleBlock,
#role.inView .col2ReverseItem {
  opacity: 1;
  transform: translateY(0);
}

#mission {
  transition-delay: 0.2s;
}

#deal {
  /* padding-block: 110px; */
  padding: 0 0 110px;
}

#deal .inner {
  margin: 0 auto;
}

#deal h2 {
  text-align: center;
}

.dealScrollContent h3 {
  font-weight: bold;
}

.dealScrollContent h4 {
  font-size: 16px;
  font-weight: bold;
  margin-top: 12px;
}

.dealScroll {
  border: 1px solid #cccccc;
  overflow-y: scroll;
  height: 282px;
  padding: 40px;
  font-size: 14px;
  line-height: 1.79;
  max-width: 1120px;
  margin-inline: auto; 
  overflow-scrolling: touch;
}


#partner{
  padding: 0 0 110px;
}

#partner .inner{
  width: 90%;
  max-width: 1140px;
  margin: 0 auto;
}

#partner h2{
  font-size: 28px;
 text-align: center;
}

#partner .partnersList{
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  margin-top: 45px;
  gap: 20px;
} 

#partner .partnersList li{
  width: calc(25% - 15px);
}

/* ココから下には記入禁止 */
.none {
  display: none;
}

.englishBody {
  font-family: "Inter", sans-serif;
}
.englishBody #voice h2 {
  font-weight: 500;
}
.englishBody #voice .voiceCopy {
  font-weight: 500;
}
.englishBody #program .programBoxList .programBoxItem p {
  line-height: 1.5;
}
.englishBody #features .typeProfileBox .profileBox .profileTextArea .profDesc {
  line-height: 1.71;
}
.englishBody #credo .desc {
  font-size: 16px;
  font-weight: normal;
}
.englishBody #message .representativeName {
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  body {
    font-size: 15px;
  }
  p {
    line-height: 1.8;
  }
  #langBtn {
    display: none;
    left: 20px;
    top: 35px;
    z-index: 101;
  }
  #langBtn span {
    padding: 0 2px;
  }
  #langBtn a {
    font-size: 18px;
  }
  #gMenu {
    width: 100%;
  }
  #gMenu .gMenuColBlock {
    padding: 0 28px 140px;
    margin-top: 100px;
    height: 100%;
    overflow: scroll;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  #gMenu .gMenuColBlock::-webkit-scrollbar {
    display: none;
  }
  #gMenu .gMenuColList + .gMenuColList {
    margin-top: 30px;
  }
  #gMenu .gMenuColList li + li {
    margin-top: 30px;
  }
  #gMenu .gMenuColList li a {
    padding-right: 30px;
  }
  #gMenu .gMenuColList li a::before {
    top: 7px;
    width: 26px;
    height: 3px;
  }
  #gMenu .enMenu {
    font-size: 20px;
  }
  #gMenu .jaMenu {
    font-size: 15px;
  }
  .gMenuLink{
  display: block;
}
.gMenuLink li{
  margin-top: 30px;
}
.gMenuLink a{
  width: 100%;
}
.gMenuLink .arrowBtn::before {
    width: 22px;
    height: 20px;
  }
  #hero::before {
    content: "";
    display: block;
    background-color: #1f6360;
    position: absolute;
    top: 0;
    left: 0;
    width: 960px;
    height: 849px;
    z-index: -1;
  }
  #hero .str {
    position: absolute;
    left: 100vw;
    top: 50%;
    transform: translateY(-50%);
    aspect-ratio: 1941/118;
    width: 100%;
    /*mix-blend-mode: difference;*/
    opacity: 0.35;
  }
  #hero .str0 {
    /*animation: strAnim0 15s linear forwards;*/
    left: 0;
    width: 1470px;
    display: none;
  }
  #hero .str1 {
    animation: strAnim 30s linear infinite;
    animation-delay: 1s;
  }
  #hero .str2 {
    animation: strAnim 30s linear infinite;
    animation-delay: 16s;
  }
  @keyframes strAnim0 {
    0% {
      left: 0;
    }
    90%, 100% {
      left: -100vw;
    }
  }
  @keyframes strAnim {
    0% {
      left: 100vw;
    }
    90%, 100% {
      left: -100vw;
    }
  }
  #hero .copStr {
    fill: #fff;
  }
  #hero {
    height: 700px;
  }
  #hero #videoArea {
  background: url(../images/sp/hero_img.jpg) no-repeat center/cover;
  width: auto;
  height: 100%;
  overflow: hidden;
  margin-left: 0;
}
  /* #hero #videoArea:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
  } */
  #hero #videoArea:after {
    width: 130%;
    height: 130%;
    left: -150px;
    top: 30px;
    background-size: contain;
  }
  #hero #videoArea > div {
    position: relative;
  }
  #hero #videoArea video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
  }
  #hero #logo {
    width: 300px;
    bottom: min(22vw, 100px);
  }
  #hero #logo {
  aspect-ratio: 89/36;
  max-width: 890px;
  width: 70vw;
  position: absolute;
  left: 5.5vw;
  z-index: 30;
}
  #hero #logo img {
    width: 100%;
    height: auto;
  }
  #hero #sen {
    width: 2px;
    height: 200px;
    position: absolute;
    top: 750px;
    left: 5vw;
  }
  #globalFooter {
    position: relative;
    padding: 100px 0 0;
  }
  #globalFooter .footNavArea {
    padding: 0 20px;
  }
  #globalFooter .footNavArea .footLogo img {
    width: 190px;
  }
  #globalFooter .footNavArea .footLogo .footLogoText {
    margin-top: 20px;
  }
  #globalFooter .footNavArea .footNav {
    margin-top: 30px;
  }
  #globalFooter .footNavArea .footNav .footMenuColBlock .footMenuColList li + li {
    margin-top: 10px;
  }
  #globalFooter .footNavArea .footNav .footMenuColBlock .footMenuColList li a {
    font-size: 14px;
  }
  #globalFooter .footInfoArea {
    flex-direction: column;
  }
  #globalFooter .footInfoArea .wideFootElm {
    /* width: 100%; */
  }
  #globalFooter .footInfoArea .footInfo {
    padding: 25px 20px 40px;
  }
  #globalFooter .footInfoArea .footInfo .footTel .tel {
    font-size: 20px;
  }
  #globalFooter .footInfoArea .footInfo .footTel .num {
    font-size: 23px;
    margin-top: 2px;
  }
  #globalFooter .footInfoArea .footInfo .footInfoText {
    line-height: 1.76;
    margin-top: 28px;
  }
  #globalFooter .footInfoArea #pageTop {
    margin-left: auto;
    width: 50px;
    height: 50px;
    background-color: #fff;
    text-align: center;
    position: fixed;
    bottom: 30px;
    right: 20px;
    z-index: 98;
    opacity: 0;
    transition: 0.3s opacity cubic-bezier(0.64, -0.01, 0.26, 0.91);
  }
  #globalFooter .footInfoArea #pageTop.show {
    opacity: 1;
  }
  #globalFooter .footInfoArea #pageTop::after {
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    margin: 8px auto 0;
    width: 4px;
    height: 32px;
  }
  #globalFooter .footInfoArea .copyright {
    border-top: 1px solid #e3ede3;
    padding: 20px 20px;
  }
  #globalFooter .footInfoArea .footBottomArea{
flex-direction: column;
  }
  .iconSnsWrap{
padding-inline: 20px;
padding-bottom: 20px;
  }
  .contactBlock::before {
    background-size: contain;
    top: -46px;
    right: -48px;
    width: 250px;
    height: 302px;
  }
  .contactBlock.type2 {
    background: url(../images/sp/bg_contact.png) no-repeat;
    background-size: cover;
  }
  .contactBlock .inner {
    padding: 50px 20px;
  }
  .contactBlock .contactTitle {
    width: 80%;
    margin: 0 auto;
  }
  .contactBlock .contactTitle + .contactText {
    margin-top: 20px;
  }
  .contactBlock .contactText {
    font-size: 18px;
    line-height: 1.93;
  }
  .contactBlock .contactBtnWrap {
    margin-top: 30px;
  }
  .contactBlock .contactBtn {
    font-size: 20px;
  }
  .contactBlock .contactBtn.arrowBtn::before {
    width: 26px;
    height: 24px;
  }
  #voice {
    background-image: url(../images/sp/bg_catch.png);
    background-position: center center;
    background-size: cover;
    padding: 100px 0 140px;
  }
  #voice::before {
    height: 251px;
  }
  #voice::after {
    background: url(../images/sp/parts_catch_shadow.png) center center;
  }
  #voice .inner {
    padding: 0 20px;
  }
  #voice h2 {
    line-height: 1.8;
  }
  #voice .voiceCopy {
    font-size: 15px;
    margin-top: 50px;
  }
  #latestUpdates {
    padding: 100px 0 115px;
  }
  #latestUpdates .inner {
    padding: 0 20px;
  }
  #latestUpdates .titleBlock {
    text-align: center;
  }
  #latestUpdates .titleBlock .enTitle img {
    max-width: 305px;
  }
  #latestUpdates .titleBlock .jaTitle {
    font-size: 17px;
    margin-top: 20px;
  }
  #latestUpdates .newsArea {
    margin-top: 20px;
  }
  #latestUpdates .newsArea .newsItem {
    padding: 20px 0;
  }
  #latestUpdates .newsArea .newsItem:not(:last-child).newsItem {
    border-bottom: 1px solid #dddddd;
  }
  #latestUpdates .newsArea .newsItem dt {
    font-size: 13px;
  }
  #latestUpdates .newsArea .newsItem dt time {
    font-weight: bold;
  }
  #latestUpdates .newsArea .newsItem dd {
    font-size: 16px;
    margin-top: 10px;
  }
  #role {
    padding: 0 0 75px;
  }
  #role .titleBlock .enTitle .deco {
    padding: 0 20px;
  }
  #role .titleBlock .enTitle .deco.deco1 {
    width: 70%;
  }
  #role .titleBlock .enTitle .deco.deco2 {
    background-color: #1f6360;
    left: 0;
    /* width: 47%; */
  }
  #role .titleBlock .enTitle .deco.deco2::before {
    background-color: #1f6360;
  }
  /* #role .titleBlock .enTitle .deco.deco3 {
    width: 81%;
  } */
  #role .col2Reverse {
    margin-top: 30px;
  }
  #role .col2Reverse .col2ReverseItem {
    flex-direction: column-reverse;
  }
  #role .col2Reverse .col2ReverseItem + .col2ReverseItem {
    margin-top: 30px;
  }
  #role .col2Reverse .col2ReverseItem .textArea {
    top: -50px;
    padding: 30px 20px;
    margin: 0 20px;
  }
  #role .col2Reverse .col2ReverseItem .textArea .col2ReverseNum {
    font-size: 25px;
    top: -15px;
    left: 20px;
  }
  #role .col2Reverse .col2ReverseItem .textArea .col2ReverseTitle {
    font-size: 20px;
  }
  #role .col2Reverse .col2ReverseItem .textArea p {
    margin-top: 16px;
  }
  .secWrap .secCol2 {
    padding: 70px 20px;
  }
  /* .secWrap .secCol2 + .secCol2 {
    margin-top: 2px;
  } */
  .secWrap .secCol2 .titleBlock {
    margin-bottom: 2%;
  }
  .secWrap .secCol2 .desc {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 20px;
  }
  .secWrap .envm {
    padding: 70px 20px;
  }
  /* .secWrap .envm + .envm {
    margin-top: 2px;
  } */
  .secWrap .envm .titleBlock {
    margin-bottom: 2%;
  }
  .secWrap .envm .desc {
    font-size: 16px;
    line-height: 1.8;
    margin-top: 20px;
    text-align: center;
  }
  .secWrap #vision {
    background-position: left 0px;
  }
  .secWrap #vision .enTitle img {
    width: 110px;
  }
  .secWrap #vision .visionCatch {
    font-size: 22px;
    font-weight: bold;
    margin-top: 20px;
  }
  .secWrap #mission .visionCatch {
    font-size: 22px;
    font-weight: bold;
    margin-top: 20px;
    text-align: center;
  }
  .secWrap #mission {
    background-position-x: -320px;
  }
  .secWrap #mission .enTitle img {
    width: 138px;
  }
  #recommend {
    background-size: contain;
    padding: 75px 0 115px;
    padding-top: 140.3vw;
  }
  #recommend .inner {
    padding: 0 20px;
  }
  #recommend .titleBlock {
    width: 329px;
  }
  #recommend .titleBlock .enTitle {
    margin-top: 4px;
  }
  #recommend .titleBlock .enTitle img {
    width: 329px;
  }
  #recommend .titleBlock .enTitle + .jaTitle {
    margin-top: 2px;
  }
  #recommend .titleBlock .jaTitle {
    font-size: 20px;
    text-align: right;
  }
  #recommend .floatImgs {
    top: 0;
  }
  #recommend .floatImgs .floatImg {
    position: absolute;
    max-width: none;
  }
  #recommend .floatImgs .floatImg1 {
    top: 75px;
    width: 58vw;
    z-index: 1;
  }
  #recommend .floatImgs .floatImg2 {
    width: 49.7vw;
    top: 46.7vw;
    right: 0;
    z-index: 2;
  }
  #recommend .floatImgs .floatImg3 {
    width: 38.1vw;
    top: 80vw;
    left: 25px;
    z-index: 3;
  }
  #recommend .checkList {
    margin-top: 36px;
  }
  #recommend .checkList li {
    font-size: 18px;
    padding-left: 30px;
  }
  #recommend .checkList li + li {
    margin-top: 20px;
  }
  #recommend .checkList li::after {
    width: 16px;
    height: 18px;
    top: 4px;
    left: 0;
  }
  #program {
    padding: 70px 0;
    background-image: url(../images/sp/bg_program.png);
    background-position: center bottom;
  }
  #program .inner {
    padding: 0 10px;
  }

  #program .titleBlock .enTitle img {
    width: 344px;
  }
  #program .titleBlock .jaTitle {
    font-size: 18px;
    line-height: 1.67;
    margin: 20px 0 30px;
  }
  #program .mc_academy {
    border-radius: 10px;
    font-size: 16px;
    padding: 30px 20px;
  }
  #program .mc_academy:first-child {
    margin-bottom: 35px;
  }
  #program .mc_academy p{
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
  }
  #program .business_txt{
    margin-top: 30px;
  }
  #program .mc_academy .challenge_text {
    font-size: 20px;
    font-weight: 600;
    color: #1f6360;
    margin: 0 0 30px;
    line-height: 1.6;
  }
  #program .mc_academy a{
    position: relative;
    display: inline-block;
    overflow: hidden;
  }
  #program .mc_academy a::after{
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: white;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  #program .mc_academy a:hover::after{
    opacity: 0.2; 
  }
  #program .programBoxList {
    margin-top: 10px;
  }

  #program .programBoxList .programBoxItem + .programBoxItem {
    margin-top: 10px;
  }
  #program .programBoxList .programBoxItem h3 {
    font-size: 20px;
    text-align: center;
  }
  #program .programBoxList .programBoxItem.wideItem .challenge_text {
    text-align: center;
    font-size: 16px;
    font-weight: 600;
    color: #1f6360;
    margin-top: 16px;
    line-height: 1.6;
  }
  #program .programBoxList .programBoxItem .tagh3 {
    font-size: 20px;
    padding-left: 30px;
  }
  #program .programBoxList .programBoxItem h3 span {
    font-size: 15px;
  }
  #program .programBoxList .programBoxItem p {
    font-size: 16px;
  }
  #program .programBoxList .programBoxItem .tag {
    border-radius: 3.5px 0 0 0;
    font-size: 14px;
    width: 73px;
    padding: 18px 4px;
  }
  #program .programBoxList .programBoxItem .entag {
    border-radius: 3.5px 0 0 0;
    font-size: 12px;
    width: 73px;
    padding: 18px 4px;
  }
  #program .programColorBox {
    font-size: 13px;
    margin-top: 14px;
    padding: 16px 16px;
  }
  #program .contactBtn {
    background-color: #fff;
    font-size: 18px;
    color: #1f6360;
    display: block;
    font-weight: bold;
    margin: 40px 0 30px;
    position: relative;
    text-align: center;
    text-decoration: none;
    max-width: 644px;
    margin-inline: auto;
    line-height: 26px;
  }

  #program .contactBtn2 {
    background-color: #fff;
    font-size: 18px;
    color: #1f6360;
    display: block;
    font-weight: bold;
    margin: 40px 0 30px;
    position: relative;
    text-align: center;
    text-decoration: none;
    max-width: 644px;
    margin-inline: auto;
    line-height: 26px;
  }

  #program .contactBtng {
    background-color: #1f6360;
    border-radius: 50px;
    font-size: 18px;
    color: #ffffff;
    display: block;
    font-weight: bold;
    margin-top: 40px;
    padding: 16px 40px;
    position: relative;
    text-decoration: none;
    max-width: 448px;
    margin-inline: auto;
    text-align: center;
  }

  #program .checkpoint{
    font-size: 18px;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.85);
    color: #1f6360;
    margin-top: 40px;
    padding: 20px;
    width:  100%;
    margin-top: 20px;
    line-height: 2;
    border-radius: 10px;
    border: #1f6360 2px solid;

   }

  .programcourse2{
    font-size: 18px;
    margin-top: 20px;
    margin-bottom: 10px;
  }

  #program .checkList2 {
    max-width: 420px;
  }
  #program .checkList2 li {
    font-size: 18px;
    padding-left: 30px;
    position: relative;
  }
  #program .checkList2 li + li {
    margin-top: 16px;
  }
  #program .checkList2 li::after {
    width: 16px;
    height: 17px;
    top: 8px;
    left: 0;
  }

  #program .checkList2 li::after {
    content: "";
    background-image: url(../images/parts_check.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    position: absolute;
  }

  #program #logo img{
    width: 80%;
  }
  #program #business_academy #logo img{
    width: 80%;
    margin-bottom: 20px;
  }
  #program  #logo .logo_title{
    font-size: 22px;
    line-height: 1.2;

  }
  
  

  #about {
    padding: 138vw 0 125px;
  }
  #about .inner {
    padding: 0 20px;
  }
  #about .titleBlock {
    width: 329px;
  }
  #about .titleBlock .enTitle img {
    width: 247px;
  }
  #about .titleBlock .jaTitle {
    font-size: 17px;
    margin-top: 20px;
  }
  #about .floatImgArea {
    top: 0;
  }
  #about .floatImgArea .floatImg {
    position: absolute;
    max-width: none;
  }
  #about .floatImgArea .floatImg1 {
    top: 32.5vw;
    width: 50.1vw;
    z-index: 1;
  }
  #about .floatImgArea .floatImg2 {
    width: 44.8vw;
    top: 28.7vw;
    right: 0;
    z-index: 2;
  }
  #about .textArea .aboutWrap {
    margin-top: 30px;
  }
  #about .textArea .aboutWrap h3 {
    font-size: 19px;
    line-height: 1.63;
  }
  #about .textArea .aboutWrap p {
    font-size: 16px;
    margin-top: 10px;
  }
  #features .featuresBox .imgArea .movieItem.playMarkNone::before {
    content: none;
  }
  #features .featuresBox .showyTitle{
    margin-top: 0px !important;
  }
  #features .featuresBox .showyTitle span + span {
    margin-top: 4px;
  }
  #features .featuresBox.typeProfileBox .titleProf > span {
    display: block;
  }
  #features .sadline{
    font-size: 16px;
    font-weight: bold;
    color: #1f6360;
    align-items: center; 
    display: flex;
    justify-content: left;
    margin: 50px 0 20px;
  }
   .sadline::after {
    background-color: #dddddd ;
    content: "";
    height: 1px;
    flex-grow: 1; 
    margin-left: 28px;
    }
  #features .line{
    background-color: #dddddd ;
    content: "";
    height: 1px;
   margin: 50px 0;
  }
  #features .adnames{
    font-size: 18px;
    font-weight: 600;
    margin-top: 10px;
    }
    #features .adname-mini{
      font-size: 14px;
      margin-top: 4px;
     }

     #features .adname-mini + .forEn{
      margin-top: 4px;
     }
     #features .imgArea + .forEn{
      margin-top: 14px;
     }   

     #features .adname-mini>p{
font-weight: 600;
     }

     #features .adname-mini+ .forEn{
margin-top: 4px !important;
           }

#features .featuresBox .minidesc{
  font-size: 13px;
  line-height: 1.81;
  margin-top: 10px;
 }



#features.featuresBox.movieSizeWrap{
width: 100%;
margin-top: 30px;
}
#features .movieCap{
  font-size: 12px;
  display: inline-block;
  margin-top: 10px;
}
#features .movieLink{
  width: 100%;
  height: 100%;
  display: block;   
  transition: 0.3s all;
}

#features .movieLink::before{
  position: absolute;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
  width: 44px;
  height: 44px;
  z-index: 2;
  background: #fff;
  opacity: 0.7;    transition: 0.3s all;
}

#features .movieLink::after{
  position: absolute;
  z-index: 2;
  content: "";
  display: block;
  top: 50%;
  left: 50%;
  transform: translate(-40%, -50%);
  border-style: solid;
  border-color: transparent transparent transparent #1f6360;
  border-width: 7px 0 7px 14px;
}

.exam .forSP1000{
    margin-top: 30px;
    text-align: center;
  }

  #credo {
    /* padding-bottom: 80px; */
  }
  #credo .voiceCopy {
    font-size: 15px;
    margin-top: 50px;
    padding: 0 20px;
  }
  #credo .credoHeadArea {
    background: url(../images/sp/bg_credo.png) no-repeat;
    background-size: cover;
    padding: 90px 20px 170px;
    /* margin-top: 2px; */
  }
  #credo .credoList {
    width: 88%;
    max-width: 450px;
    margin: -125px auto 0;
  }
  #credo .credoList li {
    border-radius: 4px;
  }
  #credo .credoList li + li {
    margin-top: 25px;
  }
  #credo .credoList li .credoTitles {
    padding: 15px 20px 15px;
  }
  #credo .credoList li .credoTitles .credoEnTitle {
    font-size: 22px;
  }
  #credo .credoList li .credoTitles .credoJaTitle {
    font-size: 18px;
  }
  #credo .credoList li .credoImg img {
    border-radius: 0 0 4px 4px;
  }
  #credo .credoList li .credoText {
    margin: 14px 0 10px;
  }
  #credo .credoList li .credoText .credoBodyDesc {
    font-size: 16px;
  }
  #credo .credoList li .credoText .credoBodySubDesc {
    margin-top: 4px;
  }
  #credo .inner {
    padding: 0 20px;
  }
  #credo .titleBlock .enTitle img {
    width: 158px;
  }
  #credo .titleBlock .jaTitle {
    font-size: 22px;
    margin-top: 20px;
  }
  #credo .desc {
    font-size: 15px;
    line-height: 1.67;
    margin-top: 30px;
  }
  #profile {
    padding: 100px 0 50px;
  }
  #profile .inner {
    padding: 0 20px;
  }
  #profile .titleBlock .enTitle img {
    width: 162px;
  }
  #profile .titleBlock .jaTitle {
    font-size: 17px;
    margin-top: 20px;
  }
  #profile .lineTableCol2 .lineTable + .lineTable {
    margin-top: 0;
  }
  #profile .lineTable {
    margin-top: 45px;
  }
  #profile .lineTable > div dt {
    font-size: 15px;
    padding: 25px 0;
    width: 84px;
  }
  #profile .lineTable > div dd {
    font-size: 16px;
    width: calc(100% - 84px);
  }
  #message {
    padding-bottom: 80px;
    background-color: #1f6360;
  }
  #message .titleBlock .enTitle img {
    width: 197px;
  }
  #message .titleBlock .jaTitle {
    font-size: 17px;
    margin-top: 20px;
  }
  #message .grayBox {
    padding: 90px 20px 0;
  }
  #message .grayBox_r {
    padding: 15px 20px 0;
  }
  #message .imgAreaSp {
    margin-top: 30px;
    text-align: center;
  }
  #message .img_rica {
    margin-top: 0;
  }
  #message .imgArea {
    max-width: 200px;
    margin: 65px auto 0;
  }
  #message .textArea {
    margin-top: 30px;
    padding-bottom: 40px;
  }
  #message .textArea .desc {
    font-size: 16px;
  }
  #message .representativeName {
    margin-top: 30px;
  }
  #message .representativeName img {
    width: 142px;
  }
  #ambassadors {
    background: #f1f1f1;
    background-size: cover;
    padding: 80px 0 90px;
  }
  #ambassadors .inner {
    padding: 0 20px;
  }
  #ambassadors h2 {
	font-size: 20px;
    padding-bottom: 25px;
    margin-bottom: 25px;
	text-align: center;
	font-weight: bold;
	position: relative;
  }
  #ambassadors h2:before {
    content: "";
    display: inline-block;
    width: 130px;
    height: 6px;
    background-color: #2e8d89;
    position: absolute;
    bottom: 0;
    left: calc(50% - 40px);
    transform: skewX(-35deg);
  }
  #ambassadors h2:after {
    content: "";
    display: inline-block;
    width: 140px;
    height: 6px;
    background-color: #1f6360;
    position: absolute;
    bottom: 4px;
    left: calc(50% - 90px);
    transform: skewX(-35deg);
  }
  #ambassadors .titleBlock .enTitle img {
    width: 309px;
  }
  #ambassadors .titleBlock .jaTitle {
    font-size: 17px;
    margin-top: 20px;
  }
  #ambassadors .ambProfileList li {
    /* margin-top: 35px; */
  }
  #ambassadors .ambProfileList li + li {
    margin-top: 55px;
  }
  #ambassadors .ambProfileList li .imgArea {
    margin: 0 auto;
    max-width: 240px;
  }
  #ambassadors .ambProfileList li .textArea {
    margin-top: 30px;
    padding: 20px;
  }
  #ambassadors .ambProfileList li .textArea .regularworks {
    font-size: 13px;
    margin-top: 10px;
  }
  #ambassadors .ambProfileList li .textArea .ambProfileName .ja {
    font-size: 17px;
  }
  #ambassadors .ambProfileList li .textArea .ambProfileName .en {
    font-size: 14px;
  }
  #ambassadors .ambProfileList li .textArea .desc {
    font-size: 13px;
    margin-top: 10px;
    line-height: 1.81;
  }
  #ambassadors .ambProfileList li .ambProfileComment {
    margin-top: 20px;
  }
  #ambassadors .ambProfileList li .ambProfileComment .main {
    font-size: 18px;
    line-height: 1.66;
  }
  /* 250417追記 */
  #mind {
    background: url(../images/bg_ambassadors.png) #e9e9e9 center center;
    background-size: cover;
    padding: 80px 0 90px;
  }
  #mind .inner {
    padding: 0 20px;
  }
  #mind .titleBlock .enTitle img {
    width: 309px;
  }
  #mind .titleBlock .jaTitle {
    font-size: 17px;
    /* margin-top: 20px; */
  }
  #mind .jaTitle::after {
    position: absolute;
    background-color: #1f6360;
    content: "";
    height: 2px;
    width: 30px;
    top: 40px;
    left: 46%;
  }
  #mind .mind_logo{
    width: 250px;
    margin-top: 40px;
  }
  
  #deal {
    /* padding-top: 80px; */
    padding-bottom: 90px;
  }

  #deal h2 {
    font-size: 18px;
  }

  .dealScroll {
    margin-top: 30px;
    margin-bottom: 50px;
  }
  #deal .inner .dealScroll:last-child{
    margin-bottom: 0px;
  }

  #deal .inner {
    padding-inline: 20px;
  }

  .dealScroll {
    padding: 20px;
  }

  #partner{
    padding: 0 0 90px;
  }
  
  #partner .inner{
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
  }
  
  #partner h2{
    font-size: 22px;
   text-align: center;
  }
  
  #partner .partnersList{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 20px;
    gap: 10px;
  } 
  
  #partner .partnersList li{
    width: calc(50% - 5px);
  }

  /* ココから下には記入禁止 */
  .forPC {
    display: none !important;
  }
  .none {
    display: none;
  }
  .englishBody #hero #logo {
    max-width: 280px;
  }
   #program #inner #logo {
    max-width: 280px;
  }
  .englishBody #latestUpdates .titleBlock {
    text-align: left;
  }
  .englishBody #voice h2 {
    font-size: 30px;
    line-height: 1.4;
  }
  .englishBody #role .col2Reverse .col2ReverseItem .textArea p {
    line-height: 1.65;
  }
  .englishBody .secCol2 .desc {
    line-height: 1.65;
  }
  .englishBody .secWrap #vision .enTitle img {
    width: 175px;
  }
  .englishBody .secWrap #mission .enTitle img {
    width: 202px;
  }
  .englishBody #about .textArea .aboutWrap p {
    line-height: 1.65;
  }
  .englishBody #features .featuresBox .desc {
    line-height: 1.5;
  }
  .englishBody #features .typeProfileBox .profileBox .profileTextArea .profDesc {
    line-height: 1.71;
  }
  /* .englishBody #credo {
    padding-bottom: 90px;
  } */
  /* .englishBody #credo .credoList li .credoText {
    margin-top: 30px;
  } */
  .englishBody #credo .credoList li .credoText .credoBodyDesc {
    font-size: 18px;
    line-height: 1.3;
  }
  .englishBody #credo .credoList li .credoText .credoBodySubDesc {
    line-height: 1.4;
    margin-top: 10px;
  }
  .englishBody #profile .lineTable > div dt {
    width: 140px;
  }
  .englishBody #message .textArea .desc {
    line-height: 1.65;
    margin-top: 10px;
  }
  .englishBody #message .representativeName {
    font-size: 18px;
  }
  .englishBody #ambassadors .ambProfileList li .textArea .ambProfileName .en {
    font-size: 18px;
  }
  .englishBody .contactBlock .contactBtn {
    font-size: 24px;
  }
  .englishBody .contactBlock .contactTitle + .contactText {
    font-size: 18px;
  }
  .englishBody #globalFooter .footNavArea .footLogo img {
    width: 240px;
  }
  .Scrollh3{
    margin-top: 20px;
  }
}
@media print, screen and (min-width: 769px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
  .adjustAnchorPos {
    margin-top: -160px;
    padding-top: 160px;
  display:inline-block;
  }
  .textLink:hover {
    opacity: 0.6;
  }
  #langBtn {
    right: 210px;
    top: 50%;
    transform: translateY(-50%);
    mix-blend-mode: multiply;
  }
  #langBtn span {
    padding: 0 2px;
  }
  #langBtn a:hover {
    color: #1f6360;
  }
  #gMenu {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
  }
  #gMenu .gMenuColBlock {
    padding: 60px 5.5vw;
    display: flex;
    flex-flow: wrap;
    max-width: 1430px;
    margin: auto;
    width: 100%;
  }
  #gMenu .gMenuColList {
    width: calc(33.3% - 53px);
  }
  #gMenu .gMenuColList:has(+ .gMenuColList) {
    margin-right: 80px;
  }
  #gMenu .gMenuColList li + li {
    margin-top: 50px;
  }
  #gMenu .gMenuColList li a {
    padding-right: 60px;
  }
  #gMenu .gMenuColList li a:hover::before {
    transform: translateX(20px);
  }
  #gMenu .gMenuColList li a::before {
    top: 10px;
    width: 52px;
    height: 5px;
  }
  #gMenu .enMenu {
    font-size: 26px;
  }
  #gMenu .jaMenu {
    font-size: 17px;
    margin-top: 6px;
  }
  .gMenuLink .arrowBtn::before {
    width: 28px;
    height: 26px;
  }
  #hero::before {
    content: "";
    display: block;
    background-color: #1f6360;
    position: absolute;
    top: 0;
    left: 0;
    width: 960px;
    height: 849px;
    z-index: -1;
  }
  #hero .str {
    position: absolute;
    left: 100vw;
    top: 50%;
    transform: translateY(-50%);
    aspect-ratio: 1941/118;
    width: 100%;
    /*mix-blend-mode: difference;*/
    opacity: 0.35;
  }
  #hero .str0 {
    /*animation: strAnim0 15s linear forwards;*/
    left: 0;
    width: 1470px;
  }
  #hero .str1 {
    animation: strAnim 30s linear infinite;
    animation-delay: 1s;
  }
  #hero .str2 {
    animation: strAnim 30s linear infinite;
    animation-delay: 16s;
  }
  @keyframes strAnim0 {
    0% {
      left: 0;
    }
    90%, 100% {
      left: -100vw;
    }
  }
  @keyframes strAnim {
    0% {
      left: 100vw;
    }
    90%, 100% {
      left: -100vw;
    }
  }
  #hero .copStr {
    fill: #fff;
  }
  #hero #videoArea {
    width: calc(100% - 10vw);
    margin-left: 10vw;
    height: 843px;
    overflow: hidden;
  }
  /* #hero #videoArea:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
  } */
  #hero #videoArea:after {
    bottom: 0;
    left: 0;
    width: 696px;
    height: 843px;
  }
  #hero #videoArea > div {
    position: relative;
  }
  #hero #videoArea video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
  }
  #hero #logo {
    bottom: min(5vw, 60px);
  }
  #hero #logo img {
    width: 100%;
    height: auto;
  }
  #hero #sen {
    width: 2px;
    height: 200px;
    position: absolute;
    top: 750px;
    left: 5vw;
  }
  #globalFooter .footerInner {
    display: flex;
  }
  #globalFooter .footNavArea {
    padding: 80px 110px 100px;
    width: 50%;
    border-right: 1px solid #e3ede3;
  }
  #globalFooter .footNavArea .footLogo img {
    width: 253px;
  }
  #globalFooter .footNavArea .footLogo .footLogoText {
    margin-top: 20px;
  }
  #globalFooter .footNavArea .footNav {
    margin-top: 60px;
  }
  #globalFooter .footNavArea .footNav .footMenuColBlock {
    display: flex;
    flex-flow: wrap;
  }
  #globalFooter .footNavArea .footNav .footMenuColBlock .footMenuColList {
    width: calc(50% - 40px);
  }
  #globalFooter .footNavArea .footNav .footMenuColBlock .footMenuColList:not(:last-child) {
    margin-right: 80px;
  }
  #globalFooter .footNavArea .footNav .footMenuColBlock .footMenuColList li + li {
    margin-top: 10px;
  }
  #globalFooter .footNavArea .footNav .footMenuColBlock .footMenuColList li a {
    font-size: 13px;
    transition: 0.3s opacity cubic-bezier(0.64, -0.01, 0.26, 0.91);
  }
  #globalFooter .footNavArea .footNav .footMenuColBlock .footMenuColList li a:hover {
    opacity: 0.6;
  }
  #globalFooter .footInfoArea {
    width: 50%;
    flex-flow: wrap;
  }
  #globalFooter .footInfoArea .wideFootElm {
    /* width: 100%; */
  }
  #globalFooter .footInfoArea .footInfo,
  #globalFooter .footInfoArea #pageTop
  /* #globalFooter .footInfoArea .copyright */
   {
    padding: 60px;
  }
  #globalFooter .footInfoArea .footInfo {
    border-right: 1px solid #e3ede3;
    width: 63%;
  }
  #globalFooter .footInfoArea .footInfo .footTel .tel {
    font-size: 21px;
  }
  #globalFooter .footInfoArea .footInfo .footTel .num {
    font-size: 28px;
    margin-top: 4px;
    transition: 0.3s opacity cubic-bezier(0.64, -0.01, 0.26, 0.91);
  }
  #globalFooter .footInfoArea .footInfo .footTel .num:hover {
    opacity: 0.6;
  }
  #globalFooter .footInfoArea .footInfo .footInfoText {
    font-size: 14px;
    line-height: 2.29;
    margin-top: 30px;
  }
  #globalFooter .footInfoArea #pageTop {
    width: 37%;
  }
  #globalFooter .footInfoArea #pageTop:hover::after {
    transform: translate(-50%, calc(-50% - 20px));
  }
  #globalFooter .footInfoArea #pageTop::after {
    width: 6px;
    height: 52px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  #globalFooter .footInfoArea .copyright {
    /* border-top: 1px solid #e3ede3; */
    /* padding: 75px 60px; */
    /* display: flex;
    align-items: center; */
  }
  #globalFooter .footInfoArea .footBottomArea{
justify-content: space-between;
width: 100%;    
border-top: 1px solid #e3ede3;
width: 90%;
 }
 .footBottomArea .inner{
  width: 90%;
  padding-left: 60px;
 }

  .contactBlock::before {
    top: -120px;
    right: 0;
    width: 460px;
    height: 557px;
  }
  .contactBlock.type2 {
    background: url(../images/bg_contact.png) no-repeat;
    background-size: cover;
    height: 400px;
  }
  .contactBlock .inner {
    padding: 70px 20px;
  }
  .contactBlock .contactTitle + .contactText {
    margin-top: 40px;
  }
  .contactBlock .contactText {
    font-size: 22px;
  }
  .contactBlock .contactBtnWrap {
    margin-top: 40px;
  }
  .contactBlock .contactBtn {
    font-size: 22px;
    width: 630px;
    margin: 0 auto;
    transition: 0.3s all cubic-bezier(0.64, -0.01, 0.26, 0.91);
  }
  .contactBlock .contactBtn:hover {
    width: 700px;
  }
  .contactBlock .contactBtn.arrowBtn::before {
    width: 32px;
    height: 30px;
  }
  #voice {
    background-image: url(../images/bg_catch.png);
    background-position: center 0;
    background-size: cover;
    padding: 230px 0 160px;
  }
  #voice::before {
    height: 251px;
  }
  #voice .inner {
    padding: 0 20px;
  }
  #voice h2,
  #voice .voiceCopy {
    font-size: 36px;
  }
  #voice h2 {
    line-height: 1.72;
  }
  #voice .voiceCopy {
    font-size: 20px;
    margin-top: 70px;
  }
  #voice .largeText {
    font-size: 22px;
  }
  #latestUpdates {
    padding: 160px 0 400px;
  }
  #latestUpdates .inner {
    max-width: 1140px;
    margin: 0 auto;
    width: 95%;
  }
  #latestUpdates .titleBlock {
    display: flex;
    align-items: flex-end;
  }
  #latestUpdates .titleBlock .enTitle {
    margin-right: 30px;
  }
  #latestUpdates .titleBlock .jaTitle {
    font-size: 24px;
  }
  #latestUpdates .newsArea {
    margin-top: 50px;
  }
  #latestUpdates .newsArea .newsItem {
    display: flex;
    padding: 20px 0;
  }
  #latestUpdates .newsArea .newsItem:not(:last-child).newsItem {
    border-bottom: 1px solid #dddddd;
  }
  #latestUpdates .newsArea .newsItem dt {
    font-size: 16px;
    margin-right: 40px;
  }
  #latestUpdates .newsArea .newsItem dt time {
    font-weight: bold;
  }
  #latestUpdates .newsArea .newsItem dd {
    font-size: 16px;
  }
  #latestUpdates .newsArea .newsItem dd a {
    transition: 0.3s opacity cubic-bezier(0.64, -0.01, 0.26, 0.91);
  }
  #latestUpdates .newsArea .newsItem dd a:hover {
    opacity: 0.6;
  }
  #role {
    padding: 24px 0 180px;
  }
  #role .inner {
    max-width: 1430px;
    margin: 0 auto;
    padding: 0 20px;
  }
  #role .titleBlock {
    max-width: 1140px;
    margin: -220px auto 0;
  }
  #role .titleBlock .enTitle .deco {
    padding-right: 40px;
  }
  #role .titleBlock .enTitle .deco.deco2 {
    left: 120px;
  }
   #role .col2Reverse {
    padding-top: 130px;
  }
  #role .col2Reverse .col2ReverseItem + .col2ReverseItem {
    margin-top: 120px;
  }
  #role .col2Reverse .col2ReverseItem:nth-child(odd) .textArea {
    left: 80px;
  }
  #role .col2Reverse .col2ReverseItem:nth-child(even) {
    flex-direction: row-reverse;
  }
  #role .col2Reverse .col2ReverseItem:nth-child(even) .textArea {
    right: 60px;
  }
  #role .col2Reverse .col2ReverseItem:nth-child(even) .textArea .col2ReverseNum {
    left: auto;
    right: 60px;
  }
  #role .col2Reverse .col2ReverseItem .textArea {
    top: 60px;
    padding: 60px 60px 80px;
    width: 47.6%;
  }
  #role .col2Reverse .col2ReverseItem .textArea .col2ReverseNum {
    font-size: 50px;
    top: -30px;
    left: 60px;
  }
  #role .col2Reverse .col2ReverseItem .textArea .col2ReverseTitle {
    font-size: 28px;
  }
  #role .col2Reverse .col2ReverseItem .textArea p {
    font-size: 16px;
    margin-top: 14px;
    line-height: 2.13;
  }
  #role .col2Reverse .col2ReverseItem .imgArea {
    width: 52.4%;
  }
  .secWrap {
    display: flex;
  }
  .secWrap .secCol2 {
    width: 50%;
    padding: 60px 4%;
  }
  .secWrap .envm{
    width: 50%;
    padding: 100px 4%;
  }
  .secWrap .secCol2 .desc {
    line-height: 2.38;
    margin-top: 30px;
    text-align: center;
  }
  .secWrap .envm .desc {
    line-height: 2.38;
    margin-top: 30px;
    text-align: center;
  }
  .secWrap #vision .enTitle img {
    width: 172px;
  }
  .secWrap #vision .visionCatch {
    font-size: 30px;
    margin-top: 30px;
  }
  .secWrap #mission .enTitle img {
    width: 215px;
  }
  .secWrap #mission .visionCatch {
    font-size: 30px;
    margin-top: 30px;
    text-align: center;
    font-weight: bold;
  }
  #recommend {
    background-size: cover;
    padding: 9vw 0 10vw;
  }
  #recommend .inner {
    width: 95%;
    max-width: 1140px;
    margin: 0 auto;
  }
  #recommend .titleBlock {
    text-align: right;
  }
  #recommend .titleBlock .enTitle + .jaTitle {
    margin-top: 10px;
  }
  #recommend .titleBlock .jaTitle {
    font-size: 29px;
    margin-bottom: 20px;
  }
  #recommend .floatImgs {
    top: 196px;
  }
  #recommend .floatImgs .floatImg {
    position: absolute;
    max-width: none;
  }
  #recommend .floatImgs .floatImg1 {
    width: 23vw;
    left: 0;
    top: 0;
  }
  #recommend .floatImgs .floatImg2 {
    width: 16.5vw;
    left: 18.5vw; 
    top: 13.9vw;
  }
  #recommend .floatImgs .floatImg3 {
    width: 18.4vw;
    left: 36.5vw;
    top: 3.27vw;
  }
  #recommend .checkList {
    max-width: 420px;
    margin: 80px 0 40px;
    margin-left: auto;
  }
  #recommend .checkList li {
    font-size: 22px;
    padding-left: 50px;
  }
  #recommend .checkList li + li {
    margin-top: 30px;
  }
  #recommend .checkList li::after {
    width: 29px;
    height: 30px;
    top: 4px;
    left: 0;
  }
  #recommend .enTitle{
    padding-right: 10px;

  }
  #program {
    padding: 100px 0;
  }
  #program::before {
    content: "";
    display: block;
    position: absolute;
    left: 0;
    width: 100%;
    background-attachment: fixed;
    background-size: 100% auto;
    background-repeat: no-repeat;
    z-index: 2;
    top: 0;
    height: 100%;
    background-image: url(../images/bg_program.png);
    background-position: center center;
  }
  #program .inner {
    width: 95%;
    max-width: 1140px;
    margin: 0 auto;
  }
  #program .titleBlock {
    text-align: center;
  }
  #program .titleBlock .jaTitle {
    font-size: 20px;
    line-height: 2.05;
    margin: 20px 0;
  }
  #program .programBoxList {
    margin-top: 0;
  }
  #program .mc_academy {
    border-radius: 7px;
    font-size: 20px;
    padding: 60px 150px;
  }
  #program .mc_academy:first-child {
    margin-bottom: 40px;
  }
  #program .mc_academy p{
    font-size: 16px;
    line-height: 2;
    margin-bottom: 30px;
  }
  #program .mc_academy .challenge_text {
    text-align: center;
    font-size: 20px;
    font-weight: 600;
    color: #1f6360;
    margin-bottom: 30px;
    line-height: 1.6;
  }
  #program .mc_academy a{
    position: relative;
    display: inline-block;
    overflow: hidden;
  }
  #program .mc_academy a::after{
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: white;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
  #program .mc_academy a:hover::after{
    opacity: 0.2; 
  }
  #program .programBoxList .programBoxItem {
    border-radius: 7px;
    padding: 48px 50px 40px;
    width: calc(50% - 12.5px);
    margin-bottom: 20px;
  }
  #program .programBoxList .programBoxItem .en_block{
    margin-bottom: 20px;
  }
  #program .programBoxList .programBoxItem:nth-child(1) {
    margin-right: 25px;
  }
  #program .programBoxList .programBoxItem h3 {
    font-size: 28px;
    text-align: center;
  }
  #program .programBoxList .programBoxItem h3 span {
    font-size: 18px;
  }
  #program .programBoxList .programBoxItem p {
    line-height: 2;
  }
  #program .programBoxList .programBoxItem .entag {
    border-radius: 7px 0 0 0;
    font-size: 18px;
    width: 112px;
    padding: 27px 10px;
  }
  #program .programBoxList .programBoxItem.wideItem {
    padding: 40px 150px;
  }
  #program .programBoxList .programBoxItem.wideItem:nth-child(odd) {
    margin-right: 0;
  }
  #program .programBoxList .programBoxItem.wideItem h3 {
    text-align: center;
    padding-left: 0;
  }
  #program .programColorBox {
    font-size: 14px;
    line-height: 1.71;
    margin-top: 16px;
    padding: 16px 24px;
  }

  #program .checkList2{
    display: flex;
    flex-wrap: wrap;
  }

  #program .checkList2 li {
    font-size: 20px;
    padding-left: 50px;
    position: relative;
    margin: 10px 0;
  }
 
  #program .checkList2 li::after {
    width: 29px;
    height: 30px;
    top: 8px;
    left: 0;
  }

  #program .checkList2 li::after {
    content: "";
    background-image: url(../images/parts_check.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    position: absolute;
  }
  #program .checkList2Item{
    width: 50%;
  }
  #program #business_academy #logo img{
    margin-bottom: 16px;
  }


  #about {
    padding: 170px 0 140px;
    padding: 14vw 0 12vw;
  }
  
  #about .inner {
    max-width: 1140px;
    width: 95%;
    margin: 0 auto;
  }
  #about .titleBlock .enTitle img {
    width: 333px;
  }
  #about .titleBlock .jaTitle {
    font-size: 24px;
    margin-top: 16px;
  }
  #about .floatImgArea {
    top: 170px;
  }
  #about .floatImgArea .floatImg {
    position: absolute;
    max-width: none;
  }
  #about .floatImgArea .floatImg1 {
    width: 28.3vw;
    left: 0;
    top: 0;
  }
  #about .floatImgArea .floatImg2 {
    width: 16.7vw;
    left: 30.3vw;
    top: 0;
  }
  #about .textArea {
    padding-left: 620px;
    min-width: 500px;
  }
  #about .textArea .aboutWrap {
    margin-top: 50px;
  }
  #about .textArea .aboutWrap h3 {
    font-size: 26px;
    line-height: 1.77;
  }
  #about .textArea .aboutWrap p {
    margin-top: 20px;
    line-height: 2.12;
  }

  #features .featuresBox .imgArea .movieItem.playMarkNone::before {
    content: none;
  }
  #features .noFlex{
    display: block !important;
  }
  #features .featuresBox .itemwrap{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 54px;
  }

#features .featuresBox .enFeatureWrap{
  display: flex;
  margin-bottom: 54px;
}

  #features .adnames{
  font-size: 22px;
  font-weight: 600;
  }
  #features .featuresBox .showyTitle span{
    text-align: left;
  }
  #features .adname-mini{
    font-size: 16px;
    margin-top: 10px;
   }
   #features .featuresBox .textItemWrap{
    margin-bottom: 54px;
  }
  #features .featuresBox .textItemWrap>p{
  margin-top: 40px;
  }
  #features .featuresBox .exam p:first-child{
    margin-top: 0px;
  }
  #features .featuresBox .exam .textItemWrap{
    margin-bottom: 0px;
  }
  .exam .forPC1000{
    margin-top: 30px;
    text-align: center;
  }
  #features .adname-mini>p{
    font-weight: 600;
  }
  #features .featuresBox .minidesc{
    font-size: 14px;
    line-height: 1.79 !important;
    margin-top: 16px;
  }
  #features .featuresBox .movieSizeWrap{
margin-bottom: 54px;
  }

  #features .movieLink{
    width: 100%;
    height: 100%;
    display: block;   
    transition: 0.3s all;
  }
  
  #features .movieLink::before{
    position: absolute;
    content: "";
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    width: 60px;
    height: 60px;    z-index: 2;
    background: #fff;
    opacity: 0.7;    transition: 0.3s all;
  }
  
  #features .movieLink::after{
    position: absolute;
    z-index: 2;
    content: "";
    display: block;
    top: 50%;
    left: 50%;
    transform: translate(-40%, -50%);
    border-style: solid;
    border-color: transparent transparent transparent #1f6360;
    border-width: 10px 0 10px 20px;
  }
  #features .movieLink>img{
    transition: 0.3s all;
  }
  #features .movieLink:hover>img{
    opacity: 0.7;    
    background: #000;
  }
  #features .sadline{
    font-size: 22px;
    font-weight: bold;
    color: #1f6360;
    align-items: center; 
    display: flex;
    justify-content: left;
    margin-bottom: 50px;
  }
   .sadline::after {
    background-color: #dddddd ;
    content: "";
    height: 1px;
    flex-grow: 1; 
    margin-left: 28px;
    }
  #features .line{
    background-color: #dddddd ;
    content: "";
    height: 1px;
   margin-bottom: 50px;
  }
  #features .featuresBox .showyTitle.noBreakChildPC {
    display: flex;
  }
  #features .featuresBox .showyTitle.noBreakChildPC span:not(:last-child) {
    padding-right: 0;
  }
  #features .featuresBox .showyTitle.noBreakChildPC span:not(:first-child) {
    padding-left: 0;
  }
  #features .featuresBox .showyTitle.noBreakChildPC span + span {
    margin-top: 0;
  }
  #features .featuresBox .showyTitle span + span {
    margin-top: 4px;
  }
  #features .featuresBox.typeProfileBox .titleProf > span {
    display: block;
  }
  #features .featuresBox.typeProfileBox .titleProf .jaTitleProf {
    font-size: 22px;
  }

  #features .movieCap{
    font-size: 13px;
    display: inline-block;
    margin-top: 10px;
  }

  .exam .forSP1000{
    margin-top: 30px;
    text-align: center;
  }

  #credo {
    /* padding-bottom:20px; */
  }
  #credo .voiceCopy {
    font-size: 20px;
    margin-top: 80px;
    text-align: center;
    line-height: 1.97;
  }

  #credo .credoHeadArea {
    background: url(../images/bg_credo.png) no-repeat;
    background-size: cover;
    padding: 110px 0 210px;
  }
  #credo .credoList {
    display: flex;
    justify-content: center;
    margin-top: -150px;
  }
  #credo .credoList li {
    border-radius: 8px;
    width: 25%;
  }
  #credo .credoList li:not(:last-child) {
    margin-right: 10px;
  }
  #credo .credoList li .credoTitles {
    padding: 10px 20px 30px;
  }
  #credo .credoList li .credoTitles .credoEnTitle {
    font-size: 26px;
    margin-top: 20px;
  }
  #credo .credoList li .credoTitles .credoJaTitle {
    margin-top: 8px;
    font-size: 20px;
  }
  #credo .credoList li .credoImg img {
    border-radius: 0 0 8px 8px;
  }
  #credo .credoList li .credoText {
    margin-top: 20px;
  }
  #credo .credoList li .credoText .credoBodyDesc {
    font-size: 18px;
    line-height: 1.55;
  }
  #credo .credoList li .credoText .credoBodySubDesc {
    line-height: 1.88;
    margin-top: 10px;
  }
  #credo .inner {
    padding: 0 30px;
  }
  #credo .titleBlock .enTitle img {
    width: 228px;
  }
  #credo .titleBlock .jaTitle {
    font-size: 24px;
    margin-top: 20px;
  }
  #credo .desc {
    font-size: 18px;
    text-align: center;
    line-height: 2.05;
    margin-top: 20px;
  }
  #profile {
    padding: 130px 0 110px;
  }
  #profile .inner {
    max-width: 1140px;
    width: 95%;
    margin: 0 auto;
  }
  #profile .titleBlock .enTitle img {
    width: 224px;
  }
  #profile .titleBlock .jaTitle {
    font-size: 24px;
    margin-top: 16px;
  }
  #profile .lineTableCol2 {
    display: flex;
  }
  #profile .lineTableCol2 .lineTable {
    width: 50%;
  }
  #profile .lineTableCol2 .lineTable:nth-child(odd) {
    margin-right: 40px;
  }
  #profile .lineTable {
    margin: 40px auto 0;
    max-width: 870px;
  }
  #profile .lineTable > div dt {
    font-size: 17px;
    padding: 25px 0 25px 25px;
    width: 185px;
  }
  #profile .lineTable > div dd {
    font-size: 16px;
    width: calc(100% - 185px);
  }
  #messeage{
    padding-top: 120px;
  }
  #message::before {
    content: "";
    background-color: #1f6360;
    display: block;
    position: absolute;
    width: 100%;
    height: calc(100% - 200px);
    bottom: -110px;
    left: 0;
  }
  #message .inner {
    width: 95%;
    max-width: 1340px;
    margin: 0 auto;
  }
  #message .titleBlock {
    margin-top: -70px;
  }
  #message .titleBlock .enTitle img {
    width: 272px;
  }
  #message .titleBlock .jaTitle {
    font-size: 24px;
    margin-top: 20px;
  }
  #message .grayBox {
    border-radius: 10px;
    padding: 50px 100px 60px;
    /* top: -120px; */
    margin: 100px auto 50px;
  }
  #message .grayBox_r {
    border-radius: 10px;
    padding: 50px 100px 60px;
    /* top: -120px; */
    margin: 0 auto 110px;
  }
  #message .messageCol2 {
    display: flex;
    justify-content: space-between;
    top: 60px;
  }
  #message .imgAreaSp {
    display: none;
  }
  #message .imgArea {
    position: absolute;
    right: 120px;
    bottom: 0;
  }
  #message .imgArea img {
    max-width: none;
  }
  #message .textArea {
    margin-top: 36px;
    margin-right: 30em;
  }
  #message .textArea .desc {
    font-size: 16px;
    line-height: 2;
  }
  #message .representativeName {
    margin-top: 30px;
    text-align: right;
  }
  #ambassadors {
    background: #f1f1f1;
    background-size: cover;
    padding: 110px 0;
    margin-top: 100px;
  }
  #ambassadors h2 {
	font-size: 34px;
	padding-bottom: 50px;
    margin-bottom: 10px;
	text-align: center;
	font-weight: bold;
	position: relative;
  }
  #ambassadors h2:before {
    content: "";
    display: inline-block;
    width: 260px;
    height: 12px;
    background-color: #2e8d89;
    position: absolute;
    bottom: 0;
    left: calc(50% - 80px);
    transform: skewX(-35deg);
  }
  #ambassadors h2:after {
    content: "";
    display: inline-block;
    width: 280px;
    height: 12px;
    background-color: #1f6360;
    position: absolute;
    bottom: 8px;
    left: calc(50% - 180px);
    transform: skewX(-35deg);
  }
  #ambassadors .inner {
    width: 95%;
    max-width: 1150px;
    margin: 0 auto;
  }
  #ambassadors .titleBlock .enTitle img {
    width: 427px;
  }
  #ambassadors .titleBlock .jaTitle {
    font-size: 24px;
    /* margin-top: 16px; */
  }
  #ambassadors .ambProfileList {
    display: flex;
    justify-content: center;
  }
  #ambassadors .ambProfileList li {
	display: flex;
    flex-direction: column;
    width: 50%;
  }
  #ambassadors .ambProfileList li:nth-child(odd) {
    margin-right: 60px;
  }
  #ambassadors .ambProfileList li:nth-child(n+3) {
    margin-top: 40px;
  }
  #ambassadors .ambProfileList li .imgArea {
    /* margin-top: 50px; */
	z-index: 1;
  }
  #ambassadors .ambProfileList li .textArea {
    margin-top: -64px;
    padding: 90px 40px 45px;
	flex: 1;
  }
  #ambassadors .ambProfileList li .textArea .regularworks {
    margin-top: 20px;
  }
  #ambassadors .ambProfileList li .textArea .ambProfileName .ja {
    font-size: 22px;
  }
  #ambassadors .ambProfileList li .textArea .ambProfileName .en {
    font-size: 16px;
  }
  #ambassadors .ambProfileList li .textArea .desc {
    font-size: 14px;
    margin-top: 16px;
    line-height: 1.79;
  }
  #ambassadors .ambProfileList li .ambProfileComment {
    margin-top: 20px;
  }
  #ambassadors .ambProfileList li .ambProfileComment .main {
    font-size: 22px;
    line-height: 1.72;
  }
  #ambassadors .ambProfileList li .ambProfileComment .sub {
    line-height: 2;
  }

  #deal {
    /* padding-block: 110px; */
    padding: 0 0 110px;
  }

  #deal .inner {
    width: 95%;
    max-width: 1340px;

  }
  /*　▼250416追記　*/
  #mind {
    background: url(../images/bg_ambassadors.png) #e9e9e9 center 0;
    background-size: cover;
    padding: 110px 0;
  }
  #mind img{
    margin: 0 0 10px;
  }
  #mind .inner {
    width: 95%;
    max-width: 1150px;
    margin: 0 auto;
  }
  #mind .titleBlock .enTitle img {
    width: 427px;
  }
  #mind .titleBlock .jaTitle {
    font-size: 24px;
    margin-bottom: 18px;
  }
  #mind .jaTitle::after{
    position: absolute;
    background-color: #1f6360;
    content: "";
    height: 2px;
    width: 40px;
    top: 50px;
    left: 48%;
  }
  #mind .mind_logo{
    width: 350px;
    margin-top: 30px;
  }
  #mind .mind_img{
    width: 70%;
    margin-inline: auto;
  }
  #mind .mind_img p{
    padding: 0;
    text-align: center;
  }
  /*　▲250416追記　*/

  .dealScroll {
    margin-top: 40px;
    margin-bottom: 110px;
  }
  #deal .inner .dealScroll:last-child{
    margin-bottom: 0px;
  }


  .dealScrollContent h3 {
    font-size: 20px;

  }

  #partner{
    padding: 0 0 110px;
  }
  
  #partner .inner{
    width: 90%;
    max-width: 1140px;
    margin: 0 auto;
  }
  
  #partner h2{
    font-size: 28px;
   text-align: center;
  }
  
  #partner .partnersList{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-top: 45px;
    gap: 20px;
  } 
  
  #partner .partnersList li{
    width: calc(25% - 15px);
  }

  #partner .partnersList li a{
   transition: opacity .2s;
  }
  #partner .partnersList li a:hover{
opacity: .7;
   }
 


  .footBottomArea .inner{
margin-top: 94px;
justify-content: space-between;
    }
  /* ココから下には記入禁止 */
  .forSP {
    display: none !important;
  }
  .none {
    display: none;
  }
  .englishBody #voice h2 {
    line-height: 1.3;
  }
  .englishBody #role .col2Reverse .col2ReverseItem .textArea p {
    line-height: 1.63;
  }
  .englishBody .secCol2 .desc {
    line-height: 1.75;
  }
  .englishBody .secWrap #vision .enTitle img {
    width: 275px;
  }
  .englishBody .secWrap #vision .visionCatch {
    font-size: 24px;
    font-weight: bold;
  }
  .englishBody .secWrap #mission .enTitle img {
    width: 317px;
  }
  .englishBody #recommend .titleBlock .jaTitle {
    padding-right: 0;
  }
  .englishBody #about {
    padding: 14vw 0 20vw;
  }
  .englishBody #about .textArea .aboutWrap p {
    line-height: 1.63;
  }
  .englishBody #features .featuresBox .desc {
    line-height: 1.63;
  }
  .englishBody #features .typeProfileBox .profileBox .profileTextArea .profDesc {
    line-height: 1.71;
  }
  .englishBody #credo .desc {
    line-height: 1.56;
    max-width: 990px;
    margin: 30px auto 0;
  }
  .englishBody #credo .credoList li .credoText .credoBodySubDesc {
    line-height: 1.63;
  }
  .englishBody #message .textArea .desc {
    line-height: 1.63;
    margin-top: 10px;
  }
  .englishBody #message .representativeName {
    font-size: 20px;
  }
  .englishBody #ambassadors .ambProfileList li .textArea {
    min-height: 404px;
  }
  .englishBody #ambassadors .ambProfileList li .textArea .ambProfileName .en {
    font-size: 22px;
  }
  .englishBody #ambassadors .ambProfileList li .ambProfileComment .sub {
    line-height: 1.7;
  }
  .englishBody .contactBlock .contactTitle + .contactText {
    font-size: 20px;
  }
  .englishBody #globalFooter .footNavArea .footLogo img {
    width: 329px;
  }
  .englishBody #globalFooter .footInfoArea .footInfo .footInfoText {
    line-height: 1.63;
  }
  .Scrollh3{
    margin-top: 20px;
  }
}
@media screen and (min-width: 769px) and (max-width: 1200px) {
  #langBtn {
    display: none;
    left: 40px;
    top: 45px;
    z-index: 101;
  }
  #langBtn span {
    padding: 0 2px;
  }
  #gMenu .gMenuColList {
    width: calc(33.3% - 27px);
  }
  #gMenu .gMenuColList:not(:last-child) {
    margin-right: 40px;
  }
  #gMenu .gMenuColList li a {
    padding-right: 30px;
  }
  #gMenu .gMenuColList li a::before {
    top: 7px;
    width: 26px;
    height: 3px;
  }
  #gMenu .enMenu {
    font-size: 20px;
  }
  #gMenu .jaMenu {
    font-size: 15px;
  }
  #hero::before {
    content: "";
    display: block;
    background-color: #1f6360;
    position: absolute;
    top: 0;
    left: 0;
    width: 960px;
    height: 849px;
    z-index: -1;
  }
  #hero .str {
    position: absolute;
    left: 100vw;
    top: 50%;
    transform: translateY(-50%);
    aspect-ratio: 1941/118;
    width: 100%;
    /*mix-blend-mode: difference;*/
    opacity: 0.35;
  }
  #hero .str0 {
    /*animation: strAnim0 15s linear forwards;*/
    left: 0;
    width: 1470px;
  }
  #hero .str1 {
    animation: strAnim 30s linear infinite;
    animation-delay: 1s;
  }
  #hero .str2 {
    animation: strAnim 30s linear infinite;
    animation-delay: 16s;
  }
  @keyframes strAnim0 {
    0% {
      left: 0;
    }
    90%, 100% {
      left: -100vw;
    }
  }
  @keyframes strAnim {
    0% {
      left: 100vw;
    }
    90%, 100% {
      left: -100vw;
    }
  }
  #hero .copStr {
    fill: #fff;
  }
  /* #hero #videoArea:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
  } */
  #hero #videoArea > div {
    position: relative;
  }
  #hero #videoArea video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
  }
  #hero #logo img {
    width: 100%;
    height: auto;
  }
  #hero #sen {
    width: 2px;
    height: 200px;
    position: absolute;
    top: 750px;
    left: 5vw;
  }
  #globalFooter .footInfoArea .wideFootElm {
    /* width: 100%; */
  }
  #latestUpdates .newsArea .newsItem:not(:last-child).newsItem {
    border-bottom: 1px solid #dddddd;
  }
  #latestUpdates .newsArea .newsItem dt time {
    font-weight: bold;
  }
  #role .titleBlock .enTitle .deco {
    padding: 0 20px 0 30px;
  }
  #role .titleBlock .enTitle .deco.deco2 {
    background-color: #1f6360;
    left: 0;
  }
  #role .titleBlock .enTitle .deco.deco2::before {
    background-color: #1f6360;
  }
  #role .titleBlock .jaTitle {
    margin-top: 20px;
  }
  #role .col2Reverse {
    padding-top: 40px;
  }
  #role .col2Reverse .col2ReverseItem:nth-child(odd) .textArea {
    left: 40px;
  }
  #role .col2Reverse .col2ReverseItem:nth-child(even) .textArea {
    right: 30px;
  }
  #role .col2Reverse .col2ReverseItem:nth-child(even) .textArea .col2ReverseNum {
    left: auto;
    right: 30px;
  }
  #role .col2Reverse .col2ReverseItem .textArea {
    padding: 60px 30px 80px;
  }
  #recommend .floatImgs .floatImg {
    position: absolute;
    max-width: none;
  }
  #program .titleBlock {
    text-align: center;
  }

  #program .checkpoint{
    font-size: 18px;
    font-weight: bold;
    background-color: rgba(255, 255, 255, 0.85);
    color: #1f6360;
    margin-top: 40px;
    padding: 20px 50px;
    width:  100%;
    margin-top: 40px;
    line-height: 2;
    border-radius: 10px;
    border: #1f6360 2px solid;
  }

  #program .checkList2{
    display: flex;
    flex-wrap: wrap;
  }

  #program .checkList2 li {
    font-size: 18px;
    padding-left: 50px;
    position: relative;
  }
 
  #program .checkList2 li::after {
    width: 29px;
    height: 30px;
    top: 8px;
    left: 0;
  }

  #program .checkList2 li::after {
    content: "";
    background-image: url(../images/parts_check.png);
    background-repeat: no-repeat;
    background-size: contain;
    display: block;
    position: absolute;
  }
  #program .checkList2Item{
    width: 50%;
  }
  #program  #logo .logo_title{
    font-size: 40px;
    line-height: 1.2;

  }


  #about .floatImgArea .floatImg {
    position: absolute;
    max-width: none;
  }
  #about .textArea {
    padding-left: 53vw;
  }
  #features .featuresBox .imgArea .movieItem.playMarkNone::before {
    content: none;
  }
  #features .featuresBox .showyTitle span + span {
    margin-top: 4px;
  }
  #features .featuresBox.typeProfileBox .titleProf > span {
    display: block;
  }
  #credo .credoList {
    flex-flow: wrap;
  }
  #credo .credoList li {
    width: calc(33.3333333333% - 7px);
  }
  #credo .credoList li:not(:last-child) {
    margin-right: 0;
  }
  #credo .credoList li:not(:nth-child(3n)) {
    margin-right: 10px;
  }
  #credo .credoList li:nth-child(n+4) {
    margin-top: 30px;
  }
  #message .grayBox {
    padding: 50px 40px 60px;
  }
  #message .grayBox_r {
    padding: 50px 40px 60px;
  }
  #message .imgArea {
    right: 40px;
  }
  #message .imgArea img {
    max-width: 25vw;
  }
  #message .textArea {
    margin-right: 0;
    max-width: 64%;
  }
  #message .textArea .desc {
    font-size: 14px;
  }
  #features .featuresBox .imgArea{
    width: 36%;
    /* margin-right: auto; */
  }
  #features .featuresBox .textArea{
    width: 60.8%;
  }
  #features .featuresBox .textArea .showyTitle{
    margin-top: 0;
  }
  .Scrollh3{
    margin-top: 20px;
  }
  /* ココから下には記入禁止 */
  .none {
    display: none;
  }
  .englishBody #features .typeProfileBox .profileBox .profileTextArea .profDesc {
    line-height: 1.71;
  }
}
@media screen and (max-width: 1000px) {
  #langBtn span {
    padding: 0 2px;
  }
  #hero::before {
    content: "";
    display: block;
    background-color: #1f6360;
    position: absolute;
    top: 0;
    left: 0;
    width: 960px;
    height: 849px;
    z-index: -1;
  }
  #hero .str {
    position: absolute;
    left: 100vw;
    top: 50%;
    transform: translateY(-50%);
    aspect-ratio: 1941/118;
    width: 100%;
    /*mix-blend-mode: difference;*/
    opacity: 0.35;
  }
  #hero .str0 {
    /*animation: strAnim0 15s linear forwards;*/
    left: 0;
    width: 1470px;
  }
  #hero .str1 {
    animation: strAnim 30s linear infinite;
    animation-delay: 1s;
  }
  #hero .str2 {
    animation: strAnim 30s linear infinite;
    animation-delay: 16s;
  }
  @keyframes strAnim0 {
    0% {
      left: 0;
    }
    90%, 100% {
      left: -100vw;
    }
  }
  @keyframes strAnim {
    0% {
      left: 100vw;
    }
    90%, 100% {
      left: -100vw;
    }
  }
  #hero .copStr {
    fill: #fff;
  }
  /* #hero #videoArea:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
  } */
  #hero #videoArea > div {
    position: relative;
  }
  #hero #videoArea video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
  }
  #hero #logo img {
    width: 100%;
    height: auto;
  }
  #hero #sen {
    width: 2px;
    height: 200px;
    position: absolute;
    top: 750px;
    left: 5vw;
  }
  #globalFooter .footInfoArea .wideFootElm {
    /* width: 100%; */
  }
  #latestUpdates .newsArea .newsItem:not(:last-child).newsItem {
    border-bottom: 1px solid #dddddd;
  }
  #latestUpdates .newsArea .newsItem dt time {
    font-weight: bold;
  }
  #role .titleBlock .jaTitle {
    font-size: 18px;
    margin-top: 10px;
    padding: 0 20px;
  }
  #recommend .floatImgs .floatImg {
    position: absolute;
    max-width: none;
  }
  /* #program .titleBlock {
    text-align: center;
  } */
  #about .floatImgArea .floatImg {
    position: absolute;
    max-width: none;
  }
  #features {
    padding: 80px 0 90px;
  }
  #features::before {
    background-position: center -120px;
    opacity: 0.3;
  }
  #features .inner {
    padding: 0 10px;
  }
  #features .titleBlock .enTitle img {
    width: 227px;
  }
  #features .titleBlock .enTitle_long{
    margin-top: 80px;
  }
  #features .titleBlock .enTitle_long img {
    width: 330px;
  }
  #features .titleBlock .jaTitle {
    font-size: 17px;
    margin-top: 20px;
  }
  #features .featuresBox {
    margin-top: 35px;
    padding: 35px 20px;
  }
  #features .featuresBox .imgArea .movieItem.playMarkNone::before {
    content: none;
  }
  #features .featuresBox .imgArea .movieItem + .movieItem {
    margin-top: 35px;
  }
  #features .featuresBox .imgArea .featuresMessage {
    font-size: 13px;
    margin-top: 4px;
  }
  #features .featuresBox .showyTitle {
    margin-top: 35px;
  }
  #features .featuresBox .showyTitle span {
    font-size: 18px;
    padding: 8px 15px;
  }
  #features .featuresBox .showyTitle span + span {
    margin-top: 4px;
  }
  #features .featuresBox .desc {
    font-size: 16px;
    margin-top: 24px;
  }
  #features .featuresBox.typeImgBox .textArea .showyTitle {
    margin-top: 0;
  }
  #features .featuresBox.typeImgBox .imgArea {
    margin-top: 35px;
  }
  #features .featuresBox.typeProfileBox .textArea .showyTitle {
    margin-top: 0;
  }
  #features .featuresBox.typeProfileBox .read {
    margin-top: 20px;
  }
  #features .featuresBox.typeProfileBox .profileBox {
    margin: 35px 0 0;
    max-width: 596px;
  }
  #features .featuresBox.typeProfileBox .profileBox .profileItem + .profileItem {
    margin-top: 50px;
  }
  #features .featuresBox.typeProfileBox .profileBox .profileImgArea {
    width: 75%;
    margin: 0 auto;
  }
  #features .featuresBox.typeProfileBox .profileBox .profileTextArea {
    margin-top: 20px;
  }
  #features .featuresBox.typeProfileBox .profileBox .profileTextArea .profDesc {
    font-size: 13px;
    line-height: 1.86;
  }
  #features .featuresBox.typeProfileBox .profileBox .profileTextArea .profDesc .subTitle {
    margin-top: 20px;
    font-size: 16px;
  }
  #features .featuresBox.typeProfileBox .titleProf {
    text-align: center;
  }
  #features .featuresBox.typeProfileBox .titleProf > span {
    display: block;
  }
  #features .featuresBox.typeProfileBox .titleProf .jaTitleProf {
    font-size: 18px;
  }
  .Scrollh3{
    margin-top: 20px;
  }
  .footBottomArea .inner{
    flex-direction: column;
    gap: 24px;
 }
  /* ココから下には記入禁止 */
  .forPC1000 {
    display: none !important;
  }
  .none {
    display: none;
  }
  .englishBody #features .typeProfileBox .profileBox .profileTextArea .profDesc {
    line-height: 1.71;
  }
}
@media print, screen and (min-width: 1001px) {
  #langBtn span {
    padding: 0 2px;
  }
  #hero::before {
    content: "";
    display: block;
    background-color: #1f6360;
    position: absolute;
    top: 0;
    left: 0;
    width: 960px;
    height: 849px;
    z-index: -1;
  }
  #hero .str {
    position: absolute;
    left: 100vw;
    top: 50%;
    transform: translateY(-50%);
    aspect-ratio: 1941/118;
    width: 100%;
    /*mix-blend-mode: difference;*/
    opacity: 0.35;
  }
  #hero .str0 {
    /*animation: strAnim0 15s linear forwards;*/
    left: 0;
    width: 1470px;
  }
  #hero .str1 {
    animation: strAnim 30s linear infinite;
    animation-delay: 1s;
  }
  #hero .str2 {
    animation: strAnim 30s linear infinite;
    animation-delay: 16s;
  }
  @keyframes strAnim0 {
    0% {
      left: 0;
    }
    90%, 100% {
      left: -100vw;
    }
  }
  @keyframes strAnim {
    0% {
      left: 100vw;
    }
    90%, 100% {
      left: -100vw;
    }
  }
  #hero .copStr {
    fill: #fff;
  }
  /* #hero #videoArea:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
  } */
  #hero #videoArea > div {
    position: relative;
  }
  #hero #videoArea video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
  }
  #hero #logo img {
    width: 100%;
    height: auto;
  }
  #hero #sen {
    width: 2px;
    height: 200px;
    position: absolute;
    top: 750px;
    left: 5vw;
  }
  #globalFooter .footInfoArea .wideFootElm {
    /* width: 100%; */
  }
  #latestUpdates .newsArea .newsItem:not(:last-child).newsItem {
    border-bottom: 1px solid #dddddd;
  }
  #latestUpdates .newsArea .newsItem dt time {
    font-weight: bold;
  }
  #role .titleBlock .jaTitle {
    font-size: 30px;
    font-size: clamp(24px, 2.1vw, 30px);
    position: absolute;
    top: 40px;
    left: 500px;
  }
  #recommend .floatImgs .floatImg {
    position: absolute;
    max-width: none;
  }
  /* #program .titleBlock {
    text-align: center;
  } */
  #program .contactBtng {
    margin-left: 692px;
      }
  #program .contactBtng:hover {
    opacity: 0.7;
    transition: 0.3s all cubic-bezier(0.64, -0.01, 0.26, 0.91);
      }

  #program a{
    color: #fff;
  }
  #program .business_txt{
    margin-top: 30px;
  }
  #program  #logo .logo_title{
    font-size: 40px;
    line-height: 1.2;
  }

  #about .floatImgArea .floatImg {
    position: absolute;
    max-width: none;
  }
  #features {
    padding: 120px 0 160px;
  }
  #features::before {
    background-attachment: fixed;
    background-position: center -220px;
    opacity: 0.6;
  }
  #features .inner {
    width: 95%;
    max-width: 1340px;
    margin: 0 auto;
  }
  #features .titleBlock .jaTitle {
    font-size: 24px;
    margin-top: 14px;
  }
  #features .titleBlock .enTitle_long{
    margin-top: 120px;
  }
  #features .featuresBox {
    display: flex;
    margin-top: 40px;
    padding: 80px 80px 60px;
  }
  #features .featuresBox .imgArea {
    width: 36%;
    /* margin-right: auto; */
  }


  #features .featuresBox .imgArea .movieItem.playMarkNone::before {
    content: none;
  }
  #features .featuresBox .imgArea .movieItem + .movieItem {
    margin-top: 45px;
  }
  #features .featuresBox .imgArea .featuresMessage {
    font-size: 14px;
    margin-top: 16px;
  }
  #features .featuresBox .textArea{
    width: 64%;
  }
  #features .featuresBox >.showyTitle{
    display: block;
    text-align: center;
  }
  #features .featuresBox >.showyTitle>span{
width: 100%;
  }
  #features .featuresBox .movieSizeWrap{
    width: 70%;
  }


  #features .featuresBox .showyTitle span {
    font-size: 26px;
    padding: 10px 25px;
  }
  #features .featuresBox .showyTitle span + span {
    margin-top: 4px;
  }
  #features .featuresBox .desc {
    line-height: 2;
    margin-top: 20px;
  }
  #features .featuresBox.typeImgBox .textArea {
    margin-right: 60px;
  }
  #features .featuresBox.typeImgBox .imgArea {
    margin-right: 0;
  }
  #features .featuresBox.typeProfileBox .textArea {
    width: 100%;
  }
  #features .featuresBox.typeProfileBox .read {
    margin-top: 30px;
  }
  #features .featuresBox.typeProfileBox .profileBox {
    margin-top: 50px;
  }
  #features .featuresBox.typeProfileBox .profileBox .profileItem {
    display: flex;
  }
  #features .featuresBox.typeProfileBox .profileBox .profileItem + .profileItem {
    margin-top: 80px;
  }
  #features .featuresBox.typeProfileBox .profileBox .profileImgArea {
    width: 270px;
    margin-right: 50px;
  }
  #features .featuresBox.typeProfileBox .profileBox .profileTextArea {
    width: calc(100% - 270px - 50px);
  }
  #features .featuresBox.typeProfileBox .profileBox .profileTextArea .profDesc {
    font-size: 14px;
    line-height: 1.86;
  }
  #features .featuresBox.typeProfileBox .profileBox .profileTextArea .profDesc .subTitle {
    margin-top: 24px;
    font-size: 16px;
  }
  #features .featuresBox.typeProfileBox .titleProf > span {
    display: block;
  }
  #features .featuresBox.typeProfileBox .titleProf .enTitleProf {
    font-size: 16px;
    margin-top: 6px;
  }
  .Scrollh3{
    margin-top: 20px;
  }

  /* ココから下には記入禁止 */
  .forSP1000 {
    display: none !important;
  }
  .none {
    display: none;
  }
  .englishBody #features .typeProfileBox .profileBox .profileTextArea .profDesc {
    line-height: 1.71;
  }
}
@media screen and (max-width: 1200px) {
  #globalHeader {
    background-color: #1f6360;
    height: 80px;
  }
  #globalHeader.active {
    background-color: #1f6360;
  }
  #globalHeader .catch {
    font-size: 12px;
    width: calc(100% - 88px);
    padding-left: 20px;
    line-height: 1.8;
  }
  #menuBtn {
    width: 85px;
    height: 80px;
    background-color: #fff;
  }
  #menuBtn span {
    width: 33px;
    height: 2px;
    right: 25px;
  }
  #menuBtn span:nth-of-type(1) {
    top: 34px;
  }
  #menuBtn span:nth-of-type(2) {
    top: 44px;
  }
  #menuBtn.isOpen span:nth-of-type(1) {
    top: 44px;
  }
  #langBtn span {
    padding: 0 2px;
  }
  #hero {
    padding-top: 80px;
  }
  #hero::before {
    content: "";
    display: block;
    background-color: #1f6360;
    position: absolute;
    top: 0;
    left: 0;
    width: 960px;
    height: 849px;
    z-index: -1;
  }
  #hero .str {
    position: absolute;
    left: 100vw;
    top: 50%;
    transform: translateY(-50%);
    aspect-ratio: 1941/118;
    width: 100%;
    /*mix-blend-mode: difference;*/
    opacity: 0.35;
  }
  #hero .str0 {
    /*animation: strAnim0 15s linear forwards;*/
    left: 0;
    width: 1470px;
  }
  #hero .str1 {
    animation: strAnim 30s linear infinite;
    animation-delay: 1s;
  }
  #hero .str2 {
    animation: strAnim 30s linear infinite;
    animation-delay: 16s;
  }
  @keyframes strAnim0 {
    0% {
      left: 0;
    }
    90%, 100% {
      left: -100vw;
    }
  }
  @keyframes strAnim {
    0% {
      left: 100vw;
    }
    90%, 100% {
      left: -100vw;
    }
  }
  #hero .copStr {
    fill: #fff;
  }
  /* #hero #videoArea:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
  } */
  #hero #videoArea > div {
    position: relative;
  }
  #hero #videoArea video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
  }
  #hero #logo img {
    width: 100%;
    height: auto;
  }
  #hero #sen {
    width: 2px;
    height: 200px;
    position: absolute;
    top: 750px;
    left: 5vw;
  }
  #globalFooter .footInfoArea .wideFootElm {
    /* width: 100%; */
  }
  #latestUpdates .newsArea .newsItem:not(:last-child).newsItem {
    border-bottom: 1px solid #dddddd;
  }
  #latestUpdates .newsArea .newsItem dt time {
    font-weight: bold;
  }
  #recommend .floatImgs .floatImg {
    position: absolute;
    max-width: none;
  }
  
  #about .floatImgArea .floatImg {
    position: absolute;
    max-width: none;
  }
  #features .featuresBox .imgArea .movieItem.playMarkNone::before {
    content: none;
  }
  #features .featuresBox .showyTitle span + span {
    margin-top: 4px;
  }
  #features .featuresBox.typeProfileBox .titleProf > span {
    display: block;
  }
  .Scrollh3{
    margin-top: 20px;
  }
  /* ココから下には記入禁止 */
  .forPC1200 {
    display: none !important;
  }
  .none {
    display: none;
  }
  .englishBody #features .typeProfileBox .profileBox .profileTextArea .profDesc {
    line-height: 1.71;
  }
  .englishBody #globalHeader .catch {
    line-height: 1.3;
  }
}
@media print, screen and (min-width: 1201px) {
  #globalHeader {
    background-color: #fff;
    padding: 0 5vw 0 0vw;
    height: 108px;
  }
  #globalHeader.active {
    background-color: #fff;
    height: 75px;
  }
  #globalHeader.active .catch {
    padding: 26px 0 26px 5vw;
  }
  #globalHeader .catch {
    font-size: 17px;
    padding: 43px 0 43px 5vw;
    background: #1f6360;
    width: 61.2%;
    min-width: 960px;
  }
  #menuBtn {
    width: 75px;
    height: 75px;
  }
  #menuBtn span {
    width: 75px;
    height: 2px;
    right: 0;
  }
  #menuBtn span:nth-of-type(1) {
    top: 30px;
  }
  #menuBtn span:nth-of-type(2) {
    top: 42px;
  }
  #menuBtn.isOpen span:nth-of-type(1) {
    top: 42px;
  }
  #langBtn span {
    padding: 0 2px;
  }
  #hero {
    padding-top: 108px;
  }
  #hero::before {
    content: "";
    display: block;
    background-color: #1f6360;
    position: absolute;
    top: 0;
    left: 0;
    width: 960px;
    height: 849px;
    z-index: -1;
  }
  #hero .str {
    position: absolute;
    left: 100vw;
    top: 50%;
    transform: translateY(-50%);
    aspect-ratio: 1941/118;
    width: 100%;
    /*mix-blend-mode: difference;*/
    opacity: 0.35;
  }
  #hero .str0 {
    /*animation: strAnim0 15s linear forwards;*/
    left: 0;
    width: 1470px;
  }
  #hero .str1 {
    animation: strAnim 30s linear infinite;
    animation-delay: 1s;
  }
  #hero .str2 {
    animation: strAnim 30s linear infinite;
    animation-delay: 16s;
  }
  @keyframes strAnim0 {
    0% {
      left: 0;
    }
    90%, 100% {
      left: -100vw;
    }
  }
  @keyframes strAnim {
    0% {
      left: 100vw;
    }
    90%, 100% {
      left: -100vw;
    }
  }
  #hero .copStr {
    fill: #fff;
  }
  /* #hero #videoArea:before {
    content: "";
    display: block;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 5;
  } */
  #hero #videoArea > div {
    position: relative;
  }
  #hero #videoArea video {
    position: absolute;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    top: 50%;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    z-index: 0;
  }
  #videoArea img{
    object-fit: cover;
  }
  #hero #logo img {
    width: 100%;
    height: auto;
	  margin-left: 25px;
  }
  #hero #sen {
    width: 2px;
    height: 200px;
    position: absolute;
    top: 750px;
    left: 5vw;
  }
  #globalFooter .footInfoArea .wideFootElm {
    /* width: 100%; */
  }
  #latestUpdates .newsArea .newsItem:not(:last-child).newsItem {
    border-bottom: 1px solid #dddddd;
  }
  #latestUpdates .newsArea .newsItem dt time {
    font-weight: bold;
  }
  #recommend .floatImgs .floatImg {
    position: absolute;
    max-width: none;
  }
  /* #program .titleBlock {
    text-align: center;
  } */
  #about .floatImgArea .floatImg {
    position: absolute;
    max-width: none;
  }
  #features .featuresBox .imgArea .movieItem.playMarkNone::before {
    content: none;
  }
  #features .featuresBox .showyTitle span + span {
    margin-top: 4px;
  }
  #features .featuresBox.typeProfileBox .titleProf > span {
    display: block;
  }
  /* ココから下には記入禁止 */
  .forSP1200 {
    display: none !important;
  }
  .none {
    display: none;
  }
  .englishBody #features .typeProfileBox .profileBox .profileTextArea .profDesc {
    line-height: 1.71;
  }
  .englishBody #globalHeader.active .catch {
    padding: 14px 0 14px 5vw;
  }
  .englishBody #globalHeader .catch {
    padding: 30px 0 30px 5vw;
  }
  .Scrollh3{
    margin-top: 20px;
  }
}


@media(min-width:769px){
#mind p{
  padding: 20px 80px 70px;
}
.iconSnsWrap li .instaIcon {
  display: block;
  max-width: 52px;
}
.iconSnsWrap li .youtubeIcon {
  max-width: 50px;  display: block;
}
}



@media(max-width:768px){


  .iconSnsWrap li .instaIcon {
    display: block;
    max-width: 34px;
  }
  .iconSnsWrap li .youtubeIcon {
    max-width: 38px;
    display: block;
  }

  #mind .inner{
    padding: 0 20px;
  }
#mind .titleBlock + *{
  margin: 30px 0 50px;
}
/* #mind .titleBlock{
  margin-top: 40px;
} */


}


/*# sourceMappingURL=map/style.css.map */
