<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">@charset "utf-8";
/* CSS Document */
@import url('https://fonts.googleapis.com/css2?family=Barlow:wght@100;200;300;400;500;600;700;800;900&amp;display=swap');
/*共通*/
html{
    background: #fff;
}
body {
  -webkit-text-size-adjust: 100%;
  letter-spacing: 1px;
  background: #fff;
}
.cp_cont {
  display: none;
}
.text-wrap {
  display: inline-block;
}
.container {
    max-width: 1120px;
    width: 90%;
    margin: auto;
    position: relative;
}
img {
  max-width: 100%;
  height: auto;
}
.pc_block {
  display: block;
}
.sp_block {
  display: none;
}
.center {
  text-align: center;
}
.indent {
    text-indent: -1em;
    padding-left: 1em;
}
/* ==========================
フォント?色
============================= */
.barlow{
    font-family: 'Barlow', sans-serif;
}
.bold{
    font-weight: bold;
}
/* ==========================
アニメーション
============================= */
/* 通常のスクロールフェードイン機能を実装する際には、フェードインさせたい要素にクラス.fadeinを、
　　その親要素にクラス.fadein_outerを指定してください。 */
.fadein_outer {
}
.fadein_outer .fadein {
  opacity: -1;
  transform: translate(0, 50px);
  transition: all 500ms;
}
/* 横からのフェードインにしたいときは親要素にクラス .left or .rifgt も一緒に使ってください。 */
.fadein_outer.left,
.fadein_outer.right {
  overflow: hidden;
}
.fadein_outer.left .fadein {
  opacity: 0.1;
  transform: translate(-200px, 0);
  transition: all 800ms;
}
.fadein_outer.right .fadein {
  opacity: 0.1;
  transform: translate(200px, 0);
  transition: all 800ms;
}
/* 画面内に入った状態 */
.fadein_outer .fadein.scrollin {
  opacity: 1;
  transform: translate(0, 0);
}
/* 同列要素などを時間差で表示させたい場合、上記記述に追記が必要です。
　　親要素にクラス.fadein_outerだけでなく、クラス.delayも入れてください。必要に応じて下記量産ください */
.fadein_outer.delay .fadein:nth-child(2) {
  -moz-transition-delay: 100ms;
  -webkit-transition-delay: 100ms;
  -o-transition-delay: 100ms;
  -ms-transition-delay: 100ms;
}
.fadein_outer.delay .fadein:nth-child(3) {
  -moz-transition-delay: 200ms;
  -webkit-transition-delay: 200ms;
  -o-transition-delay: 200ms;
  -ms-transition-delay: 200ms;
}
.fadein_outer.delay .fadein:nth-child(4) {
  -moz-transition-delay: 300ms;
  -webkit-transition-delay: 300ms;
  -o-transition-delay: 300ms;
  -ms-transition-delay: 300ms;
}
.fadein_outer.delay .fadein:nth-child(5) {
  -moz-transition-delay: 400ms;
  -webkit-transition-delay: 400ms;
  -o-transition-delay: 400ms;
  -ms-transition-delay: 400ms;
}
.fadein_outer.delay .fadein:nth-child(6) {
  -moz-transition-delay: 500ms;
  -webkit-transition-delay: 500ms;
  -o-transition-delay: 500ms;
  -ms-transition-delay: 500ms;
}
.fadein_outer.delay .fadein:nth-child(7) {
  -moz-transition-delay: 600ms;
  -webkit-transition-delay: 600ms;
  -o-transition-delay: 600ms;
  -ms-transition-delay: 600ms;
}
.fadein_outer.delay .fadein:nth-child(8) {
  -moz-transition-delay: 700ms;
  -webkit-transition-delay: 700ms;
  -o-transition-delay: 700ms;
  -ms-transition-delay: 700ms;
}

/* inview */
.list-mv07 {
  opacity: 0;
  transform: translate(0, 60px);
  -webkit-transform: translate(0, 60px);
  transition: 0.8s;
}
.mv07 {
  opacity: 1;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
.scrollreveal_right {
  opacity: 0;
  -webkit-transform: translate(20%, 0px);
  -ms-transform: translate(20%, 0px);
  transform: translate(20%, 0px);
  backface-visibility: hidden;
  transition: 1s;
}
.scrollreveal_left {
  opacity: 0;
  -webkit-transform: translate(-20%, 0px);
  -ms-transform: translate(-20%, 0px);
  transition: 1s;
  transform: translate(-20%, 0px);
  backface-visibility: hidden;
}
.active {
  opacity: 1 !important;
  transform: translate(0, 0);
  -webkit-transform: translate(0, 0);
}
/* ==========================
header
============================= */
header{
    position: fixed;
	background: #0D3D1760;
    top: 0;
    left: 0;
    width: 100%;
    color: #fff;
    z-index: 3;
}
.hd_inner {
    display: flex;
    position: relative;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin: auto;
    box-sizing: border-box;
    height: 100px;
}
.hd_logo {
    padding: 0 20px;
    height: 100%;
    display: flex;
    align-items: center;
    background: #fff;
}
.hd_logo img{
    width: 100%;
}
.hd_top {
    font-size: 1.5rem;
    font-weight: bold;
}
.hd_bot {
    display: flex;
    justify-content: space-between;
    width: 100%;
    border-top: 1px solid #ffffff50;
}
.hd_title {
    font-family: "Arial", "メイリオ", Meiryo, sans-serif;
    font-size: 3rem;
}
.hd_title_sub {
    font-size: 1.7rem;
}
.hd_nav {
    display: flex;
    justify-content: space-around;
    font-size: 1.6rem;
    height: 40px;
}
.hd_nav li {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hd_nav li::after {
    content: ' ';
    background: #FFFFFF50;
    width: 1px;
    height: 10px;
    position: absolute;
    right: 0;
}
.hd_nav li:last-child::after{
	display: none;
}
.hd_nav li a {
    font-family: "Arial", "メイリオ", Meiryo, sans-serif;
    font-size: 1.5rem;
    padding: 0 1.75em;
    flex-grow: 1;
    text-align: center;
    color: #fff;
    height: 100%;
    display: flex;
    align-items: center;
}
.hd_contents {
    text-align: end;
    display: flex;
    align-items: center;
    height: 100%;
}
.hd_contents {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: calc(100% - 194px);
    padding: 20px;
    box-sizing: border-box;
}
.hd_lang {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    border-left: 1px solid #DFDFDF;
}
a.lang {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.3rem;
    padding: 0 20px;
}
a.lang::before{
    content: url("/action_plan/common/img/lang_icon.svg");
    line-height: 0;
    padding-right: 10px;
}
a.lang::after{
    content: url("/action_plan/common/img/arrow_min.svg");
    transform: rotate(-90deg);
    padding-top: 10px;
}
/* page-pankuzu
==================================*/
.pankuzu-list {
    display: flex;
    justify-content: center;
    padding: 5px 5%;
    background: #064296;
    flex-wrap: wrap;
    color: #fff;
}
.pankuzu-list a{
    color: #fff;
}
.under_contents{
	padding-left: 10px;
	position: relative;
}
.under_contents::before{
	content: '?';
	padding-right: 5px;
}
/* ==========================
コンポーネント
============================= */
.sec_title {
    font-size: 2.4rem;
    font-weight: bold;
}
.sec_dis {
    line-height: 2;
    margin-top: 25px;
}
.shadow {
    box-shadow: 5px 10px 20px rgb(0 0 0 / 20%);
}
/*btn*/
.btn {
    width: 90%;
    max-width: 400px;
}
.btn a {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px 0;
    position: relative;
    transition: .5s;
}
.btn--b a {
    background: #333;
    color: #fff;
    border: 1px solid #333;
}
.btn--b a:hover {
    background: #fff;
    color: #222;
    opacity: 1;
}
.btn--b a::after {
    content: url(/action_plan/common/img/arrow_btn_w.svg);
    position: absolute;
    right: 20px;
    line-height: 0;
}
.btn--b a:hover::after {
    content: url(/action_plan/common/img/arrow_btn_b.svg);
}
.btn--n a {
    background: #064296;
    color: #fff;
    border: 1px solid #064296;
}
.btn--n a:hover {
    background: #fff;
    color: #064296;
    opacity: 1;
}
.btn--n a::after {
    content: url(/action_plan/common/img/arrow_btn_w.svg);
    position: absolute;
    right: 20px;
    line-height: 0;
}
.btn--n a:hover::after {
    content: url(/action_plan/common/img/arrow_btn_b.svg);
}
/* ==========================
amimation
============================= */
.fade{
    opacity: 0;
    transition:ease-out 0.5s;
}
.fade.fade--left{
    transform: translate(-100px,0)
}
.fade.fade--right{
    transform: translate(100px,0)
}
.fade.fade--bot{
    transform: translate(0,100px)
}
.fade.scrollin{
    opacity: 1;
    transform: translate(0,0);
}

.fade.fade--list{
    opacity: 1;
}
.fade.fade--list .fade_child{
    opacity: 0;
    transition:ease-out 0.5s;
    transform: translate(0,100px)
}
.fade.fade--list.scrollin .fade_child{
    opacity: 1;
    transform: translate(0,0);
}

.fade.fade--list .fade_child:nth-child(1){
    transition-delay: 0.0s;
}
.fade.fade--list .fade_child:nth-child(2){
    transition-delay: 0.15s;
}
.fade.fade--list .fade_child:nth-child(3){
    transition-delay: 0.3s;
}
.fade.fade--list .fade_child:nth-child(4){
    transition-delay: 0.45s;
}
.fade.fade--list .fade_child:nth-child(5){
    transition-delay: 0.6s;
}

/* ==========================
下層ページ内共有部分
============================= */
.under_mv {
    height: 300px;
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 100px;
    box-sizing: border-box;
    font-family: "Arial", "メイリオ", Meiryo, sans-serif;
}
.page_title {
    font-size: 6.48rem;
    color: #fff;
}

.intro {
    padding-top: 100px;
}
.intro_card {
    max-width: 1024px;
    width: 90%;
    margin: auto;
    background: #EEF2DF;
    box-shadow: 0px 3px 6px #00000080;
    border-top: 2px solid #009441;
    padding: 30px 50px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    position: relative;
}
.intro_text {
    max-width: 686px;
    width: 100%;
}
.intro_num {
    font-size: 3.6rem;
    color: #0D3D17;
    font-family: "Arial", "メイリオ", Meiryo, sans-serif;
}
.intro_name {
    font-size: 3.6rem;
    font-weight: bold;
    color: #009441;
    letter-spacing: 0;
}
.intro_com {
    font-size: 1.8rem;
    line-height: 1.8;
    margin-top: 15px;
    letter-spacing: 0;
}
.effort {
    padding-top: 100px;
}
.effort_head {
    background: linear-gradient(90deg,#F1F1EF 0%,#F1F1EF 90%,#fff 90%,#fff 100%);
    position: relative;
    min-height: 100px;
    display: flex;
    align-items: center;
}
.effort_head::before{
    content: ' ';
    display: block;
    height: 2px;
    width: 90%;
    background: #0D3D17;
    position: absolute;
    top: -2px;
    left: 0;
}
.effort_inner {
    display: flex;
    max-width: 1024px;
    width: 90%;
    margin: auto;
    padding: 10px 0;
    align-items: center;
}
.effort_num {
    background: #0D3D17;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px 41px;
    font-size: 2rem;
    margin-right: 20px;
}
.effort_num.double {
    padding: 15px 41px;
}
.effort_title {
    font-size: 2.4rem;
    letter-spacing: 0;
}
.effort_top {
    max-width: 1024px;
    width: 90%;
    margin: 50px auto 0;
    font-size: 1.8rem;
    line-height: 1.8;
    letter-spacing: 0;
}
.effort_block {
    max-width: 1024px;
    width: 90%;
    margin: 45px auto 0;
}
.effort_midashi {
    background: #009441;
    color: #fff;
    display: inline-flex;
    padding: 15px 50px;
    margin-bottom: 30px;
}
.effort_text {
    font-size: 1.6rem;
    letter-spacing: 0;
    line-height: 2;
}
.effort_gallery {
    max-width: 1044px;
    width: 90%;
    margin: 25px auto 0;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
}
.effort_gallery.center{
    justify-content: center;
}

.effort_img{
    margin: 20px 10px 0;
}
.effort_img_tips{
    margin-top: 10px;
    text-align: center;
}
.effort_img_links {
    display: block;
}
/* ==========================
front_buttom 固定ボタン
============================= */

p.ft_cata a:link,
p.ft_movie a:link {
  color: #fff;
}
#page_top {
  width: 50px;
  height: 50px;
  position: fixed;
  bottom: -50px;
  opacity: 0.6;
  border-radius: 50%;
  right: 3%;
  z-index: 999999;
}
#page_top a {
  position: relative;
  display: block;
  width: 50px;
  height: 50px;
  text-decoration: none;
  text-align: center;
  border: 3px solid #f6f6f6;
  border-radius: 50%;
  background: #707070;
}
#page_top a::before {
    content: ' ';
    background: url("/action_plan/common/img/arrow_back.svg");
    -webkit-background-size: contain;
    background-size: contain;
  position: absolute;
  width: 21.5px;
  height: 11px;
  top: calc(50% - 5.5px);
  bottom: auto;
  right: auto;
  left: calc(50% - 10.75px);
}


/* ==========================
footer
============================= */

.vis_nav {
    max-width: 1024px;
    width: 90%;
    margin: auto;
    padding: 100px 0;
}
.vis_inner {
    background: #EFF3DE95 url("../img/arrow_vis.svg")no-repeat center right 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px;
    padding-right: 100px;
    box-shadow: 0px 0px 5px #00000080;
    margin-top: 20px;
    border-top: 2px solid #009441;
}
.vis_text {
    display: flex;
    flex-direction: column;
    line-height: 2;
}
span.vis_num {
    font-family: "Arial", "メイリオ", Meiryo, sans-serif;
    font-size: 3.6rem;
    color: #0D3D17;
    line-height: 1;
}
span.vis_name {
    font-size: 2.2rem;
    margin-left: 40px;
}
span.vis_icon {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: #0D3D17;
}
.tel_small {
    font-size: 1.1rem;
    line-height: 1.2;
}


footer{
    background: #0D3D17;
    color: #fff;
    padding: 100px 0 0px;
}
footer a{
    color: #fff!important;
}
.ft_inner {
    max-width: 1120px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    padding-bottom: 110px;
}
.ft_name {
    display: flex;
    align-items: center;
}
.ft_maekabu {
    letter-spacing: 0px;
    font-size: 1.8rem;
    margin-right: 5px;
}
.ft_logo {
    width: 100%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    max-width: 156px;
}
.ft_title {
    display: flex;
    flex-direction: column;
    margin-left: 20px;
}
.ft_top {
    font-size: 1.4rem;
}
.ft_bot {
    font-family: "Arial", "メイリオ", Meiryo, sans-serif;
    font-size: 3rem;
    border-top: 1px solid #fff;
}
.ft_bot_sub {
    font-size: 1.7rem;
}


.ft_right {
    font-size: 1.4rem;
    display: flex;
    line-height: 2;
    flex-direction: column;
}
.ft_sitemap {
    margin-top: 20px;
}

.ft_sitemap:last-child {
    margin-right: 0px;
}
.ft_site_top {
    font-size: 1.6rem;
    font-weight: bold;
}
.ft_site_link a {
    display: flex;
    align-items: center;
    margin-left: 1em;
    
}
.ft_site_link a::before {
    content: ' ';
    display: block;
    min-width: 15px;
    height: 1px;
    background: #fff;
    margin-right: 10px;
}
.copyright {
    padding: 10px 5% 60px;
    text-align: center;
    box-sizing: border-box;
}
.copyright a {
    display: inline-flex;
}
.copyright small {
    font-size: 1rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.ft_logo img {
    width: 100%;
}

/*オプション*/

.mt_0{
    margin-top: 0px;
}
.mt_10{
    margin-top: 10px;
}
.mt_20{
    margin-top: 20px;
}
.mt_30{
    margin-top: 30px;
}
.mt_40{
    margin-top: 40px;
}
.mt_50{
    margin-top: 50px;
}
.mt_60{
    margin-top: 60px;
}





@media print {
header{
    position:absolute;
}
  body {
    zoom: 90%;
    width: 1200px;
    margin: auto;
  }
  div#back-top,
  p.ft_cata,
  p.ft_movie {
    display: none;
  }
}
@page {
  size: A4;
  margin: 5mm 5mm;
}
</pre></body></html>