@charset "UTF-8";
/*************************************
	header
*************************************/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  z-index: 100;
  background-color: #fff;
  box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
  -moz-box-shadow: 0px 1px 1px 0px rgba(0, 0, 0, 0.1);
}
header div.init {
  margin: 0 auto;
  max-width: 1080px;
  height: inherit;
  display: table;
  width: 100%;
}
header h1 {
  margin: 0 auto;
  position: relative;
  z-index: 1;
  display: table-cell;
  vertical-align: middle;
}
header h1 > a {
  display: block;
}
@media screen and (min-width: 768px) {
  header.sticky.fix {
    position: relative;
  }
  header h1 > a {
    text-align: center;
  }
  header div.init {
    display: table;
    width: 100%;
  }
  header div.init nav.na-content {
    display: table-cell;
    vertical-align: middle;
  }
}
@media screen and (max-width: 767px) {
  header h1 {
    background-color: #fff;
    padding-left: 10px;
  }
  header h1 > a {
    text-align: left;
  }
}

/*************************************
	.nav-content
*************************************/
.nav-content {
  position: absolute;
  top: -1000%;
  right: 50%;
  z-index: -1;
  width: 100%;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
}
.nav-content ul {
  background: #ffffff;
}
.nav-content ul li {
  padding: 0 0.5em;
  text-align: center;
}
.nav-content ul li:hover:hover, .nav-content ul li:hover:hover * {
  opacity: 0.7;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.nav-content ul li:hover a {
  opacity: 1;
  color: #62a237;
}
.nav-content ul li a {
  display: block;
  text-align: center;
  line-height: 1.4;
  color: #3e3a39;
  font-size: 14px;
  white-space: nowrap;
}
.nav-content ul li.gn {
  background-color: #62a237;
}
.nav-content ul li.gn > a {
  color: #fff;
}
@media screen and (min-width: 768px) {
  .nav-content ul {
    height: 60px;
  }
  .nav-content ul li {
    position: relative;
  }
  .nav-content ul li::before {
    position: absolute;
    bottom: 0;
    left: 50%;
    display: block;
    width: 0;
    height: 4px;
    background-color: #62a237;
    content: "";
    -webkit-transition: all 200ms 0s ease;
    transition: all 200ms 0s ease;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
  }
  .nav-content ul li:hover::before {
    width: 50%;
  }
}
@media screen and (max-width: 767px) {
  .nav-content {
    visibility: hidden;
  }
  .nav-content ul li a {
    font-size: 16px;
    height: 60px;
    line-height: 60px;
  }
}

/*************************************
	.menu-button
*************************************/
.menu-button {
  padding-bottom: 10px;
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  z-index: 1;
  width: 50px;
  height: 50px;
  background-color: #fff;
  box-sizing: border-box;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.menu-button:hover, .menu-button:hover * {
  opacity: 0.7;
  -webkit-transition: all 0.25s;
  transition: all 0.25s;
}
.menu-button::before {
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 100%;
  text-align: center;
  line-height: 1.4;
  font-size: 80%;
  content: "MENU";
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
}
.menu-button i {
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 70%;
  height: 2px;
  border-radius: 3px;
  background: #3e3a39;
  -webkit-transition: background 0.5s;
  transition: background 0.5s;
  position: relative;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.menu-button i:before, .menu-button i:after {
  content: "";
  display: block;
  width: 100%;
  height: inherit;
  border-radius: 3px;
  background: #3e3a39;
  position: absolute;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: all 0.3s !important;
  transition: all 0.3s !important;
}
.menu-button i:before {
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
}
.menu-button i:after {
  -webkit-transform: translateY(-10px);
  -ms-transform: translateY(-10px);
  transform: translateY(-10px);
}

/*************************************
	ナビ展開時(.is-open)
*************************************/
.is-open .nav-content {
  visibility: visible;
  top: 60px;
  transition: top 150ms ease-out 0ms;
  -webkit-transition: top 150ms ease-out 0ms;
}
.is-open .nav-content ul li {
  border-top: solid 1px #ddd;
}
.is-open .menu-button i {
  background: none;
}
.is-open .menu-button i:after {
  -webkit-transform: translateY(0px) rotate(-45deg);
  -ms-transform: translateY(0px) rotate(-45deg);
  transform: translateY(0px) rotate(-45deg);
}
.is-open .menu-button i:before {
  -webkit-transform: translateY(0px) rotate(45deg);
  -ms-transform: translateY(0px) rotate(45deg);
  transform: translateY(0px) rotate(45deg);
}

/*************************************
	ナビ展開時のマスク設定
*************************************/
body::after {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0;
  visibility: hidden;
  -webkit-transition: all 200ms 0s ease;
  transition: all 200ms 0s ease;
  content: "";
}
@media screen and (min-width: 768px) {
  body.nonAccordionPc::after {
    display: none;
  }
}
@media screen and (max-width: 767px) {
  body.menu-open {
    position: relative;
    height: 100%;
    overflow: hidden;
  }
  body.menu-open::after {
    visibility: visible;
    opacity: 0.5;
  }
}

/*************************************
	グロナビの非アコーディオン化(pc専用)
*************************************/
@media screen and (min-width: 768px) {
  .nonAccordionPc header h1 > a {
    position: static;
    transform: none;
  }
  .nonAccordionPc header .nav-content {
    position: static;
    transform: none;
    display: table-cell;
    vertical-align: middle;
    width: auto;
  }
  .nonAccordionPc header .nav-content ul {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    width: 100%;
  }
  .nonAccordionPc header .nav-content ul li {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-grow: 1;
  }
  .nonAccordionPc header .nav-content ul li a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
  }
  .nonAccordionPc header .nav-content ul li:nth-last-child(2) {
    padding-right: 1.5em;
  }
  .nonAccordionPc header .menu-button {
    position: static;
    transform: none;
    display: none;
  }
}

a:hover {
  opacity: 0.8;
}

ul#pager {
  padding: 8px 0;
  position: fixed;
  bottom: 50%;
  z-index: 1;
  line-height: 1;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.1);
  box-shadow: 0px 0px 2px 0px #fff;
  overflow: hidden;
  -webkit-transition: all 400ms 0s ease;
  transition: all 400ms 0s ease;
  -webkit-transform: translateY(50%);
  -ms-transform: translateY(50%);
  transform: translateY(50%);
}
ul#pager li {
  float: left;
  display: inline-block;
}
ul#pager li a {
  position: relative;
  border-radius: 50%;
  display: block;
  text-indent: 1000%;
  white-space: nowrap;
  overflow: hidden;
}
ul#pager li a::before {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  display: block;
  width: inherit;
  height: inherit;
  background: rgba(255, 255, 255, 0.8);
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: "";
}
ul#pager li.is-show a {
  -webkit-transform: scale(0.9, 0.9);
  -ms-transform: scale(0.9, 0.9);
  transform: scale(0.9, 0.9);
}
ul#pager li.is-show a::before {
  background: rgba(51, 51, 51, 0.4);
}
@media screen and (min-width: 768px) {
  ul#pager {
    right: 1vw;
    width: 20px;
  }
  ul#pager li a {
    padding: 5px;
    width: 10px;
    height: 10px;
  }
}
@media screen and (max-width: 767px) {
  ul#pager {
    right: 1.5vw;
    width: 3.935vw;
  }
  ul#pager li a {
    padding: 1vw;
    width: 1.935vw;
    height: 1.935vw;
  }
}

main.top {
  display: block;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
  z-index: 1;
}
main.top ul#fullScreenView {
  -webkit-font-smoothing: antialiased;
  font-weight: bold;
}
main.top ul#fullScreenView > li {
  box-sizing: border-box;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-repeat: no-repeat;
  display: table;
  width: 100%;
}
main.top ul#fullScreenView > li div.catch > p {
  display: inline-block;
}
main.top ul#fullScreenView > li:last-child {
  margin-bottom: 0;
}
main.top ul#fullScreenView > li > div.init {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
main.top ul#fullScreenView > li > div.init > div.pos {
  position: relative;
  height: 100%;
}
@media screen and (min-width: 768px) {
  main.top ul#fullScreenView > li#page1 {
    background-image: url(../../img/top/fullView/bg1_pc.jpg);
  }
}
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li#page1 {
    background-image: url(../../img/top/fullView/bg1_sp.jpg);
  }
}
@media screen and (min-width: 768px) {
  main.top ul#fullScreenView > li#page3 {
    background-image: url(../../img/top/fullView/bg3_pc.jpg);
  }
}
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li#page3 {
    background-image: url(../../img/top/fullView/bg3_sp.jpg);
    background-color: #95c078;
  }
}
@media screen and (min-width: 768px) {
  main.top ul#fullScreenView > li#page4 {
    background-image: url(../../img/top/fullView/bg4_pc.jpg);
  }
}
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li#page4 {
    background-image: url(../../img/top/fullView/bg4_sp.jpg);
    background-color: #314f2b;
  }
}
@media screen and (min-width: 768px) {
  main.top ul#fullScreenView > li#page5 {
    background-image: url(../../img/top/fullView/bg5_pc.jpg);
  }
}
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li#page5 {
    background-image: url(../../img/top/fullView/bg5_sp.jpg);
    background-color: #b3b3b3;
  }
}
@media screen and (min-width: 768px) {
  main.top ul#fullScreenView > li#page6 {
    background-image: url(../../img/top/fullView/bg6_pc.jpg);
  }
}
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li#page6 {
    background-image: url(../../img/top/fullView/bg6_sp.jpg);
    background-color: #63a237;
  }
}
@media screen and (min-width: 768px) {
  main.top ul#fullScreenView > li#page7 {
    background-image: url(../../img/top/fullView/bg7_pc.jpg);
  }
}
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li#page7 {
    background-image: url(../../img/top/fullView/bg7_sp.jpg);
    background-color: #64b383;
  }
}
@media screen and (min-width: 768px) {
  main.top ul#fullScreenView > li {
    background-position: 50% 0%;
    background-size: cover;
  }
  main.top ul#fullScreenView > li#page1 {
    background-position-y: 50%;
  }
}
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li {
    background-position: 50% 50%;
    background-size: 100% auto;
  }
  main.top ul#fullScreenView > li#page1 {
    background-position-y: 100%;
  }
}
main.top ul#fullScreenView > li div.gather {
  margin: 0 auto;
  padding: 2vw 0;
  width: calc(100% - 13vw);
}
main.top ul#fullScreenView > li div.gather div.catch {
  font-weight: bold;
  font-family: 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
}
main.top ul#fullScreenView > li div.gather div.catch > p {
  line-height: 1;
  display: inline-block;
}
main.top ul#fullScreenView > li div.gather h2 > div.ja {
  color: #fff;
  font-weight: bold;
  line-height: 1;
  font-family: "游ゴシック", YuGothic, sans-serif;
  font-size: 13px;
  line-height: 1;
}
@media all and (-ms-high-contrast: none) {
  main.top ul#fullScreenView > li div.gather h2 > div.ja {
    font-family: sans-serif;
  }
}
@media screen and (min-width: 768px) {
  main.top ul#fullScreenView > li div.gather h2 > div.ja {
    font-size: 13px;
    font-size: 1.206779661vw;
  }
}
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li div.gather h2 > div.ja {
    font-size: 13px;
    font-size: 3.813559322vw;
  }
}
@media screen and (min-width: 768px) {
  main.top ul#fullScreenView > li div.gather h2 > div.ja {
    margin-top: 1em;
  }
}
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li div.gather h2 > div.ja {
    margin-top: 0.5em;
  }
}
main.top ul#fullScreenView > li div.gather h2 a.linkInfo {
  margin-right: 0;
  margin-left: auto;
  margin-top: -1em;
  margin-bottom: -1em;
  padding: 1em 0;
  display: block;
  color: #62a237;
  font-family: "游ゴシック", YuGothic, sans-serif;
  font-size: 15px;
  line-height: 1;
}
@media all and (-ms-high-contrast: none) {
  main.top ul#fullScreenView > li div.gather h2 a.linkInfo {
    font-family: sans-serif;
  }
}
@media screen and (min-width: 768px) {
  main.top ul#fullScreenView > li div.gather h2 a.linkInfo {
    font-size: 15px;
    font-size: 1.3924380704vw;
  }
}
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li div.gather h2 a.linkInfo {
    font-size: 15px;
    font-size: 4.4002607562vw;
  }
}
main.top ul#fullScreenView > li div.gather h2 a.linkInfo::before {
  margin-right: 0.5em;
  display: inline-block;
  background: url(../../img/top/more_arrow.svg) 50% 50%/100% 100% no-repeat;
  content: "";
}
@media screen and (min-width: 768px) {
  main.top ul#fullScreenView > li div.gather h2 a.linkInfo {
    width: 5.74vw;
  }
  main.top ul#fullScreenView > li div.gather h2 a.linkInfo::before {
    width: 0.74vw;
    height: 1.11vw;
  }
}
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li div.gather h2 a.linkInfo {
    width: 18vw;
    min-width: 42px;
  }
  main.top ul#fullScreenView > li div.gather h2 a.linkInfo::before {
    width: 1.875vw;
    min-width: 6px;
    height: 2.65625vw;
    min-height: 8.5px;
    margin-bottom: 0.4vw;
  }
}
main.top ul#fullScreenView > li div.gather ul.infoList {
  margin: 0 auto;
}
main.top ul#fullScreenView > li div.gather ul.infoList li {
  padding: 0.5em 0;
  text-align: left;
  background: -moz-linear-gradient(left, #62a237 1px, transparent 1px);
  background: -webkit-linear-gradient(left, #62a237 1px, transparent 1px);
  background: linear-gradient(to right, #62a237 1px, transparent 1px);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000', endColorstr='#62a237',GradientType=1 );
  background-size: 5px 1px;
  background-position: 0% 100%;
  background-repeat: repeat-x;
  font-family: "游ゴシック", YuGothic, sans-serif;
  font-size: 14px;
  line-height: 1.8;
}

@media all and (-ms-high-contrast: none) {
  main.top ul#fullScreenView > li div.gather ul.infoList li {
    font-family: sans-serif;
  }
}

@media screen and (min-width: 768px) {
  main.top ul#fullScreenView > li div.gather ul.infoList li {
    font-size: 1.2996088657vw;
  }
}

/* 画面幅が767px以下の場合 */
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li div.gather ul.infoList li {
    font-size: 4.1069100391vw;
  }
}

@media screen and (min-width: 768px) and (max-height: 65.74vw) {
  main.top ul#fullScreenView > li div.gather ul.infoList li {
    font-size: 1.9556714472vh;
  }
}

main.top ul#fullScreenView > li div.gather ul.infoList li a {
  display: block;
}
main.top ul#fullScreenView > li div.gather ul.infoList li a p {
  font-weight: normal;
}
main.top ul#fullScreenView > li div.gather ul.infoList li a p.date {
  display: inline-block;
  margin-right: 1em;
  font-weight: bold;
}
main.top ul#fullScreenView > li div.gather ul.infoList li a p.desc {
  max-height: 1.75em;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  main.top ul#fullScreenView > li div.gather ul.infoList {
    margin-top: 2vw;
    max-width: 68vw;
  }
  main.top ul#fullScreenView > li div.gather ul.infoList li a {
    display: flex;
  }
  main.top ul#fullScreenView > li div.gather ul.infoList li:first-child a::after {
    margin-left: 1em;
    display: inline;
    color: #f76e43;
    content: "NEW";
  }
}
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li div.gather ul.infoList {
    margin-top: 2vw;
  }
  main.top ul#fullScreenView > li div.gather ul.infoList li {
    overflow: hidden;
  }
  main.top ul#fullScreenView > li div.gather ul.infoList li p {
    display: block;
  }
  main.top ul#fullScreenView > li div.gather ul.infoList li:first-child p.date::after {
    float: right;
    margin-left: 0.5em;
    display: inline;
    color: #f76e43;
    content: "NEW";
  }
}
@media screen and (max-width: 767px) and (max-height: 811px) {
  main.top ul#fullScreenView > li div.gather ul.infoList li:nth-child(n + 5) {
    display: none;
  }
}

main.top ul#fullScreenView > li div.gather div.message {
  margin-top: 1em;
  color: #fff;
  font-weight: normal;
  font-size: 37px;
  line-height: 1.4;
  font-family: "游ゴシック", YuGothic, sans-serif;
}
@media screen and (min-width: 768px) {
  main.top ul#fullScreenView > li div.gather div.message {
    font-size: 3.4346805737vw;
  }
}
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li div.gather div.message {
    font-size: 5.7887874837vw;
  }
}
@media all and (-ms-high-contrast: none) {
  main.top ul#fullScreenView > li div.gather div.message {
    font-family: sans-serif;
  }
}
main.top ul#fullScreenView > li div.gather div.message div.author {
  display: block;
  margin-top: 1em;
  font-size: 18px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  main.top ul#fullScreenView > li div.gather div.message div.author {
    font-size: 1.6709256845vw;
  }
}
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li div.gather div.message div.author {
    font-size: 4.1069100391vw;
  }
}
main.top ul#fullScreenView > li div.gather div.message > p {
  display: inline-block;
}
main.top ul#fullScreenView > li div.gather table.company {
  margin: 0 auto;
  color: #fff;
  width: auto;
  background: -moz-linear-gradient(left, #fff 2px, transparent 2px);
  background: -webkit-linear-gradient(left, #fff 2px, transparent 2px);
  background: linear-gradient(to right, #fff 2px, transparent 2px);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000', endColorstr='#fff',GradientType=1 );
  background-size: 5px 2px;
  background-position: 0% 0%;
  background-repeat: repeat-x;
}
main.top ul#fullScreenView > li div.gather table.company tr {
  background: -moz-linear-gradient(left, #fff 2px, transparent 2px);
  background: -webkit-linear-gradient(left, #fff 2px, transparent 2px);
  background: linear-gradient(to right, #fff 2px, transparent 2px);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#000', endColorstr='#fff',GradientType=1 );
  background-size: 5px 2px;
  background-position: 0% 100%;
  background-repeat: repeat-x;
}
main.top ul#fullScreenView > li div.gather table.company tr th, main.top ul#fullScreenView > li div.gather table.company tr td {
  font-weight: normal;
  font-size: 16px;
  line-height: 1.375;
  font-family: "游ゴシック", YuGothic, sans-serif;
}
@media screen and (min-width: 768px) {
  main.top ul#fullScreenView > li div.gather table.company tr th, main.top ul#fullScreenView > li div.gather table.company tr td {
    font-size: 16px;
    font-size: 1.4852672751vw;
  }
}
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li div.gather table.company tr th, main.top ul#fullScreenView > li div.gather table.company tr td {
    font-size: 16px;
    font-size: 4.1720990874vw;
  }
}
@media all and (-ms-high-contrast: none) {
  main.top ul#fullScreenView > li div.gather table.company tr th, main.top ul#fullScreenView > li div.gather table.company tr td {
    font-family: sans-serif;
  }
}
@media screen and (min-width: 768px) {
  main.top ul#fullScreenView > li div.gather table.company {
    margin-top: 1.85vw;
  }
  main.top ul#fullScreenView > li div.gather table.company tr th, main.top ul#fullScreenView > li div.gather table.company tr td {
    padding: 0.75em 0;
    text-align: left;
  }
  main.top ul#fullScreenView > li div.gather table.company tr td {
    padding-left: 1em;
  }
}
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li div.gather table.company {
    margin-top: 5vw;
  }
  main.top ul#fullScreenView > li div.gather table.company tr th, main.top ul#fullScreenView > li div.gather table.company tr td {
    display: block;
    width: 100%;
    text-align: center;
  }
  main.top ul#fullScreenView > li div.gather table.company tr th {
    padding-top: 0.5em;
  }
  main.top ul#fullScreenView > li div.gather table.company tr td {
    padding-top: 0.25em;
    padding-bottom: 0.5em;
  }
}
main.top ul#fullScreenView > li div.gather a.more {
  margin: 0 auto;
  display: block;
  position: relative;
  background: url(../../img/top/btn_more_txt.svg) 50% 50%/auto 40% no-repeat, #f76e43;
}
main.top ul#fullScreenView > li div.gather a.more::before {
  position: absolute;
  top: 50%;
  background: url(../../img/top/btn_more_arrow.svg) 50% 50%/100% auto no-repeat;
  content: '';
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
@media screen and (min-width: 768px) {
  main.top ul#fullScreenView > li div.gather a.more {
    margin-top: 2vw;
    border-radius: 1.3vw;
    width: 10.18vw;
    height: 2.59vw;
  }
  main.top ul#fullScreenView > li div.gather a.more::before {
    right: 0.93vw;
    width: 0.56vw;
    height: 0.83vw;
  }
}
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li div.gather a.more {
    margin-top: 5vw;
    border-radius: 5.625vw;
    width: 45vw;
    height: 11.25vw;
    min-width: 144px;
    min-height: 36px;
  }
  main.top ul#fullScreenView > li div.gather a.more::before {
    right: 2.8125vw;
    width: 1.875vw;
    height: 2.8125vw;
    min-width: 9px;
    min-height: 18px;
  }
}
@media screen and (min-width: 768px) {
  main.top ul#fullScreenView > li#page1 div.init {
    position: relative;
  }
  main.top ul#fullScreenView > li#page1 div.init div.gather img.logo {
    position: absolute;
    top: 0.93vw;
    right: 0.93vw;
    width: 10.19vw;
  }
}
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li#page1 div.init div.gather img.logo {
    margin: 0 auto;
    width: 43.75vw;
  }
}
main.top ul#fullScreenView > li#page2 div.gather h2 > div {
  color: #62a237;
}
main.top ul#fullScreenView > li#page2 div.gather ul li a {
  color: #62a237;
}
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li#page2 div.gather {
    margin-top: -12.5vh;
  }
}
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li#page3 h2 {
    margin-top: -12.5vh;
    margin-bottom: 30vh;
  }
  main.top ul#fullScreenView > li#page3 div.message {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li#page4 h2 {
    margin-top: -12.5vh;
    margin-bottom: 40vh;
  }
  main.top ul#fullScreenView > li#page4 a.more {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li#page5 h2 {
    margin-top: -12.5vh;
    margin-bottom: 30vh;
  }
  main.top ul#fullScreenView > li#page5 div.message {
    margin-top: 0;
  }
}
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li#page6 h2 {
    margin-top: -12.5vh;
  }
}
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li#page7 h2 {
    margin-top: -12.5vh;
    margin-bottom: 35vh;
  }
  main.top ul#fullScreenView > li#page7 div.message {
    margin-top: 0;
  }
}
@media screen and (min-width: 768px) {
  main.top ul#fullScreenView > li#page1 div.catch img.txt {
    width: 58vw;
  }
}
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li#page1 div.catch img.txt {
    width: 87vw;
  }
}
@media screen and (min-width: 768px) {
  main.top ul#fullScreenView > li#page2 h2 div.en img {
    width: 51.9179331307vw;
  }
}
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li#page2 h2 div.en img {
    width: 77.876899696vw;
  }
}
@media screen and (min-width: 768px) {
  main.top ul#fullScreenView > li#page3 h2 div.en img {
    width: 38.2553191489vw;
  }
}
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li#page3 h2 div.en img {
    width: 57.3829787234vw;
  }
}
@media screen and (min-width: 768px) {
  main.top ul#fullScreenView > li#page4 h2 div.en img {
    width: 27.2370820669vw;
  }
}
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li#page4 h2 div.en img {
    width: 40.8556231003vw;
  }
}
@media screen and (min-width: 768px) {
  main.top ul#fullScreenView > li#page5 h2 div.en img {
    width: 55.8844984802vw;
  }
}
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li#page5 h2 div.en img {
    width: 83.8267477204vw;
  }
}
@media screen and (min-width: 768px) {
  main.top ul#fullScreenView > li#page6 h2 div.en img {
    width: 39.4893617021vw;
  }
}
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li#page6 h2 div.en img {
    width: 59.2340425532vw;
  }
}
@media screen and (min-width: 768px) {
  main.top ul#fullScreenView > li#page7 h2 div.en img {
    width: 31.556231003vw;
  }
}
@media screen and (max-width: 767px) {
  main.top ul#fullScreenView > li#page7 h2 div.en img {
    width: 47.3343465046vw;
  }
}
main.top a#scrollArrow {
  margin-left: -25px;
  position: fixed;
  bottom: 5px;
  left: 50%;
  z-index: 1;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: 0 0 5px 0 rgba(0, 0, 0, 0.1);
  background-color: rgba(0, 0, 0, 0.1);
  text-indent: 1000%;
  white-space: nowrap;
  overflow: hidden;
}
main.top a#scrollArrow::before {
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: inherit;
  height: inherit;
  background: url(../img/arrow.png) 50% 50%/cover no-repeat;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  content: "";
}
main.top a#scrollArrow.is-on-transition {
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
}
main.top a#scrollArrow.is-hide {
  opacity: 0;
  visibility: hidden;
  cursor: none;
}
@media screen and (max-width: 767px) {
  main.top a#scrollArrow {
    margin-left: -23px;
    width: 46px;
    height: 46px;
  }
}

main.company > h2 {
  background: url("../../img/company/ttl_bg.jpg") no-repeat;
  background-size: 100%;
  border-bottom: solid 4px #008434;
  text-align: center;
  padding: 2% 0;
  line-height: 0em;
}
main.company section {
  margin-top: 3%;
  margin-bottom: 3%;
}
main.company section h2 {
  text-align: center;
}
main.company section div.greeting {
  margin-top: 3%;
  margin-bottom: 3%;
}
main.company section div.greeting h3 {
  font-size: 140%;
  font-weight: bold;
  margin-bottom: 2%;
}
main.company section div.greeting article {
  text-align: right;
  margin-top: 3%;
}
main.company section table {
  border-left: solid 1px #b3b3b3;
  border-top: solid 1px #b3b3b3;
  margin: 3% auto;
  max-width: 1000px;
}
main.company section table th, main.company section table td {
  padding: 1% 2%;
  border-right: solid 1px #b3b3b3;
  border-bottom: solid 1px #b3b3b3;
}
main.company section table th {
  background: #e8f1e1;
  text-align: center;
  font-weight: bold;
  white-space: nowrap;
}
main.company section > p {
  display: block;
}
main.company section > iframe, main.company section #maps {
  margin: 20px auto;
  height: 400px;
  box-sizing: border-box;
}

div.greenarea {
  background: #f4f8f1;
  padding: 3% 0;
}
div.greenarea > h2 {
  text-align: center;
  margin-bottom: 2%;
}
div.greenarea > h3 {
  font-size: 140%;
  font-weight: bold;
  text-align: center;
}
div.greenarea table {
  border-left: solid 1px #b3b3b3;
  border-top: solid 1px #b3b3b3;
  margin: 3% auto;
  max-width: 1000px;
  background: #FFF;
}
div.greenarea table th, div.greenarea table td {
  padding: 1% 2%;
  border-right: solid 1px #b3b3b3;
  border-bottom: solid 1px #b3b3b3;
}
div.greenarea table th {
  background: #e8f1e1;
  font-weight: bold;
}
div.greenarea table td a {
  display: inline-block;
  text-decoration: underline;
}
div.greenarea table td a:hover {
  text-decoration: none;
}

@media screen and (min-width: 768px) {
  main.company section > p {
    padding: 20px;
  }
  main.company section > iframe, main.company section #maps {
    display: block;
    width: 96%;
  }
  main.company section > table th {
    box-sizing: border-box;
    width: 125px;
  }

  div.greeting p {
    display: block;
    width: 320px;
    float: left;
    margin-right: 3%;
    margin-bottom: 3%;
  }

  section.greetingimg {
    overflow: hidden;
  }
  section.greetingimg ul li {
    display: inline-block;
    margin: 0 -3px;
  }
  section.greetingimg ul li:nth-of-type(1) {
    width: 570px;
  }
  section.greetingimg ul li:nth-of-type(2) {
    width: 509px;
  }
}
@media screen and (max-width: 767px) {
  main.company > h2 img {
    display: block;
    width: 30%;
    margin: 0 auto;
  }
  main.company section > p {
    display: block;
  }
  main.company section > iframe, main.company section #maps {
    display: block;
    width: 100%;
    margin: 5% 0;
  }
  main.company table th, main.company table td {
    display: list-item;
    list-style: none;
  }
  main.company div.greeting h3 br {
    display: none;
  }
  main.company div.greenarea table {
    width: 96%;
    margin: 5% auto;
    padding: 0 20px;
  }
  main.company div.greenarea table th, main.company div.greenarea table td {
    display: list-item;
    list-style: none;
  }
}

main.privacy > h2 {
  background: url("../../img/privacy/ttl_bg.jpg") no-repeat;
  background-size: 100%;
  border-bottom: solid 4px #008434;
  text-align: center;
  padding: 2% 0;
  line-height: 0em;
}
main.privacy section {
  padding-top: 5%;
  padding-bottom: 5%;
}
main.privacy section dl {
  margin-bottom: 3%;
}
main.privacy section dl dt {
  font-size: 120%;
  color: #008434;
  border-bottom: dotted 1px #666;
  padding-bottom: 0.5%;
  margin-bottom: 0.5%;
}
main.privacy section dl dt:before {
  content: "■";
}
main.privacy section dl dd ul {
  margin: 2% 0 0;
}

@media screen and (min-width: 768px) {
  main.privacy section dl dd {
    margin-left: 1.5em;
  }
}
@media screen and (max-width: 767px) {
  main.privacy > h2 img {
    display: block;
    width: 30%;
    margin: 0 auto;
  }
}

main.contact > h2 {
  background: url("../../img/contact/ttl_bg.jpg") no-repeat;
  background-size: 100%;
  border-bottom: solid 4px #008434;
  text-align: center;
  padding: 2% 0;
  line-height: 0em;
}
main.contact section {
  margin-top: 3%;
  margin-bottom: 3%;
}
main.contact section h2 {
  text-align: center;
  margin-bottom: 3%;
}
main.contact section span.emphasis {
  color: #F00;
}
main.contact section span.emphasis.bold {
  font-weight: bold;
}
main.contact section table {
  margin-top: 3%;
  margin-bottom: 3%;
  border-top: solid 1px #66b585;
}
main.contact section table th, main.contact section table td {
  border-bottom: solid 1px #66b585;
}
main.contact section table th {
  background: #deefe5;
  color: #008434;
}
main.contact section table span.emphasis {
  font-size: 75.5%;
  vertical-align: top;
  position: relative;
  top: -0.1em;
}
main.contact section input.submit {
  margin: 0 auto;
  cursor: pointer;
  display: block;
  width: 140px;
  height: 26px;
  border: none;
  text-indent: -9999px;
  background: url("../../img/contact/btn_submit.png") no-repeat;
  background-size: cover;
}
main.contact section input.submit:hover {
  filter: alpha(opacity=70);
  /* IE 6,7*/
  -moz-opacity: 0.7;
  /* IE 8,9 */
  opacity: 0.7;
}

@media screen and (min-width: 768px) {
  main.contact section table th, main.contact section table td {
    padding: 2% 1%;
  }
  main.contact section table td textarea {
    width: 560px;
    height: 120px;
    padding: 10px;
    border: solid 1px #CCC;
  }
  main.contact section table td input.input01 {
    width: 560px;
    padding: 10px;
    border: solid 1px #CCC;
  }
  main.contact section table td input.input02 {
    width: 70px;
    padding: 10px;
    border: solid 1px #CCC;
  }
}
@media screen and (max-width: 767px) {
  main.contact > h2 img {
    display: block;
    width: 30%;
    margin: 0 auto;
  }
  main.contact section table th, main.contact section table td {
    padding: 2%;
    display: list-item;
    list-style-type: none;
  }
  main.contact section table td textarea {
    width: 100%;
    height: 50px;
    border: solid 1px #CCC;
  }
  main.contact section table td input.input01 {
    width: 100%;
    height: 50px;
    border: solid 1px #CCC;
  }
  main.contact section table td input.input02 {
    width: 30%;
    padding: 10px;
    border: solid 1px #CCC;
  }
}

main.post > h2 {
  background: url("../../img/post/ttl_bg.jpg") no-repeat;
  background-size: 100%;
  border-bottom: solid 4px #008434;
  text-align: center;
  padding: 2% 0;
  line-height: 0em;
}
main.post section {
  margin-top: 3%;
  margin-bottom: 3%;
  overflow: hidden;
}
main.post section h2 {
  text-align: center;
  margin-bottom: 3%;
}
main.post section article > div h3 {
  color: #008434;
  font-size: 140%;
  border-bottom: dotted 1px #666;
}
main.post section article > div dl dt, main.post section article > div dl dd {
  display: inline-block;
  vertical-align: middle;
}
main.post section article > div dl dd {
  font-size: 60%;
  color: #62a237;
  border: solid 1px #62a237;
  width: 10%;
  text-align: center;
}
main.post section article > div > p {
  margin: 3% auto;
}
main.post section aside h3 {
  border-bottom: dotted 1px #008434;
}
main.post section aside h3:before {
  content: "■";
  color: #62a237;
}
main.post section aside ul {
  font-size: 90%;
  line-height: 1.8;
  margin-bottom: 5%;
}

@media screen and (min-width: 768px) {
  main.post section article {
    width: 720px;
    float: left;
  }
  main.post section article > div {
    margin-bottom: 50px;
  }
  main.post section article > div > p {
    width: 140px;
    display: block;
  }
  main.post section aside {
    width: 240px;
    float: right;
  }
}
@media screen and (max-width: 767px) {
  main.post > h2 img {
    display: block;
    width: 30%;
    margin: 0 auto;
  }
  main.post section article > div {
    margin-bottom: 50px;
  }
  main.post section article > div dl dd {
    font-size: 60%;
    color: #62a237;
    border: solid 1px #62a237;
    width: 20%;
    text-align: center;
  }
  main.post section article > div > p {
    width: 140px;
    display: block;
  }
}

main.solution > h2 {
  background: url("../../img/solution/ttl_bg.jpg") no-repeat;
  background-size: 100%;
  border-bottom: solid 4px #008434;
  text-align: center;
  padding: 2% 0;
  line-height: 0em;
}
@media screen and (max-width: 767px) {
  main.solution > h2 img {
    display: block;
    width: 28%;
    margin: 0 auto;
  }
}
main.solution section h2 {
  text-align: center;
  margin-top: 3%;
  margin-bottom: 3%;
}
main.solution section div.init div.gather > p {
  margin-bottom: 0.75em;
}
main.solution section div.init div.gather > p:last-child {
  margin-bottom: 0;
}
main.solution section div.init div.ttl {
  padding: 1.5% 0;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  max-width: 810px;
  text-align: center;
  background-color: #fff;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
main.solution section div.init div.ttl > p.ja {
  font-weight: bold;
  margin-bottom: 5px;
  font-size: 26px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  main.solution section div.init div.ttl > p.ja {
    font-size: 2.413559322vw;
  }
}
@media screen and (max-width: 767px) {
  main.solution section div.init div.ttl > p.ja {
    font-size: 3.3898305085vw;
  }
}
main.solution section div.init div.ttl > p.en {
  font-size: 12px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  main.solution section div.init div.ttl > p.en {
    font-size: 1.1139504563vw;
  }
}
@media screen and (max-width: 767px) {
  main.solution section div.init div.ttl > p.en {
    font-size: 1.5645371578vw;
  }
}
@media screen and (min-width: 768px) and (min-width: 1081px) {
  main.solution section div.init div.ttl {
    width: 100%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  main.solution section div.init div.ttl {
    width: 75vw;
  }
}

@media screen and (max-width: 767px) {
  main.solution section div.init div.ttl {
    width: 90vw;
  }
}
main.solution section.contents > div {
  background: url(../../img/solution/bg_contents.jpg) 50% 50%/1080px 500px repeat;
}
main.solution section.contents > div > h2 {
  margin-top: 0;
  padding-top: 9%;
}
@media screen and (max-width: 767px) {
  main.solution section.contents > div > h2 {
    margin-bottom: 6%;
  }
}
main.solution section.contents > div:last-child {
  padding-bottom: 6% !important;
}
main.solution section.contents > div.five {
  margin: 0 auto;
  padding: 0 20px;
  padding-top: 20%;
  box-sizing: border-box;
  width: 100%;
  text-align: center;
}
main.solution section.contents > div.five img {
  width: 80%;
  max-width: 410px;
}
main.solution section.contents > div.four div.init {
  margin: 0 auto;
  padding: 0 20px;
  box-sizing: border-box;
  width: 100%;
}
main.solution section.contents > div.four div.init dl {
  text-align: center;
}
main.solution section.contents > div.four div.init dl:first-child {
  padding-top: 0;
}
main.solution section.contents > div.four div.init dl dt {
  line-height: 1;
}
main.solution section.contents > div.four div.init dl dt > p {
  margin: 0 auto 0.25em;
  padding-bottom: 0.2em;
  width: 150px;
  border-bottom: 1px solid #000;
}
@media screen and (min-width: 768px) {
  main.solution section.contents > div.four div.init dl dt > p {
    font-size: 28.5px;
  }
}
@media screen and (max-width: 767px) {
  main.solution section.contents > div.four div.init dl dt > p {
    font-size: 19.95px;
  }
}
main.solution section.contents > div.four div.init dl dd img {
  width: 100%;
  max-width: 648px;
}
main.solution section.contents > div.four div.init dl dd > div {
  margin-top: 0.5em;
  padding-bottom: 0.5em;
  line-height: 1.5;
}
main.solution section.contents > div.four div.init dl dd > div > p {
  display: inline-block;
}
@media screen and (min-width: 768px) {
  main.solution section.contents > div.four div.init dl {
    padding-top: 6%;
  }
}
@media screen and (max-width: 767px) {
  main.solution section.contents > div.four {
    margin-top: -40px;
    padding-top: 40px;
  }
  main.solution section.contents > div.four div.init dl {
    padding-top: 9%;
  }
}
main.solution section.contents > div.third div.init {
  overflow: hidden;
}
main.solution section.contents > div.third div.init > div.txt {
  display: table;
}
@media screen and (min-width: 768px) and (min-width: 1081px) {
  main.solution section.contents > div.third div.init > div.txt {
    height: 368px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  main.solution section.contents > div.third div.init > div.txt {
    height: 33.2vw;
  }
}

main.solution section.contents > div.third div.init > div.txt div.gather {
  display: table-cell;
  vertical-align: middle;
}
main.solution section.contents > div.third div.init > div.txt.info {
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  main.solution section.contents > div.third div.init > div.txt.info div.gather {
    padding: 0 10%;
  }
}
@media screen and (max-width: 767px) {
  main.solution section.contents > div.third div.init > div.txt.info div.gather {
    padding: 1.7em 20px;
  }
}
main.solution section.contents > div.third div.init > div.txt.year div.gather {
  text-align: center;
}
main.solution section.contents > div.third div.init > div.txt.year div.gather > div > p {
  display: inline-block;
}
main.solution section.contents > div.third div.init > div.txt.year div.gather > div.upper {
  margin: 0 auto;
  display: table;
}
main.solution section.contents > div.third div.init > div.txt.year div.gather > div.upper > p {
  padding-left: 5px;
  display: table-cell;
  vertical-align: middle;
}
main.solution section.contents > div.third div.init > div.txt.year div.gather > div.upper > p:nth-child(1) {
  border-left: 4px solid #000;
  font-size: 28.5px;
  line-height: 1;
}
@media screen and (min-width: 768px) {
  main.solution section.contents > div.third div.init > div.txt.year div.gather > div.upper > p:nth-child(1) {
    font-size: 2.6456323338vw;
  }
}
@media screen and (max-width: 767px) {
  main.solution section.contents > div.third div.init > div.txt.year div.gather > div.upper > p:nth-child(1) {
    font-size: 5.2020860495vw;
  }
}
@media screen and (min-width: 768px) {
  main.solution section.contents > div.third div.init > div.txt.year div.gather > div.upper > p:nth-child(2) {
    font-size: 12px;
    font-size: 1.1139504563vw;
    line-height: 1;
  }
}

@media screen and (max-width: 767px) {
  main.solution section.contents > div.third div.init > div.txt.year div.gather > div.upper > p:nth-child(2) {
    font-size: 12px;
    font-size: 2.1903520209vw;
    line-height: 1;
  }
}
main.solution section.contents > div.third div.init > div.txt.year div.gather > div.lower > p:nth-child(1) {
  font-weight: bold;
}

@media screen and (min-width: 768px) {
  main.solution section.contents > div.third div.init > div.txt.year div.gather > div.lower > p:nth-child(1) {
    font-size: 140px;
    font-size: 12.9960886571vw;
    line-height: 1;
  }
}

@media screen and (max-width: 767px) {
  main.solution section.contents > div.third div.init > div.txt.year div.gather > div.lower > p:nth-child(1) {
    font-size: 120px;
    font-size: 21.9035202086vw;
    line-height: 1;
  }
}

@media screen and (min-width: 768px) {
  main.solution section.contents > div.third div.init > div.txt.year div.gather > div.lower > p:nth-child(2) {
    font-size: 3.7131681877vw;
    line-height: 1;
  }
}
@media screen and (max-width: 767px) {
  main.solution section.contents > div.third div.init > div.txt.year div.gather > div.lower > p:nth-child(2) {
    font-size: 7.3011734029vw;
    line-height: 1;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  main.solution section.contents > div.third div.init > div.txt.year div.gather > div.upper {
    padding-left: 7.4vw;
  }
  main.solution section.contents > div.third div.init > div.txt.year div.gather > div.lower {
    margin-top: 1.85vw;
  }
}

@media screen and (max-width: 767px) {
  main.solution section.contents > div.third div.init > div.txt.year {
    margin: 0 auto;
    padding: 10% 0;
    width: auto;
  }
  main.solution section.contents > div.third div.init > div.txt.year div.gather > div.upper {
    padding-right: 0.4em;
    margin-right: 0;
    margin-left: auto;
  }
  main.solution section.contents > div.third div.init > div.txt.year div.gather > div.lower {
    margin-top: 1%;
  }
}

@media screen and (min-width: 768px) {
  main.solution section.contents > div.third div.init > div {
    width: 50%;
    float: left;
  }
}
@media screen and (max-width: 767px) {
  main.solution section.contents > div.third div.init > div.txt {
    width: 100%;
  }
  main.solution section.contents > div.third div.init > div.box {
    float: left;
    width: 50%;
  }
}
main.solution section.contents > div.second div.init div.bg {
  position: relative;
}
main.solution section.contents > div.first {
  margin-top: 3%;
}
main.solution section.contents > div.first div.init {
  position: relative;
}
main.solution section.contents > div.first div.init div.bg {
  position: relative;
  overflow: hidden;
}
main.solution section.contents > div.first div.init div.bg > div {
  float: left;
}
main.solution section.contents > div.first div.init div.bg > div > img {
  width: 100%;
}
@media screen and (min-width: 768px) {
  main.solution section.contents > div.first div.init div.bg > div.left {
    position: relative;
    z-index: 1;
    width: 42%;
  }
  main.solution section.contents > div.first div.init div.bg > div.right {
    width: 58%;
  }
}
@media screen and (max-width: 767px) {
  main.solution section.contents > div.first div.init div.bg > div.left {
    width: 33.25%;
  }
  main.solution section.contents > div.first div.init div.bg > div.right {
    width: 66.7%;
  }
}
@media screen and (min-width: 768px) and (min-width: 1081px) {
  main.solution section.contents > div.first div.init div.ttl {
    width: 100%;
    margin-top: -120px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  main.solution section.contents > div.first div.init div.ttl {
    width: 75vw;
    margin-top: -12vw;
  }
}

@media screen and (max-width: 767px) {
  main.solution section.contents > div.first div.init div.ttl {
    width: 90vw;
    margin-top: -4vw;
  }
}
main.solution section.contents > div.first div.init div.txt {
  display: table;
  line-height: 1.5;
}
main.solution section.contents > div.first div.init div.txt div.gather {
  display: table-cell;
  vertical-align: middle;
}
@media screen and (min-width: 768px) {
  main.solution section.contents > div.first div.init div.txt {
    position: absolute;
    right: 0;
    bottom: 0;
    background: url(../../img/solution/bg_contents.jpg) 50% 50%/1080px 500px repeat;
  }
  main.solution section.contents > div.first div.init div.txt div.gather {
    padding: 1.7em 10%;
  }
}
@media screen and (min-width: 768px) and (min-width: 1081px) {
  main.solution section.contents > div.first div.init div.txt {
    width: 626px;
    height: 280px;
  }
}
@media screen and (min-width: 768px) and (max-width: 1080px) {
  main.solution section.contents > div.first div.init div.txt {
    width: 57.962962963vw;
    height: 25.9259259259vw;
  }
}

@media screen and (max-width: 767px) {
  main.solution section.contents > div.first div.init div.txt div.gather {
    padding: 1.7em 20px;
  }
}

main.partner > h2 {
  background: url("../../img/solution/ttl_bg.jpg") no-repeat;
  background-size: 100%;
  border-bottom: solid 4px #008434;
  text-align: center;
  padding: 2% 0;
  line-height: 0em;
}
@media screen and (max-width: 767px) {
  main.partner > h2 img {
    display: block;
    width: 22%;
    margin: 0 auto;
  }
}
main.partner section {
  padding-bottom: 5%;
}
main.partner section h2 {
  text-align: center;
  margin-top: 3%;
  margin-bottom: 3%;
}
@media screen and (max-width: 767px) {
  main.partner section h2 img {
    display: block;
    width: 52%;
    margin: 0 auto;
  }
}
main.partner section .init {
  margin-right: auto;
  margin-left: auto;
  max-width: 650px;
}
main.partner section dl {
  margin-top: 6%;
  padding: 6%;
}
main.partner section dl dt {
  position: relative;
  text-align: center;
  font-weight: bold;
  font-size: 120%;
}
main.partner section dl dt::after {
  margin-bottom: -0.4em;
  position: absolute;
  left: 50%;
  bottom: 0%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  display: block;
  width: 52px;
  height: 3px;
  background-color: #aaa;
  content: "";
}
main.partner section dl dd {
  margin-top: 6%;
}
main.partner section dl.grn {
  background-color: #f4f8f1;
}
main.partner section dl.grn dt::after {
  background-color: #62a237;
}
main.partner section dl.grn2 {
  background-color: #e7f1e1;
}
main.partner section dl.grn2 dt::after {
  background-color: #62a237;
}
main.partner section dl.blu {
  background-color: #f5f6fb;
}
main.partner section dl.blu dt::after {
  background-color: #2670b3;
}
main.partner section .ttl {
  text-align: center;
  font-weight: bold;
}
main.partner section .btn {
  margin-top: 3%;
}
main.partner section .btn div a {
  display: block;
  width: 100%;
}
main.partner section .btn div a img {
  display: block;
  width: 100%;
}
@media screen and (min-width: 768px) {
  main.partner section .btn {
    display: flex;
    justify-content: center;
  }
  main.partner section .btn div {
    padding-right: 15px;
    padding-left: 15px;
    width: 205px;
  }
}
@media screen and (max-width: 767px) {
  main.partner section .btn div:nth-child(n+2) {
    margin-top: 6%;
  }
  main.partner section .btn div a {
    margin-left: auto;
    margin-right: auto;
    width: 200px;
  }
}
main.partner section .list {
  margin-top: 6%;
  margin-right: auto;
  margin-left: auto;
  max-width: 440px;
  font-size: 88%;
}
main.partner section .list ul li {
  padding-left: 1em;
  text-indent: -1em;
}
