@charset "UTF-8";


body {
  font-family: "UniversLTPro-55Roman", "新ゴ R", "Shin Go Regular", "A-OTF 新ゴ Pro R", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, "メイリオ", sans-serif;
}
.header {
  font-family: inherit;
}
.nav {
  border-radius: 0;
}
.navList a {
  font-weight: 400;
  font-family: "UniversLTPro-55Roman", "新ゴ M", "Shin Go Medium", "A-OTF 新ゴ Pro M", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, "メイリオ", sans-serif;
}
.fw_light {
  font-family: "UniversLTPro-45Light", "新ゴ L", "Shin Go Light", "A-OTF 新ゴ Pro L", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, "メイリオ", sans-serif;  
}
@media only screen and (max-width: 1024px) {
.header {
  background: rgba(245,245,245,1);
  left: 0;
}
.header__logo {
  left: 15px!important;
}
}

/*--------------------------------------------------------------------------

v1からの引き継ぎ

-------------------------------------------------------------------------- */

/* title
-------------------------------------------------------------------------- */
h3.title1 {
	margin-bottom: 60px;
	padding: 12px 0;
	border-bottom: 1px solid #c9c9c9;
}
h3.title1 span {
  color: #c9c9c9;
}
h3.title1 .label_ja {
	display: block;
	font-size: 28px;
}
@media only screen and (max-width: 1024px) {
	h3.title1 {
		margin-bottom: 30px;
	}
	h3.title1 .label_ja {
		font-size: 20px;
	}
}

/* sup
-------------------------------------------------------------------------- */
.supBaseline {
	vertical-align: -moz-middle-with-baseline;
  vertical-align: -webkit-baseline-middle;
}
.supSuper {
  font-size: 10px;
  vertical-align: super;
}

/* readmore
-------------------------------------------------------------------------- */
.readmore_button {
  font-weight: 400;
  font-family: "UniversLTPro-55Roman", "新ゴ M", "Shin Go Medium", "A-OTF 新ゴ Pro M", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, "メイリオ", sans-serif;
	position: relative;
	transition: ease 0.4s;
	cursor: pointer;
}
.readmore_button:hover {
	opacity: 0.7;
}
.readmore_icon {
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	margin: auto;
	width: 30px;
	height: 30px;
	display: block;
}
.readmore_icon:before,
.readmore_icon:after {
	content: '';
	position: absolute;
	top: 0;
	bottom: 0;
	right: 0;
	left: 0;
	margin: auto;
	background: #c9c9c9;
}
.readmore_icon:before {
	width: 30px;
	height: 4px;
}
.readmore_icon:after {
	width: 4px;
	height: 30px;
}
.readmore .readmore_block {
	max-height: 300px;
	overflow: hidden;
	position: relative;
	-webkit-transition: all 0.5s cubic-bezier(0, 0.65, 0.2, 1);
	transition: all 0.5s cubic-bezier(0, 0.65, 0.2, 1);
}
.readmore.open .readmore_block {
	max-height: 2000vh;
	-webkit-transition: all 0.75s cubic-bezier(0.2, 0, 1, 0.2);
	transition: all 0.75s cubic-bezier(0.2, 0, 1, 0.2);
}
.readmore .readmore_block::after {
	content: '';
	width: 100%;
	height: 300px;
	position: absolute;
	bottom: 0px;
	left: 0px;
	text-align: center;
	background: linear-gradient(180deg, rgb(255, 255, 255, 0) 0%, rgb(255, 255, 255, 1) 70%);
}
.readmore.open .readmore_block::after {
	content: none;
}
.readmore.open .readmore_icon {
	opacity: 0.7;
}
.readmore.open .readmore_icon:after {
	opacity: 0;
}
@media only screen and (max-width: 1024px) {
	.readmore .readmore_block {
		max-height: 130px;
	}
	.readmore .readmore_block::after {
		height: 130px;
	}
	.readmore_icon:before {
		width: 20px;
		height: 2px;
	}
	.readmore_icon:after {
		width: 2px;
		height: 20px;
	}
}

/* scrolldown
-------------------------------------------------------------------------- */
.scrolldown {
	display: inline-block;
	position: absolute;
	left: 100px;
	top: 640px;
	margin: auto;
	z-index: 2;
	padding: 10px 10px 80px;
	font-size: 14px;
	line-height: 1.3;
	letter-spacing: 0.1em;
	text-align: center;
	text-transform: uppercase;
	text-decoration: none;
	overflow: hidden;
	transition: 0.2s;
}
.scrolldown:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 1px;
	height: 70px;
	background: #343434;
	animation: scrolldown 1.5s cubic-bezier(1, 0, 0, 1) infinite;
}
@keyframes scrolldown {
	0% {
		transform: scale(1, 0);
		transform-origin: 0 0;
	}
	25% {
		transform: scale(1, 1);
		transform-origin: 0 0;
	}
	25.1% {
		transform: scale(1, 1);
		transform-origin: 0 100%;
	}
	40%,
	100% {
		transform: scale(1, 0);
		transform-origin: 0 100%;
	}
}
@media only screen and (max-width: 1024px) {
.scrolldown {
	display: none;
}
}


/* main
-------------------------------------------------------------------------- */
.main {
  font-family: inherit;
  font-weight: 400;
}
.main img {
	max-width: 100%;
	width: 100%;
	display: block;
}
@media only screen and (max-width: 1024px) {
.main {
  padding-top: 70px;
}
}

/* productLineup
-------------------------------------------------------------------------- */
.productLineup {
	background: #fff;
	overflow: hidden;
}
.productLineup .button1 {
	margin-bottom: 100px;
}
.productLineup .product_play {
	margin-bottom: 120px;
}
.productLineup .product_item,
.productLineup .product_img,
.productLineup .product_video,
.productLineup .product_button {
	width: 100%;
}
.productLineup .product_item a {
	display: block;
	color: #333;
	text-align: center;
	text-decoration: none;
}
.productLineup .product_cate span {
	font-size: 13px;
}
.productLineup .product_video {
	margin-top: 20px;
}
.productLineup .product_button {
	margin-top: 30px;
}
.productLineup .product2 .product_video {
	margin-top: 0;
}
.productLineup .product_cate_block {
	margin-bottom: 60px;
}
.productLineup .product_cate_block:last-of-type {
	margin-bottom: 0;
}
.productLineup .productLineup_slide_ {
	position: relative;
	margin-bottom: 120px;
	overflow: visible;
}
.productLineup .productLineup_slide {
	overflow: hidden;
}
.productLineup .productLineup_slide .product_cate {
  font-weight: 500;
  line-height: 1;
	margin-top: 20px;
	margin-bottom: 0;
}
.productLineup .swiper-button-next,
.productLineup .swiper-button-prev {
	width: 12px;
	height: 26.6667px;
	top: 50%;
	opacity: 1;
}
.productLineup .swiper-button-next:after,
.productLineup .swiper-button-prev:after {
	font-size: 26px;
	color: #333;
}
.productLineup .swiper-button-next {
	right: -36px;
}
.productLineup .swiper-button-prev {
	left: -36px;
}
.productLineup .swiper-button-disabled {
	opacity: 0.3;
}
@media only screen and (max-width: 1024px) {
	.productLineup .product_play {
		margin-bottom: 60px;
	}
	.productLineup .product_cate {
		margin-bottom: 0;
	}
	.productLineup .product_video {
		margin-top: 15px;
	}
	.productLineup .product_button {
		margin-top: 10px;
	}
	.productLineup .product_cate_block {
		margin-bottom: 30px;
	}
	.productLineup .productLineup_slide_ {
		margin-bottom: 60px;
	}
	.productLineup .productLineup_slide .product_img {
		padding: 0 6px;
	}
	.productLineup .productLineup_slide .product_cate span {
		font-size: 11px;
	}
	.productLineup .swiper-container {
		width: 100%;
		margin: 0;
		overflow: visible;
	}
	.productLineup .swiper-button-next,
	.productLineup .swiper-button-prev {
		display: none;
	}
	.productLineup .swiper-button-next {
		right: -36px;
	}
	.productLineup .swiper-button-prev {
		left: -36px;
	}
	.productLineup .swiper-button-disabled {
		opacity: 0.3;
	}
}



/*--------------------------------------------------------------------------

v2

-------------------------------------------------------------------------- */

/* page common
-------------------------------------------------------------------------- */
.wrap {
  width: 1040px;
  padding: 0 20px;
  margin: auto;
}
@media only screen and (max-width: 1024px) {
  .wrap {
    width: auto;
  }
}

.section {
  padding: 100px 0 150px;
  position: relative;
}
.section.intro {
  padding: 100px 0;
  position: relative;
}
.section.moritaBooth {
  padding: 150px 0 200px;
  background-color: #f2f2f2;
  position: relative;
}
.section.seminar {
  padding: 150px 0 200px;
  background: url("../../img/japan/2025/seminar_bg01.png") no-repeat center center / cover;
  background-color: #3c3c3c;
  background-blend-mode:lighten;
  background-attachment: fixed;
  position: relative;
  z-index: 1;
}
.section.eventInformation {
  padding: 150px 0 200px;
  background-color: #6d77a4;
}
.section.productLineup {
  padding: 150px 0 200px;
}
.sectionBgWhite {
  background: #fff
}
.sectionBgGray {
  background: #ececec
}
@media only screen and (max-width: 1024px) {
  .section {
    padding: 100px 0 60px;
  }
  .section.moritaBooth {
    padding: 100px 0 80px;
  }
  .section.seminar {
    padding: 100px 0 80px;
  }
  .section.eventInformation {
    padding: 100px 0;
  }
  .section.productLineup {
    padding: 100px 0;
  }
}


.sectionTitle1 {
  color: #595757;
  font-size: 45px;
  font-weight: 400;
  font-family: "UniversLTPro-45Light", "新ゴ L", "Shin Go Light", "A-OTF 新ゴ Pro L", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, "メイリオ", sans-serif;
  letter-spacing: .05em;
  margin-bottom: 100px;
}
.sectionTitle1-inver {
  color: #fff;
}
.sectionTitle1__sub {
  font-size: 20px;
  font-weight: 400;
  font-family: "UniversLTPro-55Roman", "新ゴ R", "Shin Go Regular", "A-OTF 新ゴ Pro R", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, "メイリオ", sans-serif;
  letter-spacing: initial;
  margin-top: 10px;
  position: relative;
  display: flex;
  align-items: center;
  grid-gap: 10px; 
}
.sectionTitle1__sub:before {
  content:"";
  width: 20px;
  height: 1px;
  background: #595757;
}
.sectionTitle1__sub-inver {
  color: #fff;
}
.sectionTitle1__sub-inver:before {
  background: #fff;
}
.sectionTitle2 {
  color: #6d77a8;
  font-size: 28px;
  font-weight: 800;
  letter-spacing: .05em;
  margin-top: 100px;
  margin-bottom: 40px;
}
.sectionTitle2-inver {
  color: #fff;
}
@media only screen and (max-width: 1024px) {
  .sectionTitle1 {
    font-size: 32px;
    margin-bottom: 60px;
  }
  .sectionTitle2 {
    font-size: 24px;
    font-weight: 400;
    margin-top: 0;
  }
}

.flexList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  grid-gap: 40px 50px;
}
.flexList-sizeDown {
  grid-gap: 40px 20px
}
.flexList__item {
  width: 300px;
}
.flexList__item-sizeDownM {
  width: 280px;
}
.flexList__item-size600 {
  width: 600px;
}
.flexList__item-size500 {
  width: 500px;
}
.flexList__item-size460 {
  width: 460px;
}
.flexList__item-size490 {
  width: 490px;
}
.flexList__item-sizeFull {
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  .flexList__item,
  .flexList__item-sizeDownM,
  .flexList__item-size600,
  .flexList__item-sizeFull {
    width: 100%;
  }
}

.contentBtn {
  font-size: 16px;
  font-family: "UniversLTPro-55Roman", "新ゴ M", "Shin Go Medium", "A-OTF 新ゴ Pro M", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, "メイリオ", sans-serif;
  text-align: left; 
  text-decoration: none!important;
  width: 300px;
  min-height: 60px;
  padding: 15px 20px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all .3s;
}
.contentBtn span {
  margin-top: 0!important;
}
.contentBtn-sizeUp1 {
  width: 320px;
}
.contentBtn-sizeUp1 {
  width: 340px;
}
.contentBtn-sizeDown1 {
  width: 280px;
}
.contentBtn-sizeFull {
  width: 100%;
}

.contentBtn-gray {
  color: #343434!important;
  background: #dedede;
}
.contentBtn-black {
  color: #fff!important;
  background: #343434;
}
.contentBtn-white {
  color: #343434!important;
  background: #fff;
}
.contentBtn-blue {
  color: #fff!important;
  background: #6d77a8;
}

.contentBtn:after {
  content:"";
	width: 10px;
	height: 10px;
  margin: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 27px;
	transform: rotate(45deg);
  transition: all .3s;
}
.contentBtn-gray:after {
	border-top: 2px solid #333;
	border-right: 2px solid #333;
}
.contentBtn-black:after {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}
.contentBtn-white:after {
	border-top: 2px solid #333;
	border-right: 2px solid #333;
}
.contentBtn-blue:after {
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}

.contentBtn-gray:hover {
  cursor: pointer;
  color: #fff!important;
	background: #343434 !important;
}
.contentBtn-black:hover {
  color: #343434!important;
  cursor: pointer;
	background: #fff !important;
}
.contentBtn-white:hover {
  cursor: pointer;
	background: #343434 !important;
}
.contentBtn-blue:hover {
  cursor: pointer;
	background: #343434 !important;
}

.contentBtn-blue:hover:after {
  right: 22px;
}
.contentBtn-gray:hover:after,
.contentBtn-white:hover:after {
  right: 22px;
	border-top: 2px solid #fff;
	border-right: 2px solid #fff;
}
.contentBtn-black:hover:after {
  right: 22px;
	border-top: 2px solid #343434;
	border-right: 2px solid #343434;
}

.contentBtn:before {
  content: "";
  width: 30px;
  height: 30px;
  margin: auto;
	border: 2px solid transparent;
  border-radius: 10em;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 15px;
  opacity: 0;
  transition: all .3s;
}
.contentBtn:hover:before {
	border: 2px solid #fff;
  right: 10px;
  opacity: 1;
}
.contentBtn-black:hover:before {
	border: 2px solid #343434;
  right: 10px;
  opacity: 1;
}
.contentBtn-off {
  color: #999!important;
  background: #d0d0d0;
  border: solid 2px #d0d0d0;
  pointer-events: none;
  
}
@media only screen and (max-width: 1024px) {
  .contentBtn {
    width: 100%;
    justify-content: space-between;
    transition: all .3s;
  }
  .contentBtn-sizeUp1 {
    width: 100%;
  }
  .contentBtn-sizeDown1 {
    width: 100%;
}
}


.st_container {
  position: relative;
}
.st_container__fixed {
  height: 100vh;
  min-height: 750px;
  position: sticky;
  top: 0;
  left: 0;
  z-index: -1;
}
.st_container__normal {
  padding: 20vh 0 100vh;
  position: relative;
  z-index: 1;
}
@media only screen and (max-width: 1024px) {
.st_container__fixed {
  min-height: initial;
}
}
/* firstView
-------------------------------------------------------------------------- */
.fv {
  height: 100%;
  position: relative;
}
.fv__bg {
  padding-top: 75%;
  background: url("../../img/japan/2025/fv_pic01.png") no-repeat right top / 75%;
  background-color: #fff;
}
.fv__catch {
  color: #595757;
  font-family: "UniversLTPro-45Light", "新ゴ L", "Shin Go Light", "A-OTF 新ゴ Pro L", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, "メイリオ", sans-serif;
  font-weight: initial;
  position: absolute;
  top: 280px;
  left: 100px;
}
.fv__title1 {
  font-size: 74px;
  line-height: 1.125;
  display: block;
  opacity: 0;
  transform: translateY(20px);
}
.fv__catch.is-actv .fv__title1 {
  opacity: 1;
  transform: translateY(0);
  transition: all .5s 1s;
}
@media (min-width: 1025px) and (max-width: 1480px) {
  .fv {
    height: 850px;
  }
  .fv__bg {
    height: 100%;
    padding-top: 0;
    background: url("../../img/japan/2025/fv_pic01.png") no-repeat right top / 1000px auto;
    background-color: #fff;
  }
}
@media only screen and (max-width: 1024px) {
  .fv {
    height: 100vh;
  }
  .fv__bg {
    height: 100%;
    padding-top: 0;
    background: url("../../img/japan/2025/fv_pic01.png") no-repeat right top / 125%;
    background-color: #fff;
  }
  .fv__catch {
    top: initial;
    bottom: 200px;
    left: 25px;
  }
  .fv__title1 {
    font-size: 40px;
  }
}

/* intro
-------------------------------------------------------------------------- */
.intro__bg {
  position: absolute;
  top: -100px;
  bottom: 0;
  margin: auto;
  height: max-content;
}
.intro__pic01 {
  width: 1000px;
}
.intro__pic02 {
  width: 1100px;
  margin-top: 100px;
  margin-left: -50px;
  background: #fff;
}
.intro__pic02 img {
  mix-blend-mode: multiply;
}
.intro__title {
  color: #595757;
  font-size: 45px;
  font-weight: 400;
  font-family: "UniversLTPro-45Light", "新ゴ L", "Shin Go Light", "A-OTF 新ゴ Pro L", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, "メイリオ", sans-serif;
  line-height: 1.5;
  margin: 0 0 60px 450px;
  position: absolute;
  top: 45%;
  transform: translateY(-100%);
  z-index: 1;
}
.intro__stitle {
  font-size: 32px;
  font-weight: 400;
}
.intro__description {
  font-size: 20px;
  line-height: 2;
  margin-top: 20px;
}
.intro__flex {
  margin-left: 450px;
  display: flex;
  flex-flow: wrap column;
  gap: 60px;
}
.intro__text {
  min-height: 400px;
  padding: 60px 45px;
  background: #f8f8f8;
  box-shadow: 30px 30px 30px 0px rgba(0, 0, 0, 0.3);
}
@media only screen and (max-width: 1024px) {
.intro__bg {
  top: 0;
  margin: auto -20px 10vh -20px;
  overflow: hidden;
}
.intro__pic01 {
  width: 145%;
}
.intro__pic02 {
  width: 150%;
  margin-top: 30px;
  margin-left: 0;
}
.intro__title {
  font-size: 32px;
  margin: 0;
  position: relative;
  top: initial;
  transform: translateY(60px);
  }
.intro__stitle {
  font-size: 26px;
}
.intro__description {
  font-size: 18px;
  margin-bottom: 0;
}
.intro__flex {
  margin-left: 0;
  gap: 40px;
}
.intro__text {
  min-height: initial;
  padding: 45px 30px;
}
}

/* moritaBooth
-------------------------------------------------------------------------- */
.moritaBoothMap {
  margin-bottom: 150px;
  position: relative;
}
.moritaBoothMap__comment {
  font-size: 14px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: baseline;
  position: absolute;
  top: -30px;
  right: 0;
}
.moritaBoothMap__comment span {
  width: 18px;
  height: 18px;
  padding: 3px;
  margin: 3px;
  line-height: 1;
  border: solid 1px #333;
  display: flex;
  justify-content: center;
}
.moritaBoothMapNumber {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.moritaBoothMap__overscrollTitle {
  color: #fff;
  font-size: 16px;
  text-align: center;
  margin-bottom: 15px;
  padding: 10px;
  background: #6d77b8;
  display: none;
}
.moritaBoothMapNumber__item {
  padding-bottom: 10px;
  position: absolute;
}
.moritaBoothMapNumber__item--a {
  top: 60px;
  left: 0;
}
.moritaBoothMapNumber__item--b {
  top: 230px;
  left: 0;
}
.moritaBoothMapNumber__item--c {
  top: 270px;
  left: 185px;
}
.moritaBoothMapNumber__item--d {
  top: 270px;
  left: 365px;
}
.moritaBoothMapNumber__item--e {
  top: 195px;
  left: 765px;
}
.moritaBoothMapNumber__icon {
  width: 25px;
  transition: transform .3s;
}
.moritaBoothMapNumber__detail {
  width: 350px;
  padding: 25px;
  background: #fff;
  box-shadow: 10px 10px 30px 0px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 55px;
  left: -50px;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
}
.moritaBoothMapNumber__item:hover .moritaBoothMapNumber__detail,
.moritaBoothMapNumber__detail:hover {
  visibility: visible;
  opacity: 1;
  transition: opacity .3s .3s;
}
.moritaBoothMapNumber__item:hover .moritaBoothMapNumber__icon {
  transform: scale(1.25);
}
.moritaBoothMapNumber__detail::before {
  content:"";
  width:0;
  height:0;
  border-style:solid;
  border-width: 0 12.5px 21.7px 12.5px;
  border-color: transparent transparent #FFFFFF transparent;
  position: absolute;
  bottom: 99.5%;
  left: 50px;
}
.moritaBoothMapNumber__title {
  font-size: 14px;
  font-weight: 400;
  font-family: "UniversLTPro-55Roman", "新ゴ M", "Shin Go Medium", "A-OTF 新ゴ Pro M", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, "メイリオ", sans-serif;
  margin-bottom: 10px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}
.moritaBoothMapNumber__titleNumber {
  width: 25px;
  display: block;
  transform: translateY(-3px);
}
.moritaBoothMapNumber__description {
  font-size: 12px;
  line-height: 1.75;
}
.moritaBoothMapList {
  padding: 20px;
  background: #e7e7e7;
  display: flex;
  flex-wrap: wrap;
  gap: 5px 20px;
}
.moritaBoothMapList__item {
  font-size: 11px;
  width: calc(50% - 10px); 
  padding-left: 1em;
  position: relative;
}
.moritaBoothMapList__item::before {
  content: "● ";
  color: #6d77a6;
  font-size: .75em;
  position: absolute;
  top: 2px;
  left: 0;
}
.moritaBoothFeatures__title {
  color: #595757;
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  margin-bottom: 100px;
  position: relative;
}
.moritaBoothFeatures__title::after {
  content:"";
  width: 30px;
  height: 1px;
  margin: auto;
  background: #595757;
  position: absolute;
  bottom: -20px;
  left: 0;
  right: 0;
}
.moritaBoothFeaturesList {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 45px 35px;
}
.moritaBoothFeaturesList__item {
  text-align: center;
  width: 310px;
  padding: 35px 30px;
  background: #fff;
  box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.15);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.moritaBoothFeaturesList__item--sizeUp {
  width: 340px;
}
.moritaBoothFeaturesList__stitle {
  font-size: 20px;
  font-weight: 400;
  font-family: "UniversLTPro-55Roman", "新ゴ M", "Shin Go Medium", "A-OTF 新ゴ Pro M", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, "メイリオ", sans-serif;
  margin-top: 15px;
}
.moritaBoothFeaturesList__description {
  font-size: 16px;
  line-height: 1.75;
}
.moritaBoothFeaturesList__comment {
  font-size: 14px;
  text-align: right;

}
.moritaBoothFeaturesList__pic {
  width: 180px;
  margin: 0 auto;
}
.moritaBoothFeaturesList__pic--large {
  width: 240px;
  margin: 0 auto;
}
@media only screen and (max-width: 1024px) {
.moritaBoothMap {
  margin-bottom: 60px;
}
.moritaBoothMap__comment {
  display: none;
}
.moritaBoothMap__overscrollTitle {
  display: block;
}
.moritaBoothMap__overscrollInner {
  padding-bottom: 15px;
  overflow-x: auto;
  scrollbar-color: #6d77b8 #f7f7f9;
  scrollbar-width: thin;
}
.moritaBoothMap__pic {
  width: 1000px;
}
.moritaBoothMapNumber {
  position: static;
}
.moritaBoothMapNumber__item {
  margin: 30px auto 0;
  border: solid 1px #ccc;
  padding-bottom: 0;
  position: static;
}
.moritaBoothMapNumber__detail {
  width: 100%;
  padding: 20px;
  box-shadow: none;
  position: static;
  visibility: visible;
  opacity: 1;
}
.moritaBoothMapNumber__detail::before {
  content: none;
}
.moritaBoothMapNumber__title {
  font-size: 16px;
}
.moritaBoothMapNumber__titleNumber {
  transform: translateY(-3px);
}
.moritaBoothMapNumber__description {
  font-size: 14px;
}
.moritaBoothMapNumber__icon {
  display: none;
}
.moritaBoothMapNumber__description {
  margin-bottom: 0;
}
.moritaBoothMapList {
  margin-top: 15px;
  gap: 5px 10px;
}
.moritaBoothMapList__item {
  width: calc(50% - 5px); 
}
.moritaBoothFeatures__title {
  font-size: 20px;
  margin-bottom: 60px;
}
.moritaBoothFeaturesList__item {
  width: 100%;
  padding: 35px 30px;
  box-shadow: 10px 10px 20px 0px rgba(0, 0, 0, 0.15);
}
.moritaBoothFeaturesList__item--sizeUp {
  width: 100%;
}
}


/* eventInformation__overview
-------------------------------------------------------------------------- */
.eventInformation__wrap {
  position: relative;
}
.eventInformation__overview {
  color: #fff;
}
.eventInformation__overview:not(:first-child) {
  margin-top: 60px;
}
.eventInformation__overview dt {
  font-size: 24px;  
  margin-bottom: 20px;
}
.eventInformation__overview dd {
  font-size: 40px;
  line-height: 1.25;
}
.eventInformation__overview dd span {
  font-size: 20px;
  line-height: 1.5;
  display: block;
}
.eventInformation__overview dd span:last-child {
  font-size: 16px;
  margin-top: 30px;
}
.eventInformation__overview dd small {
  font-size: 24px;  
}
.eventInformation__pic01 {
  margin-top: -75px;
}
.eventInformation__passport {
  width: 580px;
  padding: 60px 45px;
  background: #fff;
  box-shadow: 30px 30px 30px 0px rgba(0, 0, 0, 0.3);
  position: absolute;
  top: 50px;
  right: 0;
}
.eventInformation__passportTitle {
  font-size: 36px;
  font-weight: 400;
  margin-bottom: 20px;
}
.eventInformation__passportDesc {
  font-size: 18px;
  font-weight: 400;
  margin-bottom: 30px;
}
.eventInformation__passportApp {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 20px;
}
.eventInformation__passportAppIcon {
  width: 125px;
}
.eventInformation__passportAppDetail {
  width: 345px;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.eventInformation__passportAppDetail p {
  font-size: 14px;
  width: 100%;
  margin: 0;
}
.eventInformation__passportAppDownload {
  opacity: 1;
  transition: opacity .3s;
}
.eventInformation__passportAppDownload:hover {
  opacity: 0.5;
}
.eventInformation__passportAppDownload:nth-child(2) {
  width: 136px;
}
.eventInformation__passportAppDownload:nth-child(3) {
  width: 169px;
}
@media only screen and (max-width: 1024px) {
.eventInformation__overview dt {
  margin-bottom: 10px;
}
.eventInformation__overview dd {
  font-size: 32px;  
  line-height: 1.25;
}
.eventInformation__overview dd span {
  font-size: 24px;
}
.eventInformation__overview dd small {
  font-size: 20px;  
}
.eventInformation__pic01 {
  margin-top: -20px;
}
.eventInformation__passport {
  width: 100%;
  margin: 30px 0 60px;
  padding: 35px 25px;
  position: static;
}
.eventInformation__passportAppIcon {
  margin: auto;
  width: 125px;
}  
.eventInformation__passportAppDetail {
  width: 100%;
  justify-content: space-between;
  gap: 0;

}
.eventInformation__passportAppDetail p {
  margin-bottom: 10px;
}
.eventInformation__passportAppDownload:nth-child(2) {
  width: 44%;
}
.eventInformation__passportAppDownload:nth-child(3) {
  width: 53%;
}
}


/* seminar
-------------------------------------------------------------------------- */
.cardSeminar {
  color: #fff;
  min-height: 620px;
}
.cardSeminar-darkBrown {
  border: solid 5px #595757;
}
.cardSeminar-brown {
  border: solid 5px #8d807d;
}
.cardSeminar-v2 {
  display: flex;
  flex-wrap: wrap;
}
.cardSeminar-v2 .cardSeminar__main,
.cardSeminar-v2 .cardSeminar__sub {
  width: 50%;
  padding: 30px 25px;
  position: relative;
}
.cardSeminar-v2 .cardSeminar__main--full {
  width: 100%;
}
.cardSeminar-v2.cardSeminar-darkBrown .cardSeminar__main { background: #595757; }
.cardSeminar-v2.cardSeminar-brown .cardSeminar__main { background: #8d807d; }
.cardSeminar-v2.cardSeminar-darkBrown .cardSeminar__sub { background: rgba(55,55,55,0.5); }
.cardSeminar-v2.cardSeminar-brown .cardSeminar__sub { background: rgba(141,128,125,0.25); }
.cardSeminar-v2 .cardSeminar__sub--cv {
  width: 100%;
  padding: 30px 60px;
  display: flex;
  flex-flow: wrap column;
  justify-content: center;
  gap: 10px;
}
.cardSeminar-v2 .cardSeminar__sub--cv p {
  font-size: 14px;
  line-height: 1.75;
  margin: 40px 0 10px;
}
.cardSeminar-v2 .cardSeminar__sub--cv p:first-child {
  font-size: 24px;
  font-family: "UniversLTPro-55Roman", "新ゴ M", "Shin Go Medium", "A-OTF 新ゴ Pro M", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, "メイリオ", sans-serif;
  margin: 0 0 10px;
}
.seminarTitle1 {
  color: #fff;
  font-size: 30px;
  font-weight: 400;
  font-family: "UniversLTPro-55Roman", "新ゴ M", "Shin Go Medium", "A-OTF 新ゴ Pro M", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, "メイリオ", sans-serif;
  line-height: 1.5;
  min-height: 8.5em;
}
.seminarTitle1 span {
  font-size: 20px;
}
.seminarBlock:not(:first-child) {
  margin-top: 75px;
}
.seminarBlock__title {
  color: #fff;
  margin-bottom: 30px;
}
.seminarBlock__title p:nth-child(1) {
  font-size: 20px;
  font-weight: 400;
  font-family: "UniversLTPro-55Roman", "新ゴ M", "Shin Go Medium", "A-OTF 新ゴ Pro M", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, "メイリオ", sans-serif;
  margin-bottom: 10px;
}
.seminarBlock__title p:nth-child(2) {
  font-size: 16px;
}
.seminarBlock__title {
  margin-bottom: 30px;
}
.seminarBlock_hr {
  margin-top: 100px;
}
.seminarDesc {
  font-size: 16px;
  padding-bottom: 30px;
  margin-bottom: 30px;
  border-bottom: solid 1px #fff;
}
.seminarDetailList1 {
  color: #fff;
  font-weight: 400;
  font-family: "UniversLTPro-55Roman", "新ゴ M", "Shin Go Medium", "A-OTF 新ゴ Pro M", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, "メイリオ", sans-serif;
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  grid-gap: 15px;
}
.seminarDetailList1--instructor {
  width: 150px;
  position: absolute;
  left: 30px;
}
.seminarDetailList1-mt20 {
  margin-top: 20px!important;
}
.seminarDetailList1-mt30 {
  margin-top: 30px!important;
}
.seminarDetailList1 + .seminarDetailList1  {
  margin-top: 10px;
}
.seminarDetailList1__dt {
  font-size: 14px;
  margin-top: -10px;
  padding: 6px 10px 2px;
  background: #343434;
  transform: translate(0, -3px);
}
.seminarDetailList1__name {
  font-size: 24px;
}
.seminarDetailList1__nameSub {
  font-size: 14px;
}
.seminarDetailList1__type {
  font-size: 16px;
  font-weight: 500;
}
.seminarDetailList1__clinic {
  font-size: 16px;
  line-height: 1.5;
  display: inline-block;
}
.seminarDetailList1__nameSub,
.seminarDetailList1__date, 
.seminarDetailList1__time {
  display: block;
  font-size: 16px;
  line-height: 1.25;
}
.seminarDetailList1__date i {
  font-size: 36px;
  font-style: normal;
}
.seminarDetailList1__max i {
  font-size: 36px;
  font-style: normal;
}
.seminarDetailList1__location {
  font-size: 20px;
}
.seminarDetailList1__description {
  font-size: 14px;
  font-weight: 400;
  font-family: "UniversLTPro-55Roman", "新ゴ R", "Shin Go Regular", "A-OTF 新ゴ Pro R", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, "メイリオ", sans-serif;
  line-height: 1.75;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: solid 2px #fff;
}
.seminarDetailList1__instructor {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.seminarDetailList1__instructorPic {
  width: 150px;
}
.seminarDetailList1__instructorBio {
  font-size: 12px;
  font-weight: 400;
  font-family: "UniversLTPro-55Roman", "新ゴ R", "Shin Go Regular", "A-OTF 新ゴ Pro R", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, "メイリオ", sans-serif;
}
.seminarDetailList1__instructorBio-sizeFull {
  width: 100%;
}
.seminarDetailList1__instructorBioTitle {
  font-size: 14px;
  font-weight: 400;
  font-family: "UniversLTPro-55Roman", "新ゴ M", "Shin Go Medium", "A-OTF 新ゴ Pro M", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, "メイリオ", sans-serif;
  margin-bottom: 5px;
  display: inline-block;
}
.seminarInfoFlex {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  justify-content: flex-end;
  grid-gap: 20px;
}
.seminarInfoFlex__item-sizeFull {
  width: 100%;
}
.seminarInfoFlex__item-sizeHalf {
  width: 57.5%;
}
@media only screen and (max-width: 1024px) {
  .cardSeminar {
    min-height: auto;
  }
  .cardSeminar-v2 .cardSeminar__main,
  .cardSeminar-v2 .cardSeminar__sub,
  .cardSeminar-v2 .cardSeminar__main-type02,
  .cardSeminar-v2 .cardSeminar__sub-type02 {
    width: 100%;
    padding: 30px 20px;
  }
  .seminarBlock:not(:first-child) {
    margin-top: 60px;
  }
  .seminarBlock_hr {
    margin-top: 60px;
  }
  
  
  .seminarInfoFlex {
    justify-content: flex-start;
  }

  .seminarInfoFlex__item-sizeHalf {
    width: 100%;
  }
  .seminarDetailList1__instructorPic {
    width: 100%;
    max-width: 130px;
    margin: 0 0 30px;
  }
  .seminarDetailList1__instructorBio {
    width: 100%;
  }
  
  .seminarTitle1 {
    font-size: 26px;
    line-height: 1.75;
    min-height: initial;
    margin-bottom: 60px;
  }
  .seminarTitle1 span {
    font-size: 18px;
    display: inline-block;
  }


  .seminarDetailList1--instructor {
    width: 100%;
    position: static;
    justify-content: center;
  }
  
}


/* productLineUp
-------------------------------------------------------------------------- */
.productLineupDebut {
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-bottom: 60px;
  padding-bottom: 30px;
  background: url("../../img/japan/2025/product_debutBg01.png") repeat-x center bottom / 50px 360px;
}
.productLineupDebut__inner {
  width: 1040px;
  padding: 0 20px;
  margin: auto;
}
.productLineupList {
  display: flex;
  flex-wrap: wrap;
  grid-gap: 60px;
}
.productLineupList__item {
  width: 470px;
}
.productLineupList__pic {
  width: 180px;
  float: left;
}
.productLineupList__text {
  width: 270px;
  float: right;
}
.productLineupList__title {
  font-family: "UniversLTPro-55Roman", "新ゴ M", "Shin Go Medium", "A-OTF 新ゴ Pro M", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, "メイリオ", sans-serif;
  font-weight: 400;
  margin-bottom: 30px;
}
.productLineupList__title-line2 {
 min-height: 86px;
}
.productLineupList__title-line3 {
 min-height: 78px;
}
.productLineupList__title-line3Half {
 min-height: 98px;
}
.productLineupList__title-line4 {
 min-height: 106px;
}
.productLineupList__title-line4Half {
 min-height: 118px;
}
.productLineupList__sub {
  font-size: 14px;
  line-height: 1.5;
  display: block;
}
.productLineupList__sub-oversize {
  width: 320px;
}
.productLineupList__sub i {
  color: #fff;
  font-size: 16px;
  line-height: 1;
  margin-right: 8px;
  margin-bottom: 5px;
  padding: 4px 10px 6px;
  background: #d90000;
  border-radius: 5px;
  display: inline-block;
}
.productLineupList__logo01 {
  width: 100px;
  margin: 10px 0;
  display: block;
}
.productLineupList__main {
  font-size: 24px;
  margin-top: 5px;
  display: inline-block;
}
.productBtn1 {
  float: right;
}
.productBtn1 a + a {
  margin-top: 15px;
}
@media only screen and (max-width: 1024px) {
  .productLineupDebut {
    margin: 0 -20px;
    padding-bottom: 5vw;
    background: url("../../img/japan/2025/product_debutBg01.png") repeat-x center bottom / 7.5vw auto;
  }
  .productLineupDebut__inner {
    width: auto;
  }
  .productLineupList__item {
    width: 100%;
    grid-gap: 0 15px;
  }
  .productLineupList__pic {
    width: 35%;
    border-radius: 5px;
  }
  .productLineupList__pic img {
    border: solid 1px #dedede;
  }
  .productLineupList__text {
    width: 60%;
  }
  .productLineupList__title-line2,
  .productLineupList__title-line3,
  .productLineupList__title-line3Half,
  .productLineupList__title-line4,
  .productLineupList__title-line4Half {
    min-height: initial
  }
  .productLineupList__sub {
    font-size: 12px;
  }
  .productLineupList__sub-oversize {
    width: auto;
  }
  .productLineupList__sub i {
    font-size: 12px;
    padding: 4px 6px 6px;
  }
  .productLineupList__main {
    font-size: 18px;
  }
  .productLineupList__logo01 {
    width: 75px;
  }
  .productBtn1 {
    float: none;
    padding-top: 20px;
    clear: both;
  }
}

/* requestdemo
-------------------------------------------------------------------------- */
.requestdemo {
  width: 1100px;
  height: 385px;
	margin: auto;
  overflow: hidden;
}
.requestdemo__pic {
	position: relative;
}
.requestdemo__bg {
  width: 50%;
  height: 100%;
  background: #6d77a8;
  position: absolute;
  top: 0;
  right: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.requestdemo__btn {
  color: #fff;
  font-size: 36px;
  text-decoration: none;
  padding-left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  grid-gap: 0 30px;
  transition: opacity .2s;
}
.requestdemo__btn:before {
  content:"";
  width: 80px;
  height: 80px;
  background: url("../img/arrow_white-set.svg") no-repeat 0 0 / cover;
}
.requestdemo__btn:hover {
  opacity: 0.6;
  transition: opacity .2s;
}
@media only screen and (max-width: 1024px) {
  .requestdemo  {
    width: auto;
    height: auto;
    margin: 0 20px 60px;
  }
  .requestdemo__bg {
    width: 100%;
    height: auto;
  }
  .requestdemo__bg {
    background: none;
    position: static;
  }
  .requestdemo__btn {
    display: none;
  }
}

/* animation css
-------------------------------------------------------------------------- */
.anime__sizeUtoD {
  animation: SizeUtoD 1s;
}
.anime__fadeIn {
  opacity: 0;
  animation: FadeIn 2s forwards;
}
.anime__infinityRorate1 {
  animation: InfinityRorate1 1s cubic-bezier(0, 0.62, 0.61, 1);
}
.anime__infinityRorate2 {
  animation: InfinityRorate2 30s .9s linear infinite;
}
@keyframes SizeUtoD {
	0% {
		transform: scale(2.0);
	}
	100% {
		transform: scale(1.0);
	}
}
@keyframes FadeIn {
	0% {
		opacity: 0;
	}
	10% {
		opacity: 0;
	}
	100% {
		opacity: 1;

	}
}
@keyframes InfinityRorate1 {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(-1440deg);
	}
}
@keyframes InfinityRorate2 {
	0% {
		transform: rotate(0deg);
	}
	100% {
		transform: rotate(-360deg);
	}
}

/* swiper（lineAnimationSlider）
-------------------------------------------------------------------------- */
.swiper.lineAnimationSlider {
  margin-top: -100px;
  padding-top: 100px;
}
.swiper.lineAnimationSlider .swiper-pagination-fraction {
  height: 0;
  font-size: 12px;
  font-weight: 600;
  color: #1a1b1b;
  position: absolute;
  top: 0;
}
.swiper.lineAnimationSlider .swiper-num {
  position: absolute;
  top: 0;
  right: 280px;
}
.swiper.lineAnimationSlider .swiper-slash {
  margin: 0 5px;
  display: inline-block;
}
.swiper.lineAnimationSlider .swiper-pagination-fraction .border {
  width: 200px;
  height: 2px;
  margin: 0 8px;
  background-color: #fff;
  position: absolute;
  top: 30px;
  right: 120px;
  display: block;
}
.swiper.lineAnimationSlider .swiper-pagination-fraction .border span {
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  width: 100%;
  height: 100%;
  background-color: #6d77a8;
  transform: scaleX(0);
  transform-origin: left center;
  transition-timing-function: linear;
}
.swiper.lineAnimationSlider .swiper-pagination.is-active .border span {
  transform: scaleX(1);
  transition: transform 4.85s linear;
}
.swiper.lineAnimationSlider .swiper-button-next, .swiper.lineAnimationSlider .swiper-button-prev {
  width: 40px;
  height: 40px;
  background-size: 9px 18px;
  background-position: center center;
  border: solid 1px #343434;
  border-radius: 10em;
  top: 30px;
}
.swiper.lineAnimationSlider .swiper-button-next {
  right: 0;
  left: initial;
}
.swiper.lineAnimationSlider .swiper-button-prev {
  right: 60px;
  left: initial;
}
.swiper.lineAnimationSlider .swiper-button-prev:after,
.swiper.lineAnimationSlider .swiper-rtl .swiper-button-next:after {
  content: "";
  width: 12px;
  height: 12px;
  margin: auto;
  border-top: solid 1px #343434;
  border-right: solid 1px #343434;
  position: absolute;
  left: 15px;
  top: 0;
  bottom: 0;
  transform: rotate(-135deg);
}
.swiper.lineAnimationSlider .swiper-button-next:after,
.swiper.lineAnimationSlider .swiper-rtl .swiper-button-prev:after {
  content: "";
  width: 12px;
  height: 12px;
  margin: auto;
  border-top: solid 1px #343434;
  border-right: solid 1px #343434;
  position: absolute;
  left: 10px;
  top: 0;
  bottom: 0;
  transform: rotate(45deg);
}
.swiper.lineAnimationSlider .swiper-button-lock {
  display: block!important;
}
@media only screen and (max-width: 1024px) {
  .swiper.lineAnimationSlider {
    margin-top: -90px;
    padding-top: 90px;
  }
  .swiper.lineAnimationSlider .swiper-num {
    top: -5px;
    right: 80px;

  }
  .swiper.lineAnimationSlider .swiper-pagination-fraction .border {
    width: 100px;
    top: 20px;
    right: 0;
  }
  .swiper.lineAnimationSlider .swiper-button-next, .swiper.lineAnimationSlider .swiper-button-prev {
    display: none!important;
}
}












/*--------------------------------------------------------------------------

修　正

-------------------------------------------------------------------------- */
/* ▼▼▼▼▼2025▼▼▼▼
-------------------------------------------------------------------------- */
#japan2025 .navRequestdemo__btn {
  font-weight: 400;
  font-family: "UniversLTPro-55Roman", "新ゴ M", "Shin Go Medium", "A-OTF 新ゴ Pro M", "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Meiryo, "メイリオ", sans-serif;
  background: #6d77a4;
}
#japan2025 .navRequestdemo__btn:hover {
  background: #343434;
}

