﻿/*===============================
MARK: root 
=================================*/
:root {
  --fz10: 0.625rem;
  --fz12: 0.75rem;
  --fz13: 0.8125rem;
  --fz14: 0.875rem;
  --fz16: 1rem;
  --fz17: 1.0625rem;
  --fz18: 1.125rem;
  --fz20: 1.25rem;
  --fz22: 1.375rem;
  --fz24: 1.5rem;
  --fz26: 1.625rem;
  --fz28: 1.75rem;
  --fz30: 1.875rem;
  --fz32: 2rem;
  --fz34: 2.125rem;
  --fz36: 2.25rem;
  --fz38: 2.375rem;
  --fz40: 2.5rem;
}
/*===============================
MARK: common
=================================*/
html {
  scroll-behavior: smooth;
  scroll-padding-top: 30px;
  font-size: inherit;
}
.l-free-main {
  position: relative;
  overflow-x: hidden;
  font-family: 'Zen Kaku Gothic New', 'Helvetica Neue', Arial, 'Hiragino Kaku Gothic ProN', 'Hiragino Sans', Meiryo, sans-serif;
  font-weight: 500;
  -webkit-font-smoothing: antialiased;
  color: #697581;
  padding-top: 0;
}
.l-free-main a {
  transition: 0.3s;
}
.l-free-main a:hover {
  opacity: 0.8;
}
.l-free-main img {
  width: 100%;
}
.f-en,
.f-en * {
  font-family: 'Outfit', sans-serif;
}
.container {
  width: 100%;
  max-width: 1030px;
  margin-inline: auto;
  padding-inline: 15px;
}
.d-flex {
  display: flex;
  align-items: start;
  justify-content: start;
}
.tb-content {
  display: none;
}
.sp-content {
  display: none;
}
.indent1em {
  text-indent: -1em;
  margin-left: 1em;
}
.indent2em {
  text-indent: -2em;
  margin-left: 2em;
}
.text-center {
  text-align: center !important;
}
.text-right {
  text-align: right !important;
}
.c-white,
.c-white * {
  color: #fff;
}
.fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: all 0.6s ease-out;
}
.fade-in.active {
  opacity: 1;
  transform: translateY(0);
}
h3.f-en {
  letter-spacing: 0.07em;
}
h4 span.f-en {
  letter-spacing: 0.07em;
}
/*===============================
MARK: ボタン
=================================*/
.btn {
  position: relative;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  line-height: 1;
  text-decoration: none;
  min-width: 266px;
  /* 共通幅 */
  padding: 1.25em 0.75em;
  font-size: var(--fz18);
  font-weight: 500;
  color: #697581;
  background: #fff;
  border: 2px solid #697581;
  text-align: center;
}
.btn::after {
  content: '';
  display: inline-block;
  height: 2px;
  width: 1.5em;
  background-color: #697581;
  position: absolute;
  top: 50%;
  right: -0.75em;
  transform: translateY(-50%);
  transition: all 0.3s;
}
.btn:hover {
  opacity: 1;
}
.btn:hover::after {
  right: -1.25em;
}
/*===============================
MARK: header
=================================*/
.site-header {
  position: absolute;
  top: 0;
  left: 0;
  padding: 0;
  width: 100%;
  z-index: 1;
}
.header-inner {
  width: 100%;
  margin-inline: auto;
  padding-inline: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.site-logo {
  padding: 26px 0 0 10px;
}
.site-ttl {
  position: absolute;
  top: 70%;
  right: 5%;
}
/*===============================
MARK: MV
=================================*/
.main-visual {
  position: relative;
  width: 100%;
}
.mv-img {
  position: relative;
  width: 100%;
  height: 100%;
}
.mv-img img {
  display: block;
}
/*===============================
MARK: MAIN-CONTENT
=================================*/
#brand {
  background: #e9f4f4;
  padding-top: 120px;
}
.brand-img .img-wrap {
  margin-inline: 20px;
}
.brand-img .img-wrap::before,
.brand-img .img-wrap::after {
  position: absolute;
  width: 66px;
  height: 66px;
  content: '';
  border-color: #697581;
}
.brand-img .img-wrap::before {
  border-left: solid 2px;
  border-top: solid 2px;
  top: 0;
  left: 0;
}
.brand-img .img-wrap::after {
  border-right: solid 2px;
  border-bottom: solid 2px;
  bottom: 0;
  right: 0;
}
.brand-img .img-wrap img {
  display: block;
}
.brand-detail {
  margin-top: -140px;
  padding-top: 200px;
  padding-bottom: 85px;
  background: #ffffff;
  background: linear-gradient(90deg, rgba(255, 255, 255, 1) 50%, transparent 50%);
}
.brand-name {
  font-size: clamp(1.375rem, calc(0.75rem + 2.5vw), 2.4375rem);
  letter-spacing: 0.07em;
}
.col-text {
  width: 50%;
}
.col-image {
  width: 50%;
}
.col-text p {
  margin-top: 1.8em;
  font-size: var(--fz14);
  line-height: 2.2;
}
.col-image {
  padding-inline: 70px 20px;
}
.col-image img {
  display: block;
}
/* スライダーページネーション調整 */
.splide__pagination {
  display: flex;
  justify-content: end;
  gap: 15px;
  padding-right: 0;
  bottom: -35px;
}
.splide__pagination__page {
  width: 12px;
  height: 12px;
  background-color: #dce0e3;
  border-radius: 50%;
  transition: background-color 0.3s;
  opacity: 1;
  margin: 0;
}
.splide__pagination__page.is-active {
  background-color: #697581;
  opacity: 1;
  transform: scale(1);
}
.brand02,
.brand03 {
  margin-top: 145px;
}
.brand02 .brand-img .img-wrap::before {
  border-right: solid 2px;
  border-left: none;
  left: unset;
  right: 0;
}
.brand02 .brand-img .img-wrap::after {
  border-right: none;
  border-left: solid 2px;
  right: unset;
  left: 0;
}
.brand02 .brand-detail {
  background: linear-gradient(270deg, rgba(255, 255, 255, 1) 50%, transparent 50%);
}
.brand02 .brand-detail .container {
  flex-direction: row-reverse;
}
.brand02 .col-image {
  padding-inline: 20px 70px;
}
.brand02 .col-text {
  display: flex;
  flex-direction: column;
  align-items: end;
}
.brand02 .brand-name {
  text-align: center;
}
.brand02 .col-text p {
  padding-right: 20px;
}
#service {
  background-color: #f2f2f2;
  padding-block: 85px 50px;
}
.service-heading {
  text-align: center;
}
#service h3 {
  font-size: var(--fz36);
  margin-bottom: 10px;
}
#service h3+p {
  font-size: var(--fz18);
}
#service .d-flex {
  gap: 54px;
  margin-top: 50px;
}
.link-column img {
  display: block;
  width: 100%;
  margin-bottom: 15px;
}
.link-column h4 {
  font-weight: 700;
  font-size: var(--fz12);
}
.link-column h4 span {
  display: block;
  font-size: 25px;
}
.link-column p {
  font-size: var(--fz14);
  line-height: 2;
  margin-top: 10px;
}
.other {
  padding-block: 40px;
}
.other .d-flex {
  align-items: center;
  gap: 54px;
}
.other .d-flex>div {
  flex: 1;
}
.other h3 {
  font-size: var(--fz22);
}
.other p {
  font-size: var(--fz14);
  line-height: 2;
  margin-top: 20px;
}
.bnr-sale {
	position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 999;
}
.bnr-inner img {
	display: block;
	width: 270px;
	box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
/*===============================
MARK: footer
=================================*/
.site-footer {
  background: #f2f2f2;
  padding-block: 62px 70px;
}
.btn-wrap {
  text-align: center;
}
.footer-inner {
  justify-content: center;
  gap: 50px;
}
.copyright {
  margin-top: 45px;
  font-weight: 400;
  font-size: var(--fz14);
  text-align: center;
}


@media (max-width: 620px) {
  /*===============================
  MARK: common
  =================================*/
  .l-free-main {
    overflow-x: hidden;
  }
  .pc-content {
    display: none !important;
  }
  .sp-content {
    display: block;
  }
  .container {
    padding-inline: 20px;
  }
  /*===============================
  MARK: header
  =================================*/
  .site-header {
    position: relative;
    padding-block: 17px 16px;
  }
  .site-logo {
    padding: 0;
    width: 38px;
  }
  .site-logo a {
    display: block;
  }
  .site-ttl {
    position: relative;
    top: 0;
    right: 0;
  }
  /*===============================
  MARK: main content
  =================================*/
  #brand {
    padding-top: 47px;
  }
  .brand-img .img-wrap {
    margin-inline: 0;
    position: relative;
    z-index: 1;
  }
  .brand-img .img-wrap::before,
  .brand-img .img-wrap::after {
    width: 26px;
    height: 26px;
  }
  .brand-detail {
    margin-top: -40px;
    padding-top: 0;
    padding-bottom: 85px;
    background: transparent !important;
  }
  .brand-detail>.container {
    flex-direction: column !important;
  }
  .col-text,
  .col-image {
    width: 100%;
  }
  .col-text {
    padding-block: 80px 36px;
    background-color: #fff;
    margin-inline: -20px 0;
  }
  .brand-name {
    text-align: center;
  }
  .col-image {
    padding-inline: 20px !important;
    margin-top: 23px;
  }
  .col-text>* {
    padding-left: 36px;
  }
  .col-text p {
    font-size: var(--fz12);
  }
  /* スライダーページネーション調整 */
  .splide__pagination {
    gap: 10px;
  }
  .splide__pagination__page {
    width: 9px;
    height: 9px;
  }
  .brand02,
  .brand03 {
    margin-top: 55px;
  }
  .brand02 .col-text {
    display: block;
    margin-inline: 20px 0;
  }
  #service h3 {
    font-size: var(--fz30);
  }
  #service h3+p {
    font-size: 1rem;
  }
  #service .d-flex {
    flex-direction: column;
  }
  .other .d-flex {
    flex-direction: column;
    gap: 15px;
  }
  .other h3 {
    text-align: center;
  }
  .bnr-inner img {
		width: 180px;
	}
  /*===============================
  MARK: footer
  =================================*/
  .site-footer {
    padding-block: 80px 70px;
  }
  .footer-inner {
    flex-direction: column;
  }
  .footer-inner .btn-wrap {
    text-align: center;
    align-self: center;
  }
  .copyright {
    margin-top: 80px;
    font-weight: 400;
    font-size: var(--fz14);
  }
}


/* Page Adjust */
.l-free-wrapper div:has(#js-unt-getAjaxHeader),
.l-free-wrapper div:has(#js-unt-getAjaxFooter),
.u-pc-only,
.u-sp-only {
  display: none !important;
}
.l-free-main > .forcms_block:not(.p-lensComSearchStore):last-of-type {
  padding-bottom: 0;
}