@charset "utf-8";

/*
Theme Name: 岩国地区自衛隊協力会
Theme URI: https://iwakuni-jca.com
Description: 私たち自衛隊協力会は、地域社会と自衛隊との橋渡し役を担うことを目的とした団体です。自衛隊の活動への理解と支持を深め、自衛隊員の皆様が安心して職務を遂行できるよう、様々な面から支援・協力を行っています。
Version: 202603
Author: Owls-Corporation
Author URI: https://owls-corp.jp
*/
/* ***************************************************************** 
*	共通設定
* ***************************************************************** */
*, *:before, *:after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  line-height: 2em;
  font-size: 16px;;
  list-style: none;
  text-decoration: none;
}
:root {
  --color-main: #002063;
  --color-sub: #3fa9f5;
  --color-bg: #e6e6e6;
}
.mb{
  margin-bottom: 100px;
}
.box{
  max-width: 1100px;
  margin: 0 auto;
}

@media (min-width: 751px) {
  a[href*="tel:"] {
    pointer-events: none;
    cursor: default;
    text-decoration: none;
  }
}
.br-sp {
  display: none;
}
.br-pc {
  display: inline;
}
@media screen and (max-width: 750px) {
  .br-sp {
    display: inline;
  }
  .br-pc {
    display: none;
  }
}
.sp-break::after {
  content: "　"; /* PCでは全角スペース */
}
@media (max-width:768px) {
  .sp-break {
    display: block;
  }
  .sp-break::after {
    content: ""; /* スマホではスペース消す */
  }
}
/* ***************************************************************** 
*	基本設定
* ***************************************************************** */
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  font-weight: 500;
  font-size: 16px;
  background: #fff;
  color: #000;
  line-height: 190%;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

/* 画像
---------------------------------------------------- */
img {
  border: 0;
  padding: 0px;
  margin: 0px
}
ul {
  margin: 0;
  padding: 0;
  list-style: disc;
}
li {
  margin: 0;
  padding: 0;
}

/* *****************************************************************
*	全体Wrapper
* ***************************************************************** */
.wrapper {
  margin: 0 auto;
}
/* ***************************************************************** 
*	ヘッダー
* ***************************************************************** */
#header {
  width: 100%;
  background: var(--color-main);
}
.header-inner {
    max-width: 1920px;
    overflow: hidden;
    margin: 0px auto;
    padding: 10px;
    display: flex;
    align-items: center;
}
#header h1 {
  margin: 0;
  text-align: left;
}
/* トップナビゲーション
---------------------------------------------------- */
/* ----------------------------------------------------
   トップナビゲーション
---------------------------------------------------- */
#nav {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  text-align: right;
  z-index: 9999;
}

#nav ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.main-navigation {
  clear: both;
  margin: 0 auto;
  position: relative;
}

ul.nav-menu,
div.nav-menu > ul {
  margin: 0;
  padding: 0;
}

/* 1階層目 */
.nav-menu > li {
  display: inline-block;
  position: relative;
  margin: 0;
  border-right: 1px solid #ccc;
}

.nav-menu > li:last-child {
  border-right: none;
}

/* リンク */
.nav-menu > li > a {
    position: relative;
    display: block;
    padding: 5px 30px;
    color: #FFF;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    background: transparent;
    transition: color 0.3s ease;
}

/* hover時の文字色 */
.nav-menu > li > a:hover {
  color: #FFF;
  background: transparent;
}

/* 下線アニメーション */
.nav-menu > li > a::after {
  content: "";
  position: absolute;
  left: 30px;
  bottom: 8px;
  width: calc(100% - 60px);
  height: 2px;
  background: #FFF;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform 0.3s ease;
}

/* hover時に下線表示 */
.nav-menu > li:hover > a::after,
.nav-menu > li > a:hover::after {
  transform: scaleX(1);
}

/* current時も背景なし＋下線表示 */
.nav-menu > .current_page_item > a,
.nav-menu > .current_page_ancestor > a,
.nav-menu > .current-menu-item > a,
.nav-menu > .current-menu-ancestor > a,
.nav-menu > .current-post-ancestor > a {
  color: #FFF;
  background: transparent;
}

.nav-menu > .current_page_item > a::after,
.nav-menu > .current_page_ancestor > a::after,
.nav-menu > .current-menu-item > a::after,
.nav-menu > .current-menu-ancestor > a::after,
.nav-menu > .current-post-ancestor > a::after {
  transform: scaleX(1);
}

/* ----------------------------------------------------
   サブメニュー
---------------------------------------------------- */
.nav-menu .sub-menu,
.nav-menu .children {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: 99999;
  padding: 0;
  background: #eee;
}

.nav-menu .sub-menu ul,
.nav-menu .children ul {
  top: 0;
  left: 100%;
}

.nav-menu li:hover > .sub-menu,
.nav-menu li:hover > .children {
  display: block;
}

.nav-menu .sub-menu li,
.nav-menu .children li {
  display: block;
  border-right: none;
}

.nav-menu .sub-menu a,
.nav-menu .children a {
  display: block;
  width: 200px;
  padding: 12px 20px;
  margin: 0;
  color: #333;
  text-decoration: none;
  background: #eee;
  transition: background 0.3s ease, color 0.3s ease;
}

.nav-menu .sub-menu a:hover,
.nav-menu .children a:hover {
  background: #f5f5f5;
  color: #000;
}

/* サブメニューには下線アニメーションを付けない */
.nav-menu .sub-menu a::after,
.nav-menu .children a::after {
  display: none;
}
.toggle {
  display: none;
}
.menu-toggle {
  width: 40px;
  height: 40px;
}
.hamburger {
  display: none;
}
/* ハンバーガーメニュー
---------------------------------------------------- */
/*!
* Hamburgers
* @description Tasty CSS-animated hamburgers
* @author Jonathan Suh @jonsuh
* @site https://jonsuh.com/hamburgers
* @link https://github.com/jonsuh/hamburgers
*/
.hamburger {
  padding: 10px 2px;
  display: inline-block;
  cursor: pointer;
  transition-property: opacity, -webkit-filter;
  transition-property: opacity, filter;
  transition-property: opacity, filter, -webkit-filter;
  transition-duration: 0.15s;
  transition-timing-function: linear;
  font: inherit;
  color: inherit;
  text-transform: none;
  background-color: transparent;
  border: 0;
  margin: 0;
  overflow: visible;
}
.hamburger:hover {
  opacity: 0.7;
}
.hamburger-box {
  width: 40px;
  height: 24px;
  display: inline-block;
  position: relative;
}
.hamburger-inner {
  display: block;
  top: 50%;
  margin-top: -2px;
}
.hamburger-inner, .hamburger-inner::before, .hamburger-inner::after {
  width: 35px;
  height: 3px;
  background-color: #000;
  border-radius: 4px;
  position: absolute;
  transition-property: -webkit-transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  transition-duration: 0.15s;
  transition-timing-function: ease;
}
.hamburger-inner::before, .hamburger-inner::after {
  content: "";
  display: block;
}
.hamburger-inner::before {
  top: -10px;
}
.hamburger-inner::after {
  bottom: -10px;
}
/*
* Spin
*/
.hamburger--spin .hamburger-inner {
  transition-duration: 0.3s;
  transition-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin .hamburger-inner::before {
  transition: top 0.1s 0.34s ease-in, opacity 0.1s ease-in;
}
.hamburger--spin .hamburger-inner::after {
  transition: bottom 0.1s 0.34s ease-in, -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
  transition: bottom 0.1s 0.34s ease-in, transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19), -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);
}
.hamburger--spin.is-active .hamburger-inner {
  -webkit-transform: rotate(225deg);
  transform: rotate(225deg);
  transition-delay: 0.14s;
  transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
}
.hamburger--spin.is-active .hamburger-inner::before {
  top: 0;
  opacity: 0;
  transition: top 0.1s ease-out, opacity 0.1s 0.14s ease-out;
}
.hamburger--spin.is-active .hamburger-inner::after {
  bottom: 0;
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  transition: bottom 0.1s ease-out, -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
  transition: bottom 0.1s ease-out, transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1), -webkit-transform 0.3s 0.14s cubic-bezier(0.215, 0.61, 0.355, 1);
}
/* トップヘッダー画像
---------------------------------------------------- */
.top-header {
  width: 100%;
  margin: 0px auto;
  text-align: center;
}
/* ***************************************************************** 
*	メイン（本文）コンテンツ
* ***************************************************************** */

/* 見出し
---------------------------------------------------- */
h1 {
  font-size: 24px;
}
h2 {
  font-size: 42px
}
h3 {
  font-size: 24px;
}
h4 {
  font-size: 22px;
}
h5 {
  font-size: 20px;
}
h6 {
  font-size: 20px;
}
/* テキスト
---------------------------------------------------- */
p {
  font-size: 16px;
}
.layout{
  max-width: 1200px;
  margin: 0 auto;
}
.intro {
    text-align: center;
    font-family: "Zen Old Mincho", serif;
    margin: 50px auto;
}
.intro h2{
  color: var(--color-main);
  margin-bottom: 10px;
  font-weight: 400;
}
.intro p{
  line-height: 3em;
}
.facebook{
  margin-top: 50px;
}

.organization{
  background-color: var(--color-bg);
  padding: 50px 0;
  margin-bottom: 0;
}
.organization_box{
  display: flex;
  flex-wrap: wrap;;
}
.organization_item{
  padding: 0 10px;
  width : calc(100% / 2) ;
  margin-bottom: 50px;
}
.organization_img{
  width: 100%;;
}

.btn {
    display: block;
    padding: 10px 40px;
    background: #0b2e6d;
    color: #fff;
    font-size: 22px;
    font-weight: 500;
    text-decoration: none;
    position: relative;
    transition: background 0.3s ease;
    width: 100%;
    max-width: 300px;
    margin: 30px auto 0;
    text-align: center;
}


/* テキスト */
.btn span {
  display: inline-block;
}

/* 矢印（Font Awesome） */
.btn::after {
  content: "\f105"; /* > */
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  font-size: 18px;
  display: inline-block;
  transition: transform 0.3s ease;
  margin-left: 10px;
}

/* ホバー時 */
.btn:hover::after {
  transform: translateX(8px);
}

/* おまけ（少し高級感出すなら） */
.btn:hover {
  background: #123a85;
  color: #FFF;
}


.footer_slider {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.footer_slider_track {
  display: flex;
  width: max-content;
  animation: footerSlide 30s linear infinite;
}

.slider_img {
  flex: 0 0 auto;
  width: 20vw;
  min-width: 240px;
}

.slider_img img {
  display: block;
  width: 100%;
  height: 280px;
  object-fit: cover;
}

@keyframes footerSlide {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/* パンくずリスト
---------------------------------------------------- */
.breadcrumb {
  margin: 10px 0 0px 0;
  line-height: 120%;
}
.breadcrumb div {
  display: inline;
  font-size: 11px;
  color: #999;
}
.breadcrumb span, .breadcrumb span a {
  color: #45aab8;
}
.breadcrumb ol {
  margin: 0px;
}
.breadcrumb li {
  margin: 0px;
  display: inline;
}
/* WP必須
---------------------------------------------------- */
.wp-caption {
  max-width: 100%;
}
.wp-caption-text {
  font-size: 90%;
  text-align: center;
}
/* WP用（必要に応じて使用）
.sticky {}
.gallery-caption {}
.bypostauthor {}
*/
/* Text meant only for screen readers. */
.screen-reader-text {
  clip: rect(1px, 1px, 1px, 1px);
  position: absolute !important;
  height: 1px;
  width: 1px;
  overflow: hidden;
}
.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  color: #21759b;
  display: block;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: bold;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000; /* Above WP toolbar. */
}
/* *****************************************************************
*	フッター
* ***************************************************************** */
#footer {
  background: var(--color-bg);
  clear: both;
  width: 100%;
}
.footer-inner {
    margin: 0px auto;
    padding: 50px 0px;
    max-width: 1000px;
    display: flex;
    align-items: flex-end;
    /* justify-content: space-between; */
}

/* 左エリア */
.footer_info {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-shrink: 0;
  text-align: center;
}

.footer_logo {
  width: 100%;
}

.footer_text {
  line-height: 1.5;
}

.footer_address {
    margin: 10px 0 0;
    font-size: 16px;
}

/* 中央ナビ */
.footer_nav {
  display: flex;
  padding-left: 50px;
  flex: 1;
  justify-content: center;
}

.footer_nav_list {
    margin: 0;
    padding: 0;
    list-style: none;
    width: 50%;
}

.footer_nav_list li {
    margin-left: 15px;
}

.footer_nav_list li + li {
  margin-top: 8px;
}
.footer_nav_list p{
  padding-bottom: 5px;
  font-weight: 500;
}
.footer_nav_list a {
    font-size: 16px;
    text-decoration: none;
    transition: opacity 0.3s ease;
    color: #000;
}

.footer_nav_list a:hover {
  opacity: 0.7;
}

/* 右SNS */
.footer_sns {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-shrink: 0;
}

.footer_sns_link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 34px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.footer_sns_link:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

/* Facebook */
.footer_sns_link .fa-facebook-f {
  color: #1877f2;
}

#copyright {
  font-size: 16px;
  line-height: 1.5em;
  color: #FFF;
  text-align: center;
  position: relative;
  margin: 0;
  padding: 10px;
  background: var(--color-main);
}



/* *****************************************************************
*	CSS3アニメーション
* ***************************************************************** */
.img-anime2 img {
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}
.img-anime2:hover img {
  -webkit-transform: scale(1.3);
  transform: scale(1.3);
}
/* *****************************************************************
*   レスポンシブ（メディアクエリ）
* ***************************************************************** */

/* Tablet (Portrait) 画面の横幅が751px〜1299pxまで
---------------------------------------------------- */
@media only screen and (min-width: 751px) and (max-width: 1299px) {
  .wrapper {
    width: 100%;
    margin: auto;
    padding: 30px 30px;
  }
  .header-inner {
    width: 100%;
    padding: 10px 20px;
  }
  #nav {
    float: none;
    width: 100%;
    margin: 0 auto;
    padding: 0;
  }
  .footer-inner {
    width: 100%;
    padding: 0px 0px;
  }
}
/* Mobile (Portrait) 画面の横幅が300px~750pxまで（基本）
---------------------------------------------------- */
@media only screen and (max-width: 750px) {
  .wrapper {
    width: 100%;
    padding: 30px 20px;
  }
  .header-inner {
    width: 100%;
    margin: auto;
    padding: 10px;
  }
  #nav {
    display: none;
    position: absolute;
    top: 0;
    float: none;
    text-align: center;
    width: 100%;
    background: #fefefe;
    margin: 0 auto 40px auto;
    padding: 0;
  }
  .nav-menu li a {
    color: #333;
    display: block;
    font-size: 15px;
    padding: 20px 10px;
    text-decoration: none;
  }
  .nav-menu li {
    display: block;
    float: none;
    border-bottom: 1px solid #ededed;
  }
  .toggle {
    display: block;
    float: right;
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 10000;
  }
  p {
    font-size: 14px;
  }
  .footer-inner {
    width: 100%;
    padding: 0px 0px;
  }
}