@charset "UTF-8";
/* CSS Document */

/*============================================================================================
↓header=======================================================================================
============================================================================================*/
#header {
  position: relative;
  width: 100%;
  height: 150px;
  background-color: #fff;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 50px;
}
#header .header-left {
  display: flex;
  align-items: center;
}
#header .header-right {
  display: flex;
  align-items: center;
}
#header #select-lang {
  /*リセット*/
  -webkit-appearance: none;
  appearance: none;
  /*リセット*/
  font-size: 1.2rem;
  line-height: 1;
  color: #000;
  border: solid 1px #ccc;
  background-color: #fff;
  padding: 7px 30px 7px 7px;
  background-image: url(../img/ico-select.svg);
  background-position: right 7px center;
  background-repeat: no-repeat;
  background-size: 16px 16px;
}
@media screen and (max-width: 768px) {
  #header {
    width: 100%;
    height: 56px;
    padding: 0 15px;
  }
  #header .header-left {
    column-gap: 15px;
  }
}

/* gnav============================*/
#gnav {
  
}
#gnav .gnavlist {
  display: flex;
  column-gap: 36px;
}
#gnav .gnavlist li {
}
#gnav .gnavlist li a {
  display: flex;
  flex-direction: column;
  align-items: center;
  row-gap: 4px;
  transition: opacity 0.4s ease-out;
}
#gnav .gnavlist li a .jp {
  color: #444;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 1.6em;
  font-weight: 500;
  line-height: normal;
  letter-spacing: 0.96px;
  position: relative;
}
#gnav .gnavlist li a .jp::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #444;
  opacity: 0;
  transition: opacity 0.4s ease-out;
}
#gnav .gnavlist li a .en {
  color: #9D9D9D;
  text-align: center;
  font-family: Roboto, sans-serif;
  font-size: 1.2em;
  font-weight: 400;
  line-height: normal;
  letter-spacing: 0.36px;
}
#gnav .gnavlist li a:hover .jp::after {
  opacity: 1;
}
#gnav .gnavlist li.hidden-pc {
  display: none;
}

@media screen and (max-width: 768px) {
  #gnav {
    background: #333;
    width: 100%;
    position: absolute;
    top: 56px;
    left: 0;
    z-index: 10000;
  }
  #gnav .gnavlist {
    flex-direction: column;
  }
  #gnav .gnavlist li a {
    border-bottom: 1px solid #434343;
    text-align: center;
    padding: 15px 10px;
    position: relative;
  }
  #gnav .gnavlist li a::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translate(0,-50%);
    width: 12px;
    height: 12px;
    background-image: url(../img/ico-next-wh.svg);
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
  }
  #gnav .gnavlist li a .jp {
    color: #fff;
    font-size: 1.4em;
  }
  #gnav .gnavlist li a .en {
    display: none;
  }
  #gnav .gnavlist li a .jp::after {
    content: none;
  }
  #gnav .gnavlist li.hidden-pc {
    display: block;
  }

  /*トグルメニューのアニメーション*/
  #gnav {
    visibility: hidden;
    clip-path: inset(0 -50vw 100%);
    transition: all 0.3s;
  }
  #header.open #gnav {
    visibility: visible;
    clip-path: inset(0 -50vw);
  }
}


/*============================================================================================
↓Mobile Toggle Button=========================================================================
============================================================================================*/
#nav-toggle {
  display: none;
  width: 34px;
  height: 34px;
  cursor: pointer;
  position: relative;
  z-index: 101;
}
#nav-toggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  width: 100%;
  height: 2px;
  display: block;
  background: #040404;
  transition: .35s ease-in-out;
}
#nav-toggle span:nth-child(1) {
  top: calc(50% - 8px);
}
#nav-toggle span:nth-child(2) {
  
}
#nav-toggle span:nth-child(3) {
  top: calc(50% + 8px);
}
@media screen and (max-width: 768px) {
  #nav-toggle {
    display: block;
  }
  /* #nav-toggle 切り替えアニメーション */
  #header.open #nav-toggle span:nth-child(1) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
  }
  #header.open #nav-toggle span:nth-child(2) {
    opacity: 0;
  }
  #header.open #nav-toggle span:nth-child(3) {
    top: 50%;
    transform: translate(-50%, -50%) rotate(-45deg);
  }
}


/*============================================================================================
↓footer======================================================================================
============================================================================================*/
#footer {
  color: #fff;
  background-color: #000;
  padding: 30px 0;
  margin-top: 100px;
}
#footer .footer-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px 30px;
  width: min(88.2%, 1104px);
	margin-inline: auto;
}
#footer .footer-left {
  display: flex;
  column-gap: 30px;
}
#footer .footer-left-menu {
  font-size: 1.3em;
  line-height: 1.2;
  column-count: 2;
  column-gap: 30px;
  flex-shrink: 0;
}
#footer .footer-left-menu li+li {
  margin-top: 10px;
}
#footer .footer-left-menu a {
  text-decoration: none;
}
#footer .footer-left-menu a:hover {
  text-decoration: underline;
}
#footer .footer-left-address {
  display: flex;
  flex-direction: column;
  row-gap: 8px;
  padding-left: 30px;
  border-left: solid 1px #888;
}
#footer .footer-left-address .siteID {
  max-width: 184px;
}
#footer .footer-left-address .add {
  font-size: 1.4em;
  line-height: 1.6em;
}
#footer .footer-left-address .tel {
  font-size: 1.8em;
  line-height: 1.6em;
  letter-spacing: 0.1em;
}
#footer .footer-right {
  display: flex;
  column-gap: 17px;

}
#footer .footer-bnr {
  font-size: 1.2em;
  line-height: 1.6em;
  text-align: center;
}
#footer .footer-bnr a {
  display: flex;
  row-gap: 5px;
  flex-direction: column;
}
#footer .footer-copy {
  text-align: center;
  margin-top: 36px;
}
@media screen and (max-width: 768px) {
  #footer .footer-wrap {
    align-items: center;
    flex-direction: column;
  }
  #footer .footer-left {
    flex-direction: column;
    row-gap: 20px;
  }
  #footer .footer-left-address {
    text-align: center;
    align-items: center;
    padding-left: revert;
    border-left: none;
  }
  #footer .footer-right {
    flex-direction: column-reverse;
    row-gap: 20px;
    align-items: center;
  }
}


/*============================================================================================
↓共通ボタン（グレー）===============================================================================
============================================================================================*/
.btn-moreInfo {
	text-decoration: none;
	display: inline-flex;
	padding: 20px 30px;
	justify-content: center;
	align-items: center;
	gap: 14px;
	background: #444;
	color: #fff;
	font-family: "Noto Serif JP";
	font-size: 1.6em;
	font-weight: 500;
	line-height: 175%;
  transition: opacity 0.4s ease-out;
}
.btn-moreInfo::after {
	content:"";
	width: 12px;
	height: 12px;
	background-image: url(../img/ico-next-wh.svg);
	background-repeat: no-repeat;
	background-position: center center;
	background-size: contain;
	flex-shrink: 0;
}
.btn-moreInfo:hover {
  opacity: 0.8;
}


/*============================================================================================
↓共通のページタイトル==============================================================================
============================================================================================*/
.pageHeadingGroup {
  width: min(88.2%, 1320px);
  margin-inline: auto;
  padding-block: 100px 60px;
}
.pageHeadingGroup.mgB-lg {
  padding-block: 100px 212px;
}
.pageHeadingGroup .pageHeadingGroup-ttl {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.pageHeadingGroup .pageHeadingGroup-ttl .jp {
  color: #444;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: clamp(3em,4vw,5em);
  font-style: normal;
  font-weight: 500;
  line-height: 1.4;
  letter-spacing: 3px;
  display: inline-flex;
  align-items: center;
  column-gap: 0.25em;
}
.pageHeadingGroup .pageHeadingGroup-ttl .jp .sub {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 60%;
  font-weight: 400;
}
.pageHeadingGroup .pageHeadingGroup-ttl .en {
    color: #9D9D9D;
    text-align: center;
    font-family: Roboto, sans-serif;
    font-size: clamp(1.4em,1.4vw,2em);
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.6px;
}
.pageHeadingGroup .pageHeadingGroup-lead {
    color: #444;
    text-align: center;
    font-family: "Noto Serif JP", serif;
    font-size: clamp(1.6em,2vw,2em);
    font-style: normal;
    font-weight: 500;
    line-height: 2;
    margin-top: 50px;
}
.pageHeadingGroup .pageHeadingGroup-lead p+p {
    margin-top: 1em;
}
@media screen and (max-width: 768px) {
  .pageHeadingGroup {
    padding-block: 60px;
  }
  .pageHeadingGroup.mgB-lg {
    padding-block: 100px;
  }
  .pageHeadingGroup .pageHeadingGroup-lead {
    text-align: left;
  }
}

/*============================================================================================
↓共通のページタイトル（背景画像あり）===================================================================
============================================================================================*/
.pageHeadingBg {
  position: relative;
  margin-inline: auto;
  width: min(100%, 1080px);
  min-height: 200px;
  margin-bottom: 40px;
}
.pageHeadingBg .pageHeadingBg-img {
  position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}
.pageHeadingBg .pageHeadingBg-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.pageHeadingBg .pageHeadingBg-ttl {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.pageHeadingBg .pageHeadingBg-ttl .jp {
  color: #fff;
  text-align: center;
  font-family: "Noto Serif JP", serif;
  font-size: 2.2em;
  font-style: normal;
  font-weight: 400;
  line-height: 1.4;
  letter-spacing: 3px;
  display: inline-flex;
  align-items: center;
  column-gap: 0.25em;
}
.pageHeadingBg .pageHeadingBg-ttl .en {
    color: #fff;
    text-align: center;
    font-family: Roboto, sans-serif;
    font-size: 1.1em;
    font-weight: 400;
    line-height: normal;
    letter-spacing: 0.6px;
}
@media screen and (max-width: 768px) {
.pageHeadingBg {
  min-height: 90px;
}
}

/*============================================================================================
↓共通のセクションタイトル============================================================================
============================================================================================*/
.section-ttl {
	display: flex;
	flex-direction: column;
	gap: 10px;
}
.section-ttl .section-ttl-jp {
	color: #444;
	font-family: "Noto Serif JP", serif;
  /*font-size: clamp(3em,5vw,3.6em);*/
  font-size: 36px;
	font-weight: 500;
	line-height: 1.2;
	letter-spacing: 2.16px;
}
.section-ttl .section-ttl-en {
	color: #9D9D9D;
	font-family: "Roboto", sans-serif;
  /*font-size: clamp(1.4em,2.5vw,1.8em);*/
  font-size: 18px;
	font-weight: 400;
	line-height: 1.2;
	letter-spacing: 0.54px;
}
@media screen and (max-width: 768px) {
.section-ttl .section-ttl-jp {
  font-size: 40px;
}
}


