@charset "UTF-8"

/* 共通部分
-----------------------------*/
html {
     height: 100%;
     font-size: 100%;
}

body {
     margin: 0;
     padding: 0;
     font-family: "游ゴシック Medium", "Yu Gothic Medium", "游ゴシック体", "YuGothic", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "メイリオ", "Meiryo", "verdana", sans-serif;
     -webkit-text-size-adjust: 100%;
}
a {
     text-decoration: none;
}
p {
     color: #000;
     font-size: 14px;
}
img {
     max-width: 100%;
     height: auto;
}
li {
     font-size: 14px;
}


/* ヘッダー
-------------------------------*/
/* PC用ヘッダー */
.pc-header {
     display: flex;
     justify-content: space-between;
     margin: -30px 0 -30px 0;
}
.pc-h1 {
     margin-left: 30px;
}
.pc-nav  ul {
     display: flex;
     list-style: none;
     margin: 30px 30px 0 0;
}
.pc-nav li {
     padding: 20px;
}
.pc-nav a {
     color: #432;
     font-weight: bold;
     font-size: large;
}
@media screen and (min-width: 970px) {
.sp-header {
    display: none;  /*970px以上ではスマホ用を表示しない */
}
}
/* スマホ用ヘッダー */
@media screen and (max-width: 970px) {
.pc-header {
    display: none;  /*970px以下ではPC用を表示しない */
}
.sp-header {
     display: flex;
     margin: -30px 0 -30px 0;
}
.sp-h1 {
     margin-left: 20px;
}

.menu-btn {
    position: fixed;
    top: 10px;
    right: 10px;
    display: flex;
    height: 60px;
    width: 60px;
    justify-content: center;
    align-items: center;
    z-index: 90;
    background-color: #3584bb;
}
.menu-btn span,
.menu-btn span:before,
.menu-btn span:after {
    content: '';
    display: block;
    height: 3px;
    width: 25px;
    border-radius: 3px;
    background-color: #ffffff;
    position: absolute;
}
.menu-btn span:before {
    bottom: 8px;
}
.menu-btn span:after {
    top: 8px;
}
#menu-btn-check:checked ~ .menu-btn span {
    background-color: rgba(255, 255, 255, 0);/*メニューオープン時は真ん中の線を透明にする*/
}
#menu-btn-check:checked ~ .menu-btn span::before {
    bottom: 0;
    transform: rotate(45deg);
}
#menu-btn-check:checked ~ .menu-btn span::after {
    top: 0;
    transform: rotate(-45deg);
}
#menu-btn-check {
    display: none;
}
.sp-nav {
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 100%;/*leftの値を変更してメニューを画面外へ*/
    z-index: 80;
    background-color: #3584bb;
    transition: all 0.5s;/*アニメーション設定*/
}
.sp-nav ul {
    padding: 70px 10px 0;
}
.sp-nav ul li {
    border-bottom: solid 1px #ffffff;
    list-style: none;
}
.sp-nav ul li a {
    display: block;
    width: 100%;
    font-size: 15px;
    box-sizing: border-box;
    color:#ffffff;
    text-decoration: none;
    padding: 9px 15px 10px 0;
    position: relative;
}
.sp-nav ul li a::before {
    content: "";
    width: 7px;
    height: 7px;
    border-top: solid 2px #ffffff;
    border-right: solid 2px #ffffff;
    transform: rotate(45deg);
    position: absolute;
    right: 11px;
    top: 16px;
}
#menu-btn-check:checked ~ .sp-nav {
    left: 0;/*メニューを画面内へ*/
}
}
/* ヘッダーのアンダーライン（ホーム以外）
-------------------------------*/
.header-underline {
     border-top: 2px solid #f0f0f0;
}
/* パンくずリスト
-------------------------------*/
.breadcrumbs {
     display: flex;
     margin: -30px; 
}
.breadcrumbs li {
     list-style: none;
}
.breadcrumbs li a{
     color:#3584bb;
     font-size: small;
}
.breadcrumbs li::after{
     content: '>';
     display: inline-block;
     padding: 0 10px; /*左右に余白*/
}
.breadcrumbs li:last-child::after{
     display: none;
}

/* コンテンツのタイトル
-------------------------------*/
.title {
    text-align:center;
    font-size: x-large;
    font-weight: bold;
    margin-top: 20px;
    margin-bottom: 20px;
}
.under-double {
    border-bottom: double 5px;
}

/* PICK UP
-------------------------------*/
.pickup {
     display: flex;
     flex-flow: row wrap;
     justify-content: center;
}
.pickup-box {
     position: relative;
     margin: 30px;
     width: 80%;
     max-width: 380px;
}
.pickup-box img {
     width: 80%
     max-width: 380px;
}
.pickup-box h1 {
     margin: 0 0 -30px 0;
     font-size: medium;
     font-weight: bold;
     color: #000;
}
.pickup-box h2 {
     color: #000;
     font-size: 13px;
     font-weight: normal;

}


/*お知らせ（トップページも）
-------------------------------*/
.news {
     display: flex;
     flex-flow: row wrap;
     justify-content: center;
}
.news-list {
     list-style: none outside;
     margin: 0;
     padding: 0;
}
.news-item {
     display: frex;
     flex-wrap: wrap;
     text-decoration: none;
     background-color: #3584bb;
     border-radius: 10px;
     margin: 10px;
     padding: 1px 10px;
}
.news-item:hover{
  background: #2695CF; /* ラベルにマウスを乗せた時の背景色 */
}
.news-date {
     margin: 0;
     min-width: 140px;
     color: #fff;
     padding: 0 10px 0 0;
     font-size: 13px;
}
.news-category {
     margin: 0;
     padding: 0;
     background: #fff;
     color: #3584bb;
     text-align: center;
     display: inline-block;
     padding: 3px 8px;
     font-size: 12px;
     font-weight: bold;
     line-height: 1;
     border-radius: 10px;
}
.news-title {
     margin: 0 0 15px 0;
     font-size: 13px;
     color: #fff;
}
.read-more{
     text-align: center;
     margin-bottom: 10px;
}

.news_link_btn {
     margin: 20px auto;
     padding: 10px 10px;
     text-align: center;
     display: block;
     width: 250px;
     text-decoration: none;
     font-size: 14px;
     font-weight: bold;
     background: #fff;
     color: #3584bb;
     border: 2px solid #3584bb;
     border-radius: 100vh;
}



/* MAIN
-------------------------------*/
.main {
     display: flex;
     flex-flow: row wrap;
     justify-content: center;
}
.main-box1 {
     position: relative;
     margin: 10px;
     padding: 20px 10px;
     width: 320px;
     height: 180px;
     background-image: url(../images/gyoumu.jpg);
     background-repeat:  no-repeat;  
     background-size: cover; 
}
.main-box2 {
     position: relative;
     margin: 10px;
     padding: 20px 10px;
     width: 320px;
     height: 180px;
     background-image: url(../images/umi_info_2.jpg);
     background-repeat:  no-repeat;  
     background-size: cover; 
}
.main-box3 {
     position: relative;
     margin: 10px;
     padding: 20px 10px;
     width: 320px;
     height: 180px;
     background-image: url(../images/shinsei.jpg);
     background-repeat:  no-repeat;  
     background-size: cover; 
}
.main-box4 {
     position: relative;
     margin: 10px;
     padding: 20px 10px;
     width: 320px;
     height: 180px;
     background-image: url(../images/oshirase.jpg);
     background-repeat:  no-repeat;  
     background-size: cover; 
}
.main h1 {
     margin-top: -5px;
     margin-left: 10px;
     color: #fff;
     font-size: medium;
}
.main h2 {
     color: #fff;
     font-size: 14px;
     font-weight: normal;
     margin-left: 10px;
     
}




/*アクセス
-------------------------------*/
.access {
     display: flex;
     flex-flow: row wrap;
     justify-content: center;
}
.access ul {
     list-style: none;
}
.access ul li h1 {
     font-size: medium;
}

/* バナー
-------------------------------*/
.banner {
     display: flex;
     flex-flow: row wrap;
     justify-content: center;
}
.banner img {
     margin: 5px;
     width: 250px;
}
/* SNS
-------------------------------*/
.sns {
     display: flex;
     flex-flow: row wrap;
     justify-content: center;
}
.sns-box {
     padding: 10px;
     width: 110px;
    
}
.sns-box img {
     width: 45px;
     padding-left: 30px;
}
.sns-box p {
     font-size: 12px;
     font-weight: bold;
     text-align:center;
}
/* 各ページの設定
-------------------------------*/


/* サブページのコンテンツの表示範囲
-------------------------------*/
.sub-page {
     max-width: 800px;
     margin: auto auto 50px auto;
     padding: 5px;
}
.sub-page img {
     width: 450px;
     display: block;
     margin: 20px auto 20px auto;
}
.sub-page ul {
     list-style: none;
     margin-left:-45px;
}
.sub-page ul li {
     margin: 10px 0 10px 0;
}
.sub-page ul li ul {
     margin: 10px 0 10px -25px;
}
.center {
     text-align: center;
     margin-top: 30px;
     margin-bottom: 5px;
}
.caption {
     max-width: 450px;
     margin: 0 auto 10px auto;
     font-size: small;
}
.bold {
     font-weight: bold;
}

/* リード文
-------------------------------*/
.lead {
     text-align:center;
     margin: 10px;
}
.lead h2 {
     font-size: 14px;
     font-weight: normal;
     text-align: left;
     display: inline-block;
}

/* 灯台さぽのロゴサイズ
-------------------------------*/
.toudaisapo-logo {
     max-width: 200px;
     margin: 20px auto 20px auto;
}

/* リンクに進むボタン
-------------------------------*/
.link_btn {
     margin: 20px auto;
     padding: 10px 10px;
     text-align: center;
     display: block;
     max-width: 400px;
     text-decoration: none;
     font-size: 14px;
     font-weight: bold;
     background: #2695CF;
     color: #fff;
     border-radius: 100vh;
}


/* サブページコンテンツの表示範囲（上と下に空間）
-------------------------------*/
.contents {
     margin: 0 0 200px 0;
}


    
/*---------------------------------
アコーディオンボックス
--------------------------------*/
.contents {
     margin: 50px 0 100px 0;
}
.acbox{
  width: auto;
  font-size:0px; /* ラベルと開く部分を分離する時は数値を入れる */
  margin: 0 5px auto 5px; /* ボックス全体の位置調整 */
  padding: 10px;
}

.acbox label{
  width: auto;
  font-size: 16px; /* ラベルの文字サイズ */
  font-weight: bold;
  text-align: center;
  background: #3584bb; /* ラベルの背景色 */
  position: relative;
  display: block;
  padding:8px;
  border-radius: 4px; /* ラベルの角の丸み */
  cursor: pointer;
  color: #fff;
}

.acbox label:hover{
  background: #2695CF; /* ラベルにマウスを乗せた時の背景色 */
}

.acbox input{
  display: none;
}

.acbox label:after{
  color: #fff;
  content:"▼"; /* ラベルのアイコン */
  position: absolute;
  top: 50%;
  right: 15px;
  margin-top: -14px;
}

.acbox input:checked ~ label::after {
  content:"▲"; /* ラベルをクリックした後のアイコン */
}

.acbox div{
  height: 0px;
  overflow: hidden;
  opacity: 0;
  transition: 0.15s; /* 開閉スピードの設定 */
}

.acbox input:checked ~ div{
  height: auto;
  padding: 5px; /* 開いた部分の枠内の余白 */
  border-radius: 0px;
  background: #fff; /* 開いた部分の背景色 */
  opacity: 1;
}

.acbox input:checked ~ label {
  background: #2695CF; /* クリック後のラベルの背景色 */
}

.acbox-under {
  font-size: 16px; /* 開いた部分の文字サイズ */
  color: #000; /* 開いた部分の文字色 */
}
.acbox-under ul {
     margin: 0 0 30px -40px;
}

.acbox-under li {
     list-style: none;
     font-size: 14px;
     margin: 0 0 10px 0;
} 
.acbox-under h3 {
     font-weight: bold;
     font-size: medium;
}
.acbox-under h4 {
     font-weight: normal;
     font-size: 14px;
     margin-bottom: -30px;
}
.acbox-under h5 {
     font-weight: normal;
     font-size: 14px;
     margin: -10px 0 50px 0;
}
.acbox-under img {
     width: 450px;
     display: block;
     margin: 0 auto 10px auto;
}

.under_solid {
     border-bottom: solid 1px blue;
}
.site_link {
     max-width: 250px;
}
.btn {
     margin: auto;
     padding: 10px;
     color: #fff;
     background-color: #f56500;
     border-radius: 50vh;
}

     
/* サイトマップ
-------------------------------*/
.site_map {
     list-style: none;
}
.site_map h2{
     margin: 0 0 20px -20px;
     font-size: medium;
     font-weight: bold;
     color: #000;
}
.site_map ul {
     list-style: none;
     margin: 0 0 20px -20px;
}
.site_map ul li {
     font-size: 14px;
     font-weight: nomal;
     color: #000;
     margin: 0 0 0 -30px;
}
.site_map ul li ul{
     font-size: 12px;
     font-weight: nomal;
     color: #000;
     margin: 0 0 0 -30px;
}
.black {
     color: #000;
}

/* フッター
-------------------------------*/
/* PC用フッター*/
.footer {
     background-color: #3584bb;
     padding: auto;
}
.pc-footer {
     display: flex;
     flex-flow: row wrap;
     justify-content: center;
     margin: 0 0 -30px 0;
}
.pc-footer-nav  ul {
     display: flex;
     list-style: none;
     margin: 20px 0 0 0;
}
.pc-footer-nav li {
     padding: 10px;
}
.pc-footer-nav a {
     color: #fff;
     font-weight: bold;
     content: center;
}

@media screen and (min-width: 770px) {
.sp-footer {
    display: none;  /*770px以上ではスマホ用を表示しない */
}
}
/* スマホ用フッター */
@media screen and (max-width: 770px) {
.pc-footer {
    display: none;  /*770px以下ではPC用を表示しない */
}
.sp-footer {
     text-align:center;
     margin: 0 0 -30px 0;
}
.sp-footer-logo {
    padding: 30px 0 0 0;
}
.sp-footer-nav  ul {
     list-style: none;
     margin: 0 0 50px -32px;
}
.sp-footer-nav li {
     padding: 5px;
}
.sp-footer-nav a {
     color: #fff;
     font-weight: bold;
     content: center;
}
}
/*コピーライト*/
.copyright {
     color: #fff;
     text-align:center;
     padding: 0 0 20px 0;
}
