@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, ol, p, figure {
 list-style: none;
 padding: 0;
 margin: 0;
}
a {
 text-decoration: none;
 color: #000;
}
img {
 max-width: 100%;
 width: 100%;
 height: auto;
}
.pc {
 display: none !important;
}
/* ボタン */
.btn {
 padding: 0;
}
.btn a {
 padding: 10px;
 border-radius: 100px;
 text-align: center;
 box-sizing: border-box;
 display: block;
 font-size: 12px;
 font-weight: 500;
}
.btn.btn-g a {
 border: 2px solid #009d3d;
 color: #fff;
 background: #009d3d;
}
.btn.btn-wg a {
 border: 2px solid #009d3d;
 color: #009d3d;
 background: #fff;
}
.btn.btn-wo a {
 border: 2px solid #f98329;
 color: #f98329;
 background: #fff;
}
.btn.btn-or a {
 border: 2px solid #f98329;
 color: #fff;
 background: #f98329;
}
/* 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;
}
/* 見出し */
h2 {
 font-size: 36px;
 line-height: 120%;
 margin: 50px auto 20px;
 text-align: center;
}
h2 small {
 font-size: 30px;
}
h3 {
 font-size: 28px;
 margin: 0 0 20px;
 line-height: 140%;
}
/* ページ */
.inner {
 margin: 50px auto;
 width: 100%;
 text-align: center;
 padding: 0 5%;
 box-sizing: border-box;
}
.ttl-txt {
 font-size: 18px;
 font-weight: bold;
}
/* パンくず */
.breadcrumbList {
 list-style: none;
 display: flex;
 margin: 5px 0 10px;
 padding: 0 10px;
 font-size: 12px;
 font-weight: normal;
}
.breadcrumbList li {
 margin: 0 5px;
}
.breadcrumbList li a {
 border-bottom: 1px solid;
}

/* ===============================================
ヘッダー
=============================================== */
.header {
 height: 60px;
 position: fixed;
 top: 0;
 left: 0;
 right: 0;
 background: #fff;
 z-index: 999;
}
.header__container {
 max-width: 100%;
 display: flex;
 justify-content: space-between;
 align-items: center;
 height: inherit;
 padding: 0 15px;
 margin-right: auto;
 margin-left: auto;
}
.header__box .btn-wg {
 margin-right: 10px;
}
.header__box .btn-wg a {
 padding: 5px 10px;
}
.header__logo {
 width: 130px;
}
.header__box {
 display: flex;
 align-items: center;
}
/* header-ul */
.header_ul {
 display: none;
}
/* ハンバーガーボタン */
.hamburger {
 width: 35px;
 height: 35px;
 position: relative;
 appearance: none;
 border: 0;
 padding: 0;
 margin: 0;
 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: 60px;
 right: -100%;
 background: #009d3d;
 padding: 5% 8%;
 transition: all 0.5s;
 height: 100vh;
}
.nav__item a {
 display: block;
 font-size: 14px;
 color: #fff;
}
.nav__list {
 margin-bottom: 30px;
}
.nav__list li {
 margin-bottom: 10px;
 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 {
 font-weight: 500;
 border-bottom: 1px solid #fff;
 padding-bottom: 10px;
}
.nav.open {
 right: 0;
}

/* ===============================================
notes_page
=============================================== */
main {
 margin-top: 60px;
 overflow: hidden;
}
#notes_page .app-list {
display: flex;
margin: 5% auto;
align-items: center;
justify-content: center;
}
#notes_page .app-list li {
margin: 0 15px;
}
#notes_page .txt strong {
color: #ff0000;
font-weight: 500;
}
#notes_page #notice-app {
background: #f6f6f6;
padding: 50px 0;
}
#notes_page #notice-app .inner {
padding: 0 5%;
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;
}
#notes_page table td {
 width: 70%;
 background: #fff;
 padding: 10px 20px;
}
#notes_page table figure img {
 width: auto;
}
#notes_page table td a {
border-bottom: 1px solid;
color: #666;
}

/* ===============================================
cta_area
=============================================== */
.cta_area {
 width: 100%;
 background: #f98329;
}
.cta_area .cta_inner {
 margin: 0 auto;
 padding: 30px 5% 20px;
}
.cta_area .cta_inner .btn {
 margin-bottom: 10px;
}
.cta_area .cta_inner .btn.btn-wo a {
 padding: 20px 15px;
 font-size: 16px;
 font-weight: 500;
 background: #fff url("../img/common/arrow-or.svg") 95% 50% no-repeat;
 background-size: 20px;
}

/* ===============================================
footer
=============================================== */
footer {
 background: #03792f;
}
.footer__container {
 padding: 50px 5%;
 margin: 0 auto;
}
.footer__box {}
.footer__logo {
 width: 150px;
 margin-bottom: 20px;
 text-align: center;
}
.footer_ul {
 display: flex;
 flex-wrap: wrap;
 justify-content: flex-start;
 align-items: center;
}
.footer_ul li {
 margin: 0 0 10px 0;
 width: 50%;
}
.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 10px;
 background: #fff;
 border-radius: 10px;
 place-self: flex-end;
}
footer .mark-img li {
 width: 50px;
 margin: 0 5px;
}
.copylight {
 text-align: center;
 font-size: 12px;
 background: #fff;
 padding: 5px;
}