@charset "UTF-8";
/* CSS Document */
/* ===============================================
common
=============================================== */
body {
 color: #000;
 font-family: "Noto Sans JP", sans-serif;
 font-optical-sizing: auto;
 font-feature-settings: "palt";
 letter-spacing: 1px;
 margin: 0;
 padding: 0;
 font-size: 16px;
 font-weight: 400;
 line-height: 180%;
}
h1, h2, h3, h4, h5, b, strong {
 font-weight: 600;
}
ul, li, p, figure {
 padding: 0;
 margin: 0;
 box-sizing: border-box;
}
ul, ol {
 list-style: none;
}
a {
 text-decoration: none;
 color: #000;
}
img {
 max-width: 100%;
 width: auto;
 height: auto;
}
.sp {
 display: none;
}
/* ボタン */
.btn {
 padding: 0;
 margin-right: 10px;
}
.btn a {
 padding: 12px 15px;
 border-radius: 100px;
 text-align: center;
 box-sizing: border-box;
 display: block;
 font-weight: 500;
}
.btn.btn-wg a {
 border: 2px solid #009d3d;
 color: #009d3d;
}
.btn.btn-wg a:hover {
 background: #009d3d;
 color: #fff;
 transition: all 0.5s;
}
.btn.btn-wo a {
 border: 2px solid #f98329;
 color: #f98329;
 background: #fff;
}
.btn.btn-wo a:hover {
 border: 2px solid #fff;
 color: #fff;
 background: #f98329;
 transition: all 0.5s;
}
.btn.btn-or a {
 border: 2px solid #f98329;
 color: #fff;
 background: #f98329;
}
.btn.btn-or a:hover {
 border: 2px solid #f98329;
 color: #f98329;
 background: #fff;
 transition: all 0.5s;
}
.btn.btn-g a {
 border: 2px solid #009d3d;
 color: #fff;
 background: #009d3d;
}
.btn.btn-g a:hover {
 background: #fff;
 color: #009d3d;
 transition: all 0.5s;
}
/* btn-line */
.btn-line {
 margin-top: 20px;
 display: flex;
 justify-content: flex-end;
}
.btn-line a {
 font-size: 18px;
 padding: 0 30px 3px 2px;
 background: url("../img/common/arrow-bk.svg") 100% 50% no-repeat;
 background-size: 20px;
 border-bottom: 1px solid;
 color: #000;
 font-weight: 500;
}
.btn-line a:hover {
 background: url("../img/common/arrow-g.svg") 100% 50% no-repeat;
 background-size: 20px;
 border-bottom: 1px solid;
 color: #009d3d;
 transition: all 0.5s;
}
/* 見出し */
h2 {
 font-size: 48px;
 margin: 70px auto 30px;
 text-align: center;
}
h3 {
 font-size: 32px;
 margin: 0 0 30px;
}
/* ページ */
.inner {
margin: 70px auto;
 width: 1000px;
 text-align: center;
}
.ttl-txt {
 font-size: 20px;
 font-weight: 600;
}
/* パンくず */
.breadcrumbList {
 list-style: none;
 display: flex;
 margin: 20px 0 10px;
 padding: 0 15px;
 font-weight: normal;
}
.breadcrumbList li {
 margin: 0 5px;
}
.breadcrumbList li a {
 border-bottom: 1px solid;
}

/* ===============================================
ヘッダー
=============================================== */
.header {
 height: 80px;
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 background: #fff;
 z-index: 999;
}
.header__container {
 max-width: 1500px;
 display: flex;
 justify-content: space-between;
 align-items: center;
 height: inherit;
 padding: 0 20px;
 margin-right: auto;
 margin-left: auto;
}
.header__logo {
 width: 160px;
}
.header__box {
 display: flex;
 align-items: center;
}
/* header-ul */
.header_ul {
 display: flex;
 justify-content: space-between;
 align-items: center;
}
.header_ul li {
 padding: 0 15px;
 display: inline-flex;
}
.header .header_ul li a {
 font-size: 16px;
 color: #000;
 display: inline-block;
 position: relative;
 overflow: hidden;
 padding: 3px 0;
 line-height: 120%;
 text-align: center;
 font-weight: 500;
}
.header .header_ul li a:hover {
 color: #009d3d;
}
.header .header_ul li a:after {
 position: absolute;
 bottom: 0;
 left: 0;
 width: 100%;
 height: 3px;
 background: #009d3d;
 transform: translate(-100%, 0);
 transition: transform cubic-bezier(0.215, 0.61, 0.355, 1) 0.4s;
 content: "";
}
.header .header_ul li a:hover:after {
 transform: translate(0, 0);
}
header.header .btn a {
 line-height: 120%;
}
/* ハンバーガーボタン */
.hamburger {
 width: 35px;
 height: 35px;
 position: relative;
 appearance: none;
 border: 0;
 padding: 0;
 margin: 0 0 0 10px;
 cursor: pointer;
 background: none;
}
.hamburger span, .hamburger span::after, .hamburger span::before {
 position: absolute;
 display: block;
 content: "";
 width: 35px;
 height: 3px;
 background: #009d3d;
 transition: all 0.5s;
}
.hamburger span::before {
 top: -12px;
}
.hamburger span::after {
 bottom: -12px;
}
.hamburger.open span {
 background-color: transparent;
}
.hamburger.open span::before {
 top: 0;
 transform: rotate(45deg);
}
.hamburger.open span::after {
 bottom: 0;
 transform: rotate(-45deg);
}
/* メニュー */
.nav {
 position: fixed;
 top: 80px;
 right: -100%;
 background: #009d3d;
 padding: 50px;
 transition: all 0.5s;
 height: 100vh;
}
.nav__item a {
 display: block;
 font-size: 14px;
 color: #fff;
}
.nav__item a:hover {
 opacity: 0.7;
 color: #fff;
 transition: all 0.5s;
}
.nav__list {
 margin-bottom: 20px;
}
.nav__list li {
 margin-bottom: 5px;
 list-style: disc;
 margin-left: 1em;
 color: #fff;
}
.nav__list li:first-child {
 margin-bottom: 10px;
 margin-left: 0;
 list-style: none;
}
.nav__list li:first-child a {
 border-bottom: 1px solid #fff;
 padding-bottom: 3px;
}
.nav.open {
 right: 0;
}

/* ===============================================
notes_page
=============================================== */
main.contents_page {
 margin-top: 100px;
}
#notes_page .app-list {
display: flex;
margin: 50px auto;
align-items: center;
justify-content: center;
}
#notes_page .app-list li {
margin: 0 30px;
}
#notes_page .txt strong {
color: #ff0000;
font-weight: 500;
}
#notes_page #notice-app {
background: #f6f6f6;
padding: 70px 0;
}
#notes_page #notice-app .inner {
padding: 0;
margin: 0 auto;
}
#notes_page table {
 width: 100%;
 border-collapse: collapse;
 border-spacing: 0;
 margin: 20px auto 0;
 text-align: left;
}
#notes_page table tr {
 width: 100%;
 border: 1px solid;
}
#notes_page table th {
 width: 30%;
 background: #eeeeee;
 border-right: 1px solid;
 border-collapse: collapse;
 border-spacing: 0;
 padding: 15px 20px;
 font-weight: normal;
}
#notes_page #intro-app table th {
background: #fff;
display: flex;
width: 100%;
align-items: center;
justify-content: center;
box-sizing: border-box;
}
#notes_page #intro-app table th figure img {
height: 65px;
width: auto;
}
#notes_page table td {
 width: 70%;
 background: #fff;
 padding: 10px 20px;
}
#notes_page table td a {
border-bottom: 1px solid;
color: #666;
}
#notes_page table td a:hover {
 opacity: 0.7;
 transition: all 0.5s;
}

/* ===============================================
cta_area
=============================================== */
.cta_area {
 width: 100%;
 background: #f98329;
}
.cta_area .cta_inner {
 max-width: 1000px;
 margin: 0 auto;
 padding: 30px 0;
 display: flex;
 justify-content: space-between;
}
.cta_area .cta_inner .btn {
 width: 48%;
}
.cta_area .cta_inner .btn.btn-wo a {
 padding: 25px 15px;
 background: #fff url("../img/common/arrow-or.svg") 95% 50% no-repeat;
 background-size: 20px;
 font-size: 18px;
}
.cta_area .cta_inner .btn.btn-wo a:hover {
 border: 2px solid #fff;
 color: #fff;
 background: #f98329 url("../img/common/arrow-w.svg") 95% 50% no-repeat;
 background-size: 20px;
 transition: all 0.5s;
}

/* ===============================================
footer
=============================================== */
footer {
 background: #03792f;
}
.footer__container {
 max-width: 1000px;
 padding: 50px 0;
 margin: 0 auto;
}
.footer__box {
 display: flex;
 justify-content: space-between;
}
.footer__logo {
 width: 200px;
 margin-right: 50px;
}
.footer_ul {
 width: 750px;
 display: flex;
 flex-wrap: wrap;
 justify-content: flex-start;
 align-items: center;
}
.footer_ul li {
 margin: 0 0 10px 0;
 width: 25%;
}
.footer_ul li:nth-child(1), .footer_ul li:nth-child(5), .footer_ul li:nth-child(9) {
 width: 26%;
}
.footer_ul li:nth-child(2), .footer_ul li:nth-child(6), .footer_ul li:nth-child(10) {
 width: 31%;
}
.footer_ul li:nth-child(3), .footer_ul li:nth-child(7), .footer_ul li:nth-child(11) {
 width: 26%;
}
.footer_ul li:nth-child(4), .footer_ul li:nth-child(8) {
 width: 17%;
}
.footer_ul a {
 color: #fff;
 font-size: 16px;
 background: url("../img/common/arrow-w.svg") 0 50% no-repeat;
 background-size: 15px;
 padding-left: 20px;
 font-weight: 500;
}
.footer_ul a:hover {
 opacity: 0.7;
 transition: all 0.5s;
}
footer .mark-img {
 display: flex;
 justify-content: flex-end;
 padding: 10px 20px;
 background: #fff;
 border-radius: 10px;
 place-self: flex-end;
}
footer .mark-img li {
 width: 60px;
 margin: 0 5px;
}
.copylight {
 text-align: center;
 font-size: 12px;
 background: #fff;
 padding: 5px;
}
/* ===============================================
タブレット用
=============================================== */
@media screen and (min-width:768px) and (max-width:1024px) {
 .mv_inner {
  padding: 0 5%;
 }
 .cta_area .cta_inner {
  padding: 30px 5%;
 }
 .footer__container {
  padding: 50px 5%;
 }
 .footer__box {
  display: block;
  margin: 0 0 20px 0;
 }
 .footer__logo {
  margin-bottom: 20px;
 }
}
@media screen and (min-width:768px) and (max-width:1388px) {
 header.header .header_ul li a {
  font-size: 14px;
 }
 header.header .btn a {
  font-size: 14px;
 }
 .header_ul li {
  padding: 0 8px;
 }
 .footer_ul a {
  font-size: 14px;
 }
}