@charset "UTF-8";
:root {
  --color-kobeshimbun: rgb(52, 113, 214);
  --color-primary: #ada37f;
  --color-primary-light: #d9d7cf;
  --color-primary-dark: #948b6c;
}

/********************汎用********************/
.pc {
  display: block;
}

.sp {
  display: none;
}

body {
  font-family: "メイリオ", "Meiryo", "Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", sans-serif;
  font-weight: 400;
  font-feature-settings: "pwid" 1;
  -webkit-font-smoothing: antialiased;
}

@supports (-webkit-touch-callout: none) {
  html {
    height: -webkit-fill-available;
  }
  body {
    height: -webkit-fill-available;
    min-height: 100vh;
  }
}
/********************header********************/
#keyVisual {
  position: relative;
  height: 200px;
  background-color: #333;
  background-image: url("../img/title_bg.jpg");
  background-repeat: no-repeat;
  background-position: center;
}
#keyVisual h1 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#keyVisual h1 img {
  width: auto;
}

/********************gnav********************/
#gnav {
  width: 100%;
  margin: 0 auto;
  background-color: var(--color-primary-light);
}

#gnav ul {
  display: flex;
  width: 700px;
  max-width: 90%;
  margin: 0 auto;
  padding: 0.5%;
  justify-content: space-around;
}
#gnav ul li {
  display: block;
  width: 100%;
  margin: 0 auto;
  padding: 1% 0;
  border-left: 2px dotted var(--color-primary-dark);
}
#gnav ul li:last-child {
  border-right: 2px dotted var(--color-primary-dark);
}
#gnav ul li a {
  display: block;
  margin: 0 auto;
  font-size: 16px;
  color: #2d3f37;
  text-align: center;
  transition: all 0.2s ease;
}
#gnav ul li a:hover {
}

/********************contents********************/
.container {
  width: 100%;
  max-width: 700px;
  margin: 0 auto;
}

h2 {
  margin-bottom: 10px;
  padding: 0 0 0.1em 0.5em;
  border-bottom: solid 1px var(--color-primary-dark);
  border-left: solid 10px var(--color-primary-dark);
  font-size: 28px;
}
.sub_news {
	font-size: 16px;
	font-weight: 400;
	margin-left: 3em;
}

.sub_news_sp {
	display: none;
}

a {
  color: #333333;
}

section {
  width: 100%;
  padding: 30px 0;
}
section:first-of-type {
  padding-top: 50px;
}
section:last-of-type {
  padding-bottom: 60px;
}

.btn-primary {
  padding: 1em 0;
}
.btn-primary a {
  display: block;
  width: -moz-fit-content;
  width: fit-content;
  margin: 0 auto;
  padding: 0.3em 2.5em;
  border-radius: 5px;
  background-color: var(--color-primary);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
  font-size: 16px;
  font-weight: 600;
  line-height: 2;
  color: white;
  text-align: center;
  transition: all 0.2s ease;
}
.btn-primary a:hover {
  background-color: var(--color-primary-dark);
}

.site-title {
  padding: 0.5em 0;
}
.site-title .site-title__link {
  display: block;
  width: 213px;
  margin: 0 auto;
}
.site-title .site-title__link .logo {
  width: 100%;
}

/********************lead********************/
#lead h3 {
  margin-bottom: 1em;
}

/********************usuallyNews********************/

.usuallyNewstype02 {
  margin-bottom: 1em;
}
.usuallyNewstype02 li {
  padding: 1em 0.25em 0.9em;
  border-bottom: 1px solid #ccc;
  font-weight: bold;
}
.usuallyNewstype02 li a {
  color: #555;
}
.usuallyNewstype02 li a:hover {
  text-decoration: underline;
}
.usuallyNewstype02 li span {
  font-size: 14px;
  font-weight: normal;
  color: #707070;
}
.usuallyNewstype02 li .statusIcon {
  vertical-align: middle;
}

.img_wrapper {
	display: flex;
	justify-content: space-between;
	flex-wrap: wrap;
}

.img_wrapper a:hover {
	text-decoration: underline;
}

.img_wrapper a:hover img {
  opacity: 0.6;
}

.img_news {
	width: 48%;
	padding: 1em 0;
}

.img_news img {
	width: 100%;
	height: auto;
}

.img_news p {
	font-size: 16px;
	margin-top: .3rem;
	/*text-indent: 1em; テキストにインデント開ける場合に表示*/
}





/********************box********************/
.box_wrapper {
  display: flex;
  margin-bottom: 1em;
  justify-content: space-between;
  flex-wrap: wrap;
}

.box {
  width: 48%;
  padding: 1em 0;
  border-bottom: 1px solid #ccc;
}
.box a {
  display: flex;
  color: #555;
  align-items: flex-start;
}
.box a:hover {
  text-decoration: underline;
}
.box a:hover img {
  opacity: 0.6;
}
.box p {
  width: 65%;
  font-size: 16px;
}
.box img {
  width: 35%;
  height: auto;
  margin-right: 15px;
  object-fit: cover;
  object-position: top;
  aspect-ratio: 4/3;
}

/********************footer********************/
footer {
  box-sizing: border-box;
  width: 100%;
  padding: 1em;
  background-color: var(--color-primary-light);
}
footer p {
  margin: 0;
  padding: 0.5em 0;
  font-size: 0.8rem;
  color: #333;
  text-align: center;
}

/********************Responsive********************/
@media screen and (max-width: 1280px) {
  #keyVisual {
    height: 150px;
    background-size: cover;
  }
  #keyVisual h1 img {
    width: 383.25px;
  }
}
@media screen and (max-width: 1024px) {
  #keyVisual {
    height: 120px;
    background-size: cover;
  }
  #keyVisual h1 img {
    width: 306.6px;
  }
}
@media screen and (max-width: 767px) {
  /********************汎用********************/
  .pc {
    display: none;
  }
  .sp {
    display: block;
  }
  /********************header********************/
  header {
    position: relative;
  }
  #header-contents {
    position: fixed;
    z-index: 4;
    top: 0;
    display: flex;
    box-sizing: border-box;
    width: 100%;
    padding-left: 20px;
    border-bottom: 1px solid #ccc;
    background-color: #fff;
    transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    justify-content: space-between;
  }
  .header-nav-icon {
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .head-animation {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
  }
  .hamburger {
    position: relative;
    width: 48px;
    height: 48px;
    background: var(--color-primary);
    cursor: pointer;
  }
  .hamburger span {
    position: absolute;
    left: 13px;
    display: inline-block;
    width: 45%;
    height: 2px;
    border-radius: 2px;
    background: #fff;
    transition: all 0.4s;
  }
  .hamburger span:nth-of-type(1) {
    top: 15px;
  }
  .hamburger span:nth-of-type(2) {
    top: 23px;
  }
  .hamburger span:nth-of-type(3) {
    top: 31px;
  }
  .hamburger.active span:nth-of-type(1) {
    top: 17px;
    left: 18px;
    width: 30%;
    transform: translateY(6px) rotate(-45deg);
  }
  .hamburger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .hamburger.active span:nth-of-type(3) {
    top: 29px;
    left: 18px;
    width: 30%;
    transform: translateY(-6px) rotate(45deg);
  }
  #keyVisual {
    height: auto;
    padding-top: 48px;
    background-image: none;
  }
  #keyVisual h1 {
    position: static;
    transform: translate(0, 0);
  }
  #keyVisual h1 img {
    width: 100%;
  }

  #keyVisual1 {
    height: auto;
    padding-top: 0px;
    background-image: none;
  }
  #keyVisual1 h1 {
    position: static;
    transform: translate(0, 0);
  }
  #keyVisual1 h1 img {
    width: 100%;
  }
  /********************gnav********************/
  #gnav {
    position: fixed;
    z-index: 3;
    top: 0;
    right: 0;
    display: none;
    box-sizing: border-box;
    width: 50%;
    height: 100%;
    margin: 0 auto;
    padding-top: 48px;
    background-color: #fff;
  }
  #gnav.active {
    display: block;
  }
  #gnav ul {
    display: block;
    width: 100%;
    max-width: 100%;
    padding: 0;
    background-color: #fff;
  }
  #gnav ul li {
    padding: 1em 0;
    border-bottom: 1px dotted #ccc;
    border-left: none;
  }
  #gnav ul li:last-child {
    border-right: none;
  }
  .menu-overlay {
    position: fixed;
    z-index: 2;
    top: 0;
    left: 0;
    display: none;
    display: none;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    justify-content: center;
    align-items: center;
  }
  .menu-overlay.active {
    display: block;
  }
  /********************contents********************/
  .container {
    box-sizing: border-box;
    width: 100%;
    padding: 0 2.66vw;
  }
  h2 {
    font-size: 24px;
  }
  .site-title .site-title__link {
    display: block;
    width: 133px;
    margin: 0 auto;
  }
}
@media screen and (max-width: 480px) {
  /********************contents********************/
  h2 {
    box-sizing: border-box;
    width: 100%;
    margin-bottom: 0px;
    font-size: 22px;
  }
  h2::before {
    left: 0;
  }
  section {
    box-sizing: border-box;
    padding: 15px 0;
  }
  section:first-child {
    padding-top: 20px;
  }
  section:last-of-type {
    padding-bottom: 20px;
  }
  .btn-primary {
    padding: 0.5em 0;
  }
  .btn-primary a {
    padding: 0.4em 2.5em;
  }
  /********************lead********************/
  #lead h3 {
    margin-bottom: 0.5em;
  }
  /********************usuallyNews********************/
  .usuallyNewstype02 li {
    padding: 0.9em 0.25em 0.75em;
    border-bottom: 1px solid #ccc;
    font-weight: bold;
  }
	
	.sub_news {
		display: none;
	}
	
	.sub_news_sp {
		display: block;
		margin-top: .3em
	}
  /********************box********************/
  .box_wrapper {
    display: flex;
    margin: 4vw 1.34vw 1em;
    justify-content: space-between;
    flex-wrap: wrap;
  }
  .box_wrapper .box:nth-of-type(n + 3) {
    margin-top: 4vw;
  }
  .box {
    box-sizing: border-box;
    width: calc(50% - 2vw);
    padding: 0;
    border: 1px solid #ddd;
  }
  .box a {
    display: block;
  }
  .box p {
    box-sizing: border-box;
    width: 100%;
    padding: 0.75em;
    font-size: 15px;
  }
  .box img {
    width: 100%;
    margin-right: 0;
  }
  /********************footer*******************/
  footer {
    padding: 0.5em;
  }
  footer p {
    font-size: 11px;
  }
}