@charset "UTF-8";
/* =================================================================================================

　基本スタイル

================================================================================================= */
/* CSS Document */
/* ----------------------------------------------------------------------------
　リセット
---------------------------------------------------------------------------- */
body a {
  outline: 0;
}

body, h1, h2, h3, h4, h5, ul, li, dl, dt, dd, p, strong, address {
  margin: 0;
  padding: 0;
}

ul, li {
  list-style: none;
}

address {
  font-style: normal;
}

img {
  border: 0;
  vertical-align: bottom;
  -ms-interpolation-mode: bicubic;
}

input:focus {
  outline: none;
}

select:focus {
  outline: none;
}

textarea:focus {
  outline: none;
}

/* ----------------------------------------------------------------------------
　フォントサイズ
---------------------------------------------------------------------------- */
html {
  font-size: 16px;
}

@media screen and (max-width: 800px) {
  html {
    font-size: 15px;
  }
}
@media screen and (max-width: 592px) {
  html {
    font-size: 14px;
  }
}
@media screen and (max-width: 350px) {
  html {
    font-size: 12px;
  }
}
body {
  -webkit-text-size-adjust: 100%;
}

/* ----------------------------------------------------------------------------
　フォントファミリー
---------------------------------------------------------------------------- */
body {
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
  color: #222;
  overflow-x: hidden !important;
}

input {
  font-family: "Noto Sans Japanese", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;
}

/* ----------------------------------------------------------------------------
　リンク
---------------------------------------------------------------------------- */
a {
  color: #045da5;
}

a:hover {
  text-decoration: none;
}

/* ----------------------------------------------------------------------------
　要素の表示・非表示
---------------------------------------------------------------------------- */
.is-visible-xld,
.is-visible-ld,
.is-visible-md,
.is-visible-sd {
  display: none;
}

@media all and (max-width: 1366px) {
  .is-visible-xld {
    display: block;
  }

  .is-hidden-xld {
    display: none;
  }
}
@media screen and (max-width: 1024px) {
  .is-visible-ld {
    display: block !important;
  }

  .is-hidden-ld {
    display: none !important;
  }
}
@media screen and (max-width: 800px) {
  .is-visible-md {
    display: block !important;
  }

  .is-hidden-md {
    display: none !important;
  }
}
@media screen and (max-width: 592px) {
  .is-visible-sd {
    display: block !important;
  }

  .is-hidden-sd {
    display: none !important;
  }
}
/* ----------------------------------------------------------------------------
　画像ぼやけ対策
---------------------------------------------------------------------------- */
img {
  -webkit-backface-visibility: hidden;
}

/* ----------------------------------------------------------------------------
　デバッグ用
---------------------------------------------------------------------------- */
#widthdebug {
  position: fixed;
  left: 0rem;
  bottom: 0rem;
  background-color: #000;
  color: #fff;
  font-size: 0.875rem;
  z-index: 1000000;
}

html {
  overflow-x: hidden !important;
}

body {
  overflow-x: hidden !important;
}

main {
  display: block;
  overflow-x: hidden !important;
}

/* ----------------------------------------------------------------------------
　ヘッダ
---------------------------------------------------------------------------- */
header {
  position: fixed;
  top: 0rem;
  left: 0rem;
  z-index: 2147483645;
  width: 100%;
  box-sizing: border-box;
  border-bottom: 1px solid #ddd;
  background-color: #fff;
  padding: 0.7rem 1.5rem;
}
@media screen and (max-width: 592px) {
  header {
    padding: 0.6rem 1rem;
  }
}
header a {
  text-decoration: none;
}

header .logo {
  width: 202px;
}
@media screen and (max-width: 592px) {
  header .logo {
    width: 45%;
  }
}
header .logo img {
  width: 100%;
}

header .menu_open a {
  display: block;
  width: 23px;
  height: 100%;
  position: absolute;
  top: 0rem;
  right: 1.5rem;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 592px) {
  header .menu_open a {
    width: 20px;
  }
}
header .menu_open a img {
  width: 100%;
}
header .menu_open a:hover {
  opacity: 0.6;
}

#header_menu {
  display: none;
  width: 590px;
  height: 100%;
  position: fixed;
  top: 0rem;
  right: 0rem;
  z-index: 2147483647;
  background-color: #fff;
  box-shadow: 10px 10px 10px 10px rgba(0, 0, 0, 0.3);
}
@media screen and (max-width: 592px) {
  #header_menu {
    width: 90%;
  }
}
#header_menu.active {
  display: block;
  animation: headerMenuAnime 0.3s ease-in-out 0s forwards;
}

@keyframes headerMenuAnime {
  0% {
    transform: translateX(100%);
  }
  100% {
    transform: translateX(0%);
  }
}
#header_menu .close {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
}

#header_menu .close a {
  display: block;
}
#header_menu .close a img {
  width: 22px;
}
@media screen and (max-width: 592px) {
  #header_menu .close a img {
    width: 15px;
  }
}
#header_menu .close a:hover {
  opacity: 0.8;
}

#header_menu .header_menu_scroll {
  overflow-y: scroll;
  -webkit-overflow-scrolling: auto;
}

#header_menu .header_menu_scroll::-webkit-scrollbar {
  width: 5px;
}

#header_menu .header_menu_scroll::-webkit-scrollbar-thumb {
  background-color: #aaa;
}

#header_menu dl dt {
  background: url("/img/header_dl_open.svg") right 1rem top 50% no-repeat;
  background-size: 18px auto;
  background-color: #efefef;
  border-bottom: 1px solid #ddd;
  padding: 1rem 2rem;
  font-size: 1.5rem;
  font-weight: 600;
  line-height: 120%;
  cursor: pointer;
}
@media screen and (max-width: 592px) {
  #header_menu dl dt {
    font-size: 1.275rem;
    padding: 1.2rem 2rem;
  }
}

#header_menu dl.active dt {
  background: url("/img/header_dl_close.svg") right 1rem top 50% no-repeat;
  background-size: 18px auto;
  background-color: #efefef;
}

#header_menu dl dd {
  display: none;
}

#header_menu dl.active dd {
  display: block;
  animation: headerMenuDdAnime 0.3s ease-in-out 0s forwards;
}

@keyframes headerMenuDdAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#header_menu dl dd ul li a {
  display: block;
  background: url("/img/header_dl_arrow.svg") right 1.3rem top 50% no-repeat;
  background-size: 6px auto;
  border-bottom: 1px solid #ddd;
  padding: 1rem 2rem;
  text-decoration: none;
  color: #000;
  font-weight: 600;
}
@media screen and (max-width: 592px) {
  #header_menu dl dd ul li a {
    font-size: 0.875rem;
    padding: 1.2rem 2rem;
  }
}
#header_menu dl dd ul li a:hover {
  opacity: 0.8;
}

#header_menu_bg {
  display: none;
  position: fixed;
  top: 0rem;
  left: 0rem;
  width: 100%;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.9);
  z-index: 2147483646;
}
#header_menu_bg.active {
  display: block;
  animation: spMenuBgAnime 0.3s ease-in-out 0s forwards;
}
@keyframes spMenuBgAnime {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

/* ----------------------------------------------------------------------------
　フッタ
---------------------------------------------------------------------------- */
footer {
  padding: 1rem;
  font-size: 0.8rem;
  line-height: 120%;
}

/* ----------------------------------------------------------------------------
　ページTOP
---------------------------------------------------------------------------- */
.pagetop {
  position: fixed;
  right: 0rem;
  bottom: 0rem;
  transform: scale(0);
  transition: 0.2s ease-in-out;
  z-index: 101;
}
.pagetop.active {
  transform: scale(1);
  animation: pageTopAnime 0.5s ease-in-out 0s forwards;
}

.pagetop a {
  display: block;
  width: 60px;
  position: relative;
  transition: 0.4s ease-in-out;
}
.pagetop a img {
  width: 100%;
  display: block;
}
.pagetop a:hover {
  opacity: 0.8;
}

/* ----------------------------------------------------------------------------
　共通タイトル
---------------------------------------------------------------------------- */
.common_title {
  text-align: center;
  margin-bottom: 2.3rem;
  background: url("/img/common_title_bg.jpg") center bottom no-repeat;
  background-size: cover;
  color: #fff;
  height: 135px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 592px) {
  .common_title {
    background: url("/sp_img/common_title_bg.jpg") center bottom no-repeat;
    background-size: cover;
    height: 85px;
    margin-bottom: 1.5rem;
  }
}

.common_title h1,
.common_title h2 {
  font-size: 1.9rem;
  letter-spacing: 1px;
  line-height: 120%;
}
@media screen and (max-width: 592px) {
  .common_title h1,
.common_title h2 {
    font-size: 1.7rem;
  }
}

.common_title h1 .sub,
.common_title h2 .sub {
  font-size: 0.9rem;
  line-height: 100%;
}

/* ----------------------------------------------------------------------------
　共通メニュー
---------------------------------------------------------------------------- */
.common_menu {
  width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
@media screen and (max-width: 1080px) {
  .common_menu {
    width: 95%;
  }
}
@media screen and (max-width: 592px) {
  .common_menu {
    width: 90%;
    margin-bottom: 0.5rem;
  }
}

.common_menu li {
  width: 23.5%;
  margin: 0 2% 1.2rem 0;
}
.common_menu li:nth-child(4n) {
  margin-right: 0%;
}
@media screen and (max-width: 800px) {
  .common_menu li {
    width: 32%;
    margin: 0 2% 1.2rem 0 !important;
  }
  .common_menu li:nth-child(3n) {
    margin-right: 0% !important;
  }
}
@media screen and (max-width: 592px) {
  .common_menu li {
    width: 48%;
    margin: 0 4% 1rem 0 !important;
  }
  .common_menu li:nth-child(3n) {
    margin: 0 4% 1rem 0 !important;
  }
  .common_menu li:nth-child(2n) {
    margin-right: 0% !important;
  }
}

.common_menu li a {
  display: flex;
  align-items: center;
  justify-content: center;
  box-sizing: border-box;
  border: 1px solid #43af34;
  text-decoration: none;
  color: #000;
  text-align: center;
  font-weight: 600;
  line-height: 130%;
  padding: 0.5rem 0;
  min-height: 3.5rem;
  position: relative;
}
.common_menu li a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 800px) {
  .common_menu li a {
    font-size: 0.875rem;
  }
}
@media screen and (max-width: 592px) {
  .common_menu li a {
    font-size: 1rem;
  }
}
.common_menu li a:after {
  position: absolute;
  top: 0rem;
  left: 0rem;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 10px 0 0;
  border-color: #43af34 transparent transparent transparent;
}

.common_menu.blue li a {
  border: 1px solid #0058ae;
}
.common_menu.blue li a:after {
  border-color: #0058ae transparent transparent transparent;
}

/* ----------------------------------------------------------------------------
　暴風警報・災害時メニュー
---------------------------------------------------------------------------- */
.other_menu {
  width: 1000px;
  margin: 0 auto;
  display: flex;
}
@media screen and (max-width: 1080px) {
  .other_menu {
    width: 95%;
  }
}
@media screen and (max-width: 592px) {
  .other_menu {
    width: 90%;
    display: block;
  }
}

.other_menu li {
  width: 49%;
  margin-right: 2%;
}
.other_menu li:nth-child(2n) {
  margin-right: 0%;
}
@media screen and (max-width: 592px) {
  .other_menu li {
    width: 100%;
    margin: 0 0 1.3rem 0;
  }
}

.other_menu li a {
  box-sizing: border-box;
  display: block;
  font-size: 1.125rem;
  line-height: 150%;
  color: #fff;
  text-decoration: none;
  background-color: #4a5e61;
  padding: 2rem 3rem;
}
@media screen and (max-width: 800px) {
  .other_menu li a {
    font-size: 1rem;
    padding: 1.5rem 2rem;
  }
}
@media screen and (max-width: 592px) {
  .other_menu li a {
    font-size: 1.125rem;
  }
}
.other_menu li a:hover {
  opacity: 0.8;
}

.other_menu .alarm a {
  background: url("/img/other_menu_alarm.jpg") 0 0 no-repeat;
  background-size: cover;
}
@media screen and (max-width: 592px) {
  .other_menu .alarm a {
    background: url("/sp_img/other_menu_alarm.jpg") 0 0 no-repeat;
    background-size: cover;
  }
}

.other_menu .disaster a {
  background: url("/img/other_menu_disaster.jpg") 0 0 no-repeat;
  background-size: cover;
}
@media screen and (max-width: 592px) {
  .other_menu .disaster a {
    background: url("/sp_img/other_menu_disaster.jpg") 0 0 no-repeat;
    background-size: cover;
  }
}

/* ----------------------------------------------------------------------------
　TOPにもどる
---------------------------------------------------------------------------- */
.btn_top a {
  width: 230px;
  display: block;
  margin: 5rem auto 0;
  border: 1px solid #cbcbcb;
  padding: 1rem 0;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
  color: #000;
}
.btn_top a:hover {
  opacity: 0.8;
}
@media screen and (max-width: 592px) {
  .btn_top a {
    margin-top: 3.5rem;
  }
}

/* ----------------------------------------------------------------------------
　写真拡大
---------------------------------------------------------------------------- */
.photo_zoom {
  cursor: pointer;
  background: url("/img/icon_zoom.svg") right 0rem bottom 0% no-repeat;
  background-size: 20px auto;
  padding-bottom: 25px;
}
.photo_zoom img {
  width: 100%;
}

#photo_modal {
  display: none;
  position: fixed;
  top: 0rem;
  left: 0rem;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 2147483646;
}
#photo_modal.active {
  display: block;
  animation: photoModalAnime 0.5s ease-in-out 0s forwards;
}

@keyframes photoModalAnime {
  0% {
    opacity: 0;
    transform: scale(0);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
#photo_modal .close a {
  position: absolute;
  top: 0.7rem;
  right: 0.7rem;
  z-index: 3;
  width: 35px;
  display: block;
}
#photo_modal .close a img {
  width: 100%;
}

#photo_modal .photo {
  width: 100%;
  z-index: 2;
  position: absolute;
}
#photo_modal .photo img {
  width: 100%;
}