@charset "UTF-8";
/*** inport ***/
@import "setting.css";
@import "web-font.css";
/*============
** COMMON **  
============*/
.flex-wrap {
  display: flex;
}

/* more style */
/*** typeA ***/
.more.typeA {
  width: 10%;
}
.more.typeA a {
  display: inline-block;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  font-size: 0.7rem;
  letter-spacing: 2px;
  font-weight: 500;
  color: #fff;
  line-height: 50px;
  text-align: center;
  background: #5d5d5d;
}

/*** typeB(.more.typeB) ***/
.btnarrow {
  position: relative;
  display: inline-block;
  padding: 0 60px 0 40px;
  color: #333;
  text-decoration: none;
  outline: none;
}
.btnarrow::before {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 15%;
  width: 85%;
  height: 1px;
  background: #333;
  transition: all 0.3s;
}
.btnarrow::after {
  content: "";
  position: absolute;
  bottom: -3px;
  right: 0;
  width: 15px;
  height: 1px;
  background: #333;
  transform: rotate(35deg);
  transition: all 0.3s;
}
.btnarrow:hover::before {
  left: 20%;
}
.btnarrow:hover::after {
  right: -5%;
}

/*============
** NAVI **  
============*/
#g-nav {
  position: fixed;
  z-index: -1;
  opacity: 0;
  top: 0;
  width: 100%;
  height: 100vh;
  background-color: rgba(93, 93, 93, 0.95);
  transition: all 0.3s;
}
#g-nav.panelactive {
  opacity: 1;
  z-index: 999;
}
#g-nav.panelactive #g-nav-list {
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100vh;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
}
#g-nav ul {
  display: none;
  position: absolute;
  z-index: 999;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -60%);
}
#g-nav.panelactive ul {
  display: block;
}
#g-nav li {
  list-style: none;
  padding: 10px 0;
}
#g-nav li a {
  color: #fff;
  text-decoration: none;
  padding: 10px 20px;
  display: block;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 1.2rem;
}
#g-nav li span a {
  font-size: 1.1rem;
  color: #f2f2f2;
  padding: 0 0 0 30px;
}

.openbtn {
  position: fixed;
  z-index: 9999;
  top: 10px;
  right: 10px;
  cursor: pointer;
  width: 50px;
  height: 50px;
}
.openbtn span {
  display: inline-block;
  transition: all 0.4s;
  position: absolute;
  left: 8px;
  height: 3px;
  border-radius: 2px;
  background-color: #fff;
  width: 65%;
}
.openbtn span:nth-of-type(1) {
  top: 10px;
}
.openbtn span:nth-of-type(2) {
  top: 18px;
}
.openbtn span:nth-of-type(3) {
  top: 26px;
}
.openbtn .txt-menu {
  position: absolute;
  bottom: 0;
  font-size: 0.8rem;
  color: #fff;
  padding: 0 6px;
}
.openbtn.active span:nth-of-type(1) {
  top: 13px;
  left: 8px;
  transform: translateY(6px) rotate(-45deg);
  width: 60%;
}
.openbtn.active span:nth-of-type(2) {
  opacity: 0;
}
.openbtn.active span:nth-of-type(3) {
  top: 25px;
  left: 8px;
  transform: translateY(-6px) rotate(45deg);
  width: 60%;
}

/*============
** slider **  
============*/
.swiper-container {
  max-width: 100%;
  width: 100%;
  margin: auto;
}

.swiper-container .catch {
  position: absolute;
  top: 35%;
  left: 5%;
  width: 90%;
  z-index: 9;
  font-size: 1.8rem;
}
.swiper-container .catch p.text1 {
  font-size: 2rem;
  color: #fff;
}
.swiper-container .catch p.text1 .logo-img img {
  width: 55%;
}
.swiper-container .catch p.text1 .logo-img:before {
  content: "\a";
  white-space: pre;
}
.swiper-container .catch p.text2 {
  font-size: 1.5rem;
  color: #fff;
  margin-top:30px;
}

@keyframes zoomUp {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.swiper-wrapper {
  display: block;
}

.slide-item {
  max-width: 100%;
  width: 100%;
  margin: auto;
  overflow: hidden;
}

.swiper-slide-active .slide-img,
.swiper-slide-duplicate-active .slide-img,
.swiper-slide-prev .slide-img {
  animation: zoomUp 7s linear 0s 1 normal both;
}

/*.slide-img{
  display: block;
}*/
.slide-item .slide-img.pc {
  display: block;
}

.slide-item .slide-img.sp {
  display: none;
}

@media screen and (max-width: 480px) {
  .slide-item .slide-img.pc {
    display: none;
  }
  .slide-item .slide-img.sp {
    display: block;
  }
  .swiper-container .catch {
	  top: 22%;
	}
  .swiper-container .catch p.text1 {
    font-size: 1.4rem;
  }
  .swiper-container .catch p.text1 .logo-img:before {
    content: none;
  }
  .swiper-container .catch p.text1 .logo-img img {
    width: 90%;
  }
  .swiper-container .catch p.text1 .sp-br:before {
    content: "\a";
    white-space: pre;
  }
  .swiper-container .catch p.text1 .logo-img {
    display: block;
    padding: 10px 0;
  }
  .swiper-container .catch p.text2 {
	  font-size: 1.3rem;
	  color: #fff;
	  margin-top:30px;
	  text-align:left;
	}
}
/*============
** header **  
============*/
#header {
  width: 100%;
  /*height:100vh;*/
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  transition: 0.5s;
}
#header .inner {
  width: 100%;
  height: 86px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#header .inner .logo {
  width: 30%;
  padding: 20px;
  transition: 0.5s;
}
#header .inner .logo img {
  max-width: 267px;
}

/* PC nav */
nav.pc-nav {
  color: #fff;
  text-align: center;
  padding-right: 60px;
}

nav.pc-nav ul {
  list-style: none;
  display: flex;
  justify-content: center;
}

nav.pc-nav ul ul {
  display: block;
}

nav.pc-nav ul li {
  position: relative;
  margin-right: 5px;
}

nav.pc-nav ul li ul li {
  margin: 0;
}

nav.pc-nav ul li a {
  display: block;
  text-decoration: none;
  font-size: 0.9rem;
  font-family: "Noto Sans JP", sans-serif;
  color: #fff;
  padding: 10px;
  transition: all 0.3s;
}

nav.pc-nav ul li li a {
  padding: 10px 35px;
}

.sample_link a.under {
  display: inline-block;
  text-decoration: none;
  position: relative;
  transition: 0.2s;
}

.sample_link a.under:hover {
  color: #d6d3d1;
}

.sample_link a.under::after {
  position: absolute;
  bottom: 0.3em;
  left: 0;
  content: "";
  width: 100%;
  height: 1px;
  background-color: #62b62f;
  opacity: 0;
  transition: 0.2s;
}

.sample_link a.under:hover::after {
  bottom: 0;
  opacity: 1;
}

/*==矢印の設定*/
/*2階層目を持つliの矢印の設定*/
nav.pc-nav ul li.has-child::before {
  content: "";
  position: absolute;
  left: 0;
  top: 17px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(135deg);
}

/*3階層目を持つliの矢印の設定*/
nav.pc-nav ul ul li.has-child::before {
  content: "";
  position: absolute;
  left: 6px;
  top: 17px;
  width: 6px;
  height: 6px;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  transform: rotate(45deg);
}

/*== 2・3階層目の共通設定 */
/*下の階層を持っているulの指定*/
nav.pc-nav li.has-child ul {
  /*絶対配置で位置を指定*/
  position: absolute;
  left: 0;
  top: 42px;
  z-index: 4;
  /*形状を指定*/
  background: #5d5d5d;
  width: 180px;
  /*はじめは非表示*/
  visibility: hidden;
  opacity: 0;
  /*アニメーション設定*/
  transition: all 0.3s;
}

/*hoverしたら表示*/
nav.pc-nav li.has-child:hover > ul,
nav.pc-nav li.has-child ul li:hover > ul,
nav.pc-nav li.has-child:active > ul,
nav.pc-nav li.has-child ul li:active > ul {
  visibility: visible;
  opacity: 1;
}

/*ナビゲーションaタグの形状*/
nav.pc-nav li.has-child ul li a {
  color: #fff;
  border-bottom: solid 1px rgba(255, 255, 255, 0.6);
}

nav.pc-nav li.has-child ul li:last-child a {
  border-bottom: none;
}

nav.pc-nav li.has-child ul li a:hover,
nav.pc-nav li.has-child ul li a:active {
  background: #999;
}

/*==3階層目*/
/*3階層目の位置*/
nav.pc-nav li.has-child ul ul {
  top: 0;
  left: 182px;
  background: #66ADF5;
}

nav.pc-nav li.has-child ul ul li a:hover,
nav.pc-nav li.has-child ul ul li a:active {
  background: #448ED3;
}

@media screen and (max-width: 896px) {
  nav.pc-nav {
    padding: 0;
  }
  nav.pc-nav ul {
    display: block;
  }
  nav.pc-nav li.has-child ul,
  nav.pc-nav li.has-child ul ul {
    position: relative;
    left: 0;
    top: 0;
    width: 100%;
    visibility: visible; /*JSで制御するため一旦表示*/
    opacity: 1; /*JSで制御するため一旦表示*/
    display: none; /*JSのslidetoggleで表示させるため非表示に*/
    transition: none; /*JSで制御するためCSSのアニメーションを切る*/
  }
  nav.pc-nav ul li a {
    border-bottom: 1px solid #ccc;
  }
  /*矢印の位置と向き*/
  nav.pc-nav ul li.has-child::before {
    left: 20px;
  }
  nav.pc-nav ul ul li.has-child::before {
    transform: rotate(135deg);
    left: 20px;
  }
  nav.pc-nav ul li.has-child.active::before {
    transform: rotate(-45deg);
  }
}

/*
.pc-nav{
  width:70%;
  padding:15px 80px 20px 20px;
  text-align:right;

  ul{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    list-style:none;

    li{
      padding:10px;

      a{
        text-align: center;
        color:#fff;
        text-align:center;
        display:inline-block;
        transition: all .2s;

        span{
          display:inline-block;
        }


      }

      }

  }
}*/
@media screen and (max-width: 980px) {
  .pc-nav {
    display: none;
  }
}
@media screen and (max-width: 896px) {
  #header .inner .logo {
    width: 40%;
    padding: 10px;
  }
  #header .inner .logo img {
    max-width: 100%;
  }
}
@media screen and (max-width: 480px) {
  #header .inner .logo {
    width: 60%;
  }
  header .inner .logo {
    display: none;
  }
  #page header .inner .logo {
    display: block;
  }
}
#page #header {
  background: #5e5c5b;
}

@media screen and (max-width: 896px) {
  #page #header {
    height: 76px;
  }
}
@media screen and (max-width: 480px) {
  #page #header {
    height: 72px;
  }
  #page #header .inner .logo {
    width: 60%;
  }
}
/* スクロールするため高さを出すためのsection */
.section {
  height: 100vh;
}

.section-a {
  background: #000;
}

.section-b {
  background: #fff;
}

/* スクロールして「scroll-navクラス」がついたときのヘッダーデザイン */
header.scroll-nav {
  background: #5e5c5b;
  /* コンテンツの背景が白でもナビゲーションだと分かりやすいように影をつける */
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.1);
}

/* 「scroll-navクラス」がヘッダーについたときに、ロゴとナビゲーションの文字を黒にする */
header.scroll-nav .logo,
header.scroll-nav ul li a {
  color: #fff;
}

header.scroll-nav .inner .logo {
  display: block;
}

/*============
** MAIN **  
============*/
/*
.pick-up{
  max-width:90%;
  margin:-108px auto 0;
  position:relative;
  z-index:9;

  .inner{
    h2{
      width:15%;
      line-height:2.0;
      font-family: 'Marcellus', serif;
      font-weight:500;
      color:#fff;
      text-align:center;
    }
    .more{

    }
  }
}*/
.next, .next_b {
  width: 100%;
  padding: 5px 10px;
  background: #e4e4e4;
  text-align: center;
  font-size: 90%;
  color: #fff;
  margin: 10px 0;
}

.next a, .next_b a {
  color: #fff;
}

.next span, .next_b span {
  padding: 3px 8px;
  background: #fff;
  color: #333;
  margin: 0 3px;
}

.next span a, .next_b span a {
  color: #3399cc;
}

.pick-up {
  max-width: 90%;
  margin: -78px auto 0;
  padding: 15px;
  background-color: rgba(255, 255, 255, 0.9);
  display: flex;
  position: relative;
  z-index: 9;
}
.pick-up .inner {
  width: 100%;
  display: flex;
}
.pick-up .inner h2 {
  width: 15%;
  line-height: 2;
  font-family: "Marcellus", serif;
  font-weight: 500;
  color: #5d5d5d;
  text-align: center;
}
.pick-up .inner ul {
  width: 75%;
  display: flex;
  list-style-type: none;
  line-height: 2.8;
}
.pick-up .inner ul li .data {
  margin-right: 20px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 2px;
}
.pick-up .inner ul li a {
  text-decoration: underline;
}

@media screen and (max-width: 896px) {
  .pick-up {
    max-width: 100%;
    margin: -108px auto 0;
    padding: 5px 10px;
  }
  .pick-up .inner {
    display: block;
  }
  .pick-up .inner h2 {
    font-size: 1.2rem;
    width: 100%;
    text-align: left;
  }
  .pick-up .inner ul {
    display: block;
    width: 100%;
    line-height: 1.8;
    padding-bottom: 20px;
  }
  .pick-up .inner ul li span:after {
    content: "\a";
    white-space: pre;
  }
  .pick-up .inner .more.typeA {
    width: 100%;
  }
  .pick-up .inner .more a {
    width: 100%;
    border-radius: 0;
    display: block;
    font-size: 1rem;
  }
}
/*----------- contents -------------*/
.contents {
  position: relative;
}
.contents .sec h2 {
  font-family: "Marcellus", serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: #5d5d5d;
  letter-spacing: 0.5em;
  text-align: center;
  position: relative;
  margin-bottom: 80px;
}
.contents .sec h2 span {
  font-size: 1rem;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
.contents .sec h2 span:after {
  content: "\a";
  white-space: pre;
}
.contents .sec h2::after {
  content: "";
  position: absolute;
  top: 70px;
  left: 50%;
  margin-left: -15px;
  background: url(../img/share/icon-ttl-under.svg);
  width: 31px;
  height: 16px;
}

@media screen and (max-width: 896px) {
  .contents .sec h2 {
    letter-spacing: 1px;
    margin-bottom: 30px;
  }
  .contents .sec h2::after {
    display: none;
  }
}
#page .contents {
  padding-top: 89px;
}
#page .contents .sec h2 {
  padding: 80px 0;
  margin-bottom: 40px;
}
#page .contents .sec h2::after {
  top: 230px;
}

@media screen and (max-width: 896px) {
  #page .contents {
    padding-top: 80px;
  }
}
@media screen and (max-width: 480px) {
  #page .contents {
    padding-top: 74px;
  }
}
/*------------------------*/
/*** PAGE Visual ***/
#page .architecture .visual {
  height: 430px;
  background: url(../img/cover/visual-architecture.jpg) no-repeat center/cover;
  display: block;
}
#page .architecture .visual img {
  display: none;
}
#page .company .visual {
  height: 430px;
  background: url(../img/cover/visual-company.jpg) no-repeat center/cover;
  display: block;
}
#page .company .visual img {
  display: none;
}
#page .concept .visual {
  height: 430px;
  background: url(../img/cover/visual-concept.jpg) no-repeat center/cover;
  display: block;
}
#page .concept .visual img {
  display: none;
}
#page .web .visual {
  height: 430px;
  background: url(../img/cover/visual-web.jpg) no-repeat center/cover;
  display: block;
}
#page .web .visual img {
  display: none;
}
#page .contact .visual {
  height: 430px;
  background: url(../img/cover/visual-contact.jpg) no-repeat center/cover;
  display: block;
}
#page .contact .visual img {
  display: none;
}
#page .produce .visual {
  height: 430px;
  background: url(../img/cover/visual-produce.jpg) no-repeat center/cover;
  display: block;
}
#page .produce .visual img {
  display: none;
}
@media screen and (max-width: 896px) {
  #page .architecture .visual, #page .company .visual, #page .concept .visual, #page .web .visual, #page .contact .visual, #page .produce .visual {
    height: auto;
    background: none;
  }
  #page .architecture .visual img, #page .company .visual img, #page .concept .visual img, #page .web .visual img, #page .contact .visual img, #page .produce .visual img {
    display: block;
    width: 100%;
  }
}

/*------------------------*/
/*** concept ***/
.sec.concept {
  padding: 0 0 80px;
  overflow: hidden;
}
.sec.concept .ttl{
	font-size:1.8rem;
	color:#000;
	margin-bottom:10px;
}
.sec.concept .flex-wrap {
  display: flex;
  margin: 50px 0 0;
}
.sec.concept .flex-wrap .flex-box {
  width: 50%;
  padding: 0 20px;
}
.sec.concept .flex-wrap .flex-box:last-child {
  text-align: center;
}
.sec.concept .flex-wrap .flex-box p {
  padding: 10px;
  font-size: 1.05rem;
  line-height: 1.8;
}

@media screen and (max-width: 896px) {
  .sec.concept {
    padding: 40px 20px;
  }
  .sec.concept .flex-wrap {
    display: block;
    margin: 20px 0 0;
  }
  .sec.concept .flex-wrap .flex-box {
    width: 100%;
    padding: 30px 0;
  }
  .sec.concept .flex-wrap .flex-box img {
    width: 100%;
  }
}
#page .sec.concept .inner {
  background: none;
  position: static;
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px;
  line-height:1.8;
}

@media screen and (max-width: 896px) {
  .sec.concept {
    padding: 0 0 20px;
  }
}
/*------------------------*/
/*** business(web/architecture) ***/
.sec.business {
  padding: 80px 0;
}
.sec.business .flex-wrap {
  margin: 0 0 0 -10px;
  background: url(../img/index/business-bg.jpg) no-repeat;
  background-size: 100%;
  padding-top: 100px;
}
.sec.business .flex-wrap .flex-box {
  margin: 0 0 0 10px;
  color: #fff;
  padding: 0 30px 120px 0;
  background: url(../img/index/produce-img-architecture.jpg) no-repeat bottom;
  background-size: 90% 80%;
  background-position: right;
}
.sec.business .flex-wrap .flex-box:first-child {
  background: url(../img/index/business-img-architecture.jpg) no-repeat bottom;
  background-size: 90% 80%;
  background-position: right;
}
.sec.business .flex-wrap .flex-box:last-child {
  background: url(../img/index/business-img-web.jpg) no-repeat bottom;
  background-size: 90% 80%;
  background-position: right;
}
.sec.business .flex-wrap .flex-box h3 {
  font-family: "Marcellus", serif;
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  padding: 0 0 30px;
}
.sec.business .flex-wrap .flex-box figure {
  z-index: 1;
  margin-left: 10%;
}
.sec.business .flex-wrap .flex-box .inner {
  width: 90%;
  padding: 80px calc(6% + 10px) 80px 6%;
  background-color: rgba(93, 93, 93, 0.85);
  max-width: 600px;
  z-index: 5;
}
.sec.business .flex-wrap .flex-box .inner p {
  line-height: 2;
}
.sec.business .flex-wrap .flex-box .inner .btnarrow {
  color: #fff;
}
.sec.business .flex-wrap .flex-box .inner .btnarrow::before {
  background: #fff;
}
.sec.business .flex-wrap .flex-box .inner .btnarrow::after {
  background: #fff;
}

@media screen and (max-width: 896px) {
  .sec.business {
    padding: 40px 0;
  }
  .sec.business .flex-wrap {
    width: 100%;
    display: block;
    margin: 0;
  }
  .sec.business .flex-wrap .flex-box {
    margin: 0;
  }
  .sec.business .flex-wrap .flex-box .inner {
    width: 100%;
    padding: 50px 20px;
  }
}
/***** architecture *****/
#page .architecture .inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px 20px 100px;
}
#page .architecture .inner p {
  line-height: 2;
	  text-align: left;
}
#page .architecture .inner p.ttl {
	font-size:1.8rem;
	color:#000;
	margin-bottom:10px;
	  text-align: left;
}

@media screen and (max-width: 896px) {
  #page .architecture .visual {
    background: none;
  }
  #page .architecture .visual img {
    display: block;
    width: 100%;
  }
}
#page .architecture.list-page .flex-wrap {
  flex-wrap: wrap;
  width: 100%;
}
#page .architecture.list-page .flex-wrap .flex-box {
  width: 33.333%;
  padding: 20px 10px;
}
#page .architecture.list-page .flex-wrap .flex-box a {
  color: #333;
}
#page .architecture.list-page .flex-wrap .flex-box .item-photo {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
}
#page .architecture.list-page .flex-wrap .flex-box .item-photo:hover .item__img {
  filter: grayscale(100%);
}
#page .architecture.list-page .flex-wrap .flex-box .item-photo:hover .item__text {
  opacity: 1;
}
#page .architecture.list-page .flex-wrap .flex-box .item-photo .item__img {
  width: 100%;
  height: 100%;
}
#page .architecture.list-page .flex-wrap .flex-box .item-photo .item__img img {
  max-width: 100%;
}
#page .architecture.list-page .flex-wrap .flex-box .item-photo .item__text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  color: #fff;
  transition: 0.3s ease-in-out;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#page .architecture.list-page .flex-wrap .flex-box .item-photo .item__text p {
  line-height: 1.8;
  background-color: rgba(0, 0, 0, 0.65);
}
#page .architecture.list-page .flex-wrap .flex-box .detailes {
  font-size: 0.9rem;
  width: 100%;
}
#page .architecture.list-page .flex-wrap .flex-box .detailes dl {
  padding: 5px;
  display: flex;
  border-bottom: 2px dotted #ccc;
  background-color: rgba(0, 0, 0, 0.65);
}
#page .architecture.list-page .flex-wrap .flex-box .detailes dl dt {
  width: 15%;
  padding: 5px;
  line-height: 1.2;
}
#page .architecture.list-page .flex-wrap .flex-box .detailes dl dd {
  width: 85%;
  padding: 5px;
}
#page .architecture.list-page .flex-wrap .flex-box .corp-name {
  padding: 10px;
  font-size: 1rem;
}
#page .architecture.list-page .flex-wrap .flex-box .ctg span {
  display: block;
  font-size: 0.85rem;
  color: #fff;
  padding: 0 10px;
  text-align: right;
}
#page .architecture.list-page .flex-wrap .flex-box .ctg span.ctg-new {
  background: #507eda;
}
#page .architecture.list-page .flex-wrap .flex-box .ctg span.ctg-reform {
  background: #ff9933;
}
#page .architecture.list-page .flex-wrap .flex-box .ctg span.ctg-store {
  background: #36a86e;
}
#page .architecture.list-page .flex-wrap .flex-box .url {
  font-size: 0.9rem;
  word-break: break-all;
  padding: 10px;
}
#page .architecture.list-page .flex-wrap .flex-box .url a:after {
  content: "";
  display: inline-block;
  background: url(../img/out-link.svg) no-repeat;
  width: 12px;
  height: 12px;
  margin-left: 5px;
  background-size: contain;
  vertical-align: middle;
}

@media screen and (max-width: 896px) {
  #page .architecture.list-page .flex-wrap .flex-box {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  #page .architecture.list-page .flex-wrap .flex-box {
    width: 100%;
    padding: 0 0 20px;
  }
  #page .architecture.list-page .flex-wrap .flex-box .detailes dl {
    display: block;
  }
  #page .architecture.list-page .flex-wrap .flex-box .detailes dl dt {
    width: 100%;
  }
  #page .architecture.list-page .flex-wrap .flex-box .detailes dl dd {
    width: 100%;
  }
}
#page .architecture.detaile .article {
  max-width: 1300px;
  margin: 0 auto;
}
#page .architecture.detaile .article h3 {
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.2wm;
  font-weight: 500;
  text-align: center;
  padding: 30px 0;
}
#page .architecture.detaile .article .read {
  font-size: 1.2rem;
  padding: 10px;
  text-align: center;
}
#page .architecture.detaile .article .ctg {
  margin: 0 auto;
  font-size: 0.85rem;
  color: #fff;
}
#page .architecture.detaile .article .ctg span {
  display: block;
  text-align: right;
}
#page .architecture.detaile .article .ctg span.ctg-new {
  background: #507eda;
}
#page .architecture.detaile .article .ctg span.ctg-reform {
  background: #ff9933;
}
#page .architecture.detaile .article .ctg span.ctg-store {
  background: #36a86e;
}
#page .architecture.detaile .article figure {
  text-align: center;
}
#page .architecture.detaile .article figure img {
  width: 55%;
}
#page .architecture.detaile .article .date {
  width: 50%;
  margin: 50px auto;
}
#page .architecture.detaile .article .date dl {
  display: flex;
  padding: 5px;
  border-bottom: 2px dotted #ccc;
}
#page .architecture.detaile .article .date dl dt {
  width: 15%;
}
#page .architecture.detaile .article .date dl dd {
  width: 85%;
}
#page .architecture.detaile .article .date .url {
  text-align: right;
}
#page .architecture.detaile .article .date .url a:after {
  content: "";
  display: inline-block;
  background: url(../img/out-link.svg) no-repeat;
  width: 12px;
  height: 12px;
  margin-left: 5px;
  background-size: contain;
  vertical-align: middle;
}
#page .architecture.detaile .article .Img-position {
  max-width: 1300px;
  margin: 30px auto;
}
#page .architecture.detaile .article .Img-position ul {
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#page .architecture.detaile .article .Img-position ul li {
  width: 33.333%;
  padding: 5px;
}
#page .architecture.detaile .article .Img-position ul li img {
  max-width: 100%;
}

@media screen and (max-width: 896px) {
  #page .architecture.detaile .article figure img {
    width: 80%;
  }
  #page .architecture.detaile .article .date {
    width: 80%;
  }
  #page .architecture.detaile .article .Img-position ul li {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  #page .architecture.detaile .article h3 {
    font-size: 1.3rem;
  }
  #page .architecture.detaile .article .read {
    text-align: left;
  }
  #page .architecture.detaile .article figure img {
    width: 100%;
  }
  #page .architecture.detaile .article .date {
    width: 100%;
  }
  #page .architecture.detaile .article .date dl {
    display: block;
  }
  #page .architecture.detaile .article .date dl dt {
    width: 100%;
    font-weight: 500;
  }
  #page .architecture.detaile .article .date dl dd {
    width: 100%;
    padding-left: 1em;
  }
  #page .architecture.detaile .article .Img-position ul li {
    padding: 5px 5px 0;
  }
}
/***** web *****/
#page .web .inner {
  max-width: 1300px;
  margin: 0 auto;
  padding:20px 20px 100px;
}
#page .web .inner h3 {
  font-size: 2.3rem;
  letter-spacing: 0.2em;
  font-family: "Marcellus", serif;
  font-weight: 500;
  text-align: center;
  padding: 30px 0;
}
#page .web .inner .ttl{
	font-size:1.8rem;
	color:#000;
	margin-bottom:10px;
}
#page .web .inner .read {
  line-height: 1.6;
}

#page .web .inner .article {
  padding: 30px 20px;
}
#page .web .inner .article h4 {
  font-size: 1.6rem;
  font-weight: 500;
  margin: 0 0 20px;
}
#page .web .inner .article .catch {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 15px;
}
#page .web .inner .article .marker {
  font-size: 1.1rem;
  font-weight: 500;
  background: url(../img/share/marker-y.png) repeat-x bottom;
}
#page .web .inner .box figure {
  float: right;
}
#page .web .inner .box p {
  padding: 10px;
  border-bottom: 2px dotted #f2f2f2;
}
#page .web .inner .ux-design-list {
  display: flex;
  flex-wrap: wrap;
  list-style-type: none;
  margin: 15px 0;
}
#page .web .inner .ux-design-list li {
  width: 33.333%;
}
#page .web .inner .ux-design-list li span {
  display: block;
  font-size: 1.2rem;
  color: #fff;
  text-align: center;
  padding: 10px;
  margin: 10px;
  background: #333;
}
#page .web #cost {
  margin-top: -100px;
  padding-top: 100px;
}
#page .web #cost h3 {
  font-size: 2rem;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
}


@media screen and (max-width: 480px){
	#page .web #cost .tC{
		text-align:left;
	}
}
#page .web #cost .read {
  font-size: 1.3rem;
  font-weight: 500;
  text-align: center;
  padding: 15px 10px;
}
#page .web #cost .read span:before {
  content: "\a";
  white-space: pre;
}
#page .web #cost .box {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
#page .web #cost .box dl {
  width: 45%;
  margin: 1%;
  color: #fff;
  padding: 15px;
  background: #75a752;
}
#page .web #cost .box dl dt {
  font-size: 1.1rem;
  background: #49762a;
  padding: 5px 10px;
}
#page .web #cost .box dl dd {
  padding: 10px;
}
#page .web #cost .box dl dd .yen {
  font-weight: 500;
  color: #ffff00;
}
@media screen and (max-width: 480px){
	#page .web #cost .box {
  		display: block;
  	}
  	#page .web #cost .box dl {
  		width: 100%;
  	}
}
#page .web .box-text {
  font-size: 1.3rem;
  color: #ffd700;
  line-height: 2;
  text-align: center;
  padding: 15px;
  margin: 30px 10px;
  background: #333;
}

@media screen and (max-width: 480px){
	#page .web .box-text {
		text-align: left;
	}
}

#page .web.list-page .flex-wrap {
  flex-wrap: wrap;
  width: 100%;
  margin-bottom: 50px;
}
#page .web.list-page .flex-wrap .flex-box {
  width: 33.333%;
  padding: 20px 10px;
}
#page .web.list-page .flex-wrap .flex-box a {
  color: #333;
}
#page .web.list-page .flex-wrap .flex-box .item-photo {
  max-width: 500px;
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  border: 2px solid #333;
}
#page .web.list-page .flex-wrap .flex-box .item-photo:hover .item__img {
  filter: grayscale(100%);
}
#page .web.list-page .flex-wrap .flex-box .item-photo:hover .item__text {
  opacity: 1;
}
#page .web.list-page .flex-wrap .flex-box .item-photo .item__img {
  width: 100%;
  height: 100%;
}
#page .web.list-page .flex-wrap .flex-box .item-photo .item__img img {
  max-width: 100%;
  display: block;
}
#page .web.list-page .flex-wrap .flex-box .item-photo .item__text {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  text-align: center;
  color: #fff;
  transition: 0.3s ease-in-out;
  opacity: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
#page .web.list-page .flex-wrap .flex-box .item-photo .item__text p {
  line-height: 1.8;
  background-color: rgba(0, 0, 0, 0.65);
}
#page .web.list-page .flex-wrap .flex-box .detailes {
  font-size: 0.9rem;
  width: 100%;
}
#page .web.list-page .flex-wrap .flex-box .detailes dl {
  padding: 5px;
  display: flex;
  border-bottom: 2px dotted #ccc;
  background-color: rgba(0, 0, 0, 0.65);
}
#page .web.list-page .flex-wrap .flex-box .detailes dl dt {
  width: 15%;
  padding: 5px;
  line-height: 1.2;
}
#page .web.list-page .flex-wrap .flex-box .detailes dl dd {
  width: 85%;
  padding: 5px;
}
#page .web.list-page .flex-wrap .flex-box .corp-name {
  padding: 10px;
  font-size: 1rem;
  border-bottom: 2px dotted #ccc;
}
#page .web.list-page .flex-wrap .flex-box .url {
  font-size: 0.9rem;
  word-break: break-all;
  padding: 10px;
}
#page .web.list-page .flex-wrap .flex-box .url a:after {
  content: "";
  display: inline-block;
  background: url(../img/out-link.svg) no-repeat;
  width: 12px;
  height: 12px;
  margin-left: 5px;
  background-size: contain;
  vertical-align: middle;
}

@media screen and (max-width: 896px) {
  #page .web.list-page .flex-wrap .flex-box {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  #page .web.list-page .flex-wrap .flex-box {
    width: 100%;
    padding: 0 0 20px;
  }
  #page .web.list-page .flex-wrap .flex-box .detailes dl {
    display: block;
  }
  #page .web.list-page .flex-wrap .flex-box .detailes dl dt {
    width: 100%;
  }
  #page .web.list-page .flex-wrap .flex-box .detailes dl dd {
    width: 100%;
  }
}
#page .web.detaile .article {
  max-width: 1300px;
  margin: 0 auto;
}
#page .web.detaile .article h3 {
  font-size: 1.8rem;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 0.2wm;
  font-weight: 500;
  text-align: center;
  padding: 30px 0;
}
#page .web.detaile .article .read {
  font-size: 1.2rem;
  padding: 10px;
  text-align: center;
}
#page .web.detaile .article figure {
  text-align: center;
}
#page .web.detaile .article figure img {
  width: 70%;
  border: 2px solid #5e5c5b;
}
#page .web.detaile .article .date {
  width: 55%;
  margin: 50px auto;
}
#page .web.detaile .article .date dl {
  display: flex;
  padding: 5px;
  border-bottom: 2px dotted #ccc;
}
#page .web.detaile .article .date dl dt {
  width: 15%;
}
#page .web.detaile .article .date dl dd {
  width: 85%;
}
#page .web.detaile .article .date .url {
  text-align: right;
  padding: 5px;
}
#page .web.detaile .article .date .url a:after {
  content: "";
  display: inline-block;
  background: url(../img/out-link.svg) no-repeat;
  width: 12px;
  height: 12px;
  margin-left: 5px;
  background-size: contain;
  vertical-align: middle;
}
#page .web.detaile .article .Img-position {
  text-align: center;
  max-width: 55%;
  margin: 0 auto 50px;
  overflow-y: scroll;
  max-height: 700px;
  border: 5px solid #f2f2f2;
}
#page .web.detaile .article .Img-position img {
  max-width: 100%;
}

@media screen and (max-width: 896px) {
  #page .web.detaile .article figure img {
    width: 80%;
  }
  #page .web.detaile .article .date {
    width: 80%;
  }
}
@media screen and (max-width: 480px) {
  #page .web.detaile .article h3 {
    font-size: 1.3rem;
  }
  #page .web.detaile .article .read {
    text-align: left;
  }
  #page .web.detaile .article figure img {
    width: 100%;
  }
  #page .web.detaile .article .date {
    width: 100%;
  }
}
/*** produce ***/
.sec.produce .inner {
  padding: 0 0 20px;
}
.sec.produce .inner .ttl {
  max-width: 800px;
  margin: 0 auto;
  padding: 10px 30px;
  font-size: 1.4rem;
  font-weight:bold;
}
.sec.produce .inner .read {
  max-width: 800px;
  margin: 0 auto;
  padding: 10px 30px;
  font-size: 1.2rem;
}
.sec.produce .inner .read p {
  display: inline-block;
  text-align: left;
}

@media screen and (max-width: 480px) {
  .sec.produce .inner .ttl {
    padding: 10px;
    font-size: 1.2rem;
  }
  .sec.produce .inner .read {
    padding: 10px;
    font-size: 1.1rem;
  }
}
.sec.produce .inner .flow {
  max-width: 1200px;
  height: 450px;
  padding: 20px;
  margin: 50px auto;
  position: relative;
  z-index: 0;
}
.sec.produce .inner .flow .flex-wrap {
  width: 50%;
  display: flex;
  position: absolute;
  height: 75%;
  top: 0;
  left: 0;
  z-index: 2;
  transition: 0.3s;
  background-color: rgba(255, 255, 255, 0.8);
}
.sec.produce .inner .flow .flex-wrap .num {
  width: 30%;
  text-align: center;
  padding-top: 10%;
}
.sec.produce .inner .flow .flex-wrap .num img {
  max-width: 100px;
}
.sec.produce .inner .flow .flex-wrap .box {
  width: 70%;
  padding: 20px;
}
.sec.produce .inner .flow .flex-wrap .box h3 {
  font-family: "Marcellus", serif;
  font-size: 2.6rem;
  color: #000;
  font-weight: 400;
  line-height: 1;
}
.sec.produce .inner .flow .flex-wrap .box h3 span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 1.3rem;
}
.sec.produce .inner .flow .flex-wrap .box h3 span:before {
  content: "\a";
  white-space: pre;
}
/*.sec.produce .inner .flow .flex-wrap .box p {
  padding: 30px 0;
}*/
.sec.produce .inner .flow .img {
  opacity: 0.5;
  text-align: right;
  position: absolute;
  height: 100%;
  top: 0;
  right: 0;
  z-index: 1;
}
.sec.produce .inner .flow .img img {
  -webkit-clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
          clip-path: polygon(30% 0%, 100% 0%, 100% 100%, 0% 100%);
  max-width: 100%;
}
@media screen and (max-width: 896px) {
  .sec.produce .inner .flow .flex-wrap {
    width: 95%;
    background-color: rgba(255, 255, 255, 0.75);
  }
  .sec.produce .inner .flow .flex-wrap .box h3 {
    font-size: 2rem;
  }
  .sec.produce .inner .flow .flex-wrap .box h3 span {
    font-size: 1.1rem;
  }
}
@media screen and (max-width: 480px) {
  .sec.produce .inner .flow {
    height: 600px;
    padding: 10px;
    margin: 10px auto;
    border-bottom: 2px dotted #ccc;
  }
  .sec.produce .inner .flow .flex-wrap {
    display: block;
    width: 100%;
    margin-top: 100px;
  }
  .sec.produce .inner .flow .flex-wrap .num {
    width: 100%;
  }
  .sec.produce .inner .flow .flex-wrap .box {
    width: 100%;
  }
}

/*------------------------*/
/*** company　会社案内 ***/
/*------------------------*/
.sec.company .inner {
  background: url(../img/share/bg-color-gray.png) no-repeat;
  background-size: 70% 85%;
  overflow: hidden;
  padding: 80px 0;
  position: relative;
}
.sec.company .inner figure {
  text-align: right;
}
.sec.company .inner figure img {
  width: 60%;
}
.sec.company .inner .box {
  width: calc(60% - 60px);
  margin: 0;
  padding: 80px calc(6% + 10px) 80px 6%;
  font-size: 1rem;
  color: #fff;
  background: #5d5d5d;
  display: inline-block;
  position: absolute;
  top: 25%;
}
.sec.company .inner .box h4 {
  font-size: 1.8rem;
  font-weight: 300;
  letter-spacing: 1px;
  padding: 0 0 30px;
}
.sec.company .inner .box h4 span:before {
  content: "\a";
  white-space: pre;
  padding-left: 20px;
}
.sec.company .inner .box p {
  line-height: 2.4;
  padding: 0 0 20px;
}
.sec.company .inner .btnarrow {
  color: #fff;
}
.sec.company .inner .btnarrow::before {
  background: #fff;
}
.sec.company .inner .btnarrow::after {
  background: #fff;
}
.sec.company .inner .RDname{
	font-size:1.2rem;
  font-family: "Noto Sans JP", sans-serif;
	font-weight:600;
	text-align:right;
}

@media screen and (max-width: 896px) {
  .sec.company .inner {
    overflow: visible;
    position: static;
    background-size: 70% 50%;
  }
  .sec.company .inner .box {
    width: 100%;
    position: static;
    background-color: rgba(93, 93, 93, 0.95);
    padding: 80px calc(4% + 10px) 80px 6%;
  }
  .sec.company .inner .box h4 {
    font-size: 1.4rem;
  }
  .sec.company .inner figure {
    height: 120px;
  }
  .sec.company .inner figure img {
    width: 90%;
  }
}
#page .sec.company .inner {
  background: none;
  padding: 0;
  position: static;
  max-width: 1300px;
  margin: 0 auto;
  padding: 20px;
}
#page .sec.company .inner .read {
  font-size: 1.8rem;
  padding: 0 0 30px;
  text-align: center;
}
#page .sec.company .inner p {
  line-height: 1.8;
}
#page .sec.company .inner h3 {
  font-size: 1.8rem;
  font-weight: 500;
  text-align: center;
  padding: 50px 0;
}
#page .sec.company #company-info dl {
  padding: 20px;
  border-bottom: 1px solid #ccc;
  display: flex;
}
#page .sec.company #company-info dl dt {
  width: 10%;
  padding: 15px;
}
#page .sec.company #company-info dl dd {
  width: 90%;
  padding: 15px;
}
#page .sec.company #company-info dl dd .business-content {
  padding: 0 0 20px;
}
#page .sec.company #company-info dl dd .business-content span {
  font-weight: 500;
  border-bottom: 3px solid #ccc;
}
#page .sec.company .map {
  padding: 20px 0;
}

@media screen and (max-width: 896px) {
  #page .sec.company #company-info dl {
    display: block;
  }
  #page .sec.company #company-info dl dt {
    width: 100%;
    padding: 0;
  }
  #page .sec.company #company-info dl dd {
    width: 100%;
    padding: 0;
  }
}
@media screen and (max-width: 480px) {
  #page .sec.company #company-info dl {
    display: block;
    padding: 10px;
  }
}
/*------------------------*/
/*** ニュース ***/
/*------------------------*/
.sec.news .inner {
  max-width: 1300px;
  margin: 20px auto;
  padding: 20px;
  /*　タブメニュー　*/
}
.sec.news .inner .tab {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  list-style-type: none;
}
.sec.news .inner .tab li {
  width: 200px;
}
.sec.news .inner .tab li a {
  display: block;
  color: #fff;
  background: #a7a7a7;
  margin: 1px;
  padding: 10px 30px;
  position: relative;
  transition: 0.3s;
}
.sec.news .inner .tab li a:before {
  position: absolute;
  top: 20%;
  left: 0;
  content: "─";
  color: #fff;
}
.sec.news .inner .tab li a:hover {
  background: #7e7b7b;
}
.sec.news .inner .tab li.active a {
  background: #75a752;
}
.sec.news .inner .tab li.active a:hover {
  background: #5d8d3b;
}
.sec.news .inner #news-all {
  max-width: 1100px;
  margin: 0 auto;
}
.sec.news .inner .area {
  display: none;
  opacity: 0;
  background: #fff;
  padding: 50px 20px;
}
.sec.news .inner .area.is-active {
  display: block;
  animation-name: displayAnime;
  animation-duration: 2s;
  animation-fill-mode: forwards;
}
.sec.news .inner .area dl a {
  display: flex;
  font-weight: 500;
  line-height: 2;
  padding: 20px 10px;
}
.sec.news .inner .area dl a:hover {
  color: #5d5d5d;
  background: #eee;
}
.sec.news .inner .area dl a dt {
  width: 12%;
  padding: 0 15px;
}
.sec.news .inner .area dl a dd {
  width: 76%;
  padding: 0 15px;
}
.sec.news .inner .area dl a dd:nth-child(2) {
  width: 18%;
}
.sec.news .inner .area dl a dd span {
  font-size: 0.8rem;
  color: #fff;
  display: block;
  padding: 0 15px;
  margin: 5px 0 0;
  text-align: center;
  background: #5d5d5d;
  width: 130px;
}
.sec.news .inner .more {
  text-align: right;
}

@media screen and (max-width: 896px) {
  .sec.news .inner .tab {
    display: block;
  }
  .sec.news .inner .tab li {
    width: 100%;
  }
  .sec.news .inner .area {
    padding: 20px 0;
  }
  .sec.news .inner .area dl a {
    display: block;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
  }
  .sec.news .inner .area dl a dt {
    width: 100%;
  }
  .sec.news .inner .area dl a dd {
    width: 100%;
    padding: 10px 15px;
  }
  .sec.news .inner .area dl a dd:nth-child(2) {
    width: 100%;
    padding: 0;
  }
  .sec.news .inner .area dl a dd span {
    margin: 5px 15px 0;
  }
}
@keyframes displayAnime {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
#page .news.detaile h3 {
  font-size: 1.7rem;
  font-weight: 400;
  padding: 20px 0;
}
#page .news.detaile .date {
  font-size: 1rem;
  text-align: right;
}
#page .news.detaile .ctg-icon {
  text-align: right;
}
#page .news.detaile .ctg-icon span {
  font-size: 0.8rem;
  color: #fff;
  display: inline-block;
  padding: 0 15px;
  margin: 5px 0 0;
  text-align: center;
  background: #5d5d5d;
  width: 130px;
}
#page .news.detaile .entry-box {
  padding: 20px 0;
}
#page .news.detaile .entry-box .link a {
  color: #0033cc;
  padding: 5px;
  transition: 0.3s;
}
#page .news.detaile .entry-box .link a:before {
  content: url(../img/share/icon-link.png);
  margin-right: 5px;
}
#page .news.detaile .entry-box .link a:hover {
  color: #fff;
  background: #999;
}
#page .news.detaile .entry-box .photo {
  padding: 20px 0;
}

/*------------------------*/
/*** コンタクト ***/
/*------------------------*/
#page .contact .inner {
  background: none;
  position: static;
  max-width: 900px;
  margin: 0 auto;
  padding: 20px;
  line-height: 2;
}

/* ==================
	FORM
===================== */
.form-group .flex {
  display: flex;
}

.form-group .flex.frap {
  flex-wrap: wrap;
}

.form-group .flex.hlf .box {
  margin: 0.5%;
}

.form-group .flex.hlf .box-top {
  width: 49%;
  padding: 25px;
}

@media screen and (max-width: 896px) {
  .form-group .flex.hlf .box-top {
    padding: 15px;
  }
}
.form-group .box {
  background: #fff;
  border-radius: 10px;
  padding: 10px;
  margin-top: 20px;
}

.form-group .box:first-child {
  margin-top: 0;
}

.form-group .box fieldset {
  border: 0;
}

fieldset ul {
  list-style-type: none;
}

.form-group {
  clear: both;
  max-width: 1000px;
  background: #f7f7f7;
  margin: 25px auto;
  padding: 25px 15px;
  border-radius: 10px;
  transition: 0.3s;
}

.form-group.form-top ul {
  display: block;
  margin-left: 30px;
}

.form-group.form-top ul li {
  padding: 1px 10px;
}

@media screen and (max-width: 896px) {
  .form-group.form-top ul li {
    padding: 1px 0;
  }
}
.form-group.form-top .bt {
  padding: 20px 10px;
}

.form-group.form-top .bt a {
  font-size: 110%;
  color: #fff;
  font-weight: bold;
  text-align: center;
  display: block;
  padding: 15px 20px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#c5deea+0,8abbd7+31,066dab+100;Web+2.0+Blue+3D+%231 */
  background: rgb(197, 222, 234); /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgb(197, 222, 234) 0%, rgb(138, 187, 215) 31%, rgb(6, 109, 171) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#c5deea", endColorstr="#066dab",GradientType=0 ); /* IE6-9 */
  border: 1px solid #6393c1;
  box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.4);
}

.form-group.form-top .bt a:hover {
  box-shadow: 0 0 0 rgba(0, 0, 0, 0.4);
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#d5e2e8+0,8abbd7+31,1d76aa+100 */
  background: rgb(213, 226, 232); /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgb(213, 226, 232) 0%, rgb(138, 187, 215) 31%, rgb(29, 118, 170) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#d5e2e8", endColorstr="#1d76aa",GradientType=0 ); /* IE6-9 */
}

@media screen and (max-width: 896px) {
  .form-group.form-top .bt a {
    font-size: 105%;
  }
}
fieldset {
  display: hidden;
}

legend {
  width: 100%;
  font-size: 110%;
  font-weight: bold;
  line-height: 1.8;
  padding: 5px;
}

.form-group .no {
  width: 40px;
  height: 40px;
  padding: 10px;
  font-size: 120%;
  color: #fff;
  line-height: 2;
  border-radius: 5px;
  background: #141414;
  margin-right: 10px;
  float: left;
  text-align: center;
  transition: 0.3s;
}

.form-group ul li {
  padding: 3px 10px;
}

.form-control {
  border: 1px solid #ccc;
  padding: 3px;
  border-radius: 5px;
  box-shadow: inset 1px 2px 4px -3px rgba(0, 0, 0, 0.5);
}

.form-control.long {
  width: 80%;
}

@media (max-width: 750px) {
  .form-control.long {
    width: 100%;
  }
}
textarea {
  width: 60%;
  height: 140px;
}

.button ul {
  list-style-type: none;
  display: flex;
  justify-content: center;
  margin-bottom: 30px;
}

.button ul li {
  padding: 5px;
}

.submit, .reset {
  color: #333;
  border: 1px solid #666;
  border-radius: 3px;
  padding: 10px;
  width: 140px;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#e2e2e2+0,dbdbdb+50,d1d1d1+51,fefefe+100;Grey+Gloss+%231 */
  background: #e2e2e2; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #e2e2e2 0%, #dbdbdb 50%, #d1d1d1 51%, #fefefe 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#e2e2e2", endColorstr="#fefefe",GradientType=0 ); /* IE6-9 */
  cursor: pointer;
}

.submit {
  color: #fff;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#3b679e+0,2b88d9+50,207cca+51,7db9e8+100;Blue+Gloss+%232 */
  background: #3b679e; /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, #3b679e 0%, #2b88d9 50%, #207cca 51%, #7db9e8 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#3b679e", endColorstr="#7db9e8",GradientType=0 ); /* IE6-9 */
}

.submit:hover {
  background: #207cca;
}

.reset:hover {
  background: #d1d1d1;
}

select {
  outline: none;
  -moz-appearance: none;
  text-indent: 0.01px;
  text-overflow: "";
  background: none transparent;
  vertical-align: middle;
  font-size: inherit;
  color: inherit;
  -webkit-appearance: button;
  -moz-appearance: button;
  appearance: button;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  padding: 0 12px;
  margin-bottom: 5px;
  border: 1px solid #ccc;
  /*color:#828c9a;*/
  /*width:100%*/
  border-radius: 3px;
}

select option {
  background-color: #fff;
  color: #333;
}

select::-ms-expand {
  display: none;
}

select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #828c9a;
}

.select-wrap.select-primary:before {
  color: #fff;
}

.select-wrap.select-primary > select {
  background: #0084B4;
  color: #fff;
  border-color: #0084B4;
}

.select-wrap.select-primary > select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #fff;
}

.select-wrap.select-inverse:before {
  color: #fff;
}

.select-wrap.select-inverse > select {
  color: #fff;
  border-color: #fff;
}

.select-wrap.select-inverse > select:-moz-focusring {
  color: transparent;
  text-shadow: 0 0 0 #fff;
}

@media screen and (max-width: 896px) {
  .form-group .flex {
    display: block;
  }
  .form-group .flex.hlf .box {
    width: 100%;
    margin: 0 0 10px;
  }
}
@media (max-width: 750px) {
  .form-group .no {
    width: 95%;
    height: auto;
    padding: 5px 10px;
    font-size: 110%;
    line-height: 1.2;
    float: none;
    text-align: left;
  }
  textarea {
    width: 95%;
  }
}
.form .form-group ul {
  list-style-type: none;
}

/* 完了ページ */
#aq_button a {
  display: block;
  width: 50%;
  margin: 30px auto;
  font-size: 160%;
  color: #ffff00;
  text-align: center;
  padding: 25px;
  border: 4px solid #fff;
  /* Permalink - use to edit and share this gradient: https://colorzilla.com/gradient-editor/#4d94ff+0,0066ff+100 */
  background: rgb(77, 148, 255); /* Old browsers */ /* FF3.6-15 */ /* Chrome10-25,Safari5.1-6 */
  background: linear-gradient(to bottom, rgb(77, 148, 255) 0%, rgb(0, 102, 255) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr="#4d94ff", endColorstr="#0066ff",GradientType=0 ); /* IE6-9 */
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.4);
  transition: 0.3s;
}

#aq_button a:hover {
  background: #0066ff;
}

@media (max-width: 750px) {
  #aq_button a {
    width: 80%;
    font-size: 145%;
  }
}

/*----------- contact -------------*/
#contact {
  position: relative;
	max-width:80%;
	margin:80px auto 20px;
}
#contact h2 {
  font-family: "Marcellus", serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: #5d5d5d;
  letter-spacing: 0.5em;
  text-align: center;
  position: relative;
  margin-bottom: 80px;
}
#contact h2 span {
  font-size: 1rem;
  letter-spacing: 0.2em;
  font-weight: 400;
  font-family: "Noto Sans JP", sans-serif;
}
#contact h2 span:after {
  content: "\a";
  white-space: pre;
}
#contact h2::after {
  content: "";
  position: absolute;
  top: 70px;
  left: 50%;
  margin-left: -15px;
  background: url(../img/share/icon-ttl-under.svg);
  width: 31px;
  height: 16px;
}

@media screen and (max-width: 896px) {
  #contact h2 {
    letter-spacing: 1px;
    margin-bottom: 30px;
  }
  #contact h2::after {
    display: none;
  }
}

@media screen and (max-width: 480px){
	#contact {
		max-width:100%;
	}
}

#contact .ttl{
	font-size:1.3rem;
	font-weight:500;
}
#contact p{
	padding:10px;
}

/*------------------------*/
/*** footer　フッター ***/
/*------------------------*/
.footer {
  margin-top: 70px;
  background: url(../img/share/footer-img.jpg) no-repeat;
  background-size: cover;
}
.footer .bt-contact a {
  width: 80%;
  display: block;
  font-size: 2.5rem;
  color: #5d5d5d;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.95);
  padding: 40px calc(6% + 10px) 40px 6%;
  margin: -70px auto 0;
  border: 1px solid #5d5d5d;
  transition: 0.3s;
}
.footer .bt-contact a span:before {
  content: url(../img/icon-mail.png);
  margin-right: 1em;
}
.footer .bt-contact a:hover {
  color: #fff;
  background: #5d5d5d;
}
.footer .bt-contact a:hover span:before {
  content: url(../img/icon-mail_w.png);
  margin-right: 1em;
}
.footer .flex-wrap {
  max-width: 1300px;
  margin: 50px auto;
}
.footer .flex-wrap .flex-box.foot-nav {
  width: 70%;
}
.footer .flex-wrap .flex-box.foot-nav .inner {
  width: 100%;
  padding: 30px 40px;
  display: flex;
}
.footer .flex-wrap .flex-box.foot-nav .inner dl {
  margin-right: 10px;
}
.footer .flex-wrap .flex-box.foot-nav .inner dl dt a {
  color: #fff;
}
.footer .flex-wrap .flex-box.foot-nav .inner dl dt.ttl {
  padding: 0 0 15px;
}
.footer .flex-wrap .flex-box.foot-nav .inner dl dt.ttl a {
  width: 80%;
  padding: 0 5px 5px;
  border-bottom: 2px solid #fff;
}
.footer .flex-wrap .flex-box.foot-nav .inner dl dt.ttl a:hover {
  opacity: 0.85;
}
.footer .flex-wrap .flex-box.foot-nav .inner dl dd a {
  color: #fff;
}
.footer .flex-wrap .flex-box.foot-nav ul {
  list-style-type: none;
}
.footer .flex-wrap .flex-box.foot-nav ul li a {
  font-size: 0.9rem;
  font-weight: 400;
  color: #fff;
  display: inline-block;
  padding: 10px 20px;
  text-decoration: none;
}
.footer .flex-wrap .flex-box.foot-add {
  width: 30%;
  color: #fff;
}
.footer .flex-wrap .flex-box.foot-add .inner {
  max-width: 340px;
  margin: 0 auto;
}
.footer .flex-wrap .flex-box.foot-add .inner img {
  width: 84%;
  padding: 10px;
}
.footer .flex-wrap .flex-box.foot-add .inner address {
  font-style: normal;
  font-size: 0.9rem;
  font-weight: 300;
  padding: 10px;
}
.footer .flex-wrap .flex-box.foot-add .inner .copylight {
  font-size: 0.8rem;
  font-weight: 300;
  padding: 10px;
}
.footer .flex-wrap .flex-box.foot-add .inner .sp {
  display: none;
}
.footer .flex-wrap .flex-box.foot-add .inner .pc {
  display: block;
}

@media screen and (max-width: 896px) {
  .footer {
    margin-top: 50px;
  }
  .footer .bt-contact a {
    width: 90%;
    font-size: 2rem;
    letter-spacing: 1px;
    padding: 20px calc(5% + 10px) 20px 6%;
    margin: -40px auto 0;
  }
  .footer .bt-contact a span:before {
    content: none;
  }
  .footer .flex-wrap {
    margin: 20px auto;
  }
}
@media screen and (max-width: 480px) {
  .footer .bt-contact a {
    font-size: 1.3rem;
  }
}
/* animation */
.footer .flex-wrap {
  padding: 20px;
}
.footer .flex-box.foot-nav .inner dl dd ul.navi-box li a {
  position: relative;
}
.footer .flex-box.foot-nav .inner dl dd ul.navi-box li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 10%;
  width: 80%;
  height: 2px;
  background: #fff;
  transition: all 0.3s;
  transform: scale(0, 1);
  transform-origin: left top;
}
.footer .flex-box.foot-nav .inner dl dd ul.navi-box li a:hover {
  color: #fff;
}
.footer .flex-box.foot-nav .inner dl dd ul.navi-box li a:hover::after {
  transform: scale(1, 1);
}

@media screen and (max-width: 896px) {
  .footer .flex-wrap {
    display: block;
    padding: 20px 0;
  }
  .footer .flex-wrap .flex-box.foot-nav {
    width: 100%;
  }
  .footer .flex-wrap .flex-box.foot-nav .inner {
    display: block;
    padding: 0;
  }
  .footer .flex-wrap .flex-box.foot-nav .inner dl {
    width: 100%;
    padding: 15px 0;
  }
  .footer .flex-wrap .flex-box.foot-nav .inner dl dt {
    padding: 0 0 10px;
  }
  .footer .flex-wrap .flex-box.foot-nav .inner dl dt.ttl a {
    display: block;
    border-bottom: 0;
    font-size: 1.1rem;
    padding: 0 10px;
  }
  .footer .flex-wrap .flex-box.foot-nav .inner ul li a {
    font-size: 1rem;
    display: block;
    background: #333;
    margin-bottom: 2px;
  }
  .footer .flex-wrap .flex-box.foot-add {
    width: 100%;
  }
  .footer .flex-wrap .flex-box.foot-add .inner .sp {
    display: block;
  }
  .footer .flex-wrap .flex-box.foot-add .inner .pc {
    display: none;
  }
}/*# sourceMappingURL=main.css.map */