@charset "utf-8";

/*=================================================
 *  CSS Custom Properties
 *================================================*/
:root {
  /* --- 初期値設定 ここから ------------------------ */
  --font-family-base: "Noto Sans JP", sans-serif; /* FontFamily（日本語） */
  --font-family-second: "Noto Serif JP", serif; /* FontFamily（日本語） */
  --font-family-en: "Antonio", sans-serif; /* FontFamily（英字） */
  --line-height-base: 1.6; /* 基本のline-height */
  --color-bg: #eee; /* 背景色 */
  --color-accent: #081826; /* アクセントカラー */
  --color-gray-light: #f9f9f9; /* 薄いグレー */
  --color-gray-base: #ddd; /* グレー */
  --color-gray-dark: #999; /* グレー */
  --color-font-base: #333; /* 文字色 */
  --color-font-btn: #fff; /* ボタン文字色 */
  --height-header: 60; /* SP表示時のヘッダーの高さ */
  --padding-inline: 20px; /* SP表示時の左右余白 */
  --width-max-img: 600px; /* SP表示時の最大画像幅 */
  --l-inner-xs: 900; /* PC表示時のインナー幅 - 極小 */
  --l-inner-s: 1000;/* PC表示時のインナー幅 - 小 */
  --l-inner: 1700; /* PC表示時のインナー幅 - 基本 */
  --space-xs: 20; /* 項目間のスペース - 極小 */
  --space-sm: 40; /* 項目間のスペース - 小 */
  --space-md: 80; /* 項目間のスペース - 中 */
  --space-lg: 100; /* 項目間のスペース - 大 */
  --space-xl: 140; /* 項目間のスペース - 極大 */
  /* --- 初期値設定 ここまで ------------------------ */

  /* z-index */
  --l-layer__modal: 100;
  --l-layer__drawer: 40;
  --l-layer__header: 20;
  --l-layer__floating: 10;
  --l-layer__default: 1;
}

/* PC */
@media screen and (min-width: 768px) {
  :root {
    --width-header: 220; /* PC表示時のヘッダーの高さ */
    --padding-inline: 25px; /* PC表示時の左右余白 */
    --width-max-img: 100%; /* PC表示時の最大画像幅 */
  }
}


/*=================================================
 *  Base ベーススタイル
 *================================================*/
html{
  font-size: 1em;
  min-height: -webkit-fill-available;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-family-base);
  font-weight: 400;
  line-height: var(--line-height-base);
  color: var(--color-font-base);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  background: var(--color-bg);
  word-wrap: break-word;
  min-height: 100vh;
  min-height: -webkit-fill-available;
}

#wrapper{
  overflow: hidden;
}

[lang=en] {
  font-family: var(--font-family-en);
}

img {
  width: 100%;
  height: auto;
  max-width: 100%;
  vertical-align: bottom;
}

a {
  transition: 0.2s linear;
}

/* フォーカス時のアウトライン */
:focus-visible {
  outline: 1px solid var(--color-accent);
}

/* アンカー位置をヘッダーの高さ分ずらす */
:target {
  scroll-margin-top: calc(var(--height-header)*1px);
}

/* PC */
@media screen and (min-width: 768px) {
  html{
    font-size: min(calc( 8/var(--l-inner) * 100vw + .5em ), 1em);
  }
  /* 電話番号リンクをクリック不可 */
  a[href^="tel:"]{
    pointer-events: none;
  }
  /* アンカー位置を戻す（ヘッダーが横のため） */
  :target {
    scroll-margin-top: 0;
  }
}

/* ホバー、フォーカス処理 */
@media (hover: hover) {
  a:is(:hover,:focus-visible) {
    opacity: 0.8;
  }
}

/*=================================================
 *  Utility ユーティリティ
 *================================================*/

 /* float関連 */
.u-cf::before,
.u-cf::after {
  clear: both;
  content: "";
  display: block;
}
.u-fl {
  float: left;
}
.u-fr {
  float: right;
}

/* 左寄せ、中央、右寄せ */
.u-left {
  text-align: left;
}
.u-center {
  text-align: center;
}
.u-right {
  text-align: right;
}

/* 太字 */
.u-bold {
  font-weight: 700;
}

/* Word Break（親要素にクラス指定） */
.u-wbr {
  word-break: keep-all;
  overflow-wrap: break-word;
}

/* スクリーンリーダー向け */
.u-screen-reader-text {
  position: absolute;
  overflow: hidden;
  width: 1px;
  height: 1px;
  clip: rect(1px, 1px, 1px, 1px);
}

/* 表示／非表示 切り替え */
.u-pc-only {
  display: none;
}

/* PC */
@media screen and (min-width: 768px) {
  .u-pc-only {
    display: block;
  }
  .u-sp-only {
    display: none;
  }
}

/*=================================================
 *  Layout レイアウト
 *================================================*/
/* インナー - 標準 */
.l-inner {
  width: 100%;
  max-width: calc(var(--l-inner)*1px + var(--padding-inline)*2);
  padding-inline: var(--padding-inline);
  margin-inline: auto;
  /*overflow: hidden;*/
}

/* セクション */
.l-section {
  padding-block: calc(var(--space-lg)/16*1rem/2);
}

/* セクション - 下層ページ */
.l-sub-section {
  padding-block: calc(var(--space-md)/16*1rem/2);
}

/* インナー - 極小 */
.l-inner-xs {
  margin-inline: auto;
  padding-inline: var(--padding-inline);
}

/* ボタンエリア */
.l-btn-area {
  margin-top: calc(var(--space-sm)/16*1rem);
  display: flex;
  justify-content: center;
  align-items:center; 
}

/* PC */
@media screen and (min-width: 768px) {
  /* セクション */
  .l-section {
    padding-block: calc(var(--space-lg)/16*1rem);
  }
  /* セクション - 下層ページ */
  .l-sub-section {
    padding-block: calc(var(--space-md)/16*1rem);
  }
  /* インナー - 極小 */
  .l-inner-xs {
    margin-inline: auto;
    max-width: calc(var(--l-inner-xs) * 1px);
    padding-inline: 0;
  }
  /* インナー - 小 */
  .l-inner-s {
    margin-inline: auto;
    max-width: calc(var(--l-inner-s) * 1px);
  }
}

/* PC */
@media screen and (min-width: 768px) {
  /* main - TOPページ*/
  .l-top-main {
    padding-top: 0;
    /*padding-left: calc(var(--width-header)/16*1rem);*/
  }
  .l-top-main .l-section{
    padding-left: calc(var(--width-header)/16*1rem);
  }

  /* main - 下層ページ*/
  .l-sub-main {
    padding-top: 0;
    padding-left: calc(var(--width-header)/16*1rem);
  }
  .l-sub-main .l-sub-section{
    padding-inline: calc(20/16*1rem);
  }
}

/*=================================================
 *  Component 共通部品
 *================================================*/

 /*------------------------------------------
 *  ハンバーガーメニュー
 *------------------------------------------*/
.c-hamburger {
  padding: calc(10/16*1rem);
  width: calc(var(--height-header)*1px - calc(10/16*1rem)*2);
  height: calc(var(--height-header)*1px - calc(10/16*1rem)*2);
  background: transparent;
}
.c-hamburger__line {
  position: relative;
  display: block;
  width: 100%;
  height: 2px;
  background-color: #666;
}
.c-hamburger__line::before,
.c-hamburger__line::after {
  content: "";
  position: absolute;
  display: block;
  width: 100%;
  height: 100%;
  background-color: inherit;
  transition: .2s all ease-in-out;
}
.c-hamburger__line::before {
  top: -6px;
}
.c-hamburger__line::after {
  top: 6px;
}

/* ハンバーガーメニュー open時 */
.is-drawerActive .c-hamburger__line {
  background-color: transparent;
}
.is-drawerActive .c-hamburger__line::before,
.is-drawerActive .c-hamburger__line::after {
  top: 0;
  background-color: #666;
}
.is-drawerActive .c-hamburger__line::before {
  -webkit-transform: rotate(36deg);
          transform: rotate(36deg);
}
.is-drawerActive .c-hamburger__line::after {
  -webkit-transform: rotate(-36deg);
          transform: rotate(-36deg);
}

/*------------------------------------------
 *  下層ページMV
 *------------------------------------------*/
.c-sub-mv {
  font-weight: 700;
  color: #fff;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size:cover;
  height:calc(200/16*1rem);
  display: flex;
  justify-content: center;
  align-items:center; 
  padding-top:calc(var(--height-header)*1px);
  padding-left: calc(var(--width-header)/16*1rem);
}
#error-404 .c-sub-mv {
  background-image: url("../img/common/404-mt.webp");
}
#privacy .c-sub-mv {
  background-image: url("../img/common/pp-mt.webp");
}
#contact .c-sub-mv {
  background-image: url("../img/common/contact-mt.webp");
}

.c-sub-mv__ttl {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.c-sub-mv__ttl--en {
  font-size: calc(44/16*1rem);
  letter-spacing: .04em;
  text-transform:uppercase;
}
.c-sub-mv__ttl--jp {
  font-size: calc(15/16*1rem);
  font-weight:500;
  letter-spacing: .04em;
}
/* PC */
@media screen and (min-width: 768px) {
  .c-sub-mv {
    height:calc(385/16*1rem);
    padding-top:0;
  }
  .c-sub-mv__ttl--en {
    font-size: calc(86/16*1rem);
  }
  .c-sub-mv__ttl--jp {
    font-size: calc(15/16*1rem);
  }
}

/*------------------------------------------
 *  パンくず
 *------------------------------------------*/
.c-breadcrumb {
  margin-top: calc(10/16*1rem);
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
}
.c-breadcrumb__item {
  position: relative;
  line-height: 1;
}
.c-breadcrumb__item:not(:first-child)::before {
  content: "";
  position: absolute;
  top: 50%;
  left: -0.8em;
  width: 6px;
  height: 6px;
  border-right: 1px solid #7a7b8d;
  border-bottom: 1px solid #7a7b8d;
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
.c-breadcrumb__item + .c-breadcrumb__item {
  margin-left: 1.2em;
}
.c-breadcrumb__item a {
  font-size: 0.85rem;
  line-height: 1;
  color: #7a7b8d;
  text-decoration: underline;
}
/* PC */
@media screen and (min-width: 768px) {
  .c-breadcrumb__item:not(:first-child)::before {
    left: -0.9em;
    width: 7px;
    height: 7px;
    border-right: 2px solid #7a7b8d;
    border-bottom: 2px solid #7a7b8d;
    -webkit-transform: translateY(-30%) rotate(-45deg);
            transform: translateY(-30%) rotate(-45deg);
  }
  .c-breadcrumb__item + .c-breadcrumb__item {
    margin-left: 1.5em;
  }
}

/*------------------------------------------
 *  ページトップ
 *------------------------------------------*/
.c-page-top {
  position: fixed;
  bottom: calc(10/16*1rem);
  right: 3%;
  width: calc(50/16*1rem);
  height: calc(50/16*1rem);
  z-index: var(--l-layer__floating);
}
.c-page-top a {
  position: relative;
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0,0,0,0.9);
  transition: 0.3s ease-out;
}
#page-top a::before {
  position: absolute;
  top: calc(50% - 10px/2);
  left: calc(50% - 16px/2);
  content: '';
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  transform: rotate(45deg);
}
.c-page-top span {
  visibility: hidden;
  opacity: 0;
}
/* PC */
@media screen and (min-width: 768px) {
  .c-page-top {
    bottom: calc(37/16*1rem);
    right: 2%;
    width: calc(60/16*1rem);
    height: calc(60/16*1rem);
  }
}

/*------------------------------------------
 *  セクションタイトル・リード文
 *------------------------------------------*/
.c-sec-ttl {
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
          align-items: center;
  gap: 1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
/* アニメーション用背景 */
.c-sec-ttl::before {
  position: absolute;
  inset: 0;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  transition: -webkit-transform 1s ease;
  transition: transform 1s ease;
  transition: transform 1s ease, -webkit-transform 1s ease;
  z-index: 2;
}
.l-section.in-view .c-sec-ttl::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
}
/* 線 */
.c-sec-ttl::after {
  position: absolute;
  bottom: 43%;
  left: calc(100% + 2em);
  content: '';
  display: block;
  width: 0;
  border-top: 10px solid #FFF000;
  transition: width 1s ease 0.5s;
  z-index: 3;
}
.l-section.in-view .c-sec-ttl::after {
  width: 100vw;
}
/* 英語タイトル */
.c-sec-ttl__main {
  font-size: calc(50/16*1rem);
  font-weight: 600;
}
/* 日本語タイトル */
.c-sec-ttl__sub {
  position: relative;
  font-size: calc(14/16*1rem);
  font-weight: 700;
}
/* リード文 */
.c-sec-lead {
  margin-top: calc(40/16*1rem);
  font-size: calc(15/16*1rem);
  opacity: 0;
  transition: opacity 1s ease 0.5s;
  line-height: 1.8;
}
.l-section.in-view .c-sec-lead {
  opacity: 1;
}
/* PC */
@media screen and (min-width: 768px) {
  .c-sec-ttl {
    gap: 2em;
  }
  /* 線 */
  .c-sec-ttl::after {
    left: calc(100% + 3.5em);
  }
  .c-sec-ttl__main {
    font-size: calc(120/16*1rem);
  }
  .c-sec-ttl__sub {
    font-size: calc(17/16*1rem);
    padding-top: 1em;
  }
  .c-sec-ttl::after {
    border-top-width: 18px;
    bottom:40%;
  }
  .c-sec-lead {
    font-size: calc(15/16*1rem);
    line-height: 2.1;
  }
}

/*------------------------------------------
 *  カード
 *------------------------------------------*/
.c-card {
  position: relative;
  padding-inline: calc(20/16*1rem);
}
/* 左画像・右コンテンツ */
.c-card--right {
  padding-right: 0;
}
/* 左コンテンツ・右画像 */
.c-card--left {
  padding-left: 0;
}
/* 画像 */
.c-card__img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-card__img{
  position: relative;
}
.c-card__img--num{
  font-family: "Antonio", sans-serif;
  line-height: 1;
  font-size:calc(80/16*1rem);
  position: absolute;
  bottom:-.5em;
  right:.5em;
  color:rgba(255,240,0,0.9);
  letter-spacing: .03em;
  opacity: 0;
  transition: opacity 0.5s ease-in-out 0.78s;
}
.c-card__img--num.in-view {
  opacity: 1;
}
.c-card:nth-child(even) .c-card__img--num{
  right:unset;
  left:.5em;
}
.c-card--right .c-card__img{
  right:calc(-20/16*1rem);
}
.c-card--left .c-card__img{
  left:calc(-20/16*1rem);
}
.c-card--right .c-card__img--inner{
  clip-path: inset(0 100% 0 0);
  transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.c-card--right.in-view .c-card__img--inner{
  clip-path: inset(0);
}
.c-card--left .c-card__img--inner{
  clip-path: inset(0 100% 0 0);
  transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.c-card--left.in-view .c-card__img--inner{
  clip-path: inset(0);
}
/* コンテンツ */
.c-card__contents {
  position: relative;
  padding: calc(30/16*1rem) 0;
  width: 100%;
  /*max-width: 700px;*/
  opacity: 0;
  transition: opacity 1s ease-in-out, -webkit-transform 0.5s ease-in-out;
  transition: transform 0.5s ease-in-out, opacity 1s ease-in-out;
  transition: transform 0.5s ease-in-out, opacity 1s ease-in-out, -webkit-transform 0.5s ease-in-out;
  overflow: hidden;
}
.c-card--right .c-card__contents {
  margin-inline: auto 0;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.c-card--left .c-card__contents {
  margin-inline: 0 auto;
  -webkit-transform: translateX(-100%);
          transform: translateX(-100%);
}
.c-card.in-view .c-card__contents {
  -webkit-transform: translateX(0);
          transform: translateX(0);
  opacity: 1;
}
/* コンテンツ背景 */
.c-card__contents::before {
  position: absolute;
  display: block;
  content: '';
  top: 0;
  bottom: 0;
  width: 100vw;
  height: 100%;
  z-index: -1;
}
.c-card--right .c-card__contents::before {
  left: 0;
}
.c-card--left .c-card__contents::before {
  right: 0;
}
.c-card--right .c-card__contents{
  left: 0;
}
/* 見出し */
.c-card__head {
  position: relative;
  display: -webkit-flex;
  display: flex;
  gap: 1em;
  -webkit-align-items: center;
          align-items: center;
  overflow: hidden;
}
/* 見出しカバー（アニメーション用） */
.c-card__head::before {
  position: absolute;
  inset: 0;
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  transition: -webkit-transform 0.5s ease 1s;
  transition: transform 0.5s ease 1s;
  transition: transform 0.5s ease 1s, -webkit-transform 0.5s ease 1s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  z-index: 2;
}
.c-card.in-view .c-card__head::before {
  -webkit-transform: translateX(100%);
          transform: translateX(100%);
  background-color: #eee;
}
/* 見出し ＞ タイトル */
.c-card__ttl {
  font-size: calc(24/16*1rem);
  font-weight: 500;
  padding-bottom:calc(10/16*1rem);
}
.c-card--left .c-card__ttl {
  margin-left:calc(20/16*1rem);
}
/* 文章 */
.c-card__txt {
  position: relative;
  margin-top: calc(40/16*1rem);
  transition: opacity 0.6s ease 0.5s, -webkit-transform 0.6s ease 0.5s;
  transition: transform 0.6s ease 0.5s, opacity 0.6s ease 0.5s;
  transition: transform 0.6s ease 0.5s, opacity 0.6s ease 0.5s, -webkit-transform 0.6s ease 0.5s;
  font-size: calc(15/16*1rem);
  line-height: 1.8;
}
.c-card--left .c-card__txt {
  padding-left:calc(20/16*1rem);
}
.c-card--right .c-card__txt {
  padding-right:calc(20/16*1rem);
}
.c-card--left.in-view .c-card__txt p {
  animation-name: fadeIn-left;
  animation-delay: 1.3s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  transform: translateX(-50px);
  opacity: 0;
}
@keyframes fadeIn-left {
  0% {
  }
  100% {
      transform: translateX(0);
      opacity: 1;
  }
}
.c-card--right.in-view .c-card__txt p {
  animation-name: fadeIn-right;
  animation-delay: 1.3s;
  animation-duration: 0.5s;
  animation-fill-mode: forwards;
  transform: translateX(-50px);
  opacity: 0;
}
@keyframes fadeIn-right {
  0% {
  }
  100% {
      transform: translateX(0);
      opacity: 1;
  }
}
/* 線 */
.c-card__txt::before {
  position: absolute;
  top: -1.8rem;
  content: '';
  display: block;
  width: 100vw;
  border-top: 1px solid #958E5F;
  transition: -webkit-transform 2s ease 0.5s;
  transition: transform 2s ease 0.5s;
  transition: transform 2s ease 0.5s, -webkit-transform 2s ease 0.5s;
  -webkit-animation-fill-mode: forwards;
          animation-fill-mode: forwards;
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
}
.c-card--right .c-card__txt::before {
  left: 0;
}
.c-card__txt::before {
  left: calc(20/16*1rem);
}
.c-card.in-view .c-card__txt::before {
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
/* PC */
@media screen and (min-width: 768px) {
  .c-card {
    overflow: visible;
    padding:0 calc(215/16*1rem);
  }
  .c-card__inner{
    padding: calc(40/16*1rem) 0;
    width:100%;
    max-width:calc(1060/16*1rem);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(60/16*1rem);
    overflow: visible;
    margin-inline: auto;
  }
  /* 画像 */
  .c-card__img--num{
    font-size:calc(250/16*1rem);
    bottom:-.2em;
    right:.05em;
  }
  .c-card:nth-child(even) .c-card__img--num{
    left:.05em;
  }
  .c-card--right .c-card__img {
    order:1;
    right:0;
  }
  .c-card--left .c-card__img {
    order:2;
    left:0;
  }
  .c-card__img{
    position:relative;
    height:calc(385/16*1rem);
  }
  .c-card__img--inner{
    height:calc(385/16*1rem);
    position:absolute;
    overflow:hidden;
    top:0;
  }
  .c-card__img--inner img {
    width: 100%;
    height: auto;
    max-width: 100%;
    max-height: none;
    min-height:100%;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    object-fit: cover;
    object-position: center center;
    font-family: 'object-fit: cover; object-position: center center;'; 
  }
  .c-card--right .c-card__img--inner {
    width:calc((602/16*1rem) + ((100vw - (1144/16*1rem))/2));
    right:0;
  }
  .c-card--left .c-card__img--inner {
    width:calc((485/16*1rem) + ((100vw - (1144/16*1rem))/2));
    left:0;
  }
  .c-card__contents{
    width:100%;
    max-width:calc(480/16*1rem);
    overflow: hidden;
  }
  .c-card--right .c-card__contents {
    order:2;
  }
  .c-card--left .c-card__contents {
    order:1;
    width:100%;
    padding-right:0;
  }
  /* 線 */
  .c-card__txt::before {
    width:100%;
  }
  /* 見出し */
  .c-card__head {
    gap: 2em;
  }
  /* 見出し ＞ 番号 */
  .c-card__no {
    font-size: calc(64/16*1rem);
  }
  /* 見出し ＞ タイトル */
  .c-card__ttl {
    font-size: calc(40/16*1rem);
  }
  .c-card__txt {
    font-size: calc(16/16*1rem);
    line-height:2;
  }
  .c-card--right .c-card__txt {
    padding-right:0;
  }
}


/*------------------------------------------
 *  ボタン
 *------------------------------------------*/
 /* ベーシックなボタン */
.c-btn {
  width:calc(200/16*1rem);
  height:calc(70/16*1rem);
  padding-bottom:calc(3/16*1rem);
  display: flex;
  justify-content: center;
  align-items:center;
  color:#fff;
  background-color: rgba(0,0,0,0.9);
  line-height: 1;
  position: relative;
  overflow: hidden;
  transition: ease .2s;
}
.c-btn:hover{
  opacity: 1;
}
.c-btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: #FFF000;
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.c-btn:hover:before{
  transform-origin:left top;
  transform:scale(1, 1);
}
.c-btn span{
  font-size:calc(20/16*1rem);
  font-weight: 500;
  letter-spacing: .08em;
  position: relative;
  z-index: 3;
  transition: 0.2s linear;
}
.c-btn:hover span{
  color:#000;
}
.c-btn--clear {
  padding: 1.6em 4em;
  min-width: 340px;
  border: 3px solid #fff;
  background-color: transparent;
  color: #fff;
  font-weight: 700;
}
/* コンタクトボタン */
.p-sub-contact__btn .c-btn{
  width:calc(300/16*1rem);
}
.p-sub-contact__btn .c-btn span{
  font-size:calc(20/16*1rem);
}
/* ホバーエフェクト */
@media (hover: hover) {
  .c-btn--clear:is(:hover,:focus-visible) {
    background-color: #fff;
    color: var(--color-font-base);
    opacity: 1;
  }
}
/* PC */
@media screen and (min-width: 768px) {
  .c-btn{
    width:calc(300/16*1rem);
    height:calc(90/16*1rem);
  }
  .c-btn span{
    font-size:calc(32/16*1rem);
  }
  /* コンタクトボタン */
  .p-sub-contact__btn .c-btn{
    max-width:calc(400/16*1rem);
    min-width:calc(300/16*1rem);
    width:auto;
    padding:0 calc(20/16*1rem);
  }
  .p-sub-contact__btn .c-btn span{
    font-size:calc(20/16*1rem);
  }
  .p-sub-contact__btn .c-btn.c-btn-return{
    min-width:calc(150/16*1rem);
  }
}

/*------------------------------------------
 *  ニュースリスト(MV)
 *------------------------------------------*/
.c-mv-news {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
}
.c-mv-news__date {
}
.c-mv-news__ttl {
  white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}
/* PC */
@media screen and (min-width: 768px) {
  .c-mv-news {
    -webkit-flex-direction: row;
            flex-direction: row;
    gap: 1em;
    -webkit-align-items: center;
            align-items: center;
  }
}

/*------------------------------------------
 *  ニュースリスト
 *------------------------------------------*/
.c-news__link {
  display: grid;
  grid-template-columns: auto 1fr;
  grid-template-rows: auto 1fr;
  gap: 0.5em 1em;
  grid-template-areas:
  "date category"
  "ttl ttl";
  -webkit-align-items: center;
          align-items: center;
  pointer-events: none;
}
.c-news__date {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: date;
  letter-spacing: .1em;
}
.c-news__category {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  grid-area: category;
  display: inline-block;
  padding-inline: 1em;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border: 1px solid var(--color-font-base);
  text-align: center;
}
.c-news__ttl {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  -ms-grid-column-span: 3;
  grid-area: ttl;
}
/* PC */
@media screen and (min-width: 768px) {
  .c-news__link {
    grid-template-columns: auto calc(90/16*1rem) 1fr;
    grid-template-rows: auto;
    grid-template-areas: "date category ttl";
    gap: 1em;
    -webkit-align-items: baseline;
            align-items: baseline;
  }
  .c-news__date {
    -ms-grid-row: 1;
    -ms-grid-column: 1;
    letter-spacing: .1em;
  }
  .c-news__category {
    -ms-grid-row: 1;
    -ms-grid-column: 3;
  }
  .c-news__ttl {
    -ms-grid-row: 1;
    -ms-grid-column: 5;
    -ms-grid-column-span: 1;
  }
}

/*------------------------------------------
 *  お問い合わせフォーム
 *------------------------------------------*/
.c-form__row {
  padding-block: calc(30/16*1rem);
  max-width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: calc(20/16*1rem);
  border-bottom: 1px solid var(--color-gray-base);
}
.c-form__head {
  margin-top: calc(6/16*1rem);
  display: -webkit-flex;
  display: flex;
}
/* タイトルラベル */
.c-form__ttl {
  font-weight: 600;
  font-size: calc(16/16*1rem);
  letter-spacing: .04em;
  line-height: calc(27/16);
  color: #3a2c2c;
}
/* 必須ラベル */
.c-form__required {
  display: inline-block;
  margin-left: 2em;
  width: calc(50/16*1rem);
  height: calc(22/16*1rem);
  font-weight: 600;
  font-size: calc(12/16*1rem);
  letter-spacing: .04em;
  line-height: calc(27/16);
  color: #fff;
  background-color: var(--color-accent);
  text-align: center;
}
/* 入力項目 */
.c-form__input {
  width: 100%;
  padding: calc(7/16*1rem) calc(20/16*1rem) calc(5/16*1rem) calc(20/16*1rem);
  border-radius: 4px;
  background: var(--color-gray-light);
  border: none;
}
.c-form__input--textarea{
  line-height: 1.4;
}
.c-form__input + .c-form__input {
  margin-top: calc(20/16*1rem);
}
.c-form__input::-webkit-input-placeholder {
  font-size: calc(14/16*1rem);
  letter-spacing: .01em;
  color: #bbb;
}
.c-form__input::-moz-placeholder {
  font-size: calc(16/16*1rem);
  letter-spacing: .04em;
  color: #bbb;
}
.c-form__input::placeholder {
  font-size: calc(16/16*1rem);
  letter-spacing: .04em;
  color: #bbb;
}
/* ラジオボタン */
.c-form__radio {
  display: block;
}
.c-form__radio-item label {
  position: relative;
  padding-left: 2em;
  line-height: 2;
}
.c-form__radio-item label::before,
.c-form__radio-item label::after {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  content: "";
  display: block;
  border-radius: 50%;
}
.c-form__radio-item label::before {
  width: 20px;
  height: 20px;
  left: 0;
  background-color: #fff;
  border: 1px solid var(--color-gray-base);
}
.c-form__radio-item label::after {
  width: 12px;
  height: 12px;
  left: 4px;
  background-color: var(--color-accent);
  opacity: 0;
}
.c-form__radio-item input[type="radio"]:checked + label::after {
  opacity: 1;
}
/* セレクトボックス */
.c-form__select-wrap {
  position: relative;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
.c-form__select-wrap::after {
  content: "";
  position: absolute;
  right: 22px;
  top: 16px;
  width: 10px;
  height: 10px;
  border-top: 2px solid #ccc;
  border-left: 2px solid #ccc;
  -webkit-transform: translateY(-50%) rotate(-135deg);
          transform: translateY(-50%) rotate(-135deg);
  font-size: 20px;
  pointer-events: none;
}
.c-form__select-box {
  padding: 0 40px 0 20px;
  min-height: 2.6em;
  margin: 0 auto 0 0;
  color: #757575;
  background-color: #fff;
  border: solid 1px #dedede;
  border-radius: 3px;
}
.c-form__select-box option {
  color: #000;
}
/* チェックボックス */
.c-form__checkbox-label {
  position: relative;
  display: inline-block;
  margin-left: 1.8em;
}
.c-form__checkbox-label::before{
  content: '';
  display: block;
  position: absolute;
  top: 1em;
  left: -1.8em;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  width: 20px;
  height: 20px;
  background-color: #fff;
  border: 1px solid #ddd;
  border-radius: 4px;
}
.c-form__checkbox-label:after {
  position: absolute;
  content: "";
  display: block;
  top: 1em;
  left: -1.4em;
  width: 7px;
  height: 11px;
  border-right: 2px solid #1a049b;
  border-bottom: 2px solid #1a049b;
  -webkit-transform: translateY(-70%) rotate(45deg);
          transform: translateY(-70%) rotate(45deg);
  opacity: 0;
}
.c-form__checkbox:checked {
  color: #1a049b;
}
.c-form__checkbox:checked + .c-form__checkbox-label:after {
  opacity: 1;
}
/* メッセージ */
.c-form__msg {
  margin-top: calc(4/16*1rem);
  font-size: 0.8rem;
}
/* 確認データ */
.c-form__confirm-data {
  display: block;
  padding-inline: 1em;
  font-size: calc(16/16*1rem);
  letter-spacing: .04em;
  line-height: calc(27/16);
}
/* PC */
@media screen and (min-width: 768px) {
  /* ラジオボタン */
  .c-form__radio {
    display: -webkit-flex;
    display: flex;
  }
  .c-form__row {
    grid-template-columns: calc(230/16*1rem) 1fr;
    gap: calc(33/16*1rem);
  }
  .c-form__head {
    -webkit-justify-content: space-between;
        justify-content: space-between;
  }
  .c-form__required {
    margin-left: 0;
  }
  .c-form__input::-webkit-input-placeholder {
    font-size: calc(16/16*1rem);
    letter-spacing: .04em;
  }
  .c-form__confirm-data {
    margin-top: 0.5em;
  }
}

/*=================================================
 *  Project ページ固有
 *================================================*/
#wrapper {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
  flex-direction: column;
  -webkit-justify-content: space-between;
      justify-content: space-between;
  min-height: 100vh;
  overflow: hidden;
}

/*------------------------------------------
 *  ヘッダー
 *------------------------------------------*/
.p-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: calc(var(--height-header)*1px);
  background-color: rgba(255, 255, 255, 0.8);
  z-index: var(--l-layer__header);
}
/* 背景色あり */
.p-header--colored {
  background-color: rgba(255, 255, 255, 0.8);
}
 /* インナー */
.p-header__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: 1fr;
  grid-template-areas: "head hamburger";
  -webkit-align-items: center;
          align-items: center;
  height: inherit;
  text-align: center;
  overflow-y: initial;
}
/* ロゴ */
.p-header__head {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  grid-area: head;
}
.is-drawerActive .p-header__inner > .p-header__head {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
}
.p-header__head a {
  display: -webkit-flex;
  display: flex;
  gap: calc(10/16*1rem);
  -webkit-align-items: flex-end;
          align-items: flex-end;
  height: 100%;
}
.p-header__logo img{
  width: auto;
  height: calc(45/16*1rem);
}
/* ハンバーガー */
.p-header__hamburger {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: hamburger;
}
.is-drawerActive .p-header__inner > .p-header__hamburger {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
}
/* メニュー */
.p-header__menu-wrapper {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  -ms-grid-column-span: 2;
  grid-area: menu;
}
.p-header__menu {
  display: none;
  margin: 0 auto;
}
.p-header__menu-list{
  padding-bottom: calc(20/16*1rem);
  letter-spacing: .08em;
}
.p-header__menu-item:not(:last-child){
  margin-bottom: calc(10/16*1rem);
}
.p-header__menu-item a,
.p-header__privacy a {
  display: inline-block;
  padding: calc(8/16*1rem) 0;
  white-space: nowrap;
  font-size: calc(20/16*1rem);
  font-weight: 500;
}
/* PrivacyPolicy */
.p-header__privacy {
  margin-top: calc(20/1080*100vh);
  text-align: center;
}
.p-header__privacy a {
  font-size: calc(16/16*1rem);
}
/* ドロワーメニューOPEN */
.is-drawerActive .p-header {
  bottom: 0;
  background-color: #fff;
  height: 100vh;
}
.is-drawerActive .p-header__inner {
  height: auto;
  grid-template-columns: 1fr auto;
  grid-template-rows: calc(var(--height-header)*1px) 1fr auto;
  grid-template-areas:
  "head hamburger"
  "menu menu"
  "sns sns";
}
.is-drawerActive .p-nav__logo{
  border-bottom:#000 solid 1px;
  text-align: center;
  padding-bottom:calc(40/16*1rem);
  margin-bottom:calc(28/16*1rem);
}
.is-drawerActive .p-nav__logo img{
  width:calc(90/16*1rem);
  height:auto;
}
.is-drawerActive .p-header__menu-wrapper {
  margin-inline: auto;
  width:calc(200/16*1rem);
  position: relative;
  top:calc(-20/16*1rem);
}
.is-drawerActive .p-header__menu {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-direction: column;
          flex-direction: column;
}
.is-drawerActive .p-header__logo{
  display: none;
}
/* Contact */
.is-drawerActive .p-header__contact a{
  width:calc(200/16*1rem);
  height:calc(70/16*1rem);
  padding-bottom:calc(3/16*1rem);
  display: flex;
  justify-content: center;
  align-items:center;
  color:#fff;
  background-color: rgba(0,0,0,0.9);
  line-height: 1;
  position: relative;
  overflow: hidden;
  transition: ease .2s;
}
.is-drawerActive .p-header__contact a:hover{
  opacity: 1;
}
.is-drawerActive .p-header__contact a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: rgba(255,255,255,0.2);
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.is-drawerActive .p-header__contact a:hover:before{
  transform-origin:left top;
  transform:scale(1, 1);
}
.is-drawerActive .p-header__contact a span{
  font-size:calc(20/16*1rem);
  font-weight: 500;
  letter-spacing: .08em;
  position: relative;
  z-index: 3;
}
/* PC */
@media screen and (min-width: 768px) {
  /* ヘッダー */
  .p-header {
    top: 0;
    bottom: 0;
    left: 0;
    right: auto;
    width: calc(var(--width-header)/16*1rem);
    height: auto;
    background-color: transparent;
  }
  .is-drawerActive .p-header {
    right: auto;
    width: calc(var(--width-header)/16*1rem);
  }
   /* インナー */
  .p-header__inner {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
    grid-template-areas: "head" "menu" "sns";
    padding: calc(40/16*1rem) calc(20/16*1rem);
    text-align: center;
    background-color: #fff;
  }
  /* ロゴ */
  .p-header__head a {
    -webkit-flex-direction: column;
            flex-direction: column;
    -webkit-align-items: center;
            align-items: center;
    height: auto;
  }
  .p-header__logo {
    border-bottom:#000 solid 1px;
    padding-bottom:calc(35/16*1rem);
    margin-bottom:calc(28/16*1rem);
    width:calc(135/16*1rem);
    text-align: center;
  }
  .p-header__logo img{
    width: calc(86/16*1rem);
    height:auto;
    margin-inline: auto;
  }
  /* メニュー */
  .p-header__menu-wrapper{
    margin-block: 0;
  }
  .is-drawerActive .p-header__menu-wrapper {
    margin-block: 0;
  }
  .p-header__hamburger {
    display: none;
  }
  .p-header__menu {
    display: block;
    margin-top: 0;
  }
  .p-header__menu-list {
    padding-bottom: calc(25/16*1rem);
    letter-spacing: .08em;
  }
  .p-header__menu-item:not(:last-child){
    margin-bottom: calc(10/16*1rem);
  }
  .p-header__menu-item a{
    padding: calc(8/16*1rem) 0;
    white-space: nowrap;
    font-size: calc(20/16*1rem);
    font-weight: 500;
  }
  /* PrivacyPolicy */
  .p-header__privacy {
    margin-top: calc(15/16*1rem);
    text-align: center;
  }
  .p-header__privacy a {
    font-size: calc(16/16*1rem);
  }
  /* Contact */
  .p-header__contact a{
    width:calc(160/16*1rem);
    height:calc(55/16*1rem);
    padding-bottom:calc(3/16*1rem);
    display: flex;
    justify-content: center;
    align-items:center;
    color:#fff;
    background-color: rgba(0,0,0,0.9);
    line-height: 1;
    position: relative;
    overflow: hidden;
    transition: ease .2s;
    margin-inline: auto;
  }
  .p-header__contact a:hover{
    opacity: 1;
  }
  .p-header__contact a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background-color: #FFF000;
    width: 100%;
    height: 100%;
    transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;
  }
  .p-header__contact a:hover:before{
    transform-origin:left top;
    transform:scale(1, 1);
  }
  .p-header__contact a span{
    font-size:calc(20/16*1rem);
    font-weight: 500;
    letter-spacing: .08em;
    position: relative;
    z-index: 3;
    transition: 0.2s linear;
  }
  .p-header__contact a:hover span{
    color:#000;
  }
}

/*------------------------------------------
 *  フッター
 *------------------------------------------*/
.p-footer {
  background-color: #eeeeee;
  position: relative;
  z-index:5;
}
.p-footer__bottom{
  padding-top:calc(80/16*1rem);
}
/* コンタクト */
.p-footer__contact{
  background: url("../img/common/ft-contact-bg.webp") no-repeat 50% 0/cover;
  height:calc(160/16*1rem);
  display: flex;
  justify-content: center;
  align-items:center;
  position: relative;
  overflow: hidden;
}
.p-footer__contact.in-view::before {
  animation: footer-contact 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #fff;
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
@keyframes footer-contact {
  100% {
    transform: translateX(100%);
  }
}
.p-footer__contact a{
  width:calc(280/16*1rem);
  height:calc(70/16*1rem);
  display: flex;
  justify-content: center;
  align-items:center;
  color:#fff;
  background-color: rgba(0,0,0,0.9);
  line-height: 1;
  position: relative;
  overflow: hidden;
  transition: ease .2s;
}
.p-footer__contact.in-view a{
  animation-name: footer-contact-btn;
  animation-duration: 1.6s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
@keyframes footer-contact-btn {
  0% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.p-footer__contact a:hover{
  opacity: 1;
}
.p-footer__contact a:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background-color: #FFF000;
  width: 100%;
  height: 100%;
  transition: transform .6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
.p-footer__contact a:hover:before{
  transform-origin:left top;
  transform:scale(1, 1);
}
.p-footer__contact a span{
  font-size:calc(24/16*1rem);
  font-weight: 500;
  letter-spacing: .08em;
  position: relative;
  z-index: 3;
  transition: 0.2s linear;
}
.p-footer__contact a:hover span{
  color:#000;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-footer__bottom{
    padding-top:calc(80/16*1rem);
  }
  .p-footer__contact{
    height:calc(340/16*1rem);
    padding-left: calc(var(--width-header)/16*1rem);
  }
  .p-footer__contact a{
    width:calc(480/16*1rem);
    height:calc(120/16*1rem);
  }
  .p-footer__contact a span{
    font-size:calc(38/16*1rem);
  }
}
/* コピーライト */
.p-footer__copyright {
  padding-block: calc(20/16*1rem);
  font-size:calc(14/16*1rem);
  text-align: center;  
}
.p-footer__copyright small{
  font-weight: 400;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-footer__copyright {
    padding-block: calc(35/16*1rem);
    font-size:calc(15/16*1rem);
    padding-left: calc(var(--width-header)/16*1rem);
  }
}

/*------------------------------------------
 *  TOPページ
 *------------------------------------------*/

/*----------------- MV -----------------*/
.p-top-mv {
  position: relative;
}
.p-top-mv__img-wrap{
  overflow: hidden;
  position: relative;
}
.p-top-mv.in-view .p-top-mv__img-wrap::before {
  animation: mv-img-wrap 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #fff;
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
@keyframes mv-img-wrap {
  100% {
    transform: translateX(100%);
  }
}
.p-top-mv__img {
  width: 100%;
  height: 100vh;
  height: 100svh;
  max-height: 880px;
  -o-object-fit: cover;
     object-fit: cover;
}
.p-top-mv__txt {
  position: absolute;
  top: 0;
  left:0;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items:center;
  width:100%;
  height:100%;
  padding-bottom:calc(60/16*1rem);
}
/* 文字が滑らかに表示される */
.p-top-mv__txt {
  clip-path: inset(0 100% 0 0);
  transition: 1.4s cubic-bezier(0.37, 0, 0.63, 1);
  transition-property: clip-path;
}
.p-top-mv__txt.is-txt-change{
  clip-path: inset(0);
}
.p-top-mv__txt span{
  text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.2);
  font-size:calc(32/16*1rem);
  display: inline-block;
  font-weight: 500;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-mv__txt {
    padding-left: calc(var(--width-header)/16*1rem);
    /*padding-bottom:calc(40/16*1rem);*/
    padding-bottom:calc(100/16*1rem);
  }
  .p-top-mv__txt span{
    font-size:calc(48/16*1rem);
  }
}

/*----------------- Business -----------------*/
.p-top-business{
  padding-block:0;
  overflow-x: hidden;
  background-color: #fff;
}
.p-top-business__outer{
  background-color: #eee;
  margin-inline: calc(20/16*1rem);
  padding-block: calc(var(--space-lg)/16*1rem/2) calc(var(--space-lg)/16*1rem);
}
.p-top-business__inner{
  margin-bottom: calc(20/16*1rem);
}
.p-top-business__item + .p-top-business__item {
  margin-top: calc(30/16*1rem);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-business{
    padding-left:calc(95/16*1rem) !important;
  }
  .p-top-business__outer{
    margin-right: calc(95/16*1rem);
    padding-left: calc(155/16*1rem);
    padding-block: calc(var(--space-lg)/16*1rem) calc((var(--space-lg)/16*1rem)*1.5);
    overflow: visible;
  }
  .p-top-business__inner{
    margin-bottom: 0;
  }
  .p-top-business__contents{
    position: relative;
    left: calc(-210/16*1rem);
    width:100vw;
  }
  .p-top-business__list{
    padding-top: calc(40/16*1rem);
  }
}

/*----------------- Puroperty -----------------*/
.p-top-puroperty {
  background: url("../img/top/top-puroperty-bg.webp") no-repeat 50% 50%/cover;
  color:#fff;
  position: relative;
}
.p-top-puroperty.in-view::before {
  animation: top-puroperty-wrap 1.2s cubic-bezier(0.4, 0, 0.2, 1) forwards;
  background: #fff;
  content: '';
  inset: 0;
  pointer-events: none;
  position: absolute;
  z-index: 1;
}
@keyframes top-puroperty-wrap {
  100% {
    transform: translateX(100%);
  }
}
.p-top-puroperty__inner,
.p-top-puroperty__list{
  opacity: 0;
}
.p-top-puroperty.in-view .p-top-puroperty__inner,
.p-top-puroperty.in-view .p-top-puroperty__list{
  animation-name: top-puroperty-conts;
  animation-duration: 1.6s;
  animation-timing-function: ease-out;
  animation-fill-mode: forwards;
}
@keyframes top-puroperty-conts {
  0% {
    opacity: 0;
  }
  80% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-puroperty {
    padding-block-end: calc((var(--space-lg)/16*1rem)*1.25);
  }
}
/* タイトル */
.p-top-puroperty .c-sec-ttl::after {
  display: none;
}
/* リード */
.p-top-puroperty__inner{
  margin-bottom:calc(50/16*1rem);
  padding-inline:calc(40/16*1rem);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-puroperty__inner{
    padding-inline-start:calc(80/16*1rem);
  }
}
/* リスト */
.p-top-puroperty__contents{
  margin-inline-start:calc(40/16*1rem);
  margin-inline-end:0;
  width:120%;
}
.p-top-puroperty__list{
  display: flex;
}
.p-top-puroperty__item{
  min-width:calc(280/16*1rem);
  padding-bottom:6px;
}
.p-top-puroperty__item--inner{
  background-color: rgba(255,255,255,0.9);
  padding:calc(40/16*1rem) calc(20/16*1rem);
  box-shadow: 6px 6px rgba(255,240,0,0.9);
  color:var(--color-font-base);
  margin-bottom: calc(10/16*1rem) !important;
  margin-right: calc(10/16*1rem) !important;
  height:100%;
}
.p-top-puroperty__item--icon{
  display: flex;
  justify-content: center;
  align-items:center; 
  margin-bottom:calc(20/16*1rem);
  margin-inline: auto;
  background-color: #333;
  border-radius: 50%;
  width:calc(90/16*1rem);
  height:calc(90/16*1rem);
}
.p-top-puroperty__item--icon img{
  width:calc(48/16*1rem);
  height:auto;
}
.p-top-puroperty__item--ttl{
  text-align: center;
  margin-bottom:calc(30/16*1rem);
  font-size:calc(22/16*1rem);
  font-weight: 500;
}
.p-top-puroperty__item--list{
  color:#444;
}
.p-top-puroperty__item--list--item{
  display: grid;
  grid-template-columns: calc(70/16*1rem) 1fr;
  gap: calc(10/16*1rem);
}
.p-top-puroperty__item--list--item:not(:last-child){
  margin-bottom:calc(18/16*1rem);
}
.p-top-puroperty__item--list--item dt{
  font-size:calc(12/16*1rem);
  background-color: #D9D9D9;
  display: flex;
  justify-content: center;
  align-items:center; 
}
.p-top-puroperty__item--list--item dd{
  font-size:calc(14/16*1rem);
}
/* w480- */
@media screen and (max-width: 480px) {
  .p-top-puroperty__item--inner{
    margin-right: calc(10/16*1rem) !important;
  }
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-puroperty__contents{
    padding-inline-start:calc(80/16*1rem);
    padding-inline-end:0;
    margin-inline-start:0;
    margin-inline-end:0;
    width:100%;
  }
  .p-top-puroperty__item{
    min-width:calc(340/16*1rem);
    max-width:calc(340/16*1rem);
  }
  .p-top-puroperty__item--icon{
    width:calc(110/16*1rem);
    height:calc(110/16*1rem);
  }
  .p-top-puroperty__item--ttl{
    font-size:calc(24/16*1rem);
  }
}

/*----------------- Company -----------------*/
.p-top-company{
  background: url("../img/top/top-company-bg.webp") no-repeat 120% calc(20/16*1rem)/calc(200/16*1rem) auto;
  padding-block-end: 0;
}
.p-top-company__inner{
  padding-inline: calc(40/16*1rem);
}
.p-top-company__contents.in-view {
  opacity: 1;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-company{
    background-size: calc(578/16*1rem) auto;
    background-position:95% calc(50/16*1rem);
  }
  .p-top-company__inner{
    padding-inline-start: calc(80/16*1rem);
  }
}
/* タイトル */
.p-top-company .c-sec-ttl::after{ 
  left:calc((-40/16*1rem) - .3em);
}
.p-top-company.in-view .c-sec-ttl::after {
  width: calc((40/16*1rem) - .3em);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-company .c-sec-ttl::after{ 
    left:calc(-50vw - 1em);
  }
  .p-top-company.in-view .c-sec-ttl::after {
    width: calc(50vw - 1em);
  }
}
/* テーブル */
.p-top-company__contents {
  margin-top: calc(var(--space-sm)/16*1rem - 1rem);
  opacity: 0;
  transition: opacity 1s ease 0.5s;
}
.p-top-company .c-company__item {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto;
  gap: 0.5em;
  padding: 1.5em 1em;
  border-bottom: 1px solid var(--color-gray-base);
}
.p-top-company .c-company__ttl {
  font-weight: 700;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-company__contents {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: calc(100/16*1rem);
    max-width:calc(1100/16*1rem);
  }
  .c-company__item {
    grid-template-columns: 15% 1fr;
    grid-template-rows: auto;
    gap: 1em;
    -webkit-align-items: center;
            align-items: center;
  }
  .c-company__data {
    padding-left: 0;
  }
}
/* マップ */
.p-top-company__map {
  margin-top: calc((var(--space-sm)/16*1rem)*1.5);
  width: 100%;
  opacity: 0;
  transition: opacity 1s ease;
}
.p-top-company__map.in-view {
  opacity: 1;
}
.p-top-company__map iframe{
  -webkit-filter: grayscale(100%);
  -moz-filter: grayscale(100%);
  -o-filter: grayscale(100%);
  -ms-filter: grayscale(100%);
  filter: grayscale(100%);
  display: block;
  width:100%;
  height:calc(300/16*1rem);
}
.p-top-company__map-link{
  text-align: right;
  padding-block: calc(5/16*1rem) calc(10/16*1rem);
  padding-inline: calc(40/16*1rem);
}
.p-top-company__map-link a{
  display: inline-block;
  color:#666;
  font-size:calc(14/16*1rem);
}
.p-top-company__map-link a::after{
  content: "→";
  margin-left:.3em;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-company__map {
    margin-top: calc((var(--space-sm)/16*1rem)*3);
  }
  .p-top-company__map iframe{
    height:calc(415/16*1rem);
  }
  .p-top-company__map-link{
    padding-inline-end: calc((95/16*1rem)*2);
  }
}
.place-card-large{
display: none;
}

/*----------------- NEWS -----------------*/
.p-top-news{
  background-color: #fff;
  padding-block: 0;
}
.p-top-news__outer{
  background-color: #333;
  margin-inline: calc(20/16*1rem);
  padding-block: calc(40/16*1rem);
  /*overflow: hidden;*/
  color:#fff;
}
.p-top-news__contents {
  margin-top: calc(var(--space-sm)/16*1rem - 1rem);
  opacity: 0;
  transition: opacity 1s ease 0.5s;
}
.p-top-news__contents.in-view {
  opacity: 1;
}
.p-top-news__item {
  padding-block: 1.5em;
}
.p-top-news__item + .p-top-news__item {
  border-top: 1px solid #ccc;
}
.p-top-news__conts{
  padding-top:.5em;
}
.p-top-news__item a{
  display: inline-block;
  margin-top:.5em;
}
.p-top-news__item a::before{
  content: "";
  margin-right:.7em;
  background: url("../img/common/icon-link-arrow.svg") no-repeat 0 65%;
  width:calc(20/16*1rem);
  height:1em;
  display: inline-block;
}
.p-top-news__item a[target="_blank"]::after{
  content: "";
  margin-left:.7em;
  background: url("../img/common/icon-blank.svg") no-repeat 0 65%;
  width:calc(13/16*1rem);
  height:1em;
  display: inline-block;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-top-news{
    padding-left:calc(95/16*1rem) !important;
    padding-block: 0;
  }
  .p-top-news__outer{
    margin-right: calc(95/16*1rem);
    padding-left: calc(95/16*1rem);
    padding-block: calc(var(--space-lg)/16*1rem);
  }
  .p-top-news__inner{
    padding-left: calc(90/16*1rem);
  }
}

/*------------------------------------------
 *  CONTACTページ
 *------------------------------------------*/
.p-sub-contact__pp-box {
  margin-top: calc(var(--space-sm)/16*1rem);
  text-align: center;
}
.p-sub-contact__pp-box a {
  text-decoration: underline;
}
.p-sub-contact__btn--confirm {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas:
  "send"
  "return";
  gap: 2rem;
}
.p-sub-contact__return {
  grid-area: return;
  text-align: center;
}
.p-sub-contact__send {
  grid-area: send;
  text-align: center;
}
@media screen and (min-width: 768px) {
  .p-sub-contact__btn--confirm {
    grid-template-columns: calc(150/16*1rem) 1fr;
    grid-template-rows: 1fr;
    grid-template-areas:
    "return send";
    justify-content:flex-start;
    gap: 8.5rem;
  }
  .p-sub-contact__return {
    text-align: left;
  }
  .p-sub-contact__send {
    text-align: left;
  }
}

/*------------------------------------------
 *  お問い合わせ完了ページ
 *------------------------------------------*/
.p-sub-thanks {
  text-align: center;
}
.p-sub-thanks__msg-main {
  font-size: calc(24/16*1rem);
  font-weight: 700;
}
.p-sub-thanks__msg-sub {
  margin-top: calc(var(--space-sm)/16*1rem);
  padding-bottom: calc(var(--space-sm)/16*1rem);
}
.p-sub-thanks__msg-sub {
  text-align: left;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-thanks__msg-main {
    font-size: calc(32/16*1rem);
  }
  .p-sub-thanks__msg-sub {
    text-align: center;
  }
}

/*------------------------------------------
 *  404ページ
 *------------------------------------------*/
.p-sub-404 {
  text-align: center;
}
.p-sub-404__ttl {
  font-size: calc(24/16*1rem);
  font-weight: 700;
}
.p-sub-404__txt {
  margin-top: calc(var(--space-sm)/16*1rem);
  padding-bottom: calc(var(--space-sm)/16*1rem);
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-404__ttl {
    font-size: calc(32/16*1rem);
  }
}

/*------------------------------------------
 *  プライバシーポリシーページ
 *------------------------------------------*/
.p-sub-privacy {
  word-break: break-all;
  font-size:calc(14/16*1rem);
}
.p-sub-privacy a:not([href^="tel:"]) {
  text-decoration: underline;
}
.p-sub-privacy__lead,
.p-sub-privacy__txt {
  margin-bottom: calc(20/16*1rem);
}
ol + .p-sub-privacy__txt {
  margin-top: calc(20/16*1rem);
}
.p-sub-privacy__ttl {
  margin: calc(40/16*1rem) 0 calc(20/16*1rem);
  font-size: calc(16/16*1rem);
}
.p-sub-privacy__no-list {
  list-style: decimal;
  padding-left: calc(20/16*1rem);
  margin-bottom: calc(10/16*1rem);
}
.p-sub-privacy__no-list li + li,
.p-sub-privacy__brackets-list > li + li{
  margin-top: 0.7em;
}
.p-sub-privacy__single-bracket-list li + li,
.p-sub-privacy__circle-list li + li {
  margin-top: 0;
}
.p-sub-privacy__brackets-list > li{
  position: relative;
  padding-left: 1.6em;
  list-style-type: none;
  counter-increment: cnt;
}
.p-sub-privacy__brackets-list > li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: "(" counter(cnt) ") ";
}
.p-sub-privacy__single-bracket-list > li{
  position: relative;
  padding-left: 1.6em;
  list-style-type: none;
  counter-increment: cnt2;
}
.p-sub-privacy__single-bracket-list > li::before {
  position: absolute;
  top: 0;
  left: 0;
  content: counter(cnt2) ") ";
}
.p-sub-privacy__en-list {
  list-style-type: lower-alpha;
}
/* PC */
@media screen and (min-width: 768px) {
  .p-sub-privacy {
    font-size:calc(15/16*1rem);
  }
  .p-sub-privacy__ttl {
    margin: calc(60/16*1rem) 0 calc(20/16*1rem);
    font-size: calc(17/16*1rem);
  }
}
