@charset "UTF-8";
/* CSS Document */

body{
	margin: 0
}
#main {
  margin-top: 0px !important;
}
@media screen and (max-width:919px) {
#main {
  margin-top:-30px !important
}
}
.container {
  width: 100% !important;
  max-width: 100% !important;
}
.contents {
background: rgba(0,0,0,0) !important;
overflow: inherit !important;
}
h1, h2, h3, h4, h5, h6 {
  margin: 0;
font-weight:bold !important;
}

/* 基本CSS */
ul,
div,
img {
  margin: 0px;
  padding: 0px;
  list-style: none;
  font-weight: normal;
}

a{
	color: #3d3d3f
}
p,h1,h2,h3,h4{
	color: #3d3d3f
}

/* 本文をメニューの高さ分下げる */
#main {
  margin-top: 60px;
}

#navi {
  background-color: #FFF;
  position: fixed;
  top: 50px;
  left: 0;
  right: 0;
  height: 80px;
  width: 90%;
  background: #fff;
  margin: 0 auto;
  filter: drop-shadow(5px 5px 5px rgba(0,0,0,0.3));
  max-width: 1280px;
  padding: 10px;
  border-radius: 15px;
  z-index: 999
}

/* チェックボックスを非表示 */
#navi input {
  display: none;
}
/* 左上ロゴ */
.menu-left {
  float: left;
  line-height: 60px;
}
.menu-left img {
  vertical-align: middle;
  margin-left: 10px;
  max-width: 200px;
  width: 100%
}
/* 上部メニュー */
.menu {
  float: right;
  margin-right: 10px;
}
.menu-parent {
  float: left;
  margin-right: 30px;
  line-height: 60px;
  font-size: 15px;
  font-weight: bold;
  white-space: nowrap;
}
.menu-parent a{
  text-decoration: none;
}
.trial{
	background: #3ab26c;
	border-radius: 50px;
	line-height: 40px;
	padding: 0 20px;
	margin-right: 10px;
	margin-top: 10px;
	text-align: center
}
.trial a{
	color: #fff
}
.shiryo{
	background: #ff6400;
	border-radius: 50px;
	line-height: 40px;
	padding: 0 20px;
	margin-top: 10px;
	text-align: center
}
.shiryo a{
	color: #fff
}


/* パソコンでは V を非表示 */
.menu-parent .pd {
  display: none;
}
/* 上部メニューの最後の項目 */
.menu-parent:last-child {
  margin-right: 0px;
}

#menu-navibtn {
  display: none;
  cursor: pointer;
  cursor: hand;
}

@media screen and (max-width: 1180px) {
#navi {
  top: 20px;
}

  /* スマホの際に V を表示 */
  .menu-parent .pd {
    display: inline-block;
    width: 100%;
  }
  .menu {
    display: none;
	float: inherit
  }
  .menu-parent {
    height: auto;
    width:100%;
    padding:0px;
    border-bottom: 1px solid #DDD;
  }
  .menu-parent:first-child {
    border-top: 1px solid #DDD;
  }
  .menu-parent i {
    padding: 0px 6px;
  }
  /* メニューを移動させないため */
  #menu-navibtn:checked ~ #navi {
    position: fixed;
    overflow-y: scroll;
    overflow-x: hidden;
    height: 100%;
  }
}

/* ドロップダウンメニュー */
.menu-parent {
  position: relative;
}
.menu-parent .menu-child {
  visibility: hidden;
  opacity: 0;
  position: absolute;
  margin-left: -40px;
  width: auto;
  box-sizing: border-box;
  padding: 0px 20px;
  background-color: #FFF;
  border: 1px solid #000;
}
/* パソコン用 */
@media screen and (min-width: 1181px) {
  .menu-parent:hover .menu-child {
    visibility: visible;
    opacity: 1;
  }
}
/* スマホ用 */
@media screen and (max-width: 1180px) {
  /* ハンバーガーメニューがクリックされた時 */
  #menu-navibtn:checked ~ * .menu {
    display: block;
    opacity: 1;
  }
  #menu-navibtn:checked ~ * .menu-parent {
    max-height: inherit;
    overflow-y: visible;
  }
  #menu-navibtn:checked ~ * .menu-child {
    max-height: 0;
    overflow-y: hidden;
    visibility: hidden;
  }
  /* 子メニュー */
  .menu-parent .menu-child {
    border-top: 1px solid #DDD;
    border-left: 1px solid #FFF;
    border-right: 1px solid #FFF;
    border-bottom: 1px solid #FFF;
    position: relative;
    padding: 0 20px;
    opacity: 1;
    top: 0;
    margin-left: auto;
    left: auto;
    width: auto;
  }
  .menu-parent > label:hover {
    cursor: pointer;
    cursor: hand;
  }
  /* 子メニューがクリックされた時 */
  #navi input[type="checkbox"]:checked ~ .menu-child {
    max-height: inherit;
    overflow-y: visible;
    visibility: visible;
  }
  .angletoggle:before {
    content: "\f107";
  }
  #navi input[type="checkbox"]:checked ~ * .angletoggle:before {
    content: "\f106";
  }
}
/* 子メニュー */
.menu-child li {
  font-size: 14px;
  border-bottom: 1px solid #DDD;
}
/* 余分な最後の線を消去 */
.menu-child li:last-child {
  border: none;
}
.menu-child li i {
  margin-right: 3px;
}


/* ハンバーガー */
#navi #navibtn {
  display: none !important;
}

@media screen and (max-width: 1180px) {
  #navi #navibtn {
    display: block !important;
    position: absolute !important;
    top: 0px !important;
    right: 20px !important;
  }
  #navibtn span {
    display: block !important;
    width: 40px !important;
    height: 40px !important;
    background-color: #333 !important;
  }
  #navibtn span span {
    display: block !important;
    overflow: hidden !important;
    width: 1px !important;
    height: 1px !important;
  }
  #navibtn span span::before,
  #navibtn span span::after,
  #navibtn span::after {
    position: absolute;
    left:10px !important;
    content:"";
    width: 20px !important;
    height: 3px !important;
    background-color: #FFF !important;
  }
  /* 上の棒 */
  #navibtn span span::before {
    top: 44px !important;
  }
  #menu-navibtn:checked ~ #navi label#navibtn span span::before {
    top:40px !important;
    transform: rotate(-45deg) !important;
    -webkit-transform: rotate(-45deg) !important;
  }
  /* 下の棒 */
  #navibtn span::after {
    bottom: 35px !important;
  }
  #menu-navibtn:checked ~ #navi label#navibtn > span::after {
    bottom:48px !important;
    transform: rotate(-135deg) !important;
    -webkit-transform: rotate(-135deg) !important;
  }
  /* 中の棒 */
  #navibtn span span::after {
    top: 35px !important
  }
  #menu-navibtn:checked ~ #navi label#navibtn span span::after {
    display: none !important
  }
}



/* 基本CSS */


@media screen and (min-width:1181px) {
.contents{
	max-width: 1000px; width: 100%; margin: 0px auto;
	overflow: hidden
}
.contents_padding{
	padding: 80px 0 !important
}
}
@media screen and (max-width:1180px) {
.contents{
	max-width: 1000px; width: 90%; margin: 0px auto
}
.contents_padding{
	padding: 30px 0 !important
}
}


/* フォントCSS */
@media screen and (min-width:920px) {
p{
	font-size: 20px !important; line-height: 28px !important; letter-spacing: 0.5px
}
h1{
	font-size: 40px !important; line-height: 52px !important
	}
h2 {
	font-size: 32px !important; line-height: 40px !important
	}

.sp{
	display: none
}
}



@media screen and (max-width:919px) {
p{
	font-size: 13px !important; line-height: 24px !important; letter-spacing: 1px
}
h1{
	font-size: 22px !important; line-height: 32px !important
}
h2 {
	font-size: 20px !important; line-height: 32px !important
}

.pc{
	display: none
}
}

.center {
	text-align: center
}
.right{
	text-align: right
}
.wt{
	color: #fff
}
.gr{
	color: #3ab26c
}

.box {
	display: flex;flex-wrap: wrap
}


/* column_CSS */

.box .column4{
	width: 22%;
	margin-right: 3%;
	margin-bottom: 3%;
}
.box .column4:nth-child(4n){
	margin-right: 0
}

.box .column3{
	width: 31%;
	margin-right: 3%;
	margin-bottom: 3%;
}
.box .column3:nth-child(3n){
	margin-right: 0
}
.box .column2{
	width: 47%;
	margin-right: 3%;
	margin-bottom: 3%;
}
.box .column2:nth-child(2n){
	margin-right: 0
}


/* column(SP)_CSS */
@media screen and (max-width:919px) {
.box .column4{
	width: 100%;
	margin-right: 0;
	margin-bottom: 5%
}
.box .column4:nth-child(4n){
	margin-right: 0
}
.box .column3{
	width: 100%;
	margin-right: 0;
	margin-bottom: 5%
}
.box .column3:nth-child(3n){
	margin-right: 0
}
.box .column2{
	width: 100%;
	margin-right: 0;
	margin-bottom: 5%
}
.box .column2:nth-child(2n){
	margin-right: 0
}

}



/* トライアル受付完了_CSS */
#ok{
	margin:220px auto 50px; text-align: center; width:100%; 
}

#trial_thanks2{
	background: linear-gradient(180deg, #3ab26c 0%, #3ab26c 60%, #fff 60%, #fff 100%);
}
#trial_thanks2 h1{
text-align: center; color: #fff; margin-bottom: 40px
}
#trial_thanks2 h2{
	text-align: center; margin-bottom: 20px
}
#trial_thanks2 .column3{
	filter: drop-shadow(3px 3px 8px rgba(0,0,0,0.3));
}

#trial_calendar h1{
text-align: center; margin-bottom: 40px
}
#trial_calendar .txt{
font-weight: bold !important;
line-height: 200% !important;
	width: 90%;
	margin:0 auto 40px
}

/* トライアル受付完了(SP)_CSS */
@media screen and (max-width:919px) {
#ok h1{
	font-size:4.5vw !important; display:inline;
}
#ok h1 img{
	width: 7%
}
#trial_thanks2{
	background: linear-gradient(180deg, #3ab26c 0%, #3ab26c 100%, #fff 100%, #fff 100%);
}
#trial_calendar .txt{
font-weight: bold !important;
line-height: 200% !important;
	width: 100%;
	margin:0 auto 40px
}
}


.btn_link{
	position: relative;
	background: #3ab26c;
	padding: 40px 0 20px;
	border-radius: 10px;
	margin: 20px auto 0;
	max-width: 400px;
	text-align: center
}

.btn_link a{
	width: 100%;
	height: 100%;
	position: absolute;
	top:0;
	right:0
}
.btn_link h2{
	line-height: 0px !important;
	text-align: center;
	color: #fff;
	font-size: 30px !important;
	font-weight: normal;
	
}
@media screen and (max-width:919px) {

.btn_link h2{
	font-size: 20px !important;
}
}


/* コピーライト_CSS */
#fds_copy{
	background: #3ab26c;
	padding: 2px 0
}
#fds_copy p{
	font-size: 14px
}
