@charset "UTF-8";

/*-----------------------------------------------------------------------


 General


-----------------------------------------------------------------------*/
:root {
  /* color */
  --green: #116974;
  --paleGreen: #B6F19F;
  --linkColor: #66AE47;
  --linkColorHover: #63D632;
  --blue: #3C73B2;
  --yellow: #F0CE10;
  --borderColor: #787878;
  --background: #FBF5E5;
  /* font */
  --font-BIZ: "BIZ UDPGothic", serif;
  --font-En: "Raleway", serif;
  --font-En2: "Roboto", serif;
  /* */
  --shadow: drop-shadow(0 3px 6px rgb(0 0 0 / .1));
  --r: 10px;
}
@media screen and (min-width: 768px) {
  :root {
    --r: 15px;
  }
}

html,
body {
  height: 100%;
}
html {
  height: 100%;
  font-family: var(--font-BIZ);
  font-size: clamp(11px, 3.4667vw, 13px);
  font-weight: 400;
  line-height: 1.8;
  line-break: strict;
  font-feature-settings: "palt";
  text-align: justify;
  color: #222;
  background: #fff;
}
html,
button {
  letter-spacing: .08em;
}
h1,h2,h3,h4,h5{
  font-weight: inherit;
}
ol {
  list-style-type: decimal;
  padding-left: 2em;
}
ol li {
  display: list-item;
  list-style-type: decimal;
  list-style-position: outside;
}
@media screen and (min-width: 768px) {
  html{
    font-size: 15px;
    line-height: 2;
  }
}

#wrap{
  position: relative;
  overflow-x: hidden;
  height: 100%;
}

/* container ----------*/
.container {
  margin-left: clamp(15px,4.615vw, 25px);
  margin-right: clamp(15px,4.615vw, 25px);
  max-width: 1130px;
}
.container.m-1000 {
  max-width: 1000px;
}
@media screen and (min-width: 768px) {
  .container {
    width: 93%;
    margin: auto;
  }
}

/*-------------------------------------------------*/

/* header

/*-------------------------------------------------*/
.b-header {
  width: 100dvw;
  margin: 0;
  line-height: 1;
  position: fixed;
  z-index: 1000;
}
.b-header::before {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background: rgb(255 255 255 / .93);
  position: absolute;
  left: 0;
  top: 0;
  filter: var(--shadow);
}
.b-header > .inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: clamp(45px, 6vw, 80px);
  margin-left: 10px;
  margin-right: 15px;
  position: relative;
  z-index: 1;
}
.b-header .b-siteName {
  margin: 0;
  width: clamp(180px, 53.3333vw, 230px);
}
.b-header .b-nav li {
  display: block;
}
@media screen and (min-width: 1001px) {
  .b-header > .inner {
    margin-left: min(2vw,28px);
    margin-right: 15px;
  }
  .b-header .b-siteName {
    width: clamp(150px, 22vw, 280px);
  }
  .b-header .b-nav {
    display: flex;
    align-items: center;
  }
}

/* nav ----------------------------- */
#wrap.onMobile .b-header:not(.active) .b-nav {
  opacity: 0;
  pointer-events: none;
  transition: .5s all;
  position: absolute;
}
#wrap.onMobile .b-header.active .b-nav {
  opacity: 1;
}
.b-nav button {
  display: flex;
  align-items: center;
  font-weight: 700;
}
.b-nav button:hover,
.b-nav .b-cld a:hover {
  transition: .3s all;
  color: var(--linkColorHover);
}
.b-header .b-cld a:hover::before {
  background: var(--linkColorHover);
}
.b-nav button .b-cross {
  display: block;
  aspect-ratio: 1/1;
  position: relative;
  transition: .3s all;
}
.b-nav .b-grp.active button .b-cross {
  transform: rotate(45deg);
}
.b-nav button .b-cross::before,
.b-nav button .b-cross::after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: var(--linkColor);
  position: absolute;
  top: 50%;
  transition: .3s all;
}
.b-nav button .b-cross::before {
  transform: translateY(-50%);
}
.b-nav button .b-cross::after {
  transform: translateY(-50%) rotate(90deg);
}
@media screen and (max-width: 1000px) {
  .b-nav {
    width: 100dvw;
    height: 100dvh;
    position: absolute;
    left: -10px;
    background: #fff;
    overflow-y: scroll;
    padding-bottom: 100px;
  }
  .b-nav .b-grp {
    border-bottom: 1px solid var(--borderColor);
  }
  .b-nav .b-grp:first-of-type {
    border-top: 1px solid var(--borderColor);
  }
  .b-nav button,
  .b-nav .b-contact a,
  .b-header .b-cld a {
    font-size: clamp(12px, 4vw, 15px);
  }
  .b-nav button {
    justify-content: space-between;
    width: 100%;
    padding: 1.5em 1.5em 1.5em 1.2em;
  }
  .b-nav button .b-cross {
    width: 12px;
    min-width: 12px;
  }
}
@media screen and (min-width: 1001px) {
  .b-nav .b-grp {
    position: relative;
  }
  .b-nav button,
  .b-nav .b-contact a {
    font-size: clamp(11px,1.2vw,14px);
  }
  .b-nav button {
    margin-right: clamp(15px,1.6vw,35px);
  }
  .b-nav .b-grp.active button {
    color: var(--linkColor);
  }
  .b-nav button .b-cross {
    width: 10px;
    min-width: 10px;
    margin-left: 3px;
    margin-top: -1px;
  }
}
/* cld */
.b-header .b-cld a {
  display: block;
  padding: .5em .5em .5em 1em;
  position: relative;
}
.b-header .b-cld a::before {
  content: "";
  width: .6em;
  height: 2px;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media screen and (max-width: 1000px) {
  .b-header .b-cld {
    display: none;
    background: var(--background);
    padding: 1em .2em 1.5em 1.5em;
  }
  .b-header .b-cld a {
    padding-left: 1.8em;
  }
  .b-header .b-cld a::before {
    width: 1.1em;
    height: 1px;
    background: #222;
  }
}
@media screen and (min-width: 1001px) {
  .b-header .b-cld {
    width: auto;
    position: absolute;
    top: calc( 50% + 2em);
    left: -8px;
    left: 50%;
    transform: translateX( calc(-50% - 18px));
    font-size: clamp(11px,1.2vw,13px);
    transition: .4s ease-out all;
    filter: drop-shadow(0 0 4px rgb(0 0 0 / .16));
  }
  .b-header .b-cld ul {
    position: relative;
    background: var(--background);
    padding: 1em;
  }
  .b-header .b-cld ul::before {
    content: "";
    display: block;
    aspect-ratio: 28/22;
    width: 22px;
    background: var(--background);
    clip-path: polygon(50% 0 , 100% 100%, 0 100%);
    position: absolute;
    z-index: -1;
    top: 0;
    left: 50%;
    transform: translate(-50%, -80%);
  }
  .b-header .b-cld a {
    display: block;
    white-space: nowrap;
  }
  .b-header .b-grp:not(.active) .b-cld {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
  }
}

/* header contact */
.b-header .b-contact a .b-linkInner {
  padding: 1.1em 1.3em 1.1em 1.5em;
}
.b-header .b-contact a .inner::before {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 1.5em;
  background: url(../images/ic-mail.svg) center center / contain no-repeat;
  margin-right: .4em;
  margin-left: auto;
}
.b-header .b-contact a .inner::after{
  display: none;
}
.b-header .b-contact a .e-txt {
  margin-left: 0;
}
@media screen and (max-width: 1000px) {
  .b-header .b-contact {
    width: 260px;
    margin: 40px auto 0;
  }
  .b-header .b-contact a .inner::before {
    justify-content: center;
  }
}

/* MENU ----------------------------- */
#wrap:not(.onMobile) .b-menu {
  display: none;
}

.b-menu {
  width: 30px;
  font-family: var(--font-En2);
  font-weight: 500;
  font-size: 10px;
  letter-spacing: 0;
}
.b-menu .e-bar {
  aspect-ratio: 30/9;
  margin: 4px 0;
  margin-top: 3px;
  position: relative;
}
.b-menu .e-bar::before,
.b-menu .e-bar:after{
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background: #222;
  position: absolute;
  transition: .3s all;
}
.b-menu .e-bar::before {
  left: 0;
  top: 0;
}
.b-menu .e-bar::after {
  left: 0;
  top: 100%;
  transform: translateY(-100%);
}
/* active */
.b-header.active .b-menu .e-bar::before,
.b-header.active .b-menu .e-bar::after {
  left: 0;
  top: 50%;
}
.b-header.active .b-menu .e-bar::before {
  transform: translateY(-50%) rotate(15deg);
}
.b-header.active .b-menu .e-bar::after {
  transform: translateY(-50%) rotate(-15deg);
}


/*-------------------------------------------------*/
/* side
/*-------------------------------------------------*/
main .b-side {
  position: fixed;
  right: 0;
  bottom: 5vw;
  z-index: 1;
  transform: translateX(0);
}
main .b-side.b-link a::before,
main .b-side.b-link a .b-linkInner{
  border-radius: 200px 0 0 200px;
}
main .b-side.b-link a .b-linkInner {
  padding: .5em 1em .5em 1.2em;
}
main .b-side.b-link a .inner::before {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 1.5em;
  background: url(../images/ic-mail.svg) center center / contain no-repeat;
  margin: 0;
}
main .b-side.b-link a .inner::after{
  display: none;
}
main .b-side.b-link a .e-txt {
  display: none;
}
@media screen and (max-width: 1000px) {
  main .b-side.b-link {
    margin: 40px auto 0;
  }
  main .b-side.b-link a .inner::before {
    justify-content: center;
  }
}
@media screen and (min-width: 1001px) {
  main .b-side {
    display: none;
  }
}

/*-------------------------------------------------*/

/* footer

/*-------------------------------------------------*/
.b-footer {
  background: #222;
  color: #fff;
}
.b-footer .container {
  max-width: 1500px;
}
@media screen and (max-width: 767px) {
  .b-footer {
    padding-top: 3em;
  }
}
@media screen and (min-width: 768px) {
  .b-footer {
    padding-top: 45px;
  }
  .b-footer .b-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
  }
  .b-footer .b-linkBox a {
    font-size: 12px;
    line-height: 1.5;
  }
}
@media screen and (min-width: 768px) and (max-width: 1130px) {
  .b-footer .b-content {
    flex-direction: column;
    align-items: center;
  }
  .b-footer .b-linkBox {
    width: 100%;
  }
}

/* siteName */
.b-footer .b-siteName {
  display: block;
  width: clamp(180px, 66.6666vw, 250px);
}
.b-footer .b-siteName a {
  display: block;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  .b-footer .b-siteName {
    margin: auto;
  }
}
@media screen and (min-width: 768px) {
  .b-footer .b-siteName {
    width: 250px;
    min-width: 250px;
    margin: 0;
    margin-bottom: 15px;
  }
}

/* serviceLink */
.b-footer .b-serviceContent {
  text-align: left;
}
.b-footer .b-serviceLink {
  padding-top: 11px;
}
.b-footer .e-serviceLinkTtl {
  display: flex;
  align-items: center;
  font-size: 13px;
  line-height: 1;
}
.b-footer .e-serviceLinkTtl::before,
.b-footer .e-serviceLinkTtl::after {
  content: "";
  display: block;
}
.b-footer .e-serviceLinkTtl::before {
  aspect-ratio: 1/1;
  width: 12px;
  margin-right: 5px;
  background: url(../images/logo-mark-w.png) center center / contain no-repeat;
  transform: translateY(-1px);
}
.b-footer .e-serviceLinkTtl::after {
  flex-grow: 1;
  height: 1px;
  background: #aaa;
  margin-left: .9em;
}
.b-footer .b-serviceLinkInner {
  display: flex;
  padding: 1em 0 1.5em;
}
.b-footer .b-serviceLink .b-serviceContent+.b-serviceContent {
  margin-left: clamp(30px,3.4vw,60px);
}
.b-footer .b-serviceLink li {
  display: block;
  margin-top: .3em;
}
.b-footer .b-serviceLink li a {
  display: block;
  padding-left: .85em;
  position: relative;
}
.b-footer .b-serviceLink li a::before {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 2px;
  border-radius: 50%;
  background: #fff;
  position: absolute;
  left: 0;
  top: .7em;
}
@media screen and (max-width: 767px) {
  .b-footer .b-serviceLink {
    display: none;
  }
}
@media screen and (min-width: 768px) {
  .b-footer .b-linkBox a:hover {
    text-decoration: underline;
  }
}
@media screen and (min-width: 768px) and (max-width: 1130px) {
  
  .b-footer .b-serviceLinkInner {
    justify-content: space-around;
  }
  .b-footer .b-serviceLink .b-serviceContent {
    margin: 0;
  }
}

/* otherLinks */
.b-footer .b-otherLinks {
  display: flex;
  flex-wrap: wrap;
  border-top: 1px solid #aaa;
  border-bottom: 1px solid #aaa;
  margin-top: 1.5em;
}
@media screen and (max-width: 600px) {
  .b-footer .b-otherLinks {
    padding: 1.5em 0;
  }
  .b-footer .b-otherLinks li {
    width: 50%;
    text-align: center;
  }
}
@media screen and (min-width: 601px) {
  .b-footer .b-otherLinks {
    padding: 1.5em 0;
  }
  .b-footer .b-otherLinks li+li {
    margin-left: 2em;
  }
}
@media screen and (min-width: 601px) and (max-width: 1130px) {
  .b-footer .b-otherLinks {
    justify-content: center;
  }
}
/* copyright */
.b-footer .e-copyright {
  display: block;
  text-align: center;
  font-size: 10px;
  line-height: 1;
  padding: 2em 1em;
}
@media screen and (min-width: 768px) {
  .b-footer .e-copyright {
    margin-top: 50px;
  }
}

/*-------------------------------------------------*/

/* common parts

/*-------------------------------------------------*/

/* b-link
/*----------------------*/
main a {
  color: var(--linkColor);
  text-decoration: underline;
  transition: .2s all;
}
@media screen and (min-width: 768px) {
  main a:hover {
    color: var(--linkColorHover);
    text-decoration: none;
  }
}
.b-link {
  text-align: center;
}
.b-link a {
  display: inline-block;
  max-width: 800px;
  margin: auto;
  color: #fff;
  text-decoration: none;
  position: relative;
  line-height: 1.5;
  z-index: 1;
}
.b-link a::before,
.b-link a .b-linkInner {
  display: block;
  border-radius: 200px;
  transition: .3s all;
}
.b-link a .b-linkInner {
  background: var(--linkColor);
  padding: 1em 2em;
  padding-right: .8em;
}
.b-link a.m-blue .b-linkInner {
  background: var(--blue);
}
.b-link a::before {
  content: "";
  width: 100%;
  height: 100%;
  background: #C7C7C7;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: translateY(3px);
}
.b-link .b-linkInner > .inner {
  display: flex;
  align-items: center;
  text-align: center;
}
.b-link a .e-txt {
  margin: auto;
  font-weight: 700;
}
@media screen and (max-width: 767px) {
  .b-contentBox .b-link {
    margin-top: 40px;
  }
  .b-contentBox .b-link a {
    min-width: 250px;
  }
}
@media screen and (min-width: 768px) {
  .b-contentBox .b-link {
    margin-top: 60px;
  }
  .b-contentBox .b-link a {
    min-width: 450px;
  }
}
/* arw */
.b-link .b-linkInner > .inner::after {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  width: 1.1em;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid;
  margin: 0 0 0 1em;
  background: url(../images/ic-arw.png) center center / contain;
}
@media screen and (max-width: 767px) {
  .b-link a {
    font-size: clamp(15px, 3.846vw, 17px);
  }
}
@media screen and (min-width: 768px) {
  .b-link a {
    font-size: 17px;
  }
  .b-link a:hover .b-linkInner {
    background: var(--linkColorHover);
    color: #fff;
    transform: translateY(3px);
  }
  .b-link a.m-blue:hover .b-linkInner {
    background: #3DC3FF;
  }
}
/* large */
.b-link a.m-large {
  width: 100%;
}
.b-link a.m-large + a.m-large {
  margin-top: 25px;
}
.b-link a.m-large .b-linkInner {
  padding-top: .7em;
  padding-bottom: .7em;
}
.b-link a.m-large .e-subTxt {
  display: block;
}
.b-link a.m-large .e-subTxt:not(.m-mail) {
  border-bottom: 2px solid rgb(255 255 255 / .8);
  margin-bottom: .18em;
}
@media screen and (max-width: 767px) {
  .b-link a.m-large {
    font-size: clamp(17px, 5.1282vw, 20px);
  }
  .b-link a.m-large .e-subTxt{
    font-size: clamp(15px, 3.846vw, 17px);
  }
}
@media screen and (min-width: 768px) {
  .b-link a.m-large {
    font-size: 35px;
  }
  .b-link a.m-large::before {
    transform: translateY(8px);
  }
  .b-link a.m-large:hover .b-linkInner {
    transform: translateY(8px);
  }
  .b-link a.m-large .e-subTxt {
    font-size: 20px;
  }
}
/* subTxt - mail */
.b-link .e-subTxt.m-mail::before {
  content: "";
  display: inline-block;
  aspect-ratio: 1/1;
  width: 1.2em;
  margin-right: .3em;
  background: url(../images/ic-mail.svg) center center / contain no-repeat;
  transform: translateY(.25em);
}

/* b-keyWord
/*----------------------*/
.b-keyWord,
.b-keyWord .e-txt {
  display: inline-block;
}
.b-keyWord {
  padding: 0 1.2em;
}
.b-keyWord .e-txt {
  line-height: 1;
  background: var(--green);
  color: #fff;
  padding: .25em .4em;
  position: relative;
}
.b-keyWord .e-txt::before,
.b-keyWord .e-txt::after {
  content: "";
  display: block;
  aspect-ratio:  1/1;
  width: 20px;
  background: url(../images/ic-brackets.svg) center center / contain no-repeat;
  position: absolute;
  transform-origin: center center;
}
.b-keyWord .e-txt::before {
  left: 0;
  top: 0;
  transform: translate(-125%,-30%);
}
.b-keyWord .e-txt::after {
  right: 0;
  bottom: 0;
  transform: translate(125%,30%) rotate(180deg);
}
@media screen and (min-width: 768px) {
  .b-keyWord {
    padding: 0 35px;
  }
}

/* marker
/*----------------------*/
.e-marker {
  padding: 0 .3em;
  background: linear-gradient(transparent 40%, rgb(240 206 16 / .4) 0%);
  display: inline;
  padding: 0 1px .25em;
}

/* whiteBox
/*----------------------*/
.b-whiteBox {
  background: #fff;
  border-radius: var(--r);
}
.b-whiteBox.m-shadow {
  filter: var(--shadow);
}
@media screen and (max-width: 767px) {
  .b-whiteBox {
    padding: clamp(20px, 6.4103vw, 25px) clamp(20px, 6.4103vw, 25px) clamp(30px, 10.256vw, 40px);
  }
}
@media screen and (min-width: 768px) and (max-width: 1150px) {
  .b-whiteBox {
    padding: 4.5vw 4vw 8vw;
  }
}
@media screen and (min-width: 1151px) {
  .b-whiteBox {
    padding: 65px 60px 80px;
  }
}

/* caution
/*----------------------*/
.b-cautions {
  display: inline-block;
  line-height: 1.5;
  text-align: left;
}
.e-cautionMark {
  display: inline-block;
  font-size: .65em;
  transform: translateY(-.55em);
  text-indent: 0;
}
.b-caution {
  display: inline-block;
  line-height: 1.5;
  padding-left: 1em;
}
.b-caution .e-mark {
  margin-left:-1em;
}
@media screen and (max-width: 767px) {
  .b-caution {
    font-size: clamp(10px, 2.8205vw, 12px);
  }
}
@media screen and (min-width: 768px) {
  .b-caution {
    font-size: 12px;
  }
}
.b-caution.m-noMark {
  padding-left: 0;
}

/* smallTxt
/*----------------------*/
.m-smallTxt {
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .m-smallTxt {
    font-size: clamp(10px, 2.8205vw, 12px);
  }
}
@media screen and (min-width: 768px) {
  .m-smallTxt {
    font-size: 12px;
  }
}

/* lists
/*----------------------*/

.b-lists li {
  display: block;
  line-height: 1.5;
  margin-bottom: .5em;
  text-indent: 1em;
  padding-left: 1em;
}
.b-lists li::before{
  content: "";
  display: inline-block;
  aspect-ratio: 1/1;
  width: 3px;
  border-radius: 50%;
  background: #222;
  margin-left: -1.2em;
  transform: translate( -.5em, -.3em)
}

/* checklist
/*----------------------*/
.b-checkList li {
  display: block;
  line-height: 1.5;
  padding-left: 1.75em;
  position: relative;
  margin-top: .45em;
  text-align: left;
}
.b-checkList li::before {
  content: "";
  display: inline-block;
  aspect-ratio: 1 / 1;
  width: 1.25em;
  background: url(../images/ic-check.svg) center center / contain no-repeat;
  position: absolute;
  left: 0;
  top: .08em;
}

main .m-background {
  background: var(--background);
}

/* mainBox
----------------------*/
.b-mainBox {
  position: relative;
}
.b-mainBox .b-pgTtl {
  text-align: center;
  font-weight: 700;
  line-height: 1.5em;
  letter-spacing: .1em;
}
.b-mainBox .b-pgTtl::before {
  content: attr(data-en);
  display: block;
  font-family: var(--font-En2);
  font-weight: 700;
  letter-spacing: .05em;
  color: var(--green);
  opacity: .1;
  transform: translateY(.25em);
}
.b-mainBox .b-pgTtl .e-txt,
.b-mainBox .b-pgTtl .e-sub {
  display: inline-flex;
  align-items: center;
}
.b-mainBox .b-pgTtl .b-sub {
  text-align: center;
}
.b-mainBox .b-pgTtl .e-sub {
  background: var(--green);
  color: #fff;
  font-weight: 700;
  line-height: 1;
  border-radius: 500px;
  letter-spacing: .05em;
  padding: .5em 1.5em;
}
.b-mainBox::after {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  background: url(../images/logo-mark.svg) center center / contain no-repeat;
  position: absolute;
  left: 50%;
  bottom: 0;
  transform: translateX(-50%);
}
.b-mainBox.m-noMark {
  padding-bottom: 0;
}
.b-mainBox.m-noMark::after {
  display: none;
}
@media screen and (max-width: 767px) {
  .b-mainBox {
    padding: 25px 0 40px;
    margin-bottom: 35px;
  }
  .b-mainBox.m-noMark {
    margin-bottom: 45px;
  }
  .b-mainBox .b-pgTtl {
    font-size: clamp(20px, 6.41vw, 25px);
  }
  .b-mainBox .b-pgTtl::before {
    font-size: clamp(45px, 15.3846vw, 60px);
  }
  .b-mainBox .b-pgTtl .e-sub {
    font-size: clamp(11px, 3.4667vw, 13px);
  }
  .b-mainBox::after {
    width: clamp(20px, 2.897vw, 23px);
  }
}
@media screen and (min-width: 768px) {
  .b-mainBox {
    padding: 70px 0 60px;
    margin-bottom: 55px;
  }
  .b-mainBox.m-noMark {
    margin-bottom: 80px;
  }
  .b-mainBox .b-pgTtl {
    font-size: 35px;
  }
  .b-mainBox .b-pgTtl::before {
    font-size: 90px;
  }
  .b-mainBox .b-pgTtl .b-sub {
    margin-top: -.3em;
  }
  .b-mainBox .b-pgTtl .e-sub {
    font-size: 15px;
  }
  .b-mainBox::after {
    width: 25px;
  }
}

/* pankuzu
/*----------------------*/
.b-pankuzu {
  font-size: 12px;
  letter-spacing: .05em;
  position: absolute;
  left: 3em;
  top: 1.2em;
}
.b-pankuzu li a {
  text-decoration: underline;
  color: var(--linkColor);
}

.b-pankuzu li span::before,
.b-pankuzu li a::before {
  content: "";
  display: inline-block;
  aspect-ratio: 1 / 1;
  width: .9em;
  border-top: 1px solid;
  border-right: 1px solid;
  transform: translate(-.5em,.1em) scaleY(.4) rotate(45deg);
  opacity: .7;
}
.b-pankuzu li:first-child a::before {
  display: none;
}
@media screen and (max-width: 767px) {
  .b-pankuzu {
    display: none;
  }
}

/* mainLead
----------------------*/
.b-leadTtl {
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  letter-spacing: .1em;
  margin-bottom: 1em;
}
.b-mainLead .b-txt p+p {
  margin-top: 1em;
}
@media screen and (max-width: 767px) {
  .b-mainLead {
    padding-bottom: 40px;
  }
  .b-leadTtl {
    font-size: clamp(18px, 5.128vw, 20px);
  }
  .b-mainLead .b-txt {
    font-size: clamp(12px,3.5897vw,14px);
  }
}
@media screen and (min-width: 768px) {
  .b-mainLead {
    padding-bottom: 70px;
  }
  .b-leadTtl {
    font-size: 25px;
  }
  .b-mainLead .b-txt {
    text-align: center;
    font-size: 16px;
    line-height: 2.5;
  }
  .b-mainLead .b-checkList {
    display: inline-block;
  }
}

/* contentBox
/*----------------------*/
@media screen and (max-width: 767px) {
  .b-contentBox {
    padding-bottom: 60px;
  }
  .b-contentBox .b-section {
    padding: 40px 0 60px;
  }
  .b-contentBox p+p {
    margin-top: 1.3em;
  }
}
@media screen and (min-width: 768px) {
  .b-contentBox {
    padding-bottom: 120px;
  }
  .b-contentBox .b-section {
    padding: 100px 0;
  }
  .b-contentBox p+p {
    margin-top: 1.8em;
  }
}
.b-contentBox .b-section:last-of-type {
  padding-bottom: 0;
}

/* ttlBox
/*----------------------*/
.b-ttlBox {
  padding-top: 40px;
 margin-bottom: 50px;
  text-align: center;
  font-weight: 700;
  line-height: 1.5;
  color: var(--green);
  position: relative;
}
.b-ttlBox::before {
  content: "";
  display: block;
  aspect-ratio: 1/1;
  background: url(../images/logo-mark.svg) center center / contain no-repeat;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translateX(-50%);
}
.b-ttlBox .e-ttl::after {
  content: attr(data-en);
  display: block;
  font-family: var(--font-En);
  font-weight: 500;
  color: #222;
  opacity: .8;
  transform: translateY(.25em);
}
.b-ttlBox.m-white {
  color: #fff;
}
.b-ttlBox.m-white::before {
   background-image: url(../images/logo-mark-w.svg);
}
.b-ttlBox.m-white .e-ttl::after {
  color: #fff;
}
@media screen and (max-width: 767px) {
  .b-ttlBox .e-ttl {
    font-size: clamp(20px, 6.41vw, 25px);
  }
  .b-ttlBox::before {
     width: clamp(20px, 2.897vw, 23px);
  }
  .b-ttlBox .e-ttl::after {
    font-size: clamp(14px, 4.1026vw, 16px);
  }
}
@media screen and (min-width: 768px) {
  .b-ttlBox .e-ttl {
    font-size: 35px;
  }
  .b-ttlBox::before {
    width: 25px;
  }
  .b-ttlBox .e-ttl::after {
    font-size: 18px;
  }
}
/* row */
.b-ttlBox.m-row {
  display: inline-block;
  text-align: center;
  padding-top: 0;
}
.b-ttlBox.m-row::before {
  left: 0;
  transform: translateX(0);
}
@media screen and (max-width: 767px) {
  .b-ttlBox.m-row {
    padding-left: 30px;
    margin-left: 50%;
    transform: translateX(-50%);
  }
  .b-ttlBox.m-row::before {
    top: 5px;
  }
  .b-ttlBox.m-row .e-ttl {
    font-size: clamp(19px, 5.641vw, 22px);
  }
  .b-ttlBox.m-row .e-ttl::after {
    transform: translateX(-15px);
  }
}
@media screen and (min-width: 768px) {
  .b-ttlBox.m-row {
    padding-left: 40px;
  }
  .b-ttlBox.m-row::before {
    top: 5px;
  }
  .b-ttlBox.m-row .e-ttl {
    font-size: 25px;
  }
  .b-ttlBox.m-row .e-ttl::after {
    transform: translateX(-20px);
  }
}

/* tableBox
/*----------------------*/
table {
  width: 100%;
  background: #fff;
  filter: drop-shadow(0 -1px 0 #ccc);
  letter-spacing: .05em;
}
table tr {
  border-top: 3px solid #fff;
}
table tr:first-of-type {
  border-top: 2px solid #fff;
}
table tr:last-of-type {
  filter: drop-shadow(0 1px 0 #ccc);
}
table th,
table td {
  padding: .7em 1.3em;
  line-height: 1.5;
  filter: drop-shadow(0 1px 0 #ccc);
  vertical-align: top;
}
table tr:last-of-type th,
table tr:last-of-type td {
  filter: drop-shadow(0 2px 0 #fff);
}
table th {
  background: #eee;
  text-align: left;
}
table td {
  background: #fff;
  text-align: justify;
}
@media screen and (max-width: 767px) {
  table th,
  table td {
    display: block;
  }
  table td {
    padding: .7em 0 1.3em;
  }
}

/* sp / pc
/*----------------------*/

@media screen and (max-width: 767px) {
  .pc { display: none;}
}
@media screen and (min-width: 768px) {
  .sp { display: none;}
}
