@charset "utf-8";

@import url("https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.5.2/css/all.min.css");
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap');
@import url('https://fonts.googleapis.com/css2?family=MonteCarlo&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Oswald:wght@200..700&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Jost:ital,wght@0,100..900;1,100..900&display=swap');


@import url("slide.css");
@import url("inview.css");

:root {
	--base-color: #fff;
	--base-inverse-color: #454C50;

	--primary-color: #D7E6EF;
	--primary-inverse-color: #6E777C ;

	--black-color: #111;
  --gray-color:#333;
  --gray-sub-color:#ccc;

  --accent-color:#E85A70;

    /* Layout */
  --inner-max: 1100px;
  --padding-sp: 20px;
  --padding-pc: 24px;
	--space-large: 8vw;
}

.color-check, .color-check a {
  color: var(--accent-color);
  font-weight: 600;
}

/* Inner (container) */
.inner {
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--padding-sp);
  padding-left: var(--padding-sp);
}

/* md以上 */
@media (min-width: 768px) {
  .inner {
    /* 1100px + 24px*2 */
    max-width: calc(var(--inner-max) + (var(--padding-pc) * 2));
    padding-right: var(--padding-pc);
    padding-left: var(--padding-pc);
  }
}

/* Utilities */
.u-desktop {
  display: none;
}
@media (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

/* モバイルのみ表示 */
.u-mobile {
  display: block;
}

@media (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

@keyframes fadeIn {
	0% {opacity: 0;}
	100% {opacity: 1;}
}

@keyframes fadeOut {
	0% {opacity: 1;}
	100% {opacity: 0;visibility: hidden;}
}


/*全体の設定*/
body * {box-sizing: border-box;}

html,body {
	font-size: 100%;
	height: 100%;
}

body {
	margin: 0;padding:0;
	font-family: "Noto Sans JP", "Hiragino Mincho Pro", "ヒラギノ明朝 Pro W3", "HGS明朝E", "ＭＳ Ｐ明朝", "MS PMincho", serif;
	font-optical-sizing: auto;
  font-size: 1rem;
	font-weight: 500;
	-webkit-text-size-adjust: none;
	background: var(--base-color);
	color: var(--base-inverse-color);
	line-height: 2;
}

/*リセット他*/
figure {margin: 0;}
dd {margin: 0;}
nav ul {list-style: none;}
nav,ul,li,ol {margin: 0;padding: 0;}
section li {margin-left: 1rem;}

table {border-collapse:collapse;}

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

/*videoタグ*/
video {max-width: 100%;}

/*iframeタグ*/
iframe {width: 100%;}

/*input*/
input {font-size: 1rem;}

/*section*/
section {
	overflow-x: hidden;
	padding: var(--space-large);
}

a {
	color: inherit;
	transition: 0.3s;
}

/*マウスオン時*/
a:hover {
	text-decoration: none;
	opacity: 0.9;
}

@keyframes progress {
	0% {transform: scaleX(0);}
	100% {transform: scaleX(1);}
}

/*ロゴ画像*/
#loading img {
	width: 300px;
	margin-bottom: 20px;	/*ローディングバーとの間のスペース調整*/
}

/*ローディングブロック*/
#loading {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-color);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    animation: fadeOut 1s ease 2s forwards;
}

/*プログレスバーの土台*/
.progress-container {
    width: 200px;
    height: 4px;
    border-radius: 2px;
    background: var(--base-color);
    overflow: hidden;
}

/*プログレスバー*/
.progress-bar {
    width: 100%;
    height: 100%;
    background: var(--black-color);	/*進行中のバーの色*/
    animation: progress 2s linear;
    transform-origin: left;
}

/*container（サイト全体を囲むボックス）*/
#container {
	min-height: 100vh;
	display: flex;
	flex-direction: column;
}

header {
	position: absolute;
  z-index: 1;
	left: 0px;
	top: 0px;
	width: 100%;
	flex-shrink: 0;
	display: flex;
	align-items: center;
	justify-content: space-between;
	height: 60px;
}

	@media screen and (min-width:768px) {

	header {
		height: 90px;
	}

	}

#logo img {
	display: block;
	width: 140px;
}
#logo {
	margin: 0;padding: 0;
	padding-left: 3vw;
}

	@media screen and (min-width:768px) {

	#logo img {
		width: 200px;
	}

	}

header nav ul {display: none;}

	@media screen and (min-width:900px) {

	/*メニューブロック全体の設定*/
	header > nav > ul {
		margin-right: 100px;
		display: flex;
	}

	header nav li a {
		display: block;text-decoration: none;
		padding: 0.5rem 1rem;
	}

	header nav i {
		padding-right: 0.5rem;
	}
	}

header nav ul ul,
.small-screen #menubar ul ul {
	animation: fadeIn 0.5s 0.1s both;
}

header nav ul ul {
	position: absolute;z-index: 100;
	margin-left: 1rem;
}

header nav ul ul a {
	padding: 0.3em 1em;
	margin-top: 4px;
	background: var(--base-color);
	color: var(--base-inverse-color);
	border: 1px solid var(--base-inverse-color);
	border-radius: 3px;
}

#menubar {display: none;}
#menubar ul {list-style: none;margin: 0;padding: 0;}
#menubar a {display: block;text-decoration: none;}

.large-screen #menubar {display: block;}
.small-screen #menubar.display-block {display: block;}

#menubar_hdr.display-none {display: none;}

.ddmenu_parent ul {display: none;}

/*ddmenuを指定しているメニューに矢印アイコンをつける設定*/
a.ddmenu::before {
	font-family: "Font Awesome 6 Free";
	content: "\f078";
	font-weight: bold;
	margin-right: 0.5em;
}

#menubar .logo {
	width: 200px;
}


@keyframes animation1 {
	0% {right: -100vw;}
	100% {right: 0px;}
}

.small-screen #menubar.display-block {
	position: fixed;overflow: auto;z-index: 100;
	right: 0px;top: 0px;
	width: 100%;
	height: 100%;
	padding: 90px 10vw 50px;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	animation: animation1 0.2s both;
}

.small-screen #menubar li {
	margin: 1rem 0;
}
.small-screen #menubar a {
	border-radius: 5px;
	padding: 1rem 2rem;
	background: var(--base-inverse-color);
	color: var(--base-color);
}

.small-screen #menubar .menubar-cta {
  background: var(--base-color);
  color:  var(--base-inverse-color);
  font-weight: 700;
  border: 2px solid var(--black-color);
}

.small-screen #menubar .menubar-cta:hover {
  background: var(--base-inverse-color);
	color: var(--base-color);

}

/*子メニュー*/
.small-screen #menubar ul ul a {
	background: var(--base-color);
	color: var(--base-inverse-color);
	border: 1px solid var(--base-inverse-color);
	margin-left: 2rem;
}

/*３本バー（ハンバーガー）アイコン設定*/
#menubar_hdr {
	animation: fadeIn 0s 0.2s both;
	position: fixed;z-index: 101;
	cursor: pointer;
	right: 0px;
	top: 0px;
	padding: 20px 15px;
	width: 60px;
	height: 60px;
	display: flex;
	flex-direction: column;
	justify-content: space-between;
	transform-origin: right top;
	background: var(--base-inverse-color);
	border-radius: 0px 0px 0px 10px;		/*角を丸くする指定。左上、右上、右下、左下への順番。*/
}

	@media screen and (min-width:768px) {

	#menubar_hdr {
		transform: scale(1.5);
	}
	}

/*バー１本あたりの設定*/
#menubar_hdr span {
	display: block;
	transition: 0.3s;
	border-top: 1.5px solid var(--base-color);
}

/*×印が出ている状態の3本バーの背景色*/
#menubar_hdr.ham {
	background: var(--accent-color);
}

/*×印が出ている状態の設定。※１本目および２本目のバーの共通設定。*/
#menubar_hdr.ham span:nth-of-type(1),
#menubar_hdr.ham span:nth-of-type(3) {
	transform-origin: center center;
}

#menubar_hdr.ham span:nth-of-type(1){
	transform: rotate(45deg) translate(6px, 5.8px);
}

#menubar_hdr.ham span:nth-of-type(3){
	transform: rotate(-45deg) translate(7px, -7px);
}

#menubar_hdr.ham span:nth-of-type(2){
	display: none;
}

.fv {
  position: relative;
  z-index: 0;
  overflow: hidden;
  padding: 100px 0 2rem;
  background: linear-gradient(180deg, #f9fcff 0%, #ffffff 100%);
}

@media screen and (min-width: 768px) {
  .fv {
    padding: 150px 0 100px;
  }
}
@media screen and (min-width: 1200px) {
  .fv {
    padding: 170px 0 120px;
  }
  }

.fv .inner,
.fv__inner {
  margin: auto;
}

.fv__inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media screen and (min-width: 768px) {
  .fv__inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }
  }
  @media screen and (min-width: 1200px) {
      .fv__inner {
    gap: 56px;
  }
  }

.fv__bg-blob--left,
.fv__bg-blob--right {
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.fv__bg-blob--left {
  top: -140px;
  left: -220px;
  width: 360px;
  height: 360px;
}
@media screen and (min-width: 768px) {
    .fv__bg-blob--left {
    top: -450px;
    left: -620px;
    width: 1000px;
    height: 1000px;
  }
  }

.fv__bg-blob--left::before,
.fv__bg-blob--left::after,
.fv__bg-blob--right::before,
.fv__bg-blob--right::after {
  content: "";
  position: absolute;
  inset: 0;
}

.fv__bg-blob--left::before {
  background: #EFF8F8;
  aspect-ratio: 1;
  clip-path: shape(from 24.96% 15.84%,curve to 39.76% 10.28% with 33.57% 15.08%,curve to 53.99% 4.97% with 45.95% 5.48%,curve to 65.84% 13.09% with 62.03% 4.45%,curve to 75.97% 24.48% with 69.64% 21.73%,curve to 87.57% 32.79% with 82.29% 27.22%,curve to 95.89% 46.23% with 92.85% 38.36%,curve to 89.99% 59.23% with 98.93% 54.11%,curve to 83.05% 74.58% with 81.05% 64.35%,curve to 76.49% 86.44% with 85.06% 84.82%,curve to 60.42% 85.14% with 67.92% 88.07%,curve to 46.90% 83.38% with 52.93% 82.20%,curve to 34.60% 82.87% with 40.87% 84.57%,curve to 21.70% 77.91% with 28.33% 81.17%,curve to 11.83% 67.95% with 15.06% 74.65%,curve to 11.18% 54.10% with 8.59% 61.25%,curve to 13.50% 39.98% with 13.77% 46.96%,curve to 14.79% 24.80% with 13.23% 33.01%,curve to 24.96% 15.84% with 16.35% 16.59%);
}

.fv__bg-blob--left::after {
  inset: 18px;
  background: #D7E6EF;
  aspect-ratio: 1;
  clip-path: shape(from 24.96% 15.84%,curve to 39.76% 10.28% with 33.57% 15.08%,curve to 53.99% 4.97% with 45.95% 5.48%,curve to 65.84% 13.09% with 62.03% 4.45%,curve to 75.97% 24.48% with 69.64% 21.73%,curve to 87.57% 32.79% with 82.29% 27.22%,curve to 95.89% 46.23% with 92.85% 38.36%,curve to 89.99% 59.23% with 98.93% 54.11%,curve to 83.05% 74.58% with 81.05% 64.35%,curve to 76.49% 86.44% with 85.06% 84.82%,curve to 60.42% 85.14% with 67.92% 88.07%,curve to 46.90% 83.38% with 52.93% 82.20%,curve to 34.60% 82.87% with 40.87% 84.57%,curve to 21.70% 77.91% with 28.33% 81.17%,curve to 11.83% 67.95% with 15.06% 74.65%,curve to 11.18% 54.10% with 8.59% 61.25%,curve to 13.50% 39.98% with 13.77% 46.96%,curve to 14.79% 24.80% with 13.23% 33.01%,curve to 24.96% 15.84% with 16.35% 16.59%);
}
@media screen and (min-width: 768px) {
  .fv__bg-blob--left::after {
    inset: 50px;
  }
  }

.fv__bg-blob--right {
  right: -140px;
  bottom: -90px;
  width: 400px;
  height: 400px;
}
@media screen and (min-width: 768px) {
    .fv__bg-blob--right {
    right: -750px;
    bottom: -420px;
    width: 1300px;
    height: 1300px;
  }
  }


.fv__bg-blob--right::before {
  background: #EFF8F8;
  aspect-ratio: 1;
  clip-path: shape(from 23.14% 82.75%,curve to 14.08% 69.80% with 20.27% 74.60%,curve to 5.39% 57.33% with 7.88% 65.00%,curve to 10.31% 43.84% with 2.89% 49.67%,curve to 18.82% 31.20% with 17.74% 38.00%,curve to 23.99% 17.89% with 19.91% 24.39%,curve to 34.94% 6.49% with 28.07% 11.39%,curve to 48.99% 8.98% with 41.81% 1.59%,curve to 65.59% 11.87% with 56.17% 16.36%,curve to 78.71% 15.28% with 75.00% 7.38%,curve to 81.44% 31.17% with 82.42% 23.18%,curve to 83.11% 44.70% with 80.46% 39.15%,curve to 85.67% 56.74% with 85.75% 50.25%,curve to 84.07% 70.47% with 85.58% 63.23%,curve to 76.88% 82.51% with 82.56% 77.71%,curve to 63.63% 86.58% with 71.19% 87.31%,curve to 49.38% 87.84% with 56.06% 85.84%,curve to 34.35% 90.37% with 42.69% 89.84%,curve to 23.14% 82.75% with 26.01% 90.90%);
}

.fv__bg-blob--right::after {
  inset: 18px;
  background: #D7E6EF;
  aspect-ratio: 1;
  clip-path: shape(from 23.14% 82.75%,curve to 14.08% 69.80% with 20.27% 74.60%,curve to 5.39% 57.33% with 7.88% 65.00%,curve to 10.31% 43.84% with 2.89% 49.67%,curve to 18.82% 31.20% with 17.74% 38.00%,curve to 23.99% 17.89% with 19.91% 24.39%,curve to 34.94% 6.49% with 28.07% 11.39%,curve to 48.99% 8.98% with 41.81% 1.59%,curve to 65.59% 11.87% with 56.17% 16.36%,curve to 78.71% 15.28% with 75.00% 7.38%,curve to 81.44% 31.17% with 82.42% 23.18%,curve to 83.11% 44.70% with 80.46% 39.15%,curve to 85.67% 56.74% with 85.75% 50.25%,curve to 84.07% 70.47% with 85.58% 63.23%,curve to 76.88% 82.51% with 82.56% 77.71%,curve to 63.63% 86.58% with 71.19% 87.31%,curve to 49.38% 87.84% with 56.06% 85.84%,curve to 34.35% 90.37% with 42.69% 89.84%,curve to 23.14% 82.75% with 26.01% 90.90%);
}
@media screen and (min-width: 768px) {
  .fv__bg-blob--right::after {
    inset: 50px;
  }
  }

.fv__content {
 text-align:center;
  max-width:520px;
}
@media screen and (min-width: 768px) {
  .fv__content {
    flex: 0 0 44%;
    max-width: 500px;
    text-align: left;
  }
  }

.fv__lead {
  margin: 0;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.7;
  color: var(--base-inverse-color);
}
@media screen and (min-width: 768px) {
  .fv__lead {
    font-size: 1.5rem;
}
}


.fv__title {
  margin: 12px 0 0;
  font-size: clamp(26px, 6vw, 2rem);
  font-weight: 700;
  line-height: 1.45;
  letter-spacing: 0.03em;
  white-space:nowrap;
}
@media screen and (min-width: 768px) {
  .fv__title {
    margin-top: 14px;
    font-size: clamp(2rem, 2.6vw, 40px);
  }
  }


.fv__text {
  margin: 20px 0 0;
  line-height: 1.9;
  color: var(--primary-inverse-color);
}

.fv__tex-bold {
  font-weight:700;
  font-size: 20px;
  color: var(--base-inverse-color);
}

.fv__cta {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media screen and (min-width: 768px) {
  .fv__cta {
    align-items: flex-start;
  }
  }

.fv__button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 260px;
  padding: 18px 28px;
  border-radius: 9999px;
  background: linear-gradient(to bottom,rgba(255,255,255,0.15),rgba(0,0,0,0.05)), var(--accent-color);
  color: var(--base-color);
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-decoration: none;
  transition: opacity 0.3s ease, transform 0.3s ease;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
}

.fv__button:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.fv__button i {
  font-size: 20px;
}

.fv__cta-note {
  font-size: 14px;
  margin: 12px 0 0;
  line-height: 1.7;
  color: var(--primary-inverse-color);
  white-space:nowrap;
}

.fv__visual {
  position: relative;
  width: 100%;
  margin-top: 1rem;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}

@media screen and (min-width: 768px) {
    .fv__visual {
    margin-top: 0;
    min-height: 520px;
    padding-bottom: 0;
    justify-content: flex-end;
  }
  }

.fv__mockup {
  height: auto;
}

@media screen and (min-width: 768px) {
  .fv__mockup--pc {
    width: 120%;
    max-width: none;
    margin-right: -30px;
  }
}

.fv__mockup--sp {
  width: 100%;
}
/*main（メインコンテンツ）*/
main {
	flex: 1 0 auto;
	overflow-x: hidden;
}

/* セクションタイトル共通 */
h3,p {
  margin-block-start: 0;
  margin-block-end: 0;
}

.section-title {
	font-size: 22px;
	letter-spacing: 0.1em;
  text-align: center;
  margin-bottom: 5vw;
}

	@media screen and (min-width:768px) {
.section-title {
		font-size: 30px;
	}
	}

.section-title-en {
	font-size: 0.8rem;
	opacity: 0.5;
	font-weight: normal;
  display: block;
}

.section-tile-sub {
  font-weight: 600;
  text-align: center;
  line-height: 1.5;
  margin-top: -5vw;
}
	@media screen and (min-width:768px) {
    .section-tile-sub {
  font-size: 1.5rem;
  letter-spacing: 0.07em;
}
  }

.inline-red {
  color: var(--accent-color);
}

/*list-grid1（３カラムボックス）*/
.list-grid1 {
  margin-top: 2rem;
}
	@media screen and (min-width:780px) {
	.list-grid1 {
    margin-top: 6rem;
		display: grid;
		grid-template-columns: repeat(3, 1fr);	/*3列にする指定。4列にしたければrepeat(4, 1fr)とする。*/
		gap: 3vw;
	}
}

/*ボックス１個あたり*/
.list-grid1 .list {
  display: grid;
	margin-bottom: 3rem;
	position: relative;
	border-radius: 5px;
	background: var(--black-color);
	color: var(--base-color);
	box-shadow: 2px 5px 5px rgba(0,0,0,0.1);
	padding: 2rem;
}

	@media screen and (min-width:780px) {
	.list-grid1 .list {
		margin-bottom: 0;
	}
	}

/*ナンバー（01〜03の飾り番号）*/
.inline-num {
	position: absolute;
	left: -20px;
	top: -30px;
	font-size: 60px;
	line-height: 1;
	font-family: "MonteCarlo", cursive;
	opacity: 0.3;
}

/*引用符（“）の装飾*/
.problem-title::before {
	content: "“";
	position: absolute;
	left: -1rem;
	top: -40px;
	opacity: 0.2;
	font-size: 60px;
	line-height: 1;
}

.problem-title {
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 1rem;
	position: relative;
}

.problem-title p {
	line-height: 1.6;
	font-weight: normal;
}

/*ボックス内のfigure画像*/
.list .list-icon {
	margin: 0 auto;
	width: 100px;
	margin-top: -40px;
  filter: grayscale(100%) brightness(90%);
  margin-bottom: 1rem;
}

	@media screen and (min-width:780px) {
.list .list-icon {
		width: 150px;
		margin-top: -50px;
	}
	}

.fa-solid.fa-arrow-down {
  text-align: center;
  font-size: 1.5rem;
}

/*ボックス内のh4見出し*/
.problem-title {
	font-size: 18px;
	line-height: 1.6;
	margin-bottom: 1rem;
	position: relative;
 letter-spacing: 0.05em;
}

/*ボックス内のp要素*/
.list p {
	line-height: 1.6;
	font-weight: normal;
  margin-top: 1rem;
  letter-spacing: 0.05em;
}

/*サムネイルスライドショー*/
.padding-lr0 {
	padding-left: 0;
	padding-right: 0;
}

.sample-title {
  text-align: center;
  font-size: 18px;
}
	@media screen and (min-width:780px) {
   .sample-title {
  font-size: 1.5rem;
  }
}

.slide-thumbnail1 + .slide-thumbnail1 {
  margin-top: 3rem;
}
	@media screen and (min-width:780px) {
    .slide-thumbnail1 + .slide-thumbnail1 {
  margin-top: 5rem;
}
}

.slide-thumbnail1 .img {
	display: flex;
  gap: 0.5rem;
}

.slide-thumbnail1 .img a {
  display: block;
  width: 100%;
  aspect-ratio: 75 / 99;
  overflow: hidden;
  position: relative;
}

.slide-thumbnail1 .img a img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
  display: block;
}

/*右から左へ、左から右へ、のアニメーション*/
.slide-thumbnail1 .rtl, .slide-thumbnail1 .ltr {
	animation-timing-function: linear;
	animation-iteration-count: infinite;
}
.slide-thumbnail1 .rtl {animation-name: slide-rtl;}
.slide-thumbnail1 .ltr {animation-name: slide-ltr;}

@keyframes slide-rtl {
0% {transform: translateX(0);}
100% {transform: translateX(-50%);}
}

@keyframes slide-ltr {
0% {transform: translateX(-50%);}
100% {transform: translateX(0);}
}

/*スライド下のテキスト*/
.sample-text-box {
  margin: 0 auto;
  padding: 30px;
}

.sample-caution {
  font-size: 14px;
  color: var(--gray-color);
}

/*list-normal1（「お客様の声」「制作の流れ」ブロックで使用）*/
.subscription-text {
  margin: 1rem 0;
}

	@media screen and (min-width:768px) {
	.list-normal1 .text {
		flex: 1;
	}

	.reverse {
		flex-direction: row-reverse;
		background-position: left bottom;
	}

	}

/*ブロック１個あたり*/
.list-normal1 .list {
	background: var(--base-color);
	padding: 24px;
	margin-bottom: 2rem;
	box-shadow: 3px 3px 10px rgba(0,0,0,0.1);
	position: relative;
}

	@media screen and (min-width:768px) {
	.list-normal1 .list {
		display: flex;
		gap: 2rem;
	}
	}

.list-normal1 figure {
	width: 100%;
	margin-bottom: 1rem;
}

	@media screen and (min-width:768px) {
	.list-normal1 figure {
    width: 30%;
		margin-bottom: 0;
	}
	}

 /*h4見出し*/
.list-normal1 h4 {
	line-height: 1.5;
	margin-bottom: 1rem;
}

	@media screen and (min-width:600px) {

	.list-normal1 h4 {
		font-size: 28px
		line-height: 1.8;
	}
	}

/*h4内にアイコンを配置した場合（制作の流れの見出し左のアイコン）*/
.list-normal1.flow h4 i {
	margin-right: 1rem;
}

/*名前*/
.list-normal1 .name {
	text-align: right;
	margin-top: 1rem;
}

/*制作の流れで使用しているブロック間の「▼」の矢印*/
.list-normal1.flow .list::after {
	content: "▼";
	position: absolute;
	left: 50%;
	bottom: -2rem;
	transform: scaleX(1.5);
	opacity: 0.5;
}

/*最後のボックスだけ下矢印を出さない*/
.list-normal1.flow .list:last-child::after {
	content: none;
}

.subscription-title,.support__title {
	line-height: 1.5;
	margin-bottom: 1rem;
  font-size: 18px;
}

	@media screen and (min-width:768px) {
	.subscription-title,.support__title {
		font-size: 1.5rem;
		line-height: 1.6;
    margin-top: 0;
	}
	}

.support__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
@media screen and (min-width: 768px) {
    .support__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }
}

.support__box {
  padding: 24px;
  box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.1);
  background: var(--base-color);
}
@media screen and (min-width: 768px) {
  .support__box {
    height: 100%;
  }
}

.support__item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 0;
}

.support__icon {
  flex-shrink: 0;
  font-size: 1rem;
  line-height: 1;
  color: #8FBFD8;
}

.support__text {
  line-height: 1.7;
  font-weight: normal;
}

/*plan*/
.plan-title {
	font-size: 18px;
	line-height: 1.6;
}
@media screen and (min-width: 768px) {
  .plan-title {
    margin-top: 4rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}
}

.plan-list {
  margin-bottom: 1rem;
  width: 100%;
  line-height: 1.6;
  font-weight: normal;
}

.plan-text {
  font-weight: normal;
}

.list-caution {
  font-size: 14px;
  list-style: none;
}

.list-caution li {
  margin-left: 0;
}

.inline-plan {
  font-size: 14px;
  font-weight: normal;
}


/*テーブル（ta1）*/
/*テーブル１行目に入った見出し部分（※caption）*/
.ta1 caption {
	font-weight: bold;
	padding: 0.5rem 1rem;
	background: var(--base-inverse-color);
	color: var(--base-color);
	margin-bottom: 1rem;
	border-radius: 5px;
}

/*ta1テーブルブロック設定*/
.ta1 {
	table-layout: fixed;
	width: 100%;
	border-top: 1px solid var(--gray-sub-color);
	margin-bottom: 2rem;
}
/*tr（１行分）タグ設定*/
.ta1 tr {
	border-bottom: 1px solid var(--gray-sub-color);
}

/*th（左側）、td（右側）の共通設定*/
.ta1 td, .ta1 th {
	word-break: break-all;
	background: var(--base-color);
	color: var(--base-inverse-color);
	text-align: left;
	padding: 0.5rem;
}

/*th（左側）のみの設定*/
.ta1 th {
	width: 25%;
	text-align: center;
}

.about-ta1 th {
  width: 40%;
  text-align: left;
}

.company-block {
  margin-top: 8vw;
}

/*テーブル（プラン）　※基本的な設定は上のta1で設定*/
.ta1.plan, .ta1.plan td, .ta1.plan th {
	text-align: center;
	border: 2px solid var(--base-inverse-color);
	padding: 0.5rem;
}

	@media screen and (min-width:801px) {

	.ta1.plan, .ta1.plan td, .ta1.plan th {
		padding: 2rem 1rem;
	}

	}

.ta1.plan th:first-child,
.ta1.plan td:first-child {
    width: 12rem;
}

.ta1.plan th {
	width: auto;
	position: relative;
	overflow: hidden;
}

.ta1.plan th .osusume {
	position: absolute;
	left: 0px;
	top: 0px;
	background: var(--accent-color);
	color: var(--base-color);
	font-size: 0.7rem;
	width: 120px;
	text-align: center;
	padding-top: 43px;
	padding-bottom: 2px;
	transform: rotate(-45deg) translate(-18px, -60px);
}

/*１行目のプランブロック内のアイコン（王冠マーク）*/
.ta1.plan th i {
	display: block;
	font-size: 1.4rem;
}

.ta1.plan th:nth-child(2) {
	background: #eff2f5;
}
.ta1.plan td:nth-child(2) {
	background: #eff2f5;
}

.ta1.plan th:nth-child(3) {
	background: var(--primary-color);
	color: var(--black-color);
}
.ta1.plan td:nth-child(3) {
	background: var(--primary-color);
	color: var(--black-color);
}

.ta1.plan th:nth-child(4) {
	background: #eff2f5;
}
.ta1.plan td:nth-child(4) {
	background: #eff2f5;
}

.plan th > span {
	display: block;
	font-size: 20px;
	font-family: "Oswald", sans-serif;
	font-optical-sizing: auto;
	font-weight: 700;
}

	@media screen and (min-width:801px) {

	.plan th > span {
		font-size: 32px;
	}
	}


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

	.scroll .ta1.plan {width: 700px;}
	.scroll {overflow-x: auto;}

	}

.bg-slideup {
	margin-left: calc(-1 * var(--space-large));
	margin-right: calc(-1 * var(--space-large));
}

section > .bg-slideup:first-child {
	margin-top: calc(-1 * var(--space-large));
}

.bg-slideup .image {
	background-repeat: no-repeat;
	background-size: cover;
	width: 100%;
	padding: 10vw 20px;
	display: flex;
	flex-direction: column;
	justify-content: center;
	align-items: center;
	gap: 3rem;
	color: var(--base-color);
}

.en-text {
	writing-mode: horizontal-tb;
	font-size: 0.8rem;
}

.jp-text {
	text-orientation: upright;
}

#products .bg-slideup .image {
	background-image: url("../images/bg_works.jpg");
}

#company .bg-slideup .image {
	background-image: url("../images/bg_company.jpg");
}

/*list-grid-simple（制作実績ブロック）*/
.list-grid-simple {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: 1fr;
  gap: 3rem;
}
	@media screen and (min-width:768px) {
    .list-grid-simple {
      margin-top: 4rem;
  }
  }

.list-grid-simple .list {
    display: grid;
	position: relative;
}

/*h4見出し*/
.list-grid-simple .list h4 {
	margin-top: 0.5rem;
	font-weight: normal;
  letter-spacing: 0.1em;
}

	@media screen and (min-width:800px) {

	.list-grid-simple {
		grid-template-columns: repeat(3, 1fr);
	}

	}

/*c2（２カラムレイアウト用）*/
	@media screen and (min-width:700px) {

	.c2 {
		display: flex;
		gap: 2rem;
	}

	/*左側のタイトルブロックの幅*/
	.c2 .title {
		width: 30%;
	}

	/*右側のテキストブロック*/
	.c2 .text {
		flex: 1;
	}

	}


/*FAQ*/
.faq dt {
	position: relative;
	display: flex;
	align-items: flex-start;
	border-radius: 3px;
	margin-bottom: 1rem;
	background: var(--base-color);
	color: var(--base-inverse-color);
	padding: 1rem 3.5rem 1rem 1rem; /* 右に＋/－分の余白 */
	cursor: pointer;
}

/* 「Q」アイコン */
.faq dt::before {
	font-family: "Font Awesome 6 Free";
	content: "\51";
	margin-right: 0.5rem;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	border-radius: 50%;
	width: 30px;
	height: 30px;
	line-height: 30px;
	text-align: center;
	flex-shrink: 0;
	margin-top: 0.2em;
}

/* 右側の＋ */
.faq dt::after {
	font-family: "Font Awesome 6 Free";
	content: "\f067"; /* plus */
	font-weight: 900; /* solid */
	position: absolute;
	right: 1rem;
	top: 50%;
	transform: translateY(-50%) rotate(0deg);
	line-height: 1;
  transition: transform 0.25s ease, opacity 0.2s ease;
	opacity: 0.8;
}

/* 開いたときの－ */
.faq dt.active::after {
	content: "\f068"; /* minus */
	font-weight: 900; /* solid */
  transform: translateY(-50%) rotate(180deg);
	opacity: 1;
}

.faq dt span {
	display: block;
	flex: 1;
	text-align: left;
}

.faq dd {
	display: none;
	padding: 0 1rem 1rem 3.7rem;
	margin: 0;
}

.faq dd.open {
	display: block;
}
.openclose {
	cursor: pointer;
}

/*list-c2（お問い合わせ、資料請求）*/
.padding0 {
	padding: 0;
}

.list-c2 .list {
	text-align: center;
	position: relative;
	overflow-y: hidden;
	color:  var(--base-color);
	text-shadow: 0px 0px 10px rgba(0,0,0,0.6);
	padding: 5rem 2rem;
	margin: 1rem 0;
}

	@media screen and (min-width:768px) {

	.list-c2 > a .list {
		height: 100%;
	}
	}


.list-c2 .list.image1 {
	background: url("../images/bg_contact.jpg") no-repeat center center / cover;
}

.list-c2 h4 {
	line-height: 1.2;
	font-family: "Jost", sans-serif;
	font-optical-sizing: auto;
  letter-spacing: 0.15em;
	font-weight: 400;
}

.list-c2 h4 .main-text {
	display: block;
	font-size: 32px;
	padding-top: 0.5rem;
	padding-bottom: 3rem;
}

  .list-c2 h4 .sub-text {
		font-size: 16px;
	}

	@media screen and (min-width:768px) {

	.list-c2 h4 .main-text {
		font-size: 64px;
	}

  .list-c2 h4 .sub-text {
		font-size: 18px;
	}

	}

.list-c2 .list .text {
	position: relative;z-index: 1;
	font-size: 0.9rem;
}

.list-c2 .list::before {
	content: "";position: absolute;top: 0;left: 0;width: 100%;height: 100%;
	background: rgba(0,0,0,0.3);
	transition: transform 0.3s 0.1s;
}
.list-c2 .list:hover::before {
	transform: translateY(100%);
}

.about-text {
  color:var(--base-inverse-color);
}

@media screen and (min-width:768px) {
.title-left {
  text-align: left;
}
}


.text-slide-wrapper {
	overflow-x: hidden;
	margin-top: calc(-1 * (1.6 * var(--space-large)));
}

.text-slide {
	font-family: "Jost", sans-serif;
	font-optical-sizing: auto;
	font-weight: 600;
	display: flex;
	white-space: nowrap;
    font-size: 15vw;
	opacity: 0.05;
}

.text-slide span {
	padding: 0 20px;
}

.btn1 a {
	text-shadow: none;display: block;text-decoration: none;
	background: var(--primary-color);
	color: var(--primary-inverse-color);
	font-size: 18px;
	padding: 0.5rem 2rem;
	border-radius: 100px;
	text-align: center;
}

.bg-primary-color .btn1 a {
	background: var(--primary-inverse-color);
	color: var(--primary-color);
}

.btn1 a:hover {
	opacity: 1;
	transform: scale(1.05);
	background: var(--primary-inverse-color);
	color: var(--primary-color);
}

.bg-primary-color .btn1 a:hover {
	background:  var(--base-color);
	color: var(--gray-color);
}

.btn1 a::after {
	font-family: "Font Awesome 6 Free";
	content: "\f0a9";
	font-weight: bold;
	margin-left: 0.5em;
}

.btn2 a {
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.05)), var(--accent-color);	color: var(--base-color);
  letter-spacing: .04em;
  font-weight: 600;
  padding: 16px 24px;
  font-size: 20px;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.10);
}

@media screen and (min-width:768px) {
  .btn2 a {
    max-width: 480px;
    margin: 0 auto;
    font-size: 32px;
    transition: background 0.3s ease,
    color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
}

.btn2 a:hover {
	opacity: 1;
	transform: scale(1.05);
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.15), rgba(0, 0, 0, 0.05)), var(--base-color);	color: var(--accent-color);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

/*pagetop*/
.pagetop a {
	display: flex;
	align-items: center;
	justify-content: center;
	width: 50px;
	height: 50px;
	background: var(--base-color);
	color: #B4CCE3;
	border-radius: 50%;
	text-decoration: none;
	font-size: 50px;
	transition: 0.3s;
  position: fixed;
	right: 20px;
	bottom: 20px;
	z-index: 999;
}

.pagetop a:hover {
	opacity: 0.8;
	transform: translateY(-3px);
}

.bg-primary-color {
	background: var(--primary-color);
	color: var(--black-color);
}

.bg1 {
	background-color: var(--base-inverse-color);
	color: var(--base-color);
}

.bg2 {
	background: #f3f3e9;
}

.bg3 {
	background:  var(--base-color);
}

.bg-pattern1 {
	background-image: url("../images/bg_pattern1.png");
	background-repeat: repeat;
	background-position: center top;
	background-size: 10px;
}

.bg-pattern2 {
	background-image: url("../images/bg_pattern2.png");
	background-repeat: repeat;
	background-position: center top;
	background-size: 10px;
}

.bg-pattern3 {
	background-image: url("../images/bg_pattern3.png");
	background-repeat: repeat;
	background-position: center top;
	background-size: 10px;
}

footer {
	background: var(--primary-color);
	color: var(--base-inverse-color);
	padding: 2rem;
	display: flex;
	flex-direction: column-reverse;
}

footer div:nth-of-type(2) {
    flex: 1;
    display: flex;
    gap: 2rem;
}

	@media screen and (min-width:768px) {

	footer {
		flex-direction: row;
		gap: 4rem;
		padding: 4rem;
	}

	/*フッター直下の1つ目ブロック（ロゴやSNSアイコンが入ったブロック）*/
	footer div:nth-of-type(1) {
		text-align: left;
		width: 30%;
	}

	footer div:nth-of-type(2) {
		justify-content: flex-end;	/*ブロックを右に寄せる。この行を削除すれば、ロゴ画像の方によります。*/
		gap: 4rem;
	}

	}


footer ul {
	margin: 0;padding: 0;list-style: none;
	margin-bottom: 2rem;
}

footer ul a {
  text-underline-offset: 4px;
}

footer small {
	display: block;
	padding-top: 1rem;
}

.sns {
  margin-top: 1rem;
}

.sns i {
	font-size: 40px;
  color: var(--gray-color);
}


/*著作部分（※意図的に見えなくしたりしないで下さい。規約違反になります。）*/
.pr a {
	text-decoration: none;
	display: block;
	background: rgba(0,0,0,0.9);
	text-align: right;
	padding: 0.5rem 1rem;
	color:var(--gray-sub-color);
}
.pr a::before {
	font-family: "Font Awesome 6 Free";
	content: "\e2ca";
	font-weight: bold;
	margin-right: 0.5em;
}


/*お問い合わせフォーム（Fluent Forms）中央寄せ*/
.fluentform_wrapper_3 {
  max-width: 700px;
  width: 100%;
  margin-inline: auto;
}

.page-contact__head {
  max-width: 700px;
  width: 100%;
  margin-inline: auto;
}


.error404-btn a {
  width: 100%;
  max-width: 320px;
  font-size: 15px;
  padding: 10px 20px;
  margin-top: 32px;
}

	@media screen and (min-width:768px) {

	.error404-btn a {
		width: 300px;
		max-width: 300px;
		margin: 32px 0 0 0;
	}

	}

/*パンくずリスト（下層ページ共通）*/
.site-breadcrumb {
  margin-top: 60px;
  padding-block: 0.8em;
  font-size: 0.8rem;
  color: var(--gray-sub-color);
  background: var(--base-color);
  border-bottom: 1px solid #eee;
  position: relative;
  z-index: 2;
}

	@media screen and (min-width:768px) {

	.site-breadcrumb {
		margin-top: 90px;	/*header高さ90pxに合わせる*/
	}

	}
.site-breadcrumb .inner {
  overflow-x: auto;
  white-space: nowrap;
}
.site-breadcrumb ol {
  display: flex;
  align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-breadcrumb li {
  display: flex;
  align-items: center;
}
.site-breadcrumb li:not(:last-child)::after {
  content: "＞";
  margin: 0 0.6em;
  color: var(--gray-sub-color);
}
.site-breadcrumb a {
  color: var(--gray-color);
  text-decoration: none;
}
.site-breadcrumb a:hover {
  text-decoration: underline;
}
.site-breadcrumb li[aria-current="page"] {
  color: var(--gray-sub-color);
}
