@charset "utf-8";

/*
==============
base.css
==============
*/

/* -----------------
■ デフォルトリセット
------------------- */
article, aside, canvas, details, figcaption, figure, footer, header, hgroup, menu, nav, section, summary {
	display: block;
}
html, body, div, span, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, code, del, dfn, em, img, q, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
	border: 0 none;
	border-collapse: collapse;
	color: inherit;
	font-size: 100%;
	font-style: inherit;
	font-weight: inherit;
	list-style-type: none;
	margin: 0;
	padding: 0;
	table-layout: fixed;
	text-decoration: none;
	vertical-align: baseline;
}




/* -----------------
■ フォント
------------------- */
body {
	font-family: "Shippori Mincho", serif;
	-webkit-text-size-adjust: 100%;
}

.notoSerif {
  font-family: "Noto Serif JP", serif;
}

.notoSans {
  font-family: "Noto Sans JP", sans-serif;
}

.jost {
  font-family: "Jost", sans-serif;
}

.questrial {
  font-family: "Questrial", sans-serif;
}




/* -----------------
■ 全体
------------------- */
:root {
  --scrollbar: 0;
  --unit: 1px;
  --customW: 1;
}

html {
	font-size: 62.5%;
}

a {
	transition: opacity .4s;
}

a:hover {
	opacity: .6;
}

img {
	max-width: 100%;
	vertical-align: middle;
}

.js-fadein {
	opacity: 0;
	transition: opacity 1s ease, transform 1s;
  transform: translateY(30px);
}

.js-fadein.is-show {
	opacity: 1;
  transform: translateY(0px);
}


@media screen and (max-width: 767px)
{
	:root {
		--designWidth: 393;
	  --unit: 100vw;
	  --customW: var(--designWidth);
	}

	img {
		width: 100%;
	}


} /* media end */




/* -----------------
■ ヘッダー
------------------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
}

.header-inner {
  display: flex;
  justify-content: flex-end;
  max-width: 1280px;
  margin-inline: auto;
  padding: 38px 20px;
}

.gnav__list {
  display: flex;
  gap: 0 57px;
}

.gnav__list a {
  color: #fff;
  font-size: 1.5rem;
  line-height: 1.33;
  letter-spacing: 0.15em;
}


@media screen and (max-width: 767px)
{
  .header-inner {
    display: block;
    padding: 0;
  }


  /* top */
  .header__top {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: calc(24 / var(--customW) * var(--unit)) calc(15 / var(--customW) * var(--unit));
    z-index: 10;
  }

  .header__top-logo {
    width: calc(102 / var(--customW) * var(--unit));
  }

  .header__top-btn {
    position: relative;
  }

  .header__top-btn span {
    position: absolute;
    top: 50%;
    right: 0;
    width: calc(40 / var(--customW) * var(--unit));
    height: calc(40 / var(--customW) * var(--unit));
    transform: translateY(-50%);
  }

  .header__top-btn span::before,
  .header__top-btn span::after {
    content: "";
    position: absolute;
    left: 50%;
    width: calc(25 / var(--customW) * var(--unit));
    height: 1px;
    transition: transform .6s, top .6s;
    transform: translateX(-50%);
    transform-origin: left;
    background-color: #fff;
  }

  .header__top-btn span::before {
    top: calc(17 / var(--customW) * var(--unit));
  }

  .header__top-btn span::after {
    top: calc(28 / var(--customW) * var(--unit));
  }


  /* bottom */
  .header__bottom {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100dvh;
    opacity: 0;
    transform: translateX(100%);
    transition: opacity .6s, transform .6s;
    background-color: #1A1A1A;
    z-index: 2;
  }

  .gnav {
    padding-top: calc(212 / var(--customW) * var(--unit));
  }

  .gnav__list {
    display: block;
    width: calc(320 / var(--customW) * var(--unit));
    margin-inline: auto;
  }

  .gnav__list a {
    display: block;
    padding: calc(10 / var(--customW) * var(--unit)) 0;
    font-size: calc(15 / var(--customW) * var(--unit));
  }

  .header__brand {
    position: absolute;
    bottom: calc(100 / var(--customW) * var(--unit));
    left: calc(36 / var(--customW) * var(--unit));
    width: calc(320 / var(--customW) * var(--unit));
  }

  .header__brand-title {
    color: #fff;
    font-size: calc(15 / var(--customW) * var(--unit));
    line-height: 1.33;
    letter-spacing: 0.15em;
  }

  .header__brand-bnr {
    width: calc(66 / var(--customW) * var(--unit));
    margin-top: calc(35 / var(--customW) * var(--unit));
  }

  .header__copyright {
    position: absolute;
    bottom: calc(20 / var(--customW) * var(--unit));
    left: calc(36 / var(--customW) * var(--unit));
    width: calc(320 / var(--customW) * var(--unit));
    margin-top: calc(75 / var(--customW) * var(--unit));
    margin-inline: auto;
    color: #fff;
    font-size: calc(10 / var(--customW) * var(--unit));
    line-height: 1.3;
    text-align: center;
  }


  /* open */
  body.is-naviOpen .header__top-btn span::before {
    top: calc(20 / var(--customW) * var(--unit));
    transform: rotate(45deg) translateX(-50%);
  }

  body.is-naviOpen .header__top-btn span::after {
    top: calc(20 / var(--customW) * var(--unit));
    transform: rotate(-45deg) translateX(-50%);
  }

  body.is-naviOpen .header__bottom {
    opacity: 1;
    transform: translateX(0%);
  }


} /* media end */





/* -----------------
■ メニュー
------------------- */





@media screen and (max-width: 767px)
{

} /* media end */




/* -----------------
■ kv
------------------- */ 
.kv {
  position: relative;
}

.kv__slide {
  height: 100dvh;
  line-height: 0;
  font-size: 0;
}

.kv__slide img {
  width: 100%;
  height: 100dvh;
  object-fit: cover;
}

.kv__title {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.kv__logo {
  position: absolute;
  bottom: 167px;
  left: 50%;
  transform: translateX(-50%);
}


@media screen and (max-width: 767px)
{
  .kv__title {
    top: 47.8%;
  }

  .kv__title img {
    width: calc(202 / var(--customW) * var(--unit));
    max-width: none;
  }

  .kv__logo {
    bottom: calc(53 / var(--customW) * var(--unit));
  }

  .kv__logo img {
    width: calc(224 / var(--customW) * var(--unit));
    max-width: none;
  }


} /* media end */




/* -----------------
■ concept
------------------- */
.concept__main {
  position: relative;
}

.concept__main-img {
  height: 100dvh;
}

.concept__main-img img {
  width: 100%;
  height: 100dvh;
  object-fit: cover;
}

.concept__main-textBlock {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  color: #fff;
  text-align: center;
  transform: translateY(-50%);
}

.concept__main-title {
  font-size: 2.6rem;
  line-height: 1.26;
  transform: translateY(15px);
}

.concept__main-text {
  margin-top: 50px;
  font-size: 2.6rem;
  line-height: 1.5;
  letter-spacing: -0.02em;
}

.concept__main-text2 {
  margin-top: 14px;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: -0.02em;
}


/* box */
.concept__box {
  display: flex;
  background-color: #000;
}

.concept__box-left,
.concept__box-right {
  width: 50%;
}

.concept__box-left img {
  width: 100%;
  height: 100dvh;
  object-fit: cover;
}

.concept__box-right {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  box-sizing: border-box;
}

.concept__box-textBlock {
  color: #fff;
  text-align: center;
}

.concept__box-en {
  font-size: 2.6rem;
  line-height: 1.5;
}

.concept__box-ja {
  margin-top: 24px;
  font-size: 1.5rem;
  line-height: 1.6;
  letter-spacing: -0.02em;
}


@media screen and (max-width: 767px)
{
  .concept__main-title {
    font-size: calc(28 / var(--customW) * var(--unit));
    transform: translateY(calc(15 / var(--customW) * var(--unit)));
  }

  .concept__main-text {
    margin-top: calc(52 / var(--customW) * var(--unit));
    font-size: calc(20 / var(--customW) * var(--unit));
    line-height: 1.3;
    letter-spacing: -0.04em;
  }

  .concept__main-text2 {
    margin-top: calc(12 / var(--customW) * var(--unit));
    font-size: calc(14 / var(--customW) * var(--unit));
    line-height: 1.71;
    letter-spacing: -0.02em;
  }


  /* box */
  .concept__box {
    flex-direction: column-reverse;
  }

  .concept__box-left,
  .concept__box-right {
    width: auto;
  }

  .concept__box-left img {
    height: auto;
  }

  .concept__box-right {
    display: block;
    padding: calc(202 / var(--customW) * var(--unit)) 0 calc(68 / var(--customW) * var(--unit));
  }

  .concept__box-en {
    font-size: calc(19 / var(--customW) * var(--unit));
    line-height: 1.4;
  }

  .concept__box-ja {
    margin-top: calc(131 / var(--customW) * var(--unit));
    font-size: calc(14 / var(--customW) * var(--unit));
    line-height: 1.71;
    letter-spacing: -0.02em;
  }

} /* media end */




/* -----------------
■ product
------------------- */
.product {
  background-color: #C2CDD6;
}

.product-inner {
  max-width: 1280px;
  margin-inline: auto;
  padding: 72px 20px 125px;
}

.product__title {
  font-size: 2.1rem;
  font-weight: 500;
  letter-spacing: 0.06em;
}

.product__box {
  display: flex;
  gap: 0 87px;
  margin-top: 150px;
}

.product__box-left {
  width: 43.28%;
  gap: 0 50px;
  text-align: center;
}

.product__box-right {
  width: 41.25%;
  padding-top: 25px;
  padding-right: 100px;
}

.product__box-right-title {
  font-size: 2.0rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
}

.product__box-right-list {
  display: flex;
  gap: 0 10px;
  position: relative;
  margin-top: 50px;
}

.product__box-right-list::after {
  content: "";
  display: block;
  position: absolute;
  top: 36px;
  left: 0px;
  width: 100%;
  height: 21px;
  background: url(../img/img_product_line.svg) no-repeat;
  background-size: 100% auto;
}

.product__box-right-list-item {
  flex: 1;
  white-space: nowrap;
  font-size: 1.8rem;
  line-height: 1.56;
  letter-spacing: 0.06em;
}

.product__box-right-list-item dt {
  font-weight: 500;
}

.product__box-right-list-item dd:nth-of-type(1) {
  margin-top: 40px;
}

.product__box-right-text {
  margin-top: 18px;
  font-size: 1.4rem;
  line-height: 1.5;
  letter-spacing: 0.15em;
}


@media screen and (max-width: 767px)
{
  .product-inner {
    padding: calc(50 / var(--customW) * var(--unit)) 0 calc(58 / var(--customW) * var(--unit));
  }

  .product__title {
    font-size: calc(15 / var(--customW) * var(--unit));
    text-align: center;
  }

  .product__box {
    display: block;
    margin-top: calc(102 / var(--customW) * var(--unit));
  }

  .product__box-left {
    width: calc(194 / var(--customW) * var(--unit));
    margin-inline: auto;
  }

  .product__box-right {
    width: calc(361 / var(--customW) * var(--unit));
    margin-top: calc(67 / var(--customW) * var(--unit));
    margin-inline: auto;
    padding: 0;
  }

  .product__box-right-title {
    font-size: calc(14 / var(--customW) * var(--unit));
    line-height: 1.5;
  }

  .product__box-right-list {
    gap: 0 calc(5 / var(--customW) * var(--unit));
    margin-top: calc(60 / var(--customW) * var(--unit));
  }

  .product__box-right-list::after {
    top: calc(23 / var(--customW) * var(--unit));
    height: calc(21 / var(--customW) * var(--unit));
  }

  .product__box-right-list-item {
    font-size: calc(12 / var(--customW) * var(--unit));
  }

  .product__box-right-list-item dd:nth-of-type(1) {
    margin-top: calc(31 / var(--customW) * var(--unit));
  }

  .product__box-right-text {
    margin-top: calc(23 / var(--customW) * var(--unit));
    font-size: calc(12 / var(--customW) * var(--unit));
    line-height: 1.72;
  }

} /* media end */




/* -----------------
■ decoration
------------------- */
.decoration img {
  width: 100%;
}




/* -----------------
■ offer
------------------- */
.offer {
  padding: 172px 0 172px;
  color: #fff;
  text-align: center;
  background-color: #000;
}


/* price */
.offer__capacity,
.offer__amount {
  font-size: 2.5rem;
  font-weight: 500;
  line-height: 1.32;
  letter-spacing: 0.15em;
} 

.offer__amount {
  margin-top: 21px;
}

.offer__amount span {
  font-size: 1.5rem;
}

.offer__origin {
  margin-top: 31px;
  font-size: 1.5rem;
  font-weight: 500;
  line-height: 1.33;
  letter-spacing: 0.15em;
}


/* component */
.offer__component {
  position: relative;
  margin-top: 30px;
  padding-top: 30px;
}

.offer__component::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 220px;
  height: 1px;
  background-color: #fff;
}

.offer__component-box + .offer__component-box {
  margin-top: 40px;
}

.offer__component-title {
  font-size: 1.6rem;
  font-weight: bold;
  line-height: 1.5;
  letter-spacing: 0.05em;
}

.offer__component-text {
  margin-top: 15px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.05em;
}


/* contact */
.offer__contact {
  margin-top: 113px;
}

.offer__contact-text {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.025em;
}

.offer__contact-btn {
  margin-top: 30px;
}

.offer__contact-btn a {
  display: inline-block;
  padding: 0 30px;
  font-size: 1.8rem;
  line-height: 3.2;
  letter-spacing: 0.025em;
  border: 1px solid #fff;
  border-radius: 30px;
}

.offer__contact-btn span {
  position: relative;
  padding-left: 27px;
}

.offer__contact-btn span::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 20px;
  height: 15px;
  transform: translateY(-50%);
  background: url(../img/icon_mail.svg) no-repeat;
}


@media screen and (max-width: 767px)
{
  .offer {
    padding: calc(122 / var(--customW) * var(--unit)) 0 calc(145 / var(--customW) * var(--unit));
  }


  /* price */
  .offer__capacity,
  .offer__amount {
    font-size: calc(16 / var(--customW) * var(--unit));
  } 

  .offer__amount {
    margin-top: calc(17 / var(--customW) * var(--unit));
  }

  .offer__amount span {
    font-size: calc(10 / var(--customW) * var(--unit));
  }

  .offer__origin {
    margin-top: calc(23 / var(--customW) * var(--unit));
    font-size: calc(14 / var(--customW) * var(--unit));
  }


  /* component */
  .offer__component {
    position: relative;
    width: calc(360 / var(--customW) * var(--unit));
    margin-top: calc(22 / var(--customW) * var(--unit));
    margin-inline: auto;
    padding-top: calc(30 / var(--customW) * var(--unit));
  }

  .offer__component::before {
    width: calc(154 / var(--customW) * var(--unit));
  }

  .offer__component-box + .offer__component-box {
    margin-top: calc(30 / var(--customW) * var(--unit));
  }

  .offer__component-title {
    font-size: calc(14 / var(--customW) * var(--unit));
  }

  .offer__component-text {
    font-size: calc(10 / var(--customW) * var(--unit));
  }


  /* contact */
  .offer__contact {
    margin-top: calc(60 / var(--customW) * var(--unit));
  }

  .offer__contact-text {
    font-size: calc(15 / var(--customW) * var(--unit));
  }

  .offer__contact-btn {
    margin-top: calc(30 / var(--customW) * var(--unit));
  }

  .offer__contact-btn a {
    padding: 0 calc(24 / var(--customW) * var(--unit));
    font-size: calc(16 / var(--customW) * var(--unit));
    line-height: 3.2;
    border-radius: calc(30 / var(--customW) * var(--unit));
  }

  .offer__contact-btn span {
    padding-left: calc(27 / var(--customW) * var(--unit));
  }

  .offer__contact-btn span::before {
    width: calc(20 / var(--customW) * var(--unit));
    height: calc(15 / var(--customW) * var(--unit));
  }

} /* media end */




/* -----------------
■ photo
------------------- */
.photo img {
  width: 100%;
}




/* -----------------
■ footer
------------------- */
.footer {
  padding: 156px 20px 30px;
  background-color: #000;
}

.footer-inner {
  position: relative;
  max-width: 1080px;
  margin-inline: auto;
  color: #fff;
  text-align: center;
}

.footer__logo {
  margin-top: 87px;
}

.footer__navi {
  display: block;
  margin-top: 138px;
}

.footer__list {
  display: flex;
  justify-content: center;
  gap: 0 57px;
}

.footer__list a {
  font-size: 1.5rem;
  line-height: 1.33;
  letter-spacing: 0.15em;
}

.footer__brand {
  margin-top: 75px;
}

.footer__brand-title {
  font-size: 1.5rem;
  line-height: 1.33;
  letter-spacing: 0.12em;
}

.footer__brand-bnr {
  margin-top: 52px;
}

.footer__copyright {
  margin-top: 60px;
  padding-top: 33px;
  color: #fff;
  font-size: 1.0rem;
  line-height: 1;
  letter-spacing: 0.2em;
  text-align: center;
  border-top: 1px solid #fff;
}

.footer__pagetop {
  position: absolute;
  top: -50px;
  right: 0;
}

.footer__pagetop a {
  padding-top: 20px;
  font-size: 1.4rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.15em;
  writing-mode: vertical-rl;
  background: url(../img/icon_pagetop.svg) no-repeat center 0;
}



@media screen and (max-width: 767px)
{
  .footer {
    padding: calc(142 / var(--customW) * var(--unit)) 0 calc(30 / var(--customW) * var(--unit));
  }

  .footer__title {
    width: calc(202 / var(--customW) * var(--unit));
    margin-inline: auto;
  }

  .footer__logo {
    width: calc(224 / var(--customW) * var(--unit));
    margin-top: calc(58 / var(--customW) * var(--unit));
    margin-inline: auto;
  }

  .footer__navi {
    display: block;
    margin-top: calc(113 / var(--customW) * var(--unit));
  }

  .footer__list {
    display: block;
    width: calc(360 / var(--customW) * var(--unit));
    margin-inline: auto;
    text-align: left;
  }
  
  .footer__list li:nth-of-type(n+2) {
    margin-top: calc(20 / var(--customW) * var(--unit));
  }

  .footer__list a {
    font-size: calc(15 / var(--customW) * var(--unit));
  }

  .footer__brand {
    margin-top: calc(112 / var(--customW) * var(--unit));
  }

  .footer__brand-title {
    font-size: calc(13 / var(--customW) * var(--unit));
  }

  .footer__brand-bnr {
    width: calc(66 / var(--customW) * var(--unit));
    margin-top: calc(57 / var(--customW) * var(--unit));
    margin-inline: auto;
  }

  .footer__copyright {
    margin-top: calc(50 / var(--customW) * var(--unit));
    padding-top: calc(30 / var(--customW) * var(--unit));
    font-size: calc(10 / var(--customW) * var(--unit));
  }
} /* media end */





/* -----------------
■ 汎用
------------------- */
.lh0 { line-height: 0; }

.clearfix:after{
	content: ".";
	display: block; 
	clear: both; 
	height: 0; 
	font-size:0;	
	visibility:hidden;
}


@media screen and (min-width: 768px)
{
	.spEle,
	.spEleIn {
		display: none;
	}

	.pcEleIn {
		display: inline-block;
	}


} /* media end */


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

	.spEleIn {
		display: inline-block;
	}


} /* media end */


