@charset "UTF-8";
/**************************

共通CSS

**************************/
@import url('https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@300;400&display=swap');
/*本文は300だとかすれる。ナビは400だと太い。⇒ナビだけ300*/
/**************************

ETC

***/ :root {
  --main-txt-color: rgba(80, 80, 80, 1);
  --reverse-txt-color: rgba(256, 256, 256, .8);
}
html {
  scroll-behavior: smooth;
  height: 100%;
  margin-top: 0px !important;
}
*, *:before, *:after {
  box-sizing: inherit;
}
html {
  box-sizing: border-box;
}
html * {
  max-width: 100%;
}
body {
  height: 100%;
  background: #282828;
}
body * {
  /*max-width: 100%;slickなんかでトラブルかも けど必要*/
  max-height: 999999px; /*androidのフォントサイズ対策*/
  box-sizing: border-box;
}
a {
  color: var(--main-txt-color) !important;
  text-decoration: none;
  transition: 0.3s;
}
a:hover {
  transition: 0.3s;
}
img {
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
}
#wrapper {
  overflow: hidden;
}
body .inner {
  overflow: hidden;
  max-width: 1024px;
  margin: 0 auto;
  padding: 0 30px;
  display: block;
}
body .width-limit {
  overflow: hidden;
  max-width: 1024px;
  margin: 0 auto;
  display: block;
}
/*------------------------------ 
小表示
*/
@media screen and (max-width: 780px) {
  body .pc {
    display: none !important;
  }
  body .inner {
    padding: 0 5%;
  }
}
/**************************

font

***/ :root {
  --main-font-family: 'Noto Sans JP', sans-serif;
  --second-font-family: "kozuka-gothic-pr6n", sans-serif;
  --ex-letter-spacing: 0.01em;
  font-weight: 400;
}
html {
  font-size: 625%; /* 16pxに625%を掛けると100pxになるよ！ */
  color: var(--main-txt-color) !important;
  font-family: var(--main-font-family);
}
body {
  font-size: 16px; /* 通常サイズは100pxの0.16倍で16pxだよ！ここだけfont-size em！ */
  line-height: 1.6;
}
html select {
  font-family: var(--main-font-family);
}
h1 {
  font-family: var(--main-font-family);
  font-weight: 300;
  font-style: normal;
  font-size: 28px;
  margin-top: 0.4em;
  margin-bottom: 0.5em;
  color: #000;
}
h2, h3, h4, h5, h6 {
  font-family: var(--main-font-family);
  margin-bottom: 0.8em;
  font-weight: normal;
}
h2 {
  font-weight: 700;
  font-size: .36rem; /* 100pxの0.2倍だから20pxだよ！ */
  margin-bottom: 1.0em;
}
h3 {
  margin-top: 1.5em;
  font-size: .20rem; /* 100pxの0.2倍だから20pxだよ！ */
}
h4, h5, h6 {
  font-size: .2rem; /* 100pxの0.2倍だから20pxだよ！ */
  font-weight: normal;
  margin-bottom: 0.8em;
}
li, p {
  font-size: .16rem; /* 100pxの0.16倍だから16pxだよ！ */
  /*font-weight: 300;*/
  margin-bottom: 0.8em;
}
body .size_s {
  font-size: 90%;
}
body #contents .aligncenter {
  text-align: center;
}
/*------------------------------------
adobeフォントがダウンロードされるまで非表示
--------------------------------*/
html.wf-inactive #wrapper {
  opacity: 0;
}
html.wf-active #wrapper {
  opacity: 100;
  transition: 0.5s;
}
body {
  animation: fadeIn 2s ease 0s 1 normal;
  -webkit-animation: fadeIn 2s ease 0s 1 normal;
}
@keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0
  }
  100% {
    opacity: 1
  }
}
/*------------------------------ 
小表示
*/
@media screen and (max-width: 780px) {
  h1 {
    font-size: .22rem; /* 100pxの0.2倍だから20pxだよ！ */
  }
  h2 {
    font-size: .20rem;
  }
  li, p, td, th {
    font-size: .14rem !important; /* 100pxの0.16倍だから16pxだよ！ */
  }
}
/***------------------------------ 
大表示
***/
@media screen and (min-width: 781px) {
  .sp {
    display: none !important;
  }
}
/***------------------------------ 

header、Gナビ

------------------------------*/
body header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: fixed;
  width: 100%;
  z-index: 2;
  background: #fff;
  border-bottom: #d5d5d5 1px solid;
  border-bottom: #b0b0b0 1px solid;
}
body header a {
  color: var(--main-txt-color) !important;
}
body header h1 {
  padding-bottom: 4px;
  color: var(--main-txt-color) !important;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 1);
  padding: 0.5em;
  padding-left: 28px;
  line-height: 1;
}
body header h1 img {
  height: 19px;
  filter: brightness(0%);
}
body header nav {
  display: flex;
  padding-right: 1em;
}
body header nav ul li {
  display: inline-block;
  margin: 0;
  margin-right: 2em;
  font-size: 13px;
}
body header nav ul li a {
  padding: 0.3em 0;
}
body header nav ul li a:hover, body header nav ul li .active {
  border-bottom: 1px rgba(0, 0, 0, 0.5) solid;
}

/*------------- 
小表示
*/
@media screen and (max-width: 780px) {
  body header {
    align-items: center;
  }
  body header a {
    color: var(--reverse-txt-color) !important;
  }
  body header h1 {
    padding: 0.3em;
    padding-left: 16px;
  }
  body header h1 img {
    height: 16px;
    z-index: 100;
    position: relative;
  }
  body header.active h1 img {
    filter: brightness(100%);
    transition: 1.5s;
  }
  body header nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    position: fixed;
    width: 100%;
    height: 100vh;
    padding-right: 0;
    z-index: 2;
    top: 0;
    right: -100%;
    opacity: 0;
    transition: 0.9s;
  }
  body header.active nav {
    background: #000;
    height: 100vh;
    top: 0;
    right: 0;
    opacity: 1;
    transition: 0.7s;
  }
  body header nav ul.g-menu {
    height: 100vh;
    transition: 0.5s;
    width: 100%;
    justify-content: center;
    display: flex;
    flex-direction: column;
    padding: 3em;
    padding-top: 2em;
    z-index: 20;
    overflow: auto;
    align-items: center;
  }
  body header nav ul li {
    display: block;
    margin: 2em 0;
  }
body header nav ul li a:hover, body header nav ul li .active {
  border-bottom: none;
}

  /**** .menu-btnと三本線 ****/
  body header .menu-btn {
    text-align: center;
    display: flex;
    justify-content: center;
    margin-right: 10px;
    position: relative;
    right: 10px;
    padding-top: 0 !important;
    z-index: 100;
  }
  body header.active .menu-btn {
    position: fixed;
    top: 20px;
    height: 32px;
    opacity: 0.9;
  }
  .menu-trigger, .menu-trigger span {
    display: inline-block;
    transition: all .10s;
    box-sizing: border-box;
  }
  .menu-trigger {
    position: relative;
    width: 42px;
    height: 5px;
    margin-top: -1px;
  }
  .menu-trigger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 1px;
    background-color: #000;
    border-radius: 0px;
  }
  .menu-trigger span:nth-of-type(1) {
    top: 1px;
  }
  .menu-trigger span:nth-of-type(2) {
    top: 7px;
    display: none;
  }
  .menu-trigger span:nth-of-type(3) {
    bottom: -3px;
  }
  .menu-trigger.active {
    width: 32px;
  }
  .menu-trigger.active span {
    background-color: #fff;
  }
  .menu-trigger.active span:nth-of-type(1) {
    -webkit-transform: translateY(9px) rotate(-45deg);
    transform: translateY(9px) rotate(-45deg);
    top:0;
  }
  .menu-trigger.active span:nth-of-type(2) {
    opacity: 0;
  }
  .menu-trigger.active span:nth-of-type(3) {
    -webkit-transform: translateY(-5px) rotate(45deg);
    transform: translateY(-5px) rotate(45deg);
    bottom: -10px;
  }
}
/* 
//小表示
----------------*/
.btn {
  margin: auto;
  margin-top: 1.2em;
  text-align: center;
}
.btn a {
  text-align: center;
  display: block;
  padding: 0.2em 2em 0.3em;
  font-size: 0.15rem;
  color: #333;
  margin: auto !important;
  width: 15em;
  border-radius: 2em;
  background: #fff url("../../img/common/arrow_01.png") no-repeat center right 2em;
  z-index: 100;
  position: relative;
  text-decoration: none !important;
}
.btn input {
  text-align: center;
  display: block;
  padding: 0.3em 0.6em 0.4em;
  font-size: 0.17rem;
  color: #FFFFFF;
  background: #867a6d;
  border: none;
}
.btn a:hover {
  background: #ffff00 url("../../img/common/arrow_01.png") no-repeat center right 1.7em;
  transition: 0.1s;
  text-decoration: none !important;
}
/*sp */
@media screen and (max-width: 780px) {
  .btn {
    margin-top: 1.5em;
  }
  .btn a {
    padding: 0.3em 0.8em 0.4em;
    font-size: 0.14rem;
  }
}
/* * * * * * *  sp
* * * * * * */
@media screen and (max-width: 980px) {} /*ここまでSP用(max-width: 980px)****/
/**************************

Wordpress

***/
.has-regular-font-size {
  font-size: 1em !important;
}
.has-larger-font-size {
  font-size: 2.625em !important;
}
.has-normal-font-size {
  font-size: var(--wp--preset--font-size--normal) !important;
}
.has-huge-font-size {
  font-size: var(--wp--preset--font-size--huge) !important;
}
.has-text-align-center {
  text-align: center !important;
}
.has-text-align-left {
  text-align: left !important;
}
.has-text-align-right {
  text-align: right !important;
}
#end-resizable-editor-section {
  display: none !important;
}
.aligncenter {
  clear: both !important;
}
.items-justified-left {
  justify-content: flex-start !important;
}
.items-justified-center {
  justify-content: center !important;
}
.items-justified-right {
  justify-content: flex-end !important;
}
.items-justified-space-between {
  justify-content: space-between !important;
}
.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  -webkit-clip-path: inset(50%);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 1px;
  word-wrap: normal !important;
}
.screen-reader-text:focus {
  background-color: #ddd;
  clip: auto !important;
  -webkit-clip-path: none;
  clip-path: none;
  color: #444;
  display: block;
  font-size: 1em;
  height: auto;
  right: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}
/***------------------------------ 

footer、Gナビ

------------------------------*/
.pagetop {
  position: fixed;
  right: 5px;
  bottom: 20px;
  height: 50px;
  text-decoration: none;
  transform: rotate(90deg);
  font-size: 90%;
  /*line-height: 1.5rem;*/
  color: var(--main-txt-color) !important;
  padding: 0 0 0 35px;
  border-top: solid 1px;
  font-weight: 300;
  font-family: var(--main-font-family);
  /* filter: drop-shadow(0px 0px 9px rgba(255, 255, 255, 0.99));*/
  display: none !important;
}
.pagetop::before {
  content: "";
  display: block;
  position: absolute;
  top: -1px;
  left: 0px;
  width: 15px;
  border-top: solid 1px;
  transform: rotate(35deg);
  transform-origin: left top;
}
.pagetop:hover {
  opacity: 0.3;
  -moz-transition: 0.2s;
  -o-transition: 0.2s;
  -ms-transition: 0.2s;
  transition: 0.2s;
}
.pagetop a {
  color: var(--main-txt-color) !important;
}
body footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: #282828;
  padding-top: 0.8em;
  padding-bottom: 0.8em;
}
body footer h1 {
  padding-bottom: 4px;
  color: var(--reverse-txt-color) !important;
  text-shadow: 0px 0px 6px rgba(0, 0, 0, 1);
  padding: 0.5em;
  padding-left: 1.2em;
  line-height: 1;
}
body footer h1 img {
  height: 19px;
}
body footer nav {
  display: flex;
  padding-right: 1em;
}
body footer nav ul li {
  display: inline-block;
  margin: 0;
  margin-right: 2em;
  font-size: 13px;
}
body footer nav ul li a {
  padding: 0.3em 0;
}
body footer a {
  color: var(--reverse-txt-color) !important;
}
/*------------- 
小表示
*/
@media screen and (max-width: 480px) /*ここだけ*/ {
  body footer {
    align-items: center;
    flex-direction: column;
    padding: 2em;
  }
  body footer h1 {
    padding: 0;
  }
  body footer nav {
    padding-right: 0;
    padding-bottom: 1em;
  }
  body footer nav ul li {
    margin-top: 1em;
    margin-right: 1em;
    margin-left: 1em;
    font-size: 11px !important;
  }
}
/* 
//小表示
----------------*/
/***------------------------------ 

#contents
下層ページコンテンツ部分（ヘッダフッタ以外）

------------------------------*/
body #contents {
  margin-top: 80px;
  background: #fff;
}
#contents a {
  color: #086ec9 !important;
  text-decoration: underline;
}
body #contents a:hover {
  text-decoration: none;
  transition: 0.2s;
  color: #d56a1c !important;
}
body #contents h1.page_title {
  padding: 2.6em 0;
  line-height: 1.1;
}
/*------------- 
小表示
*/
@media screen and (max-width: 780px) {
  body #contents {
    margin-top: 55px;
  }
  body #contents h1.page_title {
    padding: 2.0em 0 1.8em;
  }
}