@charset "utf-8";

/* web fonts
======================================================= */
@import url(https://fonts.googleapis.com/css?family=Lato:300,400,400italic);
@import url(https://fonts.googleapis.com/css?family=Montserrat:400,700);

html {
  margin: 0;
}

body {
  display: block;
  margin: 0;
  background-color: #fff;
  font-size: 15px;
  font-family: '游ゴシック',YuGothic,'ヒラギノ角ゴ ProN W3','Hiragino Kaku Gothic ProN','メイリオ',Meiryo,sans-serif;
  line-height: 1.9;
  letter-spacing: .08rem;
  font-weight: normal;
  color: #333;
}

*, *::before, *::after {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  list-style: none;
  text-decoration: none;
}
a:link, a:visited, a:hover, a:active {
  color: #333;
  text-decoration: none;
}

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

.wrapper {
  padding: 0 1.5rem;
  width: 100%;
  max-width: 1080px;
  margin: 0 auto;
}

.container {
  margin: 0 auto;
}


/*-------------------------------------------------------------------------
BODY LAYOUT
------------------------------------------------------------------------*/
/* wrap */
.wrap{
	position: relative;
	width: 100%;
	margin: 0 auto;
}
.inner {
  position: relative;
  width: 100%;
  max-width: 1340px;
  min-width: 1080px;
  margin: 0 auto;
  padding: 0 10px;
}
.narrow_wrap{
	position: relative;
	overflow: hidden;
}
.narrow_wrap > div{
	width: 800px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translateY(-50%) translateX(-50%);
    -webkit-transform: translateY(-50%) translateX(-50%);
    -ms-transform: translateY(-50%) translateX(-50%);
}
.narrow_inner > div{
	padding: 40px;
}
.narrow_inner_b{
	max-width: 900px;
	margin: 30px auto;
}




h2.title {
  font-size: 36px;
  font-weight: normal;
  letter-spacing: .4rem;
  line-height: 1.2;
  padding-top: 100px;
  margin-bottom: 0;
  font-family: 'Unna', serif;
  text-align: center;
  color: #07539f;
}
p.title-sub {
  font-size: 16px;
  letter-spacing: .3rem;
  margin-top: 0;
  margin-bottom: 70px;
  text-align: center;
}

/* 文字の色 */
.red {font-weight:bold;color:#ff0000;}
.blue{font-weight:bold;color: blue;}
.gold{color: rgb(206,177,96);}
.gold-l{color: rgb(206,177,96);font-weight: bold;}
.black{font-weight:bold;color: #000;}
.white{font-weight: bold;color: #fff;}

/* 文字 サイズ */
h2{font-size: 1.3em;}
.text1{
    width: 98%;
    font-size: 1.1em;
    font-weight:normal;
    text-align: left;
    margin: 0 auto 20px;
    line-height: 1.5;
}
.text2{color: red}
.text3{font-size: 0.9em;}
.text4{font-size: 0.9em;text-align: center;}

.font20{font-size: 20px;}
.font30{font-size: 30px;}

/* 余白 */
.space30{margin-top: 30px;}

/* 各ページトップタイトル */
.title-text{
  text-align: center;
  font-size: 3.0rem;
  font-family: 'Raleway', sans-serif;
  color: #b71b30;
  margin: 0 0 35px 0;
  padding: 50px 0 0 0; }

.title-text span{
  display: block;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.0;
  color: #5c5959;
  padding: 15px 0 0 0;}

.top-gray{width: 100%;margin: 0 auto;}

.graymargin{background: #e3e3e3;padding: 20px 0;}
.graymargin p.red {font-size: 1.5rem;}
.graymargin p{text-align: center;font-size: 1.1rem;}
.graymargin p+p {
  text-align: left;
  margin-top: 0;
  padding: 0 73px;}



.title-text2{text-align: center;
  font-size: 3.0rem;
  font-family: 'Raleway', sans-serif;
  color: #b71b30;
  margin: 0 0 35px 0;
  padding: 10px 0 0 0; }

.title-text2 span{
  display: block;
  text-align: center;
  font-size: 1.2rem;
  line-height: 1.0;
  color: #5c5959;
  padding: 10px 0 0 0;}



/* チャプター */
.chaptitle1{font-size:30px;font-weight:bold;color: #087ed4;text-align: center;margin: 20px 0px 20px 0px;}

/* Flex共通 */
.fle_l{
  display: flex;
  flex-wrap: wrap;
}
/*横並び(右詰)*/
.fle_r{
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
/*横並び(センタリング)*/
.fle_c{
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
/*横並び(左右均等振り*コンテンツの間)*/
.fle_btw{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
/*横並び(左右均等振り*コンテンツの両端)*/
.fle_ard{
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
}

/* ボタン */

.btn a {
  display: block;
  width: 285px;
  padding: 16px 0;
  background: #366ac8;
  color: #fff;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  margin: 0 auto;
}

.btn a:visited {color: #fff;}
.btn a span {
  background: url(../img/arw_btn.png) right 50% no-repeat;
  padding: 0 20px 0 0;
  font-size: 12px;
}

/** Button クラス
------------------------------ **/

.btn {
  display: inline-block;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s;
          transition: all 0.3s;
  border: 2px solid #000000;
  margin: 0 0 15px 20px;
  overflow: hidden;
}


.btn2 {
  display: inline-block;
  position: relative;
  text-decoration: none;
  cursor: pointer;
  -webkit-transition: all 0.3s;
          transition: all 0.3s;
  border: 2px solid #000000;
  margin: 0 0 15px 20px;
  overflow: hidden;
}

 /** button apply.html用 start
 -----------------------------**/ 
 
.btn1 {
    display: inline-block;
    position: relative;
    text-decoration: none;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    border: 2px solid #000000;
    margin: 15px 6px 15px 6px;
    overflow: hidden;
    text-align: center;
}

.btn1.btn1-wid175 {width: 175px;height: 40px;line-height: 40px;}
.btn1.btn1-radius01 {border-radius: 5px; }
.btn1.btn1-color01 {border: 2px solid #00AB7C; }
.btn1.btn1-color01 .btn-text {color: #00AB7C; }
.btn1.btn1-color01 .btn-text-large {color: #00AB7C; }

.btn1.btn1-hover02 {
    background-color: #FFFFFF;
    -webkit-transition: all 0.3s;
            transition: all 0.3s; }
.btn1.btn1-hover02 .btn-text {
      color: #00AB7C;
      -webkit-transition: all 0.3s;
              transition: all 0.3s; }    
.btn1.btn1-hover02:hover {
      background-color: #00AB7C;
      -webkit-transition: all 0.3s;
              transition: all 0.3s; }

.btn1.btn1-hover02:hover .btn-text {
        color: #FFFFFF;
        -webkit-transition: all 0.3s;
                transition: all 0.3s; }

/** button apply.html用 end
 ----------------------------- **/

/*-- btn hover 01 --*/ 


  .btn .btn-text {
    color: #000000;
    position: relative;
    z-index: 2;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: 2px; }

  .btn .btn-bg {
    position: absolute;
    top: 0;
    left: 0; }
  .btn:last-child {
    margin-right: 0; }
  
  .btn.btn-small {
    width: 150px;
    height: 40px;
    line-height: 40px; }
  .btn.btn-medium {
    width: 130px;
    height: 40px;
    line-height: 40px; }
  .btn.btn-large {
    width: 190px;
    height: 70px;
    line-height: 60px; }
  .btn-mediumW{
    width: 250px;
    height: 50px;

  }
  /*-- btn radius --*/


  .btn.btn-radius01 {
    border-radius: 5px; }
  .btn.btn-radius02 {
    border-radius: 30px; }
  .btn.btn-radius03 {
    width: 150px;
    height: 150px;
    line-height: 150px;
    border-radius: 150px; }
  
    /*-- btn color --*/

  .btn.btn-color01 {
    border: 2px solid #00AB7C; }
    .btn.btn-color01 .btn-text {
      color: #00AB7C; }

  .btn.btn-color11 {
    border: 2px solid #0953AB; }
    .btn.btn-color01 .btn-text {
      color: #0953AB; }



  .btn.btn-color02 {
    border: 2px solid #0953AB; }
    .btn.btn-color02 .btn-text {
      color: #0953AB; }
  .btn.btn-hover01 {
    background-color: #00AB7C;
    opacity: 1;
    -webkit-transition: all 0.3s;
            transition: all 0.3s; }
    .btn.btn-hover01 .btn-text {
      color: #FFFFFF; }
    .btn.btn-hover01:hover {
      opacity: 0.7;
      -webkit-transition: all 0.3s;
              transition: all 0.3s; }

  .btn.btn-hover02 {
    background-color: #FFFFFF;
    -webkit-transition: all 0.3s;
            transition: all 0.3s; }
    .btn.btn-hover02 .btn-text {
      color: #00AB7C;
      -webkit-transition: all 0.3s;
              transition: all 0.3s; }
    .btn.btn-hover02:hover {
      background-color: #00AB7C;
      -webkit-transition: all 0.3s;
              transition: all 0.3s; }
      .btn.btn-hover02:hover .btn-text {
        color: #FFFFFF;
        -webkit-transition: all 0.3s;
                transition: all 0.3s; }

  .btn.btn-hover12 {
    background-color: #FFFFFF;
    -webkit-transition: all 0.3s;
            transition: all 0.3s; }
  .btn.btn-hover12 .btn-text {
      color: #0953AB;
      -webkit-transition: all 0.3s;
              transition: all 0.3s; }
  .btn.btn-hover12:hover {
      background-color: #0953AB;
      -webkit-transition: all 0.3s;
              transition: all 0.3s; }
   .btn.btn-hover12:hover .btn-text {
        color: #FFFFFF;
        -webkit-transition: all 0.3s;
                transition: all 0.3s; }
  .btn.btn-hover03 {
    border: 2px solid #00AB7C; }
    .btn.btn-hover03:hover {
      border: 2px dashed #00AB7C; }
  .btn.btn-hover04 .btn-bg {
    background-color: #00AB7C;
    width: 100%;
    height: 0;
    -webkit-transition: all 0.3s;
            transition: all 0.3s; }
  .btn.btn-hover04:hover .btn-text {
    color: #FFFFFF;
    -webkit-transition: all 0.3s;
            transition: all 0.3s; }
  .btn.btn-hover04:hover .btn-bg {
    height: 100%;
    -webkit-transition: all 0.3s;
            transition: all 0.3s; }
  .btn.btn-hover05 .btn-bg {
    width: 0;
    height: 100%;
    background-color: #00AB7C;
    -webkit-transition: all 0.3s;
            transition: all 0.3s; }
  .btn.btn-hover05:hover .btn-text {
    color: #FFFFFF;
    -webkit-transition: all 0.3s;
            transition: all 0.3s; }
  .btn.btn-hover05:hover .btn-bg {
    width: 100%;
    -webkit-transition: all 0.3s;
            transition: all 0.3s; }

  .btn.btn-hover06 {
    overflow: hidden; }
    .btn.btn-hover06 .btn-text {
      color: #0953AB;
      -webkit-transition: all 0.3s;
              transition: all 0.3s; }
    .btn.btn-hover06 .btn-bg {
      width: 100%;
      height: 100%;
      background-color: #FFFFFF;
      -webkit-transition: 0.3s;
              transition: 0.3s; }
    .btn.btn-hover06 .icon {
      position: absolute;
      top: 0;
      right: -30px;
      z-index: 2; }
    .btn.btn-hover06:hover .btn-text {
      color: #FFFFFF;
      -webkit-transition: all 0.3s;
              transition: all 0.3s; }
    .btn.btn-hover06:hover .icon {
      color: #FFFFFF;
      -webkit-transition: all 0.3s;
              transition: all 0.3s; }
    .btn.btn-hover06:hover .btn-bg {
      background-color: #0953AB;
      -webkit-transition: 0.3s;
              transition: 0.3s; }


  .btn.btn-hover07 {
    overflow: hidden; }
    .btn.btn-hover07 .icon {
      position: absolute;
      top: 0;
      right: -30px;
      z-index: 2;
      -webkit-transition: all 0.3s;
              transition: all 0.3s; }
    .btn.btn-hover07:hover .icon {
      right: -70px;
      -webkit-transition: all 0.3s;
              transition: all 0.3s; }
  .btn.btn-hover08 .btn-text {
    color: #0953AB;
    -webkit-transition: all 0.3s;
            transition: all 0.3s; }
  .btn.btn-hover08 .icon {
    position: absolute;
    top: 0;
    right: -30px;
    z-index: 2;
    -webkit-transition: all 0.3s;
            transition: all 0.3s; }
  .btn.btn-hover08 .btn-bg {
    width: 0;
    height: 100%;
    background-color: #0953AB;
    -webkit-transition: all 0.3s;
            transition: all 0.3s; }
  .btn.btn-hover08:hover .btn-text {
    color: #FFFFFF;
    -webkit-transition: all 0.3s;
            transition: all 0.3s; }
  .btn.btn-hover08:hover .icon {
    color: #0953AB;
    right: -70px;
    -webkit-transition: all 0.3s;
            transition: all 0.3s; }
  .btn.btn-hover08:hover .btn-bg {
    width: 100%;
    -webkit-transition: all 0.3s;
            transition: all 0.3s; }
  .btn.btn-hover09 {
    border: none; }
    .btn.btn-hover09 .icon {
      position: absolute;
      top: 0;
      right: -30px;
      z-index: 2;
      -webkit-transition: all 0.3s;
              transition: all 0.3s; }
    .btn.btn-hover09 svg {
      position: absolute;
      top: 0;
      left: 0; }


.overimg {
  box-shadow: #fff 0 0 0;
}
a:hover .overimg {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
  filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  background: #fff;
}

/*-------------------------------------------------------------------------
OTHER FORMAT STYLE
------------------------------------------------------------------------*/
/* パンくず */
.bread-pad{
  padding:10px 0 10px;
}
.breadcrumb_wrap{
	background:#F8F8F8;
	margin-bottom:80px;
}
.breadcrumb-inner{
	margin:0 auto;
}
.breadcrumb-inner li{
	float:left;
	font-size:12px;
	color:#000000;
	font-weight:normal;
}
.breadcrumb-inner li a{
  font-size:12px;
  color:#000000;
  font-weight:normal;
}
.breadcrumb-inner li a:hover{color:#ee609c;}
.breadcrumb-inner li{margin-right:5px;}

/* For IE 6/7 (trigger hasLayout) */
.cf,
.wp-pagenavi {
	zoom:1;
}
.cf:before, .cf:after {
  content: "";
  display: table;
}








/* header */
#header {
  display: block;
  margin: 0;
}

#gnav {
  position: fixed;
  width: 100%;
  top: 0;
  z-index: 200;
  background: rgb(255, 255, 255);
  border-bottom: 1px solid #d9d9d9;
}

.nav-box {
  top: 0;
  display: flex;
  justify-content: space-between;
  max-width: 1080px;
  height: 80px;
  padding: 20px;
  margin: 0 auto;
}

.global-nav__list, .global-nav__item-sns {
  display: none;
}

.fas {
  margin-left: 5px;
  font-size: .8em;
}

h1.logo {
  display: flex;
  align-items: center;
  font-weight: normal;
  line-height: 1.6;
  font-size: 16px;
  margin: 0;
  font-family: 'Asap', sans-serif;
  letter-spacing: .15rem;
}

a.logo {
  display: block;
}

h1.logo:hover {
  opacity: 0.7;
}

span.text-small {
  font-size: 12px;
  margin: 0;
  line-height: 20px;
}

.nav-box ul {
  display: flex;
  align-items: center;
}

.nav-box li {
  display: list-item;
  text-align: -webkit-match-parent;
}

.nav-box li a {
  position: relative;
  display: inline-block;
  font-size: 15px;
  height: 50px;
  margin: 0 1.3rem;
  letter-spacing: 0.12rem;
  line-height: 50px;
}

.nav-box li a:hover {
  border-bottom: 1px solid #333;
}

.nav-box li a:active {
  opacity: 0.5;
}

ul.global-nav__list {
  font-family: 'Asap', sans-serif;
  font-size: 14px;
}

/* ここまでheader */
/* ここからtopslider */
.topimg{margin: 0 auto;
text-align: center;
margin-top:60px;
margin-bottom:20px;

}

/* ここまでtopslider */
/* ここからsnsNav */

.snsNav {
  position: fixed;
  top: 40%;
  right: 10px;
  margin: 0;
  height: 100vh;
  width: 50px;
  padding: 0 10px;
  z-index: 10;
}

.sns-icon {
  text-align: center;
  writing-mode: vertical-rl;
  margin: 10px 0;
  font-size: 25px;
  color: #555;
}

.sns-icon:hover {
  color: #92BDE6;
}

/* ここまでsnsNav */
/* ここまでheader */
/* ここからtopMain */
#topMain{
  height: 570px;
  background: url(../img/topMain2.jpg) no-repeat center top;
  background-size: cover;
  background-attachment: fixed;
  position: relative;
  overflow: hidden;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.head-txt{
color: #fff;
font-weight: bold;
font-family: Quicksand, sans-serif;
font-size: 1.3em;
text-shadow:1px 1px 0 #000,-1px 1px 0 #000,1px -1px 0 #000,-1px -1px 0 #000;
position: absolute;
top:35%;
left: 50%;
-ms-transform: translate(-50%,-50%);
-webkit-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
}

.head-main{
  position: absolute;
  color: white;/*文字は白に*/
  font-weight: bold; /*太字に*/
  font-size: 2.5em;/*サイズ2倍*/
  font-family :Quicksand, sans-serif;/*Google Font*/
  top: 50%;
left: 50%;
-ms-transform: translate(-50%,-50%);
-webkit-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
margin:0;
padding:0;
text-align: center;
text-shadow: 
0 0 0.10em #2962FF,
0 0 0.15em #2962FF,
0 0 0.80em #2962FF,
0 0 1.00em #2962FF;
  }

.head-main .red-l{
font-size: 1.2em;
text-shadow:2px 2px 0 #f00,-1px 1px 0 #f00,1px -1px 0 #f00,-1px -1px 0 #f00;
}


.head-end{
    color: #fff;
    font-weight: bold;
    font-family: Quicksand, sans-serif;
    font-size: 1.3em;
    text-shadow:1px 1px 0 #000,-1px 1px 0 #000,1px -1px 0 #000,-1px -1px 0 #000;
    position: absolute;
    top:65%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
  }

.head-end .red{
text-shadow:1px 1px 0 #f00,-1px 1px 0 #f00,1px -1px 0 #f00,-1px -1px 0 #f00;
font-size: 1.2em;
}

.contact-buttton{
position: relative;
}

/* ボタン */
.button {
font-size: 1.5rem;
font-weight: bold;
text-align: center;
text-decoration: none;
display: inline-block;
padding: 12px 10px;
border-radius: 100px;
background: rgb(240, 60, 44);
width: 720px;
box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.4);
color: #fff!important;
transition: all .3s ease;
position: absolute;
top: 80%;
left: 50%;
-ms-transform: translate(-50%,-50%);
-webkit-transform: translate(-50%,-50%);
transform: translate(-50%,-50%);
}



.button:hover{
background: #fff;
color: rgb(226,83,70) !important;
}


  .button-l p {
    font-size: 2.6rem;
    font-weight: bold;
    margin: 0;
}


/* ここからtopSection */

#topSection {
  padding-top: 50px;
  padding-bottom: 50px;
  background-color: #ECF5FA;
}


.topMain-contents {
  position: relative;
  max-width: 1080px;
  height: 550px;
  margin-bottom: 100px;
}

.intro_title{
font-size: 30px;
font-weight: bold;
line-height: 1.4;
}

.intro_title span{
  font-size:16px;
}

.intro_txt{
  margin: 30px 0 0 0;
    color: #545454;
    font-size: 17px;
    line-height: 2.0;
}

.yellow{
  background: linear-gradient(transparent 65%, #fdffc4 65%);
}

.topMain-text-l, .topMain-text-s, .topMain-read-text, .main-visual {
  position: absolute;
}

p.topMain-text-l{
  top: 250px;
  left: 0;
  z-index: 2;
  display: block;
  font-size: 70px;
  letter-spacing: 1.3rem;
  font-family: 'Unna', serif;

}

p.topMain-text-s {
  top: 360px;
  left: 0;
  z-index: 2;
  display: block;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.15rem;

}

p.topMain-read-text {
  top: 450px;
  z-index: 2;
  left: 0;
  font-size: 17px;
  letter-spacing: 0.2rem;
}

img.main-visual {
  width: 700px;
  top: 50px;
  right: 0;
}


/* ここからtopService */


#topService {
  text-align: center;
  margin: 0 auto;
  padding-bottom: 60px;
  background-color:rgb(249,249,249);
}


.service-card{
  display: flex;
  justify-content: space-between;
}
.card-box{
  width: 32%;
  background: #fff;
  border-radius: 5px;
  box-shadow: 0 2px 5px #ccc;
  padding: 15px;
  margin: 30px 0 30px 0;
}
.card-content {
  color: #777;
  font-size: 14px;
  line-height: 1.5;
  text-align: left;
  padding: 20px;

}

.topService-comment{
  margin-top: 50px;
}

.service-image{
  width: 42px;
  height: 46px;
  margin-right: 15px;
}

.topService-button-area{
  margin-top: 20px;
}

/* ここからWorks */

#topWorks {
  text-align: center;
  margin: 0 auto;
  padding-bottom: 60px;
  background-color: #ECF5FA;
}

h2.title {
  font-size: 36px;
  font-weight: normal;
  letter-spacing: .4rem;
  line-height: 1.2;
  padding-top: 74px;
  margin-bottom: 0;
  font-family: 'Unna', serif;
  text-align: center;
}
p.title-sub {
  font-size: 16px;
  letter-spacing: .3rem;
  margin-top: 0;
  margin-bottom: 70px;
  text-align: center;
}

.topWorks-flexAll {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin-bottom: 70px;
}

.topWorks-flexAll-inner {
  position: relative;
  width: 32%;
  margin-bottom: 18px;
}

.topWorks-hov {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 75%;
  transition: all .2s;
  color: transparent;
}

p.topWorks-menu {
  display: block;
  margin-top: 3%;
  text-align: center;
  font-family: 'Unna', serif;
  letter-spacing: 0.3rem;
  font-size: 22px;
  font-weight: normal;

}

.topWorks-hov:hover {
  background-color: rgba(2, 2, 2, 0.5);
  color: #fff;
}

.works-title {
  font-size: 14px;
  letter-spacing: .3rem;
  margin-top: 5px;
}

a.view-more {
  margin: 0 auto;
  display: block;
  width: 250px;
  height: 50px;
  line-height: 50px;
  border: 1px solid #333;
  text-align: center;
  background: #fff;
  padding-left: 50px;
  transition: all .3s;
}

a.view-more::after {
  font-family: "Font Awesome 5 Free";
  content: '\f0da';
  font-weight: 900;
  padding-left: 60px;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
}

a.view-more:hover {
  background: #455C81;
  color: #fff;
}

a.view-more:active {
  background: #455C81;
  color: #fff;
}



.contact-btn {
  margin-top: 70px;
display: inline-block;
position: relative;
width: 250px;
height: 50px; 
line-height:50px;
text-align: center;
text-decoration: none;
color: #333;
  background: #eee;
  transition: all .2s;
}
.contact-btn::before {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0px;
  left: 0px;
  border-top: 1px solid #333;
  border-left: 1px solid #333;	
}
.contact-btn::after {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  top: 0px;
  right: 0px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
}
.contact-btn span::before {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: 0px;
  left: 0px;
  border-bottom: 1px solid #333;
  border-left: 1px solid #333;
}
.contact-btn span::after {
  display: inline-block;
  content: "";
  width: 10px;
  height: 10px;
  position: absolute;
  bottom: 0px;
  right: 0px;
  border-bottom: 1px solid #333;
  border-right: 1px solid #333;	
}
.contact-btn:hover {
cursor: pointer;
  text-decoration: none;
  background: #F4F4B0;
  
}
/* ここまでtopWorks */



/* ここからcontact */
/*LP FOOTER CONTACT*/
.lp_footer_contact{
	background: url(../img/contact/lp_footer_contact.jpg) center center no-repeat;
	background-size: cover;
	padding: 100px 0;
	background-attachment: fixed;
}
.lp_footer_contact_ttl_wrap .lp_title{
	font-size: 15px;
	text-align: center;
	color: #FFF;
	margin-top: -40px;
}

.lp_footer_contact_ttl_wrap .lp_title span{
	font-size: 30px;
	line-height: 1em;
	color: #FFF;
}
.lp_footer_contact_ttl_wrap *{
	color: #FFF;
}
.lp_footer_contact_inner_list > *{
	width: calc( 50% - 15px );
}
.lp_footer_contact_inner_list > * > a{
	max-width: 350px;
	display: block;
	margin: 0 auto;
}
.lp_footer_contact_inner_list_mail a i{
	font-size: 23px;
	margin-bottom: 10px;
}
.lp_footer_contact_inner_list_mail a{
	display: block;
	margin-bottom: 6px;
	padding: 10px 20px;
	background: #3abecd;
	border: 2px solid #3abecd;
	color: #FFF;
	text-align: center;
	font-weight: bold;
	font-size: 16px;
	border-radius: 40px;
	position: relative;
	transition: 0.3s;
	box-shadow:0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 5px 0 rgba(0, 0, 0, 0.08);
}
.lp_footer_contact_inner_list_mail a:hover{
	background: #FFF;
	color: #3abecd;
}

.lp_title > span {
  font-size: 12px;
  display: block;
  margin-bottom: 5px;
  font-family: 'Montserrat', sans-serif;
  color: #3abecd;
}
.lp_title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc( 50% - 15px );
  display: block;
  height: 2px;
  width: 30px;
  margin: 0 auto;
  background: #000000;
}

.lp_footer_contact_ttl_wrap .lp_title:after{
	background: #FFF;
}

.lp_footer_contact_inner{
	position: relative;
	width: 100%;
	max-width: 1060px;
	min-width: 800px;
	margin: 0 auto;
	padding: 30px;
	background: #FFF;
	box-shadow:0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 5px 0 rgba(0, 0, 0, 0.08);
}
.lp_footer_contact_inner:after{
	content: "";
	display: block;
	height: 100%;
	width: 1px;
	background: #eeeeee;
	position: absolute;
	left: 50%;
	top: 0;
}

.lp_footer_contact_inner_list > * {
  width: calc( 50% - 15px );
}
/*TEL*/
.tel_link{
	pointer-events: none;
}

/* 問い合わせ本体 */
.feedback-input {
  color:#000;
  font-family: Helvetica, Arial, sans-serif;
  font-weight:100;
  font-size: 14px;
  border-radius: 5px;
  line-height: 22px;
  background-color: #fff;
  border:2px solid #686767;
  transition: all 0.3s;
  padding: 13px;
  margin-bottom: 15px;
  width:80%;
  box-sizing: border-box;
  outline:0;
}

.feedback-input:focus { border:2px solid #CC4949; }

textarea {
height: 150px;
line-height: 150%;
resize:vertical;
}

[type="submit"] {
  /* font-family: 'Montserrat', Arial, Helvetica, sans-serif; */
  width: 60%;
  background:#DEEEF7;
  border-radius:5px;
  border:0;
  cursor:pointer;
  color: #000;
  font-size:14px;
  padding-top:10px;
  padding-bottom:10px;
  transition: all 0.3s;
  margin-top:-4px;
  font-weight:200;

  
}
[type="submit"]:hover { background:#F4F4B0; }

.submit-button{
  text-align: center;
}



#contact {
  text-align: center;
  margin-bottom: 120px;
}

form {
  max-width: 700px;
  margin: 70px auto 0;
}

.contact-item {
  overflow: hidden;
  margin-left: 20px;
}

.lavel {
  float: left;
  text-align: left;
  width: 170px;
  line-height: 45px;
  border-left: solid 6px #DEEEF7;
  padding-left: 15px;
  padding-right: 15px;
}

.contact-form input[type=text],
.contact-form input[type=email],
.contact-form textarea {
  display: block;
  width: 450px;
  margin-bottom: 15px;
  padding: 15px;
  border: none;
  background: #DEEEF7;
  color: #333;
}

.contact-form textarea {
  height: 150px;
}

.contact-form input[type=submit] {
  display: block;
  margin: 40px auto 0;
  width: 250px;
  height: 50px;
  line-height: 50px;
  font-size: 15px;
  border: 1px solid #333;
  text-align: center;
  background: #fff;
  transition: all .3s;
  cursor: pointer;
}

.contact-form input[type=submit]:hover {
  background: #455C81;
  color: #fff;
}




/* ここまで contact */

/* ▼▼footer▼▼*/
.footer-top{
  padding-bottom: 25px;
    margin-bottom: 25px;
    border-bottom: 1px solid #eeeeee;
}

.footer-bottom {
  margin-bottom: 50px;
}

.footer-bottom > div:first-child {
  width: 270px;
  margin-right: 50px;
}
.footer-desc {
  font-size: 11px;
}

.footer-bottom-list {
  width: calc( 100% - 320px);
}

.footer-bottom-list > ul {
  width: 25%;
}

.footer-bottom ul li, .footer-bottom ul li a {
  font-size: 11px;
  position: relative;
  transition: 0.3s;
}
.footer-bottom ul li {
  margin-bottom: 3px;
}


.copy {
  font-size: 10px;
  background: #3abecd;
  padding: 10px 0;
  color: #FFF;
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6em;
  text-align: center;
}
.copy p{
  margin-bottom: 0;
}
/* ▲▲footer▲▲*/


/* ▼▼ hp.html▼▼*/

.hp_main{
  padding: 80px 0 0;
  background: url(../img/hp/hp_bg.jpg) center center no-repeat;
  background-size: cover;
}





.ps_bl_top {
  align-items: baseline;
  align-items: flex-start;
}

.lp_main_v_inner > div:nth-child(1) {
  background: rgba(50,190,205,0.9);
  padding: 35px;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 5px 0 rgba(0, 0, 0, 0.08);
  width: 50%;
}

.lp_main_v_inner > div:nth-child(2) {
  padding: 35px;
  width: 50%;
}

.lp_main_v_inner > div:nth-child(2) img {
  max-width: 500px;
  display: block;
  margin: 0 auto;
}

.lp_main_v_ttl {
  font-size: 26px;
  font-family: 'Montserrat', sans-serif;
  line-height: 26px;
  color: #FFF;
}

.lp_main_v_ttl span.before {
  font-size: 12px;
  line-height: 26px;
  margin-left: 15px;
}

.lp_main_v_ttl span.after {
  font-size: 15px;
  display: block;
  border-top: 1px solid #FFF;
  margin-top: 15px;
  padding-top: 15px;
  margin-bottom: 15px;
}

.head_lp_list{
  flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;   
}

.head_lp_list li {
  background: #FFF;
  color: #3abecd;
  padding: 10px 25px 8px;
  border-radius: 19px;
  margin-right: 20px;
  margin-bottom: 20px;
  font-size: 13px;
  font-weight: bold;
  text-align: center;
}

body p.head_lp_list_desc{
	color: #FFF;
	margin-bottom: 0 !important;
}

/* ここからhp-intro */
.hp-intro{
    padding-top: 60px;
    padding-bottom: 60px;
    background: #F8F8F8;
}
.hp_ttl_wrap{
  margin-bottom: 30px;
}
.hp_intro_ttl{
  width: 100%;
}

.hp_intro01_ttl span{
	border: 2px solid #000000;
	padding: 10px 15px;
	line-height: 1em;
	text-align: center;
	margin: 0 auto 20px;
	display: block;
	width: 270px;
	border-radius: 20px;
	font-size: 11px;
}
.hp_intro01_ttl img{
	width: 200px;
	height: auto;
	display: block;
	margin: 0 auto 30px;
	text-align: center;
}
.hp_top_desc{
	text-align: center;
	font-size: 16px;
	font-weight: bold;
	line-height: 1em;
	margin-bottom: 20px;
}

.fle_btw{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

/*コンテンツの高さを可変*/
.ps_bl_top {
	align-items: baseline;
	align-items: flex-start;
}
.ps_bl_btm {
	align-items: baseline;
    align-items: flex-end;
}
/*コンテンツの横位置　右寄せ*/
.ps_right {
    justify-content: flex-end
}
/*コンテンツの高さ位置　中央*/
.ps_ctr {
    align-items: center
}
/*コンテンツの高さ位置　下揃え*/
.ps_btm {
    align-items: flex-end;
}
/*コンテンツの並び順 右から左*/
.order_r-rv{
	flex-direction: row-reverse;
}
/*コンテンツの並び順 下から上*/
.order_c-rv{
	flex-direction: column-reverse;
}
/*一つだけ右寄せ*/
.fle_part_r{
	margin-left: auto;
}

.lo_marker{
	background: linear-gradient(transparent 40%, #ffffa0 40%);
}

.lp_intro01_list li{
	width: 25%;
	border: 1px solid #F8F8F8;
	background: #FFF;
	padding: 20px;
}
.lp_intro01_list li div {
  width: 90px;
  height: 90px;
  margin: 0 auto 20px;
  border-radius: 45px;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.16), 0 2px 10px 0 rgba(0, 0, 0, 0.12);
  overflow: hidden;
}

.lp_intro01_list li img {
  max-width: 100%;
  display: block;
}
.lp_intro01_list li h3 {
  font-size: 14px;
  padding: 6px;
  line-height: 1.4em;
  text-align: center;
  margin: 0 auto 10px;
}

.lp_intro01_list li p {
  margin-bottom: 0;
}

.lp_btn {
  width: 270px;
  margin: 40px auto 0;
}
.lp_btn a span {
  font-size: 17px;
  display: block;
  margin: 5px auto 0;
  line-height: 1em;
}
.lp_btn a {
  display: block;
  margin-bottom: 6px;
  padding: 10px 20px;
  background: #3abecd;
  border: 2px solid #3abecd;
  color: #FFF;
  text-align: center;
  font-weight: bold;
  border-radius: 30px;
  position: relative;
  transition: 0.3s;
  font-size: 10px;
  line-height: 1em;
  box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.10), 0 1px 5px 0 rgba(0, 0, 0, 0.08);
}

.lp_btn.blog_btn a{
	padding: 20px 20px;
	font-size: 14px;
}
.lp_btn a span{
	font-size: 17px;
	display: block;
	margin: 5px auto 0;
	line-height: 1em;
}
.lp_btn a:hover{
	background: #FFF;
	color: #3abecd;
}

.hp_intro2 {
  padding-top: 60px;
  padding-bottom: 160px;
  background: url(../img/hp/lp_quality_bg.jpg) center center;
  background-size: cover;
  color: #FFF;
}

.hp_title {
  font-size: 20px;
  margin-bottom: 20px;
  padding: 20px;
  line-height: 1.8em;
  text-align: center;
  position: relative;
}

.hp_title {
  font-size: 20px;
  margin-bottom: 20px;
  padding: 20px;
  line-height: 1.8em;
  text-align: center;
  position: relative;
}

.hp_title > span {
  font-size: 12px;
  display: block;
  margin-bottom: 5px;
  font-family: 'Montserrat', sans-serif;
  color: #3abecd;
}
.hp_title.wh span {
  color: #FFF;
}

.hp_intro2 .hp_title:after {
  background: #FFF;
}
.hp_title:after {
  content: "";
  position: absolute;
  bottom: 0;
  left: calc( 50% - 15px );
  display: block;
  height: 2px;
  width: 30px;
  margin: 0 auto;
  background: #fff;
}

.sp_txt_c {
  text-align: center;
}

.lp_intro02_list_wrap {
  margin-top: -140px;
  padding-bottom: 60px;
}

.fle_center{
  display: flex;
  justify-content: center;
}
.lp_intro02_list {
  margin-bottom: 40px;
}


.lp_intro02_list li {
  width: 28%;
  padding: 25px;
  margin-right: 5%;
  background: #FFF;
  position: relative;
}

.lp_intro02_list li:before {
  position: absolute;
  content: "";
  display: block;
  right: 0;
  bottom: 0;
  height: 30px;
  width: 30px;
  border-right: 1px solid #000000;
  border-bottom: 1px solid #000000;
}

.lp_intro02_list li:nth-child(3n){
	margin-right: 0;
}

.lp_intro02_list li p{
	margin-bottom: 0;
}

.lp_intro02_list li img {
  text-align: center;
  display: block;
  max-width: 230px;
  margin: 0 auto 20px;
}
.lp_intro02_list li h3 {
  text-align: center;
  font-size: 16px;
  margin-bottom: 15px;
}

.lp_intro02_list li:after {
  position: absolute;
  content: "";
  display: block;
  left: 0;
  bottom: 0;
  height: 30px;
  width: 30px;
  border-left: 1px solid #000000;
  border-bottom: 1px solid #000000;
}

.hp_reason{
  padding-top: 60px;
    padding-bottom: 60px;
    background: #F8F8F8;
}

.hp_reason_desc{
  width: 60%;
  margin: 0 auto;
}
.hp_reason_desc h3{
  font-size: 1.4em;
}
.hp_reason_desc p{
  font-size: 1.1em;
}

#top_plan{
  background-color: #FFFFFF;
    text-align: center;
    margin-top: 25px;
    margin-bottom: 25px
}
#reason{
  text-align:center;
  background-color:#21497b;
  padding:25px 0 25px 0;
  width: 100%;
}


#reason h1{
   float: none;
    display: block;
    line-height: 1.2;
    padding: 20px 20px 20px 0;
    font-size: 33px;
    font-weight: bold;
    color: #FFFFFF
}

#reasonbox{width: 100%;
           margin: 0 auto;}


#reason dl{
  width:100%;
  float:left;
  text-align:left;
  background-color:#21497b;
}



#reason dt{
  float:left;
  clear:left;
  width: 100%;
  text-align: left;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
}

#reason dd{
  float:left;
  width:100%;
  margin-top:12px;
  margin-bottom: 30px;
  margin-left: 10px;
  font-size: 20px;
  color:#fff;
  text-align: left;
}

#reason h2{

  float: left;
    display: block;
    line-height: 20px;
    padding: 15px 20px 20px 340px;
    font-size: 24px;
    font-weight: bold;
    color: #FFFFFF
}

#reason h3{
  float: left;
    display: block;
    line-height: 20px;
    padding: 15px 20px 20px 340px;
    font-size: 20px;
    font-weight: bold;
    color: #FFFFFF
}

.gold-large{
  color: rgb(206,177,96);
  font-size: 38px;
}

.gold-midium{
  color: rgb(206,177,96);
  font-size: 24px;
  margin-left: 10px;
}


.nayami h3 {margin-top: 30px;}



#faq{margin-top:45px;background:url(../img/faq_bg.png) repeat-y;}
#faq_body{padding-bottom:5px;background:url(../img/faq_bg_bottom.png) bottom no-repeat;}
#faq dl{
  width:80%;
  padding:10px 40px 28px;
  margin:0 auto 20px auto;
  border: solid 1px #edece8;
  background-color:#fff;
  text-align:justify;
}
#faq dt, .faqs dt{
  height:39px;
  font-weight:bold;
  border-bottom:dotted 2px #cec5af;
  background:url(../img/faq_icon_q.png) left  center no-repeat;
}
#faq dt.x2{
  height:58px;
  margin-bottom:10px;
  padding:10px 0 0 60px;
  line-height:1.5;
}
#faq dd, .faqs dd{
  padding:5px 0 0 60px;
  font-size:14px;
  line-height:1.6;
  background:url(../img/faq_icon_a.png) left top no-repeat;
}
#faq dd{
  font-size:13px;
}
#faq dd p, .faqs dd p{
  margin-top:5px;
}
#faq dd p span{
  color:#e33;
}
/** kaiketsu
------------------------------ **/
#whitearea{
  width: 94%;
    padding: 0 0 0 0;
    margin: 0 auto 20px auto;
    border: solid 1px #edece8;
    background-color: #fff;
    text-align: justify;

}

.kaiketsu{
  text-align: center;
}

#whitearea p.text {
  margin-top: 10px;
    padding-left: 10px;   
    padding-right: 10px;
    text-align: left;
}



#tokuten{text-align: center;}

/** amenity
------------------------------ **/
#amenity h3{
  margin-top:-20px;
  margin-bottom:40px;
}
#amenity dl{
  max-width:480px;
  margin-bottom:40px;
  margin: 0 auto;
  background:url(../img/user_bg.png);
  border-radius:6px;
}
#amenity dt{
  position:relative;
}
#amenity dd{
  padding:20px 35px;
  text-align:center;
}
#amenity dd p{
  margin-bottom:15px;
  line-height: 1.5em;
  text-align:left;
}
#amenity dd .caution{
  line-height:1.5;
  font-size:12px;
}
#amenity dd .caution span{
  color:#e00;
}
#amenity dt .icon{
  width:91px;
  height:90px;
  display:block;
  position:absolute;
  top:-32px;
  right:-10px;
}

#amenity .amenity_01,
#amenity .amenity_03{
  /* 1024px以上に記載　float:left;　*/
  margin-bottom: 15px
}
#amenity .amenity_02,
#amenity .amenity_04{
  /* 1024px以上に記載float:right; */
  margin-bottom: 15px;
}
#amenity .amenity_01 dd,
#amenity .amenity_02 dd{
  height:335px;
}
#amenity .amenity_03 dd,
#amenity .amenity_04 dd{
  height:276px;
  overflow:hidden;
}

#amenity .amenity_01 dd img{
  margin-top:20px;
}
#amenity .amenity_02 dd img{
  margin-top:10px;
}
#amenity .amenity_03 dd img{
  margin-top:10px;
}
#amenity .amenity_04 dd img{
  margin-top:10px;
}

.amenity_banner{
  text-align:center;
  margin-bottom:45px;
}

.freedial_banner{
  text-align: center;
}

.amenitytitle{
  display: block;
  margin: 0 auto;
}

.amenityimg{
  display: block;
  margin: 0 auto;
}

/*問い合わせareaのボタン配置*/
.box2{
  margin-top: 10px;
}

/* marketing.php  */
.lp_promotion_ttl{
	max-width: 330px;
	width: 100%;
	margin: 0 auto 30px;
}
.lower_header.promotion{
	margin: 0 auto;
	background: url(../img/marketing/lp_lower_head_promotion.jpg) center bottom;
	background-size: cover;
}
.lower_header.promotion .inner{
	padding: 100px 10px;
}

.lp_promotion_ttl_sub{
	color: #FFF;
	text-align: center;
	font-size: 17px;
	font-weight: bold
}
.lp_promotion_ttl_txt{
	color: #FFF;
	font-size: 14px;
	text-align: center;
}
.lp_promotion_ttl_txt:last-child{
	margin-bottom: 0;
}
.g_logo{
  margin: 0 auto;
}

.g_logo.sec_03{
	margin: 0 auto 0;
	padding-bottom: 0;
	border-bottom: none;
}
.g_logo > div{
	width: calc( 50% - 15px );
	max-width: 200px;
}
.g_logo > div:first-child{
	margin-right: 30px;
}

.lp_promotion_wrap_C{
	position: relative;
	padding: 100px 0;
	overflow: hidden
}
.lp_promotion_wrap_C_img_single{
		width: 80%;
		transform: translateX(-40%);
	/*transform: translateX(-700px);*/
}

.narrow_inner {
  position: relative;
  width: 100%;
  max-width: 1250px;
  min-width: 800px;
  margin: 0 auto;
  padding: 0 10px;
}

.lp_promotion_inner_C{
	position: absolute;
    top: 50%;
    left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
}
.lp_promotion_wrap_C_content_single{
	width: 50%;
	margin-left: 50%;
}

.lp_promotion_sec_ttl_C{
	font-size: 18px;
	line-height: 1.4em;
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #eeeeee
}

.lp_promotion_sec_ttl_C > span{
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-style: italic;
	display: block;
	background: rgba(50,190,205,1);
	color: #FFF;
	margin-bottom: 15px;
	line-height: 1.4em;
	display: block;
	padding: 5px 10px;
	border-radius: 23px;
	width: 170px;
	text-align: center
}
.lp_promotion_sec_ttl_C span.small{
	font-size: 14px;
	padding-right: 4px;
}




.lp_promotion_impro > div:nth-child(1){
	width: 40%;
}
.lp_promotion_impro > div:nth-child(2){
	width: 55%;
}
.lp_promotion_wrap_D{
	padding: 100px 0;
}
.lp_promotion_wrap_D_img_single{
	width: 80%;
	margin-left: -30%;
}
.lp_promotion_inner_D{
	width: 48%;
	margin-left: 2%;
}
.lp_promotion_list{
	width: 30%;
	padding: 20px;
	background: #FFF;
}
.lp_promotion_list h3{
	font-size: 17px;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #eeeeee;
}
.lp_promotion_list h3 span{
	display: block;
	width: calc( 100% - 85px );
}
.lp_promotion_list h3 img{
	display: block;
	width: 75px;
}
	.lp_promotion_wrap_E{
		padding: 50px 0;
	}
	.lp_promotion_wrap_E.gray{
		background: #f8f8f8;
	}

/* セクションlp_contactform_wrap */
.lp_contactform_wrap{
	background: url(../img/marketing/lp_contactform.jpg);
	background-size: cover;
	padding: 50px 0;
}
.lp_promotion_sec_ttl_C.contactform{
	font-size: 18px;
	line-height: 1.4em;
	position: relative;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #FFF;
	color: #FFF
}

.lp_promotion_sec_ttl_C.contactform > span{
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-style: italic;
	display: block;
	background: #FFF;
	color: rgba(50,190,205,1);
	margin-bottom: 15px;
	line-height: 1.4em;
	display: block;
	padding: 5px 10px;
	border-radius: 23px;
	width: 170px;
	text-align: center
}
.lp_promotion_sec_ttl_C.contactform span.small{
	font-size: 14px;
	padding-right: 4px;
}
.lp_promotion_sec_ttl.contactform{
	color: #FFF;
	text-align: left
}
.lp_promotion_sec_ttl.contactform > span{
	color: #FFF;
}
.lp_promotion_sec_ttl.contactform:after{
	background: #FFF;
	left: 0;
}
.lp_promotion_sec_txt {
  color: #FFF;
}

/* lp_promotion_wrap_D */
.lp_promotion_wrap_D{
	padding: 100px 0;
}
.lp_promotion_wrap_D_img_single{
	width: 80%;
	margin-left: -30%;
}
.lp_promotion_inner_D{
	width: 48%;
	margin-left: 2%;
}

.lp_promotion_list{
	width: 30%;
	padding: 20px;
	background: #FFF;
}
.lp_promotion_list h3{
	font-size: 17px;
	padding-bottom: 10px;
	margin-bottom: 10px;
	border-bottom: 1px solid #eeeeee;
}
.lp_promotion_list h3 span{
	display: block;
	width: calc( 100% - 85px );
}
.lp_promotion_list h3 img{
	display: block;
	width: 75px;
}

span.step_no{
	font-family: 'Montserrat', sans-serif;
	font-size: 18px;
	font-style: italic;
	display: block;
	background: rgba(50,190,205,1);
  color: #FFF;
  font-weight: bold;
	margin-bottom: 15px;
	line-height: 1.4em;
	display: block;
	padding: 5px 10px;
	border-radius: 23px;
	width: 170px;
	text-align: center
}
span.step_no span.small{
	font-size: 14px;
	padding-right: 4px;
}
.lp_promotion_list p:last-child{
	margin-bottom: 0;
}



/* price.php*/

#particles-js{position:fixed;top:0;z-index:-11;width:100%;height:100%;opacity:0.9;position:absolute;z-index:0}


.lower_header.flow {
  background: url(../img/lp_lower_head_flow.jpg) center bottom;
  background-size: cover;
}

.lower_header {
  padding: 60px 0;
  margin: 0 auto 50px;
  position: relative;
}

.lower_header_ttl{
	font-size: 20px;
	line-height: 1.4em;
	text-align: center;
	color: #FFF;
	padding-bottom: 15px;
	margin-bottom: 15px;
	position: relative;	
}
.lower_header_ttl:after{
	content: "";
	display: block;
	height: 2px;
	width: 30px;
	position: absolute;
	bottom: 0;
	left: calc( 50% - 15px );
	background: #FFF;
}
.breadcrumb li{
	color: #FFF;
	margin-right: 20px;
	position: relative;
}
.breadcrumb li:after{
	content: "";
	display: block;
	height: 5px;
	width: 5px;
	border-right: 1px solid #FFF;
	border-bottom: 1px solid #FFF;
	transform: rotate(-45deg);
	position: absolute;
	right: -10px;
	top: calc( 50% - 3px );
}
.breadcrumb li:last-child:after{
	display: none;
	margin-right: 0;
}
.breadcrumb li a{
	font-size: 12px;
	color: #FFF;
}

/*LOWER*/
.contents{
	border-bottom: 1px solid #eeeeee;
	padding-bottom: 100px;
}

.lower_ttl_02 {
  text-align: center;
}

.lower_ttl_02 span {
  display: block;
  padding: 3px 15px;
  font-size: 13px;
  background: #3abecd;
  color: #FFF;
  border-radius: 15px;
  letter-spacing: 0.3em;
  width: 200px;
  margin: 0 auto 20px;
}
/* オプション料金 */
.lower_ttl_03 {
    padding: 15px 10px;
    background: #3abecd;
    color: #FFF;
    line-height: 1em;
    margin-top: 80px;
    margin-bottom: 30px;
}

/*OPTION TABLE*/
.option_table{
	margin-bottom: 10px;
}
.option_table thead{
	background: #f8f8f8;
	border: 1px solid #dddddd;
}
.option_table tbody{
	border: 1px solid #dddddd;
}
.option_table thead th{
	padding: 10px;
	border-right: 1px solid #dddddd;
	text-align: center;
}
.option_table thead th.item{
	width: 270px;
}
.option_table tbody td{
	padding: 10px;
}
.option_table tbody tr{
	border-bottom: 1px solid #dddddd;
}
.option_table tbody td.cost{
	width: 130px;
	vertical-align: middle;
	border-right: 1px solid #dddddd;
	font-weight: bold;
	text-align: center;
	font-family: 'Montserrat', sans-serif;
}
.option_table tbody tr td:last-child{
	font-size: 12px;
	letter-spacing: 0.03em;
	padding: 15px;
}
.option_table tbody th.item{
	width: 270px;
	padding: 15px;
	border-right: 1px solid #dddddd;
	vertical-align: middle;
}


/* work.php */
.lower_ttl_04{
	font-size: 26px;
	margin-bottom: 20px;
	padding-bottom: 20px;
	position: relative;
	line-height: 1em;
}
.lower_ttl_04:after{
	content: "";
	display: block;
	height: 2px;
	width: 40px;
	position: absolute;
	bottom: 0;
	left: 0;
	background: #000000;
}

.lower_lp_works_list > *{
	margin-bottom: 60px;
	padding-bottom: 60px;
	border-bottom: 1px solid #eeeeee;
}
.lower_lp_works_list > *:last-child{
	padding-bottom: 0;
	border-bottom: 1px solid #FFF;
}
.lower_lp_works_list article > div:nth-child(1){
	width: 30%;
}
.lower_lp_works_list article > div:nth-child(1) img{
	padding: 5px;
	border: 1px solid #eeeeee;
	width: 100%;
	
}
.lower_lp_works_list article > div:nth-child(1) a{
	position: relative;
	display: block;
	width: 100%;
	height: 100%;
}
.lower_lp_works_list article > div:nth-child(1) a:after{
	content: "";
	display: block;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: rgba(50,190,205,0.8);
	transition: 0.3s;
	opacity: 0;
}
.lower_lp_works_list_hover{
	position: absolute;
    top: 50%;
    left: 50%;
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	-ms-transform: translate(-50%,-50%);
	-o-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	color: #FFF;
	z-index: 1;
	font-size: 14px;
	font-family: 'Montserrat', sans-serif;
	transition: 0.3s;
	opacity: 0;
}
.lower_lp_works_list article > div:nth-child(1) a:hover:after {
	opacity: 1;
}
.lower_lp_works_list article > div:nth-child(1) a:hover .lower_lp_works_list_hover{
	opacity: 1;
}
.lower_lp_works_list article > div:nth-child(2){
	width: calc( 70% - 40px );
}
.lower_lp_works_list_content li{
	padding: 8px 10px;
	font-size: 10px;
	border: 1px solid #3abecd;
	line-height: 1em;
	margin-right: 10px;
	margin-bottom: 10px;
	color: #3abecd;
	font-weight: bold;
}
.lower_lp_works_list_client{
	padding: 0;
	line-height: 1em;
	font-weight: bold;
	font-size: 14px;
	color: #303030
}
.lower_lp_works_list_url{
	font-family: 'Montserrat', sans-serif;
	font-size: 11px;
	letter-spacing: 0.02em;
	line-height: 1em;
	color: #aaaaaa;
	width: calc( 100% - 30px );
	margin-top: 10px;
	margin-bottom: 15px;
	padding-top: 10px;
	display: block;
	border-top: 1px solid #eeeeee
}
.lower_lp_works_list_url a{
	color: #aaaaaa;
	transition: 0.3s;
}
.lower_lp_works_list_url a:hover{
	color: #3abecd;
}
.lower_lp_works_list_type{
	display: inline-block;
	border: 1px solid #303030;
	padding: 8px 13px 7px;
	margin-right: 10px;
	line-height: 1em;
	color: #303030;
	font-size: 10px;
	border-radius: 14px;
}
.lower_lp_works_list_content{
	margin-top: 10px;
	padding-top: 10px;
	border-top: 1px solid #eeeeee
}
.lower_lp_works_list_type_br{
	display: none;
}

/* thanks.php */
#thankyou{
  width: 100%;
  margin-top: 100px;
  padding-bottom: 50px;
  margin: 0 auto;
  background-color:#F8F8F8;
}

.thanks-img{
  margin: 0 auto;
  width: 300px;
  padding-top: 100px;
  
}

#thankyou p{
  text-align: center;
  font-size: 1.1em;
} 

h2.thanks-title {
  font-size: 2.5em;
    font-weight: bold;
    letter-spacing: .4rem;
    line-height: 2.2;
    padding-top: 50px;
    margin-bottom: 0;
    font-family: -apple-system,BlinkMacSystemFont,"Helvetica Neue",Helvetica,"Hiragino Sans","Hiragino Kaku Gothic ProN",Meiryo,sans-serif;
    text-align: center;
    color: #144584;
}



/* ▼▼ faq.html▼▼*/

.faqs{
  text-align:justify;
  margin-top:45px;
  background:url(../img/faqs_bg.png) left top no-repeat;
}
.faqs dl{
  width:90%;
  padding:10px 0 40px;
  margin:0 auto 40px auto;
}
.faqs dt{
  margin-bottom:18px;
  padding:6px 0 15px 50px;
  border-bottom:dotted 2px #ccc;
}
 .faqs dt.x2{
  margin-bottom:25px;
  /*padding:10px 0 20px 60px;
  line-height:1.5;*/
}

.faqs dd h3{
  margin-bottom:30px;
  padding:15px 20px 10px;
  font-size:24px;
  color:#fff;
  text-align:center;
  border-radius:50px;
  background:#21497B;
  position: relative;
}
.faqs dd h3:before{
  content: "";
  position: absolute;
  bottom: -35px;
  right: 50%;
  border: 18px solid transparent;
  border-top: 18px solid #21497B;
}
.faqs dd strong{
  padding:10px 0 ;
  margin:35px 0 15px;
  border:solid 2px #21497B;
  display:block;
  font-size:15px;
  background:#fff;
}
.faqs dd strong span{
  color:#F44757;
}
.faqs dd p{
  font-size:13px;
}
.faqs dd strong + p{
  line-height:1.7;
}
.faqs dd p span{
  padding:3px 0;
  background:#ffe463;
  color:#111;
  font-weight:bold;
}
.faqs dd span{
  color:#e33;
  background:none;
}
/* ▲▲ faq.html ▲▲ */



/* ▼▼works.html▼▼*/
.jigyou1{
  color:white;
  height: 55px;
    border-left: 5px solid #00D1EB;
    background: #666 url(../img/ServiceTitleIcon2.png)  no-repeat;
    padding: 0px 20px 0px 120px;
    vertical-align: middle;
    background-position:25px;
}

.title1{ padding: 4px 1em 0px 0px;border-bottom: 1px solid #ddd;margin-bottom: 0px;}

.servicetext{background-color: rgb(246,246,246);padding: 10px;}


/* contact.php */
.page_contact{
	padding: 160px 0 60px;
}
.page_contact{
	height: 400px;
	background: url(../img/contact/contact_bg.jpg) no-repeat center center;
	background-size: cover;
	z-index: -1;
}
.page_contact:after{
	position: absolute;
	top: 0;
	left: 0;
	height: 100%;
	width: 100%;
	content: '';
	display: block;
	background: transparent url(../img/contact/overlay.png) repeat top left;
	z-index: -1;
	opacity: 0.6;
}

.grd_bg{
	background: linear-gradient(-45deg, rgba(184,203,184,.9) 0%, rgba(184,203,184,.9) 0%, #b465da 0%, rgba(180,101,218,.9) 33%, rgba(238,96,156,.9) 66%, rgba(238,96,156,.9) 100%);
	color: #FFF;	
}
.grd_bg > div{
	padding: 15px;
}

.head_title_2 {
  font-size: 30px;
  line-height: 1.1em;
  margin-bottom: 10px;
  font-family: 'Montserrat', sans-serif;
  vertical-align: middle;
  margin-bottom: 20px;
}

.lp_footer_contact_inner_list > * {
    width: calc( 50% - 15px );




/* ▼▼contactus.html▼▼*/
table.outline {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 5px;
    border:1px solid #e0e0e0;
}

table.outline th {
    width: 75px;
    border-right: solid 1px #999;
    background: #21497b;
    line-height: 30px;
    color:#fff;
    }

    table.outline th, table.outline td {
    padding: 10px;
    border-bottom: dotted 1px #999;
    text-align: left;
    vertical-align: top;
}

table.outline td {
    line-height: 30px;
}



#docs #mailformpro{
  padding:0 0 80px;
  margin:20px 0 40px;
  border:solid 1px #ccc;
  border-top:none;
}
#docs #mailformpro input, 
#docs #mailformpro textarea{
  margin-right:5px;
}







/* ここからaboutページ */
#profile {
  padding-bottom: 80px;
}

.profile-flexAll {
  display: flex;
  justify-content: space-between;
}

.profile {
  max-width: 500px;
  height: auto;
  padding: 60px;
  background: #F2F8FC;
}

.profile-image {
  position: relative;
  margin-top: auto;
  margin-bottom: 50px;
}

.profile-image-s {
  position: absolute;
  top: -30px;
  left: 170px;
  transform: rotate(10deg);
  opacity: 0.8;
}

.paragraph {
  padding: 10px 0;
}

/* ここまでprofile */
/* ここからcareer */

#career {
  margin: 80px 0 160px;
}

/* h3 {
  font-family: 'Unna', serif;
  font-size: 30px;
  letter-spacing: .3rem;
  line-height: 1;
  font-weight: normal;
  border-left: 15px solid #ECF5FA;
  padding-left: 15px;
  padding-right: 10px;
  float: left;
  margin-bottom: 60px;
} */

.title-sub-page {
  font-size: 16px;
  letter-spacing: .2rem;
  line-height: 34px;
  margin-bottom: 60px;
}

.title-sub-page::before,
.title-sub-page::after {
  content: '';
  display: inline-block;
  width: 15px;
  height: 1px;
  margin: 0 10px;
  background-color: #333;
  vertical-align: middle;
}

.skills-flexAll {
  margin-top: 60px;
}

.career-flex {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
}

.career-flexInner-left {
  font-size: 18px;
}

dl {
  display: block;
  margin-block-start: 1em;
  margin-block-end: 1em;
  margin-inline-start: 0px;
  margin-inline-end: 0px;
}

.career-bold {
  font-size: 16px;
  font-weight: 500;
  color: #333;
}

/* ここまでcareer */
/* ここからsKills */

#skills {
  padding: 80px 0;
}

h4 {
  text-align: center;
  font-family: 'Unna', serif;
  font-size: 24px;
  letter-spacing: .2rem;
  line-height: 1;
  font-weight: normal;
  /* margin: 25px auto 20px; */
}

p.skills-text {
  font-size: 15px;
  letter-spacing: 0.07rem;
  line-height: 1.8;
}

.skills-flexAll {
  display: flex;
  justify-content: space-between;
  margin-bottom: 60px;
}

.skills-flex-inner {
  margin: 0 auto;
  width: 29%;
}

.skills-tool-flex {
  display: flex;
  justify-content: flex-start;
  color: #fff;
  text-align: center;
  line-height: 35px;
  font-size: 18px;
}

.skills-tool {
  width: 35px;
  height: 35px;
  background: #333;
  border-radius: 5px;
  margin: 0 5px;
}

p.skills-other {
  font-size: 15px;
  font-weight: 500;
  color: #333;
  margin: 10px 0 10px 5px;
}

/* ここまでskills */
/* ここからvision */

#vision {
  padding-bottom: 120px;
  background: #ECF5FA;
}

.aboutVision {
  display: flex;
}

img.vision-photo {
  width: 40%;
  height: 40%;
}

.vision-text-all {
  padding: 0 40px 30px;
  width: 60%;
}


p.vision-text {
  margin-top: 30px;
}

p.vision-text-l {
  text-align: center;
  margin: auto 0;
  font-size: 16px;
  letter-spacing: .2rem;
  font-weight: 500;
}

p.vision-before {
  text-decoration: line-through;
  margin-top: 30px;
}


/* ここまでvision */
/* ここまでaboutページ */

/* ここからWorksページ */
/* worksMenu */
#worksMenu {
  position: relative;
  position: fixed;
}

.worksMenu-all {
  position: absolute;
  top: 0px;
  left: -30px;
}

.worksMenu-page-all {
  position: absolute;
  top: 243px;
  left: -30px;
}

.worksMenu-page2-all {
  position: absolute;
  top: 171px;
  left: -30px;
}

.worksPage-center {
  text-align: center;
}

a.worksMenu-link {
  display: block;
  width: 130px;
  padding: 5px 0;
  font-family: 'Unna', serif;
  font-size: 16px;
  letter-spacing: .2rem;
  line-height: 34px;
}

a.worksMenu-link:hover {
  opacity: 0.5;
}

a.worksMenu-link::before {
  content: '';
  display: inline-block;
  width: 8px;
  height: 1px;
  margin: 0 10px;
  background-color: #333;
  vertical-align: middle;
}

/* WorksMain */
.works {
  max-width: 650px;
  margin: 0 auto;
}

.works-box {
  margin: 0;
}

.works-box-hovInner {
  position: relative;
}

.works-box-hov {
  position: absolute;
  top: 5%;
  left: 5%;
  width: 90%;
  height: 90%;
  color: transparent;
  text-align: center;
  transition: all .2s;
}

.works-box-hov:hover {
  background: rgba(255,255,255,0.9);
  color: #333;
}

a.works-item {
  margin-top: 7px;
  margin-right: 7px;
  width: 24%;
  transition: all .2s;
}

.works-box-flexAll {
  display: flex;
  justify-content: space-between;
}

.worksPage-image-flex3 {
  margin: 10px 0;
  display: flex;
  justify-content: space-between;
}

p.works-secret {
  margin: 150px 150px;
  margin-bottom: 60px;
  text-align: center;
  padding: 30px 0;
  border-top: 1px dotted #333;
  border-bottom: 1px dotted #333;
}

h4.works-hov-main {
  margin-top: 25%;
}

/* 平成最後のフォント */
h4.works-hov-other {
  margin-top: 45%;
}

p.works-hov-text {
  font-size: 12px;
}

/* 小さいサムネイル */
h4.works-hov-mini {
  margin-top: 25%;
  font-size: 13px;
  line-height: 1.3;
}

h4.works-hov-mini-2 {
  margin-top: 20%;
}

.works-box-flexAll-miniBox {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
}

.blank-box {
  width: 140px;
  height: auto;
}

#works-print, #works-logo, #works-web, #works-wedding, #works-others {
  padding-top: 180px;
}

.works-item-memo-sp {
  display: none;
}


/* ここまでWorksページ */

/* ここからworks　下層ページ */
/* ここからWorks　ブランディングページ */

.works-wrap {
  margin: 0 auto;
}

p.worksPage-title-sub {
  margin: 100px 0 20px;
  text-align: center;
  font-size: 14px;
  letter-spacing: .2rem;
}

p.worksPage-title-sub::after {
  content: '';
  display: block;
  width: 20px;
  height: 1px;
  margin: 10px auto 30px;
  background: #333;
}

h2.worksPage-title {
  text-align: center;
  margin-bottom: 30px;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: .2rem;
  line-height: 1.8;
  font-family: 'Unna', serif;
}

img.worksPage-image {
  margin: 10px 0;
}

img.flex-2 {
  width: 40%;
}

dl.worksPage-summary {
  display: flex;
  flex-wrap: wrap;
  margin: 100px 0 100px;
}

/* Twitterありのページ用サマリー */
dl.worksPage-summary-twitter {
  display: flex;
  flex-wrap: wrap;
  margin: 100px 0 60px;
}

.twitter-box {
  margin-bottom: 120px;
}

dt.works-list {
  display: block;
  float: left;
  width: 25%;
  color: #afafaf;
  font-weight: 500;
}

dt.works-list::after {
  content: '';
}

dd.works-text {
  width:75%;
  margin-bottom: 30px;
  vertical-align: baseline;
}

dl.worksPage-summary-web {
  display: flex;
  flex-wrap: wrap;
  margin: 75px 0 60px;
}

dd.works-text-web {
  width: 75%;
  margin-bottom: 20px;
  vertical-align: baseline;
}

a.worksUrl:hover {
  opacity: .6;
}

.wedding-flexAll {
  display: flex;
  justify-content: space-between;
}

h3.works-item-memo {
  font-size: 14px;
  text-align: right;
  letter-spacing: .1em;
  margin: 5px 0 30px;
  font-family: sans-serif;
}

h3.works-item-memo.insta {
  margin-bottom: 0;
}

.worksPage-image-3 {
  width: 31%;
}

.works-babyposter-flex {
  display: flex;
  justify-content: space-around;
  padding: 10px 0;
  margin-top: 20px;
  background: #efefef;
}

.pc-none {
  display: none;
}

.twitter-tweet {
  margin: 0 auto;
}

/* 600px以上で適応 */
@media (min-width: 601px) {
.career-flex {
  display: flex;
  border-left: none;
  padding-left: 0;
  padding-top: 0;
}

.career-flexInner-left {
  width: 15%;
  padding-top: 35px;
}

.career-flexInner-right {
  width: 85%;
  border-left: 2px solid #ddd;
  padding-left: 8%;
  padding-top: 35px;
  position: relative;
  font-size: 15px;
}

.career-flexInner-right::before {
  content: '';
  display: block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #92BDE6;
  position: absolute;
  top: 45px;
  left: -8px;
}
}

.br-sp,p.works-item-memo-sp {
  display: none;
}

/* スマホ対応 */
/* スマホレスポンシブ480px設定 */

@media (max-width: 480px) {
  .header {
      padding: 0 1rem;
  }

header {
  width: auto;
  margin: 0 1rem;
}

.br-sp{
  display: block;
}

#header {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 60px;
  z-index: 99;
  background-color: #fff;
  border-bottom: 1px solid #d9d9d9;
}

body {
  font-size: 80%;
}

#gnav {
  position: fixed;
  top: 1rem;
  background-color: #fff;
  width: 100%;
  height: 44px;
  z-index: 90;

}

.nav-box {
  display: flex;
  flex-direction: column;
  max-width: 600px;
  height: 30px;
  padding: 0;
  margin: 0 auto;
}

/* ここからハンバーガーメニュー */
.global-nav {
  position: fixed;
  right: -480px; /* これで隠れる */
  top: 0;
  width: 300px; /* スマホに収まるくらい */
  height: 100vh;
  padding-top: 60px;
  background-color:#ECF5FA;
  transition: all .6s;
  z-index: 200;
  overflow-y: auto; /* メニューが多くなったらスクロールできるように */
}

.hamburger {
  position: absolute;
  right: 10px;
  top: 10px;
  width: 40px; /* クリックしやすいようにちゃんと幅を指定する */
  height: 40px; /* クリックしやすいようにちゃんと高さを指定する */
  cursor: pointer;
  z-index: 300;
}
.global-nav__list {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
}
.global-nav__item {
  text-align: center;
  padding: 0 14px;
  font-size: 16px;

}
.global-nav__item a {
  display: block;
  padding: 20px 0;
  text-decoration: none;
  color: #333;
  font-weight: 500;
}
li.global-nav__item:hover {
  background-color: #fff;
}
.hamburger__line {
  position: absolute;
  left: 15px;
  width: 18px;
  height: 1px;
  background-color: #333;
  transition: all .6s;
}
.hamburger__line--1 {
  top: 14px;
}
.hamburger__line--2 {
  top: 20px;
}
.hamburger__line--3 {
  top: 26px;
}
.black-bg {
  position: fixed;
  left: 0;
  top: 0;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  background-color: #000;
  opacity: 0;
  visibility: hidden;
  transition: all .6s;
  cursor: pointer;
}
/* 表示された時用のCSS */
.nav-open .global-nav {
  right: 0;
}
.nav-open .black-bg {
  opacity: .7;
  visibility: visible;
}
.nav-open .hamburger__line--1 {
  transform: rotate(45deg);
  top: 20px;
}
.nav-open .hamburger__line--2 {
  width: 0;
  left: 50%;
}
.nav-open .hamburger__line--3 {
  transform: rotate(-45deg);
  top: 20px;
} 

/* SNS */
.global-nav__item-sns {
  display: block;
  margin-top: 30px;
  text-align: center;
}

.sns-icon {
  margin: 0 30px;
}

/* pcメニューとsnsNavを隠す */
ul.pc-menu, .snsNav {
  display: none;
}

h1.logo, span.text-small {
  font-size: 90%;
  letter-spacing: .04rem;
}

h2.title {
  font-size: 2rem;
  padding-top: 60px;
}

p.title-sub {
  font-size: 12px;
  margin-bottom: 40px;
}

p.topMain-text-l {
  top: 50px;
  font-size: 1.8rem;
  letter-spacing: .5rem;
}

p.topMain-text-s {
  font-size: 12px;
  top: 100px;
  letter-spacing: .1rem;
}

p.topMain-read-text {
  font-size: 14px;
  top: 150px;
  letter-spacing: .1rem;
}

img.main-visual {
  width: 300px;
  top: 40px;
  right: -10px;

}

.topMain-contents {
  height: 200px; 
}

/* SP-topAbout */

.topAbout-right {
  padding: 40px 25px;
}

h2.title-left {
  font-size: 2rem;
  text-align: right;
}

p.title-sub-left {
  font-size: 12px;
  text-align: right;
  margin-bottom: 40px;
}

.topAbout-flexAll {
  position: relative;
}

img.topAbout-left {
  position: absolute;
  top: -45px;
  left: 0;
  width: 110px;
  margin-left: 30px;
}

.topAbout-text {
  margin-bottom: 30px;
}

.view-more-about {
  margin-bottom: 10px;
}

#topAbout {
  margin: 80px 0;
}

.topWorks-flexAll-inner {
  width: 100%;
}

.topWorks-flexAll {
  margin-bottom: 40px;
}

#topWorks {
  padding-bottom: 30px;
}

form {
  margin: 40px auto;
}

label.lavel {
  width: 100%;
  padding: 0 5px;
  margin-top: 10px;
  margin-bottom: 10px;
}

.lavel {
  line-height: 30px;
}

.contact-item {
  margin-left: 0px;
}

input.inputs {
  padding: 40px 0;
  margin: 20px 0 50px;
}

/* sp-about */
#profile,#skills {
  padding-bottom: 40px;
}

#skills {
  padding-top: 40px;
}

.profile-flexAll {
  margin-top: 50px;
  flex-direction: column-reverse;
}

.profile-image-s {
  top: -10px;
  left: 110px;
  width: 50%;
}

.profile-image-l {
  align-items: center;
  width: 80%;
  margin: 0 auto;
}

.profile {
  width: 100%;
  padding: 40px 25px;
}

.career-flexInner-right {
  margin-bottom: 20px;
}

.skills-flexAll {
  flex-direction: column;
  margin:40px 0 0;
}

.skills-flex-inner {
  width: 100%;
  margin: 0 auto 60px;
}

h4.skills-title {
  font-size: 22px;
  margin: 25px 0 20px;
}

p.skills-other {
  font-size: 14px;
  margin: 10px 0 0;
}

h3, p.title-sub-page {
  margin-bottom: 20px;
}

p.title-sub-page {
  font-size: 12px;
  letter-spacing: 0.02em;
}

p.skills-text {
  font-size: 13px;
}

#career {
  margin-top:40px
}

#career, #contact {
  margin-bottom: 80px;
}

.contact-btn {
  margin-top: 40px;
}

/* serviceページ */
.service-card{
  display:block;
}

.card-box{
  width: 100%;
}


/* worksページ */

.works-box {
  margin-bottom: 80px;
}

.works {
  margin-top: 80px;
}

#worksMenu {
  position: static;
}

.worksMenu-all {
  position: static;
}

a.worksMenu-link::before {
  content: none;
}

.worksMenu-list {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}

a.worksMenu-link {
  width: 105px;
  border-bottom: solid 1px #333;
  letter-spacing: .2rem;
  padding: 20px 0 0;
  transition: .2s;   
}

a.worksMenu-link:hover {
  opacity: 0.6;
}

p.works-secret {
  margin: 0;
}

h3.works-item-title {
  font-size: 22px;
  letter-spacing: .2rem; 
  margin-bottom: 10px;
}

#works-print, #works-logo, #works-web, #works-wedding, #works-others {
  padding-top: 60px;
}

.works-box-flexAll-miniBox {
  flex-direction: column;
  margin-bottom: 10px;
}

p.works-item-memo-sp {
  display: block;
  margin:5px 0 25px;
}

.sp-none {
  display: none;
}

h2.worksPage-title {
  font-size:16px; 
}

h3.works-item-memo {
  font-size: 12px;
  margin-bottom: 20px;
}

img.flex-2 {
  width: 40%;
}

/* worksトップに戻る */
a.back-btn {
  margin: 0 auto 80px;
  display: block;
  width: 250px;
  height: 50px;
  line-height: 50px;
  border: none;
  text-align: center;
  background: #eee;
  transition: all .3s;
}

a.back-btn:hover {
  background: #455C81;
  color: #fff;
}

a.back-btn:active {
  background: #455C81;
  color: #fff;
}

dl.worksPage-summary {
  margin: 50px 0 60px 0;
}

dl.worksPage-summary-web {
  margin: 20px 0 50px;
}

dl.worksPage-summary-twitter {
  margin: 50px 0 40px;
}

.twitter-box {
  margin-bottom: 70px;
}


.aboutVision {
  flex-direction: column;
}

img.vision-photo, .vision-text-all {
  width: 100%;
}

.vision-text-all {
  padding: 30px 0 0;
}

#vision {
  padding-bottom: 80px;
}

/* ページトップボタン  */

#page_top{
  width: 50px;
  height: 50px;
  position: fixed;
  right: 30;
  bottom: 30;
  background: #98C1CE;
  opacity: 0.7;
  border-radius: 50%;
}
#page_top a{
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
}
#page_top a::before{
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  content: '\f106';
  font-size: 25px;
  color: #fff;
  position: absolute;
  width: 30px;
  height: 30px;
  top: -5px;
  bottom: 18px;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
}

}