@charset "UTF-8";
/* Body */
html { scroll-behavior: smooth;}

body {
	font-family:"游ゴシック体", YuGothic, "游ゴシック", "Yu Gothic", sans-serif;
	background-color: #000d14;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	font-style: normal;
	font-weight: 200;
	color:#ffffff;
}
/* Container */
.container {
	width: 100%;
	margin-left: auto;
	margin-right: auto;
	height: 1000px;
	background-color: #000d14;
}
/* Navigation */
.header {
	display: flex;
	width: 100%;
	height:  60px;
	background-color: #000d14;
	border-bottom: 1px solid #e6e6e6;
	z-index: 100;
}

.header-fixed {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  opacity: 1;
  visibility: visible;
  animation: slide 0.6s ease-in-out;
}

/* PC用メニュー */
.main-menu {
  /* 中央寄せ */
  margin: 0 auto;
  /* 項目を横並びにするのでflex */
  display: flex;
  /* 背景色 */
  background: #000d14;
  /* メニューの幅 */
  width: 1280px;
}

/* ハンバーガーメニュー */
.sp-menu__box {
  position: fixed;  /* 位置を固定 */
  top: 0;  /* 最上部 */
  right: 0;  /* 右端 */
  /* 中の要素を上下中央寄せ */
  display: flex;
  justify-content: center;
  align-items: center;
  /* サイズ指定 */
  height: 60px;
  width: 60px;
  /* 最前面にする */
  z-index: 100;
  background-color: #000d14;
}
/* メニューの白線を疑似要素を使って3本作成 */
.sp-menu__box span,         /* 真ん中の線 */
.sp-menu__box span:before,  /* 上の線 */
.sp-menu__box span:after {  /* 下の線 */
  /* contentの値を指定しないと疑似要素が生成されない */
  content: "";
  /* ３本線のサイズと色を指定 */
  display: block;
  height: 3px;
  width: 25px;
  border-radius: 3px;
  background-color: #ffffff;
  /* 3本線の位置は絶対位置で指定 */
  position: absolute;
}
/* 上の線の位置 */
.sp-menu__box span:before {
  /* 真ん中の線と離す距離 */
  bottom: 8px;
}
/* 下の線の位置 */
.sp-menu__box span:after {
  /* 真ん中の線と離す距離 */
  top: 8px;
}

@keyframes slide {
  0% {
    transform: translateY(-100%);
  }

  100% {
    transform: translateY(0%);
  }
}

.logo {
	color: #fff;
	font-weight: bold;
	text-align: undefined;
	height:60px;
	float: left;
	margin-top: 5px;
	margin-left: 5px;
	letter-spacing: 0px;
}

.logo img {
	height:50px;
}

nav {
	float: right;
	width: 100%;
	text-align: right;
	margin-right: 25px;
}
header nav ul {
	list-style: none;
	float: right;
}
nav ul li {
	float: left;
	color: #FFFFFF;
	font-size: 14px;
	text-align: left;
	margin-right: 25px;
	letter-spacing: 2px;
	font-weight: bold;
	transition: all 0.3s linear;
}
ul li a {
	color: #FFFFFF;
	text-decoration: none;
}
ul li:hover a {
	color: #2C9AB7;
}

.pc-menu {
  width: 100%;
}
.pc-menu > ul {
  display: flex;
  list-style: none;
}
.pc-menu > ul > li {
  width: 25%;
  text-align: center;
  font-size: 16px;  
}
.pc-menu > ul > li > a {
  display: block;
  line-height: 30px;
  text-decoration: none;
  color: #ffffff;
}

.pc-menu > ul > li > a:hover {
	color: #2C9AB7;
}

/* チェックボックスは常に非表示 */
#sp-menu__check {
  display: none;
}
/* チェックボックスのチェックがON（スマホ用メニューを開いた状態） */
/* 真ん中の線 */
#sp-menu__check:checked ~ .sp-menu__box span {
  /* 透明にして見えなくする */
  background: rgba(255, 255, 255, 0);
}
/* 上の線 */
#sp-menu__check:checked ~ .sp-menu__box span::before {
  /* 真ん中の線との距離を無くす（真ん中の線と同じ位置にする） */
  bottom: 0;
  /* 右に45度傾けてバツの片側の線にする */
  transform: rotate(45deg);
}
/* 下の線 */
#sp-menu__check:checked ~ .sp-menu__box span::after {
  /* 真ん中の線との距離を無くす（真ん中の線と同じ位置にする） */
  top: 0;
  /* 左に45度傾けてバツの片側の線にする */
  transform: rotate(-45deg);
}
#sp-menu__check:checked ~ .hamburger__content {
  left: 0;
}

/* スマホ用メニュー */
.sp-menu__content {
  /* 絶対位置で指定   */
  position: fixed;
  /* 画面全体に表示 */
  width: 100%;
  height: 100%;
  /* 開始位置は左上隅 */
  top: 0;
  left: 0;
  /* 前面に表示するがハンバーガーボタンよりは背後 */
  z-index: 90;
  background-color: #3584bb;
}
/* スマホ用メニューのリスト */
.sp-menu__list {
  padding: 70px 10px 0;
}
/* スマホ用メニュー項目 */
.sp-menu__item {
  border-bottom: solid 1px #ffffff;
  list-style: none;
}
/* スマホ用メニュー項目のリンク */
.sp-menu__link {
  display: block;
  width: 100%;
  font-size: 15px;
  box-sizing: border-box;
  color: #ffffff;
  text-decoration: none;
  padding: 9px 15px 10px 0;
}

/* ハンバーガーボタンを押してチェックがONの時だけ
   スマホ用メニューを画面左端に移動する */
#sp-menu__check:checked ~ .sp-menu__content {
  left: 0;
}
/* 変更箇所はコメントの項目のみ */
.sp-menu__content {
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;

  /* 普段は画面外にするために左端を画面右端の位置にする */
  left: 100%;

  z-index: 90;
  background-color:rgba(0,13,20,0.9);
	
  
  /* 右端からゆっくり移動するように表示 */
  transition: all 0.5s;
}

/* 画面サイズが767px以下の時はPC用メニューは非表示 */
@media screen and (max-width: 767px) {
  .pc-menu {
    display: none;
  }
}
/* 画面サイズが768px以上の時はスマホ用メニューは非表示 */
@media screen and (min-width: 768px) {
  .sp-menu {
	  display: none;
  }
}


.hero_header {
	color: #FFFFFF;
	text-align: center;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 25px;
	margin-left: 0px;
	letter-spacing: 2px;
}
/* Hero Section */
.hero {
	background-image: url("../images/main-visual-sp.jpg");
	padding-top: 80px;
	padding-bottom:0px;
	background-repeat: no-repeat;
	background-size: cover;
}
.tagline_bg {
	padding:15px;
	background-color:rgba(0,13,20,0.6);
}
.tagline {
	text-align: center;
	color: #FFFFFF;
	margin-top: 4px;
	font-weight: lighter;
	text-transform: uppercase;
	letter-spacing: 1px;
}
/* About Section */
.text_column {
	width: 100%;
	text-align: justify;
	font-weight: lighter;
	float: left;
	padding-left: 20px;
	padding-right: 20px;
	margin-bottom:10px;
	color: #ffffff;
}
.about {
	padding-left: 15px;
	padding-right: 15px;
	padding-top: 15px;
	display: inline-block;
	background-color: #000d14;
	margin-top: 0px;
}

.about img {
	width:100%;
}

/* Past cases */

.cases {
	display: inline-block;
	background-color: #000d14;
	margin-top: 0px;
}

.cases_sns {
	display: flex;
	box-sizing: border-box;
	margin:25px;
}

.cases_sns .col {
	width:50%;
	padding:5px;
}

.cases_sns img {
	width:100%;
}

.cases p {
	padding:1.5em;
	font-size:1em;
	font-weight:700;
	line-height:1.6;
}

.cases p span {
	color:#e0c89d;
}

/* Stats Gallery */
.stats {
	color: #717070;
	margin-bottom: 5px;
}
.gallery {
	clear: both;
	display: inline-block;
	width: 100%;
	background-color: #000d14;
	/* [disabled]min-width: 400px;
*/
	padding-bottom: 35px;
	padding-top: 0px;
	margin-top: -5px;
	margin-bottom: 0px;
}
.thumbnail {
	width: 25%;
	text-align: center;
	float: left;
	margin-top: 35px;
}
.gallery .thumbnail h4 {
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 5px;
	margin-left: 5px;
	color: #52BAD5;
}
.gallery .thumbnail p {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	color: #A3A3A3;
}
/* Parallax Section */
.banner {
	background-color: #2D9AB7;
	background-image: url(../images/parallax.png);
	height: 400px;
	background-attachment: fixed;
	background-size: cover;
	background-repeat: no-repeat;
}
.parallax {
	color: #FFFFFF;
	text-align: right;
	padding-right: 100px;
	padding-top: 110px;
	letter-spacing: 2px;
	margin-top: 0px;
}
.parallax_description {
	color: #FFFFFF;
	text-align: right;
	padding-right: 100px;
	width: 30%;
	float: right;
	font-weight: lighter;
	line-height: 23px;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
}
/* More info */
footer {
	background-color: #000d14;
	padding-bottom: 35px;
}
.footer_column {
	width: 50%;
	text-align: center;
	padding-top: 30px;
	float: left;
}
footer .footer_column h3 {
	color: #B3B3B3;
	text-align: center;
}
footer .footer_column p {
	color: #717070;
	background-color: #FFFFFF;
}
.cards {
	width: 100%;
	height: auto;
	max-width: 400px;
	max-height: 200px;
}
footer .footer_column p {
	padding-left: 30px;
	padding-right: 30px;
	text-align: justify;
	line-height: 25px;
	font-weight: lighter;
	margin-left: 20px;
	margin-right: 20px;
}
.button {
	width: 250px;
	margin-top: 10px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	padding-top: 12px;
	padding-right: 10px;
	padding-bottom: 12px;
	padding-left: 10px;
	text-align: center;
	vertical-align: middle;
	border-radius: 0px;
	text-transform: uppercase;
	font-size:1.1em;
	font-weight: 700;
	letter-spacing: 1px;
	border-radius: 90px;
	color: #202836;
	background-color:#e0c89d;
	transition: all 0.3s linear;
}
.button a {
	text-decoration: none;
	font-weight: 700;
	color: #202836;
}

.button:hover {
	background-color: #f3e9d8;
	cursor: pointer;
}

.button_line {
	width: 250px;
	margin-right: auto;
	margin-bottom: 10px;
	margin-left: auto;
	padding-top: 12px;
	padding-right: 10px;
	padding-bottom: 12px;
	padding-left: 10px;
	text-align: center;
	vertical-align: middle;
	border-radius: 0px;
	text-transform: uppercase;
	font-size:1.1em;
	font-weight: 700;
	letter-spacing: 1px;
	border-radius: 90px;
	color: #FFFFFF;
	background-color:#06C755;
	transition: all 0.3s linear;
}
.button_line a {
	text-decoration: none;
	font-weight: 700;
	color: #FFFFFF;
}

.button_line:hover {
	background-color: #90e6b3;
	cursor: pointer;
}

.button_line a::before {
  content: "";
  display: inline-block;
  width: 29px;
  height: 29px;
  background: url("../images/line_300_300.png") no-repeat;
  background-size: contain;
  margin-right: 8px;
  vertical-align: middle;
}


.button a::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 26px;
  background: url("../images/mail_300_300.png") no-repeat;
  background-size: contain;
  margin-right: 8px;
  vertical-align: middle;
}

.button_area_hero{
width:100%;
padding:50px 0;
}

.button_area {
width:100%;
padding:10px 0 50px;
}

.copyright {
	text-align: center;
	font-size:12px;
	padding-top: 20px;
	padding-bottom: 20px;
	background-color: #000d14;
	color: #FFFFFF;
	text-transform: uppercase;
	font-weight: lighter;
	letter-spacing: 2px;
	border-top-width: 2px;
}
.footer_banner {
	background-color: #B3B3B3;
	padding-top: 60px;
	padding-bottom: 60PX;
	margin-bottom: 0px;
	background-image: url(../images/pattern.png);
	background-repeat: repeat;
}
footer {
	display: inline-block;
}
.hidden {
	display: none;
}

/* Mobile */
@media (max-width : 767px ){
.logo {
	width: 100%;
	height:60px;
	text-align: left;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 0px;
	margin-left: 0px;
}

.container {
		width:100%;
	}
	
.container header nav {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 100%;
	float: none;
	display: none;
}
header nav ul {
}
nav ul li {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 100%;
	text-align: center;
}
.text_column {
	width: 100%;
	display: flex;
  justify-content: center;
  align-items: center;
	text-align: justify;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
	
.adv_column_1 {
		width:35%;
	}
.adv_column_2 {
		width:65%;
	font-size:1.4em;
	font-weight: 700;
	line-height:1.6;
	padding-left:8px;
	}


.thumbnail {
	width: 100%;
}
.footer_column {
	width: 100%;
	margin-top: 0px;
}
.parallax {
	text-align: center;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 40%;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	width: 100%;
	font-size: 18px;
}
.parallax_description {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	width: 90%;
	margin-top: 25px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 12px;
	float: none;
	text-align: center;
}
.banner {
	background-color: #2D9AB7;
	background-image: none;
}
.tagline {
	line-height: 1.8;
	font-size:1.2em;
	font-weight:700;
	text-shadow: 2px 2px 10px #000d14;
	margin-bottom:40px;
}
.hero_header {
	padding-left: 10px;
	padding-right: 10px;
	line-height: 2.2;
	font-size:2em;
	font-weight:700;
	text-align: center;
}
	
}

/* Small Tablets */
@media (min-width : 768px ) and ( max-width : 1096px ){
.logo {
	width: 100%;
	text-align: left;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 0px;
	margin-left: 0px;
	color: #043745;
}
/*
.container header nav {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 100%;
	float: none;
	overflow: auto;
	display: inline-block;
	background: #52bad5;
}
header nav ul {
	padding: 0px;
	float: none;
}
nav ul li {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 100%;
	text-align: center;
	padding-top: 8px;
	padding-bottom: 8px;
}
*/
.text_column {
	width: 100%;
	text-align: left;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.thumbnail {
	width: 100%;
}
.footer_column {
	width: 100%;
	margin-top: 0px;
}
.parallax {
	text-align: center;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 40%;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	width: 100%;
	font-size: 18px;
}
.parallax_description {
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	margin-top: 30%;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	float: none;
	width: 100%;
	text-align: center;
}
.thumbnail {
	width: 50%;
}
.parallax {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
	padding-top: 20%;
}
.parallax_description {
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	width: 100%;
	padding-top: 30px;
}
.banner {
	padding-left: 20px;
	padding-right: 20px;
}
.footer_column {
	width: 100%;
}
	
}

.midashi-top {
	margin:0;
	padding:10px 20px;
	background-color:#e0c89d;
	font-size:2em;
	font-weight: 700;
	color:#202836;
	text-align: center;
    line-height: 2;
}


.s_midashi {
	max-width:800px;
	margin:1.2em auto;
}

.s_midashi img {
	width:100%;
}

/* Small Desktops */
@media (min-width: 768px) and (max-width: 1096px) {
.text_column {
	width: 100%;
}
.thumbnail {
	width: 50%;
}
.text_column {
	width: 100%;
	margin-top: 0px;
	margin-right: 0px;
	margin-bottom: 0px;
	margin-left: 0px;
	padding-top: 0px;
	padding-right: 0px;
	padding-bottom: 0px;
	padding-left: 0px;
}
.banner {
	margin-top: 0px;
	padding-top: 0px;
}
}

.midashi {
	margin:0;
	padding:1px 20px;
	background-color:#e0c89d;
	font-size:0.8em;
	font-weight: 700;
	color:#202836;
	text-align: center;
}

.midashi-top {
	margin:0;
	padding:10px 20px;
	background-color:#e0c89d;
	font-size:0.8em;
	font-weight: 700;
	color:#202836;
	text-align: center;
}



.midashi span {
	color :#e0c89d;
	background-color: #000d14;
	padding:8px;
	margin-right:5px;
	font-size:1.5em;
	font-weight:700;
}

.midashi-top span {
	color :#e0c89d;
	background-color: #000d14;
	padding:8px;
	margin-right:5px;
	font-size:1.5em;
	font-weight:700;
}

.midashi img {
	width:100%;
}

.s_midashi {
	margin:1.2em 0.5em 0.5em 0.5em;
}

.s_midashi img {
	width:100%;
}

.b_midashi {
	padding:0 1em;
	line-height: 1.6;
	color:#e0c89d;
	text-align: center;
	font-size:1.3em;
	font-weight: 700;
}

.midashi_sns {
	width:100%;
}


.midashi_sns img {
	width:100%;
}

.check {
	width:90%;
	margin:10px auto 50px;
	padding:15px 0;
	border:1px solid #ffffff;
	text-align: center;
	line-height: 1.4;
}

.check span {
	color:#e0c89d;
	font-size:1.6em;
}

.check_flow {
	width:90%;
	margin:50px auto 50px;
	padding:30px 0;
	border:1px solid #ffffff;
	text-align: center;
	line-height: 1.4;
	font-size: 1.17em;
	font-weight: bold;
}

.check_flow_img {
}

.check_flow_shimei {
	display: flex;
}

.check_flow_shimei_col1 {
	width:50%;
	margin:30px 10px 20px 20px;
}

.check_flow_shimei_col2 {
	width:50%;
	margin:30px 20px 20px 10px;
}


/*カルーセル*/
.slider,
.slider > div {
  /* Images default to Center Center. Maybe try 'center top'? */
  background-position: center center;
  display: block;
  width: 100%;
  height: 500px;
  /* height: 100vh; */ /* If you want fullscreen */
  position: relative;
  background-size: contain;
  background-repeat: no-repeat;
  background-color: #000;
  overflow: hidden;
  -moz-transition: transform 0.4s;
  -o-transition: transform 0.4s;
  -webkit-transition: transform 0.4s;
  transition: transform 0.4s;
}

.slider > div {
  position: absolute;
}

.slider > i {
  color: #5bbd72;
  position: absolute;
  font-size: 60px;
  margin: 20px;
  top: 40%;
  text-shadow: 0 10px 2px #223422;
  transition: 0.3s;
  width: 30px;
  padding: 10px 13px;
  background: #008cda;
  background: rgba(0, 140, 218, 0.3);
  cursor: pointer;
  line-height: 0;
  box-sizing: content-box;
  border-radius: 3px;
  z-index: 4;
}

.slider > i svg {
  margin-top: 3px;
}

.slider > .left {
  left: -100px;
}
.slider > .right {
  right: -100px;
}
.slider:hover > .left {
  left: 0;
}
.slider:hover > .right {
  right: 0;
}

.slider > i:hover {
  background: #008cda;
  background: rgba(0, 140, 218, 0.8);
  transform: translateX(-2px);
}

.slider > i.right:hover {
  transform: translateX(2px);
}

.slider > i.right:active,
.slider > i.left:active {
  transform: translateY(1px);
}

.slider:hover > div {
  transform: scale(1.01);
}

.hoverZoomOff:hover > div {
  transform: scale(1);
}

.slider > ul {
  position: absolute;
  bottom: 10px;
  left: 50%;
  z-index: 4;
  padding: 0;
  margin: 0;
  transform: translateX(-50%);
  border: none;
}

.slider > ul > li {
  padding: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  list-style: none;
  float: left;
  margin: 10px 10px 0;
  cursor: pointer;
  border: 1px solid #fff;
  -moz-transition: 0.3s;
  -o-transition: 0.3s;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.slider > ul > .showli {
  background-color: #008cda;
  -moz-animation: boing 0.5s forwards;
  -o-animation: boing 0.5s forwards;
  -webkit-animation: boing 0.5s forwards;
  animation: boing 0.5s forwards;
}

.slider > ul > li:hover {
  background-color: #008cda;
}

.slider > .show {
  z-index: 1;
}

.hideDots > ul {
  display: none;
}

.showArrows > .left {
  left: 0;
}

.showArrows > .right {
  right: 0;
}

.titleBar {
  z-index: 2;
  display: inline-block;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  width: 100%;
  bottom: 0;
  transform: translateY(100%);
  padding: 20px 30px;
  transition: 0.3s;
  color: #fff;
}

.titleBar * {
  transform: translate(-20px, 30px);
  transition: all 700ms cubic-bezier(0.37, 0.31, 0.2, 0.85) 200ms;
  opacity: 0;
}

.titleBarTop .titleBar * {
  transform: translate(-20px, -30px);
}

.slider:hover .titleBar,
.slider:hover .titleBar * {
  transform: translate(0);
  opacity: 1;
}

.titleBarTop .titleBar {
  top: 0;
  bottom: initial;
  transform: translateY(-100%);
}

.slider > div span {
  display: block;
  background: rgba(0, 0, 0, 0.5);
  position: absolute;
  bottom: 0;
  color: #fff;
  text-align: center;
  padding: 0;
  width: 100%;
}

@keyframes boing {
  0% {
    transform: scale(1.2);
  }
  40% {
    transform: scale(0.6);
  }
  60% {
    transform: scale(1.2);
  }
  80% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}

/* -------------------------------------- */

#ns-slider1 {
  min-width: 60%;
}
.slider-text {
  min-width: 35%;
  padding-left: 20px;
}
.product-slider-wrap {
  display: flex;
}

.slider-text-wrap .slider-text h3 {
    margin: 0 0 20px;
}

/*passion*/
.passion {
	background-image: url("../images/passion_bg2.jpg");
	background-repeat:  no-repeat;             
    background-position:center center;
    background-size:cover;
    width:100%;
	padding-top:1.8em;
}

.passion p {
	padding:1.5em;
	font-size:0.9em;
}

.passion p span {
	color:#e0c89d;
	font-weight: 700;
}

.conversion {
	text-align: center;
	padding-top:1.6em;
}

.conversion img {
	width:80%;
}

.conv_line img {
	width:90%;
}

/*value*/
.value {
	background-image: url("../images/value_bg.jpg");
	background-repeat:  no-repeat;             
    background-position:center center;
    background-size:cover;
    width:100%;
	padding-top:1.8em;
}

.value_content {
	width:90%;
	position: relative;
	text-align: center;
	margin:70px auto;
	border:2px solid #e0c89d;
}


.value_content img {
	width:28%;
	position: absolute;
	left:120px;
	top:-50px;
}

.value_content h4 {
	margin-top:55px;
	margin-bottom:0;
	font-size:1.6em;
	letter-spacing: 1px;
	color:#e0c89d;
}

.value_content p {
	padding:0 30px 15px;
	text-align: justify;
	font-size:0.9em;
	line-height: 1.8;
}

/*flow*/
.flow {
	width:100%;
	display: inline-block;
	background-color: #000d14;
	margin-top: 0px;
}

.flow p {
	padding:1.5em;
	font-size:1em;
	font-weight:700;
	line-height:1.6;
}

.flow img {
	width:100%;
}

.flow p span {
	color:#e0c89d;
}

.flow_column {
	display: flex;
  justify-content: center;
  align-items: center;
	text-align: justify;
	padding: 0 10px;
}

.flow_column_1 {
		width:40%;
	}
.flow_column_1 img {
	width:100%;
	vertical-align: middle;
}
.flow_column_2 {
		width:60%;
	font-size:1em;
	letter-spacing: 0px;
	line-height:1.6;
	padding-left:10px;
	}

.inline_insta:before {
	content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../images/inline_insta.png") no-repeat;
  background-size: contain;
  margin-right: 8px;
  vertical-align: middle;
	}
.inline_tiktok:before {
	content: "";
  display: inline-block;
  width: 20px;
  height: 20px;
  background: url("../images/inline_tiktok.png") no-repeat;
  background-size: contain;
  margin-right: 8px;
  vertical-align: middle;
	}


.flow-text {
	text-align: center;
	color:#e0c89d;
	font-size:1.2em;
	font-weight: 700;
}

.flow_img {
	width:85%;
	margin:10px auto;
}

.flow_a {
	text-align: center;
}

.flow_a a {
 color:#fff;
font-size:1.2em;
	font-weight: 700;
margin:0 5px;
}

.flow_a a:hover {
 color:#008cda;
}

/*faq*/
.accordion-004 {
    max-width: 500px;
    margin-bottom: 15px;
    border: 1px solid #d0d0d0;
}

@media screen and (max-width:767px){
.accordion-004 {
    width: 92%;
    margin: 0 auto 15px;
    border: 1px solid #d0d0d0;
}
}

.accordion-004 summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    padding: 1em 1.2em;
	color:#fff;
	font-size:1.2em;
    font-weight: 700;
	line-height: 1.4;
    cursor: pointer;
}

.accordion-004 summary::-webkit-details-marker {
    display: none;
}

.accordion-004 summary::after {
    transform: translateY(-25%) rotate(45deg);
    width: 7px;
    height: 7px;
    margin-left: 10px;
    border-bottom: 3px solid #e0c89d;
    border-right: 3px solid #e0c89d;
    content: '';
    transition: transform .3s;
}

.accordion-004[open] summary::after {
    transform: rotate(225deg);
}

.accordion-004 p {
    transform: translateY(-10px);
    opacity: 0;
    margin: 0;
    padding: .3em 1.3em 1.5em;
	color:#fff;
	line-height: 1.4;
	text-align: justify;
    transition: transform .5s, opacity .5s;
}

.accordion-004[open] p {
    transform: none;
    opacity: 1;
}

/*price*/
table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 1000px;
  table-layout: fixed;
}
thead th{
  padding: 1.4em 0.8em;
  border-right: 5px solid#fff;
}
thead th:last-child {
  border-right: 0;
}

table tr {
  background-color: #fff;
  padding: .55em;
}
table tr:nth-child(even){
  background-color: #f9f9f9;
}
table td {
  padding: .35em;
  text-align: center;
	  font-size: .85em;
}
table th {
	padding:0 10px;
  font-size: .55em;
color:#000d14;
}
i{
  font-size:2em;
}
.plan1{
  background: #a6d7f2;
	color:#000d14;
		padding:10px;
}
.plan1_i{
  color:#3fa9e3;
	  font-size: .8em;
}
.plan4{
  background: #ebd8eb;
}
.plan4_i{
  color:#c996c9;
}
.plan3{
  background: #ffddea;
}
.plan3_i{
  color:#ff8ab7;
}
.plan2{
  background: #b4e1cf;
}
.plan2_i{
  color:#4bb78c;
}

.plan5{
	background:#e0c89d;
}
.plan5_i{
  color:#c1923c;
}


.price{
  color: #000d14;
  font-weight: bold;
  font-size: 1.6em;
  text-align: left;
	line-height: 1.2;
  margin-bottom:10px;
}

.price_plan {
  font-size: 0.8em;
}

.btn{
  color:#c1272d;
  font-size:1.4em;
}

.btn span{
  font-size:.6em;
	padding-left:3px;
}


.fixed01 {
  position: sticky;
  left: 0;
  background-color: #fff;

}

.fixed02 {
  position: sticky;
  left: 0;
  background-color: #f9f9f9;

}

.option_table{
	margin:40px 15px;
	padding-bottom: 20px;
	background-color: #fff;
}

.option_table h5{
	margin:0;
}

.option_midashi {
	font-family: "DIN Condensed";
	font-size: 1.5em;
	letter-spacing: 1.5px;
	color:#000d14;
	text-align: center;
	padding:20px
}

.option_table table {
  border-collapse: collapse;
  margin: 0 auto;
  padding: 0;
  width: 90%;
	table-layout: fixed;
}
.option_table th {
	background-color: #e6e6e6;
	font-size:0.7em;
	line-height: 1.3;
	padding:1em;
}
.option_table th span {
	font-size:0.7em;
}

.option_table tr {
	background-color: #fff;
  border-top:1px solid #808080;
  border-bottom:1px solid #808080;
}

.option_table td {
	background-color: #fff;
	font-size:0.8em;
	line-height: 1.3;
	padding:1em 0.3em;
}
.option_table td span {
	font-size:0.7em;
}


@media screen and (max-width: 600px) {
  .wrap{
	  margin: 10px 15px;
     overflow-x: scroll;
  }
}

/*contact*/

.contact {
	margin:20px 0;
}

form {
  width: 95%;
  margin: 0 auto;
}
.form-row {
  display: flex;
  align-items: center;
  padding: 20px;
	margin:0 auto;
}
.form-row:last-child {
  border-bottom: none;
}
.form-label {
  display: flex;
  align-items: center;
  width: 250px;
}
.form-label label {
  font-weight: bold;
  letter-spacing: 2px;
}
.form-label span {
  margin-left: 10px;
  padding: 6px 10px;
  border-radius: 1px;
  font-size: 0.8em;
  font-weight: 700;
  letter-spacing: 2px;
  color: #fff;
  background-color: #008cda;
}

/* フォームパーツのデザイン */
input, textarea {
  background-color: #e6e6e6;
  border: none;
  border-radius: 1px;
  padding: 10px 15px;
  font-size: 20px;
width:90%;
  color: #333;
  flex-grow: 1;
}
input::placeholder,
textarea::placeholder {
  color: #999;
  font-size: 16px;
}
select {
  background-color: #f2f4f5;
  border: none;
  border-radius: 1px;
  padding: 15px 20px;
  font-size: 16px;
  color: #333;
}
button {
  cursor: pointer;
	width:300px;
  margin-top: 30px;
  padding: 10px 45px;
  border: none;
  border-radius: 50px;
  color: #fff;
  font-size:1.2em;
  font-weight: 700;
	letter-spacing: 2px;
  background-color: #008cda;
}

@media screen and (max-width:767px){
	.form-row {
		display: block;
	}
	.form-label {
		margin-bottom:10px;
	}
	button {
	width:80%;
	margin:0 auto;
	}
}

.mail-contact {
	text-align: center;
	color:#e0c89d;
	font-size:1.2em;
	font-weight: 700;
	margin-bottom:30px;
}
