@charset "utf-8";

/*==================================================

ベース

==================================================*/
html {
	line-height: 1.5;
	-webkit-text-size-adjust: 100%;
	-ms-text-size-adjust: 100%;
  scroll-behavior: smooth;
}
body {
	color: #222;
	font-family: var(--font-japanese);
	font-size: 1.6rem;
	-webkit-font-smoothing: antialiased;
	font-feature-settings: "palt";
	letter-spacing: 0;
}
body.page-en {
	font-family: var(--font-english);
}
body.page-ko {
	font-family: var(--font-ko);
}
body.page-zh-hant {
	font-family: var(--font-zh-hant);
}
body.page-zh-hans {
	font-family: var(--font-zh-hans);
}
body.menu-open{
	overflow: hidden;
}
html.menu-open{
	overflow: hidden;
}

/*========= font family関数指定 ==========*/
:root {
	--font-japanese: "Zen Kaku Gothic Antique", sans-serif;
	--font-english: "Commissioner", sans-serif;
	--font-ko: "Noto Sans KR", sans-serif;
	--font-zh-hant: "Noto Sans TC", sans-serif;
	--font-zh-hans: "Noto Sans SC", sans-serif;
}
/*===================*/

img {
	max-width: 100%;
	height: auto;
	vertical-align: bottom;
}
a {
	text-decoration: none;
	cursor: pointer;
}

/* アンカー
--------------------------------------------------*/
.m-anchor{
  position: relative;
}
/* PC */
@media print,only screen and (min-width: 768px){
  .m-anchor{
    scroll-margin-top: 6rem;
  }
  #form{
    scroll-margin-top: 19rem;
  }
}

/* SP */
@media screen and (max-width: 767px){
 .m-anchor{
    scroll-margin-top: 6rem;
  }
  #form{
    scroll-margin-top: 4rem;
  }
}

/* form リセット
--------------------------------------------------*/
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}
input[type="checkbox"]{
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

/*==================================================

共通

==================================================*/
/* PC */
@media print, screen and (min-width: 768px) {
  body{
    background: url("../images/home/main01.png") center top repeat-y;
    background-attachment: fixed;
    background-size: cover;
  }
	html {
		font-size: 10px;
	}
	.sp {
		display: none!important;
	}
	a:hover {
		text-decoration: underline;
	}
}

/* SP */
@media screen and (max-width: 767px) {
  body{
    background: url("../images/home/main01.png") center top repeat-y;
    background-attachment: fixed;
    background-size: cover;
  }
	html {
		font-size: 2.56vw;
	}
	.pc {
		display: none!important;
	}
}

/*==================================================

ヘッダー

==================================================*/
/* レイアウト
--------------------------------------------------*/
.l-header{
  background-color: #fff;
	width: 100%;
	position:fixed;
	top: 0;
	left: 0;
	z-index: 100;
}
.l-header__logo img{
  width: 100%;
}
.l-header__language-wrapper{
  position: absolute;
  z-index: 10;
}
.l-header__language{
  width: fit-content;
  background-image: url("../images/shared/lang-icon.webp"),url("../images/shared/lang-arrow.webp");
  background-repeat: no-repeat,no-repeat;
  background-color: #fff;
  font-family: var(--font-sans-serif);
  font-weight: bold;
  z-index: 10;
  border: 1px #999 solid;
  position: absolute;
}

/* カスタムドロップダウン */
.custom-select {
    position: relative;
    width: fit-content;
    font-family: var(--font-sans-serif);
    font-weight: bold;
    cursor: pointer;
}

.custom-select__trigger {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background-color: #fff;
    background-image: url("../images/shared/lang-icon.webp");
    background-repeat: no-repeat;
    border: 1px #999 solid;
    padding: 0.2rem 3rem 0.2rem 3rem;
    border-radius: 0.5rem;
    user-select: none;
    transition: all 0.3s ease;
    white-space: nowrap;
    position: relative;
}

.custom-select__text {
    display: inline-block;
}

.custom-select__arrow {
    display: inline-block;
    width: 0;
    height: 0;
    margin-left: 0.5rem;
}

.custom-select__trigger::after {
    content: "";
    position: absolute;
    background-image: url("../images/shared/lang-arrow.webp");
    background-repeat: no-repeat;
    background-position: center;
    transition: transform 0.3s ease;
}

.custom-select.-open .custom-select__trigger {
    border-radius: 0.5rem 0.5rem 0 0;
}

.custom-select.-open .custom-select__trigger::after {
    transform: rotate(180deg);
}

.custom-select__dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    min-width: 100%;
    width: max-content;
    background-color: #fff;
    border: 1px #999 solid;
    border-top: none;
    border-radius: 0 0 0.5rem 0.5rem;
    margin: 0;
    padding: 0;
    list-style: none;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1000;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    max-height: 0;
    overflow: hidden;
}

.custom-select.-open .custom-select__dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    max-height: 500px;
}

.custom-select__option {
    padding: 0.8rem 2.3rem;
    cursor: pointer;
    transition: background-color 0.2s ease;
    font-size: inherit;
    font-weight: normal;
    white-space: nowrap;
}

.custom-select__option:hover {
    background-color: #f5f5f5;
}

.custom-select__option.-selected {
    background-color: #e8e8e8;
    font-weight: bold;
}

/* PC */
@media print,only screen and (min-width: 768px){
	.l-header{
    height: 8.2rem;
	}
	.l-header__logo{
		width: 20rem;
		position:absolute;
		top:2.2rem;
		left:2.6rem;
	}
  .l-header__language-wrapper{
    top: 2.8rem;
    right: 28.5rem;
  }
  .l-header__language{
    background-size: 1.3rem auto,0.8rem auto;
    background-position: 0.7rem center,right 0.7rem center;
    border-radius: 0.5rem;
    font-size: 1.2rem;
    padding: 0.2rem 2rem 0.2rem 2.3rem;
    top: 2.8rem;
    right: 28.5rem;
  }
  .custom-select__trigger {
    background-size: 1.3rem auto;
    background-position: 0.7rem center;
    font-size: 1.2rem;
    padding: 0.2rem 3rem 0.2rem 3rem;
  }
  .custom-select__trigger::after {
    width: 0.8rem;
    height: 100%;
    right: 0.7rem;
    background-size: 0.8rem auto;
  }
  .custom-select__option {
    font-size: 1.2rem;
    padding: 0.8rem 2.3rem;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .l-header__language-wrapper{
    position: fixed;
    top: 2.1rem;
    right: 7rem;
  }
  .l-header__language{
    background-size: 1rem auto,0.8rem auto;
    background-position: 0.5rem center,right 0.6rem center;
    border-radius: 0.6rem;
    font-size: 1.2rem;
    padding: 0 1rem 0 1.8rem;
    position: fixed;
    top: 2.1rem;
    right: 7rem;
  }
  .custom-select__trigger {
    background-size: 1rem auto;
    background-position: 0.5rem center;
    border-radius: 0.6rem;
    font-size: 1.2rem;
    padding: 0.3rem 3.4rem 0.3rem 4.4rem;
  }
  .custom-select.-open .custom-select__trigger {
    border-radius: 0.6rem 0.6rem 0 0;
  }
  .custom-select__dropdown {
    border-radius: 0 0 0.6rem 0.6rem;
  }
  .custom-select__trigger::after {
    width: 0.8rem;
    height: 100%;
    right: 0.6rem;
    background-size: 0.8rem auto;
  }
  .custom-select__option {
    font-size: 1.2rem;
    padding: 0.5rem 2.6rem 0.5rem 3.5rem;
  }
	.l-header{
		height: 6.2rem;
	}
	.l-header__logo{
		width: 16.4rem;
		position:absolute;
		top:1.4rem;
		left:1.9rem;
	}
}

/* グローバルナビ
--------------------------------------------------*/
.nav-global li a{
  color: #222;
  font-family: var(--font-english);
  font-size: 1.8rem;
 }
/* PC */
@media print,only screen and (min-width: 768px){
	.nav-global{
		display: flex;
		justify-content: flex-end;
    align-items: center;
	}
	.nav-global li a{
    font-weight: 500;
		padding:2.7rem 1.5rem;
		display: flex;
    align-items: center;
    opacity: 1;
    transition: opacity .3s ease;
	 }
	.nav-global li a:hover{
    opacity: 0.6;
    text-decoration: none;
	 }
}

/* SP */
@media screen and (max-width: 767px){
	.nav-global{
    background-color: #FAFAFA;
	}
	.nav-global li{
    text-align: center;
    border-bottom: 2px #fff solid;
	}
	.nav-global a{
    font-weight: 600;
		padding: 1.8rem 1rem;
    display: block;
	}
}

/* ハンバーガー
--------------------------------------------------*/

/* PC */
@media print,only screen and (min-width: 768px){
	.m-hamburger{
	  display:none;
	}
	.l-header__menus{
    display: block!important;
	}
}

/* SP */
@media screen and (max-width: 767px){
	.l-header__menus{
		overflow-y: scroll;
		-webkit-overflow-scrolling: touch;
		height: calc( 100vh - ヘッダーのたかさvw );
    position: absolute;
    top: 6.2rem;
    left: 0;
    right: 0;
    display: none;
	}
	.m-hamburger{
		width: 6.2rem;
		height: 6.2rem;
		position: absolute;
		top: 0;
		right: 0;
		cursor: pointer;
		z-index: 100;
	}
	.m-hamburger__lines{
		height: 40%;
		width:51.62%;
		margin: 18% auto -3.5% auto;
		position: relative;
	}
	.m-hamburger__lines>div{
		background-color: #222;
		width:100%;
		height:2px;
		transition: transform .3s ease, opacity .3s ease;
		position: absolute;
		left:0;
		top:50%;
	}
	.m-hamburger__lines>div:first-child{
		transform: translateY(-220%);
	}
	.m-hamburger__lines>div:last-child{
		transform: translateY(220%);
	}
	.menu-open .m-hamburger__lines>div:first-child{
		transform: rotate(200deg);
	}
	.menu-open .m-hamburger__lines>div:last-child{
		transform: rotate(-200deg);
	}
	.m-hamburger__text{
		width:100%;
		margin: 0 auto;
    font-family: var(--font-english);
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
	}
	.m-hamburger__text:before{
		content: "Menu";
	}
	.menu-open .m-hamburger__text:before{
	}
}

/*==================================================

フッター

==================================================*/

/* フッター1
--------------------------------------------------*/
.l-footer a{
	text-decoration: none;
	display: block;
}
.l-footer01{
  background-color: #fff;
  text-align: center;
  position: relative;
}
.nav-footer{
  display: flex;
  flex-wrap: wrap;
}
.nav-footer__itemIn{
  color: #222;
  font-family: var(--font-english);
  font-size: 1.6rem;
  font-weight: 500;
  display: block;
}

/* PC */
@media print,only screen and (min-width: 768px){
	.l-footer01{
		padding:0 3rem 0;
	}
  .nav-footer{
    justify-content: center;
    gap:1rem 2rem;
  }
  .nav-footer__itemIn{
    padding: 1.2rem 3rem;
    opacity: 1;
    transition: opacity .3s ease;
  }
  .nav-footer__itemIn:hover{
    opacity: 0.6;
    text-decoration: none;
  }
}

/* SP */
@media screen and (max-width: 767px){
	.l-footer01{
		padding:1rem 3rem;
	}
  .nav-footer{
    justify-content: center;
  }
  .nav-footer__item{
    width: 50%;
    display: flex;
    justify-content: center;
  }
  .nav-footer__itemIn{
    width: 100%;
    padding: 1.2rem 1rem;
    display: block;
  }
}

/* フッター2
--------------------------------------------------*/
.l-footer02{
  background-color: #FAFAFA;
  text-align: center;
  position: relative;
}
.l-footer__logo img{
  width: 100%;
}
.l-footer__copy{
  font-size: 1.2rem;
}
.l-footer__logos{
  display: flex;
  justify-content: center;
  align-items: center;
}

/* PC */
@media print,only screen and (min-width: 768px){
	.l-footer02{
		padding:5rem 3rem 2rem 3rem;
	}
  .l-footer__logos{
    gap: 0 3.9rem;
    margin: 0 auto 4.5rem auto;
	}
  .l-footer__logos li:first-child{
    width: 23rem;
	}
  .l-footer__logos li:last-child{
    width: 24rem;
	}
}

/* SP */
@media screen and (max-width: 767px){
	.l-footer02{
		padding:4.9rem 3rem 2rem 3rem;
	}
  .l-footer__logos{
    gap: 0 2.5rem;
    margin: 0 auto 4.5rem auto;
	}
  .l-footer__logos li:first-child{
    width: 34.7rem;
	}
  .l-footer__logos li:last-child{
    width: 30rem;
	}
}

/*==================================================

トップページ

==================================================*/
/* メインイントロ
--------------------------------------------------*/
/* PC */
@media print,only screen and (min-width: 768px){
  .home-mainIntro{
    background: url("../images/home/main01.png") top center no-repeat;
    background-attachment: fixed;
    background-size: cover;
    background-color: rgba(0,0,0,0.1);
  }
}

/* SP */
@media screen and (max-width: 767px){
  .home-mainIntro{
    background: url("../images/home/main01.png") top center repeat-y;
    background-attachment: fixed;
    background-size: cover;
  }
}
  .home-mainIntro:after{
    content: "";
    position: absolute;
    inset:0;
  background-color: rgba(0,0,0,0.1);

  }
.home-mainIntro{
  position: relative;
}
.home-mainIntro:after{
  content: "";
  background: linear-gradient(180deg,rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0) 100%);
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
}

/* メイン
--------------------------------------------------*/
.home-main img{
  width: 100%;
}
.home-main{
  height: 100vh;
  position: relative;
}
.home-main__logo{
  height: fit-content;
  position: absolute;
  right: 0;
  left: 0;
  top: 0;
  bottom: 0;
  margin: auto auto;
  z-index: 10;
}
.home-main__movie{
  position: absolute;
  z-index: 10;
}
.home-main__slide{
  position: fixed!important;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: none;
}
.home-main__slideItem{
  height: 100vh;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.home-main__slide img{
  height: 100vh;
  object-fit: cover;
  border: 1px #333 solid;
  transform: scale(1);
}

@keyframes zoomIn {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}

.home-main__slideItem.zoom-active img {
  animation: zoomIn 6s linear forwards;
}


/* PC */
@media print,only screen and (min-width: 768px){
	.home-main{
		min-height: 100rem;
	}
  .home-main__logo{
    width: 90%;
    max-width: 100rem;
  }
  .home-main__movie{
    max-width: 45.3rem;
    right: 5.2rem;
    bottom: 5.2rem;
  }
}

/* SP */
@media screen and (max-width: 767px){
	.home-main{
		min-height: 65rem;
	}
  .home-main__logo{
    width: 33rem;
  }
  .home-main__movie{
    max-width: 22rem;
    right: 2rem;
    bottom: 2.5rem;
  }
}

/* イントロ
--------------------------------------------------*/
.home-intro{
  position: relative;
  color: #fff;
}
.home-intro__texts{
  height: fit-content;
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  top: 0;
  margin: auto auto;
  text-align: center;
  z-index: 10;
}
.home-intro__text01{
  font-weight: 900;
}
.home-intro__text02{
  font-weight: 500;
  letter-spacing: .03em;
}

/* PC */
@media print,only screen and (min-width: 768px){
  .home-intro{
    height: 120rem;
  }
  .home-intro:after{
    height: 27rem;
  }
  .home-intro__text01{
    font-size: 5rem;
    line-height: 1.8;
    letter-spacing: .04em;
    margin-bottom: 3.5rem;
  }
  .home-intro__text02{
    font-size: 2.8rem;
    line-height: 2.07;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .home-intro{
    height: 103rem;
  }
  .home-intro:after{
    height: 26rem;
  }
  .home-intro__text01{
    font-size: 3rem;
    line-height: 1.7;
    letter-spacing: .03em;
    margin-bottom: 2rem;
  }
  .home-intro__text02{
    font-size: 1.6rem;
    line-height: 2;
  }
}

/* 見出し1
--------------------------------------------------*/
.home-title01{
  position: relative;
}
.home-title01__english{
  font-family: var(--font-english);
  font-weight: bold;
  display: block;
}
.home-title01__japanese{
  font-weight: 900;
  display: block;
  line-height: 1.3;
}

/* PC */
@media print,only screen and (min-width: 768px){
  .home-title01__english{
    font-size: 2.5rem;
  }
  .home-title01__japanese{
    font-size: 5.6rem;
  }

  .page-ko .home-title01__japanese{
    font-size: 5.3rem;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .home-title01__english{
    font-size: 2rem;
  }
  .home-title01__japanese{
    font-size: 3.4rem;
  }
}

/* 見出し2
--------------------------------------------------*/
.home-title02{
  color: #fff;
  font-family: var(--font-english);
  font-weight: bold;
}

/* PC */
@media print,only screen and (min-width: 768px){
  .home-title02{
    font-size: 9rem;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .home-title02{
    font-size: 6rem;
  }
}

/* About us
--------------------------------------------------*/
.home-about img{
  width: 100%;
}
.home-about{
  background-color: #fff;
}

.home-about__inner{
  font-size: 2rem;
  font-weight: 500;
  line-height: 2.1;
}

/* PC */
@media print,only screen and (min-width: 768px){
  .home-about{
    padding: 0 10rem;
    overflow-x: hidden;
  }
  .home-about__inner{
    max-width: 110rem;
    margin: 0 auto;
    position: relative;
    padding: 9.7rem 0 54.5rem 0;
  }
  .home-about .home-title01{
    position: relative;
    z-index: 10;
    text-shadow: 0 0 2rem rgba(255,255,255,1);
  }
  .home-about__text01{
    margin: 4.5rem 0 1.3rem 0;
    position: relative;
    z-index: 10;
    text-shadow: 0 0 2rem rgba(255,255,255,1);
  }
  .home-about__text02{
    position: relative;
    z-index: 10;
    text-shadow: 0 0 2rem rgba(255,255,255,1);
  }
  .home-about__image01,
  .home-about__image02,
  .home-about__image03{
    position: absolute;
  }
  .home-about__image01{
    width: 31rem;
    top: 11.5rem;
    right: -11rem;
  }
  .home-about__image02{
/*
    width: 78.4rem;
    bottom: 7.6rem;
    right: 0;
*/
  }
  .home-about__image03{
    max-width: 122rem;
    bottom: 8rem;
    left: -12rem;
  }
}

@media (min-width: 768px) and (max-width: 1250px) {
  .home-about__image03{
    width: calc( 100% + 19rem );
    bottom: 10rem;
    left: -12rem;
    right: -10rem;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .home-about{
    position: relative;
    padding: 11.5rem 3rem 5rem 3rem;
  }
  .home-about__text01{
    margin: 5rem 0 3.7rem 0;
  }
  .home-about__image01{
    position: absolute;
    width: 25rem;
    top: -5.6rem;
    right: 0;
  }
  .home-about__image02{
  }
  .home-about__image03{
    margin: -1.8rem -3rem 0 -3rem;
  }
}

/* Member
--------------------------------------------------*/
.home-member img{
  width: 100%;
}
.home-member{
  position: relative;
}
.home-member__inner{
  position: relative;
}
.home-member:before{
  background-color: rgba(0,0,0,0.1);
  position: absolute;
  inset:0;
  display: block;
  color: #fff;
}
.home-member .home-title01{
  color: #fff;
}
body.page-en .home-member,
body.page-ko .home-member,
body.page-zh-hant .home-member,
body.page-zh-hans .home-member{
	font-family: var(--font-english);
}

.home-member__item02{
  backdrop-filter: blur(1rem);
  background: rgba(0,0,0,0.2);
  color: #fff;
}
.home-member__texts01{
  width: fit-content;
  backdrop-filter: blur(1rem);
  background: rgba(0,0,0,0.2);
  box-sizing: border-box;
  color: #fff;
}
.home-member__position{
  font-weight: 500;
  line-height: 1.3;
}
.home-member__name{
  line-height: 1.3125;
  font-weight: bold;
}

/* PC */
@media print,only screen and (min-width: 768px){
  .home-member{
    background: url("../images/home/main01.png") center top repeat-y;
    background-attachment: fixed;
    background-size: cover;
  }
  .home-member{
    padding: 14rem 3rem 14.6rem 3rem;
  }
  .home-member__inner{
    max-width: 110rem;
    margin: 0 auto;
  }
  .home-member__items01{
    display: flex;
    justify-content: space-between;
    gap:0 4rem;
    margin-top: 9.2rem;
  }
  .home-member__item01{
    width: calc( ( 100% / 3 ) - 2.666rem );
    position: relative;
    margin-bottom: 13rem;
  }
  .home-member__item02{
    max-width: 65rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 auto;
    padding: 1.5rem;
  }
  .home-member__texts01{
    max-width: 23rem;
    width: 95%;
    padding: 3.4rem 3rem 3.3rem 3.1rem;
    margin: -2rem 0 0 auto;
    box-sizing: border-box;
  }
  .home-member__texts02{
    width: 47%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .home-member__image{
    width: calc( 100% - 3rem );
  }
  .home-member__item02 .home-member__image{
    width: 50.4%;
  }
  .home-member__position{
    font-size: 1.6rem;
    margin-bottom: 0.6rem;
  }
  .home-member__item01:nth-child(3) .home-member__texts01{
    padding: 2.8rem 3rem 1.7rem 3.5rem;
  }
  .home-member__name{
    font-size: 3.2rem;
  }
}

@media (min-width: 768px) and (max-width: 885px) {
  .home-member{
    background-attachment: fixed;
  }
  .home-member__items01 .home-member__position{
    font-size: 1.5rem;
  }

  .home-member__items01 .home-member__name{
    font-size: 2.9rem;
  }
  .home-member__texts01{
    padding: 3.4rem 2rem 3.3rem 2rem;
  }
  .home-member__item01:nth-child(3) .home-member__texts01{
    padding: 2.8rem 2rem 1.7rem 2rem;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .home-member{
    background: url("../images/home/main01.png") center top repeat-y;
    background-size: cover;
    padding: 10.5rem 3rem 10rem 3rem;
  }
  .home-member__items01{
    margin-top: 5rem;
  }
  .home-member__item01{
    margin-bottom: 6rem;
  }
  .home-member__item02{
    padding: 2rem;
  }
  .home-member__texts01{
    padding: 3rem 2.8rem;
    margin: -6rem 0 0 auto;
    box-sizing: border-box;
  }
  .home-member__texts02{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    white-space: nowrap;
    gap:0 2rem;
    margin-top: 2rem;
  }
  .home-member__image{
    width: 26rem;
  }
  .home-member__item01:nth-child(even) .home-member__image{
    margin-left: auto;
  }
  .home-member__item01:nth-child(even) .home-member__texts01{
    margin: -6rem auto 0 0;
  }
  .home-member__item02 .home-member__image{
    width: 100%;
  }
  .home-member__position{
    font-size: 1.4rem;
    margin-bottom: 0.3rem;
  }
  .home-member__item02 .home-member__position{
    margin:0.2rem 0 0 0;
  }
  .home-member__name{
    font-size: 2.8rem;
  }
}

/* Product
--------------------------------------------------*/
.home-product img{
  width: 100%;
}
.home-product{
  overflow-x: hidden;
  position: relative;
}
.home-product:before{
  content: "";
  backdrop-filter: blur(1rem);
  background: rgba(0,0,0,0.7);
  position: absolute;
  inset:0;
  display: block;
}
.home-product .home-title01{
  color: #fff;
}
.home-title01__parentheses01,
.home-title01__parentheses02{
  position: relative;
}
.home-title01__parentheses01{
  padding-left: 0.45em;
}
.home-title01__parentheses02{
  padding-right: 0.45em;
  margin-right: 2.5rem;
}
.home-title01__parentheses01:before{
  content: "「";
  position: absolute;
  top: 0;
  left: -0.55em;
}
.home-title01__parentheses02:after{
  content: "」";
  position: absolute;
  top: 0;
  right: -0.55em;
}
.home-product__title{
  color: #fff;
  font-weight: 500;
}
.home-product__linkItem{
  background-color: #fff;
  border-radius: 10rem;
  display: block;
  color: #222;
  font-weight: bold;
  text-align: center;
}
.home-product .slick-arrow{
  border: none;
  position: absolute;
  top: 0;
  margin: auto 0;
  background: url("../images/home/arrow.svg") center center no-repeat;
  background-size: 100% auto;
  text-indent: -9999px;
  cursor: pointer;
}
.home-product .slick-prev{
  transform: rotate(180deg);
}
.home-product .slick-dots{
  display: flex;
  justify-content: center;
}
.home-product .slick-dots li{
  border: 1px #fff solid;
  text-indent: -9999px;
  cursor: pointer;
}
.home-product .slick-dots .slick-active{
  background-color: #fff;
}

/* PC */
@media print,only screen and (min-width: 768px){
  .home-product{
    background: url("../images/home/main01.png") center top repeat-y;
    background-attachment: fixed;
    background-size: cover;
    padding: 10rem 10rem;
  }
  .home-product__inner{
    max-width: 110rem;
    margin: 0 auto;
  }
  .home-product__slide{
    margin-top: 5.7rem;
  }
  .home-product__image{
    margin-bottom: 2rem;
  }
  .home-product__titleLink{
    display: flex;
    justify-content: space-between;
  }
  .home-product__title{
    width: calc( 100% - 19rem );
    font-size: 2.8rem;
  }
  .home-product__link{
    width: 18rem;
  }
  .home-product__linkItem{
    opacity: 1;
    transition: opacity .3s ease;
    border-radius: 10rem;
    padding: 0.8rem 1rem;
    font-size: 1.8rem;
  }
  .home-product__linkItem:hover{
    opacity: 0.6;
    text-decoration: none;
  }
  .home-product .slick-arrow{
    width: 12rem;
    height: 12rem;
    top: 0;
    bottom: 12.5rem;
  }
  .home-product .slick-prev{
    left: -10.5rem;
  }
  .home-product .slick-next{
    right: -10.5rem;
  }
  .home-product .slick-dots{
    gap:0 1.5rem;
    margin-top: 4rem;
  }
  .home-product .slick-dots li{
    width: 30%;
    max-width: 10rem;
    height: 1.5rem;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .home-product{
    background: url("../images/home/main01.png") center top repeat-y;
    background-attachment: fixed;
    background-size: cover;
    padding: 10.5rem 3rem 10rem 3rem;
  }
  .home-product .home-title01__japanese{
  }
  .home-product__slide{
    margin: 5rem -3rem 0 -3rem;
  }
  .home-product__image{
    margin-bottom: 1rem;
  }
  .home-product__title{
    font-size: 1.8rem;
    margin-bottom: 1rem;
    text-align: center;
  }
  .home-product__link{
    width: 18rem;
    margin: 0 auto;
  }
  .home-product__linkItem{
    border-radius: 10rem;
    padding: 0.7rem 1rem;
    font-size: 1.8rem;
  }
  .home-product .slick-arrow{
    width: 5.5rem;
    height: 5.5rem;
    top: 9rem;
    z-index: 100;
  }
  .home-product .slick-prev{
    left: -0.3rem;
  }
  .home-product .slick-next{
    right: -0.3rem;
  }
  .home-product .slick-dots{
    gap:0 1.5rem;
    margin-top: 5rem;
  }
  .home-product .slick-dots li{
    width: 6rem;
    height: 1.5rem;
  }
}

/* News
--------------------------------------------------*/
.home-newsPress img{
  width: 100%;
}
.home-newsPress{
  position: relative;
}
.home-newsPress:before{
  content: "";
  position: absolute;
  inset:0;
  background-color: #0F10CC;
  backdrop-filter: blur(1rem);
  background: rgba(0,0,0,0.3);
}
.home-news__texts{
  background-color: #fff;
}
.home-news__itemIn{
  color: #222;
}
.home-news__time{
  font-family: var(--font-english);
  font-size: 1.6rem;
}
.home-news__text{
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.88;
}
.home-news__image img{
  width: 100%;
  object-fit: cover;
  aspect-ratio: 176 / 99;
}
.home-more__item{
  background-color: #000;
  transition: opacity .3s ease;
  border-radius: 10rem;
  color: #fff;
  font-size: 2rem;
  font-weight: bold;
  text-align: center;
  display: block;
}

/* PC */
@media print,only screen and (min-width: 768px){
  .home-newsPress{
    background: url("../images/home/main01.png") center top repeat-y;
    background-attachment: fixed;
    background-size: cover;
    padding: 11rem 3rem 20rem 3rem;
  }
  .home-newsPress__inner{
    max-width: 110rem;
    margin: 0 auto;
  }
  .home-news{
    margin-bottom: 8.8rem;
  }
  .home-news__items{
    display: flex;
    justify-content: space-between;
    gap:0 2.2rem;
    margin:1.7rem 0 5rem 0;
  }
  .home-news__item{
    width: calc( ( 100% / 3 ) - 1.4666rem );
  }
  .home-news__image{
    overflow: hidden;
    transition: transform .3s ease;
    aspect-ratio: 176 / 99;
  }
  .home-news__image img{
    transition: transform .3s ease;
  }
  .home-news__texts{
    padding: 1.6rem 2rem 1.5rem 2rem;
  }
  .home-news__itemIn:hover{
    text-decoration: none;
  }
  .home-news__text{
    margin-top: 0.5rem;
  }
  .home-news__date,
  .home-news__text{
    opacity: 1;
    transition: opacity .3s ease;
  }
  .home-news__itemIn:hover .home-news__date,
  .home-news__itemIn:hover .home-news__text{
    opacity: 0.6;
  }
  .home-news__itemIn:hover .home-news__image img{
    transform: scale(1.1);
  }
  .home-more{
    width: 24.6rem;
    margin-left: auto;
  }
  .home-more__item{
    opacity: 1;
    transition: opacity .3s ease;
    padding: 1.3rem 1rem;
  }
  .home-more__item:hover{
    opacity: 0.6;
    text-decoration: none;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .home-newsPress{
    background: url("../images/home/main01.png") center top repeat-y;
    background-attachment: fixed;
    background-size: cover;
    overflow-x: hidden;
    padding: 11.5rem 0 10.5rem 0;
  }
  .home-newsPress .home-title02{
    margin: 0 3rem 3rem 3rem;
  }
  .home-news{
    margin-bottom: 10.5rem;
  }
  .home-news__items{
    margin:1.7rem 0 5rem 0;
  }
  .home-news__item{
    margin: 0 3rem;
  }
  .home-news__texts{
    padding: 1.6rem 2rem 1.5rem 2rem;
  }
  .home-news__text{
    margin-top: 0.5rem;
  }
  .home-more{
    width: 24.6rem;
    margin:0 auto;
  }
  .home-more__item{
    padding: 1.3rem 1rem;
  }
  .home-news__items .slick-arrow{
    border: none;
    position: absolute;
    top: 0;
    margin: auto 0;
    background: url("../images/home/arrow.svg") center center no-repeat;
    background-size: 100% auto;
    text-indent: -9999px;
    width: 5.5rem;
    height: 5.5rem;
    top: 15.5rem;
    z-index: 100;
  }
  .home-news__items .slick-prev{
    transform: rotate(180deg);
    left: -0.4rem;
  }
  .home-news__items .slick-next{
    right: -0.4rem;
  }
}

/* Press kit
--------------------------------------------------*/
.home-press__item{
  color: #fff;
}
.home-press__title{
  font-weight: bold;
}
.home-press__text{
  line-height: 1.8;
}
.home-press__image img{
  width: 100%;
  object-fit: cover;
  aspect-ratio: 16 / 9;
}
.home-press__downloadItem{
  background-color: #fff;
  border-radius: 10rem;
  color: #222;
  font-size: 1.8rem;
  display: block;
  text-align: center;
  border: 1px #222 solid;
}
.home-press__downloadItem:after{
  content: "";
  background: url("../images/home/download.svg") center center no-repeat;
  background-size: 100% auto;
  display: inline-block;
}

/* PC */
@media print,only screen and (min-width: 768px){
  .home-press__items{
    display: flex;
    justify-content: space-between;
    gap:0 7.6rem;
    margin: 1.8rem 0 5rem 0;
  }
  .home-press__item{
    width: calc( 50% - 3.8rem );
  }
  .home-press__title{
  font-size: 2.5rem;
    margin: 2rem 0 1rem 0;
  }
  .home-press__text{
  font-size: 2rem;
    margin-bottom: 2.6rem;
  }
  .home-press__downloadItem{
    opacity: 1;
    transition: opacity .3s ease;
    padding: 0.6rem 1rem;
  }
  .home-press__downloadItem:after{
    width: 1.6rem;
    height: 1.6rem;
    margin-left: 1.5rem;
  }
  .home-press__downloadItem:hover{
    opacity: 0.6;
    text-decoration: none;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .home-press__items{
    margin: 1.8rem 0 5rem 0;
  }
  .home-press__item{
    margin: 0 3rem;
  }
  .home-press__items .slick-arrow{
    border: none;
    position: absolute;
    top: 0;
    margin: auto 0;
    background: url("../images/home/arrow.svg") center center no-repeat;
    background-size: 100% auto;
    text-indent: -9999px;
    width: 5.5rem;
    height: 5.5rem;
    top: 19.5rem;
    z-index: 100;
  }
  .home-press__items .slick-prev{
    transform: rotate(180deg);
    left: -0.3rem;
  }
  .home-press__items .slick-next{
    right: -0.3rem;
  }
  .home-press__title{
    font-size: 2.2rem;
    margin: 2rem 0 1rem 0;
  }
  .home-press__text{
    font-size: 1.8rem;
    margin-bottom: 2.6rem;
  }
  .home-press__downloadItem{
    padding: 0.6rem 1rem;
  }
  .home-press__downloadItem:after{
    width: 1.6rem;
    height: 1.6rem;
    margin-left: 1.5rem;
  }
}

/*==================================================

ニュース

==================================================*/
/* タイトル
--------------------------------------------------*/
.l-pageTitle{
  color: #fff;
  font-weight: 600;
  font-family: var(--font-english);
}
/* PC */
@media print,only screen and (min-width: 768px){
  .l-pageTitle{
    max-width: 110rem;
    font-size: 9rem;
    padding: 6.5rem 3rem 5rem 3rem;
    margin: 8.2rem auto 0 auto;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .l-pageTitle{
    font-size: 6rem;
    padding: 5.5rem 3rem 2.6rem 3rem;
    margin-top: 6.2rem;
  }
}

/* 一覧
--------------------------------------------------*/
.l-main{
  backdrop-filter: blur(1rem);
  background: rgba(255,255,255,0.7);
}
.news-items{
  display: flex;
  flex-wrap: wrap;
}
.news-items img{
  width: 100%;
}
.news-item__image img{
  width: 100%;
  object-fit: cover;
  aspect-ratio: 175 / 99;
}
.news-item__texts{
  background-color: #fff;
}
.news-itemIn{
  color: #222;
}
.news-item__time{
  font-family: var(--font-english);
  font-size: 1.6rem;
  font-weight: 500;
}
.news-item__text{
  font-size: 1.8rem;
  font-weight: bold;
  line-height: 1.88;
}
.m-pagenavi{
  display: flex;
  justify-content: center;
  align-items: center;
}
.m-pagenavi a,
.m-pagenavi span{
  background-color: #fff;
  background-color: rgba(255,255,255,0.4);
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  color: #222;
  font-weight: bold;
  position: relative;
}

/* PC */
@media print,only screen and (min-width: 768px){
  .l-main{
    padding: 16rem 3rem 13rem 3rem;
  }
  .l-main.-detail{
    margin-top: 8.2rem;
  }
  .l-main__inner{
    max-width: 110rem;
    margin: 0 auto;
  }
  .news-items{
    gap:6rem 2.2rem;
    margin:-6rem 0 3rem 0;
  }
  .news-item{
    width: calc( ( 100% / 3 ) - 1.4666rem );
  }
  .news-item__texts{
    padding: 1.6rem 2rem 1.5rem 2rem;
  }
  .news-itemIn:hover{
    text-decoration: none;
  }
  .news-item__text{
    margin-top: 0.5rem;
  }
  .news-item__image{
    overflow: hidden;
    aspect-ratio: 175 / 99;
  }
  .news-item__image img{
    transition: transform .3s ease;
  }
  .news-item__date,
  .news-item__text{
    transition: opacity .3s ease;
  }
  .news-itemIn:hover .news-item__date,
  .news-itemIn:hover .news-item__text{
    opacity: 0.6;
  }
  .news-itemIn:hover .news-item__image img{
    transform: scale(1.1);
  }
  .m-pagenavi{
    gap:0 1rem;
  }
  .m-pagenavi a,
  .m-pagenavi span{
    width: 5rem;
    height: 5rem;
    font-size: 2rem;
    transition: all .3s ease;
  }
  .m-pagenavi a:hover,
  .m-pagenavi .current{
    background-color:#fff;
    text-decoration:none;
  }
  .m-pagenavi .prev,
  .m-pagenavi .next,
  .m-pagenavi .prev-stop,
  .m-pagenavi .next-stop{
    transition: opacity .3s ease;
  }
  .m-pagenavi .prev:hover,
  .m-pagenavi .next:hover,
  .m-pagenavi .prev-stop:hover,
  .m-pagenavi .next-stop:hover{
    opacity: 0.7;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .l-main{
    padding: 6rem 3rem 10rem 3rem;
  }
  .l-main.-detail{
    margin-top: 6.2rem;
  }
  .news-items{
    gap:3rem 1rem;
    margin:-1rem 0 4rem 0;
  }
  .news-item{
    width: calc( 50% - 0.5rem );
  }
  .news-item__texts{
    padding: 0.5rem 1.4rem 1.3rem 1.4rem;
  }
  .news-item__date,
  .news-item__text{
    font-size: 1.2rem;
  }
  .news-item__text{
  }
  .m-pagenavi{
    gap:0 0.7rem;
  }
  .m-pagenavi a,
  .m-pagenavi span{
    width: 3rem;
    height: 3rem;
    font-size: 1.2rem;
  }
  .m-pagenavi .current{
    background-color:#fff;
    text-decoration:none;
  }
}

/* 詳細
--------------------------------------------------*/
.newsDetail-dateTitle,
.newsDetail-body{
  background-color: #fff;
}
.newsDetail-date{
  font-family: var(--font-english);
  font-weight: 500;
  display: block;
}
.newsDetail-title{
  font-weight: 900;
  line-height: 1.5;
}
.newsDetail-title02{
  font-weight: 900;
  line-height: 1.5;
}
.newsDetail-title03{
  background-color: #8e8e8e;
  color: #fff;
  font-weight: 900;
  line-height: 1.5;
}
.newsDetail-text{
  font-weight: 500;
  line-height: 2;
}
.newsDetail-text a{
  color: #222;
  font-weight: 900;
  text-decoration: underline;
}
.newsDetail-images{
  display: flex;
  flex-wrap: wrap;
}
.newsDetail-list01 li,
.newsDetail-list02 li{
  position: relative;
  line-height: 2;
  padding-left: 1.3em;
  font-weight: bold;
}
.newsDetail-list01 li:before{
  content: "◇";
  position: absolute;
  top: 0;
  left: 0;
}
.newsDetail-list02{
  list-style: none;
  counter-reset: num;
}
.newsDetail-list02 li{
  counter-increment: num;
  position: relative;
}
.newsDetail-list02 li::before {
  content: counter(num);
  position: absolute;
  left: 0;
  width: 1.2em;
  height: 1.2em;
  border-radius: 50%;
  border: 1px #333 solid;
  text-align: center;
  line-height: 0.9;
  font-size: .9em;
  position: absolute;
  left: 0;
}
.newsDetail-body__inner > :last-child {
  margin-bottom: 0;
}
.m-nextprev{
	position: relative;
}
.m-nextprev a{
  color: #222;
}
.m-nextprev__prev a,
.m-nextprev__next a{
  font-family: var(--font-english);
  font-weight: 500;
	position: absolute;
	top: 0;
}
.m-nextprev__prev a{
	background:url("../images/news/prev.svg") left center no-repeat;
	text-align: left;
	left: 0;
}
.m-nextprev__next a{
	background:url("../images/news/next.svg") right center no-repeat;
	text-align: right;
	right: 0;
}
.m-nextprev__list{
  position: relative;
  margin: 0 auto;
}
.m-nextprev__list a{
  background-color: #222;
  border-radius: 10rem;
	display: flex;
  align-items: center;
  justify-content: center;
	color: #fff;
  font-weight: bold;
}

/* PC */
@media print,only screen and (min-width: 768px){
  .newsDetail-dateTitle,
  .newsDetail-body{
    padding: 7.7rem 4rem;
  }
  .newsDetail-dateTitle{
    margin-bottom: 0.5rem;
  }
  .newsDetail-body{
    margin-bottom: 6rem;
  }
  .newsDetail-dateTitle__inner,
  .newsDetail-body__inner{
    max-width: 91.2rem;
    margin: 0 auto;
  }
  .newsDetail-date{
    font-size: 2.2rem;
    margin-bottom: 2.5rem;
  }
  .newsDetail-title{
    font-size: 5.6rem;
  }
  .newsDetail-title02{
    font-size: 4rem;
    margin-bottom: 2.5rem;
  }
  .newsDetail-title03{
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
    border-radius: 1rem;
    padding: 1rem 2rem;
  }
  .newsDetail-text{
    font-size: 1.8rem;
    margin-bottom: 5.5rem;
  }
  .newsDetail-text a:hover{
    text-decoration: none;
  }
  .newsDetail-image{
    margin-bottom: 6rem;
  }
  .newsDetail-images{
    gap:1.6rem;
    margin-bottom: 6rem;
  }
  .newsDetail-images__item{
    width: calc( 50% - 0.8rem );
  }
  .newsDetail-list01{
    margin-bottom: 5rem;
  }
  .newsDetail-list01 li,
  .newsDetail-list02 li{
    font-size: 1.8rem;
  }
  .newsDetail-list02{
    margin-bottom: 5rem;
  }
  .newsDetail-list02 li::before {
    top: 0.65em;
  }
  .m-nextprev{
    min-height: 5.6rem;
  }
  .m-nextprev a{
    transition: opacity .3s ease;
  }
  .m-nextprev a:hover{
    text-decoration: none;
    opacity: 0.7;
  }
  .m-nextprev__prev a,
  .m-nextprev__next a{
    height: 5rem;
    font-size: 1.6rem;
  }
  .m-nextprev__prev a{
    background-size: 5rem auto;
    padding: 1.4rem 0 0 6.1rem;
  }
  .m-nextprev__next a{
    background-size: 5rem auto;
    padding: 1.4rem 6.1rem 0 0;
  }
  .m-nextprev__list{
    width: 24.6rem;
  }
  .m-nextprev__list a{
    height: 5.6rem;
    font-size: 2rem;
  }
}

/* SP */
@media screen and (max-width: 767px){
  .newsDetail-dateTitle,
  .newsDetail-body{
    padding: 3rem 2rem;
  }
  .newsDetail-dateTitle{
    margin-bottom: 0.3rem;
  }
  .newsDetail-body{
    margin-bottom: 3.5rem;
  }
  .newsDetail-date{
    font-size: 1.6rem;
    margin-bottom: 0.7rem;
  }
  .newsDetail-title{
    font-size: 3rem;
  }
  .newsDetail-title02{
    font-size: 2.4rem;
    margin-bottom: 2.5rem;
  }
  .newsDetail-title03{
    font-size: 1.8rem;
    margin-bottom: 2.5rem;
    border-radius: 0.5rem;
    padding: 1rem 2rem;
  }
  .newsDetail-text{
    font-size: 1.6rem;
    margin-bottom: 4rem;
  }
  .newsDetail-image{
    margin-bottom: 4rem;
  }
  .newsDetail-images{
    gap:1rem;
    margin-bottom: 4rem;
  }
  .newsDetail-images__item{
    width: calc( 50% - 0.5rem );
  }
  .newsDetail-list01{
    margin-bottom: 4rem;
  }
  .newsDetail-list01 li,
  .newsDetail-list02 li{
    font-size: 1.6rem;
  }
  .newsDetail-list02{
    margin-bottom: 4rem;
  }
  .newsDetail-list02 li::before {
    top: 0.65em;
  }
  .m-nextprev__prev a,
  .m-nextprev__next a{
    height: 5rem;
    font-size: 1.6rem;
  }
  .m-nextprev__prev a{
    background-size: 5rem auto;
    padding: 1.4rem 0 0 6.1rem;
  }
  .m-nextprev__next a{
    background-size: 5rem auto;
    padding: 1.4rem 6.1rem 0 0;
  }
  .m-nextprev__list{
    width: 24.6rem;
    padding-top: 8rem;
    margin: 8rem auto 0 auto;
  }
  .m-nextprev__list a{
    height: 5.6rem;
    font-size: 2rem;
  }
}
