@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif:ital,wght@0,100..900;1,100..900&display=swap");
*,
*::before,
*::after {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}

ul,
ol {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

a:not([class]) {
  text-decoration-skip-ink: none;
}

img,
picture {
  max-width: 100%;
  display: inline-block;
}

input,
button,
textarea,
select {
  font: inherit;
  cursor: pointer;
}

strong {
  font-weight: bolder;
}

textarea {
  resize: vertical;
}

:root {
  --font_base: 16px/1.7 "Noto Sans JP", sans-serif;
}

:root {
  --default-black: #333;
  --default-white: #fff;
  --default-green:#B1EFE7;
  --default-green-dark:#5E9E9E;
  --default-yellow:#FFFDF1;
  --default-orange:#F39D2E;
  --default-blue: #009CEF;
  --default-gray:#F5F3EE;
  --base-gray-default: #F4F6F8;
  --base-gray-dark:#6C6C6C;
}

html {
  scroll-behavior: smooth;
}

a[href^=https],
a[href^="mailto:"] {
  word-break: break-all;
}

img {
  max-width: 100%;
  height: auto;
}

a {
  color: var(--default-black);
  text-decoration: none;
  transition: all 0.5s;
}

@media all and (min-width: 768px) {
  .spOnly {
    display: none;
  }
}

@media screen and (max-width: 767px) {
  .pcOnly {
    display: none;
  }
}

header {
  position: relative;
  background: var(--default-yellow);
  box-shadow: 3px 0px 3px rgba(51, 51, 51, 0.2);
  z-index: 2;
}
@media screen and (max-width: 999px) {
  header {
    background: var(--default-green);
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0px 3px 20px rgba(0, 0, 0, 0.1);
  }
}
header .header-wrap {
  width: 240px;
  position: sticky;
  top: 0px;
}
@media screen and (max-width: 999px) {
  header .header-wrap {
    width: 100%;
  }
}
header .header-wrap .header-logo {
  background: var(--default-green);
  padding: 45px 9px 45px;
  font-family: "Noto serif JP", serif;
  font-weight: 700;
  letter-spacing: 0.015em;
  line-height: 1;
}
@media screen and (max-width: 999px) {
  header .header-wrap .header-logo {
    padding: 18px 10px 15px;
    width: fit-content;
  }
}
header .header-wrap .header-logo .header-logo-text01 {
  position: relative;
  font-size: 0.875rem;
  padding: 0 0 0 44px;
}
@media screen and (max-width: 1200px) {
  header .header-wrap .header-logo .header-logo-text01 {
    font-size: 0.6875rem;
  }
}
@media screen and (max-width: 999px) {
  header .header-wrap .header-logo .header-logo-text01 {
    font-size: 0.75rem;
  }
}
header .header-wrap .header-logo .header-logo-text01::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../common/logo-black.png) no-repeat;
  background-size: contain;
  width: 31px;
  height: 26px;
}
header .header-wrap .header-logo .header-logo-text02 {
  font-size: 1.5rem;
  letter-spacing: 0.003em;
  margin-top: 20px;
}
@media screen and (max-width: 1200px) {
  header .header-wrap .header-logo .header-logo-text02 {
    font-size: 1.4375rem;
  }
}
@media screen and (max-width: 999px) {
  header .header-wrap .header-logo .header-logo-text02 {
    font-size: 1.375rem;
    margin-top: 13px;
  }
}
header .header-wrap .header-info {
  padding: 36px 9px 36px;
  font-size: 0.9375rem;
  line-height: 1;
  letter-spacing: 0.0015em;
}
@media screen and (max-width: 999px) {
  header .header-wrap .header-info {
    display: none;
  }
}
header .header-wrap .header-info .nav-list .nav-list__main {
  border-bottom: 1px solid #ccc;
  font-weight: 500;
}
header .header-wrap .header-info .nav-list .nav-list__main li {
  margin-bottom: 30px;
  margin-left: 15px;
}
header .header-wrap .header-info .nav-list .nav-list__main li a {
  transition: all 0.3s;
}
header .header-wrap .header-info .nav-list .nav-list__main li a.current {
  position: relative;
}
header .header-wrap .header-info .nav-list .nav-list__main li a.current::before {
  display: block;
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  background-color: var(--default-green-dark);
  border-radius: 100%;
  top: 50%;
  left: -15px;
  transform: translateY(-50%);
}
header .header-wrap .header-info .nav-list .nav-list__main a:hover {
  color: var(--default-green-dark);
}
header .header-wrap .header-info .nav-list .nav-list__sub {
  margin-top: 35px;
}
header .header-wrap .header-info .nav-list .nav-list__sub li {
  margin-bottom: 30px;
  margin-left: 15px;
  position: relative;
  z-index: 1;
}
header .header-wrap .header-info .nav-list .nav-list__sub li a {
  padding-left: 25px;
}
header .header-wrap .header-info .nav-list .nav-list__sub li a:hover {
  color: var(--default-green-dark);
}
header .header-wrap .header-info .nav-list .nav-list__sub li::before {
  position: absolute;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(../common/ico-contact.svg) no-repeat;
  background-size: contain;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
  transition: 0.3s;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  header .header-wrap .header-info .nav-list .nav-list__sub li::before {
    width: 14px;
    height: 14px;
  }
}
header .header-wrap .header-info .nav-list .nav-list__sub > li:nth-child(2)::before {
  content: "";
  background: url(../common/ico-access.svg) no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}
header .header-wrap .header-info .nav-list .nav-list__sub > li:nth-child(3)::before {
  content: "";
  background: url(../common/ico-qa.svg) no-repeat;
  background-size: contain;
  width: 22px;
  height: 22px;
}
header .header-wrap #nav-toggle {
  display: none;
}
@media screen and (max-width: 999px) {
  header .header-wrap #nav-toggle {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    background: var(--default-yellow);
    display: block;
    width: 55px;
    height: 55px;
    border-radius: 100%;
    text-align: center;
    padding-top: 7px;
    cursor: pointer;
  }
  header .header-wrap #nav-toggle span {
    display: block;
    width: 30px;
    height: 2px;
    background-color: var(--default-green-dark);
    transition: 0.3s;
    margin: 9px auto 0;
  }
  header .header-wrap #nav-toggle p {
    letter-spacing: 0.02em;
    font-size: 0.625rem;
    font-weight: 500;
    margin-top: 3px;
  }
}
header .header-wrap #nav-toggle.hamburgar-open span:nth-of-type(1) {
  transform: translateY(5px) rotate(30deg);
}
header .header-wrap #nav-toggle.hamburgar-open span:nth-of-type(2) {
  transform: translateY(-5px) rotate(-30deg);
}
header .header-wrap #menu-sp {
  display: none;
}
header .header-wrap #menu-sp.open {
  display: block;
  background: #DFF4F5;
  position: fixed;
  z-index: 1000000;
  width: 100%;
  left: 0;
  top: 0;
  height: 100vh;
  padding-top: 30px;
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  header .header-wrap #menu-sp.open {
    padding-top: 40px;
  }
}
header .header-wrap #menu-sp.open::after {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  content: "";
  background: var(--default-yellow);
  z-index: -1;
}
header .header-wrap #menu-sp.open .menu-sp-inner {
  width: 100%;
  padding: 0 20px;
  max-width: 700px;
  margin: auto;
}
header .header-wrap #menu-sp.open .menu-sp-inner nav ul.nav-list__main {
  width: 100%;
  border-bottom: 1px solid #ccc;
  padding-bottom: 10px;
}
header .header-wrap #menu-sp.open .menu-sp-inner nav ul.nav-list__main li {
  position: relative;
  width: 100%;
  margin: auto;
}
header .header-wrap #menu-sp.open .menu-sp-inner nav ul.nav-list__main li a {
  display: block;
  color: var(--default-black);
  font-size: 1rem;
  font-weight: 500;
  padding: 5px 0 5px 10px;
  margin-bottom: 20px;
  line-height: 1;
  width: 100%;
}
header .header-wrap #menu-sp.open .menu-sp-inner nav ul.nav-list__sub {
  width: 100%;
  margin-top: 35px;
}
header .header-wrap #menu-sp.open .menu-sp-inner nav ul.nav-list__sub li {
  position: relative;
  width: 100%;
  margin-left: 10px;
  z-index: 1;
}
header .header-wrap #menu-sp.open .menu-sp-inner nav ul.nav-list__sub li a {
  display: block;
  color: var(--default-black);
  font-size: 0.875rem;
  font-weight: 400;
  padding: 5px 0 5px 25px;
  margin-bottom: 20px;
  line-height: 1;
  width: 100%;
}
header .header-wrap #menu-sp.open .menu-sp-inner nav ul.nav-list__sub li::before {
  position: absolute;
  content: "";
  display: block;
  width: 18px;
  height: 18px;
  background: url(../common/ico-contact.svg) no-repeat;
  background-size: contain;
  top: 50%;
  left: 0;
  transform: translate(0%, -50%);
  transition: 0.3s;
  z-index: -1;
}
header .header-wrap #menu-sp.open .menu-sp-inner nav ul.nav-list__sub > li:nth-child(2)::before {
  content: "";
  background: url(../common/ico-access.svg) no-repeat;
  background-size: contain;
  width: 20px;
  height: 20px;
}
header .header-wrap #menu-sp.open .menu-sp-inner nav ul.nav-list__sub > li:nth-child(3)::before {
  content: "";
  background: url(../common/ico-qa.svg) no-repeat;
  background-size: contain;
  width: 22px;
  height: 22px;
}

body.open-spmenu {
  height: 100%;
  overflow: hidden;
  left: 0px;
  right: 0px;
  top: 0px;
  bottom: 0px;
  position: relative;
}

footer {
  background: #4C4C4C;
  padding: 50px 0 10px;
}
@media screen and (max-width: 767px) {
  footer {
    padding: 35px 0 20px;
  }
}
footer .fortop a {
  position: fixed;
  bottom: 30px;
  right: 30px;
  border-radius: 100vh;
  background: var(--default-green-dark);
  width: 60px;
  height: 60px;
  text-indent: 100%;
  overflow: hidden;
  z-index: 1000;
}
@media screen and (max-width: 767px) {
  footer .fortop a {
    right: 10px;
    width: 50px;
    height: 50px;
  }
}
footer .fortop a::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  width: 12.7px;
  height: 7.8px;
  background: url(../common/ico-arrow-white-up.svg) no-repeat;
  background-size: 12.8px;
}
footer .footer-wrap {
  width: 100%;
  max-width: 1260px;
  margin: auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  footer .footer-wrap {
    padding: 0 10px;
  }
}
footer .footer-wrap .footer-wrap-01 {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  footer .footer-wrap .footer-wrap-01 {
    flex-direction: column-reverse;
    gap: 40px;
  }
}
footer .footer-wrap .footer-wrap-01 .contact-box {
  background: var(--default-yellow);
  width: 340px;
  min-width: 300px;
  height: fit-content;
  padding: 15px 20px;
  border-radius: 8px;
  box-shadow: 3px 3px 3px rgba(0, 0, 0, 0.2);
}
@media screen and (max-width: 767px) {
  footer .footer-wrap .footer-wrap-01 .contact-box {
    width: 100%;
  }
}
footer .footer-wrap .footer-wrap-01 .contact-box .contact-tel {
  display: flex;
  flex-direction: column;
  gap: 15px;
  align-items: center;
  line-height: 1;
  color: #222;
  width: 100%;
}
footer .footer-wrap .footer-wrap-01 .contact-box .contact-tel h2 {
  position: relative;
  width: 100%;
  font-family: "Noto serif JP", serif;
  font-weight: 700;
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  text-align: center;
}
@media screen and (max-width: 767px) {
  footer .footer-wrap .footer-wrap-01 .contact-box .contact-tel h2 {
    font-size: 1.375rem;
  }
}
footer .footer-wrap .footer-wrap-01 .contact-box .contact-tel h2::before {
  content: "";
  display: block;
  position: absolute;
  background: var(--default-black);
  height: 1px;
  width: calc((100% - 175px) / 2);
  top: 50%;
  transform: translateY(-50%);
}
footer .footer-wrap .footer-wrap-01 .contact-box .contact-tel h2::after {
  content: "";
  display: block;
  position: absolute;
  background: var(--default-black);
  height: 1px;
  width: calc((100% - 175px) / 2);
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}
footer .footer-wrap .footer-wrap-01 .contact-box .contact-tel p {
  position: relative;
  padding-left: 32px;
  font-weight: 500;
  font-size: 1.875rem;
  letter-spacing: 0.015em;
  z-index: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  footer .footer-wrap .footer-wrap-01 .contact-box .contact-tel p {
    font-size: 1.75rem;
  }
}
footer .footer-wrap .footer-wrap-01 .contact-box .contact-tel p::before {
  position: absolute;
  content: "";
  display: block;
  width: 28px;
  height: 28px;
  background: url(../common/ico-contact.svg) no-repeat;
  background-size: contain;
  top: 7px;
  left: 0;
  transition: 0.3s;
}
footer .footer-wrap .footer-wrap-01 .contact-box .contact-tel p::after {
  position: absolute;
  content: "";
  width: calc(100% - 24px);
  height: 11px;
  background: var(--default-green);
  left: 28px;
  bottom: -4px;
  z-index: -1;
}
footer .footer-wrap .footer-wrap-01 .contact-box .contact-detail dl {
  display: flex;
  font-weight: 500;
  gap: 12px;
  margin-top: 18px;
  font-size: 0.875rem;
  justify-content: center;
}
@media screen and (max-width: 767px) {
  footer .footer-wrap .footer-wrap-01 .contact-box .contact-detail dl {
    font-size: 0.75rem;
  }
}
footer .footer-wrap .footer-wrap-01 .contact-box .contact-detail dl dt {
  background: var(--default-green);
  padding: 7px 12px;
  border-radius: 3px;
  line-height: 1;
  letter-spacing: 0.04em;
  height: 33px;
}
@media screen and (max-width: 767px) {
  footer .footer-wrap .footer-wrap-01 .contact-box .contact-detail dl dt {
    padding: 5px 12px;
    height: 23px;
  }
}
footer .footer-wrap .footer-wrap-01 .contact-box .contact-detail dl dd {
  line-height: 1.55;
  letter-spacing: 0.02em;
  font-size: 1rem;
}
@media screen and (max-width: 767px) {
  footer .footer-wrap .footer-wrap-01 .contact-box .contact-detail dl dd {
    font-size: 0.875rem;
  }
}
footer .footer-wrap .footer-wrap-01 .contact-box .contact-detail p {
  font-size: 0.6875rem;
  line-height: 1.5;
  letter-spacing: 0.015em;
  margin-top: 7px;
}
@media screen and (max-width: 767px) {
  footer .footer-wrap .footer-wrap-01 .contact-box .contact-detail p {
    width: fit-content;
    margin: 7px auto 0px;
  }
}
footer .footer-wrap .footer-wrap-01 .nav-list {
  width: fit-content;
}
@media screen and (max-width: 767px) {
  footer .footer-wrap .footer-wrap-01 .nav-list {
    width: 100%;
  }
}
footer .footer-wrap .footer-wrap-01 .nav-list ul.nav-list__main {
  display: grid;
  grid-template-columns: repeat(3, max-content);
  justify-content: start;
  gap: 28px 58px;
}
@media screen and (max-width: 1159px) {
  footer .footer-wrap .footer-wrap-01 .nav-list ul.nav-list__main {
    grid-template-columns: repeat(2, max-content);
    gap: 28px 30px;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-wrap .footer-wrap-01 .nav-list ul.nav-list__main {
    grid-template-columns: repeat(1, max-content);
    gap: 20px;
  }
}
footer .footer-wrap .footer-wrap-01 .nav-list ul.nav-list__main li a {
  color: var(--default-white);
  font-size: 1.0625rem;
  font-weight: 400;
  letter-spacing: 0.015em;
  padding: 5px;
}
@media screen and (max-width: 999px) {
  footer .footer-wrap .footer-wrap-01 .nav-list ul.nav-list__main li a {
    font-size: 1rem;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-wrap .footer-wrap-01 .nav-list ul.nav-list__main li a {
    font-size: 0.9375rem;
  }
}
@media screen and (max-width: 767px) {
  footer .footer-wrap .footer-wrap-01 .nav-list ul.nav-list__sub {
    display: grid;
    grid-template-columns: repeat(1, max-content);
    justify-content: start;
    gap: 20px 58px;
    position: relative;
    margin-top: 25px;
    padding-top: 25px;
  }
  footer .footer-wrap .footer-wrap-01 .nav-list ul.nav-list__sub::before {
    content: "";
    display: block;
    position: absolute;
    background: var(--default-white);
    height: 1px;
    width: 100vw;
    margin-left: calc(50% - 50vw);
    top: 0;
  }
}
footer .footer-wrap .footer-wrap-01 .nav-list ul.nav-list__sub li a {
  color: var(--default-white);
  font-size: 0.9375rem;
  font-weight: 400;
  letter-spacing: 0.015em;
  padding: 5px;
}
footer .footer-wrap .footer-wrap-02 {
  position: relative;
  width: 100%;
  max-width: 1260px;
  margin: 45px auto 35px;
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  footer .footer-wrap .footer-wrap-02 {
    flex-direction: column;
    gap: 40px;
    padding-top: 0px;
    margin: 35px auto 35px;
  }
}
footer .footer-wrap .footer-wrap-02::before {
  content: "";
  display: block;
  position: absolute;
  background: var(--default-white);
  height: 1px;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  top: 0;
}
@media screen and (max-width: 767px) {
  footer .footer-wrap .footer-wrap-02::before {
    display: none;
  }
}
footer .footer-wrap .footer-wrap-02 .footer-info {
  color: #fff;
}
footer .footer-wrap .footer-wrap-02 .footer-info .footer-logo {
  font-family: "Noto serif JP", serif;
  font-weight: 600;
  letter-spacing: 0.0015em;
  line-height: 1;
}
footer .footer-wrap .footer-wrap-02 .footer-info .footer-logo .footer-logo-text01 {
  position: relative;
  font-size: 0.875rem;
  padding: 0 0 0 44px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  footer .footer-wrap .footer-wrap-02 .footer-info .footer-logo .footer-logo-text01 {
    font-size: 0.75rem;
    padding: 0 0 0 35px;
  }
}
footer .footer-wrap .footer-wrap-02 .footer-info .footer-logo .footer-logo-text01::before {
  content: "";
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  background: url(../common/logo-white.png) no-repeat;
  background-size: contain;
  width: 31px;
  height: 26px;
}
footer .footer-wrap .footer-wrap-02 .footer-info .footer-logo .footer-logo-text02 {
  font-size: 1.5rem;
  letter-spacing: 0.03em;
  margin-top: 18px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  footer .footer-wrap .footer-wrap-02 .footer-info .footer-logo .footer-logo-text02 {
    font-size: 1.375rem;
  }
}
footer .footer-wrap .footer-wrap-02 .footer-info .access-address {
  margin: 15px 0px 10px;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  footer .footer-wrap .footer-wrap-02 .footer-info .access-address {
    margin: 20px 0px 15px;
  }
}
footer .footer-wrap .footer-wrap-02 .footer-info .tel {
  line-height: 1;
  margin-bottom: 7px;
}
footer .footer-wrap .footer-wrap-02 .footer-info .tel a {
  color: #fff;
}
footer .footer-wrap .footer-wrap-02 .footer-info .fax {
  line-height: 1;
}
footer .footer-wrap .footer-wrap-02 ul.nav-list__small li a {
  font-size: 0.875rem;
  color: #fff;
  margin-bottom: 25px;
  display: block;
}
@media screen and (max-width: 767px) {
  footer .footer-wrap .footer-wrap-02 ul.nav-list__small li a {
    font-size: 0.75rem;
    margin-bottom: 20px;
  }
}
footer .copy {
  font-size: 0.75rem;
  color: #fff;
  text-align: center;
}
@media screen and (max-width: 767px) {
  footer .copy {
    font-size: 0.6875rem;
  }
}

body {
  font: var(--font_base);
  color: var(--default-black);
  background: #fff;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

html, body {
  height: 100%;
}

body > footer {
  position: sticky;
  top: 100vh;
}

.layout {
  flex: 1;
  display: flex;
}
@media screen and (max-width: 999px) {
  .layout {
    display: block;
  }
}

/*
body{
    @include g.mq('pc') {
    min-width: 1020px; //* 適宜変更
    }
}
*/
.mainCont-inner {
  margin: auto;
}
@media screen and (max-width: 767px) {
  .mainCont-inner {
    width: 92vw;
    margin-top: 20px;
  }
}
@media all and (min-width: 768px) {
  .mainCont-inner {
    width: 1020px;
    margin-top: 20px;
  }
}
@media all and (min-width: 768px) {
  .mainCont-inner.form {
    width: 950px;
  }
}

.c-title {
  line-height: 1.3;
}
@media screen and (max-width: 767px) {
  .c-title {
    font-size: 1.625rem;
    margin-bottom: 15px;
  }
}
@media all and (min-width: 768px) {
  .c-title {
    font-size: 2.1875rem;
    margin-bottom: 20px;
  }
}

.text_center,
.text_center_Pc,
.text_center_Sp {
  text-align: center;
}

.c-btn,
.c-btn a {
  text-decoration: none;
  cursor: pointer;
}

.c-btn_primary {
  display: block;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.mt50 {
  margin-top: 50px;
}

.mb10 {
  margin-bottom: 10px;
}

@media screen and (max-width: 767px) {
  .mt10_Sp {
    margin-top: 10px;
  }
  .mt15_Sp {
    margin-top: 15px;
  }
  .mt20_Sp {
    margin-top: 20px;
  }
  .mt30_Sp {
    margin-top: 30px;
  }
  .mt40_Sp {
    margin-top: 40px;
  }
  .mt50_Sp {
    margin-top: 50px;
  }
}
@media all and (min-width: 768px) {
  .mt10_Pc {
    margin-top: 10px;
  }
  .mt15_Pc {
    margin-top: 15px;
  }
  .mt20_Pc {
    margin-top: 20px;
  }
  .mt30_Pc {
    margin-top: 30px;
  }
  .mt40_Pc {
    margin-top: 40px;
  }
  .mt50_Pc {
    margin-top: 50px;
  }
}
.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb50 {
  margin-bottom: 50px;
}

@media screen and (max-width: 767px) {
  .mb10_Sp {
    margin-bottom: 10px;
  }
  .mb15_Sp {
    margin-bottom: 15px;
  }
  .mb20_Sp {
    margin-bottom: 20px;
  }
  .mb30_Sp {
    margin-bottom: 30px;
  }
  .mb40_Sp {
    margin-bottom: 40px;
  }
  .mb50_Sp {
    margin-bottom: 50px;
  }
}
@media all and (min-width: 768px) {
  .mb10_Pc {
    margin-bottom: 10px;
  }
  .mb15_Pc {
    margin-bottom: 15px;
  }
  .mb20_Pc {
    margin-bottom: 20px;
  }
  .mb30_Pc {
    margin-bottom: 30px;
  }
  .mb40_Pc {
    margin-bottom: 40px;
  }
  .mb50_Pc {
    margin-bottom: 50px;
  }
}
.mr10 {
  margin-right: 10px;
}

.mr15 {
  margin-right: 15px;
}

.mr20 {
  margin-right: 20px;
}

.mr30 {
  margin-right: 30px;
}

.mr40 {
  margin-right: 40px;
}

.mr50 {
  margin-right: 50px;
}

@media screen and (max-width: 767px) {
  .mr10_Sp {
    margin-right: 10px;
  }
  .mr15_Sp {
    margin-right: 15px;
  }
  .mr20_Sp {
    margin-right: 20px;
  }
  .mr30_Sp {
    margin-right: 30px;
  }
  .mr40_Sp {
    margin-right: 40px;
  }
  .mr50_Sp {
    margin-right: 50px;
  }
}
@media all and (min-width: 768px) {
  .mr10_Pc {
    margin-right: 10px;
  }
  .mr15_Pc {
    margin-right: 15px;
  }
  .mr20_Pc {
    margin-right: 20px;
  }
  .mr30_Pc {
    margin-right: 30px;
  }
  .mr40_Pc {
    margin-right: 40px;
  }
  .mr50_Pc {
    margin-right: 50px;
  }
}
.ml10 {
  margin-left: 10px;
}

.ml15 {
  margin-left: 15px;
}

.ml20 {
  margin-left: 20px;
}

.ml30 {
  margin-left: 30px;
}

.ml40 {
  margin-left: 40px;
}

.ml50 {
  margin-left: 50px;
}

@media screen and (max-width: 767px) {
  .ml10_Sp {
    margin-left: 10px;
  }
  .ml15_Sp {
    margin-left: 15px;
  }
  .ml20_Sp {
    margin-left: 20px;
  }
  .ml30_Sp {
    margin-left: 30px;
  }
  .ml40_Sp {
    margin-left: 40px;
  }
  .ml50_Sp {
    margin-left: 50px;
  }
}
@media all and (min-width: 768px) {
  .ml10_Pc {
    margin-left: 10px;
  }
  .ml15_Pc {
    margin-left: 15px;
  }
  .ml20_Pc {
    margin-left: 20px;
  }
  .ml30_Pc {
    margin-left: 30px;
  }
  .ml40_Pc {
    margin-left: 40px;
  }
  .ml50_Pc {
    margin-left: 50px;
  }
}
.w50 {
  width: 50px;
}

.w80 {
  width: 80px;
}

.w100 {
  width: 100px;
}

.w120 {
  width: 120px;
}

.w150 {
  width: 150px;
}

.w160 {
  width: 160px;
}

.w180 {
  width: 180px;
}

.w200 {
  width: 200px;
}

.w220 {
  width: 220px;
}

.w250 {
  width: 250px !important;
}

.w300 {
  width: 300px;
}

.w350 {
  width: 350px;
}

.w30per {
  width: 30%;
}

.w50per {
  width: 50%;
}

.w60per {
  width: 60%;
}

.w70per {
  width: 70%;
}

.w80per {
  width: 80%;
}

.w100per {
  width: 100%;
}

@media all and (min-width: 768px) {
  .w50_Pc {
    width: 50px;
  }
  .w80_Pc {
    width: 80px;
  }
  .w100_Pc {
    width: 100px;
  }
  .w120_Pc {
    width: 120px;
  }
  .w150_Pc {
    width: 150px;
  }
  .w160_Pc {
    width: 160px;
  }
  .w180_Pc {
    width: 180px;
  }
  .w200_Pc {
    width: 200px;
  }
  .w220_Pc {
    width: 220px;
  }
  .w250_Pc {
    width: 250px;
  }
  .w300_Pc {
    width: 300px;
  }
  .w350_Pc {
    width: 350px;
  }
  .w400_Pc {
    width: 400px;
  }
  .w430_Pc {
    width: 430px;
  }
  .w450_Pc {
    width: 450px;
  }
  .w500_Pc {
    width: 500px;
  }
  .w850_Pc {
    width: 850px;
  }
  .w900_Pc {
    width: 900px;
  }
  .w30per_Pc {
    width: 30%;
  }
  .w50per_Pc {
    width: 50%;
  }
  .w60per_Pc {
    width: 60%;
  }
  .w70per_Pc {
    width: 70%;
  }
  .w80per_Pc {
    width: 80%;
  }
  .w100per_Pc {
    width: 100%;
  }
}
@media screen and (max-width: 767px) {
  .w50_Sp {
    width: 50px;
  }
  .w80_Sp {
    width: 80px;
  }
  .w100_Sp {
    width: 100px;
  }
  .w120_Sp {
    width: 120px;
  }
  .w150_Sp {
    width: 150px;
  }
  .w160_Sp {
    width: 160px;
  }
  .w180_Sp {
    width: 180px;
  }
  .w200_Sp {
    width: 200px;
  }
  .w220_Sp {
    width: 220px;
  }
  .w250_Sp {
    width: 250px;
  }
  .w300_Sp {
    width: 300px;
  }
  .w350_Sp {
    width: 350px;
  }
  .w400_Sp {
    width: 400px;
  }
  .w450_Sp {
    width: 450px;
  }
  .w500_Sp {
    width: 500px;
  }
  .w30per_Sp {
    width: 30%;
  }
  .w50per_Sp {
    width: 50%;
  }
  .w60per_Sp {
    width: 60%;
  }
  .w70per_Sp {
    width: 70%;
  }
  .w80per_Sp {
    width: 80%;
  }
  .w100per_Sp {
    width: 100%;
  }
}
.color_red_default {
  color: var(--default-red);
}

.color_brown_default {
  color: var(--default-brown);
}

.foS10 {
  font-size: 0.625rem;
  line-height: 1.4;
}

.foS11 {
  font-size: 0.6875rem;
  line-height: 1.4;
}

.foS12 {
  font-size: 0.75rem;
  line-height: 1.4;
}

.foS13 {
  font-size: 0.8125rem;
  line-height: 1.6;
}

.foS14 {
  font-size: 0.875rem;
  line-height: 1.6;
}

.foS15 {
  font-size: 0.9375rem;
}

.foM16 {
  font-size: 1rem;
}

.foL17 {
  font-size: 1.0625rem;
}

.foL18 {
  font-size: 1.125rem;
}

.foL19 {
  font-size: 1.1875rem;
  line-height: 1.6;
}

.foL20 {
  font-size: 1.25rem;
  line-height: 1.6;
}

.foL21 {
  font-size: 1.3125rem;
  line-height: 1.6;
}

.foL22 {
  font-size: 1.375rem;
  line-height: 1.5;
}

.foL24 {
  font-size: 1.5rem;
  line-height: 1.5;
}

.foL26 {
  font-size: 1.625rem;
  line-height: 1.5;
}

.foL28 {
  font-size: 1.75rem;
  line-height: 1.5;
}

.foL30 {
  font-size: 1.875rem;
  line-height: 1.5;
}

.foL32 {
  font-size: 2rem;
  line-height: 1.4;
}

.foL34 {
  font-size: 2.125rem;
  line-height: 1.4;
}

.foL36 {
  font-size: 2.25rem;
  line-height: 1.4;
}

.foL38 {
  font-size: 2.375rem;
  line-height: 1.4;
}

.foL40 {
  font-size: 2.5rem;
  line-height: 1.4;
}

.foL44 {
  font-size: 2.75rem;
  line-height: 1.4;
}

.foL48 {
  font-size: 3rem;
  line-height: 1.4;
}

@media screen and (max-width: 767px) {
  .foS10_Sp {
    font-size: 0.625rem;
    line-height: 1.4;
  }
  .foS11_Sp {
    font-size: 0.6875rem;
    line-height: 1.4;
  }
  .foS12_Sp {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  .foS13_Sp {
    font-size: 0.8125rem;
    line-height: 1.4;
  }
  .foS14_Sp {
    font-size: 0.875rem;
    line-height: 1.6;
  }
  .foS15_Sp {
    font-size: 0.9375rem;
  }
  .foM16_Sp {
    font-size: 1rem;
  }
  .foL17_Sp {
    font-size: 1.0625rem;
  }
  .foL18_Sp {
    font-size: 1.125rem;
  }
  .foL19_Sp {
    font-size: 1.1875rem;
    line-height: 1.6;
  }
  .foL20_Sp {
    font-size: 1.25rem;
    line-height: 1.6;
  }
  .foL21_Sp {
    font-size: 1.3125rem;
    line-height: 1.6;
  }
  .foL22_Sp {
    font-size: 1.375rem;
    line-height: 1.5;
  }
  .foL24_Sp {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .foL26_Sp {
    font-size: 1.625rem;
    line-height: 1.5;
  }
  .foL28_Sp {
    font-size: 1.75rem;
    line-height: 1.5;
  }
  .foL30_Sp {
    font-size: 1.875rem;
    line-height: 1.5;
  }
  .foL32_Sp {
    font-size: 2rem;
    line-height: 1.4;
  }
  .foL34_Sp {
    font-size: 2.125rem;
    line-height: 1.4;
  }
  .foL36_Sp {
    font-size: 2.25rem;
    line-height: 1.4;
  }
  .foL38_Sp {
    font-size: 2.375rem;
    line-height: 1.4;
  }
  .foL40_Sp {
    font-size: 2.5rem;
    line-height: 1.4;
  }
  .foL44_Sp {
    font-size: 2.75rem;
    line-height: 1.4;
  }
  .foL48_Sp {
    font-size: 3rem;
    line-height: 1.4;
  }
}
@media all and (min-width: 768px) {
  .foS10_Pc {
    font-size: 0.625rem;
    line-height: 1.4;
  }
  .foS11_Pc {
    font-size: 0.6875rem;
    line-height: 1.4;
  }
  .foS12_Pc {
    font-size: 0.75rem;
    line-height: 1.4;
  }
  .foS13_Pc {
    font-size: 0.8125rem;
    line-height: 1.4;
  }
  .foS14_Pc {
    font-size: 0.875rem;
    line-height: 1.5;
  }
  .foS15_Pc {
    font-size: 0.9375rem;
  }
  .foM16_Pc {
    font-size: 1rem;
  }
  .foL17_Pc {
    font-size: 1.0625rem;
  }
  .foL18_Pc {
    font-size: 1.125rem;
  }
  .foL19_Pc {
    font-size: 1.1875rem;
    line-height: 1.6;
  }
  .foL20_Pc {
    font-size: 1.25rem;
    line-height: 1.6;
  }
  .foL21_Pc {
    font-size: 1.3125rem;
    line-height: 1.6;
  }
  .foL22_Pc {
    font-size: 1.375rem;
    line-height: 1.5;
  }
  .foL24_Pc {
    font-size: 1.5rem;
    line-height: 1.5;
  }
  .foL26_Pc {
    font-size: 1.625rem;
    line-height: 1.5;
  }
  .foL28_Pc {
    font-size: 1.75rem;
    line-height: 1.5;
  }
  .foL30_Pc {
    font-size: 1.875rem;
    line-height: 1.5;
  }
  .foL32_Pc {
    font-size: 2rem;
    line-height: 1.4;
  }
  .foL34_Pc {
    font-size: 2.125rem;
    line-height: 1.4;
  }
  .foL36_Pc {
    font-size: 2.25rem;
    line-height: 1.4;
  }
  .foL38_Pc {
    font-size: 2.375rem;
    line-height: 1.4;
  }
  .foL40_Pc {
    font-size: 2.5rem;
    line-height: 1.4;
  }
  .foL44_Pc {
    font-size: 2.75rem;
    line-height: 1.4;
  }
  .foL48_Pc {
    font-size: 3rem;
    line-height: 1.4;
  }
}
.asterisk-16 {
  padding-left: 1rem;
}

.asterisk-16::before {
  content: "※";
  margin-left: -1rem;
}

.asterisk-15 {
  padding-left: 0.9375rem;
}

.asterisk-15::before {
  content: "※";
  margin-left: -0.9375rem;
}

.asterisk-14 {
  padding-left: 0.875rem;
}

.asterisk-14::before {
  content: "※";
  margin-left: -0.875rem;
}

.edit-area {
  letter-spacing: 0.02em;
  line-height: 1.7;
  font-size: 1.0625rem;
}
@media screen and (max-width: 767px) {
  .edit-area {
    font-size: 1rem;
  }
}

.cke_editable {
  cursor: text;
  margin: 5px 10px;
  box-sizing: border-box;
  overflow-x: hidden;
}

/* ==========================================================================
サマリー
========================================================================== */
.pagesummary {
  margin-bottom: 42px;
  border-radius: 8px;
  background-color: var(--default-gray);
  padding: 28px 40px;
}
@media screen and (max-width: 767px) {
  .pagesummary {
    padding: 20px 22px;
  }
}
.pagesummary ul {
  display: flex;
  flex-wrap: wrap;
  margin-left: 0px !important;
}
.pagesummary ul li {
  margin: 5px 50px 10px 0px;
}
@media screen and (max-width: 767px) {
  .pagesummary ul li {
    margin: 5px 0px 8px 0px;
    width: 100%;
  }
}
.pagesummary ul li:before {
  display: none !important;
}
.pagesummary ul li a {
  position: relative;
  display: block;
  padding-left: 23px;
  color: #333;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  .pagesummary ul li a {
    font-size: 0.875rem;
    padding: 4px 0 5px 23px;
  }
}
.pagesummary ul li a:before {
  display: block;
  position: absolute;
  content: "";
  width: 14px;
  height: 9px;
  background: url(../common/ico-arrow-orange.svg) no-repeat;
  background-size: contain;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
.pagesummary ul li a:hover:before {
  margin-top: 2px;
}

/* ==========================================================================
見出し
========================================================================== */
/*------------------------------------------------------------　h2見出し　*/
.h2_title01 {
  position: relative;
  margin: 25px 0 27px;
  padding: 0 0 6px 0px;
  font-weight: 600;
  font-size: 1.875rem;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .h2_title01 {
    font-size: 1.375rem;
    letter-spacing: 1.6;
  }
}
.h2_title01::before {
  position: absolute;
  content: "";
  display: block;
  border-bottom: solid 7px var(--default-green);
  bottom: -7px;
  width: 90px;
  z-index: 1;
}
.h2_title01::after {
  position: absolute;
  content: "";
  display: block;
  border-bottom: solid 7px var(--default-gray);
  bottom: -7px;
  width: 100%;
  z-index: 0;
}

/*------------------------------------------------------------　h3見出し　*/
.h3_title01 {
  position: relative;
  margin: 0px 0 20px;
  padding: 0 0 4px 23px;
  font-size: 1.625rem;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.06em;
}
@media screen and (max-width: 767px) {
  .h3_title01 {
    font-size: 1.25rem;
  }
}
.h3_title01:before {
  display: block;
  content: "";
  position: absolute;
  width: 8px;
  height: 50%;
  background-color: var(--default-green-dark);
  top: 0px;
  left: 0px;
}
.h3_title01:after {
  display: block;
  content: "";
  position: absolute;
  width: 8px;
  height: 50%;
  background-color: var(--default-green);
  bottom: 0px;
  left: 0px;
}
/* 見出し END  =============================================================== *


/* ==========================================================================
ボタン・リンク・SNS
========================================================================== */
.edit-area a,
.cke_editable a {
  color: #333;
  text-decoration: none;
}

.edit-area .link_btn,
.cke_editable .link_btn {
  position: relative;
  font-size: 1rem;
  display: inline-block;
  padding: 10px 49px 11px 31px;
  border: 1px solid var(--default-green-dark);
  background-color: var(--default-green-dark);
  border-radius: 100vh;
  margin-bottom: 20px;
  color: var(--default-white);
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  .edit-area .link_btn,
  .cke_editable .link_btn {
    font-size: 0.9375rem;
    width: 100%;
    padding: 15px 35px 15px 25px;
  }
}

.edit-area .link_btn:hover,
.cke_editable .link_btn:hover {
  background-color: var(--default-white);
  color: var(--default-black);
}
.edit-area .link_btn:hover:before,
.cke_editable .link_btn:hover:before {
  right: 10px;
  background: url(../common/ico-arrow-black.svg) no-repeat;
  background-size: contain;
}

.edit-area .link_btn:before,
.cke_editable .link_btn:before {
  display: block;
  position: absolute;
  content: "";
  width: 15px;
  height: 10px;
  background: url(../common/ico-arrow-white.svg) no-repeat;
  background-size: contain;
  top: 50%;
  margin-top: -5px;
  right: 13px;
  transition: 0.3s;
}

/*------------------------------------------------------ ボタンカラー*/
/* サブ */
.edit-area .link_btn.link_btn-secondary,
.cke_editable .link_btn.link_btn-secondary {
  border: 1px solid var(--default-orange);
  background-color: #FFFDF1;
  color: var(--default-black);
}

.edit-area .link_btn.link_btn-secondary:hover:before,
.cke_editable .link_btn.link_btn-secondary:hover:before {
  right: 10px;
}

.link_btn.link_btn-secondary:hover,
.link_btn.link_btn-secondary:hover {
  background-color: var(--default-white);
}

.edit-area .link_btn.link_btn-secondary:before,
.cke_editable .link_btn.link_btn-secondary:before {
  display: block;
  position: absolute;
  content: "";
  width: 15px;
  height: 10px;
  background: url(../common/ico-arrow-black.svg) no-repeat;
  background-size: contain;
  top: 50%;
  margin-top: -5px;
  right: 13px;
  transition: 0.3s;
}

/* サブ03 */
.edit-area .link_btn.link_btn-dark,
.cke_editable .link_btn.link_btn-dark {
  border: 1px solid #C3C3C3;
  background-color: var(--default-gray);
  color: var(--default-black);
}

.link_btn.link_btn-dark,
.link_btn.link_btn-dark {
  border: 2px solid #C3C3C3;
  background-color: var(--default-gray);
}

.edit-area .link_btn.link_btn-dark:hover,
.cke_editable .link_btn.link_btn-dark:hover {
  background-color: var(--default-white);
}

.edit-area .link_btn.link_btn-dark:before,
.cke_editable .link_btn.link_btn-dark:before {
  background: url(../common/ico-arrow-black.svg) no-repeat;
  background-size: contain;
}

/*------------------------------------------------------ ボタンサイズ*/
/* 大 */
.edit-area .link_btn.link_btn-large,
.cke_editable .link_btn.link_btn-large {
  font-size: 1.125rem;
  display: block;
  border-radius: 5px;
}
@media screen and (max-width: 767px) {
  .edit-area .link_btn.link_btn-large,
  .cke_editable .link_btn.link_btn-large {
    font-size: 1.0625rem;
  }
}

/* 小 */
.edit-area .link_btn.link_btn-small,
.cke_editable .link_btn.link_btn-small {
  font-size: 0.875rem;
  padding: 8px 49px 9px 31px;
}
@media screen and (max-width: 767px) {
  .edit-area .link_btn.link_btn-small,
  .cke_editable .link_btn.link_btn-small {
    font-size: 0.75rem;
    padding: 12px 35px 12px 25px;
  }
}

.edit-area .link_btn.link_btn-secondary.link_btn-small:before,
.cke_editable .link_btn.link_btn-secondary.link_btn-small:before {
  background: url(../common/ico-arrow-black.svg) no-repeat;
  background-size: contain;
}

/*管理画面用リンクボタン*/
/* ------------------------------PDFマーク */
.txtLink01-pdf {
  padding-left: 30px;
  background: url(../common/ico_pdf01.png) no-repeat left center;
  background-size: 19px auto;
}

/* ------------------------------ダウンロードマーク */
.txtLink01-dl {
  padding-left: 30px;
  background: url(../common/ico_dl01.png) no-repeat left center;
  background-size: 19px auto;
}

/* ------------------------------WORDマーク */
.txtLink01-word {
  padding-left: 30px;
  background: url(../common/ico_word01.png) no-repeat left center;
  background-size: 19px auto;
}

/* ------------------------------EXCELマーク */
.txtLink01-excel {
  padding-left: 30px;
  background: url(../common/ico_excel01.png) no-repeat left center;
  background-size: 19px auto;
}

/* ------------------------------PowerPointマーク */
.txtLink01-power {
  padding-left: 30px;
  background: url(../common/ico_power01.png) no-repeat left center;
  background-size: 19px auto;
}

/* ボタン・リンク END  =============================================================== */
/* ==========================================================================
リスト
========================================================================== */
.edit-area ol,
.edit-area ul,
.cke_editable ol,
.cke_editable ul,
.list_style {
  position: relative;
  margin-left: 25px;
}

.edit-area ol,
.cke_editable ol {
  counter-reset: item;
  list-style-type: none;
  margin-left: 0;
}

.edit-area ol li,
.cke_editable ol li {
  list-style-type: none;
  margin-bottom: 5px;
  position: relative;
  padding: 4px 0 4px 30px;
}

.edit-area ol li:before,
.cke_editable ol li:before {
  counter-increment: item;
  content: counter(item);
  display: block;
  position: absolute;
  top: 0.4em;
  left: 0;
  font-weight: bold;
  width: 24px;
  height: 24px;
  line-height: 24px;
  text-align: center;
  font-size: 0.875rem;
  /* 14px */
}

.edit-area ul li,
.cke_editable ul li {
  list-style-type: none;
  margin-bottom: 5px;
  position: relative;
}

.edit-area ul li:before,
.cke_editable ul li:before,
.list_style li:before {
  content: "";
  box-sizing: border-box;
  display: inline-block;
  position: absolute;
  margin: 0 10px 0 -17px;
  height: 8px;
  width: 8px;
  border-radius: 100%;
  background: #000;
  top: 10px;
}

/* リスト END  =============================================================== */
/* ==========================================================================
テーブル※適宜変更してください。
========================================================================== */
.cke_editable table,
.edit-area table {
  width: 100%;
  border-collapse: collapse;
}

.cke_editable table th,
.edit-area table th {
  background: var(--default-gray);
}

.cke_editable table td,
.cke_editable table th,
.edit-area table td,
.edit-area table th {
  padding: 10px;
  border: 1px solid #9c9c9c;
}

/* テーブル END  =============================================================== */
/* ==========================================================================
　画像
========================================================================== */
.cke_editable img,
img {
  max-width: 100%;
  height: auto !important;
  vertical-align: bottom;
}

.cke_editable img {
  display: inline !important;
}

.cke_editable ul li img,
.edit-area ul li img {
  display: inline;
}

.cke_editable img.float_L_Pc,
.edit-area img.float_L_Pc {
  float: left;
}

.cke_editable img.float_R_Pc,
.edit-area img.float_R_Pc {
  float: right;
}

.newsImg03,
.newsImg02,
.newsImg01 {
  margin: 10px 0;
}

.newsImg03 ul,
.newsImg02 ul,
.newsImg01 ul {
  margin: 0;
}

@media all and (min-width: 768px) {
  .newsImg03 ul,
  .newsImg02 ul {
    display: flex;
    justify-content: space-between;
  }
  .newsImg03 ul li {
    width: calc(33.3333333333% - 10px);
  }
  .newsImg02 ul li {
    width: calc(50% - 10px);
  }
}
.newsImg03 ul li,
.newsImg02 ul li,
.newsImg01 ul li {
  list-style: none !important;
  text-align: center;
  padding: 0;
}

.newsImg03 ul li:before,
.newsImg02 ul li:before,
.newsImg01 ul li:before {
  display: none !important;
}

/* ------------------------------------------------------------絵文字 */
.ico_20 {
  display: inline;
  width: 30px;
  height: 30px;
  padding: 0 4px;
  vertical-align: middle;
  margin-bottom: 3px;
}

/* 画像 END  =============================================================== */
/* ==========================================================================
囲い
========================================================================== */
.div_info01 {
  padding: 20px;
  margin: 15px 0;
  background: #EFFFFD;
  border: 3px solid var(--default-green);
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .div_info01 {
    padding: 18px 16px;
  }
}

.div_info02 {
  padding: 20px;
  margin: 15px 0;
  background: var(--default-white);
  border: 2px solid var(--default-green-dark);
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  .div_info02 {
    padding: 18px 16px;
  }
}

/* 囲い END  =============================================================== */
/* ==========================================================================
　境界線
========================================================================== */
hr.div_hr01 {
  display: block;
  margin: 15px 0;
  border: none;
  border-bottom: dashed 1px #CFCFCF;
}

/*管理画面側*/
.cke_editable .ckeditor_divline {
  background: url(../common/ckeditor_divline.gif) no-repeat;
}

/* 境界線 END  =============================================================== */
/* ==========================================================================
ckエディター
========================================================================== */
/*------------------------------------------------------------ニュース表示(日付)*/
.day-color01 {
  color: #000000;
}

/*黒*/
.day-color02 {
  color: #e03e3e;
}

/*赤*/
.day-color03 {
  color: #005692;
}

/*青*/
.day-color04 {
  color: #099809;
}

/*緑*/
.day-color05 {
  color: #E77BE6;
}

/*ピンク*/
.day-color06 {
  color: #666666;
}

/*グレー*/
.day-bold {
  font-weight: bold;
}

/*-----------------------------------------------------------ニュース表示(タイトル)*/
.title-size-small {
  font-size: 0.8125rem;
}

/* 13px */
.title-size-middle {
  font-size: 0.9375rem;
}

/* 15px */
.title-size-big {
  font-size: 1.25rem;
}

/* 20px */
.title-color01 {
  color: #000000;
}

/*黒*/
.title-color02 {
  color: #e03e3e;
}

/*赤*/
.title-color03 {
  color: #005692;
}

/*青*/
.title-color04 {
  color: #099809;
}

/*緑*/
.title-color05 {
  color: #E77BE6;
}

/*ピンク*/
.title-color06 {
  color: #666666;
}

/*グレー*/
.title-bold {
  font-weight: bold;
}

/*-----------------------------------------------------------文字サイズ*/
span.op_large {
  text-decoration: inherit;
  font-style: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: 1.25rem;
}

span.op_large02 {
  text-decoration: inherit;
  font-style: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: 1.4375rem;
}

span.op_mideamu {
  text-decoration: inherit;
  font-style: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: 0.9375rem;
}

span.op_small {
  display: inline-block;
  line-height: 1.8;
  text-decoration: inherit;
  font-style: inherit;
  font-weight: inherit;
  color: inherit;
  font-size: 0.8125rem;
}

/*-----------------------------------------------------------文字の下付上付*/
sub {
  font-size: 75.5%;
  vertical-align: bottom;
}

sup {
  font-size: 75.5%;
  vertical-align: top;
}

/*-----------------------------------------------------------他装飾*/
.g-map {
  width: 100% !important;
}

.cke_editable .ckeditor_divline {
  background: url(../images/ckeditor_divline.gif) no-repeat;
}

/*ソーシャルボタン領域*/
.Social {
  display: none;
}

.detail_news_social {
  display: flex;
  align-items: center;
  margin: 15px 0;
}

.detail_news_social ul {
  display: flex;
  justify-content: center;
  margin-left: 0 !important;
}

.detail_news_social ul li {
  margin-left: 10px !important;
  list-style: none !important;
}
.detail_news_social ul li:first-child {
  margin-left: 0 !important;
}

.detail_news_social ul li::before {
  display: none;
}

.detail_news_social li a {
  vertical-align: bottom;
  display: inline-block;
  width: 34px;
  height: 34px;
  background: #1a63ac url("../images/logo_fb01.png") no-repeat center;
  background-size: auto 18px;
  border-radius: 100px;
  text-indent: 100%;
  white-space: nowrap;
  overflow: hidden;
  transition: 0.1s ease;
}

.detail_news_social li a.tw {
  background: #0F1419 url("../images/logo_tw01.png") no-repeat center;
  background-size: auto 15px;
}

.detail_news_social li a.line {
  background: #00b900 url("../images/logo_line02.png") no-repeat center;
  background-size: auto 20px;
}

.detail_news_social li:hover a {
  transform: scale(1.1);
}

/*ソーシャルボタン領域END*/
/* ckエディター END  =============================================================== */
/* ==========================================================================
  Youtube
========================================================================== */
/* テキスト END  =============================================================== */
/* ==========================================================================
  テキスト
========================================================================== */
/* ------------------------------------------------------------ テキストインデント */
.text_mark {
  margin-left: 1em;
  text-indent: -1em;
}

.text_marks {
  margin-left: 0.857em;
  text-indent: -0.857em;
}

/* ------------------------------------------------------------ テキスト寄せ */
.text_center,
.text_center_Pc {
  text-align: center;
}

.text_right,
.text_right_Pc {
  text-align: right;
}

.text_left,
.text_left_Pc {
  text-align: left;
}

/* テキスト END  =============================================================== */
/* ==========================================================================
  編集パーツ用　番号付属リスト・チェックリスト
   ========================================================================== */
.list_num01 {
  counter-reset: item;
  list-style: none;
  padding: 0;
  margin-left: 0 !important;
}

.list_num01 li {
  position: relative;
  padding: 4px 0 4px 35px;
  margin-bottom: 10px;
  list-style: none !important;
}

.list_num01 li:before {
  counter-increment: item;
  content: counter(item);
  display: block;
  position: absolute;
  top: 0em;
  left: 0;
  font-weight: bold;
  width: 24px;
  height: 24px;
  line-height: 22px !important;
  border-radius: 100%;
  text-align: center;
  font-size: 0.75rem;
  background: var(--default-green-dark);
  color: #fff;
}

.edit-area .list_check,
.cke_editable .list_check {
  list-style: none;
  padding: 0;
  position: relative;
  margin-left: 0 !important;
}

.edit-area li {
  position: relative;
  margin-bottom: 10px;
}

.list_check li {
  position: relative;
  padding-left: 1.2em;
  margin-bottom: 10px;
  list-style: none !important;
}

.edit-area .list_check li:before,
.cke_editable .list_check li:before {
  box-sizing: border-box;
  position: absolute;
  content: "";
  display: block;
  top: 0.5em;
  left: 0.2em;
  height: 10px;
  width: 6px;
  transform: rotate(45deg);
  border-radius: 0;
  margin: 0;
  background: none;
  border-bottom: solid 3px var(--default-green-dark);
  border-right: solid 3px var(--default-green-dark);
}

.cke_editable .lay-grid > .col-1,
.cke_editable .lay-grid > .col-2,
.cke_editable .lay-grid > .col-3,
.cke_editable .lay-grid > .col-4,
.cke_editable .lay-grid > .col-5,
.cke_editable .lay-grid > .col-6,
.cke_editable .lay-grid > .col-7,
.cke_editable .lay-grid > .col-8,
.cke_editable .lay-grid > .col-9,
.cke_editable .lay-grid > .col-10,
.cke_editable .lay-grid > .col-11,
.cke_editable .lay-grid > .col-12 {
  padding: 10px;
  border: dashed 1px #dedacd;
  border-radius: 4px;
}

.lay-grid {
  display: flex;
  flex-wrap: wrap;
  margin-left: -10px;
  margin-right: -10px;
}

.lay-grid > .col-1,
.lay-grid > .col-2,
.lay-grid > .col-3,
.lay-grid > .col-4,
.lay-grid > .col-5,
.lay-grid > .col-6,
.lay-grid > .col-7,
.lay-grid > .col-8,
.lay-grid > .col-9,
.lay-grid > .col-10,
.lay-grid > .col-11,
.lay-grid > .col-12 {
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
  margin-bottom: 10px;
}

.lay-grid > .col-1 {
  width: calc(8.3333333333% - 20px);
}

.lay-grid > .col-2 {
  width: calc(16.6666666667% - 20px);
}

.lay-grid > .col-3 {
  width: calc(25% - 20px);
}

.lay-grid > .col-4 {
  width: calc(33.3333333333% - 20px);
}

.lay-grid > .col-5 {
  width: calc(41.6666666667% - 20px);
}

.lay-grid > .col-6 {
  width: calc(50% - 20px);
}

.lay-grid > .col-7 {
  width: calc(58.3333333333% - 20px);
}

.lay-grid > .col-8 {
  width: calc(66.6666666667% - 20px);
}

.lay-grid > .col-9 {
  width: calc(75% - 20px);
}

.lay-grid > .col-10 {
  width: calc(83.3333333333% - 20px);
}

.lay-grid > .col-11 {
  width: calc(91.6666666667% - 20px);
}

.lay-grid > .col-12 {
  width: calc(100% - 20px);
}

.lay-grid > .col-lg-1,
.lay-grid > .col-lg-2,
.lay-grid > .col-lg-3,
.lay-grid > .col-lg-4,
.lay-grid > .col-lg-5,
.lay-grid > .col-lg-6,
.lay-grid > .col-lg-7,
.lay-grid > .col-lg-8,
.lay-grid > .col-lg-9,
.lay-grid > .col-lg-10,
.lay-grid > .col-lg-11,
.lay-grid > .col-lg-12 {
  box-sizing: border-box;
  margin-left: 10px;
  margin-right: 10px;
}

@media all and (min-width: 768px) {
  .lay-grid > .col-lg-1 {
    width: calc(8.3333333333% - 20px);
  }
  .lay-grid > .col-lg-2 {
    width: calc(16.6666666667% - 20px);
  }
  .lay-grid > .col-lg-3 {
    width: calc(25% - 20px);
  }
  .lay-grid > .col-lg-4 {
    width: calc(33.3333333333% - 20px);
  }
  .lay-grid > .col-lg-5 {
    width: calc(41.6666666667% - 20px);
  }
  .lay-grid > .col-lg-6 {
    width: calc(50% - 20px);
  }
  .lay-grid > .col-lg-7 {
    width: calc(58.3333333333% - 20px);
  }
  .lay-grid > .col-lg-8 {
    width: calc(66.6666666667% - 20px);
  }
  .lay-grid > .col-lg-9 {
    width: calc(75% - 20px);
  }
  .lay-grid > .col-lg-10 {
    width: calc(83.3333333333% - 20px);
  }
  .lay-grid > .col-lg-11 {
    width: calc(91.6666666667% - 20px);
  }
  .lay-grid > .col-lg-12 {
    width: calc(100% - 20px);
  }
  .card-box__item--lg-last {
    order: 1;
  }
}
.card-box {
  margin-top: 20px;
}

.card-box__item--fast {
  margin-top: 20px;
}

#Top .main {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: calc(100% - 240px);
}
@media screen and (max-width: 999px) {
  #Top .main {
    width: 100%;
  }
}
#Top #slide-area {
  position: relative;
}
@media screen and (max-width: 999px) {
  #Top #slide-area {
    margin-top: 80px;
  }
}
#Top #slide-area .slide-wrap {
  position: relative;
  width: 100%;
  max-height: 75vh;
}
@media screen and (max-width: 999px) {
  #Top #slide-area .slide-wrap {
    max-height: unset;
    height: 300px;
  }
}
#Top #slide-area .slide-wrap .slide-list {
  height: 100%;
  overflow: hidden;
}
#Top #slide-area .slide-wrap .slide-list li {
  height: 100%;
}
#Top #slide-area .slide-wrap .slide-list li a {
  display: block;
  pointer-events: none;
  height: 100%;
  max-height: 75vh;
}
@media screen and (max-width: 999px) {
  #Top #slide-area .slide-wrap .slide-list li a {
    max-height: unset;
    height: 300px;
  }
}
#Top #slide-area .slide-wrap .slide-list li img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  display: block;
}
@media screen and (max-width: 767px) {
  #Top #slide-area .slide-wrap .slide-list li img {
    height: 100% !important;
  }
}
#Top #slide-area .slide-wrap .slide-list .slick-list {
  height: 100% !important;
}
#Top #slide-area .slide-wrap .slide-list .slick-list li {
  height: 100% !important;
}
#Top #slide-area .slide-wrap .slick-dots {
  width: auto;
  bottom: 10px;
  right: 30px;
}
@media screen and (max-width: 767px) {
  #Top #slide-area .slide-wrap .slick-dots {
    bottom: -25px;
    right: 5px;
  }
}
@media screen and (max-width: 767px) {
  #Top #slide-area .slide-wrap .slick-dots li {
    margin: 0px;
  }
}
#Top #slide-area .slide-wrap .slick-dots li button {
  width: 16px;
  height: 16px;
  margin: 3px;
  background-color: #ccc;
  border-radius: 100px;
}
#Top #slide-area .slide-wrap .slick-dots li button::before {
  font-size: 0px;
}
@media screen and (max-width: 767px) {
  #Top #slide-area .slide-wrap .slick-dots li button {
    width: 8px;
    height: 8px;
  }
}
#Top #slide-area .slide-wrap .slick-active button::before {
  display: block;
  width: 16px;
  height: 16px;
  background-color: var(--default-green-dark);
  border-radius: 100px;
  top: 3px;
  left: 3px;
  opacity: 1;
}
@media screen and (max-width: 767px) {
  #Top #slide-area .slide-wrap .slick-active button::before {
    width: 9px;
    height: 9px;
    top: 3.5px;
    left: 3.5px;
  }
}
#Top #slide-area .slide-wrap .slick-dotted.slick-slider {
  margin-bottom: 0;
}
#Top #slide-area .mv-text {
  font-family: "Noto serif JP", serif;
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1;
  font-size: 3.375rem;
  position: absolute;
  top: 45%;
  left: 48%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 980px;
  text-shadow: 1px 1px 1px white, 3px 3px 5px white;
}
@media screen and (max-width: 999px) {
  #Top #slide-area .mv-text {
    font-size: 2.75rem;
  }
}
@media screen and (max-width: 767px) {
  #Top #slide-area .mv-text {
    font-size: 1.8125rem;
    letter-spacing: 0.05em;
    text-shadow: 1px 1px 1px white, 3px 3px 5px white;
    left: 10px;
    top: 39%;
    transform: translate(0%, -50%);
  }
}
#Top #slide-area .mv-text .mv-text-line02 {
  margin: 50px 0 0 70px;
}
@media screen and (max-width: 999px) {
  #Top #slide-area .mv-text .mv-text-line02 {
    margin: 35px 0 0 70px;
  }
}
@media screen and (max-width: 767px) {
  #Top #slide-area .mv-text .mv-text-line02 {
    margin: 20px 0 0 0px;
  }
}
#Top #contact-area {
  background: var(--default-yellow);
  padding: 32px 0;
}
@media screen and (max-width: 999px) {
  #Top #contact-area {
    padding: 28px 0;
  }
}
#Top #contact-area .contact-area-inner {
  display: flex;
  margin: auto;
  padding: 0 20px;
  width: fit-content;
  gap: 45px;
}
@media screen and (max-width: 767px) {
  #Top #contact-area .contact-area-inner {
    flex-direction: column;
    gap: 20px;
  }
}
#Top #contact-area .contact-area-inner .contact-tel {
  display: flex;
  flex-direction: column;
  gap: 25px;
  align-items: center;
  line-height: 1;
  color: #222;
}
@media screen and (max-width: 767px) {
  #Top #contact-area .contact-area-inner .contact-tel {
    gap: 15px;
  }
}
#Top #contact-area .contact-area-inner .contact-tel h2 {
  position: relative;
  font-family: "Noto serif JP", serif;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.03em;
  margin-left: 15px;
}
@media screen and (max-width: 767px) {
  #Top #contact-area .contact-area-inner .contact-tel h2 {
    font-size: 1.375rem;
    margin-left: 0px;
    width: 100%;
    text-align: center;
  }
  #Top #contact-area .contact-area-inner .contact-tel h2::before {
    content: "";
    display: block;
    position: absolute;
    background: var(--default-black);
    height: 1px;
    width: calc((100% - 175px) / 2);
    top: 50%;
    transform: translateY(-50%);
  }
  #Top #contact-area .contact-area-inner .contact-tel h2::after {
    content: "";
    display: block;
    position: absolute;
    background: var(--default-black);
    height: 1px;
    width: calc((100% - 175px) / 2);
    top: 50%;
    right: 0;
    transform: translateY(-50%);
  }
}
#Top #contact-area .contact-area-inner .contact-tel p {
  position: relative;
  padding-left: 42px;
  font-weight: 500;
  font-size: 2.5rem;
  letter-spacing: 0.02em;
  z-index: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  #Top #contact-area .contact-area-inner .contact-tel p {
    font-size: 1.75rem;
    padding-left: 28px;
  }
}
#Top #contact-area .contact-area-inner .contact-tel p::before {
  position: absolute;
  content: "";
  display: block;
  width: 36px;
  height: 35px;
  background: url(../common/ico-contact.svg) no-repeat;
  background-size: contain;
  top: 7px;
  left: 0;
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  #Top #contact-area .contact-area-inner .contact-tel p::before {
    width: 24px;
    height: 24px;
  }
}
#Top #contact-area .contact-area-inner .contact-tel p::after {
  position: absolute;
  content: "";
  width: calc(100% - 32px);
  height: 11px;
  background: var(--default-green);
  left: 37px;
  bottom: -4px;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  #Top #contact-area .contact-area-inner .contact-tel p::after {
    width: calc(100% - 21px);
    left: 25px;
  }
}
#Top #contact-area .contact-area-inner .contact-detail dl {
  display: flex;
  font-weight: 600;
  gap: 25px;
  margin-top: 3px;
  font-size: 1.125rem;
}
@media screen and (max-width: 767px) {
  #Top #contact-area .contact-area-inner .contact-detail dl {
    justify-content: center;
    font-size: 0.75rem;
  }
}
#Top #contact-area .contact-area-inner .contact-detail dl dt {
  background: var(--default-green);
  padding: 7px 12px;
  border-radius: 3px;
  line-height: 1;
  letter-spacing: 0.04em;
  height: fit-content;
}
#Top #contact-area .contact-area-inner .contact-detail dl dd {
  line-height: 1.55;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  #Top #contact-area .contact-area-inner .contact-detail dl dd {
    font-size: 0.875rem;
  }
}
#Top #contact-area .contact-area-inner .contact-detail p {
  font-size: 0.8125rem;
  line-height: 1.5;
  letter-spacing: 0.015em;
  margin-top: 10px;
}
#Top #contents-area {
  background: var(--default-gray);
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  #Top #contents-area {
    padding: 30px 0 50px;
  }
}
#Top #contents-area .content-list-wrap {
  padding: 0 10px;
}
#Top #contents-area .content-list-wrap ul.content-list {
  max-width: 1058px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 40px 21px;
}
@media screen and (max-width: 767px) {
  #Top #contents-area .content-list-wrap ul.content-list {
    gap: 20px 22px;
    max-width: 420px;
  }
}
#Top #contents-area .content-list-wrap ul.content-list li.content-list-item {
  position: relative;
  width: calc((100% - 42px) / 3);
  background: var(--default-white);
  border: 1px solid #e5e5e0;
  border-radius: 8px;
  box-shadow: 3px 3px 2px rgba(0, 0, 0, 0.27);
  transition: 0.5s ease;
}
@media screen and (max-width: 767px) {
  #Top #contents-area .content-list-wrap ul.content-list li.content-list-item {
    width: 100%;
  }
}
#Top #contents-area .content-list-wrap ul.content-list li.content-list-item:hover {
  box-shadow: none;
  transform: translate(2px, 2px);
}
#Top #contents-area .content-list-wrap ul.content-list li.content-list-item::after {
  content: "";
  position: absolute;
  bottom: 25px;
  right: 20px;
  border-radius: 100vh;
  background: var(--default-green);
  background-image: url(../common/ico-arrow-black.svg);
  background-repeat: no-repeat;
  background-position: center center;
  width: 48px;
  height: 48px;
  text-indent: 100%;
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  #Top #contents-area .content-list-wrap ul.content-list li.content-list-item::after {
    bottom: 20px;
    width: 40px;
    height: 40px;
    background-size: 8px;
  }
}
#Top #contents-area .content-list-wrap ul.content-list li.content-list-item a {
  display: block;
  height: 100%;
  padding: 25px 9%;
}
@media screen and (max-width: 767px) {
  #Top #contents-area .content-list-wrap ul.content-list li.content-list-item a {
    padding: 15px 30px 20px;
  }
}
#Top #contents-area .content-list-wrap ul.content-list li.content-list-item a h3 {
  font-family: "Noto serif JP", serif;
  font-weight: 600;
  font-size: 1.625rem;
  letter-spacing: 0.04em;
  text-align: center;
  width: calc(100% + 50px);
  margin-left: -25px;
  line-height: 1.25;
}
@media screen and (max-width: 1180px) {
  #Top #contents-area .content-list-wrap ul.content-list li.content-list-item a h3 {
    font-size: 1.4375rem;
  }
}
@media screen and (max-width: 1100px) {
  #Top #contents-area .content-list-wrap ul.content-list li.content-list-item a h3 {
    font-size: 1.375rem;
  }
}
#Top #contents-area .content-list-wrap ul.content-list li.content-list-item a img {
  width: 100%;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #Top #contents-area .content-list-wrap ul.content-list li.content-list-item a img {
    margin-top: 17px;
    height: 175px !important;
    object-fit: cover;
    border-radius: 9px;
  }
}
#Top #contents-area .content-list-wrap ul.content-list li.content-list-item ul.content-list-sub {
  margin-top: 13px;
  margin-left: -5px;
}
@media screen and (max-width: 767px) {
  #Top #contents-area .content-list-wrap ul.content-list li.content-list-item ul.content-list-sub {
    display: flex;
    flex-wrap: wrap;
    font-size: 0.9375rem;
    margin-top: 10px;
    width: 95%;
  }
}
#Top #contents-area .content-list-wrap ul.content-list li.content-list-item ul.content-list-sub li {
  width: 100%;
  padding: 0;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  #Top #contents-area .content-list-wrap ul.content-list li.content-list-item ul.content-list-sub li {
    width: 48%;
  }
}
@media screen and (max-width: 767px) {
  #Top #contents-area .content-list-wrap ul.content-list > li.content-list-item:nth-child(2) ul.content-list-sub {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  #Top #contents-area .content-list-wrap ul.content-list > li.content-list-item:nth-child(2) ul.content-list-sub li {
    width: 100%;
  }
}
@media screen and (max-width: 400px) {
  #Top #contents-area .content-list-wrap ul.content-list > li.content-list-item:nth-child(3) ul.content-list-sub {
    flex-direction: column;
  }
}
@media screen and (max-width: 767px) {
  #Top #contents-area .content-list-wrap ul.content-list > li.content-list-item:nth-child(3) ul.content-list-sub li {
    width: 50%;
  }
}
@media screen and (max-width: 400px) {
  #Top #contents-area .content-list-wrap ul.content-list > li.content-list-item:nth-child(3) ul.content-list-sub li {
    width: 100%;
  }
}
#Top #contents-area .content-list-wrap ul.content-list > li.content-list-item:nth-child(4) {
  text-align: center;
}
@media screen and (max-width: 767px) {
  #Top #contents-area .content-list-wrap ul.content-list > li.content-list-item:nth-child(4)::after {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  #Top #contents-area .content-list-wrap ul.content-list > li.content-list-item:nth-child(4) a {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    padding: 20px 58px 20px 15px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  #Top #contents-area .content-list-wrap ul.content-list > li.content-list-item:nth-child(4) a {
    padding: 20px 58px 20px 20px;
  }
}
@media screen and (max-width: 767px) {
  #Top #contents-area .content-list-wrap ul.content-list > li.content-list-item:nth-child(4) a h3 {
    margin-left: 0;
    font-size: 1.3125rem;
    max-width: 260px;
  }
}
#Top #contents-area .content-list-wrap ul.content-list > li.content-list-item:nth-child(4) a img {
  width: 67px;
  margin-top: 5px;
}
@media screen and (max-width: 767px) {
  #Top #contents-area .content-list-wrap ul.content-list > li.content-list-item:nth-child(4) a img {
    margin-top: 0px;
    width: 43px;
    height: auto !important;
    object-fit: unset;
    border-radius: 0px;
  }
}
#Top #contents-area .content-list-wrap ul.content-list > li.content-list-item:nth-child(5) {
  text-align: center;
}
@media screen and (max-width: 767px) {
  #Top #contents-area .content-list-wrap ul.content-list > li.content-list-item:nth-child(5)::after {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  #Top #contents-area .content-list-wrap ul.content-list > li.content-list-item:nth-child(5) a {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    padding: 20px 58px 20px 15px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  #Top #contents-area .content-list-wrap ul.content-list > li.content-list-item:nth-child(5) a {
    padding: 20px 58px 20px 20px;
  }
}
#Top #contents-area .content-list-wrap ul.content-list > li.content-list-item:nth-child(5) a h3 {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #Top #contents-area .content-list-wrap ul.content-list > li.content-list-item:nth-child(5) a h3 {
    margin: 0;
    max-width: 260px;
  }
}
#Top #contents-area .content-list-wrap ul.content-list > li.content-list-item:nth-child(5) a img {
  width: 67px;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  #Top #contents-area .content-list-wrap ul.content-list > li.content-list-item:nth-child(5) a img {
    width: 43px;
    height: auto !important;
    object-fit: unset;
    border-radius: 0px;
  }
}
#Top #contents-area .content-list-wrap ul.content-list > li.content-list-item:nth-child(6) {
  text-align: center;
}
@media screen and (max-width: 767px) {
  #Top #contents-area .content-list-wrap ul.content-list > li.content-list-item:nth-child(6)::after {
    top: 50%;
    transform: translateY(-50%);
  }
}
@media screen and (max-width: 767px) {
  #Top #contents-area .content-list-wrap ul.content-list > li.content-list-item:nth-child(6) a {
    display: flex;
    flex-direction: row-reverse;
    align-items: center;
    justify-content: center;
    padding: 20px 58px 20px 15px;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  #Top #contents-area .content-list-wrap ul.content-list > li.content-list-item:nth-child(6) a {
    padding: 20px 58px 20px 20px;
  }
}
#Top #contents-area .content-list-wrap ul.content-list > li.content-list-item:nth-child(6) a h3 {
  margin-top: 20px;
  margin-bottom: 20px;
}
@media screen and (max-width: 767px) {
  #Top #contents-area .content-list-wrap ul.content-list > li.content-list-item:nth-child(6) a h3 {
    margin: 0;
    max-width: 260px;
  }
}
#Top #contents-area .content-list-wrap ul.content-list > li.content-list-item:nth-child(6) a img {
  width: 67px;
  margin-top: 0;
}
@media screen and (max-width: 767px) {
  #Top #contents-area .content-list-wrap ul.content-list > li.content-list-item:nth-child(6) a img {
    width: 43px;
    height: auto !important;
    object-fit: unset;
    border-radius: 0px;
  }
}
#Top #news-area {
  background: var(--default-green);
}
#Top #news-area .news-area-inner {
  display: flex;
  max-width: 1078px;
  width: 100%;
  margin: 60px auto;
  padding: 0 10px;
  justify-content: space-between;
}
@media screen and (max-width: 767px) {
  #Top #news-area .news-area-inner {
    max-width: 100%;
    flex-direction: column;
    margin: 40px auto;
  }
}
#Top #news-area .news-area-inner .news-title {
  text-align: center;
  width: 203px;
}
@media screen and (max-width: 767px) {
  #Top #news-area .news-area-inner .news-title {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    margin-bottom: 28px;
  }
}
#Top #news-area .news-area-inner .news-title h2 {
  font-family: "Noto serif JP", serif;
  font-weight: 600;
  font-size: 2.25rem;
  letter-spacing: 0.03em;
}
@media screen and (max-width: 767px) {
  #Top #news-area .news-area-inner .news-title h2 {
    font-size: 1.875rem;
  }
}
#Top #news-area .news-area-inner .news-title .btn-news {
  position: relative;
  display: flex;
  align-items: center;
  margin-top: 20px;
  text-align: center;
  background: var(--default-yellow);
  border-radius: 100px;
  font-size: 1rem;
  padding: 12px 50px 12px;
  box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.2);
  transition: 0.3s;
}
@media screen and (max-width: 767px) {
  #Top #news-area .news-area-inner .news-title .btn-news {
    margin-top: 0px;
    font-size: 0.8125rem;
    padding: 8px 40px 8px 29px;
    height: fit-content;
  }
}
#Top #news-area .news-area-inner .news-title .btn-news:hover {
  box-shadow: none;
  transform: translate(1px, 1px);
}
#Top #news-area .news-area-inner .news-title .btn-news:before {
  display: block;
  position: absolute;
  content: "";
  width: 20px;
  height: 12px;
  background: url(../common/ico-arrow-black.svg) no-repeat top right/contain;
  top: 51%;
  right: 30px;
  transform: translateY(-50%);
  transition: 0.2s;
}
@media screen and (max-width: 767px) {
  #Top #news-area .news-area-inner .news-title .btn-news:before {
    top: 52%;
    right: 16px;
  }
}
#Top #news-area .news-area-inner .news-wrap {
  width: calc(100% - 263px);
}
@media screen and (max-width: 767px) {
  #Top #news-area .news-area-inner .news-wrap {
    width: 100%;
  }
}
#Top #news-area .news-area-inner .news-wrap ul.news-body li.news-content {
  background: var(--default-white);
  border-radius: 4px;
  margin-bottom: 15px;
  letter-spacing: 0.015em;
  line-height: 1;
  border: 2px solid var(--default-white);
  transition: 0.2s;
}
#Top #news-area .news-area-inner .news-wrap ul.news-body li.news-content:hover {
  border-color: var(--default-green-dark);
}
#Top #news-area .news-area-inner .news-wrap ul.news-body li.news-content a {
  display: block;
  width: 100%;
  height: 100%;
}
#Top #news-area .news-area-inner .news-wrap ul.news-body li.news-content article {
  display: flex;
  gap: 30px;
  padding: 20px 30px;
}
@media screen and (max-width: 767px) {
  #Top #news-area .news-area-inner .news-wrap ul.news-body li.news-content article {
    padding: 10px;
    flex-direction: column;
    gap: 10px;
  }
}
#Top #news-area .news-area-inner .news-wrap ul.news-body li.news-content article .text-sub {
  display: flex;
}
#Top #news-area .news-area-inner .news-wrap ul.news-body li.news-content article .text-sub .date {
  font-size: 0.875rem;
  font-weight: 500;
  margin-right: 18px;
}
#Top #news-area .news-area-inner .news-wrap ul.news-body li.news-content article .text-sub .new {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--default-orange);
  margin-right: 15px;
}
#Top #news-area .news-area-inner .news-wrap ul.news-body li.news-content article .text-sub .cate {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--default-green-dark);
}
#Top #news-area .news-area-inner .news-wrap ul.news-body li.news-content article .text {
  margin-top: 10px;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  #Top #news-area .news-area-inner .news-wrap ul.news-body li.news-content article .text {
    font-size: 0.9375rem;
  }
}
#Top #news-area .news-area-inner .news-wrap ul.news-body li.news-content article .thumb {
  flex: 0 0 100px;
}
@media screen and (max-width: 767px) {
  #Top #news-area .news-area-inner .news-wrap ul.news-body li.news-content article .thumb {
    flex: none;
  }
}
#Top #news-area .news-area-inner .news-wrap ul.news-body li.news-content article .thumb img {
  width: 100px !important;
  object-fit: contain;
}
#Top #news-area .news-area-inner .news-wrap .news-body::-webkit-scrollbar {
  width: 8px;
}
#Top #news-area .news-area-inner .news-wrap .news-body::-webkit-scrollbar-track {
  background: #f0f0f0;
}
#Top #news-area .news-area-inner .news-wrap .news-body::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 4px;
}
#Top #voice-area {
  padding: 60px 0px;
}
@media screen and (max-width: 767px) {
  #Top #voice-area {
    padding: 50px 0px;
  }
}
#Top #voice-area h3 {
  font-size: 2.125rem;
  font-weight: 500;
  color: #333;
  letter-spacing: 0.02em;
  line-height: 1.5;
  text-align: center;
}
@media screen and (max-width: 767px) {
  #Top #voice-area h3 {
    font-size: 1.5rem;
    line-height: 1.2;
  }
}
#Top #voice-area h3 span {
  font-size: 1.875rem;
}
@media screen and (max-width: 767px) {
  #Top #voice-area h3 span {
    font-size: 0.9375rem;
  }
}
#Top #voice-area .voice-area-inner {
  max-width: 1020px;
  padding: 0 20px;
  margin: auto;
  margin-top: 20px;
}
@media screen and (max-width: 767px) {
  #Top #voice-area .voice-area-inner {
    padding: 0;
    margin-top: 15px;
  }
}
#Top #voice-area .voice-area-inner .voice-area-text {
  text-align: center;
  font-size: 1.125rem;
  letter-spacing: 0.015em;
  margin-bottom: 15px;
  color: #5f5f5f;
}
@media screen and (max-width: 767px) {
  #Top #voice-area .voice-area-inner .voice-area-text {
    font-size: 0.875rem;
    line-height: 1.6;
    text-align: left;
    margin-bottom: 12px;
    padding: 0 20px;
  }
}
#Top #voice-area .voice-area-inner .youtube {
  position: relative;
  width: 100%;
  aspect-ratio: 16/9;
  background-color: #FFE3E7;
  border-radius: 8px;
  padding: 15px;
}
@media screen and (max-width: 767px) {
  #Top #voice-area .voice-area-inner .youtube {
    border-radius: 0px;
    padding: 8px 10px;
  }
}
#Top #voice-area .voice-area-inner .youtube::before {
  position: absolute;
  content: "";
  width: 280px;
  height: 280px;
  z-index: -1;
  top: -110px;
  left: -150px;
  transform: rotate(45deg);
  background-color: #ffffff;
  background-image: radial-gradient(circle, #f5f3ee 5px, transparent 5px);
  background-position: 0 0;
  background-size: 30px 30px;
}
@media screen and (max-width: 767px) {
  #Top #voice-area .voice-area-inner .youtube::before {
    width: 120px;
    height: 120px;
    top: -120px;
    left: -15px;
    background-image: radial-gradient(circle, #f5f3ee 3px, transparent 3px);
    background-size: 18px 18px;
  }
}
#Top #voice-area .voice-area-inner .youtube::after {
  position: absolute;
  content: "";
  width: 280px;
  height: 280px;
  z-index: -1;
  bottom: -110px;
  right: -120px;
  transform: rotate(45deg);
  background-color: #ffffff;
  background-image: radial-gradient(circle, #f5f3ee 5px, transparent 5px);
  background-position: 0 0;
  background-size: 30px 30px;
}
@media screen and (max-width: 767px) {
  #Top #voice-area .voice-area-inner .youtube::after {
    width: 120px;
    height: 120px;
    bottom: -50px;
    right: -15px;
    background-image: radial-gradient(circle, #f5f3ee 3px, transparent 3px);
    background-size: 18px 18px;
  }
}
#Top #voice-area .voice-area-inner .youtube iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}
#Top #voice-area .voice-area-inner a .link-card__item {
  margin-top: 60px;
  width: calc(100% - 3px);
  height: fit-content;
  box-shadow: 3px 3px 0px var(--default-orange);
  border-radius: 8px;
  transition: 0.5s ease;
}
@media screen and (max-width: 767px) {
  #Top #voice-area .voice-area-inner a .link-card__item {
    margin: 40px 10px 0 10px;
    width: calc(100% - 22px);
    border-radius: 12px;
  }
}
#Top #voice-area .voice-area-inner a .link-card__item img {
  display: block;
}
#Top #voice-area .voice-area-inner a:hover .link-card__item {
  box-shadow: none;
  transform: translate(3px, 3px);
  opacity: 0.8;
}
#Top #access-area {
  background: var(--default-gray);
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  #Top #access-area {
    padding: 40px 0 30px;
  }
}
#Top #access-area .access-area-inner {
  max-width: 1020px;
  width: 100%;
  margin: auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  #Top #access-area .access-area-inner {
    display: flex;
    flex-direction: column-reverse;
    font-size: 0.9375rem;
    padding: 0 10px;
  }
}
#Top #access-area .access-area-inner .map {
  float: right;
  aspect-ratio: 490/325;
  width: 50%;
  margin: 5px 0px;
  padding: 1px;
  background: rgba(255, 255, 255, 0.8);
}
@media screen and (max-width: 767px) {
  #Top #access-area .access-area-inner .map {
    display: flex;
    flex-direction: column-reverse;
    margin: 20px 0px;
    width: 100%;
  }
}
#Top #access-area .access-area-inner .map iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: none;
}
#Top #access-area .access-area-inner h2 {
  font-family: "Noto serif JP", serif;
  font-weight: 600;
  font-size: 2.25rem;
  letter-spacing: 0.02em;
  line-height: 1;
  margin-bottom: 30px;
}
@media screen and (max-width: 767px) {
  #Top #access-area .access-area-inner h2 {
    font-size: 1.875rem;
  }
}
#Top #access-area .access-area-inner .access-name {
  font-weight: 500;
  font-size: 1.25rem;
  letter-spacing: 0em;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  #Top #access-area .access-area-inner .access-name {
    font-size: 1.125rem;
  }
}
#Top #access-area .access-area-inner .access-name span {
  font-size: 1.5625rem;
}
#Top #access-area .access-area-inner .access-address {
  margin-top: 8px;
  font-size: 1.25rem;
  letter-spacing: 0em;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  #Top #access-area .access-area-inner .access-address {
    font-size: 1rem;
    line-height: 1.6;
  }
}
#Top #access-area .access-area-inner dl {
  margin-top: 38px;
  line-height: 1.5;
  letter-spacing: 0.02em;
}
@media screen and (max-width: 767px) {
  #Top #access-area .access-area-inner dl {
    margin-top: 25px;
  }
}
#Top #access-area .access-area-inner dl dt {
  position: relative;
  padding-left: 20px;
}
@media screen and (max-width: 767px) {
  #Top #access-area .access-area-inner dl dt {
    margin-bottom: 3px;
  }
}
#Top #access-area .access-area-inner dl dt::before {
  content: "";
  position: absolute;
  border: 3px solid #86D0C8;
  border-radius: 100vh;
  width: 15px;
  height: 15px;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
#Top #access-area .access-area-inner dl dd {
  margin-bottom: 17px;
}
#Top #textbanner-area {
  padding: 60px 0;
}
@media screen and (max-width: 767px) {
  #Top #textbanner-area {
    padding: 50px 0;
  }
}
#Top #textbanner-area .textbanner-wrap {
  width: 100%;
  max-width: 1020px;
  margin: auto;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  #Top #textbanner-area .textbanner-wrap {
    max-width: 100%;
    padding: 0 10px;
  }
}
#Top #textbanner-area .textbanner-wrap ul.textbanner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}
@media screen and (max-width: 767px) {
  #Top #textbanner-area .textbanner-wrap ul.textbanner-list {
    flex-direction: column;
    gap: 22px;
  }
}
#Top #textbanner-area .textbanner-wrap ul.textbanner-list li {
  width: calc((100% - 30px) / 2);
  height: auto;
}
@media screen and (max-width: 767px) {
  #Top #textbanner-area .textbanner-wrap ul.textbanner-list li {
    width: 100%;
  }
}
#Top #textbanner-area .textbanner-wrap ul.textbanner-list li a {
  position: relative;
  width: 100%;
  height: 100%;
  background: var(--default-green);
  display: flex;
  padding: 28px 33px 28px 20px;
  align-items: center;
  line-height: 1.4;
  font-weight: 500;
  font-size: 1.125rem;
  letter-spacing: 0.02em;
  border-radius: 8px;
  box-shadow: 2px 2px 3px rgba(51, 51, 51, 0.2);
  transition: 0.5s ease;
}
@media screen and (max-width: 767px) {
  #Top #textbanner-area .textbanner-wrap ul.textbanner-list li a {
    padding: 23px 33px 23px 20px;
    justify-content: center;
    font-size: 1rem;
  }
}
#Top #textbanner-area .textbanner-wrap ul.textbanner-list li a::after {
  content: "";
  position: absolute;
  right: 13px;
  top: 50%;
  transform: translateY(-50%);
  width: 10px;
  height: 14px;
  background: url(../common/ico-arrow-black.svg) no-repeat;
  background-size: contain;
}
#Top #textbanner-area .textbanner-wrap ul.textbanner-list li a:hover {
  box-shadow: none;
  opacity: 0.8;
}
#Top #imgbanner-area {
  padding: 40px 0 50px;
  background: var(--default-gray);
}
@media screen and (max-width: 767px) {
  #Top #imgbanner-area {
    padding: 35px 0 42px;
  }
}
#Top #imgbanner-area h3 {
  text-align: center;
  font-weight: 500;
  font-size: 1.5rem;
}
@media screen and (max-width: 767px) {
  #Top #imgbanner-area h3 {
    font-size: 1.375rem;
  }
}
#Top #imgbanner-area .imgbanner-wrap {
  width: 100%;
  max-width: 1260px;
  margin: auto;
  margin-top: 25px;
  padding: 0 20px;
}
@media screen and (max-width: 767px) {
  #Top #imgbanner-area .imgbanner-wrap {
    max-width: 100%;
    margin-top: 20px;
    padding: 0 10px;
  }
}
#Top #imgbanner-area .imgbanner-wrap ul.imgbanner-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 40px;
}
@media screen and (max-width: 767px) {
  #Top #imgbanner-area .imgbanner-wrap ul.imgbanner-list {
    gap: 18px 16px;
  }
}
#Top #imgbanner-area .imgbanner-wrap ul.imgbanner-list li {
  width: calc((100% - 120px) / 4);
}
@media screen and (max-width: 767px) {
  #Top #imgbanner-area .imgbanner-wrap ul.imgbanner-list li {
    width: calc((100% - 16px) / 2);
  }
}
#Top #imgbanner-area .imgbanner-wrap ul.imgbanner-list li a {
  transition: 0.5s ease;
}
#Top #imgbanner-area .imgbanner-wrap ul.imgbanner-list li a :hover {
  opacity: 0.5;
}

#detail .main {
  flex: 1;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  width: calc(100% - 240px);
}
@media screen and (max-width: 999px) {
  #detail .main {
    width: 100%;
  }
}
#detail .head_detail {
  background: url(../images/img-detail-head.jpg) no-repeat center;
  background-size: cover;
  padding: 0 194px;
  min-height: 200px;
  display: flex;
  align-items: center;
  width: 100%;
}
@media screen and (max-width: 999px) {
  #detail .head_detail {
    min-height: 150px;
    padding: 0 20px;
    margin-top: 80px;
  }
}
#detail .head_detail h1 {
  font-family: "Noto serif JP", serif;
  font-weight: 600;
  font-size: 2.25rem;
  letter-spacing: 0.05em;
  color: #222;
  margin: auto;
  text-shadow: 3px 3px 5px white;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}
@media screen and (max-width: 767px) {
  #detail .head_detail h1 {
    font-size: 1.5rem;
  }
}
#detail .head_detail h1::before {
  position: absolute;
  content: "";
  display: block;
  width: 110px;
  height: 114px;
  background: url(../images/img-detail-headtitle.png) no-repeat;
  background-size: contain;
  top: 50%;
  left: 0;
  transform: translate(-50%, -50%);
  transition: 0.3s;
  z-index: -1;
}
@media screen and (max-width: 767px) {
  #detail .head_detail h1::before {
    left: 50%;
  }
}
#detail .detail-area {
  background: var(--default-gray);
  padding: 40px 16px;
  height: 100%;
}
@media screen and (max-width: 767px) {
  #detail .detail-area {
    padding: 16px 10px 30px;
  }
}
#detail .detail-area .detail-inner {
  max-width: 1058px;
  background: var(--default-white);
  padding: 20px 40px 40px;
  margin: 0 auto 40px;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  #detail .detail-area .detail-inner {
    padding: 15px 10px 35px;
    margin-bottom: 30px;
  }
}
#detail .news-title {
  max-width: 1058px;
  background: var(--default-white);
  padding: 20px 40px;
  margin: 0 auto 30px;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  #detail .news-title {
    padding: 20px 10px;
    margin: 0 auto 16px;
  }
}
#detail .news-title span {
  color: var(--default-green-dark);
  font-weight: 500;
}
#detail .news-title h2 {
  font-family: "Noto serif JP", serif;
  font-weight: 600;
  font-size: 2rem;
  letter-spacing: 0.03em;
  line-height: 1.7;
}
@media screen and (max-width: 767px) {
  #detail .news-title h2 {
    font-size: 1.375rem;
    line-height: 1.6;
  }
}
#detail .news-cate-area {
  max-width: 1058px;
  background: var(--default-white);
  padding: 20px 40px;
  margin: 0 auto 30px;
  border-radius: 4px;
}
@media screen and (max-width: 767px) {
  #detail .news-cate-area {
    padding: 20px 10px;
    margin: 0 auto 16px;
  }
}
#detail .news-cate-area .news-cate-head {
  margin-bottom: 5px;
}
#detail .news-cate-area ul.news-cate-body li {
  display: inline-block;
  margin-right: 5px;
  margin-bottom: 5px;
}
@media screen and (max-width: 767px) {
  #detail .news-cate-area ul.news-cate-body li {
    margin-right: 8px;
    margin-bottom: 8px;
  }
}
#detail .news-cate-area ul.news-cate-body li a {
  cursor: pointer;
  font-size: 0.8125rem;
  position: relative;
  padding: 8px 15px;
  color: #333;
  border-radius: 100vh;
  background: var(--default-gray);
  display: block;
  transition: all 0.2s;
}
#detail .news-cate-area ul.news-cate-body li.now a {
  font-weight: 500;
  background: var(--default-green);
}
#detail .news-wrap {
  width: 100%;
  margin-bottom: 50px;
}
#detail .news-wrap ul.news-body li.news-content {
  background: var(--default-white);
  letter-spacing: 0.015em;
  line-height: 1;
}
#detail .news-wrap ul.news-body li.news-content a {
  display: block;
  width: 100%;
  height: 100%;
}
#detail .news-wrap ul.news-body li.news-content article {
  display: flex;
  gap: 30px;
  padding: 20px 0px;
  border-bottom: 1px solid #ccc;
}
#detail .news-wrap ul.news-body li.news-content article .text-sub {
  display: flex;
}
#detail .news-wrap ul.news-body li.news-content article .text-sub .date {
  font-size: 0.875rem;
  font-weight: 500;
  margin-right: 18px;
}
#detail .news-wrap ul.news-body li.news-content article .text-sub .new {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--default-orange);
  margin-right: 15px;
}
#detail .news-wrap ul.news-body li.news-content article .text-sub .cate {
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--default-green-dark);
}
#detail .news-wrap ul.news-body li.news-content article .text {
  margin-top: 10px;
  line-height: 1.7;
}
#detail .news-wrap ul.news-body li.news-content article .thumb {
  flex: 0 0 100px;
}
#detail .news-wrap ul.news-body li.news-content article .thumb img {
  width: 100px !important;
  object-fit: contain;
}
#detail .news-number {
  text-align: center;
  margin-bottom: 10px;
}
#detail .news-paging {
  display: flex;
  margin-left: 10px;
}
#detail .news-paging li {
  width: 25%;
  margin-right: 10px;
}
#detail .news-paging li a {
  display: block;
  padding: 16px 0 18px;
  border-radius: 100vh;
  background-color: var(--default-gray);
  text-align: center;
}
#detail .news-paging li a:hover {
  background-color: var(--default-green);
}
#detail .news-paging li a:not([href]) {
  color: gray;
  pointer-events: none;
  text-decoration: none;
  background-color: #e0e0e0;
  cursor: default;
}
#detail .news-paging li a:not([href]):hover {
  background-color: #e0e0e0;
}
#detail .nav_page ul {
  display: flex;
  margin: 10px auto;
  align-items: center;
  overflow: auto;
  white-space: nowrap;
  max-width: 1058px;
}
#detail .nav_page ul li {
  position: relative;
  font-size: 0.875rem;
  margin: 0 15px;
}
#detail .nav_page ul li:before {
  display: block;
  content: "";
  position: absolute;
  width: 5px;
  height: 7px;
  background: url(../common/ico-arrow-black.svg) no-repeat;
  background-size: contain;
  top: 50%;
  right: -17px;
  transform: translateY(-50%);
  transition: 0.3s;
}
#detail .nav_page ul li a {
  color: var(--default-green-dark);
  font-weight: 600;
}
#detail .nav_page ul li:last-child:before {
  display: none;
}
#detail .password_block {
  text-align: center;
}
#detail .password_block .err_text {
  text-align: center;
  color: #F44646;
  font-weight: 500;
}
#detail .password_block .password_input {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  #detail .password_block .password_input {
    display: block;
  }
}
#detail .password_block .password_input input {
  padding: 10px 20px;
  box-sizing: border-box;
  border: 2px solid var(--default-green-dark);
  background-color: #fff;
  font-size: 1rem;
  min-width: 300px;
  border-radius: 8px;
}
@media screen and (max-width: 767px) {
  #detail .password_block .password_input input {
    min-width: 280px;
    width: 90%;
    margin: 0 auto;
  }
}
#detail .password_block .password_input input::placeholder {
  color: #888;
  font-size: 1.0625rem;
}
@media screen and (max-width: 767px) {
  #detail .password_block .password_input .btn_password {
    margin-top: 15px;
  }
}
#detail .password_block .password_input .btn_password a {
  padding: 11px 20px;
  border: 2px solid var(--default-green-dark);
  background-color: var(--default-green-dark);
  color: #fff;
  letter-spacing: 0.1em;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}
#detail .password_block .password_input .btn_password a:hover {
  background-color: #fff;
  color: var(--default-green-dark);
}
@media screen and (max-width: 767px) {
  #detail .password_block .password_input .btn_password a {
    margin-top: 10px;
    padding: 5px 20px;
  }
}

input[type=email],
input[type=tel],
input[type=text],
input[type=url],
dd textarea {
  width: 100%;
  max-width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--default-gray);
  background: var(--base-gray-default);
}

::placeholder {
  color: var(--default-gray);
}

.form .intro {
  letter-spacing: 0.06em;
}

@media all and (min-width: 768px) {
  .form-Item input[type=text].w250_Pc {
    width: 250px;
  }
}

.form-Item label.block,
.form-Item .label_confirm {
  display: block;
  margin-bottom: 5px;
  color: var(--base-gray-dark);
  font-size: 0.875rem;
}

.form_explanation {
  margin-top: 3px;
  font-size: 0.875rem;
  color: var(--default-gray-brown);
}

.privacyArea {
  margin: 25px auto;
  padding: 10px 20px;
  border: solid 4px var(--base-gray-light);
  letter-spacing: 0.04em;
}
@media all and (min-width: 768px) {
  .privacyArea {
    margin: 25px auto;
  }
}

.privacyArea dl {
  padding: 8px 6px;
  text-align: center;
  background: var(--base-gray-default);
}
@media all and (min-width: 768px) {
  .privacyArea dl {
    padding: 15px 10px 5px;
  }
}

.privacyArea a {
  text-decoration: underline;
}

.form-Item {
  padding: 25px 0;
}
@media all and (min-width: 768px) {
  .form-Item {
    display: grid;
    grid-template-columns: 240px 1fr;
    align-items: start;
  }
}

.form-Item + .form-Item {
  border-top: 1px solid var(--default-gray-light);
}

.form-Item dt {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  font-weight: 500;
  color: #000;
  line-height: 1.3;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 767px) {
  .form-Item dt {
    font-size: 1.125rem;
    margin-bottom: 15px;
  }
}
@media all and (min-width: 768px) {
  .form-Item dt {
    margin-top: 15px;
    padding-right: 10px;
  }
}

.form-Item dd {
  letter-spacing: 0.04em;
}

.label_checkbox input[type=checkbox] {
  display: none;
}

.label_checkbox label {
  position: relative;
  display: inline-block;
  padding-left: 30px;
  cursor: pointer;
}

.label_checkbox label::before {
  position: absolute;
  content: "";
  top: 50%;
  left: 0;
  width: 20px;
  height: 20px;
  margin-top: -10px;
  background: #fff;
  border: 1px solid var(--default-gray);
}

.label_checkbox input[type=checkbox]:checked + label::after {
  position: absolute;
  content: "";
  top: 7px;
  left: 3px;
  width: 20px;
  height: 6px;
  border-left: 3px solid #333;
  border-bottom: 3px solid #333;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.label_checkbox input[type=checkbox]:checked + label::before {
  background: var(--base-pink-default);
  border: solid 1px #FF2E2E;
}

/* 必須&任意マーク */
.form-Item .ico {
  text-align: center;
  font-size: 0.6875rem;
  display: inline-block;
  color: #fff;
  line-height: 1;
  line-height: 1;
  padding: 6px 6px;
  vertical-align: middle;
  text-decoration: none;
  white-space: nowrap;
}
.form-Item .ico.required {
  background-color: var(--default-red);
}
.form-Item .ico.optional {
  color: #333;
  background-color: var(--default-gray-light);
}

.form-Item ul.radio_area {
  margin-left: -25px;
  margin-top: 10px;
}

li.radio {
  list-style: none;
}

.radio {
  position: relative;
  margin: 0 0 0.7rem;
  padding-left: 18px;
}
@media screen and (max-width: 767px) {
  .radio:last-child {
    margin-bottom: 0;
  }
}

.radio input[type=radio] {
  position: absolute;
  opacity: 0;
}

.radio input[type=radio] + .radio-label:before {
  content: "";
  background: var(--base-gray-default);
  border-radius: 100%;
  border: 1px solid var(--default-gray-light);
  display: inline-block;
  width: 1.4em;
  height: 1.4em;
  position: relative;
  top: 0.2em;
  margin-right: 0.5em;
  vertical-align: top;
  cursor: pointer;
  text-align: center;
  -webkit-transition: all 250ms ease;
  transition: all 250ms ease;
}

.radio input[type=radio]:checked + .radio-label:before {
  background-color: var(--default-blue);
  box-shadow: inset 0 0 0 4px var(--base-gray-default);
}

.radio input[type=radio]:focus + .radio-label:before {
  outline: none;
  border-color: var(--default-blue);
}

.radio input[type=radio]:disabled + .radio-label:before {
  box-shadow: inset 0 0 0 4px var(--base-gray-default);
  border-color: var(--default-gray-light);
  background: var(--default-gray-light);
}

.radio input[type=radio] + .radio-label:empty:before {
  margin-right: 0;
}

/* PCのみ横並びの場合 */
@media all and (min-width: 768px) {
  .radio_area_short {
    display: flex;
  }
}

.select_area {
  position: relative;
  display: inline-block;
  border: 1px solid var(--default-gray);
  vertical-align: middle;
  background: var(--base-gray-default);
}
@media screen and (max-width: 767px) {
  .select_area {
    width: 100%;
  }
}
.select_area::before {
  position: absolute;
  display: inline-block;
  content: "";
  top: 20px;
  right: 16px;
  width: 0;
  height: 0;
  border-width: 9px 6px 0 6px;
  border-style: solid;
  border-color: var(--default-gray) transparent transparent transparent;
  pointer-events: none;
}

.select_area select {
  appearance: none;
  padding: 11px 15px;
  padding-right: 2.5em;
  border: none;
  outline: 0;
  background: var(--base-gray-default);
  text-indent: 0.01px;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .select_area select {
    width: 100%;
  }
}

.ajax_err p {
  position: relative;
  margin-top: 8px;
  padding: 8px 15px 8px;
  display: inline-block;
  color: var(--default-red-dark);
  line-height: 1.6;
  font-size: fo(14);
  border-radius: 5px;
  border: solid 1px var(--default-red-dark);
  background: var(--base-pink-default);
  box-shadow: 2px 2px 4px rgba(0, 0, 0, 0.4);
}
@media all and (min-width: 768px) {
  .ajax_err p {
    margin-top: 10px;
    padding: 10px 40px 10px;
    font-size: 0.9375rem;
  }
}

.ajax_err p:before {
  content: "";
  position: absolute;
  top: -11px;
  left: 50px;
  margin-left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid var(--default-red-dark);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

.ajax_err p:after {
  content: "";
  position: absolute;
  top: -9px;
  left: 50px;
  margin-left: -6px;
  width: 0;
  height: 0;
  border-bottom: 10px solid var(--base-pink-default);
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
}

.ajax_err p.arw_center:before {
  left: 50%;
  transform: translateX(50%);
}

.ajax_err p.arw_center:after {
  left: 50%;
  transform: translateX(50%);
}

.l-form-btnArea {
  margin: 20px auto 50px;
}

.l-form-actbtn {
  padding: 0;
}
@media all and (min-width: 768px) {
  .l-form-actbtn {
    display: flex;
    justify-content: center;
    flex-direction: row-reverse;
  }
}
.l-form-actbtn li {
  list-style: none;
}

@media screen and (max-width: 767px) {
  .l-form-actbtn li + li {
    margin-top: 15px;
  }
}
@media all and (min-width: 768px) {
  .l-form-actbtn li + li {
    margin-right: 15px;
  }
}

@media screen and (max-width: 767px) {
  .btn_form {
    width: 100%;
  }
}

.btn_form a {
  display: block;
  padding: 20px;
  text-align: center;
  color: #fff;
  border-radius: 40px;
}
@media all and (min-width: 768px) {
  .btn_form a {
    width: 420px;
  }
}
.btn_form a:hover {
  text-decoration: none;
  background: var(--default-blue);
}

.btn_form.send {
  background: var(--default-black);
  border-radius: 40px;
}
.btn_form.back {
  background: var(--default-gray);
  border-radius: 40px;
}

@media all and (min-width: 768px) {
  .form-address {
    display: flex;
  }
}

#Ready-text {
  margin: 15px auto;
  font-size: 1.25rem;
  text-align: center;
  font-weight: 500;
}

.form-Contents.conlayout {
  margin-top: 20px;
}
@media all and (min-width: 768px) {
  .form-Contents.conlayout .form-Item dt {
    margin-top: 0 !important;
  }
}/*# sourceMappingURL=style.css.map */