@charset "UTF-8";
/* Scss Document */
@import url(http://fonts.googleapis.com/earlyaccess/notosansjp.css);
* {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
}

*, *:before, *:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

html {
  width: 100%;
  height: 100%;
}

body {
  width: 100%;
  font-family: "Hiragino Sans", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  background: #fff;
  color: #000;
  font-size: 14px;
  line-height: 1.9;
  letter-spacing: 0.08em;
  font-feature-settings: "palt";
  -webkit-font-smoothing: antialiased;
  font-smoothing: antialiased;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

ul li {
  list-style: none;
}

img {
  vertical-align: top;
  width: 100%;
}

a {
  color: #000;
  text-decoration: none;
  transition: all 300ms 0s ease;
}

h1, h2, h3, h4, h5, h6, h7, h8 {
  font-weight: normal;
}

h2 {
  font-family: 'Staatliches', cursive;
  font-size: 2.8em;
  line-height: 1.1;
  text-align: center;
  margin-bottom: 30px;
}
h2 span {
  font-size: .4em;
  letter-spacing: .1em;
  display: block;
  padding-top: 10px;
  font-weight: 600;
}

.pc_block, .sp_none {
  display: none;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  h2 {
    font-size: 75px;
    line-height: 70px;
    margin-bottom: 50px;
  }
  h2 span {
    font-size: 18px;
    padding-top: 20px;
    line-height: 1;
  }

  .pc_none {
    display: none;
  }

  .pc_block, .sp_none {
    display: block;
  }
}
/* clearfix
-------------- */
.clearfix:after {
  content: " ";
  display: block;
  clear: both;
}

.pc_block {
  display: none;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  .pc_none {
    display: none;
  }

  .pc_block {
    display: block;
  }
}
/* ページ読み込み後、ふわっと表示
--------------------------- */
body.fadeIn_body {
  animation: fadeInbody 2s ease 0s 1 normal;
  -webkit-animation: fadeInbody 2s ease 0s 1 normal;
}

@keyframes fadeInbody {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeInbody {
  0% {
    opacity: 0;
  }
  30% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/* ---------------------------------------------------
 drawer menu
--------------------------------------------------- */
.drawer-menu {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #fff;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .5s;
  transition-duration: .5s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: translateX(-400px);
  -ms-transform: translateX(-400px);
  transform: translateX(-400px);
  opacity: 0;
}
.drawer-menu ul {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.drawer-menu li {
  padding: 0 10%;
  text-align: center;
  margin-bottom: 10px;
}
.drawer-menu li a {
  display: block;
  height: 40px;
  line-height: 40px;
  font-weight: 600;
  color: #0090eb;
}
.drawer-menu li.menu a {
  font-size: 1.2em;
}

.menu-btn {
  position: fixed;
  display: block;
  top: 35px;
  left: 5%;
  width: 30px;
  height: 30px;
  text-align: center;
  cursor: pointer;
  z-index: 9999;
}

.bar {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 30px;
  height: 4px;
  background: #0090eb;
  -webkit-transition: all .5s;
  transition: all .5s;
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.bar.middle {
  top: 11px;
  opacity: 1;
}
.bar.bottom {
  top: 22px;
  -webkit-transform-origin: left bottom;
  -ms-transform-origin: left bottom;
  transform-origin: left bottom;
}

.check {
  display: none;
}
.check:checked ~ .drawer-menu {
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  opacity: 1;
  z-index: 4;
}
.check:checked ~ .menu-btn .menu-btn__text {
  visibility: hidden;
  opacity: 0;
}
.check:checked ~ .menu-btn .bar.top {
  width: 37px;
  background-color: #0090eb !important;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}
.check:checked ~ .menu-btn .bar.middle {
  opacity: 0;
}
.check:checked ~ .menu-btn .bar.bottom {
  width: 37px;
  top: 25px;
  background-color: #0090eb !important;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.check:checked ~ .close-menu {
  background: rgba(0, 0, 0, 0.5);
  visibility: visible;
  opacity: 1;
  z-index: 3;
}

.close-menu {
  position: fixed;
  top: 0px;
  right: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, 0);
  cursor: url(http://theorthodoxworks.com/demo/images/cross.svg), auto;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-duration: .3s;
  transition-duration: .3s;
  -webkit-transition-delay: 0s;
  transition-delay: 0s;
  visibility: hidden;
  opacity: 0;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  .side_navigation {
    display: none;
  }
}
/* -------------------------------------------------------------
 Header / Footer / 応募フォームボタン
------------------------------------------------------------- */
/* Header */
.pc_header {
  display: none;
}
.pc_header .logo {
  width: 100px;
  position: absolute;
  top: 24px;
  left: 5%;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  .pc_header {
    display: block;
  }
  .pc_header .logo {
    width: 126px;
    top: 43px;
    left: 60px;
  }
  .pc_header ul {
    display: block;
    position: absolute;
    top: 44px;
    right: 200px;
    text-align: right;
  }
  .pc_header ul li {
    display: inline-block;
    margin-left: 20px;
  }
  .pc_header ul li.no_link {
    font-weight: 600;
    line-height: 28px;
    display: inline-block;
    vertical-align: middle;
    color: #0090eb;
    border-bottom: 2px solid #0090eb;
  }
  .pc_header ul li a {
    font-weight: 600;
    line-height: 30px;
    display: inline-block;
    vertical-align: middle;
    -webkit-transform: perspective(1px) translateZ(0);
    transform: perspective(1px) translateZ(0);
    position: relative;
    overflow: hidden;
    color: #0090eb;
  }
  .pc_header ul li a:before {
    content: "";
    position: absolute;
    z-index: -1;
    left: 51%;
    right: 51%;
    bottom: 0;
    background: #0090eb;
    height: 2px;
    -webkit-transition-property: left, right;
    transition-property: left, right;
    -webkit-transition-duration: 0.3s;
    transition-duration: 0.3s;
    -webkit-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }
  .pc_header ul li a:hover:before, .pc_header ul li a:focus:before, .pc_header ul li a:active:before {
    left: 0;
    right: 0;
  }
}
/* Footer */
footer {
  color: #000;
  font-size: .8em;
  text-align: center;
  width: 100%;
  padding: 40px 0;
  letter-spacing: 0.01em;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  footer {
    font-size: 10px;
  }
}
/* 応募フォームボタン */
.application_fix_btn a {
  background: #0090eb;
  color: #fff;
  font-weight: 600;
  text-align: center;
  display: block;
  position: fixed;
  top: 20px;
  right: 5%;
  border-radius: 5px;
  padding: 15px;
  filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.2));
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  .application_fix_btn a {
    top: 30px;
    right: 30px;
    width: 135px;
    padding: 15px 20px;
    display: inline-block;
    vertical-align: middle;
    transition-duration: 0.3s;
  }
  .application_fix_btn a:hover {
    color: #0090eb;
    background: #deff00;
  }
}
.common_container {
  width: 100%;
  padding: 50px 5%;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  .common_container {
    width: 1120px;
    padding: 0 60px;
    margin: 140px auto;
  }
}
/* ボタンのベースデザイン */
.btn a {
  width: 200px;
  color: #fff;
  background: #0090eb;
  text-align: center;
  display: block;
  border-radius: 5px;
  font-size: 1.1em;
  font-weight: 600;
  padding: 15px 0;
  transition-duration: 0.3s;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  .btn a:hover {
    color: #0090eb;
    background: #deff00;
  }
}
/* -------------------------------------------------------------
 Main 
------------------------------------------------------------- */
#main_container {
  width: 100%;
  height: 100%;
  position: relative;
}
#main_container .bg_movie .sp {
  padding: 150.24% 0 0 0;
  position: relative;
  background: url("../images/movie_bgimg_sp.png") no-repeat center center/contain;
}
#main_container .bg_movie .pc {
  display: none;
}
#main_container .main_tx {
  position: absolute;
  top: 55%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  text-align: center;
}
#main_container .main_tx h1 {
  width: 260px;
  display: inline-block;
}
#main_container .main_tx .date_content {
  width: 100%;
  color: #fff;
  text-align: center;
  margin-top: 30px;
}
#main_container .main_tx .date_content .label {
  letter-spacing: .3em;
}
#main_container .main_tx .date_content .date {
  font-family: 'Staatliches', cursive;
  font-size: 2.2em;
}
#main_container .main_tx .date_content .date span {
  font-size: .7em;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  #main_container .bg_movie .sp {
    display: none;
  }
  #main_container .bg_movie .pc {
    display: block;
    padding: 56.25% 0 0 0;
    background: url("../images/movie_bgimg_pc.png") no-repeat center center/contain;
  }
  #main_container .main_tx {
    top: 52%;
  }
  #main_container .main_tx h1 {
    width: 46%;
  }
  #main_container .main_tx .date_content {
    margin-top: 30px;
  }
  #main_container .main_tx .date_content .date {
    font-size: 35px;
  }
}
/* -------------------------------------------------------------
 About 
------------------------------------------------------------- */
#about_container .about_title_jpn {
  display: none;
}
#about_container h2.about_title {
  letter-spacing: 0.01em;
}
#about_container .tutorial_slider_content {
  width: 100%;
  margin: 30px 0;
}
#about_container .tutorial_slider_content ul.tutorial_slider li {
  margin-right: 10px;
}
#about_container .tutorial_slider_content ul.tutorial_thumbnail {
  display: none;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  #about_container .common_container {
    height: 560px;
    position: relative;
  }
  #about_container h2.about_title,
  #about_container .about_title_jpn,
  #about_container .about_tx_01,
  #about_container .about_tx_02 {
    width: 400px;
    position: absolute;
    right: 60px;
  }
  #about_container h2.about_title {
    padding-bottom: 0;
    top: 0;
    text-align: left;
    font-size: 50px;
    line-height: 1;
  }
  #about_container .about_title_jpn {
    display: block;
    top: 170px;
    font-weight: 600;
    font-size: 1.2em;
  }
  #about_container .about_tx_01 {
    top: 250px;
  }
  #about_container .about_tx_02 {
    top: 360px;
  }
  #about_container .tutorial_slider_content {
    width: 500px;
    height: 560px;
    margin: 0;
    position: absolute;
    top: 0;
    left: 60px;
  }
  #about_container .tutorial_slider_content ul.tutorial_slider {
    width: 400px;
    height: 560px;
    position: absolute;
    top: 0;
    left: 0;
  }
  #about_container .tutorial_slider_content ul.tutorial_slider li {
    margin-right: 0;
  }
  #about_container .tutorial_slider_content ul.tutorial_thumbnail {
    display: block;
    width: 80px;
    position: absolute;
    top: 60px;
    left: 425px;
  }
  #about_container .tutorial_slider_content ul.tutorial_thumbnail li {
    display: block;
    width: 80px !important;
    margin-bottom: 10px;
    transition-duration: 0.2s;
  }
  #about_container .tutorial_slider_content ul.tutorial_thumbnail li:hover {
    cursor: pointer;
    opacity: .7;
  }
}
/* -------------------------------------------------------------
 IDEAS WANTED 
------------------------------------------------------------- */
#ideas_wanted_container h2 {
  color: #0090eb;
}
#ideas_wanted_container .box1 {
  border: 8px solid #0090eb;
  border-radius: 15px;
  width: 100%;
  padding: 40px 30px;
  text-align: center;
}
#ideas_wanted_container .box1 .theme {
  font-size: 1.6em;
  font-weight: 600;
  color: #0090eb;
  padding-bottom: 10px;
}
#ideas_wanted_container .box1 p {
  text-align: left;
  font-size: 1.2em;
}
#ideas_wanted_container .box1 .btn a {
  margin: 20px auto 0;
}
#ideas_wanted_container .others_tx {
  font-size: 1.2em;
  font-weight: 600;
  text-align: center;
  margin: 50px 0 15px;
}
#ideas_wanted_container .box2_content .box2 {
  border: 1px solid #ccc;
  border-radius: 15px;
  width: 100%;
  padding: 40px;
  text-align: center;
  margin-bottom: 15px;
}
#ideas_wanted_container .box2_content .box2 .theme {
  font-size: 1.1em;
  color: #0090eb;
  padding-bottom: 10px;
}
#ideas_wanted_container .box2_content .box2 p {
  text-align: left;
  font-size: .9em;
}
#ideas_wanted_container .box2_content .box2 .btn a {
  margin: 20px auto 0;
  font-size: 1em;
  padding: 10px 0;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  #ideas_wanted_container .box1 {
    border: 12px solid #0090eb;
    border-radius: 20px;
    padding: 50px;
  }
  #ideas_wanted_container .box1 .theme {
    font-size: 2.2em;
    padding-bottom: 10px;
  }
  #ideas_wanted_container .box1 p {
    text-align: center;
  }
  #ideas_wanted_container .box1 .btn a {
    margin: 40px auto 0;
  }
  #ideas_wanted_container .others_tx {
    font-size: 1.4em;
    margin: 50px 0 20px;
  }
  #ideas_wanted_container .box2_content {
    display: flex;
  }
  #ideas_wanted_container .box2_content .box2 {
    border-radius: 20px;
    padding: 35px 60px;
    margin-bottom: 0;
  }
  #ideas_wanted_container .box2_content .box2:last-child {
    margin-left: 20px;
  }
  #ideas_wanted_container .box2_content .box2 .theme {
    font-size: 1.2em;
    font-weight: 600;
  }
}
/* -------------------------------------------------------------
 Flow 応募からの流れ 
------------------------------------------------------------- */
#flow_container h2 {
  color: #00af0c;
}
#flow_container h2 span {
  color: #000;
}
#flow_container .flow_img {
  width: 100%;
  height: 0;
  padding-top: 180%;
  background: url("../images/flow_img_sp.png") no-repeat center center/cover;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  #flow_container .flow_img {
    padding-top: 24%;
    background: url("../images/flow_img_pc.png") no-repeat center center/cover;
  }
}
/* -------------------------------------------------------------
 応募要項
------------------------------------------------------------- */
#essential_point_container .in_container {
  padding: 20px 8%;
  background: url("../images/memo_center.png") repeat-y;
  background-size: contain;
}
#essential_point_container .in_container h3 {
  font-size: 1.4em;
  letter-spacing: 0.2em;
  text-align: center;
}
#essential_point_container .in_container h4 {
  margin: 35px 0 15px;
}
#essential_point_container .in_container h4 .tx {
  font-size: 1.2em;
  padding: 0 8px;
}
#essential_point_container .in_container h4 .underline {
  background-color: #e8e8e8;
  width: 7em;
  height: 14px;
  margin-top: -14px;
}
#essential_point_container .in_container ul.qualification_list {
  margin: 0 20px;
}
#essential_point_container .in_container ul.qualification_list li {
  list-style-type: circle;
}
#essential_point_container .in_container .year_schedule {
  width: 100%;
  padding-left: 15px;
  border-left: 1px solid #999;
  font-size: .8em;
  margin-top: 15px;
}
#essential_point_container .in_container .year_schedule ul {
  margin-top: 10px;
}
#essential_point_container .in_container .year_schedule ul li span {
  text-decoration: line-through;
}
#essential_point_container .in_container .apply_content {
  padding-top: 40px;
  margin-top: 50px;
  border-top: 1px solid #999;
  /* 応募フォームボタン */
}
#essential_point_container .in_container .apply_content .application_btn a {
  font-size: 1.2em;
  margin: 20px auto 0;
}
#essential_point_container a.download {
  color: #0090eb;
  text-decoration: underline;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  #essential_point_container img.memo_top,
  #essential_point_container img.memo_bottom {
    width: 858px;
    display: block;
    margin: 0 auto;
  }
  #essential_point_container .in_container {
    width: 858px;
    margin: 0 auto;
    padding: 0 125px 40px 125px;
  }
  #essential_point_container .in_container h3 {
    font-size: 30px;
  }
  #essential_point_container .in_container h4 {
    margin: 55px 0 15px;
  }
  #essential_point_container .in_container h4 .tx {
    font-size: 1.6em;
  }
  #essential_point_container .in_container h4 .underline {
    width: 105px;
    height: 18px;
    margin-top: -20px;
  }
  #essential_point_container .in_container ul.qualification_list {
    margin: 0 20px;
  }
  #essential_point_container .in_container ul.qualification_list li {
    list-style-type: circle;
  }
  #essential_point_container .in_container .apply_content {
    padding-top: 60px;
    margin-top: 70px;
    /* 応募フォームボタン */
  }
  #essential_point_container .in_container .apply_content .application_btn a {
    width: 350px;
    padding: 20px 0;
    margin: 30px auto 0;
  }
}
/* -------------------------------------------------------------
-------------------------------------------------------------

　下層ページ

-------------------------------------------------------------
------------------------------------------------------------- */
/* 下層ページ　共通CSS */
h1.page_title {
  text-align: center;
  margin: 120px 0 30px;
  letter-spacing: 0.04em;
}
h1.page_title .jpn {
  font-size: 2.4em;
  line-height: 1.4;
}
h1.page_title .eng {
  font-family: 'Staatliches', cursive;
  font-size: 1.4em;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  h1.page_title {
    margin: 170px 0 80px;
  }
  h1.page_title .jpn {
    font-size: 3.8em;
  }
  h1.page_title .eng {
    font-size: 1.6em;
  }
}
.sub_container {
  width: 90%;
  margin: 0 auto;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  .sub_container {
    width: 980px;
    padding: 0 60px;
  }
}
.past_cases_content {
  width: 100%;
  padding: 50px 0 60px;
  margin: 50px 0;
  background: #eee;
}
.past_cases_content .in_past_cases_box .title {
  color: #0090eb;
  font-size: 1.4em;
  line-height: 1.4;
  border-left: 6px solid #0090eb;
  padding-left: 10px;
  margin-bottom: 30px;
}
.past_cases_content .in_past_cases_box .midashi {
  font-size: 1.2em;
  font-weight: 600;
  margin-bottom: 10px;
}
.past_cases_content .in_past_cases_box .detail_tx {
  margin-bottom: 20px;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  .past_cases_content {
    padding: 100px 0;
    margin: 100px 0;
  }
  .past_cases_content .in_past_cases_box .right {
    width: 385px;
    float: right;
  }
  .past_cases_content .in_past_cases_box .left {
    width: 435px;
    float: left;
  }
  .past_cases_content .in_past_cases_box .title {
    font-size: 2em;
    border-left: 9px solid #0090eb;
  }
}
/* -- 「新規事業アイデア」ページ（new.html） -- */
@media only screen and (min-width: 769px) {
  /* Laptop PC */
  .new_introTx {
    text-align: center;
  }
}
/* -- 「働くのプラス改革」ページ（work.html）-- */
.work_introTx .tx .point {
  font-size: 1.2em;
  font-weight: 600;
  border-bottom: 2px solid #0090eb;
}
.work_introTx .tx .point.point1 {
  margin: 25px 0 20px;
}
.work_introTx .tx .point.point2 {
  margin: 0 0 30px;
}
.work_introTx .img {
  margin-top: 20px;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  .work_introTx .tx {
    width: 385px;
    float: right;
  }
  .work_introTx .tx .point {
    font-size: 1.2em;
    font-weight: 600;
    border-bottom: 2px solid #0090eb;
  }
  .work_introTx .tx .point.point1 {
    margin: 25px 0 20px;
  }
  .work_introTx .tx .point.point2 {
    margin: 0 0 30px;
  }
  .work_introTx .img {
    width: 400px;
    float: left;
    margin-top: 0;
  }
}
/* --「町おこし」ページ（town.html）-- */
.town_main_img {
  width: 100%;
  margin-bottom: 40px;
}

.town_introTx .left .midashi {
  font-size: 1.4em;
  padding-bottom: 20px;
}
.town_introTx .left .link {
  margin-top: 20px;
}
.town_introTx .left .link a {
  color: #0090eb;
  text-decoration: underline;
  padding: 5px 0;
  display: block;
}
.town_introTx .right {
  margin: 20px 0 80px;
}
.town_introTx .right img {
  display: block;
  float: left;
  width: 31.3%;
  margin-right: 2%;
}
.town_introTx .right img:nth-child(1), .town_introTx .right img:nth-child(2), .town_introTx .right img:nth-child(3) {
  margin-bottom: 7px;
}

@media only screen and (min-width: 769px) {
  /* Laptop PC */
  .town_main_img {
    width: 1100px;
    margin: 0 auto 80px;
  }

  .town_introTx {
    margin-bottom: 110px;
  }
  .town_introTx .left {
    width: 445px;
    float: left;
  }
  .town_introTx .left .midashi {
    font-size: 2em;
    line-height: 1.5;
    padding-bottom: 40px;
  }
  .town_introTx .left .link a {
    padding: 0;
  }
  .town_introTx .right {
    width: 357px;
    float: right;
    margin: 130px 0 0;
  }
  .town_introTx .right img {
    width: 174px;
    margin-right: 8px;
    margin-bottom: 7px;
  }
  .town_introTx .right img:nth-child(even) {
    margin-right: 0;
  }
}


.fin{
  width: 200px;
  color: #0090eb;
  background: #fff;
  border: 1px solid #0090eb;
  text-align: center;
  border-radius: 5px;
  padding: 15px 0;
  margin: 30px auto 0;
}