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

:root {
  --keycolor01: #FB948B;
}
:root {
  --keycolor02: #5A3437;
}

html {
  width: 100%;
  scroll-behavior:auto;
}
body {
  *font-size: small;
  *font: x-small;
  font-size: 20px;
  line-height: 2;
  font-family: "Zen Maru Gothic", sans-serif;
  font-weight: 400;
  text-align: left;
  margin: 0;
  padding: 0;
  color: #333333;
  background: #ffffff;
  -webkit-text-size-adjust: 100%;
  position: relative;
}
body *, body *::before, body *::after {
  box-sizing: border-box;
}
h1, h2, h3, h4, h5, p, ul, ol, li, img, table, th, td, dl, dt, dd,li,a {
  margin: 0;
  padding: 0;
  font-size: 20px;
  line-height: 2;
}
table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
}
figure:has(table) {
	margin: 0;
}
li {
  list-style-type: none;
}
a {
  position: relative;
  transition: opacity .4s;
  cursor: pointer;
  color: #333;
  text-decoration: none;
  transition: all .2s cubic-bezier(.210, .60, .350, 1);
}
a:hover {
  opacity: .7;
}
img {
  display: block;
  border: 0;
  max-width: 100%;
  height: auto;
  vertical-align: top;
}
input, textarea, select, button, label {
  outline: none;
  border: none;
  padding: 0;
  margin: 0;
  -webkit-appearance: none;
  appearance: none;
}
.spOnly {
  display: none;
}
#wrap {
  padding-top: 111px;
  width: 100%;
  background: #FEEAE8;
}

.has-text-align-right{
  text-align: right!important;
}
@media only screen and (max-width:1340px) {
  #wrap {
    padding-top: 77px;
  }
}
@media only screen and (max-width:1040px) {
  #wrap {
    padding-top: 55px;
  }
}
@media only screen and (max-width:767px) {
  .pcOnly {
    display: none;
  }
  .spOnly {
    display: block;
  }
}


/* header
-----------------------------------------------*/
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  background: #FEEAE8;
}
header .inner {
  display: flex;
  background: #FEEAE8;
  justify-content: space-between;
}
header .logo-area {
  display: flex;
  gap: 10px;
  align-items: center;
  width: 100%;
padding: 0px 10px;
margin-bottom: 4px;
}
header .logo-area h1  {
	font-size: 32px;
	line-height: 1.1;
}
header .logo-area h1 span {
	font-size: 16px;
	font-weight: normal;
}
header .logo-area h1:has(font) {
	display: none;
}
header .logo-area p {
	font-size: 12px;
	text-align: right;
}
header .logo-area p:has(font) {
	font-size: 28px;
	font-weight: bold;
	text-align: left;
	line-height: 1.2;
}
header h1 a {
  display: block;
}
header .select {
  width: 240px;
  height: 52px;
  font-size: 16px;
  cursor: pointer;
  background: #fff;
  padding: 15px 40px 15px 20px;
  border-radius: 10px;
  border: 1px solid #808080;
}
header .search-area {
  display: flex;
  gap: 30px;
  align-items: center;
  padding-right: 20px;
  position: relative;
}
header .search-area .btn a {
  display: block;
  background: #FB948B;
  color: #fff;
  border-radius: 10px;
  width: 173px;
  line-height: 52px;
  text-align: center;
  font-size: 20px;
}
header .search-area .btn a:has(font){
	line-height: 1.2;
	padding: 10px;
}
header .search-area .search {
  margin-right: 50px;
  width: 314px;
  position: relative;
  border-radius: 10px;
}
header .search-area #form {
  position: relative;
}
header .search-area #form button {
  background-color: rgba(0, 0, 0, 0);
  border: none;
  position: absolute;
  right: -50px;
  top: 50%;
  transform: translateY(-50%);
  padding: 0 3px;
  cursor: pointer;
}
header .search-area #form button::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  background: url("/img/general/common/icon-search.svg") no-repeat;
  background-size: cover;
  margin-top: -5px;
  fill: var(--keycolor02);
}
header .search-area #form ::placeholder {
  font-size: 16px;
  color: #b3b3b3;
}
header .search-area #sbox {
  width: 100%;
  line-height: 1;
  padding: 20px 15px 15px;
  border-radius: 10px;
  border: 1px solid #cccccc;
  box-sizing: border-box;
}
#general header .search-area #sbox {
  border: none;
}
@media only screen and (max-width: 1380px) {
  header .logo-area {
    gap: 6px;
  }
header .logo-area img  {
	max-width: 50px;
}
  header .logo-area h1 {
    max-width: 240px;
	font-size: 18px;
	line-height: 1.2;
  }
  header .logo-area p {
    max-width: 160px;
	  text-align: left;
  }
header .logo-area p:has(font) {
	font-size: 16px;
}
  header .select {
    width: 160px;
    font-size: 14px;
  }
  header .search-area {
    gap: 15px;
  }
  header .search-area .btn a {
    width: 140px;
    font-size: 14px;
  }
  header .search-area .search {
    width: 260px;
  }
  header .search-area #form ::placeholder {
    font-size: 14px;
  }
}
@media only screen and (max-width: 1040px) {
  
  header .search-area {
    padding-right: 50px;
  }
  header .search-area .btn, 
  header .search-area .search {
    display: none;
  }
  header .logo-area {
    max-width: 240px;
padding: 10px 10px;
  }
}
@media only screen and (max-width: 950px) {
  header .logo-area {
padding: 0px;
  }
}
@media only screen and (max-width: 767px) {
  header .logo-area {
    max-width: 172px;
	  padding: 6px;
  }
header .logo-area img  {
	max-width: 40px;
}
header .logo-area h1  {
	font-size: 14px;
	line-height: 1.2;
}
header .logo-area h1 span {
	font-size: 12px;
	font-weight: normal;
}
header .logo-area p {
	font-size: 10px;
	line-height: 1.1;
}
header .logo-area p:has(font) {
	font-size: 14px;
}
}

/*------------------------------------------------------------
	menuBtn
------------------------------------------------------------*/
#menuBtn {
  display: none;
}
@media only screen and (max-width:950px) {
  #menuBtn {
    display: block;
    width: 30px;
    height: 30px;
    position: absolute;
    top: 5px;
    right: 20px;
    transform: translate(0%, -50%);
    cursor: pointer;
    z-index: 999;
  }
  #menuBtn span {
    width: 100%;
    height: 2px;
    background: #000;
    position: absolute;
    top: 50%;
    left: 0;
    transform: translate(0%, -50%);
  }
  #menuBtn.active span {
    display: none;
  }
  #menuBtn::before {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
    position: absolute;
    top: 4px;
    left: 0;
    transition: transform .3s, top .3s
  }
  #menuBtn::after {
    content: "";
    display: block;
    width: 100%;
    height: 2px;
    background: #000;
    position: absolute;
    bottom: 4px;
    left: 0;
    transition: transform .3s, top .3s
  }
  #menuBtn.active::before {
    top: 50%;
    margin-top: -1px;
    transform: rotate(45deg);
  }
  #menuBtn.active::after {
    bottom: 50%;
    margin-bottom: -1px;
    transform: rotate(-45deg);
  }
}
/* naviAreBg
-----------------------------------------------*/
.naviAreBg {
  background: #FB948B;
  position: fixed;
  left: 0;
  top: 230px;
  width: 100%;
  height: 0;
  transition: height .4s;
}
@media only screen and (max-width:950px) {
  .naviAreBg {
    display: none;
  }
}
/* sp-menu
-----------------------------------------------*/
@media only screen and (min-width:951px) {
  #sp-menu {
    display: none !important;
    opacity: 0!important;
  }
}
@media only screen and (max-width:950px) {
  #sp-menu {
    position: fixed;
    left: 0;
    top: 100px;
    z-index: 9999999;
    width: 100vw;
    height: calc(100vh - 100px);
    background: #FB948B;
    overflow-y: scroll;
    display: none;
    padding-bottom: 40px;
  }
  #sp-menu > ul {
    padding: 10px 20px 40px 20px;
  }
  #sp-menu > ul > li:not(:first-child) {
    border-top: 1px solid #fff;
  }
  #sp-menu > ul > li:last-child {
    border-bottom: 1px solid #fff;
  }
  #sp-menu ul li strong {
    color: #fff;
    display: block;
    padding: 20px 0;
    position: relative;
    font-size: 16px;
    cursor: pointer;
  }
  #sp-menu ul li strong::before{
    content: "";
    position: absolute;
    width: 12px;
    height: 12px;
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
    transform: translateY(-50%) rotate(45deg);
    top: calc(50% - 2px);
    right: 20px;
  }
  #sp-menu ul li a > strong::before{
    transform: translateY(-50%) rotate(45deg);
  }
  #sp-menu ul li strong::before{
    transform: translateY(-50%) rotate(135deg);
  }
  #sp-menu ul li strong.active::before {
    top: calc(50% + 4px);
    transform: translateY(-50%) rotate(-45deg);
  }
  #sp-menu .sub-menu {
    padding-bottom: 25px;
    height: 0;
    display: none;
  }
  #sp-menu .active .sub-menu {
    height: 100%;
  }
  #sp-menu .sub-menu li a::before{
    width: 8px;
    height: 8px;
    border-top: solid 2px #FB948B;
    border-right: solid 2px #FB948B;
    right: 20px;
  }
  #sp-menu .sub-menu li:not(:first-child) {
    padding-top: 8px;
  }
  #sp-menu .sub-menu li a {
    display: block;
    font-size: 14px;
    font-weight: bold;
    line-height: 2;
    padding: 10px 40px 10px 20px;
    background: #fff;
    color: #FB948B;
    border-radius: 10px;
  }
  #sp-menu .sub-menu li:first-child a{
    color: #fff;
    background: none;
    padding: 5px 0 5px 10px;
    font-size: 16px;
    position: relative;
  }
  #sp-menu .sub-menu li:first-child a::before{
    content: "";
    background-color: #fff;
    height: 100%;
    width: 4px;
    position: absolute;
    left: 0;
    bottom: 0;
  }
  #sp-menu .sub-menu li > ul {
    display: block;
    padding-left: 1em;
    margin-top: 10px;
  }
  #sp-menu .search-area {
    padding: 0 20px;
    display: flex;
    gap: 20px 10px;
    align-items: center;
    flex-wrap: wrap;
  }
  #sp-menu .search-area .btn{
    width: 100%;
  }
  #sp-menu .search-area .btn a {
    display: block;
    background: #fff;
    color: #FB948B;
    border-radius: 10px;
    width: 100%;
    line-height: 30px;
    text-align: center;
    font-size: 14px;
    padding: 10px;
  }
  #sp-menu .search-area .search{
    width: 100%;
  }
  #sp-menu .search-area .bnr a {
    background: none !important;
    width: auto !important;
}
  #sp-menu .search-area #form {
    display: block;
    width: 100%;
    position: relative;
}
  #sp-menu .search-area #sbox {
    line-height: 1;
    padding: 20px 15px 15px;
    border: 1px solid #cccccc;
    font-size: 16px;
    width: 100%;
    border-radius: 10px;
    position: relative;
}
  #sp-menu .search-area #form button {
    position: absolute;
    display: block;
    content: "";
    top: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0);
    border: none;
    padding: 0;
    cursor: pointer;
    width: 55px;
    height: 55px;
    display: block;
    background: url(/img/common/icon-search.svg) center no-repeat;
    background-size: 31px auto;
}
  #sp-menu .search-area #menuBtn{
    display: none;
  }
}



/* navi-tab
-----------------------------------------------*/
#navi-tab {
  padding: 16px 20px 0;
}
#navi-tab ul {
  display: flex;
  justify-content: center;
  max-width: 1400px;
  margin: 0 auto;
}
#navi-tab ul li a {
  color: var(--keycolor02);
  min-height: 60px;
  min-width: 400px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
	padding: 10px ;
	display: block;
	line-height: 1.2;
	text-align: center;
  border-radius: 10px 10px 0 0;
}
#navi-tab ul li:nth-child(1) a span {
  position: relative;
  padding-right: 32px;
  color: #fff;
}
#navi-tab ul li:nth-child(2) a {
  color: #fff;
}
#navi-tab ul li:nth-child(3) a {
  color: #fff;
}
#navi-tab ul li:nth-child(1) a span::before {
  position: absolute;
  display: block;
  content: "";
  background: url("/img/common/icon-home.svg")no-repeat;
  background-size: cover;
  width: 22px;
  height: 22px;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  margin-top: -2px;
}
#navi-tab ul li:nth-child(1) a {
  min-width: 117px;
  background: #A1B2CB;
  display: flex;
}
#navi-tab ul li:nth-child(2) a {
  background: #1C488C;
  display: flex;
}
#navi-tab ul li:nth-child(3) a {
  background: #99C7E8;
  display: flex;
  color: #1C488C;
}
#navi-tab ul li:nth-child(4) a {
  background: #FB948B;
  display: flex;
}
@media only screen and (max-width: 1325px) {
  #navi-tab ul li a{
    min-width: 300px;
  }
}
@media only screen and (max-width: 1040px) {
  #navi-tab {
    padding: 16px 20px 0;
  }
  #navi-tab ul li a{
    min-width: 220px;
  }
}
@media only screen and (max-width: 950px) {
  #navi-tab {
    padding: 0 20px;
    border-bottom: 10px solid #FB948B;
  }
  #navi-tab ul li a{
    font-size: 14px;
    min-width: 180px;
  }
}
@media only screen and (max-width:767px) {
  #navi-tab {
    padding: 0 0;
  }
  #navi-tab ul li a {
    word-break: keep-all;  
    min-height: auto;
    font-size: 12px!important;
    display: flex;
    min-width: auto!important;
  }
  #navi-tab ul li{
    width: 30%;
  }
  #navi-tab ul li:nth-child(1){
    width: 10%;
  }
  #navi-tab ul li:nth-child(1) a span{
    font-size: 0;
  }
  #navi-tab ul li:nth-child(1) a span::before{
    right: 50%;
    transform: translate(50%,-50%);
    margin-top: 0px;
    width: 18px;
    height: 18px;
  }
}
/* naviBg
-----------------------------------------------*/
#naviBg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: 10;
  width: 100%;
  height: 100%;
  background: rgba(0,0,0,.3);
  display: none;
}
@media only screen and (max-width:950px) {
  #naviBg {
    display: none !important;
  }
}
/* navi-area
-----------------------------------------------*/
.navi-area > ul {
  display: flex;
  background: #FB948B;
  justify-content: center;
}
.navi-area > ul li {
  display: flex;
  align-items: center;
}
.navi-area > ul li a {
  opacity: 1;
}
.navi-area > ul li strong > em{
      display: block;
    font-family: "Zen Maru Gothic", sans-serif;
  font-style: normal;
}
.navi-area > ul li strong,
.navi-area > ul li span {
  font-size: 18px;
  color: var(--keycolor02);
  font-weight: bold;
  padding: 20px 40px;
  display: block;
  position: relative;
  cursor: pointer;
  word-break: auto-phrase;
  text-align: center;
  line-height: 1.5;
}
.navi-area > ul li strong::before, 
.navi-area > ul li span::before {
  position: absolute;
  display: block;
  content: "";
  width: 20%;
  height: 4px;
  background: #fff;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  opacity: 0;
  transition: all .3s;
}
.navi-area > ul li strong font,
.navi-area > ul li span font{
}
.navi-area > ul li strong:has(font),
.navi-area > ul li span:has(font){
	line-height: 1.2;
	padding: 20px 20px;
}
.navi-area > ul li.active strong::before,
.navi-area > ul li.current strong::before,
.navi-area > ul li strong.active::before,
.navi-area > ul li:hover strong::before,
.navi-area > ul li.active span::before,
.navi-area > ul li.current span::before,
.navi-area > ul li span.active::before,
.navi-area > ul li:hover span::before {
  width: calc(100% - 60px);
  transform: translateX(-50%);
  opacity: 1;
}
.navi-area .sub-menu {
  display: none;
  opacity: 0;
  position: absolute;
  top: 255px;
  left: 0;
  width: 100vw;
  cursor: default;
  padding: 0;
  background: #FB948B;
}
.navi-area .active .sub-menu {
  opacity: 1;
}
.navi-area .sub-menu ul {
  display: grid;
  gap: 0;
  grid-template-columns: 1fr 1fr 1fr 1fr;
}
.navi-area .sub-menu li {
  overflow: hidden;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--keycolor02);
  border-right: 1px solid var(--keycolor02);
  transition: opacity .5s, background .5s;
}
.navi-area .sub-menu li:first-child {
    grid-column: 1 / 5;
    background: none;
    border: none;
    border-radius: 0;
    border-bottom: 1px solid var(--keycolor02);
    padding-top: 20px;
}
.navi-area .sub-menu li:first-child a {
  color: var(--keycolor02);
    padding: 20px 0 15px 20px;
    margin-bottom: 30px;
    font-size: 28px;
}
.navi-area .sub-menu li:first-child a .h2 {
    position: relative;
}
.navi-area .sub-menu li:first-child a .h2::before {
    position: absolute;
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    box-sizing: border-box;
    border-top: solid 3px var(--keycolor02);
    border-right: solid 3px var(--keycolor02);
    transform: translateY(-50%) rotate(45deg);
    top: 50%;
    right: -30px;
    margin-top: 1px;
}
.navi-area .sub-menu li:first-child a:hover .h2::before {
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
}
.navi-area .sub-menu li:first-child a::before {
  border-color: var(--keycolor02);
  display: none;
}
.navi-area .sub-menu li:first-child a:hover {
}
.navi-area .sub-menu li:hover {
  background: #FB948B;
}
.navi-area .sub-menu li:hover a {
  color: #fff;
}
.navi-area .sub-menu li:hover a::before {
  border-color: #fff;
}
.navi-area .sub-menu li a {
    color: var(--keycolor02);
    font-weight: bold;
    padding: 20px 60px 20px 20px;
    display: block;
    position: relative;
    width: 100%;
    font-size: 16px;
    line-height: 1.5;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
.navi-area .sub-menu li a::before {
  position: absolute;
  content: "";
  display: block;
  width: 14px;
  height: 14px;
  box-sizing: border-box;
  border-top: solid 3px var(--keycolor02);
  border-right: solid 3px var(--keycolor02);
  transform: translateY(-50%) rotate(45deg);
  top: 50%;
  right: 30px;
}
.navi-area .sub-menu li a:hover {
  opacity: 1;
}
.navi-area .sub-menu li > ul {
  display: block;
  padding-left: 1em;
  margin-top: 10px;
}
@media only screen and (max-width:1450px) {
  .navi-area .sub-menu li a{
    padding: 20px 60px 20px 20px;
    font-size: 16px;
  }
}
@media only screen and (max-width:1300px) {
  .navi-area .sub-menu ul {
    grid-template-columns: 1fr 1fr 1fr;
  }
  .navi-area .sub-menu li:first-child{
    grid-column: 1 / 4;
  }
  .navi-area .sub-menu li a{
    padding: 15px 60px 15px 10px;
    font-size: 14px;
  }
  .navi-area .sub-menu li a::before{
    width: 10px;
    height: 10px;
  }
}
@media only screen and (max-width:1630px) {
.navi-area > ul li strong,
.navi-area > ul li span {
  padding: 20px;
}
}
@media only screen and (max-width:1380px) {
.navi-area > ul li strong,
.navi-area > ul li span {
  padding: 20px 10px;
}
}
@media only screen and (max-width:1280px) {
  .navi-area > ul {
    justify-content: space-between;
  }
  .navi-area > ul li strong,
  .navi-area > ul li span {
    font-size: 16px;
    padding: 20px 10px;
    width: 100%;
  }
  .navi-area > ul li strong::before,
  .navi-area > ul li span::before {
    width: 20%;
  }
  .navi-area > ul li.current strong::before,
  .navi-area > ul li strong.active::before,
  .navi-area > ul li strong:hover::before, 
  .navi-area > ul li.current span::before,
  .navi-area > ul li span.active::before,
  .navi-area > ul li span:hover::before {
    width: calc(100%);
  }
}
@media only screen and (max-width:1210px) {
.navi-area > ul li strong,
.navi-area > ul li span {
  word-break: normal;
}
}
@media only screen and (max-width:950px) {
  .navi-area {
    position: fixed;
    right: -120%;
    top: 0;
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    background: #0978b7;
    z-index: 12;
    padding: 60px 20px;
    box-sizing: border-box;
    transition: all 1s ease-in-out;
  }
  header.active .navi-area {
    right: 0;
  }
  .navi-area > ul {
    flex-wrap: wrap;
    justify-content: unset;
  }
  .navi-area > ul li {
    width: 100%;
    border-top: 1px solid #fff;
  }
  .navi-area > ul li:last-child {
    border-bottom: 1px solid #fff;
  }
  .navi-area > ul li strong,
  .navi-area > ul li span {
    color: #fff;
    display: block;
    padding: 20px 0;
    position: relative;
    width: 100%;
  }
  .navi-area > ul li strong::before,
  .navi-area > ul li span::before{
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    box-sizing: border-box;
    border-top: solid 3px #fff;
    border-right: solid 3px #fff;
    transform: translateY(-50%) rotate(45deg);
    top: 50%;
    right: 20px;
    left: auto;
    background: none;
  }
  .navi-area > ul li:not(:first-child) strong::before,
  .navi-area > ul li:not(:first-child) span::before{
    transform: translateY(-50%) rotate(135deg);
  }
  .navi-area > ul li.active:not(:first-child) strong::before,
  .navi-area > ul li.active:not(:first-child) span::before{
    transform: translateY(-50%) rotate(-45deg);
  }
  .navi-area > ul li.current strong::before, 
  .navi-area > ul li strong.active::before, 
  .navi-area > ul li strong:hover::before,
  .navi-area > ul li.current span::before, 
  .navi-area > ul li span.active::before, 
  .navi-area > ul li span:hover::before{
    width: 14px;
  }
  .navi-area .sub-menu {
    height: 0%;
    padding: 0;
    transition: all 1s ease-in-out;
  }
  .navi-area > ul li.active .sub-menu {
    display: block;
    height: auto;
    position: sticky;
    width: 100%;
    background: #0978b7;
    padding: 0 0 20px;
  }
  .navi-area .sub-menu ul {
    grid-template-columns: 1fr;
  }
  .navi-area .sub-menu li a::before{
    width: 8px;
    height: 8px;
    border-top: solid 2px #FB948B;
    border-right: solid 2px #FB948B;
    right: 20px;
  }
  .navi-area .sub-menu li a {
    font-size: 14px;
    line-height: 2;
    padding: 10px 40px 10px 20px;
  }
  .navi-area .sub-menu li > ul {
    display: block;
    padding-left: 1em;
    margin-top: 10px;
  }
}


/* breadcrumb
-----------------------------------------------*/
#breadcrumb{
  max-width: 1670px;
  margin: 20px auto 40px;
  padding: 0 40px;
}
#breadcrumb ul{
  display: flex;
  gap:0 25px;
  flex-wrap: wrap;
}
#breadcrumb li {
  min-width: 2em;
  position: relative;
  color: var(--keycolor01);
	font-size: 16px;
	line-height: 2em;
}
#breadcrumb li a{
  color: var(--keycolor01);
  text-decoration: underline;
	font-size: 16px;
	line-height: 1.5em;
}
#breadcrumb li::before{
  position: absolute;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  box-sizing: border-box;
  border-top: solid 1px var(--keycolor01);
  border-right: solid 1px var(--keycolor01);
  transform: rotate(45deg);
  top: 13px;
  right: -15px;
}
#breadcrumb li:last-child::before{
  display: none;
}
@media only screen and (max-width:767px) {
  #breadcrumb{
    margin: 10px auto 20px;
    padding: 0 20px;
  }
#breadcrumb li::before{
  top: 8px;
}
  #breadcrumb li,
  #breadcrumb li a{
    font-size: 12px;
  }
  
}

/* container
-----------------------------------------------*/
#container {
  position: relative;
  width: 100%;
  margin: 0 auto;
  display: flex;
  padding-bottom: 100px;
  background-image: url("/img/general/common/bgi-01.png");
  background-position: top center;
  background-repeat: repeat-y;
}
#container a[target="_blank"]{
  padding-right: 25px;
  display: inline-block;
}
#container a[href$=".pdf"]{
  padding-right: 0!important;
  display: inline!important;
}
#container a[href$=".pdf"]::after{
  position: absolute;
  display: block;
  content: "";
  background: url("/img/general/common/icon-pdf.gif")no-repeat!important;
  width: 16px!important;
  height: 16px!important;
  right: -22px!important;
  bottom: 3px!important;
}
#container a[target="_blank"]::after{
  position: absolute;
  display: block;
  content: "";
  background: url("/img/general/common/icon-link.svg")no-repeat;
  background-size: cover;
  width: 12px;
  height: 12px;
  right: 5px;
  bottom: 14px;
  left: auto;
}
@media only screen and (max-width:767px) {
  #container {
    padding: 0 0 60px;
  background-size: contain;
  }
}



/* side
-----------------------------------------------*/
#side-cover {
  top: 0;
  left: 0;
  pointer-events: none;
  display: flex;
  align-items: flex-start;
  width: 0;
  transition: all 0.5s;
}
#side {
  position: sticky;
  top: 270px;
  min-width: 450px;
  z-index: 2;
  transition: all 0.5s;
  transform: translateX(-100%);
  pointer-events: auto;
}
.close #side {
  transform: translateX(-100%)!important;
}
.active #side,
.open #side {
  transform: translateX(calc(50vw - 100% - 480px));
}
#side .side-btn-cover {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
  height: 100%;
  pointer-events: auto;
  transition: all 0.5s;
}
.close #side .side-btn-cover{
  right: 0!important;
}
.open #side .side-btn-cover {
  right: 10px;
}
#side .side-btn {
  position: sticky;
  display: block;
  content: "";
  top: 154px;
  transform: translateX(100%);
  cursor: pointer;
  background: url("/img/general/common/img-btn-open.svg");
  width: 50px;
  height: 114px;
}
.close #side .side-btn {
  background: url("/img/general/common/img-btn-open.svg")!important;
}
.open #side .side-btn {
  background: url("/img/general/common/img-btn-close.svg");
}
#side .inner {
  display: block;
  background: #FFF5F3;
  border-radius: 10px;
  padding: 80px;
  overflow: hidden;
}
#side .inner > ul {
  border-top: 1px solid rgba(51,51,51,.5);
}
#side .inner > ul > li {
  border-bottom: 1px solid rgba(51,51,51,.5);
}
#side .inner > ul > li code{
  font-family: "Zen Maru Gothic", sans-serif;
}
#side .inner > ul > li .side-menu {
  padding: 0 0 0 40px;
  display: none;
}
#side .inner > ul > .active .side-menu {
  display: block;
}
#side .inner > ul > li > strong {
  position: relative;
}
#side .inner > ul > li > a > strong {
  text-decoration: none;
}
#side .inner > ul > .link:hover,
#side .inner > ul > li > strong:hover,
#side .inner > ul > .active > strong {
  color: var(--keycolor01);
}
#side .inner > ul > li > strong::before {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  box-sizing: border-box;
  border-top: solid 2px var(--keycolor01);
  border-right: solid 2px var(--keycolor01);
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
  right: 20px;
  margin-top: -1px;
}
#side .inner > ul > li > strong::before,
#side .inner > ul > li:has(li.current) strong::before,
#side .inner > ul > li > .link::before {
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
  right: 20px;
  margin-top: -1px;
}
#side .inner > ul > li > strong,
#side .inner > ul > li > a > strong {
  position: relative;
  display: block;
  font-size: 20px;
  color: #333;
  cursor: pointer;
  font-weight: bold;
  padding: 20px;
}
#side .inner > ul > .active > strong > a {
  color: var(--keycolor01);
}
#side .inner > ul > li > a::before {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  box-sizing: border-box;
  border-top: solid 2px var(--keycolor01);
  border-right: solid 2px var(--keycolor01);
  transform: rotate(45deg) translateY(-50%);
  top: 50%;
  right: 20px;
  margin-top: -5px;
}
#side .inner > ul > li .side-menu li p, 
#side .inner > ul > li .side-menu li a {
  color: #333;
  font-weight: normal;
  line-height: 1.5;
  cursor: pointer;
  position: relative;
  transition: all .2s cubic-bezier(.210, .60, .350, 1);
}
#side .inner > ul > li .side-menu li p:hover {
  opacity: .7;
}
#side .inner > ul > li .side-menu li a {
  padding-bottom: 0;
  font-size: 16px;
}
#side .inner > ul > li .side-menu li > ul {
  margin-top: 10px;
}
#side .inner > ul > li .side-menu li > ul li {
  padding-left: 20px;
  padding-bottom: 10px;
}
#side .inner > ul > li .side-menu li a,
#side .inner > ul > li .side-menu li > ul li a {
    display: block;
    line-height: 2;  position: relative;
  font-weight: normal;
  text-decoration: none;
}
#side .inner > ul > li .side-menu li a::before,
#side .inner > ul > li .side-menu li > ul li a::before,
#side .inner > ul > li .side-menu li p::before {
  position: absolute;
  content: "";
  display: block;
  width: 8px;
  height: 8px;
  box-sizing: border-box;
  border-top: solid 2px var(--keycolor01);
  border-right: solid 2px var(--keycolor01);
  transform: rotate(45deg);
  top: 14px;
  left: -20px;
  margin-top: -2px;
}
#side .inner > ul > li .side-menu li > ul li a::before {
  margin-top: 0;
}
#side .inner > ul > li .side-menu li + li {
	line-height: 1.5;
  padding-bottom: 10px;
}
#side .inner > ul > li .side-menu li:last-child {
  padding-bottom: 20px;
}
.open-no-anime #side,
.open-no-anime #side .side-btn-cover,
.open-no-anime #content {
  transition: all 0s;
}
.side-menu .current a::after{
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--keycolor01);
  bottom: 0px;
  left: 0;
}
#side .inner .current a{
  color: var(--keycolor01);
}
/*
#side .inner .current a::after{
  position: absolute;
  display: block;
  content: "";
  width: 100%;
  height: 2px;
  background: var(--keycolor01);
  bottom: -6px;
  left: 0;
}
*/
@media only screen and (max-width:1880px) {
  .active #content, 
  .open #content {
    max-width: 1700px!important;
  }
  .active #side,
  .open #side {
    transform: translateX(0);
  }
}
@media only screen and (max-width:1400px) {
  #side {
    transform: translateX(-100%);
  }
  .close #side {
    transform: translateX(-100%)!important;
  }
  #side .inner {
    border-radius: 0 10px 10px 0;
  }
}
@media only screen and (max-width:767px) {
  #side .side-btn{
  top: 135px;
  }
#side {
  min-width: 335px;
  top: 135px;
}
#side .inner {
  padding: 40px;
}
  #side .inner > ul > li > strong{
    font-size: 18px;
    padding: 15px 24px 15px 8px;
  }
  #side .inner > ul > li .side-menu li p, #side .inner > ul > li .side-menu li a{
    font-size: 14px;
  }
#side .inner > ul > li .side-menu li:last-child {
  padding-bottom: 15px;
}
#side .inner > ul > li .side-menu li > ul > li:last-child {
  padding-bottom: 0;
}
#side .side-btn {
  background: url("/img/general/common/img-btn-open-sp.svg");
  width: 35px;
  height: 77px;
}
  .close #side .side-btn{
  background: url("/img/general/common/img-btn-open-sp.svg")!important;
  }
.open #side .side-btn {
  background: url("/img/general/common/img-btn-close-sp.svg");
}
}


/* content
-----------------------------------------------*/
#content {  
max-width: 1400px;
padding: 0px 40px 0px 400px;
  width: 100%;
  margin: 0 auto;
  padding: 0 40px;
  transition: all 0.5s;
}
.active #content {
  transition: all 0s!important;
}
.active #content,
.open #content {
  max-width: 1840px;
  padding: 0 80px 0 530px;
}
@media only screen and (max-width:1124px) {
  #content,
  .active #content ,
  .open #content {
    padding: 0 20px;
  }
}


/* main
-----------------------------------------------*/
#main {
  position: relative;
  width: 100%;
  height: 360px;
  background: url("/img/general/guidelines/bgi-main.jpg?202603281156")no-repeat;
  background-size: cover;
}
.postid-40035 #main ,
.postid-40004 #main ,
.postid-40006 #main {
    background: url(/img/general/articles/bgi-main.jpg?202603281156) no-repeat;
    background-size: cover;
    background-position: center;
}
#main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
#main p {
  font-size: 48px;
  color: #fff;
  font-weight: bold;
  text-shadow: 2px 3px 3px rgba(0, 0, 0, 0.2);
	
}
#main .inner {
  position: absolute;
  display: block;
  content: "";
  top: 50%;
  left: 50%;
  transform: translate(-50%,-50%);
  max-width: 1670px;
  width: 100%;
  padding: 120px 40px;
}
@media only screen and (max-width:767px) {
  #main {
    height: 200px;
  }
  #main .inner {
    padding: 20px;
  }
  #main p {
    font-size: 24px;
  }
}


/* detail
-----------------------------------------------*/
#detail{
  background: #fff;
  border-radius: 100px;
  padding: 80px;
}
#detail a{
  text-decoration: underline;
  position: relative;
  word-wrap: break-word;
}
#detail .lead{
  font-size: 16px;
  line-height: 2;
}
#detail .right{
  text-align: right;
}
#detail p + p{
  margin-top: 20px;
}
#detail h1{
  font-size: 40px;
  padding-left: 25px;
  position: relative;
  margin-bottom: 40px;
	line-height: 1.2;
}
#detail h1::before{
  position: absolute;
  display: block;
  content: "";
  top: 2px;;
  left: 0;
  width: 4px;
  height: 100%;
  background: #FFBD3A;
}
#detail h1 + h3{
  margin-top: 0;
}
#detail ul + h2{
  margin-top: 60px;
}
#detail h2{
  font-size: 30px;
  color: var(--keycolor01);
  padding-bottom: 10px;
  border-bottom: 1px solid #000;
  margin: 40px 0 20px;
}
#detail h3 {
  font-size: 24px;
  color: var(--keycolor01);
  margin-bottom: 15px;
}
#detail h3 a{
  font-size: 24px;
  color: var(--keycolor01);
  margin-bottom: 15px;
	text-decoration: underline;
}
#detail h4 {
  color: var(--keycolor01);
  font-size: 24px;
  font-weight: bold;
  position: relative;
  padding-left: 16px;
  margin: 40px 0 20px;
}
#detail h4 a{
  color: var(--keycolor01);
  font-size: 24px;
  font-weight: bold;
  position: relative;
  margin: 40px 0 20px;
	text-decoration: underline;
}
#content h4::before {
  content: "";
  background-color: var(--keycolor01);
  height: 100%;
  width: 4px;
  position: absolute;
  left: 0;
  bottom: 0;
}
#detail h5 {
  font-size: 20px;
  background: rgba(251,148,139,.2);
  margin: 40px 0 20px;
  padding: 5px 10px;
}
#detail h6 {
  font-size: 20px;
  display: flex;
  align-items: center;
}
#detail h6::before,
#detail h6::after {
  background: #FB948B;
  content: "";
  flex-grow: 1;
  height: 2px;
  margin-left: 10px;
}
#detail h6::before {
  margin-right: 10px;
}
#detail h6::after {
  margin-left: 10px;
}
#detail .link-list li {
  margin-bottom: 10px;
  padding-left: 15px;
  position: relative;
}
#detail .link-list li::before {
  position: absolute;
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  box-sizing: border-box;
  border-top: solid 2px var(--keycolor01);
  border-right: solid 2px var(--keycolor01);
  transform: rotate(45deg);
  top: 15px;
  left: -5px;
}
#detail .link-list li:has(h4)::before {
  display: none;
}
#detail .link-list li:last-child {
  margin-bottom: 0;
}
#detail .link-list li .new{
  background: var(--keycolor01);
  color: #fff;
  line-height: 25px;
  height: 25px;
  font-weight: bold;
  display: inline-block;
  padding: 0 8px;
  border-radius: 2px;
}
#detail .link-list li .new + a{
  margin-left: 10px;
}
#detail .link-list li a{
  position: relative;
}
#detail .link-list li span{
  display: block;
}
#detail .link-list li .line{
  text-decoration: line-through;
  display: block;
}
#detail .link{
  color: var(--keycolor01)!important;
}
#detail .scroll {
  display: block;
  overflow-x: auto;
}
#detail table {
  margin-top: 30px;
}
#detail td, #content th {
  padding: 20px;
}
#detail th {
  width: 25%;
}
#detail tr:nth-child(odd) {
  background: #FFF5F3;
}
#detail .col3{
  display: grid;
  gap: 10px;
  grid-template-columns: 1fr 1fr 1fr;
  margin-top: 20px;
}
#detail .col3 .col{
  border: 1px solid var(--keycolor01);
  border-radius: 10px;
  position: relative;
}
#detail .col3 .col::after,
#detail .col3 .col::before{
  content: "";
  position: absolute;
  top: 50%;
  background-color: var(--keycolor01);
  height: 1px;
}
#detail .col3 .col::before {
  right: 15px;
  width: 18px;
}
#detail .col3 .col::after {
  right: 15px;
  transform-origin: right bottom;
  width: 8px;
  transform: rotate(45deg);
}
#detail .col3 .col a{
  color: var(--keycolor01);
  text-decoration: none;
  font-size: 12px;
  font-weight: bold;
  padding: 10px 40px 10px 20px;
  display: flex;
  align-items: center;
  height: 100%;
  width: 100%;
}
#detail .list-box {
  margin-top: 20px;
}
#detail .list-box li{
  padding: 20px 0;
  border-top: 1px solid #000;
}
#detail .list-box li:last-child{
  border-bottom: 1px solid #000;
}
#detail .list-box h3{
  margin: 0 0 15px;
  border-bottom: none;
  padding-bottom:0;
}
#detail .list-box p{
  font-size: 16px;
}
#content .pdf_box {
  margin: 80px 0 20px;
font-size: 16px;
  position: relative;
	padding-left: 28px;
}
#content .pdf_box a {
font-size: 16px;
}
#content .pdf_box img {
	display: none;
}
#content .pdf_box::before {
  content: "";
  position: absolute;
  width: 21px;
  height: 21px;
  background-image: url("/img/common/icon-pdf.png");
  background-repeat: no-repeat;
       top: 6px;
	left: 0;
}
#content .mso_box {
	font-size: 16px;
  margin: 80px 0 20px;
}
#content .mso_box + .pdf_box {
  margin-top: 20px;
}
#content .pdf_box a[target="_blank"]::after{
  display: none;
}
@media only screen and (max-width:980px) {
#content .mso_box {
  margin: 60px 0 20px;
    line-height: 1.5;
}
  #content .pdf_box {
  margin: 60px 0 20px;
    line-height: 1.5;
	  padding-bottom: 60px;
  }
  #content .pdf_box a {
    line-height: 1.5;
  }
#content .mso_box + .pdf_box {
  margin-top: 20px;
}
}
@media only screen and (max-width:767px) {
  #detail{
    border-radius: 40px;
    padding: 30px;
  }
  #detail h1{
    font-size: 28px;
    margin-bottom: 20px;
  }
  #detail h1::before{
    top: 2px;
  }
  #detail ul + h2{
    margin-top: 40px;
  }
 #detail h2 {
    font-size: 24px;
    padding-bottom: 2px;
    margin: 40px 0 10px;
}
  #detail h3 {
    font-size: 20px;
  }
  #detail h4 a,
  #detail h4 {
    font-size: 20px;
  }
  #detail h5,
  #detail h6 {
    font-size: 18px;
  }
	#detail .link-list li {
    margin-bottom: 5px;
    padding-left: 10px;
  }
  #detail .link-list li::before {
    width: 8px;
    height: 8px;
  }
  #detail p {
    font-size: 18px;
    line-height: 1.5;
  }
  #detail p a {
    font-size: 18px;
    line-height: 1.5;
  }
  #detail .col3{
    grid-template-columns: 1fr;
    margin-top: 15px;
  }
  #detail .list-box li{
    padding: 15px 0;
  }
  #detail .list-box h3{
    margin: 0 0 10px;
  }
 #detail .link-list li a {
    font-size: 18px;
}
#detail .scroll {
  display: block;
  overflow-x: auto;
	margin-bottom: 60px;
}
 #detail .scroll table {
  width: 100%;
  white-space: nowrap;
}
 #content table {
    margin-top: 30px;
  }
  #content th {
    width: 27%;
  }
  #content td, #content th {
    font-size: 14px;
    padding: 5px;
  }
  #content td a, #content th a {
    font-size: 16px;
  }
#detail li,
#detail a{
  font-size: 18px;
  line-height: 1.5;
  line-height: 1.5;
}
}


/* footer
-----------------------------------------------*/
footer {
  background: #FFF5F3;
}
footer .link {
  max-width: 1440px;
  width: 100%;
  margin: 0 auto;
  padding: 60px 40px;
  display: flex;
  justify-content: center;
}
footer .link .col:last-child,
footer .link .col:first-child > ul > li {
  border-right: 1px solid var(--keycolor02);
}
footer .link .col:first-child > ul > li:first-child {
  border-left: 1px solid var(--keycolor02);
}
footer .link .col:first-child > ul {
  display: flex;
}
footer .link .col:first-child > ul > li:nth-child(n+4) {
  display: none;
}
footer .link .col > ul > li {
  padding: 0 40px;
}
footer .link .col + .col > ul > li:nth-child(-n+3) {
  display: none;
}
footer .link .col + .col > ul > li {
  margin-bottom: 20px;
}
footer .link .col li{
  max-width: 360px;
  width: 100%;
  display: block;
  line-height: 1;
}
footer .link .col:first-child li strong,
footer .link .col + .col li:nth-child(4) strong {
  padding-top: 10px;
  padding-bottom: 15px;
}
footer .link .col li strong {
  display: block;
  padding-bottom: 10px;
}
footer .link .col li strong,
footer .link .col li a {
  color: var(--keycolor02);
  font-size: 16px;
  line-height: 1;
  padding-bottom: 5px;
}
footer .link .col li > ul li a {
  font-size: 12px;
  line-height: 1.3;
  display: block;
  padding-bottom: 10px;
}
footer .link .col li > ul li:last-child {
  padding-bottom: 10px;
}

footer .inner {
  background: #fff;
  padding: 40px 40px 60px;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
footer .inner:has(font) {
align-items: flex-start;
  gap: 10px;
}
footer .inner .address {
  display: flex;
  gap: 20px;
}
footer .inner .address h2 {
  font-size: 24px;
}
footer .address .txt p {
  font-size: 16px;
    line-height: 1.5;
}
footer .inner .menu ul {
  display: flex;
  justify-content: end;
  gap: 30px;
  margin-bottom: 10px;
}
footer .inner .menu ul:has(font) {
  display: flex;
  gap: 0px;
flex-direction: column;
}
footer .inner .menu li:has(font) {
  line-height: 1.2;
}
footer .inner .menu li:has(font) br {
  display: none;
}
footer .inner .menu li a {
  font-size: 12px;
}
footer .inner .menu p {
  font-size: 14px;
  text-align: right;
}
@media only screen and (max-width:1420px) {
  footer .inner {
    padding: 20px;
  }
  footer .inner .address .txt p{
    font-size: 14px;
  }
}
@media only screen and (max-width:1100px) {
  footer .inner {
    flex-wrap: wrap;
    justify-content: center;
  }
  footer .inner .address {
    gap: 10px;
    width: 100%;
    text-align: center;
    justify-content: center;
  }
  footer .inner .address p {
    font-size: 14px;
    line-height: 1.8;
  }
  footer .inner .address .logo {
    display: none;
  }
  footer .inner .address h2 {
    position: relative;
    padding-left: 20px;
    display: inline-block;
  }
  footer .inner .address h2::before {
    position: absolute;
    display: block;
    content: "";
    background: url("/img/common/footer-logo.png")no-repeat;
    background-size: cover;
    width: 44px;
    height: 43px;
    left: -30px;
    top: 50%;
    transform: translateY(-50%);
  }
  footer .inner .menu p{
    text-align: center;
  }
  footer .inner .menu ul{
    margin-top: 20px;
    margin-bottom: 0;
  }
}
@media only screen and (max-width:767px) {
  footer {
    border-top: 1px solid var(--keycolor01);
  }
  footer .link {
    display: none;
  }
  footer .inner .menu {
    gap: 10px;
    width: 100%;
    margin-top: 15px;
  }
   footer .inner .menu:has(font) {
    margin-top: 0;
  }
footer .inner .menu ul:has(font) {
  display: flex;
    gap: 0px 30px;
    flex-direction: row;
	margin-top: 0;
}
 footer .inner .menu ul {
    justify-content: center;
    gap: 0px 30px;
  }
  footer .inner .menu li{
    line-height: 1;
    text-align: center;
    position: relative;
  }
  footer .inner .menu li::before,
  footer .inner .menu li:first-child::after{
    position: absolute;
    display: block;
    content: "";
    width: 1px;
    height: 30px;
    background: #333;
    top: 50%;
    margin-top: 3px;
    transform: translateY(-50%);
  }
  footer .inner .menu li::before{
    right: -15px;
  }
  footer .inner .menu li:first-child::after{
    left: -15px;
  }
  footer .inner .menu li a {
    font-size: 12px;
    line-height: 1;
  }
  footer .inner .menu p {
    font-size: 12px;
    text-align: center;
    margin-top: 15px;
  }
}


/* topScroll
-----------------------------------------------*/
#topScroll{
	position: fixed;
	bottom: 20px;
	right: 20px;
	cursor: pointer;
	width: 60px;
	height: 60px;
  background: #0978b7;
	font-size: 0;
	opacity: 0;
	transition: opacity .5s,background .5s;
  z-index: 999;
}
#topScroll.fade{
	opacity: 1;
}
#topScroll:hover{
	background: #fff;
  border: 1px solid #0978b7;
}
#topScroll::before{
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	border-top: solid 2px #fff;
	border-left: solid 2px #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: 3px;
	transform: translate(-50%,-50%) rotate(45deg);
	transition: border-color .5s;
}
#topScroll:hover::before{
	border-top-color: #0978b7;
	border-left-color: #0978b7;
}
@media screen and (max-width: 750px){
	#topScroll{
		width: 39px;
		height: 40px;
    bottom: 72px;
	}
	#topScroll::before{
	width: 10px;
	height: 10px;
	margin-top: 2.5px;
	}
}

/* topScroll
-----------------------------------------------*/
#topScroll{
	position: fixed;
	bottom: 20px;
	right: 20px;
	cursor: pointer;
	width: 60px;
	height: 60px;
  background: var(--keycolor01);
	font-size: 0;
	opacity: 0;
  border-radius: 50%;
	transition: opacity .5s,background .5s;
}
#topScroll.fade{
	opacity: 1;
}
#topScroll:hover{
	background: #fff;
  border: 1px solid var(--keycolor01);
}
#topScroll::before{
	content: "";
	display: block;
	width: 12px;
	height: 12px;
	border-top: solid 2px #fff;
	border-left: solid 2px #fff;
	position: absolute;
	top: 50%;
	left: 50%;
	margin-top: 3px;
	transform: translate(-50%,-50%) rotate(45deg);
	transition: border-color .5s;
}
#topScroll:hover::before{
	border-top-color: var(--keycolor01);
	border-left-color: var(--keycolor01);
}
@media screen and (max-width: 750px){
	#topScroll{
		width: 40px;
		height: 40px;
    bottom: 72px;
	}
	#topScroll::before{
	width: 10px;
	height: 10px;
	margin-top: 2.5px;
	}
}


/* news-list-box
-----------------------------------------------*/
#detail .news-list-box .col:not(:first-child) {
  margin-top: 80px;
}
#detail .news-list-box .col:first-child time {
  padding-top: 15px;
}
#detail .news-list-box .col time {
  display: block;
  font-size: 20px;
  line-height: 1;
}
#detail .news-list-box .col a {
  text-decoration: none;
}
#detail .news-list-box .col a:hover .detail,
#detail .news-list-box .col a:hover time,
#detail .news-list-box .col a:hover h2 {
  color: var(--keycolor01);
}
#detail .news-list-box .col h2 {
  margin-top: 0;
}
@media only screen and (max-width:767px) {
  #detail .news-list-box .col:not(:first-child) {
    margin-top: 60px;
  }
  #detail .news-list-box .col:first-child time {
    padding-top: 30px;
  }
  #detail .news-list-box .col time {
    font-size: 16px;
  }
}


/* pagination
-----------------------------------------------*/
#pagination {
  text-align: center;
  margin-top: 60px;
}
#pagination h2 {
  display: none;
}
#pagination .pagination-info {
  font-size: 12px;
}
#pagination .nav-links {
  display: flex;
  gap: 15px;
  justify-content: center;
	margin-top: 10px;
}
#pagination .nav-links span,
#pagination .nav-links a {
  font-size: 20px;
  display: block;
  line-height: 48px;
  text-align: center;
  height: 50px;
  width: 50px;
  color:  var(--keycolor01);
  font-weight: bold;
  background: #fff;
}
#pagination .nav-links span.current,
#pagination .nav-links a.current {
  background:  var(--keycolor01);
  color: #fff;
}
#pagination .nav-links .dots,
#pagination .nav-links .prev,
#pagination .nav-links .next {
  border: none;
  width: auto;
  background: transparent !important;
}
#pagination .nav-links .prev,
#pagination .nav-links .next {
  position: relative;
  font-size: 0;
  display: flex;
  align-items: center;
}
#pagination .nav-links .prev::before,
#pagination .nav-links .next::before {
  content: "";
  display: block;
  width: 16px;
  height: 16px;
  border-bottom: 4px solid  var(--keycolor01);
  border-right: 4px solid  var(--keycolor01);
  left: 0%;
}
#pagination .nav-links .prev::before {
  transform: rotate(135deg);
}
#pagination .nav-links .next::before {
  transform: rotate(315deg);
}
#pagination .nav-links .dots {
  color: #333;
}
@media only screen and (max-width:767px) {
  #pagination {
    margin-top: 50px;
  }
  #pagination .nav-links {
    gap: 10px;
  }
  #pagination .nav-links span,
  #pagination .nav-links a {
    font-size: 16px;
    line-height: 38px;
    height: 40px;
    width: 40px;
  }
}


/* size-area
-----------------------------------------------*/
.size-search{
  display: flex;
  align-items: center;
  gap: 20px;
}
#size-area {
  margin-bottom: 15px;
}
#size-area ul {
  display: flex;
  gap: 10px;
  align-items: center;
}
#size-area p {
  font-size: 14px !important;
  width: 100%;
  text-align: center;
}
#size-area ul li button {
  height: 100%;
  padding: 5px 10px;
  display: flex;
  align-items: center;
  cursor: pointer;
  transition: all .4s;
}
#size-area ul li.active button,
#size-area ul li:hover button {
  background: var(--keycolor02);
  color: #fff;
}
#size-area ul li.active {
  pointer-events: none;
}
@media screen and (max-width: 767px){
  #size-area {
    margin-top: 0;
  }
  #size-area ul {
    gap: 5px;
  }
  #size-area p {
    font-size: 12px !important;
  }
  #size-area ul li button {
    font-size: 12px !important;
  }
}




/* print
-----------------------------------------------*/
#qrcode {
  padding: 20px 20px 0 20px;
  display: none;
}
#qrcode canvas {
  display: block;
  margin: 0 0 0 auto;
  width: 100%;
  max-width: 160px;
  height: auto;
}
@media print{

  /* Chrome用 */
  @supports (-webkit-print-color-adjust: exact) {
    body {
      zoom: 0.80;
    }
  }
  /* Firefox用 */
  @-moz-document url-prefix() {
    body {
      zoom: 0.52;
    }
  }
  
  
  .search-area,
  #size-area,
  .navi-area,
  #navi-tab,
  #sp-menu,
  #side-cover,
  #topScroll,
  footer,
  #gt_float_wrapper {
    display: none !important;
  }
  header {
    position: relative !important;
    border-bottom: 2px solid #0978b !important;
  }
  #wrap {
    padding-top: 0 !important;
  }
  #content {
    padding: 0 40px !important;
  }
  header .logo-area .logo {
    max-width: 50px !important;
  }
  header .logo-area h1 {
    font-size: 24px !important;
  }
  #breadcrumb li a,
  #breadcrumb li,
  header .logo-area h1 span {
    font-size: 12px !important;
  }
  #main {
    height: 250px !important;
  }
  #main .inner {
    padding: 60px 40px !important;
  }
  #main p {
    font-size: 30px !important;
    padding: 40px !important;
    min-height: 100px !important;
  }
  #detail {
    border-radius: 40px !important;
    padding: 40px !important;
  }
  #detail h1 {
    font-size: 30px !important;
  }
  #detail h2 {
    font-size: 24px !important;
  }
  #detail th, #detail td {
    padding: 10px !important;
  }
  #detail th,
  #detail td,
  #detail span,
  #detail p,
  #detail a {
    font-size: 14px !important;
  }
  #detail .link-list li {
    padding-bottom: 0 !important;
    margin-bottom: 0 !important;
  }
  #qrcode {
    display: block;
  }
  .circle {
    transform: translateY(0)!important;
    opacity: 1!important;
  }
  #main{
    height: 500px!important;
  }
}

/*-----------------------------------------------
tag-list
-----------------------------------------------*/
h1 + .tag-list{
  margin: 20px 0 40px;
}
.tag-list{
  margin-top: 60px;
}
.tag-list ul {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  padding-bottom: 1px;
}
.tag-list li {
  font-size: 12px;
  line-height: 1;
}
 .tag-list li a {
  display: inline-block;
   font-size: 14px!important;
   color: var(--keycolor01);
  border: 1px solid var(--keycolor01);
  padding: 4px 7px;
  border-radius: 3px;
  transition: opacity .4s;
}
 .tag-list li a::before {
  content: "#";
}
.tag-list ul li a:hover {
  opacity: .7;
}
/*-----------------------------------------------
保護記事
-----------------------------------------------*/
.post-password-form input[name="post_password"]{
  border: 1px solid #000;
  padding: 10px 40px 10px 10px;
}
.post-password-form input[name="Submit"]{
    background: var(--keycolor01);
    color: #fff;
    padding: 0 15px;
    line-height: 37px;
    border-radius: 5px;
  cursor: pointer;
}



/*-----------------------------------------------
tablepress
-----------------------------------------------*/
.border th,
.border td{
  border: solid 1px var(--keycolor01);
}
.border thead th{
  border-right: solid 1px #fff!important;
}
.border thead th:last-child{
  border-right: none!important;
}
.row td:first-child{
  background: var(--keycolor01)!important;
  color: #fff!important;
  font-weight: bold;
}
.border.row td:first-child{
  border-bottom: #fff solid 1px;
}
.border.row tr:last-child td:first-child{
  border-bottom: none;
}
.tablepress th,
.tablepress td{
  width: auto!important;
  word-break: break-all;
}
.tablepress tr{
  background: #fff!important;
  width: 100%;
}
.tablepress > .row-striping tr:nth-child(even),
.tablepress > .row-striping tr:nth-child(even) {
  background: rgba(190, 227, 246, .4)!important;
}
.tablepress > .row-striping tr:nth-child(odd),
.tablepress > .row-striping tr:nth-child(odd) {
  background: #fff!important;
}
.tablepress thead th{
  background: var(--keycolor01)!important;
  color:#fff!important;
}

.tablepress thead .dt-orderable-asc .dt-column-order:after,
.tablepress thead .dt-ordering-asc .dt-column-order:after {
  content: "";
  height: 25px;
  width: 20px;
  position: absolute;
  border: 10px solid transparent;
  border-bottom-color: #fff;
}
.tablepress thead .dt-orderable-desc .dt-column-order:before,
.tablepress thead .dt-ordering-desc .dt-column-order:before {
  content: "";
  height: 25px;
  width: 20px;
  position: absolute;
  border: 10px solid transparent;
  border-top-color: #fff;
}
.tablepress thead .dt-orderable-asc .dt-column-order,
.tablepress thead .dt-orderable-desc .dt-column-order,
.tablepress thead .dt-ordering-asc .dt-column-order, 
.tablepress thead .dt-ordering-desc .dt-column-order {
  position: relative;
  padding-right: 30px;
  display: flex;
  align-items: center;
}
.tablepress thead .dt-orderable-asc .dt-column-order:after, .tablepress thead .dt-orderable-asc .dt-column-order:before, .tablepress thead .dt-orderable-desc .dt-column-order:after, .tablepress thead .dt-orderable-desc .dt-column-order:before, .tablepress thead .dt-ordering-asc .dt-column-order:after, .tablepress thead .dt-ordering-asc .dt-column-order:before, .tablepress thead .dt-ordering-desc .dt-column-order:after, .tablepress thead .dt-ordering-desc .dt-column-order:before {
  opacity: .3;
}
.tablepress thead .dt-orderable-asc, .tablepress thead .dt-orderable-desc {
  cursor: pointer;
  outline-offset: -2px;
}
.tablepress thead .dt-ordering-asc .dt-column-order:before, .tablepress thead .dt-ordering-desc .dt-column-order:after {
  opacity: 1;
}
.dt-column-header {
  display: flex;
  justify-content: space-between;
}
.tablepress .row-hover tr:hover{
  background: #ffffe0!important;
}
.dt-layout-row{
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
}
.dt-layout-row.dt-layout-table{
  display: block;
}
.dt-search{
  display: flex;
}
.dt-search input{
    border: 1px solid #000;
    padding: 10px;
  margin-left: 10px;
}
.dt-length {
  display: none;
}
.dt-layout-table + .dt-layout-row{
  flex-wrap: wrap;
  justify-content: center;
}
.dt-layout-table + .dt-layout-row > div{
  width: 100%;
  text-align: center;
}
.dt-info{display: none;}
.dt-paging nav{
    display: flex;
    gap: 15px;
    justify-content: center;
    margin-top: 10px;
}
.dt-paging-button{
    font-size: 20px;
    display: block;
    line-height: 48px;
    text-align: center;
    height: 50px;
    width: 50px;
    border: 1px solid var(--keycolor01);
    color: var(--keycolor01);
    font-weight: bold;
  background: #fff;
  cursor: pointer;
}
.dt-paging-button:hover,
.dt-paging-button.current{
  background: var(--keycolor01);
    color: #fff;
}
.dt-container{
  margin-bottom: 60px;
}
.table-scroll{
  overflow-x: auto;
}
.vaccine_schedule th {
	white-space: nowrap;
	text-align: center;
}
.vaccine_schedule td,
.vaccine_schedule th,
.vaccine_schedule a {
	font-size: 16px;
  max-width: none!important;
}
.vaccine_schedule a{
  text-decoration: underline;
  color: var(--keycolor01);
}
.vaccine_schedule .column-1,
.vaccine_schedule .column-2 {
  white-space: nowrap;
}
.vaccine_schedule .column-2 {
  text-align: center;
}
.vaccine_schedule thead th {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
  z-index: 1;
}
.table-scroll:has(.vaccine_schedule) {
  overflow: auto;
  max-height: 600px;
}
.vaccine_schedule tr:has(.teiki) .column-1,
.vaccine_schedule tr:has(.teiki) .column-3,
.vaccine_schedule tr:has(.teiki) .column-4,
.vaccine_schedule tr:has(.teiki) .column-5 {
  background: #F9E6F0!important;
}
.vaccine_schedule tr:has(.ninni) .column-1,
.vaccine_schedule tr:has(.ninni) .column-3,
.vaccine_schedule tr:has(.ninni) .column-4,
.vaccine_schedule tr:has(.ninni) .column-5 {
  background: #D7EDFB!important;
}
.vaccine_schedule tr:has(.hoken) .column-1,
.vaccine_schedule tr:has(.hoken) .column-3,
.vaccine_schedule tr:has(.hoken) .column-4,
.vaccine_schedule tr:has(.hoken) .column-5 {
  background: #FDFFC5!important;
}
.kansensho td:first-child{
  white-space: nowrap;
}
.kansensho td a,
.kansensho td{
  font-size: 16px;
}
@media only screen and (max-width:767px) {
.dt-paging-button{
        font-size: 16px;
        line-height: 38px;
        height: 40px;
        width: 40px;
}
  .dt-search label{
    font-size: 12px;
  }
.dt-search input{
    padding: 5px;
}
  .dt-layout-row{
    justify-content: flex-start;
  }
  .tablepress th,
.tablepress td {
    word-break: auto-phrase;
}
.vaccine_schedule a{
  font-size: 14px!important;
  line-height: 1.2;
}
  .vaccine_schedule .column-5{
    min-width: 400px;
  }
}


/* link
-----------------------------------------------*/
#detail .link {
  margin-top: 40px;
  display: flex;
  gap: 10px;
  width: 100%;
  flex-wrap: wrap;
}
#detail .link li {
  width: calc(33.3% - 7px);
}
#detail .link li a {
  width: 100%;
  height: 100%;
  padding: 25px 20px 25px 15px;
  border: solid 1px var(--keycolor01);
  border-radius: 10px;
  font-weight: bold;
  color: var(--keycolor01);
  text-decoration: none!important;
  position: relative;
display: flex;
align-items: center;
    line-height: 1.5;
}
#detail .link li a:has(font) {
	display: block;
}
#detail .link li a:has(font) br {
  display: none;
	display: block;
}
#detail .link li a:after {
  content: "";
  display: block;
  position: absolute;
  top: calc(50% - 6px);
  right: 24px;
  width: 10px;
  height: 10px;
  border-top: 1px solid var(--keycolor01);
  border-right: 1px solid var(--keycolor01);
  transform: rotate(135deg);
  transition: all .3s;
}
#detail .menu li {
  width: calc(20% - 10px);
}
#detail .menu li a{ 
font-size: 16px;
  padding: 15px;
}
#detail .btn li a{ 
font-size: 18px;
}
#detail .btn li a::after{ 
      transform: rotate(45deg);
}
#detail .linkBtn{
  text-align: right;
}
#detail .linkBtn a{ 
    padding: 15px 50px 15px 15px;
    border: solid 1px var(--keycolor01);
    border-radius: 10px;
    font-weight: bold;
    color: var(--keycolor01);
    text-decoration: none !important;
    position: relative;
    display: inline-block;
    align-items: center;
    line-height: 1.5;
}
#detail .linkBtn a::after{ 
    content: "";
    display: block;
    position: absolute;
    top: calc(50% - 6px);
    right: 24px;
    width: 10px;
    height: 10px;
    border-top: 1px solid var(--keycolor01);
    border-right: 1px solid var(--keycolor01);
    transform: rotate(45deg);
    transition: all .3s;
}
@media only screen and (max-width:767px) {
#detail .link {
    flex-wrap: nowrap;
    flex-direction: column;
}
#detail .link li {
    width: 100%;
}
  #detail .link li a {
    padding: 12px 26px 12px 10px;
    font-size: 18px;
    height: 100%;
    display: flex;
    align-items: center;
  }
  #detail .link li a:after {
    right: 14px;
    width: 8px;
    height: 8px;
  }
}

/* updata
-----------------------------------------------*/
p.updata{
  max-width: 550px;
  display: flex;
  margin: 0 0 0 auto!important;
  text-align: right;
  line-height: 1.5;
}
p.updata strong{
  font-weight: normal;
  white-space: nowrap;
}


/*-----------------------------------------------
listMenu
-----------------------------------------------*/
.listMenu {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap:10px;
  margin: 40px auto;
}
.listMenu li a{
  padding: 20px 70px 20px 20px;
  border: 1px solid #FB948B;
  border-radius: 12px;
  display: block;
  position: relative;
  display: flex;
  align-items: center;
  height: 100%;
  line-height: 1.5;
  text-decoration: none!important;
}
.listMenu li a::before{
    position: absolute;
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    box-sizing: border-box;
    border-top: solid 2px #FB948B;
    border-right: solid 2px #FB948B;
    transform: translateY(-50%) rotate(45deg);
    top: 50%;
    right: 30px;
}
@media only screen and (max-width:767px) {
.listMenu{
  grid-template-columns: 1fr;
}
.listMenu li a{
  padding: 15px 40px 15px 15px;
  font-size: 16px;
}
.listMenu li a::before{
    width: 8px;
    height: 8px;
    right: 15px;
}
  
}
