﻿@charset "utf-8";
/* CSS Document */
@import url("style.css");
@media print, screen and (max-width: 979px) {
  body {
    margin: 0;
    padding: 0;
  }
  #wrap {
    width: 100%;
  }
  .wrapper {
    width: 100%;
  }
  p {
    font-size: 15px;
    line-height: 1.7;
    text-align: left;
  }
  #menubar01 {
    display: none;
  }
  /* ===================
改行
====================== */
  .pc-br {
    display: none;
  }
  .sp-br {
    display: block;
  }
  /* ===================
 ヘッダー関連
====================== */
  #header {
    position: fixed;
    width: 100%;
    background-color: #fff;
    z-index: 5000;
    height: 70px;
  }
  .head-wrap {
    width: 100%;
    margin: 0 auto;
    padding: 10px;
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .head-wrap .contact-btn {
    position: absolute;
    top: 15px;
    right: 50px;
    z-index: 5000;
  }
  /*
    .head-wrap .contact-btn p{
   display: none;
  }
*/
  .head-wrap .contact-btn img {
    width: 40px;
  }
  .head-logo {
    width: 60%;
  }
  .head-logo img {
    display: block;
    width: 100%;
    max-width: 170px;
    z-index: 5000;
    position: absolute;
    top: 0.8em;
  }
	
.head-logo a img{
    z-index: 5000;
  }
	
.head-logo a:hover,
.head-logo a img:hover { opacity: 1 !important; }	
	
	
  #l-header {
    position: fixed;
    width: 100%;
    z-index: 5000;
    background: linear-gradient(90deg, rgba(158, 212, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(241, 247, 178, 1) 100%);
  }
  #l-header .head-wrap {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2%;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
  }
  #l-header .head-logo {}
  #l-header .head-logo img {
    display: block;
    width: 100%;
    max-width: 180px;
  }
  .fixed {
    position: fixed;
  }
  .l-main {
    padding-top: 10rem;
    background: linear-gradient(90deg, rgba(226,242,255,1) 0%, rgba(255, 255, 255, 1) 50%, rgba(251,253,232,1) 100%);
  }
  @media (max-width: 780px) {
    .l-main {
      padding-top: 5rem;
    }
  }
  /* ===================
 ハンバーガー
====================== */
  #hamburger {
    position: absolute;
    top: 0;
    right: 0%;
    z-index: 1900;
    float: right;
    width: 100%;
    padding-top: 1em;
    height: 70px;
    background-color: #fff;
  }
  #hamburger ul {
    /*height: 100vh;*/
    overflow: scroll;
    -webkit-overflow-scrolling: 100%;
  }
  .inmenu input {
    display: none;
  }
  button {
    border: none;
    background: none;
    outline: none;
  }
  a:hover, a img:hover, label img:hover {
    opacity: 0.8;
  }
  .inmenu, .inmenu span {
    display: inline-block;
    -webkit-transition: all .4s;
    transition: all .4s;
    box-sizing: border-box;
  }
  .inmenu {
    position: fixed;
    top: 22px;
    /*right: 0;*/
    height: 22px;
    z-index: 10;
    width: 11%; /*長さ*/
    background-color: #FFF;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .inmenu span {
    position: absolute;
    left: 3px;
    width: 29px;
    height: 3px;
    /*    background-color: rgba(0,0,0,0.7);*/
    z-index: 10;
  }
  .inmenu span:nth-of-type(1) {
    top: 0px;
    background-color: #076fb8;
  }
  /*.inmenu span:nth-of-type(2) {
top: 6px;
background-color: #000;
}
*/
  .inmenu span:nth-of-type(3) {
    bottom: 6px;
    background-color: #076fb8;
  }
  .inmenu.active span:nth-of-type(1) {
    -webkit-transform: translateY(5px) rotate(45deg);
    transform: translateY(5px) rotate(45deg);
  }
  .inmenu.active span:nth-of-type(2) {
    opacity: 0;
  }
  .inmenu.active span:nth-of-type(3) {
    -webkit-transform: translateY(-7px) rotate(-45deg);
    transform: translateY(-7px) rotate(-45deg);
  }
  /*------*/
  .hammenu {
    background-color: #FFF;
    height: 38px;
    width: 35px;
    position: absolute;
    z-index: 1000;
    top: 5px;
    right: 5px;
    color: #fff;
    font-size: 12px;
  }
  .menu_text {
    font-size: 9px;
    color: #006464;
    position: absolute;
    bottom: -20%;
  }
  /*------*/
  #nav {
    position: fixed;
    top: 50px;
    right: 0;
    z-index: 10;
    width: 100%;
    height: 0;
    opacity: 0;
    background-color: rgba(255, 255, 255, 1);
    transition: all 0.3s ease-in-out;
    visibility: hidden;
    padding-top: 1em;
    transform: translate3d(100%, 0, 0);
    transition-duration: 0.5s;
  }
  #nav.active {
    right: 0;
    left: 0;
    opacity: 1;
    transform: none;
    visibility: visible;
    height: 83vh;
  }
  #nav ul {
    padding: 50px 0;
  }
  #nav ul li {
    list-style-type: none;
  }
  #nav ul li a {
    display: block;
    padding: 0.5em;
    transition: all 0.2s ease-in-out;
    text-align: left;
    text-decoration: none;
    color: #4d4d4d;
    list-style-type: none;
  }
  ul.dl-menu {
    padding: 0px;
    margin: 0px 0 0 0;
    width: 100%;
    height: 100%;
  }
  ul.dl-menu li {
    list-style-type: none;
    /*float: left;*/
    width: 95%;
    border-bottom: dotted 1px #89898a;
    box-sizing: border-box;
    margin-bottom: 20px;
    margin-top: 20px;
  }
  ul.dl-menu li {
    margin-top: 10px;
  }
  ul.dl-menu li {
    margin-right: 8px;
    margin-left: 8px;
    padding: 0.1em;
  }
  .accbox {
    margin: 0;
    padding: 0.5em;
    width: 100%;
  }
  /*ラベル*/
  .accbox label {
    padding: 0.5em;
    color: #4d4d4d;
    cursor: pointer;
    transition: all 0.5s;
    font-size: 15px;
    line-height: 20px;
    font-weight: 300;
    display: block;
    text-align: left;
  }
  /*ラベルホバー時*/
  .accbox label:hover {
    background-color: #fff
  }
  /*チェックは隠す*/
  .accbox input {
    display: none;
  }
  /*中身を非表示にしておく*/
  .accbox .accshow {
    height: 0;
    padding: 0;
    overflow: hidden;
    opacity: 0;
    transition: 0.8s;
  }
  /*クリックで中身表示*/
  .cssacc:checked + .accshow {
    height: auto;
    padding: 5px;
    opacity: 1;
  }
  #sample01 {
    padding: 0;
    margin: 0;
    width: 100%;
    height: auto;
  }
  #sample01 p {
    text-align: left;
    font-size: 15px;
    color: #fff;
    margin: 2px 0;
    border-left: solid #007EA8 5px;
  }
  #sample01 a {
    list-style-type: none;
    width: 100%;
    margin: 5px 0;
    padding: 2px 0;
    border-left: none;
    font-size: 14px;
    background-color: #fff;
  }
  #sample01 p:nth-child(2) {
    margin: 2px
  }
  .locked {
    overflow-y: hidden;
  }
  /*-----hamburger_set_end-----*/
  /* ===================
ブロック要素
====================== */
  .lay-block {
    width: 100%;
    position: relative;
    text-align: center;
    margin: 0 auto;
    padding-top: 3rem;
  }
  .lay-block-10 {
    width: 100%;
    max-width: 1000px;
    margin: 0 auto;
    text-align: center;
  }
  .lay-block-11 {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto;
    text-align: center;
  }
  .lay-block-12 {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  .lay-block-top {
    width: 100%;
    position: relative;
    text-align: center;
    padding-top: 4em;
  }
  .lay-block-page {
    width: 100%;
    position: relative;
    text-align: center;
    margin: 0 auto;
    padding-top: 3rem;
    background: linear-gradient(90deg, rgba(158, 212, 255, 1) 0%, rgba(255, 255, 255, 1) 50%, rgba(241, 247, 178, 1) 100%);
  }
  .lay-block-bottom {
    width: 100%;
    background-color: #005f98;
  }
  /* ===================
 見出し
====================== */
  .content-ttl {}
  .content-ttl h2 {
    padding: 0.5em 0;
    border-bottom: solid 3px black;
  }
  /* ===================
 ボタン
====================== */
  .btn {
    width: 15%;
    display: inline-block;
    padding: 0.5em;
    font-weight: 400;
    align-items: center;
    text-decoration: none !important;
    font-size: 1.5rem;
    font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
    text-align: center;
    background-color: #1470a9;
    margin: 1em;
  }
  .btn a {
    color: #fff !important;
    font-size: 1.5rem;
  }
  .btn:hover {
    opacity: 0.8;
  }
  .btn-box {
    width: 100%;
    text-align: center;
  }
  /* ===================
 フッターのリスト
====================== */
  .footer-box {
    width: 100%;
    max-width: 1200px;
    display: flex;
    margin: 0 auto;
    padding: 2em 1em;
  }
  @media (max-width: 640px) {
    .footer-box {
      flex-wrap: wrap;
    }
  }
  .footer-link {
    width: 45%;
    color: #fff;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    padding: 0;
    list-style: none;
  }
  @media (max-width: 640px) {
    .footer-link {
      width: 100%;
      justify-content: center;
    }
  }
  .footer-link-item {
    width: 50%;
    display: flex;
    flex-direction: column;
    text-align: left;
  }
  @media (max-width: 640px) {
    .footer-link-item {
      width: 40%;
    }
  }
  .footer-link-item a {
    text-decoration: none;
  }
  .footer-link li {}
  .footer-link a {
    color: #fff;
    padding: 0.8em;
    font-size: 14px;
  }
  .footer-contact-wrap {}
  @media (max-width: 640px) {
    .footer-contact-wrap {
      margin-top: 1.5em;
    }
  }
  .footer-contact-wrap a {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    color: #fff;
  }
  .footer-contact-wrap a img {
    width: 100%;
    max-width: 20px;
    margin-right: 10px;
  }
  @media (max-width: 640px) {
    .footer-contact-wrap a img {
      width: 70%;
      max-width: 50px;
    }
  }
  .footer-contact-wrap a p {
    width: 100%;
  }
  @media (max-width: 640px) {
    .footer-contact-wrap a p {
      width: 30%;
    }
  }
  .company-info {
    color: #fff;
    width: 55%;
    list-style: none;
    text-align: left;
    font-size: 16px;
    font-weight: 400;
    line-height: 180%;
    text-decoration: none;
    margin-bottom: 50px;
  }
  @media (max-width: 640px) {
    .company-info {
      width: 100%;
      text-align: center;
    }
  }
  .company-info ul {
    text-align: center;
    list-style: none;
    padding: 0;
  }
  .company-info img {
    display: block;
    width: 100%;
    max-width: 360px;
  }
  .company-name {
    list-style: none;
    text-align: center;
    font-size: 20px;
    font-weight: bold;
    line-height: 160%;
    letter-spacing: 0.1em;
  }
  @media (max-width: 640px) {
    .company-name a img {
      margin: 0 auto;
    }
  }
  .company-address {
    margin-top: 20px;
  }
  .company-tel {}
  .copy {
    font-size: 12px;
    color: #fff;
    text-align: center;
    margin: 0 0 1em 0;
    padding: 20px 0;
    padding-bottom: 15px;
    margin-top: 3em;
  }
  /* ===================
 ニュース
====================== */
  .news {}
  .news-wrap {
    width: 100%;
    margin: 3em auto 0;
  }
  .news-ttl {
    width: 100%;
    margin: 5em auto;
    position: absolute;
    top: -130px;
    left: 0;
    right: 0;
  }
  .news-ttl h2 {
    font-family: "Prata";
    font-size: 30px;
    color: #154995;
  }
  .news-box {
    width: 100%;
    height: auto;
    margin: 0 auto;
    padding-bottom: 3em;
  }
  /*news のtable*/
  table.table-news {
    width: 90%;
    text-align: left;
    border-collapse: collapse;
    margin: 1em auto 0;
  }
  table.table-news th {
    width: 50%;
    border-bottom: 0px #4d4d4d solid;
    line-height: 180%;
    text-align: left;
    vertical-align: middle;
    color: #000;
    font-size: 15px;
    font-weight: normal;
    display: inline-block;
  }
  table.table-news td {
    width: 100%;
    display: block;
    line-height: 180%;
    text-align: left;
    vertical-align: middle;
    color: #000;
    font-size: 15px;
    font-weight: normal;
    margin-bottom: 1.5em;
  }
  table.table-news th span {
    display: inline-block;
    width: 80px;
    font-size: 10px;
    text-align: center;
    border: 1px solid #154995;
  }
  table.table-news tr th a, table.table-news tr td a {
    text-decoration: none;
    color: #000;
  }
	
table.table-news tr:nth-child(n+6) {
display:none;
}	
	
	
  .news-archive {
    width: 95%;
    max-width: 300px;
    background-color: #004c97;
    color: #fff;
    padding: 20px;
    display: block;
    margin: 3em auto 0;
    text-align: center;
    text-decoration: none;
  }
  .news-archive a {
    color: #4d4d4d;
    font-size: 15px;
  }
  /* ===================
 グーグルマップ
====================== */
  .access-wrap {
    width: 100%;
    margin: 0 auto 3em;
  }
  .map-box {
    width: 100%;
    max-width: 1100px;
    margin: 0 auto 1em;
    text-align: center;
  }
  .gmap {
    max-width: 1100px;
    width: 100%;
    height: 380px;
    position: relative;
    margin: 0 auto;
  }
  .gmap iframe {
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
  }
  .clone-nav {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2;
    width: 100%;
    transition: .3s;
    -ms-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  .is-show {
    transform: translateY(0);
  }
  /* ===================
 フォーム関連
====================== */
  input, select {
    border: solid 1px #CCC;
    background-color: #FFFFFF;
    color: #4d4d4d;
    padding: 0.5em;
    margin: 0.5em;
    height: 2.5em;
    cursor: pointer;
    vertical-align: middle;
  }
  textarea {
    border: solid 1px #CCC;
    background-color: #FFFFFF;
    color: #4d4d4d;
    padding: 0.5em;
    margin: 0.5em;
  }
  input#submit_button {
    width: 18%;
    cursor: pointer;
  }
  input#reset_button {
    width: 18%;
    cursor: pointer;
  }
  .hissu {
    text-align: center;
    font-size: 12px;
    line-height: 140%;
    color: #FFF;
    background-color: #D8070B;
    display: inline-block;
    padding: 5px;
    margin: 0px 0 0 10px;
  }
  /* ===================
 ページトップへ
====================== */
  #page_top {
    width: 50px;
    height: 50px;
    position: fixed;
    right: 10px;
    bottom: 10px;
    background: linear-gradient(90deg, rgba(158, 212, 255, 1) 0%, rgba(241, 247, 178, 1) 100%);
    opacity: 0.8;
    border-radius: 50%;
  }
  #page_top a {
    position: relative;
    display: block;
    width: 50px;
    height: 50px;
    text-decoration: none;
  }
  #page_top a::before {
    font-family: FontAwesome;
    content: '\f106';
    font-size: 25px;
    color: #fff;
    position: absolute;
    width: 25px;
    height: 25px;
    top: 0;
    bottom: 0;
    right: 0;
    left: 0;
    margin: auto;
    text-align: center;
  }
  /* ===================
 海梟会
====================== */
  /*トップ*/
  .bg1 {
    background: linear-gradient(90deg, rgba(226,242,255,1) 0%, rgba(255, 255, 255, 1) 50%, rgba(251,253,232,1) 100%);
  }
  .top-main {
    width: 100%;
    max-width: 1600px;
    margin: 0 auto;
    background-image: url("../img/top_main_sp.jpg");
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    aspect-ratio: 860/800;
  }
  .top-logo {}
  .top-logo img {
    display: block;
    width: 20%;
    position: absolute;
    top: 30%;
    right: 5%;
  }
  .page-ttl {
    text-align: center;
    position: relative;
    padding: 5px 0;
    font-family: "Sawarabi Mincho", serif;
  }
  .page-ttl h2 {
    font-size: 25px;
    padding-left: 15px;
    margin: 10px 0;
    color: #076fb8;
    font-weight:normal;
    letter-spacing: 0em;
  }
  .page-ttl h2::before {
    background-color: #2ea8e1;
    bottom: -10px;
    content: "";
    height: 5px;
    left: 50%;
    position: absolute;
    transform: translateX(-50%);
    width: 40px;
    color: #076fb8;
  }
  .menu-list {
    width: 100%;
    margin: 3em auto 0;
    padding: 0 1em;
  }
  .flex-box-01 {
    width: 100%;
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    align-items: flex-start;
    text-align: center;
    margin: 3em auto 0;
  }
  .flex-box-01 .flex-item {
    display: flex;
    flex-direction: column;
    width: calc(100% / 2 - 1em);
    height: 265px;
    margin: 1em 0.5em;
    text-align: left;
    line-height: 170%;
    font-size: 14px;
    border: 1px #CCC solid;
    border-width: 0px 0px 1px 0px;
    padding: 0.5em;
    box-shadow: 3px 3px 12px -7px #3897c7;
  }
   @media (max-width: 640px) {
       .flex-box-01 .flex-item {
         height: 180px;
  }
  }
  @media (max-width: 480px) {
    .flex-box-01 .flex-item {
      height: 150px;
    }
  }
  .flex-box-01 .flex-item img {
    width: 50%;
    display: block;
    margin: 0 auto;
  }
	

	.img_trim{
		width:100%;
		padding:0.5em;
	}	
	

	
	
.flex-box-news01 .flex-item03{
/*width: calc(165% / 2 - 1%);*/
margin: 0.5%;
/*background-color: #eee;
border: 1px #CCC solid;
border-width: 0 0px 1px 1px;*/
padding:0.5em;
text-align: left;
line-height: 150%;
font-size:16px;
width:100%;
}

.flex-box-news01 .flex-item03 p{
font-size:16px;
text-align: left;
}
	
.flex-box-news01 .flex-item03 ol li{
list-style-position:inherit;
margin:0 0 0 1em;
}
	
	
/**********お知らせ***********/
.flex-box-news01{
width:100%;	
/*display:flex;
justify-content: center;
align-items: flex-start;*/
text-align: left;
margin:0 auto;
}
.flex-box-news01 .flex-item{
/*width: calc(100% / 2 - 1%);*/
margin: 0.5%;
/*background-color: #eee;
border: 1px #CCC solid;
border-width: 0 0px 1px 1px;*/
padding:0.5em;
text-align: left;
line-height: 150%;
font-size:16px;
}
	
	
.text-ttl-021{
line-height: 160%;
padding: 0px 5px 0px 5px;
font-weight: bold;
text-align: center;
color: #006464!important;
font-size: 15px;	
font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;	
}	

.news-section{width:100%;margin:-1em auto;padding:0 0em; }

.text-ttl-031{
font-size: 14px;
line-height: 160%;
text-align: right;
border-style: none;	
padding-left: 3%;
padding-right: 2%;
}
	
.archive-box{
/*border: solid 5px #DDD;*/
width: 90%;
/*height: 300px;*/
padding:0.5em 0;
/*overflow: auto;*/
background-color:;
margin:1em auto 1em;
/*
border:#727171 solid 1px;
border-width: 1px 0px 1px 0px;
*/
}
	
  .ja-t {
    font-size: 15px;
    font-weight: bold;
    text-align: center;
    color: #076fb8;
    transform: translateY(5px);
    border-bottom: 1px solid #0855a5;
    width: 90%;
    margin: 0 auto;
  }
  .flex-box-01 .flex-item a:hover {
    opacity: 0.7;
  }
  .en-t {
    color: #076fb8;
    font-size: 14px;
    text-align: center;
    transform: translateY(10px);
    line-height: 1;
  }
  .link-sec {
    background-color: #f8f8f8;
    padding: 3em 0;
    margin-top: 5em;
  }
  .link-cnt {
    width: 100%;
    max-width: 850px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
  }
  @media (max-width: 960px) {
    .link-cnt {
      flex-wrap: wrap;
    }
  }
  .link-cnt a {
    width: 100%;
    text-align: center;
    margin: 0.8em 0;
    font-size: 14px;
  }
  @media (max-width: 960px) {
    .link-cnt a {
      width: 50%;
    }
  }
  @media (max-width: 640px) {
    .link-cnt a {
      width: 100%;
    }
  }
  .sns-wrap {
    width: 100%;
    max-width: 250px;
    display: flex;
    margin: 0 auto;
    padding-top: 2em;
  }
  .sns-wrap a {
    display: block;
    width: calc(100% / 3 - 2em);
    margin: 1em;
  }
  .sns-wrap a img {
    display: block;
    max-width: 40px;
    margin: 0 auto;
  }
  /*活動内容*/
  .lead-txt {
    text-align: center;
    font-size: 1rem;
  }
  @media (max-width: 640px) {
    .lead-txt {
      font-size: 15px;
      letter-spacing: -0.04em;
    }
  }
  .l-page-ttl {
    text-align: center;
    position: relative;
    padding-bottom: 3em;
    font-family: "Sawarabi Mincho", serif;
    width: 100%;
    position: fixed;
    margin: 0 auto;
    padding-top: 5em;
    z-index: 1000;
    background: linear-gradient(90deg, rgba(226,242,255,1) 0%, rgba(255, 255, 255, 1) 50%, rgba(251,253,232,1) 100%);
  }
  .l-page-ttl h2 {
    text-align: center;
    color: #076fb8;
    font-size: 26px;
    margin: 0;
  }
  .l-page-ttl h2::before {
    background-color: #2ea8e1;
    bottom: -10px;
    content: "";
    height: 5px;
    left: 50%;
    position: absolute;
    transform: translate(-50%, -40px);
    width: 40px;
    color: #076fb8;
  }
  .t1 {
    margin-bottom: 0.2rem;
    padding: 0.3rem;
    border-left: 5px solid #005f98;
  }
  .t1 p {
    color: #005f98;
    font-weight: bold;
    font-size: 1rem;
    text-align: left;
    margin-left: 5px;
  }
  @media (max-width: 640px) {
    .t1 p {
      font-size: 18px;
    }
  }
  .activity-sec {
    padding: 6em 1em 10em;
  }
  .flex1 {
    display: flex;
  }
  .activity-cnt .flex1 {
    width: 100%;
    justify-content: space-around;
    flex-wrap: wrap;
  }
  @media (max-width: 640px) {
    .activity-cnt .flex1 {
      flex-wrap: wrap;
    }
  }
  .activity-cnt .flex1 .item1 {
    width: calc(50% - 60px);
    margin-top: 5em;
  }
  @media (max-width: 640px) {
    .activity-cnt .flex1 .item1 {
      width: 100%;
      margin-top: 2em;
    }
  }
  .activity-cnt .flex1 .item1:nth-child(even) {
    margin-left: 30px;
  }
  .activity-cnt .flex1 .item1:nth-child(odd) {
    margin-right: 30px;
  }
  @media (max-width: 640px) {
    .activity-cnt .flex1 .item1:nth-child(even) {
      margin-left: 0;
    }
    .activity-cnt .flex1 .item1:nth-child(odd) {
      margin-right: 0;
    }
  }
  .activity-cnt .flex1 .item1 img {
    display: block;
    margin-top: 1em;
  }
  .desc-txt {
    text-align: left;
    margin-top: 1em;
  }
	
	
.activity-cnt .flex1 .item4 {
   flex-wrap: wrap;
  }
  
  .activity-cnt .flex1 .item4 img {
    display: block;
    margin: 1em auto;
	width:100%;
	max-width:200px;
	  
  }
	
	.activity-cnt .flex1 .item4 .desc-txt {
     margin-top: 1em;
	 text-align: center;
	 word-break: break-all;	  
  }		
	
	
  /*  会長挨拶*/
  .greeting-sec {
    padding: 6em 1em 10em;
  }
  .greeting-cnt .flex1 {
    flex-wrap: wrap;
  }
  .greeting-cnt .flex1 .item1 {
    width: 100%;
  }
  .greeting-cnt .flex1 .item2 {
    width: 100%;
  }
	

.greeting-cnt .flex1 .item3 {
    width: 100%;
  }
	
.greeting-cnt .flex1 .item3 .kailogo{
    width: 90%;
	text-align: center;
	margin:0 auto;
  }
	
	
  .t2 {
    font-size: 15px;
    font-weight: bold;
    margin-top: 1em;
    margin-left: 0em;
	  text-align: center;
  }
  .t3 {
    font-size: 20px;
    font-weight: bold;
    margin-left: 0em;
	  text-align: center;
  }
  .greeting-txt {
    margin-top: 1em;
  }
	
	
/*役員 のtable*/
table.table-01 {
width:100%;
border: 1px #ccc solid;	
text-align: left;
/*border-collapse: separate; */
border-spacing: 10px; 
background-color:#FFF;
margin-bottom: 3em;	
}
table.table-01 th {
padding:0.2em;	
border: 1px #ccc solid;
border-width: 1px 1px 1px 1px;
line-height:180%;
text-align:center;
text-decoration: none;	
vertical-align:top;
font-size:13px;
background-color: #efefef;		
}
table.table-01 td {
padding:0.2em;	
border: 1px #CCC solid;
border-width: 1px 1px 1px 1px;
line-height:180%;
text-align:center;
text-decoration: none;		
vertical-align:middle;
background-color:#FFF;
font-size:13px;	
word-break : break-all;
}

table.table-01 tr td:nth-of-type(1){width:20%;text-align: center;}/***1列め***/
table.table-01 tr td:nth-of-type(2){width:31%;text-align: center;}/***2列め***/
table.table-01 tr td:nth-of-type(3){text-align: center;}/***3列め***/	
table.table-01 tr td:nth-of-type(4){width:20%;text-align: center;}/***3列め***/	

	
.btn-box{
width:100%;	
text-align: center;
}	
	
.btn-01 {
width:55%;
display: inline-block;		
padding:0.7em;
font-weight:400;
align-items: center;	
text-decoration: none !important;
font-family: 'ヒラギノ角ゴ Pro W3', 'Hiragino Kaku Gothic Pro', Meiryo, メイリオ, Osaka, 'MS PGothic', arial, helvetica, sans-serif;
text-align:center;
background-color: #fff;	
margin: 1em;
border-radius: 50px;
box-shadow: 2px 2px 10px #ccc;
color: #076fb8!important;
font-weight: bold;
font-size:18px;
}
	
.text-ttl-01{
font-size: 16px;
line-height: 160%;
font-weight: bold;
text-align: left;
}
	
.p-01{
font-size: 15px;
color: #000;
text-align: left;
word-break: break-all;	
line-height: 180%;
padding:0em 0 0 0;
}
	
table.table-03 {
width:100%;	
margin:0 auto;
flex-grow: 1;	
border: 1px #ccc solid;	
text-align: left;
/*border-collapse: separate; */
border-spacing: 10px; 
background-color:#FFF;
margin-bottom: 2em;	
background-color: #eee;	
}

table.table-03 th {
padding:0.5em;	
border: 1px #ccc solid;
border-width: 0 1px 1px 1px;
line-height:180%;
text-align:center;
text-decoration: none;	
vertical-align:middle;
font-size:15px;	
}
table.table-03 td {
padding:0.3em;	
border: 1px #CCC solid;
/*border-width: 0 0 0 1px 1px;*/
line-height:180%;
text-align:left;
text-decoration: none;		
vertical-align:middle;
background-color:#FFF;
font-size:15px;	
word-break : break-all;
}	
		
table.table-03 tr td:nth-of-type(1){width:45%; border-width: 0 1px 1px 0;padding-right: 0.2em;}/***1列め***/
table.table-03 tr td:nth-of-type(2){width:35%;border-width: 0 0 1px 0; font-size: 14px; padding-left: 0.2em;text-align: center;}/***2列め***/
table.table-03 tr td:nth-of-type(3){width:20%; text-align: center;}/***3列め***/	
	
	
  @media (max-width: 280px) {
    .ja-t {
      font-size: 10px;
      transform: translateY(10px);
    }
    .en-t {
      font-size: 10px;
      transform: translateY(20px);
    }
    .flex-box-01 .flex-item  {
      height: 120px;
    }
    .company-address {
      font-size: 12px;
    }
    .footer-contact-wrap a p {
      width: 38%;
    }
    .footer-link-item {
      width: 58%;
    }
  }
  
  
  
}