@charset "utf-8";
/* === reset === */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
ol,
ul {
  list-style: none;
}

a {
  text-decoration: none;
  color: #333;
  transition: 0.2s;
}
a:hover{
  opacity: 0.6;
}
body{
  font-family:'Zen Kaku Gothic Antique', 'Noto Sans JP', Meiryo, sans-serif;
  color: #333;
  background-color: #fff;
  margin-top: 84px;
  background-color: #f7f7f7;
  font-size: 14px;;
}
h1,h2,h3,h4,h5,h6{
  font-size: 16px;
  font-weight: normal;
}
button, input, select, textarea {
  font-family : inherit;
/*フォームのパーツに親のフォントを継承させる*/
  accent-color: rgba(0, 51, 5);
/* チェックボックス・ラジオボタン・
レンジスライダー・プログレスバーの色を変更できる */
}
/* ===common=== */
.inner{
  width: 76%;
  max-width: 100%;
  margin: 0 auto;
}
@media screen and (max-width: 414px) {
 .pc{
   display: none;
 } 
 .inner{
   width: 92%;
 }
}
@media screen and (min-width:415px) {
 .sp{
   display: none;
 }  
}
@media screen and (max-width:1024px) {
  .inner{
    width: 85%
  }
}
/* ページトップへ戻るボタン */
.pagetop {
  display: none;
  position: fixed;
  bottom: 140px;
  right: 50px;
 }
 .pagetop a {
   display: block;
   width: 50px;
   height: 50px;
   background-color: rgb(182, 182, 182);
   text-align: center;
   color: #fff;
   font-size: 20px;
   text-decoration: none;
   line-height: 50px;
   border-radius:25px;
   transition:0.3s;
 }
 .pagetop a:hover {
   color: #ccc;
   background-color: #999;
   box-shadow:0 0 2px 1px #fff;
 }
 @media screen and (max-width: 1024px) {
   .pagetop{
     right: 40px;
   }
   
 }
 @media screen and (max-width: 414px) {
   .pagetop{
     right: 10px;
   }
 }

/* === layout === */
/* header----------------------------------------- */
.header{
  width: 100%;
  background-color:rgba(0, 51, 5, 0.4);
  background-color: rgba(255, 255, 255, 0.9);
  padding: 14px 0;
  border-bottom: #003305 5px solid;
  border-bottom: #011603 5px solid;

  position: fixed;
  top: 0;
  left: 0;
  z-index: 2;
}
@media screen and (max-width:414px) {
  .header{
    width: 100%;
    padding: 19px 0;
    }
  
}
.header_content{
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.header .logo{
  font-weight: 700;
  letter-spacing: 0.12rem;
  font-size: 20px;
  color: #333;
  font-family: 'Noto Serif JP';
  line-height: 1.5rem;
}
@media screen and (max-width:414px) {
  .header .logo{
    font-size: 18px;
    letter-spacing: 0.1rem;
    line-height: 1.2rem;
  }
  }
.logo_sub{
  font-family: Lato;
  letter-spacing: 0.212rem;
  font-weight: normal;
  font-size: 10px;
}
@media screen and (max-width:414px) {
 .logo_sub{
   letter-spacing: 0.158rem;
 } 
}
.header_nav{
  display: flex;
  text-align: center;
  margin-top: 5px;
}
.header_nav li{
  border-left: #999 1px solid;
  font-size: 14px;
  letter-spacing: 0.28rem;
}
.header_nav li:first-child{
  border-left:none;
}
.header li a{
  color: #333;
  padding: 0 32px;
  display: block;
}
.nav_sub{
  font-size: 8px;
  letter-spacing: 0.3rem;
  font-family: Lato;
}
/* --spメニュー開閉ボタン-- */
.menu_btn {
  position: fixed;
  width: 22px;
  height: 22px;
  background: none;
  border: none;
  appearance: none;
  cursor: pointer;
  position: fixed;
  top: 20px;
  right: 20px;
  z-index: 2;
}
.menu_btn span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: #333;
  border-radius: 4px;
  transition: 0.3s;
  display: inline-block;
}
.menu_btn span:nth-of-type(1) {
  top:0px;
}
.menu_btn span:nth-of-type(2) {
  top: 10px;
}
.menu_btn span:nth-of-type(3) {
  bottom: 0;
}
.menu_btn.active span:nth-of-type(1) {
  transform: translateY(10px) rotate(-45deg);
  background-color: #fff;
}
.menu_btn.active span:nth-of-type(2) {
  opacity: 0;
  background-color: #fff;
}
.menu_btn.active span:nth-of-type(3) {
  transform: translateY(-10px) rotate(45deg);
  background-color: #fff;
}

@media screen and (min-width:990px) {
  .menu_btn {
    display: none;
  }
} 
@media screen and (max-width: 989px) {
  .header_nav{
    display: none;
  }
}
/*SPメニュー本体*/
.menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1;
  width: 100vw;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: rgba(0, 0, 0, 0.65);
  backdrop-filter: blur(6px);
}
.menu_item {
  width: 100%;
  height: auto;
  padding: 1em 1em;
  text-align: center;
  margin-right: 1em;
  box-sizing: border-box;
  letter-spacing: 0.15rem;
}
.menu_item a{
  color: #fff;
  font-weight: lighter;
  font-size: 20px;
}
.menu_item a:hover{
  color: rgba(255, 255, 255, 0.9);
  transition: 0.3s;
}

/* SP menuアニメーション前のメニューの状態 */
.menu {
  transform: translateX(100vw);
  transition: all .3s linear;
}
/* SP menuアニメーション後のメニューの状態 */
.menu.is-active {
  transform: translateX(0);
}

/* --main----------------------------------------- */
.main_visual{
  /* background-image: url(../img/seibu_line.jpg); */
  background-image: url(../img/sky_view.jpg);
  background-position: bottom;
  background-size: cover;
  background-repeat: no-repeat;
  width: auto;
  height: 75vh;
  position: relative;
  text-align: center;
  margin-bottom: 30px;
}
.main_visual::before{
  /* 透過した黒を上から重ねるイメージ */
  background-color: rgba(0,0,0,0.2);
  /* 自由に位置指定 */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: ' ';
}
@media screen and (max-width:1024px) {
  .main_visual{
    height: 40vh;
  }  
}
@media screen and (max-width: 414px) {
  .main_visual{
    height: 50vh;
  }
}
.main_content{
}
.main_content h2{
  position:absolute;
  bottom: 30px;
  right: 60px;
  color: #fff;
  letter-spacing: 0.2rem;
  font-size: 30px;
  width:100%;
  text-align: right;
  display: block;
  padding: 20px;
  font-family:"Sawarabi Mincho", serif;
}
@media screen and (max-width:1024px) {
  .main_content h2{
    font-size: 20px;
    letter-spacing: 0.1rem;
  }
}
@media screen and (max-width:414px) {
  .main_content h2{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    font-size: 16px;
    letter-spacing: 0.1rem;
    padding: 50% 0;
  } 
}

/* --news/message/works----------------------- */
.top_content{
  width: 100%;
  margin-bottom: 100px;
}
.top_section_wrapper{
  display: flex;
}
@media screen and (max-width: 414px) {
  .top_section_wrapper{
    display: block;
  }
}
.section_wrapper h2{
  margin-bottom: 10px;
  letter-spacing: 0.2rem;
  font-size: 20px;
  position: relative;
  padding-left: 15px;
}
.section_wrapper h2::before{
  content: "";
  position: absolute;
  background-color: #003305;
  height: 20px;
  width: 4px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.news_access_wrapper{
  width: 90%;
  margin-right: 40px;
}
@media screen and (max-width: 1024px){
  .news_access_wrapper{
    margin-right: 20px;
    width: 100%;
  }
}
@media screen and (max-width: 414px) {
  .news_access_wrapper{
    margin: 0 auto;
    width: 90%;
  }
}
/* ==news== */
.news-list{
  list-style: none outside;
  margin: 0;
  padding: 20px 20px 20px;
  background-color: #fff;
  margin-bottom: 50px;
  overflow-y: scroll;
  height: 40vh;
}
.news-list::-webkit-scrollbar {
  width: 6px;
}
.news-list::-webkit-scrollbar-track {
    background-color: rgb(223, 223, 223);
}
.news-list::-webkit-scrollbar-thumb {
    box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.4);
    border-radius: 10px;
}
@media screen and (max-width:1024px) {
  .news-list{
    height: 30vh;
  }
}
@media screen and (max-width:414px) {
  .news-list{
    margin-bottom: 70px;
  } 
}
.news-list .item a{
  display: flex;
  flex-wrap: wrap;
  flex-wrap: nowrap;
  text-decoration: none;
  color: #333;
  border-bottom: 1px solid #CCC;
  padding: 20px 0;
}
.news-list .item:first-child a{
  border-top: 1px solid #CCC;
}
.news-list .item .date{
  margin: 0;
  min-width: 120px;
  font-size: 16px;
  color: #999;
  padding: 0 20px 0 0;
}
.news-list .item .title{
  margin: 0;
  width: 100%;
}
.news-list .item a:hover .title{
  color: #00F;
}

@media screen and (max-width: 1024px){
.news-list .item a{
  flex-wrap: wrap;
}
.news-list .item .date{
  min-width: 100px;
}
.news-list .item .title{
  margin-top: 10px;
}
}
/* ==access== */
.toppage_googlemap{
  width: 100%;
  height: auto;
}
.toppage_access p{
  font-size: 13px;
  margin-bottom: 10px;
  text-align: left;
}
.toppage_access i{
  margin-right: 10px;
}
.top_access_table{
  margin-top: 20px;
}
.top_access_table table{
  width: 100%;
  border-collapse: collapse;
  border: 0.2px solid rgb(202, 202, 202);
  border-spacing: 0;
  background-color: #fff;
  color: #333;
}
.top_access_table th{
  padding: 8px;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.05rem;
  background: rgb(241, 241, 241);
  border: 0.2px solid rgb(202, 202, 202);
}
.top_access_table td{
  padding: 10px;
  letter-spacing: 0.05rem;
  border: 0.2px solid rgb(202, 202, 202);
}
.top_access_table td span{
  font-size: 9px;
}
.toppage_googlemap_link{
  text-align: right;
  display: block;
  font-size: 14px;
  color: #00F;
}
.toppage_googlemap_link:active{
  color: #FF0000;
}

/* ==message==*/
.message_works_wrapper{
}
.message_works_wrapper p{
  letter-spacing: 0.2rem;
  text-align: justify;
  line-height: 1.6rem;
}
.message_wrapper p{
  padding: 20px 20px ;
  background-color: #fff;
}
@media screen and (max-width: 1024px) {
 .message_wrapper{
   width: 90%;
   margin: 0 auto;
 }  
}

/* ==works== */
.works{
  padding: 50px 0 30px;
  width: 100%;
}
@media screen and (max-width:1024px) {
  .works{
    width: 90%;
  }
  
}
@media screen and (max-width:414px) {
  .works{
    margin-bottom: 40px;
    padding-top: 70px;
    width: 90%;
  }
}
.works_content{
  display: flex;
  flex-wrap: wrap;
}
.works_box{
  width: 32%;
  margin-right: 2%;
}
@media screen and (max-width: 1024px) {
  .works_box{
    width: 70%;
    margin: 0 auto;
  }
}
  @media screen and (max-width: 414px) {
    .works_box{
      margin-bottom: 26px;
      width: 90%;
    } 
  }
.works_box:last-child{
  margin-right: 0;
 }
 @media screen and (max-width:1024px) {
   .works_box:last-child{
     margin-right: auto;
   }
 }
 @media screen and (max-width: 414px) {
   .works_box:last-child{
     margin-bottom: 0;
   }  
 }
 .works_box img{
   border-radius: 3px;
 }
 .works_box h3{
   padding: 10px 5px;
   font-size: 18px;
 }
 .works_box li{
   list-style: inside;
   padding: 0 5px;
   line-height: 2rem;
 }

/*-- footer ---------------------------------*/
.footer{
  background-color: #003305;
  background-color: #011603;
  padding: 40px;
}
.copy{
  text-align: center;
  color: #fff;
  display: block;
  letter-spacing: 0.1rem;
}
.footer p{
  color: #fff;
  text-align: center;
  margin-bottom: 20px;
  letter-spacing: 0.1rem;
  line-height: 1.6rem;
}

/* =========works.html========= */
/* ============================ */
.works_main_visual{
  background-image: url(../img/works_main_visual.jpg);
  background-position: top;
  background-size: cover;
  width: 100%;
  height: 50vh;
  background-repeat: no-repeat;
  position: relative;
  margin-bottom: 30px;
}
.works_main_visual::before{
  /* 透過した黒を上から重ねるイメージ */
  background-color: rgba(0,0,0,0.3);
  /* 自由に位置指定 */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: ' ';
}
.works_main_content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.works_main_content h2{
  font-size: 29px;
  color: #fff;
  letter-spacing: 0.3rem;
  text-align: center;
  line-height: 1.6rem;
}
.works_main_content h2 span{
  font-size: 16px;
  text-align: left;
  font-weight: 700;
}
.works_works{
  margin-bottom: 200px;
  width: 80%;
  margin: 0 auto 200px;
}
@media screen and (max-width:414px) {
  .works_works{
    width: 90%;
    margin-bottom: 100px;
  } 
}
.works_works h2{
}
.works_works p{
}
.works_works h3{
  padding: 90px 0 30px;
  font-size: 20px;
  text-align: center;
}
.works_cards_personal,
.works_cards_company{
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
@media screen and (max-width:414px) {
  .works_cards_personal,
  .works_cards_company{
    flex-direction: column;
  }
}
.works_card{
  background-color: #fff;
  width: 30%;
  padding: 10px;
}
@media screen and (max-width:414px) {
  .works_card{
    width: 80%;
    margin: 0 auto 20px;
  } 
  .works_card:last-child{
    margin-bottom: 0;
  }
}
.works_card img{
  width: 90px;
  height: auto;
  margin: 0 auto;
  display: block;
  padding: 50px 0 20px;
}
.works_card h4{
  text-align: center;
  padding: 20px 0;
  font-size: 18px;
  letter-spacing: 0.4rem;
}
.works_card ul{
  list-style-position: inside
}
.works_card ul li{
  list-style: inside;
  line-height: 1.8rem;
  letter-spacing: 0.04rem;
  padding-left: 2em;
  text-indent: -1.5em;
}

/* =========office.html========= */
/* ============================ */
.office_main_visual{
  background-image: url(../img/seibu_line_sakura.jpg);
  background-image: url(../img/seibu_line_summer.jpg);
  background-image: url(../img/shakuji_green.jpg);
  background-image: url(../img/shakujii_autumn.jpg);
  background-position: bottom 30%  right 10%;
  background-position: center;
  height:50vh;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-bottom: 30px;
}
.office_main_visual::before{
  /* 透過した黒を上から重ねるイメージ */
  background-color: rgba(0,0,0,0.2);
  /* 自由に位置指定 */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: ' ';
}
.office_main_content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.office_main_content h2{
  font-size: 29px;
  color: #fff;
  letter-spacing: 0.2rem;
  text-align: center;
  line-height: 1.6rem;
}
.office_main_content h2 span{
  font-size: 16px;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.3rem;
}

.office_section h2{
  margin-bottom: 30px;
}
.office_section {
  width: 80%;
  margin: 0 auto 100px;
}
@media screen and (max-width:414px) {
  .office_section{
    width: 90%
  } 
}
.office_section th{
  font-size: 16px
}
.office_section td{
  font-size: 16px;
}
.office_section td span{
  font-size: 14px
}
.office_map{
  width: 80%;
  margin: 0 auto 200px;
}
@media screen and (max-width:414px) {
  .office_map{
    width: 90%;
    margin-bottom: 100px;
  } 
}
.office_map h2{
  margin-bottom: 30px;
}
.office_map i{
  margin-right: 10px;
}
.office_map p{
  margin-bottom: 15px;
}
.office_google_map{}
@media screen and (max-width:414px) {
  .office_google_map iframe{
    height: 30vh;
  }
}
.office_googlemap_link{
  margin-top: 5px;
}
/* =========message.html========= */
/* ============================ */

.message_main_visual{
  background-image: url(../img/sakura_lake.jpg);
  /* background-image: url(../img/sakura_sky.jpg); */
  background-position: bottom 30%  right 10%;
  height:50vh;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-bottom: 30px;
  position: relative
}
.message_main_visual::before{
  /* 透過した黒を上から重ねるイメージ */
  background-color: rgba(0,0,0,0.4);
  /* 自由に位置指定 */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: ' ';
}
.message_main_content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.message_main_content h2{
  font-size: 29px;
  color: #fff;
  letter-spacing: 0.2rem;
  text-align: center;
  line-height: 1.6rem;
}
.message_main_content h2 span{
  font-size: 16px;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.3rem;
}
.message_philosophy_section{
  width: 80%;
  margin: 0 auto;
  margin-bottom: 100px;
}
@media screen and (max-width:414px) {
  .message_philosophy_section{
    width: 90%;
  } 
}
.message_greeting_section{
  width: 80%;
  margin: 0 auto 100px;
}
@media screen and (max-width:414px) {
  .message_greeting_section{
    width: 90%;
  } 
}
.message_philosophy_section h2,
.message_greeting_section h2{
  margin-bottom: 30px;
}
.message_philosophy_section p,
.message_greeting_section p{
  font-size: 16px;
  letter-spacing: 0.05rem;
  line-height: 2rem;
  background-color: #fff;
  padding: 20px;
  border-radius: 2px
  }
.message_boss_content{
  display: flex;
  background-color: #fff;
}
@media screen and (max-width: 414px) {
  .message_boss_content{
    display: block;
  }
}
.boss_illustration img{
  margin-right: 10%;
  display: block;
}
@media screen and(max-width: 414px) {
 .boss_illustration{
   margin-right: 0;
 } 
 .office_section table th{
   font-size: 4px;
 }
}
.message_boss_content span{
  display: flex;
  justify-content: right;
}
.message_lisence_section{
  margin-bottom: 100px;
}

/* =========contact.html========= */
/* ============================ */
.contact_main_visual{
  background-image: url(../img/ume.jpg);
  background-position: bottom 30%  right 10%;
  height:50vh;
  width: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  margin-bottom: 30px;
  position: relative
}
.contact_main_visual::before{
  /* 透過した黒を上から重ねるイメージ */
  background-color: rgba(0,0,0,0.4);
  /* 自由に位置指定 */
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: ' ';
}
.contact_main_content{
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.contact_main_content h2{
  font-size: 29px;
  color: #fff;
  letter-spacing: 0.1rem;
  text-align: center;
  line-height: 1.6rem;
}
.contact_main_content h2 span{
  font-size: 16px;
  text-align: left;
  font-weight: 700;
  letter-spacing: 0.3rem;
}
.contact_form_section{
  margin-bottom: 100px;
}
#formWrap {
  width:100%;
  margin:0 auto;
  color:#555;
  line-height:120%;
  font-size:90%;

}
table.formTable{
  width:100%;
  margin:0 auto 60px;
  border-collapse:collapse;
}
table.formTable td,table.formTable th{
  border:1px solid #ccc;
  padding:10px;
}
table.formTable th{
  width:30%;
  font-weight:normal;
  background:#efefef;
  text-align:center;
}
form p{
  width: 70%;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  padding: 40px;
}
.formTable select{
  border: #CCC solid 1px;
}
.formTable input{
  border: #CCC solid 1px;
}
.formTable textarea{
  border: #CCC solid 1px;
}
p input{
  border: #CCC solid 1px;
}
form input[type="text"], form textarea {
  padding:3px;
  font-size:103%;
  display:block;
}
/*　簡易版レスポンシブ用CSS（必要最低限のみとしています。ブレークポイントも含め自由に設定下さい）　*/
@media screen and (max-width:572px) {
#formWrap {
  width:95%;
  margin:20px auto;
}
table.formTable th, table.formTable td {
  width:auto;
  display:block;
}
table.formTable th {
  border-bottom:0;
}
form input[type="text"], form textarea {
  width:100%;
  padding:10px;
  font-size:110%;
  display:block;
}
form input[type="submit"], form input[type="reset"], form input[type="button"] {
  display:block;
  width:100%;
  height:45px;
}
select{
  width: 100%;
}
}

@media screen and (max-width:414px) {
  form p{
    width: 100%;
  } 
}
p input{
  width: 30%;
  height: 50px
}
