@charset "UTF-8";
:root {
  --color1: rgba(20, 117, 135, 1);
  --color2: rgba(250, 126, 92, 1);
  --color3: rgba(246, 241, 235, 1);
  --color4: rgba(254, 203, 95, 1);
  --color5: rgba(99, 204, 200, 1);
  --gray: rgba(51, 51, 51, 1);
  --brown: rgba(146, 53, 58, 1);
  --blue: rgba(29, 32, 136, 1);
  --red: rgba(230, 0, 18, 1);
}

.cautionUl li {
  text-indent: -1em;
  margin-left: 1em;
}

#homeImgBox {
  width: 100%;
  height: 56.25vw;
  position: relative;
}

#homeImgBox span {
  display: none;
}

#homeImgBox .copyBox,
#homeImgBox .subcopyBox {
  color: rgb(255, 255, 255);
  position: absolute;
  text-shadow: 1px 1px rgba(51, 51, 51, 0.5);
}

#homeImgBox .copyBox {
  font-size: 4rem;
  font-weight: 900;
  top: 4rem;
  left: 2rem;
  z-index: 10;
  line-height: 1.25;
}

#homeImgBox .copyBox::after {
  content: "";
  display: block;
  width: 100%;
  height: 0.5em;
  background: var(--gray);
  filter: blur(20px);
  position: absolute;
  top: 0.25em;
  left: 0;
  opacity: 0.3;
  z-index: -1;
}

#homeImgBox .subcopyBox {
  right: 2rem;
  bottom: 2rem;
}

#homeNewsBox {
  margin: 8rem 0;
}

#homeNewsBox h3 {
  width: 6em;
  border-right: thin solid var(--gray);
}

#homeNewsBox .homenewscontentsBox {
  flex: 1;
  padding-left: 2em;
}

#homeNewsBox .homenewscontentsBox ul li {
  display: flex;
  flex-wrap: nowrap;
  justify-content: left;
}

#homeNewsBox .homenewscontentsBox ul li:not(:last-child) {
  padding-bottom: 0.5em;
  border-bottom: thin solid var(--gray);
  margin-bottom: 0.5em;
}

#newslistBox dd .newsDateBox,
#homeNewsBox .homenewscontentsBox ul li .newsDateBox {
  padding: 0 2rem 0 5rem;
}

#newslistBox dd .newsDateBox .newIconSpan,
#homeNewsBox .homenewscontentsBox ul li .newIconSpan {
  position: relative;
}

#newslistBox dd .newsDateBox .newIconSpan::before,
#homeNewsBox .homenewscontentsBox ul li .newIconSpan::before {
  content: "";
  width: 4rem;
  height: 4rem;
  background: var(--red);
  border-radius: 50%;
  position: absolute;
  top: -1rem;
  left: -5rem;
}

#newslistBox dd .newsDateBox .newIconSpan::after,
#homeNewsBox .homenewscontentsBox ul li .newIconSpan::after {
  content: "NEW";
  color: rgb(255, 255, 255);
  font-size: 1rem;
  line-height: 100%;
  width: 4rem;
  text-align: center;
  position: absolute;
  top: 0.5rem;
  left: -5rem;
}

#newsContentBox .more-link,
#newslistBox dd .more-link,
#homeNewsBox .homenewscontentsBox .more-link {
  margin-top: 4rem;
  text-align: right;
}

#newslistBox .tabMenuNavUl {
  display: flex;
  flex-wrap: nowrap;
  justify-content: space-between;
  margin-bottom: 4rem;
  position: relative;
}

#newslistBox .tabMenuNavUl::before,
#newslistBox .tabMenuNavUl::after {
  content: "";
  width: 15vw;
  height: 100%;
  border-bottom: 2px solid var(--brown);
  position: absolute;
  bottom: 0;
  pointer-events: none;
}

#newslistBox .tabMenuNavUl::before {
  left: -15vw;
}

#newslistBox .tabMenuNavUl::after {
  right: -15vw;
}

#newslistBox .tabMenuNavUl li {
  width: 50%;
  position: relative;
}

#newslistBox .tabMenuNavUl li a {
  display: block;
  padding: 1rem 0;
  text-align: center;
  font-size: 2.4rem;
  text-decoration: none;
  position: relative;
  background-repeat: no-repeat;
  background-size: cover;
}

#newslistBox .tabMenuNavUl li:nth-child(1) a {
  border-left: 2px solid var(--brown);
  background-image: url(../img/news/newsline-lo.svg);
  background-position: 100% 0;
}

#newslistBox .tabMenuNavUl li:nth-child(2) a {
  border-right: 2px solid var(--brown);
  background-image: url(../img/news/newsline-ro.svg);
  background-position: 0 0;
}

#newslistBox .tabMenuNavUl li:nth-child(1).nowpage a {
  background-image: url(../img/news/newsline-l.svg);
}

#newslistBox .tabMenuNavUl li:nth-child(2).nowpage a {
  background-image: url(../img/news/newsline-r.svg);
}

.myPagenation {
  margin-top: 6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: left;
}

.myPagenation li {
  width: 5rem;
  text-align: center;
  border: thin solid rgba(51, 51, 51, 0.5);
  background: var(--brown);
  color: rgb(255, 255, 255);
  line-height: 5rem;
  margin-right: 2rem;
}

.myPagenation li a {
  display: block;
  background: rgb(255, 255, 255);
  color: var(--brown);
  text-decoration: none;
  padding: 1.8rem 0;
  font-size: 1.4rem;
  line-height: 100%;
}

.myPagenation li a:hover {
  background: rgba(255, 255, 255, 0.5);
  color: rgb(255, 255, 255);
}

#newsContentBox.flexBox,
#newslistBox dd ul.newslistUl li.flexBox {
  flex-wrap: nowrap;
  margin-bottom: 3em;
}

.flexBox .newsdetailBox .newscontent p,
.flexBox .newsdetailBox .newscontent ul li {
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}

#newslistBox dd ul.newslistUl li.flexBox:not(:last-child) {
  padding-bottom: 1.5em;
  border-bottom: thin solid rgba(51, 51, 51, 0.5);
}

#newsContentBox.flexBox .newsDateBox,
#newslistBox dd ul.newslistUl li.flexBox .newsDateBox {
  width: 20rem;
  color: var(--blue);
}

#newsContentBox.flexBox .newsdetailBox,
#newslistBox dd ul.newslistUl li.flexBox .newsdetailBox {
  flex: 1;
}

#newsContentBox.flexBox .newsdetailBox .newstitle,
#newslistBox dd ul.newslistUl li.flexBox .newsdetailBox .newstitle {
  font-size: 150%;
  color: var(--blue);
  margin-bottom: 1rem;
}

#mainContentsBox ul.disc li,
#mainContentsBox ul.square li,
#mainContentsBox ul.pointUl li {
  margin: 0 0 0.5rem 2em;
  position: relative;
}

#mainContentsBox ul.pointUl li {
  margin: 0 0 2rem 2rem;
}

#mainContentsBox ul.disc li::before,
#mainContentsBox ul.square li::before,
#mainContentsBox ul.pointUl li::before {
  position: absolute;
  top: 0;
  left: -1.5em;
}

#mainContentsBox ul.disc li::before,
#mainContentsBox ul.pointUl li::before {
  content: "●";
}

#mainContentsBox ul.square li::before {
  content: "■";
}

.submitBox {
  margin: 3rem 0;
  text-align: center;
}

.submitBox input {
  font-size: 1.8rem;
  width: 30vw;
  padding: 2rem 0;
  background: rgba(51, 51, 51, 0.2);
}

.mw_wp_form_confirm form p {
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--gray);
}

.wp-block-table tr td {
  padding: 0.5em 0;
}

.wp-block-table tr td:first-child {
  padding-right: 2em;
}

.wp-block-image img {
  height: auto !important;
}

/* [1280over] ============================================ */
@media only screen and (min-width: 1830px) {
  /* 1830の70% */
  #newslistBox .tabMenuNavUl::before {
    left: calc((50vw - 640px) * -1);
    width: calc(50vw - 640px);
  }
  #newslistBox .tabMenuNavUl::after {
    right: calc((50vw - 640px) * -1);
    width: calc(50vw - 640px);
  }
}
@media only screen and (min-width: 1600px) {
  /* 1600の80% */
  h2::before {
    left: calc((50vw - 640px) * -1);
    width: calc(50vw - 640px);
  }
  h2::after {
    right: calc((50vw - 640px) * -1);
    width: calc(50vw - 640px);
  }
}
/* [sp] ============================================ */
@media only screen and (max-width: 780px) {
  #newslistBox .tabMenuNavUl::before {
    left: -5vw;
    width: 5vw;
  }
  #homeImgBox .copyBox {
    font-size: 2.8rem;
    font-weight: 700;
  }
  #homeNewsBox h3 {
    width: 100%;
    border-right: none;
    margin-bottom: 1rem;
  }
  #homeNewsBox .homenewscontentsBox {
    padding-left: 0;
  }
  #newsContentBox.flexBox,
  #newslistBox dd ul.newslistUl li.flexBox,
  #homeNewsBox .homenewscontentsBox ul li {
    flex-wrap: wrap;
  }
  #homeNewsBox .homenewscontentsBox ul li .newstitle {
    width: 100%;
    padding-left: 5rem;
  }
  #newsContentBox.flexBox .newsDateBox,
  #newslistBox dd ul.newslistUl li.flexBox .newsDateBox {
    width: 100%;
    padding: 0 0 1rem 0;
  }
  #newslistBox dd .newsDateBox .newIconSpan {
    float: right;
  }
}
/* [add260331] ============================================ */
#headerBox {
  padding: 0;
}
#headerBox .initBox {
  position: relative;
}
#headerBox .initBox #mainMenuBox .flexBox {
  align-items: flex-end;
}
#headerBox .initBox #mainMenuBox .flexBox li a {
  padding: 0 0 0.25em 0;
  margin: 0.5em 0 1em;
}
#headerBox .initBox #mainMenuBox .flexBox li.contact a {
  padding: calc(2rem + 1.5em) 1em 1.25em 1em;
  color: rgb(255, 255, 255);
  background: var(--brown);
  margin: 0;
}
#headerBox .initBox #mainMenuBox .flexBox li.contact a::after {
  content: none;
}
#headerBox .initBox #mainMenuBox .flexBox li.contact a:hover {
  background: var(--red);
}
#headerBox .initBox #telBoxPC {
  position: absolute;
  top: 0.5em;
  right: 6.3em;
  font-size: 150%;
}
#headerBox .initBox #telBoxPC a {
  text-decoration: none;
}
#headerBox .initBox #telBoxPC a::before {
  content: "TEL：";
  font-size: 1.4rem;
}
@media only screen and (max-width: 780px) {
  #headerBox .initBox #telBoxPC {
    display: none;
  }
}
@media only screen and (max-width: 780px) {
  #headerBox {
    padding: 2rem 0;
  }
}

.mytable tr td {
  padding: 1em;
}

picture {
  display: inline-block;
}
picture.caption {
  position: relative;
  z-index: 1;
}
picture.caption::before, picture.caption::after {
  color: #000;
  text-shadow: -1px 0 5px #FFF, 1px 0 5px #FFF, 0 -1px 5px #FFF, 0 1px 5px #FFF, -1px 0 5px #FFF, 1px 0 5px #FFF, 0 -1px 5px #FFF, 0 1px 5px #FFF;
  font-size: 1.1rem;
  font-weight: bold;
  position: absolute;
  bottom: 3px;
  letter-spacing: -0.015em;
}
@media only screen and (max-width: 780px) {
  picture.caption::before, picture.caption::after {
    bottom: 7px;
    font-size: 1rem;
  }
}
picture.caption::before {
  content: attr(data-left);
  left: 6px;
}
picture.caption::after {
  content: attr(data-right);
  right: 6px;
}
picture.caption.blackshadow::before, picture.caption.blackshadow::after {
  color: #FFF;
  text-shadow: -1px 0 5px #000, 1px 0 5px #000, 0 -1px 5px #000, 0 1px 5px #000;
}
picture.caption.nonshadow::before, picture.caption.nonshadow::after {
  text-shadow: none !important;
}
picture.caption.nonshadowwhite::before, picture.caption.nonshadowwhite::after {
  color: #FFF;
  text-shadow: none !important;
}
picture img {
  vertical-align: baseline;
  max-width: 100%;
}

.grid {
  display: grid;
  gap: 2rem;
}
.grid.g2 {
  grid-template-columns: repeat(2, 1fr);
}
@media only screen and (max-width: 780px) {
  .grid.onecolumn {
    grid-template-columns: 1fr;
  }
}

#homeBusinessBox .grid dl {
  background: var(--color3);
  padding: 1.5em;
  border-radius: 8px;
}
#homeBusinessBox .grid dl dt {
  font-size: 125%;
  font-weight: bold;
  color: var(--brown);
  margin-bottom: 0.5em;
}
#homeBusinessBox .grid dl dd {
  display: flex;
  justify-content: space-between;
}
#homeBusinessBox .grid dl dd .imagebox {
  width: calc(40% - 2rem);
}
#homeBusinessBox .grid dl dd .textbox {
  width: 60%;
  line-height: 1.25;
}

#newslistBox dd ul.newslistUl li.flexBox.new .newsDateBox::after,
.homenewscontentsBox ul.newslistUl li.new .newstitle::after {
  content: "NEW";
  font-size: 80%;
  padding: 0.1em 0.5em;
  background: var(--red);
  color: #FFF;
}

.homenewscontentsBox ul.newslistUl li.new .newstitle::after {
  margin-left: 0.5em;
}/*# sourceMappingURL=design.css.map */