@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: "Zen Kaku Gothic New", sans-serif;
}

.jost {
  font-family: "Jost";
}




/* -----------------
■ 全体
------------------- */
html {
	font-size: 62.5%;
  scrollbar-gutter: stable;
}

a {
	transition: opacity .4s;
}

a:hover {
	opacity: .6;
}

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

body.is-lock {
  overflow: hidden;
}

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

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

.u-content {
  position: relative;
  background-color: #fff;
}

.u-full-text__en {
  color: #fff;
  font-size: 8.6rem;
  font-weight: bold;
  line-height: 1.35;
  letter-spacing: -0.02em;
}

.u-full-text__ja {
  color: #fff;
  font-size: 3.9rem;
  font-weight: 900;
  line-height: 1.436;
  letter-spacing: -0.02em;
}


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

	img {
		width: 100%;
	}

  .js-fadein {
    transform: translateY(5vw);
  }

  .u-full-text__en {
    font-size: calc(33 / var(--customW) * var(--unit));
  }

  .u-full-text__ja {
    font-size: calc(18 / var(--customW) * var(--unit));
  }

} /* media end */




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


/* btn */
.header__btn {
  position: absolute;
  top: 47px;
  right: 64px;
  width: 60px;
  height: 60px;
  cursor: pointer;
  filter: drop-shadow(0 0 1px rgba(0,0,0,.5));
  z-index: 11;
}

.header__btn span {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40px;
  height: 3px;
  transform: translate(-50%,-50%);
  transition: background .4s;
  background-color: #fff;
}

.header__btn span::before,
.header__btn span::after {
  content: "";
  display: block;
  position: absolute;
  width: 100%;
  height: 3px;
  transition: top .4s, transform .4s;
  background-color: #fff;
}

.header__btn span::before {
  top: -15px;
}

.header__btn span::after {
  top: 15px;
}

body.is-naviOpen {
  overflow: hidden;
  height: 100dvh;
}


body.is-naviOpen .header__btn span {
  background-color: transparent;
}

body.is-naviOpen .header__btn span::before {
  top: 0;
  transform: rotate(135deg);
}

body.is-naviOpen .header__btn span::after {
  top: 0;
  transform: rotate(-135deg);
}


/* menu */
.header__menu {
  display: none;
  overflow-y: auto;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  padding: 124px 90px 20px;
  color: #fff;
  box-sizing: border-box;
  background-color: rgba(0,0,0,0.8);
}

.header-nav__list-item {
  position: relative;
}

.header-nav__list-item:nth-of-type(n+2) {
  margin-top: 70px;
}

.header-nav__list-item-en {
  font-size: 3.5rem;
  font-weight: bold;
  line-height: 1.28;
  letter-spacing: -0.02em;
}

.header-nav__list-item-ja {
  margin-top: 4px;
  padding-left: 30px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.header__bottom {
  margin-top: 106px;
}

.header__copyright {
  margin-top: 25px;
  font-size: 2rem;
  font-weight: 500;
  line-height: 1;
}


@media screen and (max-width: 767px)
{
  /* btn */
  .header__btn {
    top: calc(15 / var(--customW) * var(--unit));
    right: calc(10 / var(--customW) * var(--unit));
    width: calc(40 / var(--customW) * var(--unit));
    height: calc(40 / var(--customW) * var(--unit));
  }

  .header__btn span {
    width: calc(20 / var(--customW) * var(--unit));
    height: calc(1 / var(--customW) * var(--unit));
  }

  .header__btn span::before,
  .header__btn span::after {
    height: calc(1 / var(--customW) * var(--unit));
  }

  .header__btn span::before {
    top: calc(-8 / var(--customW) * var(--unit));
  }

  .header__btn span::after {
    top: calc(8 / var(--customW) * var(--unit));
  }


  /* menu */
  .header__menu {
    padding: calc(118 / var(--customW) * var(--unit)) calc(20 / var(--customW) * var(--unit)) calc(20 / var(--customW) * var(--unit));
  }

  .header-nav__list-item:nth-of-type(n+2) {
    margin-top: calc(43 / var(--customW) * var(--unit));
  }

  .header-nav__list-item-en {
    font-size: calc(21 / var(--customW) * var(--unit));
  }

  .header-nav__list-item-ja {
    margin-top: calc(1 / var(--customW) * var(--unit));
    padding-left: calc(18 / var(--customW) * var(--unit));
    font-size: calc(12 / var(--customW) * var(--unit));
  }

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

  .header__copyright {
    margin-top: calc(10 / var(--customW) * var(--unit));
    font-size: calc(12 / var(--customW) * var(--unit));
  }

} /* media end */




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

.kv__bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
}

.kv__bg img {
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 1s;
}

.kv__bg img.is-active {
  opacity: 1;
}

.kv-box {
  position: relative;
  height: 100dvh;
  color: #fff;
  text-align: center;
}


/* box1 */
.kv__title {
  position: absolute;
  top: 50%;
  width: 100%;
  padding: 0 40px;
  opacity: 0;
  transform: translateY(-50%);
  transition: opacity 1s;
  box-sizing: border-box;
}

.kv-box1__text {
  position: absolute;
  width: 100%;
  bottom: 90px;
  font-size: 3.1rem;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  opacity: 0;
  transition: opacity 1s;
  transition-delay: 0.2s;
}

body.is-start .kv__title,
body.is-start .kv-box1__text {
  opacity: 1;
}


/* box2 */
.kv-box2-inner,
.kv-box3-inner {
  position: absolute;
  top: 50%;
  width: 100%;
  transform: translateY(-50%);
}

.kv-box__text-ja {
  margin-top: 18px;
}


/* box3 */
.kv-box3__info {
  width: 490px;
  margin-top: 72px;
  margin-inline: auto;
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: -0.02em;
  text-align: left;
}

.kv-box3__info-list {
  margin-top: 40px;
}

.kv-box3__info-list-item {
  display: flex;
  align-items: center;
  gap: 0 11px;
}

.kv-box3__info-list-item-num {
  width: 34px;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  border: 1px solid #fff;
  border-radius: 12px;
}


@media screen and (max-width: 767px)
{
  /* box1 */
  .kv__title {
    padding: 0;
  }

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

  .kv-box1__text {
    bottom: calc(46 / var(--customW) * var(--unit));
    font-size: calc(20 / var(--customW) * var(--unit));
  }

  /* box2 */
  .kv-box__text-ja {
    margin-top: calc(24 / var(--customW) * var(--unit));
  }


  /* box3 */
  .kv-box3__info {
    width: calc(335 / var(--customW) * var(--unit));
    margin-top: calc(58 / var(--customW) * var(--unit));
    font-size: calc(14 / var(--customW) * var(--unit));
  }

  .kv-box3 .kv-box__text-ja {
    margin-top: calc(60 / var(--customW) * var(--unit));
  }

  .kv-box3__info-list {
    margin-top: calc(25 / var(--customW) * var(--unit));
  }

  .kv-box3__info-list-item {
    gap: 0 calc(10 / var(--customW) * var(--unit));
  }

  .kv-box3__info-list-item:nth-of-type(n+2) {
    margin-top: calc(3 / var(--customW) * var(--unit));
  }

  .kv-box3__info-list-item-num {
    width: calc(30 / var(--customW) * var(--unit));
    border-radius: calc(12 / var(--customW) * var(--unit));
  }

} /* media end */




/* -----------------
■ detail
------------------- */
.detail {
  display: flex;
  justify-content: center;
  gap: 0 82px;
  padding: 86px 20px 60px;
  z-index: 1;
}

.detail-box {
  max-width: 842px;
  text-align: center;
}

.detail-box__text-en {
  font-size: 4rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.02em;
}

.detail-box__text-ja {
  margin-top: 12px;
  font-size: 2rem;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.02em;
}

.detail-box__img {
  margin-top: 74px;
}


@media screen and (max-width: 767px)
{
  .detail {
    display: block;
    padding: 0;
    background-color: #EDECE8;
  }

  .detail-box {
    padding: calc(26 / var(--customW) * var(--unit)) 0 calc(30 / var(--customW) * var(--unit));
  }

  .detail-box:nth-of-type(2) {
    border-top: 1px solid #000;
  }

  .detail-box__text-en {
    font-size: calc(25 / var(--customW) * var(--unit));
  }

  .detail-box__text-en img {
    width: calc(132 / var(--customW) * var(--unit));
  }

  .detail-box__text-ja {
    margin-top: calc(10 / var(--customW) * var(--unit));
    font-size: calc(15 / var(--customW) * var(--unit));
  }

  .detail-box__img {
    margin-top: calc(20 / var(--customW) * var(--unit));
    padding: 0 calc(20 / var(--customW) * var(--unit));
  } 

} /* media end */




/* -----------------
■ full-message
------------------- */
.full-message {
  position: relative;
  min-height: 100dvh;
}

.full-message::before {
  content: "";
  display: block;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
  background: url(../img/bg_message.jpg) no-repeat;
  background-size: cover;
}

.full-message.is-view::before {
  opacity: 1;
  pointer-events: auto;
}

.full-message-inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  text-align: center;
  transform: translateY(-50%);
}

.full-message__ja {
  margin-top: 10px;
}


@media screen and (max-width: 767px)
{
  .full-message::before {
    background: url(../img/bg_message_sp.jpg) no-repeat center;
    background-size: cover;
  }

  .full-message__ja {
    margin-top: calc(10 / var(--customW) * var(--unit));
  }


} /* media end */




/* -----------------
■ sub-message
------------------- */
.sub-message {
  display: flex;
  align-items: center;
  z-index: 1;
}

.sub-message__item {
  width: 50%;
  box-sizing: border-box;
}

.sub-message__item:nth-of-type(2) {
  padding: 0 114px;
}

.sub-message__text {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0;
}

.sub-message__text:nth-of-type(2) {
  margin-top: 20px;
}

.sub-message__title {
  margin-top: 5px;
  font-size: 4rem;
  font-weight: bold;
  line-height: 1.4;
  letter-spacing: 0;
}


@media screen and (min-width: 768px) and (max-width: 1000px)
{
 .sub-message {
  flex-direction: column-reverse;
 }

 .sub-message__item {
  width: auto;
 }

 .sub-message__item:nth-of-type(2) {
  padding: 50px 114px;
 }

} /* media end */


@media screen and (max-width: 767px)
{
  .sub-message {
    flex-direction: column-reverse;
  }

  .sub-message__item {
    width: auto;
  }

  .sub-message__item:nth-of-type(2) {
    padding: calc(25 / var(--customW) * var(--unit)) calc(20 / var(--customW) * var(--unit));
  }

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

  .sub-message__text:nth-of-type(2) {
    margin-top: calc(27 / var(--customW) * var(--unit));
  }

  .sub-message__title {
    margin-top: calc(18 / var(--customW) * var(--unit));
    font-size: calc(22 / var(--customW) * var(--unit));
  }

} /* media end */




/* -----------------
■ mechanism
------------------- */
.mechanism {
  position: relative;
  min-height: 100dvh;
}

.mechanism::before {
  content: "";
  display: block;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
  background: url(../img/bg_mechanism.jpg) no-repeat;
  background-size: cover;
}

.mechanism.is-view::before {
  opacity: 1;
  pointer-events: auto;
}

.mechanism-inner {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  transform: translateY(-50%);
}

.mechanism__en,
.mechanism__ja {
  text-align: center;
}

.mechanism__ja {
  margin-top: 20px;
}

.mechanism__list {
  max-width: 764px;
  margin-top: 30px;
  margin-inline: auto;
  padding-left: 50px;
  color: #fff;
}

.mechanism__list-title {
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}

.mechanism__list-title:nth-of-type(n+2) {
  margin-top: 20px;
}

.mechanism__list-title span {
  display: inline-block;
  margin-right: 6px;
  padding: 0 7px;
  font-size: 2.2rem;
  font-weight: 500;
  line-height: 1.18;
  letter-spacing: -0.02em;
  vertical-align: top;
  border: 1px solid #fff;
  border-radius: 14px;
}

.mechanism__list-text {
  font-size: 2rem;
  font-weight: 500;
  line-height: 1.4;
}


@media screen and (max-width: 767px)
{
  .mechanism::before {
    background: url(../img/bg_mechanism.jpg) no-repeat;
    background-size: cover;
  }

  .mechanism-inner {
    position: relative;
    width: calc(335 / var(--customW) * var(--unit));
    margin-inline: auto;
    padding: calc(80 / var(--customW) * var(--unit)) 0 calc(100 / var(--customW) * var(--unit));
    transform: none;
    z-index: 1;
  }

  .mechanism__ja {
    margin-top: calc(52 / var(--customW) * var(--unit));
    font-size: calc(22 / var(--customW) * var(--unit));
    text-align: left;
  }

  .mechanism__list {
    margin-top: calc(36 / var(--customW) * var(--unit));
    padding: 0;
  }

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

  .mechanism__list-title:nth-of-type(n+2) {
    margin-top: calc(18 / var(--customW) * var(--unit));
  }

  .mechanism__list-title span {
    margin-right: calc(6 / var(--customW) * var(--unit));
    padding: 0 calc(7 / var(--customW) * var(--unit));
    font-size: calc(12 / var(--customW) * var(--unit));
    border-radius: calc(14 / var(--customW) * var(--unit));
  }

  .mechanism__list-text {
    margin-top: calc(4 / var(--customW) * var(--unit));
    font-size: calc(14 / var(--customW) * var(--unit));
  } 

} /* media end */




/* -----------------
■ price
------------------- */
.price {
  display: flex;
  z-index: 1;
}

.price__left {
  width: 51.09%;
}

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

.price__right {
  padding: 190px 20px 190px 130px;
  box-sizing: border-box;
}

.price__detail {
  display: grid;
  grid-template-columns: 123px 1fr;
  margin-top: 86px;
}

.price__detail p {
  font-size: 2.5rem;
  font-weight: 600;
  line-height: 1.4;
}

.price__detail p sup {
  font-size: 1.4rem;
}

.price__list {
  display: grid;
  grid-template-columns: 123px 1fr;
  gap: 44px 0;
  margin-top: 62px;
  letter-spacing: -0.02em;
}

.price__list dt {
  font-size: 1.6rem;
  font-weight: 500;
  line-height: 1.4;
}

.price__list dd {
  font-size: 1.5rem;
  font-weight: bold;
  line-height: 1.4;
}

.price__list-text {
  margin-top: 20px;
}


@media screen and (min-width: 768px) and (max-width: 1000px)
{
  .price__right {
    padding: 60px 20px 60px 60px;
    box-sizing: border-box;
  }

}


@media screen and (max-width: 767px)
{
  .price {
    display: block;
    z-index: 1;
  }

  .price__left {
    width: auto;
  }

  .price__right {
    padding: calc(33 / var(--customW) * var(--unit)) calc(20 / var(--customW) * var(--unit)) calc(20 / var(--customW) * var(--unit));
  }

  .price__detail {
    display: flex;
    gap: 0 calc(30 / var(--customW) * var(--unit));
    margin-top: calc(10 / var(--customW) * var(--unit));
  }

  .price__detail p {
    font-size: calc(19 / var(--customW) * var(--unit));
  }

  .price__detail p sup {
    margin-left: calc(3 / var(--customW) * var(--unit));
    font-size: calc(10 / var(--customW) * var(--unit));
  }

  .price__detail-img {
    margin-top: calc(14 / var(--customW) * var(--unit));
  }

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

  .price__list dt {
    font-size: calc(16 / var(--customW) * var(--unit));
  }

  .price__list dt:nth-of-type(n+2) {
    margin-top: calc(34 / var(--customW) * var(--unit));
  }

  .price__list dd {
    font-size: calc(15 / var(--customW) * var(--unit));
    line-height: 1.2;
  }

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

} /* media end */




/* -----------------
■ howto
------------------- */
.howto {
  position: relative;
  min-height: 100dvh;
}

.howto::before {
  content: "";
  display: block;
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100dvh;
  opacity: 0;
  transition: opacity .4s;
  pointer-events: none;
  background: url(../img/bg_howto.jpg) no-repeat center bottom;
  background-size: cover;
}

.howto.is-view::before {
  opacity: 1;
  pointer-events: auto;
}

.howto-inner {
  position: relative;
  max-width: 1305px;
  margin-inline: auto;
  padding: 216px 20px;
  color: #fff;
  z-index: 1;
}

.howto-head__text {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
}

.howto-option {
  display: flex;
  justify-content: space-between;
  margin-top: 136px;
}

.howto-option__item {
  max-width: 50%;
}

.howto-option__item:nth-of-type(2) {
  width: 41.4%;
}

.howto-option__item-title span {
  display: inline-block;
  padding: 4px 16px 0;
  font-size: 3.4rem;
  font-weight: bold;
  line-height: 1.1;
  border: 2px solid #fff;
  border-radius: 30px;
}

.howto-option__item-list {
  display: grid;
  grid-template-columns: 32px 1fr;
  gap: 31px 14px;
  position: relative;
  padding-top: 23px;
}

.howto-option__item-list::after {
  content: "";
  position: absolute;
  top: 0;
  left: 36px;
  width: 2px;
  height: 100%;
  background-color: #fff;
}

.howto-option__item-list dt {
  font-size: 2.3rem;
  font-weight: bold;
  line-height: 1.2;
}

.howto-option__item-list dd {
  font-size: 2rem;
  font-weight: bold;
  line-height: 1.2;
}


@media screen and (max-width: 767px)
{
  .howto::before {
    background: url(../img/bg_howto_sp.jpg) no-repeat center bottom;
    background-size: cover;
  }

  .howto-inner {
    padding: calc(44 / var(--customW) * var(--unit)) calc(20 / var(--customW) * var(--unit)) calc(60 / var(--customW) * var(--unit));
  }

  .howto-head__title img {
    width: calc(332 / var(--customW) * var(--unit));
    margin-inline: auto;
  }

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

  .howto-option {
    display: block;
    margin-top: calc(40 / var(--customW) * var(--unit));
  }

  .howto-option__item {
    max-width: none;
  }

  .howto-option__item:nth-of-type(2) {
    width: auto;
    margin-top: calc(44 / var(--customW) * var(--unit));
  }

  .howto-option__item-title span {
    padding: 0 calc(14 / var(--customW) * var(--unit));
    font-size: calc(25 / var(--customW) * var(--unit));
    line-height: 1.3;
    border: 1px solid #fff;
    border-radius: calc(30 / var(--customW) * var(--unit));
  }

  .howto-option__item-list {
    grid-template-columns: calc(14 / var(--customW) * var(--unit)) 1fr;
    gap: calc(23 / var(--customW) * var(--unit)) calc(20 / var(--customW) * var(--unit));
    padding-top: calc(15 / var(--customW) * var(--unit));
  }

  .howto-option__item-list::after {
    left: calc(28 / var(--customW) * var(--unit));
    width: calc(1 / var(--customW) * var(--unit));
  }

  .howto-option__item-list dt {
    font-size: calc(16 / var(--customW) * var(--unit));
  }

  .howto-option__item-list dd {
    font-size: calc(15 / var(--customW) * var(--unit));
  }

} /* media end */




/* -----------------
■ footer
------------------- */
.footer {
  padding: 100px 20px 50px;
}

.footer__bottom {
  max-width: 1740px;
  margin-top: 160px;
  margin-inline: auto;
}

.footer__copyright {
  margin-top: 13px;
  font-size: 2rem;
  font-weight: 500;
}


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

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

  .footer__copyright {
    margin-top: calc(7 / var(--customW) * var(--unit));
    font-size: calc(12 / var(--customW) * var(--unit));
  }

} /* media end */




/* -----------------
■ company
------------------- */
.company {
  text-align: center;
}

.company__title {
  font-size: 3rem;
  font-weight: bold;
  letter-spacing: 0.1em;
}

.company__text {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.38;
}

.company__text:nth-of-type(1) {
  margin-top: 58px;
}

.company__logo {
  margin-top: 25px;
}

.company__text:nth-of-type(2) {
  margin-top: 20px;
}


@media screen and (max-width: 767px)
{
  .company__title {
    font-size: calc(23 / var(--customW) * var(--unit));
  }

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

  .company__text:nth-of-type(1) {
    margin-top: calc(46 / var(--customW) * var(--unit));
  }

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

  .company__logo img {
    width: calc(270 / var(--customW) * var(--unit));
  }

  .company__text:nth-of-type(2) {
    margin-top: calc(16 / var(--customW) * var(--unit));
  }

} /* media end */




/* -----------------
■ contact
------------------- */
.contact {
  margin-top: 188px;
  text-align: center;
}

.contact__text {
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.16;
}

.contact__btn {
  margin-top: 30px;
}

.contact__btn a {
  display: inline-block;
  position: relative;
  padding: 0 30px 0 64px;
  color: #fff;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 3.33;
  border-radius: 30px;
  background-color: #000;
}

.contact__btn a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 30px;
  width: 20px;
  height: 15px;
  transform: translateY(-50%);
  background: url(../img/icon_contact.svg) no-repeat;
}


@media screen and (max-width: 767px)
{
  .contact {
    margin-top: calc(65 / var(--customW) * var(--unit));
  }

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

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

  .contact__btn a {
    padding: 0 calc(28 / var(--customW) * var(--unit)) 0 calc(55 / var(--customW) * var(--unit));
    font-size: calc(14 / var(--customW) * var(--unit));
    line-height: 3.42;
    border-radius: calc(30 / var(--customW) * var(--unit));
  }

  .contact__btn a::before {
    left: calc(30 / var(--customW) * var(--unit));
    width: calc(16 / var(--customW) * var(--unit));
    height: calc(12 / var(--customW) * var(--unit));
    background-size: 100% auto;
  }

} /* media end */




/* -----------------
■ 汎用
------------------- */
@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 */


