@charset "UTF-8";
/* ==============================
  Base Settings
============================== */
@media screen and (min-width: 751px), print {
  html {
    font-size: 0.625em;
  }
}
@media screen and (max-width: 750px) {
  html {
    font-size: 1.8vw;
  }
}

body {
  font-family: sans-serif;
  color: #111;
  transition: opacity 0.5s;
}
body.stoped {
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  body {
    padding-top: 52px;
  }
}

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

@media screen and (min-width: 751px), print {
  a img {
    transition: opacity 0.3s;
  }
  a:hover img {
    opacity: 0.8;
  }
}

/* ==============================
  Style Components
============================== */
/* Block
------------------------------ */
*[class*=blk-] {
  margin: auto;
}

.blk-all {
  width: 100%;
}
.blk-l {
  width: min(90%, 1200px);
}
.blk-ls {
  width: min(90%, 1100px);
}
.blk-m {
  width: min(90%, 1056px);
}

/* Display
------------------------------ */
@media screen and (min-width: 751px), print {
  .forsp {
    display: none !important;
  }
  br.fortb {
    display: none;
  }
}
@media screen and (max-width: 1189px) {
  br.fortb {
    display: inline;
  }
}
@media screen and (max-width: 750px) {
  .forpc {
    display: none !important;
  }
}
/* ==============================
  Page Layout
============================== */
/* Header
------------------------------ */
.header {
  display: flex;
}
@media screen and (min-width: 751px), print {
  .header {
    height: 110px;
  }
}
@media screen and (max-width: 750px) {
  .header {
    position: fixed;
    z-index: 10;
    top: 0;
    left: 0;
    width: 100vw;
    height: 52px;
    align-items: center;
    background-color: #fff;
  }
}
@media screen and (min-width: 751px), print {
  .header .logo {
    width: 250px;
    margin: 0 2vw 0 40px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: 0.3s;
  }
  .header .logo a {
    display: block;
    width: 100%;
  }
  .header .logo a img {
    max-height: 50px;
  }
}
@media screen and (min-width: 751px) and (max-width: 999px) {
  .header .logo {
    width: 20%;
    margin: 0 2vw;
  }
  .header .logo a img {
    margin-bottom: 1em;
  }
}
@media screen and (max-width: 750px) {
  .header .logo {
    width: 125px;
    height: 25px;
    margin-left: 15px;
  }
  .header .logo a img {
    height: 25px;
  }
}
@media screen and (min-width: 751px), print {
  .header .nav {
    flex: 1;
    max-width: 1120px;
    margin-left: auto;
    display: flex;
    justify-content: space-between;
    align-items: stretch;
  }
  .header .nav li {
    flex: 1;
    margin-right: min(0.6em, 0.5vw);
  }
  .header .nav li a {
    position: relative;
    height: max(5em, 80px);
    border-radius: 0 0 0.2em 0.2em;
    background-color: #ccc;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    line-height: 1.4;
    text-align: center;
    font-size: min(1.6em, 1.3vw);
    font-weight: 700;
    color: #fff;
    transition: opacity 0.3s ease-in-out;
  }
  .header .nav li a.blue {
    background-color: #0062b1;
  }
  .header .nav li a.pink {
    background-color: #DC6987;
  }
  .header .nav li a.orange {
    background-color: #CA5E37;
  }
  .header .nav li a.red {
    background-color: #f00;
  }
  .header .nav li a.purple {
    background-color: #6355A5;
  }
  .header .nav li a.lblue {
    background-color: #5FCDC8;
  }
  .header .nav li a.ygreen {
    background-color: #6BBC6E;
  }
  .header .nav li a::after {
    content: "";
    position: absolute;
    display: block;
    bottom: 0.25em;
    right: 0.25em;
    width: 0.4em;
    height: 0.4em;
    background-color: #fff;
    -webkit-clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
            clip-path: polygon(100% 0%, 100% 100%, 0% 100%);
  }
  .header .nav li a:hover {
    opacity: 0.8;
  }
  .header .nav li a[href="/dflyer/"] > div {
    font-size: 0.9em;
  }
  .header .nav li a[href="/dflyer/"] > div > div {
    margin-bottom: 0.25em;
    border-bottom: solid 1px currentColor;
  }
  .header .nav li a span {
    font-size: 0.7em;
  }
}
@media screen and (max-width: 750px) {
  .header .nav {
    display: none;
  }
}

/* Banner
------------------------------ */
.banner {
  background-color: #0062b1;
  text-align: center;
}
@media screen and (min-width: 751px), print {
  .banner ul {
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding: 3em 0;
  }
}
@media screen and (max-width: 750px) {
  .banner ul {
    padding: 7vw 0 7vw;
  }
}
@media screen and (min-width: 751px), print {
  .banner ul li {
    width: min(390px, 33% - 2em);
    margin: 0 1em;
  }
}
@media screen and (max-width: 750px) {
  .banner ul li {
    width: min(78%, 390px);
    margin: 0 auto 5vw;
  }
  .banner ul li:last-child {
    margin-bottom: 0;
  }
}
.banner ul li > span {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.75em;
  color: #fff;
}
@media screen and (min-width: 751px), print {
  .banner ul li > span {
    font-size: min(2em, 1.6vw);
  }
}
@media screen and (max-width: 750px) {
  .banner ul li > span {
    font-size: min(2.4rem, 24px);
  }
}
.banner ul li > span::before, .banner ul li > span::after {
  content: "";
  display: block;
  width: 0;
  height: 1em;
  border-left: solid 1px currentColor;
}
.banner ul li > span::before {
  margin-right: 0.75em;
  transform: skewX(35deg);
}
.banner ul li > span::after {
  margin-left: 0.75em;
  transform: skewX(-35deg);
}
.banner ul li > span .kakko {
  margin: 0.1em -0.3em 0 -0.5em;
  font-size: 0.9em;
}

/* Footer
------------------------------ */
.footer {
  text-align: center;
}
@media screen and (min-width: 751px), print {
  .footer_inner {
    padding: 45px 0 20px;
  }
}
@media screen and (max-width: 750px) {
  .footer_inner {
    padding: 10vw 0 5vw;
    font-size: 1.2em;
  }
}
.footer_logo {
  width: min(68%, 375px);
}
@media screen and (min-width: 751px), print {
  .footer_logo {
    margin-bottom: 25px;
  }
}
@media screen and (max-width: 750px) {
  .footer_logo {
    margin-bottom: 3vw;
  }
}
@media screen and (min-width: 751px), print {
  .footer address {
    margin-bottom: 45px;
  }
}
@media screen and (max-width: 750px) {
  .footer address {
    margin-bottom: 5vw;
  }
}
.footer_sns {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
@media screen and (min-width: 751px), print {
  .footer_sns {
    margin-bottom: 100px;
  }
  .footer_sns li {
    width: min(45%, 350px);
    margin: 0 1em;
  }
}
@media screen and (max-width: 750px) {
  .footer_sns {
    width: min(80%, 500px);
    margin: 10vw auto;
  }
  .footer_sns li {
    width: 100%;
  }
  .footer_sns li:not(:first-child) {
    margin-top: min(5vw, 2em);
  }
}
.footer_nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: 0 5%;
  font-size: 0.9em;
}
.footer_nav li {
  margin: 0.5em 0 0.5em -1px;
  border-left: solid 1px #0062b1;
  border-right: solid 1px #0062b1;
}
@media screen and (min-width: 751px), print {
  .footer_nav li {
    padding: 0 1em;
    font-size: 1.5em;
  }
}
@media screen and (max-width: 750px) {
  .footer_nav li {
    padding: 0 0.75em;
    font-size: 1.4em;
  }
}
.footer_nav li a {
  color: #0062b1;
}
@media screen and (min-width: 751px), print {
  .footer_nav li a:hover {
    text-decoration: underline;
  }
}
.footer_nav li a span {
  font-size: 0.8em;
}
.footer address {
  font-size: 1.6em;
}
.footer .copyright {
  padding: 15px 0 120px;
  background-color: #0062b1;
  text-align: center;
}
.pg-recruit .footer .copyright {
  padding-bottom: 20px;
}
@media screen and (max-width: 750px) {
  .footer .copyright {
    padding: 2em 0 12em;
  }
  .pg-recruit .footer .copyright {
    padding-bottom: 2em;
  }
}
.footer .copyright small {
  font-size: 1.4rem;
  color: #fff;
}
@media screen and (min-width: 751px), print {
  .footer .pagetop {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .footer .pagetop {
    width: 16%;
    margin: 0 auto 5vw;
  }
}
@media screen and (min-width: 751px), print {
  .footer .pagetop.visible {
    bottom: 170px;
  }
}
.footer_signup {
  position: fixed;
  z-index: 10;
  bottom: -100px;
  left: 0;
  width: 100%;
  transition: 0.5s;
}
.footer_signup.visible {
  bottom: 0;
}
@media screen and (max-width: 750px) {
  .with-fancybox .footer_signup {
    z-index: 2000;
  }
}
@media screen and (max-width: 750px) {
  .with-fancybox .pg-soudan .footer_signup, .with-fancybox .pg-dfryer .footer_signup {
    z-index: 1000;
  }
}
.pg-recruit .footer_signup {
  display: none;
}

/* SignupButton
------------------------------ */
.signupBtn {
  padding: 2em 5%;
  background-color: #0062b1;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  text-align: center;
}
.signupBtn a {
  display: inline-block;
  padding: 1.5em 2.5em;
  border-radius: 5em;
  background-color: #fff;
  line-height: 1;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .signupBtn a {
    width: 100%;
  }
}
.signupBtn a span {
  display: inline-block;
  vertical-align: middle;
  margin-right: 1em;
  padding: 0.5em 0.5em 0.5em 0.75em;
  border-radius: 0.4em;
  background-color: #0062b1;
  font-size: 1.4em;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .signupBtn a span {
    font-size: 1.2em;
  }
}
.signupBtn a em {
  display: inline-block;
  vertical-align: middle;
  font-size: 2.6em;
  font-style: normal;
  color: #101010;
}
@media screen and (max-width: 750px) {
  .signupBtn a em {
    font-size: 2.1em;
  }
}

/* Request
------------------------------ */
.request {
  width: 100%;
  background-color: #0062b1;
}
@media screen and (max-width: 750px) {
  .request {
    min-height: 273px;
  }
}
.request ul {
  display: flex;
  justify-content: center;
  margin: 0 1em;
  padding: 2.4em 0;
}
@media screen and (max-width: 750px) {
  .request ul {
    display: block;
    width: 90%;
    height: 72.8vw;
    margin: 0 auto;
    padding: 6% 0;
  }
}
.request ul li {
  width: min(33.3333333333% - 4em, 318px);
  margin: 0 2em;
  text-align: center;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .request ul li {
    width: 100%;
    margin: 0 0 5%;
  }
}
@media screen and (max-width: 750px) {
  .request ul li:last-child {
    margin-bottom: 0;
  }
}
.request ul li p {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0.75em;
  line-height: 1.4;
  font-size: min(1.4em, 1.2vw);
}
@media screen and (max-width: 750px) {
  .request ul li p {
    width: 100%;
    margin-bottom: 0.5em;
    font-size: 2em;
  }
}
.request ul li p::before {
  content: "";
  display: block;
  width: 2em;
  height: 2.4em;
  margin-right: 0.5em;
  background: url(/assets/images/common/request_p_mark_l.svg) center center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .request ul li p::before {
    width: 1.2em;
    height: 1.2em;
  }
}
.request ul li p::after {
  content: "";
  display: block;
  width: 2em;
  height: 2.4em;
  margin-left: 0.5em;
  background: url(/assets/images/common/request_p_mark_r.svg) center center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .request ul li p::after {
    width: 1.2em;
    height: 1.2em;
  }
}
.request ul li a {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em 2em 1em 0;
  border: solid 1px #fff;
  border-radius: 5em;
  background-color: #fff;
  box-shadow: 1px 2px 0 rgba(17, 17, 17, 0.3);
  font-size: min(1.4em, 1.2vw);
  font-weight: 700;
  color: #0062b1;
  transition: 0.3s;
}
@media screen and (min-width: 751px), print {
  .request ul li a:hover {
    background-color: #0062b1;
    color: #fff;
  }
}
@media screen and (max-width: 750px) {
  .request ul li a {
    width: 80%;
    margin: 0 auto;
    padding: 0.5em 1em 0.5em 0.5em;
    font-size: 1.6em;
  }
}
.request ul li a::after {
  content: "";
  position: absolute;
  display: block;
  top: calc(50% - 1em);
  right: 1em;
  width: 2em;
  height: 2em;
  border-radius: 50%;
  background: url(/assets/images/common/request_a_icon.svg) center center/contain no-repeat #fff;
  box-shadow: 0 0 3px #999;
}
.request ul li a em {
  margin-right: 0.1em;
  font-size: 1.6em;
  font-style: normal;
  letter-spacing: 0.05em;
}
.request ul li a span {
  margin-top: 0.2em;
}

/* JCSI 2024
------------------------------ */
.bnr_jcsi {
  padding-bottom: min(7%, 80px);
}

/* Official SNS
------------------------------ */
.officialsns {
  padding: min(7%, 80px) 0;
}
.officialsns_inner {
  position: relative;
}
.officialsns_inner ul {
  position: absolute;
  bottom: 18.6440677966%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: center;
}
.officialsns_inner ul li {
  width: 31.8181818182%;
  margin: 0 1%;
}
@media screen and (max-width: 750px) {
  .officialsns_inner figure img {
    width: 100%;
    aspect-ratio: 132/276;
  }
  .officialsns ul {
    bottom: 18.8405797101%;
    display: block;
  }
  .officialsns ul li {
    width: 76.6666666667vw;
    margin: 4vw auto 0;
    text-align: center;
  }
}

/* GlobalNav
------------------------------ */
.gnav {
  position: fixed;
  z-index: 20;
  top: -100vh;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow-y: auto;
  background-color: #fff;
  opacity: 0;
  transition: 0.5s ease-in-out;
}
.gnav.opened {
  top: 0;
  opacity: 1;
}
.gnavBase {
  width: min(90%, 1080px);
  margin: 0 auto;
  padding-bottom: 30%;
}
@media screen and (max-width: 750px) {
  .gnavBase {
    width: 100%;
  }
}
.gnavInner {
  padding: clamp(30px, 4vw, 50px) 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .gnavInner {
    display: block;
    padding: 0;
  }
}
.gnavText {
  width: 48%;
}
@media screen and (max-width: 750px) {
  .gnavText {
    width: 100%;
  }
}
.gnavText p {
  width: min(70%, 325px);
}
@media screen and (max-width: 750px) {
  .gnavText p {
    width: 90%;
    margin: 0 auto;
  }
}
@media screen and (max-width: 750px) {
  .gnavText p a {
    display: block;
    width: 40vw;
  }
}
.gnavText nav ul {
  margin-top: 5%;
}
@media screen and (max-width: 750px) {
  .gnavText nav ul {
    width: 84vw;
    margin: 5% auto;
  }
}
.gnavText nav ul li a {
  display: flex;
  align-items: center;
  border-bottom: solid 1px #0062b1;
  padding: 0.75em 0;
  font-size: min(2.2em, 2vw);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #0062b1;
}
@media screen and (min-width: 751px), print {
  .gnavText nav ul li a {
    transition: opacity 0.3s;
  }
  .gnavText nav ul li a:hover {
    opacity: 0.7;
  }
}
@media screen and (max-width: 750px) {
  .gnavText nav ul li a {
    padding-left: 0.25em;
    justify-content: space-between;
    font-size: 2.1em;
  }
}
.gnavText nav ul li a::before {
  content: "";
  display: block;
  width: 0.8em;
  height: 0.8em;
  margin-right: 0.5em;
  background: url(/assets/images/common/gnav_arrow.svg) center center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .gnavText nav ul li a::before {
    content: none;
  }
}
@media screen and (max-width: 750px) {
  .gnavText nav ul li a::after {
    content: "";
    display: block;
    width: 0.9em;
    height: 0.9em;
    margin: 0 0.25em 0 auto;
    background: url(/assets/images/common/gnav_arrow.svg) center center/contain no-repeat;
  }
}
.gnavText nav ul li a span {
  margin-right: 0.5em;
  font-size: 0.8em;
}
@media screen and (max-width: 750px) {
  .gnavText nav ul li a span {
    margin-right: 0.5em;
  }
}
.gnavText nav ul li a span.kakko {
  margin-right: 0;
  margin-left: -0.5em;
}
@media screen and (max-width: 750px) {
  .gnavText .gnavOfficialsns_sp {
    margin: 7vw 0;
  }
  .gnavText .gnavOfficialsns_sp p {
    margin-bottom: 1em;
    text-align: center;
    font-size: 4vw;
    font-weight: 700;
  }
  .gnavText .gnavOfficialsns_sp ul {
    display: flex;
    justify-content: center;
  }
  .gnavText .gnavOfficialsns_sp ul li {
    width: 7em;
    margin: 0 2em;
    text-align: center;
  }
}
@media screen and (max-width: 750px) {
  .gnavLogo {
    display: flex;
    align-items: center;
    width: 100% !important;
    height: 52px;
    margin: 0;
    padding-left: 15px;
  }
  .gnavLogo img {
    height: 25px;
  }
}
.gnavImg {
  width: 45%;
}
.gnavImg p {
  position: relative;
  line-height: 1.4;
  font-size: min(3em, 2vw);
  font-weight: 700;
  color: #0062b1;
}
.gnavImg p span {
  position: absolute;
  right: 5%;
  bottom: -4.5em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 3.6em;
  height: 3.6em;
  border-radius: 50%;
  background-color: #0062b1;
  line-height: 1.2;
  font-size: 0.8em;
  font-weight: 700;
  color: #fff;
}
.gnavImg div img {
  display: block;
  width: 80%;
  margin: 5% auto 0 5%;
}
.gnavImg .gnavOfficialsns {
  margin-top: 30px;
  display: flex;
}
.gnavImg .gnavOfficialsns li {
  width: min(48%, 225px);
}
.gnavImg .gnavOfficialsns li:first-child {
  margin-right: 2%;
}
.gnav .banner {
  position: fixed;
  bottom: -100vh;
  margin: 0;
  width: 100%;
  transition: 0.5s ease-out;
  transition-delay: 0.5s;
}
.gnav.opened .banner {
  bottom: 0;
}
.gnavOpen {
  position: fixed;
  z-index: 10;
  bottom: -100px;
  right: calc(2% + 5px);
  width: 60px;
  border: solid 1px #fff;
  border-radius: 50%;
  cursor: pointer;
  transition: 0.5s ease-in-out;
}
.gnavOpen.visible {
  bottom: 120px;
}
.gnavOpen:hover {
  opacity: 0.8;
}
.gnavClose {
  position: absolute;
  top: 3vw;
  right: 3vw;
  width: min(5vw, 60px);
  cursor: pointer;
  transition: opacity 0.3s;
}
.gnavClose:hover {
  opacity: 0.8;
}
@media screen and (max-width: 750px) {
  .gnavSwitch {
    position: fixed;
    z-index: 30;
    top: 0;
    right: 0;
    width: 60px;
    height: 52px;
    border-radius: 0 0 0 1em;
    background-color: #fff;
    box-shadow: 0 0 7px #999;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
  }
  .gnavSwitch span {
    position: relative;
    display: block;
    width: 20px;
    height: 2px;
    margin-top: 8px;
    line-height: 0;
    background-color: #0062b1;
  }
  .gnavSwitch span::before {
    content: "";
    position: absolute;
    top: -6px;
    width: 20px;
    height: 2px;
    background-color: #0062b1;
    transition: 0.3s;
  }
  .gnavSwitch span::after {
    content: "";
    position: absolute;
    bottom: -6px;
    width: 20px;
    height: 2px;
    background-color: #0062b1;
    transition: 0.3s;
  }
  .gnavSwitch em {
    margin-top: 1.25em;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
    color: #0062b1;
  }
  .gnavSwitch.opened span {
    background-color: #fff;
  }
  .gnavSwitch.opened span::before {
    top: 0;
    transform: rotate(135deg);
  }
  .gnavSwitch.opened span::after {
    top: 0;
    transform: rotate(-135deg);
  }
}

/* Headline
------------------------------ */
@media screen and (max-width: 500px) {
  .headline {
    height: 95vw;
    overflow: hidden;
  }
}
.headline .hidden {
  display: none;
}
.headline .slideItem img {
  width: 100%;
  aspect-ratio: 5/2;
}
@media screen and (max-width: 500px) {
  .headline .slideItem img {
    aspect-ratio: 65/59;
  }
}
.headline .slide-control {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
  margin: 2em 0;
}
.headline .slide-arrows {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 10px;
}
.headline .slick-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0 15px;
}
.headline .slick-dots li button {
  width: 8px;
  height: 8px;
  line-height: 0;
  font-size: 0;
  border-radius: 50%;
  background-color: #CAD5E0;
}
.headline .slick-dots li.slick-active button {
  background-color: #0E65E9;
}
.headline .slick-arrow {
  width: 24px;
  height: 24px;
  background: url(/assets/images/common/slide-arrow.svg) center center/contain no-repeat;
  transition: opacity 0.3s;
}
.headline .slick-arrow:hover {
  opacity: 0.7;
}
.headline .slick-next {
  transform: scaleX(-1);
}
.headline .slick-pause {
  width: 24px;
  height: 24px;
  background: url(/assets/images/common/slide-pause.svg) center center/contain no-repeat;
  transition: opacity 0.3s;
}
.headline .slick-pause.paused {
  background-image: url(/assets/images/common/slide-play.svg);
}
.headline .slick-pause:hover {
  opacity: 0.7;
}

/* Notes
------------------------------ */
.notes-img p {
  font-size: 1.3em;
}

/* ==============================
  無料相談会
============================== */
.pg-soudan .maintenance {
  background-color: #edf8ed;
}
.pg-soudan main {
  padding-top: 1px;
  background-color: #edf8ed;
}
@media screen and (min-width: 751px), print {
  .pg-soudan main {
    position: relative;
    margin: 0 auto;
  }
}
@media screen and (min-width: 751px), print {
  .pg-soudan main .main_bg {
    position: relative;
  }
  .pg-soudan main .main_bg::before {
    content: "";
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 81px;
    background-color: #64b432;
  }
  .pg-soudan main .main_bg::after {
    content: "";
    position: absolute;
    display: block;
    bottom: 81px;
    left: 0;
    width: 100%;
    height: 22px;
    background-color: #a2cf86;
  }
  .pg-soudan main .main_bg_inner {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 170px;
    margin: 0 auto;
    background: url(../images/soudankai/main_bg__pc.svg) center bottom/auto 100% no-repeat;
  }
}
@media screen and (max-width: 750px) {
  .pg-soudan main .main_bg {
    margin-top: 5vw;
  }
}
.pg-soudan .copy {
  padding: 20px 0;
  background-color: #66b633;
}
.pg-soudan .copy_inner {
  width: min(100%, 1024px);
  margin: 0 auto;
}
.pg-soudan .copy p {
  margin-top: 10px;
  line-height: 1.6;
  text-align: center;
  font-size: 2.4rem;
  color: #fff;
}
.pg-soudan .notice {
  padding: 40px 0 30px;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .pg-soudan .notice {
    padding: 5vw 0;
  }
}
.pg-soudan .notice h2 {
  line-height: 1.4;
  font-size: 2.6rem;
  font-weight: 700;
  color: #f00;
}
@media screen and (max-width: 750px) {
  .pg-soudan .notice h2 {
    line-height: 1.4;
    font-size: 3rem;
  }
}
.pg-soudan .notice p {
  margin-top: 15px;
  font-size: 1.6rem;
}
@media screen and (max-width: 750px) {
  .pg-soudan .notice p {
    margin-top: 1em;
  }
}
.pg-soudan .vegecheck {
  position: relative;
}
@media screen and (max-width: 750px) {
  .pg-soudan .vegecheck {
    margin-top: 3vw;
  }
}
.pg-soudan .vegecheck::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 28px;
  box-shadow: 1px 1px 10px rgba(35, 24, 21, 0.3);
}
.pg-soudan .vegecheck > * {
  position: relative;
}
.pg-soudan .vegecheck .vegecheck_mark {
  position: absolute;
  top: -2vw;
  right: -2vw;
  width: min(10vw, 152px);
  height: min(10vw, 152px);
  border: solid min(0.4vw, 3px) #009646;
  border-radius: 50%;
  background-color: #fff;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
  overflow: hidden;
}
@media screen and (max-width: 750px) {
  .pg-soudan .vegecheck .vegecheck_mark {
    top: -9vw;
    right: -9vw;
    width: 26vw;
    height: 26vw;
    border-width: 0.7vw;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
  }
}
.pg-soudan .vegecheck .vegecheck_illust {
  position: absolute;
  top: 28%;
  right: -3%;
  width: 34%;
}
.pg-soudan .edit_fld {
  position: relative;
  margin-top: 30px;
  padding: 50px;
  border: solid 5px #f00;
  border-radius: 26px;
  background-color: #fff;
  box-shadow: 1px 1px 10px rgba(35, 24, 21, 0.3);
  text-align: center;
  line-height: 1.6;
  font-size: 2rem;
}
@media screen and (max-width: 750px) {
  .pg-soudan .edit_fld {
    margin-top: 5vw;
    padding: 5vw;
    border-width: min(0.8vw, 5px);
    border-radius: 4vw;
  }
}
.pg-soudan .edit_fld > *:not(:last-child) {
  margin-bottom: 20px;
}
@media screen and (max-width: 750px) {
  .pg-soudan .edit_fld > *:not(:last-child) {
    margin-bottom: 2.5vw;
  }
}
.pg-soudan .edit_area {
  position: relative;
  font-size: 1.8em;
  font-weight: 700;
}
.pg-soudan .edit_area.yoyaku_icon::before {
  content: "";
  position: absolute;
  bottom: -0.25em;
  right: 0;
  width: 2.2em;
  height: 2.2em;
  background: url(../images/soudankai/yoyaku_icon.svg) center center/contain no-repeat;
}
.pg-soudan .edit_area.vege_icon::after {
  content: "";
  position: absolute;
  bottom: -0.25em;
  right: 2.6em;
  width: 2.2em;
  height: 2.2em;
  background: url(../images/soudankai/vegecheck_icon.svg) center center/contain no-repeat;
}
@media screen and (max-width: 1189px) {
  .pg-soudan .edit_area {
    text-align: left;
  }
}
@media screen and (max-width: 750px) {
  .pg-soudan .edit_area {
    text-align: left;
    font-size: 1.5em;
  }
  .pg-soudan .edit_area.yoyaku_icon::before {
    width: 12vw;
    height: 12vw;
  }
  .pg-soudan .edit_area.vege_icon::after {
    width: 12vw;
    height: 12vw;
    right: 13vw;
  }
}
.pg-soudan .edit_date {
  padding: 3px;
  border-radius: 4px;
  background-color: #f00;
  font-size: 1.3em;
  font-feature-settings: "palt";
  color: #fff;
}
.pg-soudan .edit_date > span {
  display: inline-block;
}
@media screen and (max-width: 750px) {
  .pg-soudan .edit_date {
    font-size: 1.1em;
  }
}
.pg-soudan .edit_title {
  line-height: 1.3;
  font-size: 2em;
  font-weight: 700;
  color: #f00;
}
.pg-soudan .edit_title span {
  display: inline-block;
  font-size: 0.8em;
}
@media screen and (max-width: 750px) {
  .pg-soudan .edit_title {
    font-size: 1.7em;
  }
  .pg-soudan .edit_title span {
    margin-top: 0.25em;
  }
}
@media screen and (max-width: 750px) {
  .pg-soudan .edit_outline li > * {
    display: inline-block;
  }
}
@media screen and (max-width: 750px) {
  .pg-soudan .edit_gmap {
    margin-top: 5vw;
  }
}
.pg-soudan .edit_gmap a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 14em;
  margin: 0 auto;
  padding: 5px 10px;
  border: solid 2px #E47800;
  border-radius: 3em;
  background-color: #E47800;
  box-shadow: 0 3px 0 #D6AF87;
  color: #fff;
  transition: 0.3s;
}
.pg-soudan .edit_gmap a span {
  flex: 1;
  text-align: center;
  letter-spacing: 0.1em;
}
.pg-soudan .edit_gmap a i {
  padding: 0.4em;
  border-radius: 50%;
  background-color: #fff;
  font-size: 0.8em;
  color: #E47800;
}
.pg-soudan .edit_gmap a:hover {
  background-color: #fff;
  color: #E47800;
}
@media screen and (min-width: 751px), print {
  .pg-soudan .notes-img {
    width: 100%;
    padding: min(10%, 40px) 0 min(10%, 30px);
  }
}
@media screen and (max-width: 750px) {
  .pg-soudan .notes-img {
    padding: 3% 0;
  }
}
.pg-soudan .toyohashi_img {
  position: relative;
  margin-top: 50px;
}
.pg-soudan .toyohashi_img::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 2.6rem;
  background-color: #C8E1FF;
}
.pg-soudan .toyohashi_img::after {
  content: "";
  position: absolute;
  bottom: 7px;
  left: 7px;
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  border: solid 2px #fff;
  border-radius: 2rem;
}
.pg-soudan .toyohashi_img > * {
  position: relative;
  z-index: 1;
}
.pg-soudan .toyohashi_img p {
  position: absolute;
  bottom: 13%;
  left: 10%;
  width: 34%;
}
@media screen and (max-width: 750px) {
  .pg-soudan .toyohashi_img {
    margin-top: 0;
  }
  .pg-soudan .toyohashi_img::before {
    height: calc(100% - 4.6rem);
    border-radius: 1.4rem;
  }
  .pg-soudan .toyohashi_img::after {
    bottom: 4px;
    left: 4px;
    width: calc(100% - 8px);
    height: calc(100% - 4.6rem - 8px);
    border-width: 1px;
    border-radius: 1rem;
  }
  .pg-soudan .toyohashi_img picture {
    display: block;
    width: 100vw;
    left: calc(-10vw - 3px);
  }
  .pg-soudan .toyohashi_img p {
    bottom: 5%;
    left: 15%;
    width: 70%;
  }
}
.pg-soudan .okigaru {
  margin-top: 30px;
  border: solid 5px #f00;
  border-radius: 26px;
  background-color: #fff;
  box-shadow: 1px 1px 10px rgba(35, 24, 21, 0.3);
}
@media screen and (max-width: 750px) {
  .pg-soudan .okigaru {
    margin-top: 5vw;
    border-width: min(0.8vw, 5px);
    border-radius: 4vw;
  }
}
.pg-soudan .okigaru_title {
  position: relative;
  margin-bottom: min(60px, 10vw);
}
.pg-soudan .okigaru_mark {
  position: absolute;
  right: 20px;
  width: 16.6363636364%;
}
.pg-soudan .okigaru_mark:nth-child(2) {
  top: 20px;
}
.pg-soudan .okigaru_mark:nth-child(3) {
  bottom: -8%;
  transform: scale(137.8746594005%);
}
@media screen and (max-width: 750px) {
  .pg-soudan .okigaru_mark {
    width: 18.6666666667vw;
  }
  .pg-soudan .okigaru_mark:nth-child(2) {
    top: auto;
    bottom: 30%;
    right: -5%;
  }
  .pg-soudan .okigaru_mark:nth-child(3) {
    bottom: -4%;
    right: 2%;
    transform: scale(137.8746594005%);
  }
}
.pg-soudan .okigaru_block {
  width: min(90%, 1000px);
  margin: 45px auto;
  border: solid 3px #f00;
  border-radius: 2em;
}
@media screen and (max-width: 750px) {
  .pg-soudan .okigaru_block {
    margin: 0 auto 5vw;
    border-width: 2px;
  }
}
.pg-soudan .okigaru_inner {
  width: min(90%, 800px);
  margin: 0 auto;
  padding: 30px 0;
}
@media screen and (max-width: 750px) {
  .pg-soudan .okigaru_inner {
    padding: min(5vw, 30px) 0;
  }
}
.pg-soudan .okigaru_inner h4 {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 4em;
  font-weight: 700;
  color: #0062b1;
}
.pg-soudan .okigaru_inner h4::before {
  content: "会場";
  margin: 0.25em 0.75em 0 0;
  padding: 0 0.3em 0 0.5em;
  border: solid #f00;
  border-width: 0 1px;
  line-height: 1;
  font-size: 0.6em;
  letter-spacing: 0.2em;
  color: #f00;
}
@media screen and (max-width: 750px) {
  .pg-soudan .okigaru_inner h4 {
    flex-direction: column;
    font-size: 3.4em;
  }
  .pg-soudan .okigaru_inner h4::before {
    margin: 0 0 0.5em;
  }
}
.pg-soudan .okigaru_inner h5 {
  margin-top: 0.25em;
  line-height: 1.3;
  text-align: center;
  font-size: 4em;
  font-weight: 700;
  color: #f00;
}
.pg-soudan .okigaru_inner .okigaru_address {
  margin-top: 1.25em;
  line-height: 1.6;
  text-align: center;
  font-size: 1.6em;
}
@media screen and (max-width: 750px) {
  .pg-soudan .okigaru_inner .okigaru_address {
    font-size: 1.4em;
  }
}
.pg-soudan .okigaru_inner .okigaru_parking {
  margin: 0.75em 0 1em;
  text-align: center;
  font-size: 2.2em;
  font-weight: 700;
}
.pg-soudan .okigaru_inner .okigaru_mapbtn {
  font-size: 2.4em;
}
.pg-soudan .okigaru_inner .edit_gmap a {
  width: 12em;
}
.pg-soudan .okigaru_inner .okigaru_outline {
  width: 100%;
  margin-top: min(30px, 5vw);
}
.pg-soudan .okigaru_inner .okigaru_outline th {
  vertical-align: middle;
  padding: 0.75em 1em;
  border-right: solid 1px #111;
  background-color: #0062b1;
  text-align: center;
  white-space: nowrap;
  font-size: 2em;
  font-weight: 400;
  color: #fff;
}
.pg-soudan .okigaru_inner .okigaru_outline td {
  vertical-align: middle;
  padding: 0.75em 1em;
  width: 100%;
  background-color: #FFFDE5;
  font-size: 2em;
}
.pg-soudan .okigaru_inner .okigaru_outline td > * {
  display: inline-block;
  vertical-align: middle;
}
.pg-soudan .okigaru_inner .okigaru_outline tr:first-child th, .pg-soudan .okigaru_inner .okigaru_outline tr:first-child td {
  border-top: solid 1px #111;
}
.pg-soudan .okigaru_inner .okigaru_outline tr:last-child th, .pg-soudan .okigaru_inner .okigaru_outline tr:last-child td {
  border-bottom: solid 1px #111;
}
.pg-soudan .okigaru_inner .okigaru_outline tr:not(:last-child) th {
  border-bottom: solid 1px #fff;
}
.pg-soudan .okigaru_inner .okigaru_outline tr:not(:last-child) td {
  border-bottom: solid 1px #111;
}
@media screen and (max-width: 750px) {
  .pg-soudan .okigaru_inner .okigaru_outline th {
    padding: 0.75em 0.5em;
    font-size: 1.6em;
  }
  .pg-soudan .okigaru_inner .okigaru_outline td {
    font-size: 1.6em;
  }
  .pg-soudan .okigaru_inner .okigaru_outline td > * {
    display: block;
  }
}
.pg-soudan .okigaru_inner .okigaru_brackets {
  display: flex;
  justify-content: center;
  align-items: stretch;
  margin-top: 0.5em;
  font-size: 0.7em;
}
.pg-soudan .okigaru_inner .okigaru_brackets::before {
  content: "";
  width: 1em;
  margin-right: -0.25em;
  border: solid #fff;
  border-width: 0 0 0 2px;
  border-radius: 50%;
}
.pg-soudan .okigaru_inner .okigaru_brackets::after {
  content: "";
  width: 1em;
  margin-left: -0.25em;
  border: solid #fff;
  border-width: 0 2px 0 0;
  border-radius: 50%;
}
@media screen and (max-width: 750px) {
  .pg-soudan .okigaru_inner .okigaru_brackets::before {
    border-width: 0 0 0 1px;
  }
  .pg-soudan .okigaru_inner .okigaru_brackets::after {
    border-width: 0 1px 0 0;
  }
}
.pg-soudan .okigaru_inner .okigaru_datelist {
  line-height: 1.4;
  font-size: 1.2em;
}
.pg-soudan .okigaru_inner .okigaru_datelabel span {
  display: inline-block;
  padding: 0.15em 0.5em 0.25em;
  border-radius: 0.4em;
  background-color: #EB6100;
  font-size: 1.5em;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .pg-soudan .okigaru_inner .okigaru_datelabel span {
    margin-top: 0.25em;
  }
}
.pg-soudan .okigaru_inner .okigaru_hourlist li {
  display: inline-block;
  margin-right: 1em;
  line-height: 1.6;
}
.pg-soudan .okigaru_button {
  display: flex;
  justify-content: center;
  padding: 20px 0 30px;
  border-radius: 0 0 calc(2em - 3px) calc(2em - 3px);
  background-color: #C8E1FF;
}
.pg-soudan .okigaru_button > a {
  display: flex;
  align-items: center;
  padding: 1.75em 1em 1.75em 2.5em;
  border-radius: 7em;
  background-color: #0062b1;
  box-shadow: 0 5px 0 #00457E;
}
.pg-soudan .okigaru_button > a::after {
  content: ">";
  width: 1.4em;
  height: 1.4em;
  margin-left: 1em;
  border-radius: 50%;
  background-color: #fff;
  line-height: 1.4;
  text-align: center;
  color: #0062b1;
}
.pg-soudan .okigaru_button > a > div {
  flex: 1;
  display: flex;
  align-items: center;
}
.pg-soudan .okigaru_button > a > div > span {
  padding: 0 0.5em;
  background-color: #fff;
  line-height: 1.8;
  font-size: 1.5em;
  color: #111;
}
.pg-soudan .okigaru_button > a > div > em {
  font-size: 2.3em;
  font-weight: 700;
  font-style: normal;
  color: #fff;
}
@media screen and (min-width: 751px), print {
  .pg-soudan .okigaru_button a {
    transition: opacity 0.3s;
  }
  .pg-soudan .okigaru_button a:hover {
    opacity: 0.8;
  }
}
@media screen and (max-width: 750px) {
  .pg-soudan .okigaru_button {
    padding: 3vw 0 5vw;
  }
  .pg-soudan .okigaru_button a {
    width: 90%;
    padding: 1.5em 1em 1.5em 3em;
  }
  .pg-soudan .okigaru_button a::after {
    margin-left: 0;
    font-size: 1.2em;
  }
  .pg-soudan .okigaru_button a > div {
    flex-wrap: wrap;
  }
  .pg-soudan .okigaru_button a > div > span {
    font-size: 1.6em;
  }
  .pg-soudan .okigaru_button a > div > em {
    line-height: 1.4;
    font-size: 2.5em;
  }
  .pg-soudan .okigaru_button a > div > em:last-child {
    width: 100%;
  }
}
.pg-soudan .okigaru_content {
  margin-top: 45px;
}
.pg-soudan .okigaru_handbook {
  width: min(90%, 966px);
  margin: 5px auto 30px;
}
.pg-soudan .okigaru_handbook h4 {
  width: min(100%, 848px);
  margin: 0 auto 10px;
}
.pg-soudan .okigaru_handbook ul {
  display: flex;
  flex-wrap: wrap;
}
.pg-soudan .okigaru_handbook ul li {
  width: 23.5%;
  margin-top: 3%;
  border-bottom: solid 1px #333;
}
.pg-soudan .okigaru_handbook ul li:not(:nth-child(4n)) {
  margin-right: 2%;
}
.pg-soudan .okigaru_handbook ul li img {
  display: block;
  width: min(80%, 118px);
  margin: 0 auto;
  border: solid 1px #333;
}
.pg-soudan .okigaru_handbook ul li span {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 2.8em;
  margin: 0.5em 0 0.75em;
  line-height: 1.4;
  text-align: center;
  font-size: 2em;
  font-weight: bold;
  color: #0062B1;
}
@media screen and (max-width: 750px) {
  .pg-soudan .okigaru_handbook {
    margin-top: 7vw;
  }
  .pg-soudan .okigaru_handbook ul {
    display: block;
  }
  .pg-soudan .okigaru_handbook ul li {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin: 0;
  }
  .pg-soudan .okigaru_handbook ul li img {
    width: 20.5333333333vw;
    margin: 2em 5vw;
  }
  .pg-soudan .okigaru_handbook ul li span {
    text-align: left;
    font-size: 2.5em;
  }
}
.pg-soudan .woman_careerup {
  position: relative;
  width: min(100%, 1160px);
  margin: 10px auto 0;
}
.pg-soudan .woman_careerup-link01 {
  position: absolute;
  top: 48%;
  left: 17%;
  width: 44.3965517241%;
  height: 4%;
}
.pg-soudan .woman_careerup-link01 a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: #0062b1;
  opacity: 0;
  transition: opacity 0.3s;
}
.pg-soudan .woman_careerup-link02 {
  position: absolute;
  bottom: 11%;
  left: 8%;
  width: 31.6379310345%;
}
@media screen and (min-width: 751px), print {
  .pg-soudan .woman_careerup-link01 a:hover {
    opacity: 0.1;
  }
}
@media screen and (max-width: 750px) {
  .pg-soudan .woman_careerup-link01 {
    top: 45%;
    left: 12%;
    width: 57%;
    height: 7%;
  }
  .pg-soudan .woman_careerup-link02 {
    bottom: 8%;
    left: 12%;
    width: 77.0666666667vw;
  }
}

/* end pg-soudan */
/* ==============================
  デジタルチラシ
============================== */
.pg-dfryer main {
  background-color: #dff2fc;
}
@media screen and (min-width: 751px), print {
  .pg-dfryer .contents {
    padding-top: 75px;
  }
  .pg-dfryer .contents:last-child {
    padding-bottom: 75px;
  }
}
@media screen and (max-width: 750px) {
  .pg-dfryer .contents {
    padding-top: 10%;
  }
  .pg-dfryer .contents:last-child {
    padding-bottom: 10%;
  }
}
.pg-dfryer .con_header {
  line-height: 1.6;
  text-align: center;
  font-size: min(3em, 3vw);
  font-weight: 700;
  color: #0062b1;
}
@media screen and (max-width: 750px) {
  .pg-dfryer .con_header {
    font-size: 2.4em;
  }
}
.pg-dfryer .con_header span {
  display: inline-block;
}
.pg-dfryer .con_list {
  margin-top: 1.5em;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4%;
}
@media screen and (max-width: 750px) {
  .pg-dfryer .con_list {
    display: block;
  }
}
.pg-dfryer .con_list li {
  width: min(48%, 386px);
  margin-top: 4em;
}
@media screen and (max-width: 750px) {
  .pg-dfryer .con_list li {
    width: 70%;
    margin: 5% auto 0;
  }
}
.pg-dfryer .con_list li p {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 2.4em;
  background-color: #0062b1;
  text-align: center;
  font-size: min(3.3em, 3vw);
  font-weight: 900;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .pg-dfryer .con_list li p {
    font-size: 2.4em;
  }
}
.pg-dfryer .con_list li p > span {
  font-size: 0.8em;
}
.pg-dfryer .con_list li div {
  margin-top: 1em;
  padding: 7% 0;
  border: solid 1px #0062b1;
  background-color: #fff;
}
.pg-dfryer .con_list li div img {
  display: block;
  width: 70%;
  margin: 0 auto;
}
.pg-dfryer .blk-blue {
  border: solid 4px #0062b1;
  border-radius: 1em;
  background-color: #fff;
  overflow: hidden;
  box-shadow: 0 0 10px rgba(17, 17, 17, 0.2);
}
.pg-dfryer .blk-blue--header {
  padding: 1em;
  line-height: 1.4;
  text-align: center;
  background-color: #0062b1;
  color: #fff;
}
.pg-dfryer .blk-blue--header > span {
  font-size: min(3.2rem, 3.6vw);
  font-weight: 700;
}
.pg-dfryer .blk-blue--header > span > span {
  display: inline-block;
  margin: 0 0.25em;
}
.pg-dfryer .blk-blue--inner {
  width: min(90%, 860px);
  margin: 4% auto 5%;
  line-height: 1.5;
}
.pg-dfryer .blk-blue--copy {
  text-align: center;
  font-size: min(2.6rem, 2.4vw);
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .pg-dfryer .blk-blue {
    border-width: 2px;
  }
  .pg-dfryer .blk-blue--header {
    padding: 2em 1em;
  }
  .pg-dfryer .blk-blue--header > span {
    font-size: 3.2rem;
  }
  .pg-dfryer .blk-blue--inner {
    margin: 7% auto;
  }
  .pg-dfryer .blk-blue--copy {
    font-size: 1.9em;
  }
  .pg-dfryer .blk-blue--copy span {
    display: inline-block;
  }
}
.pg-dfryer .blk-cmn {
  margin-top: 4%;
  border: solid 1px #b0b0b0;
  border-radius: 1em;
  overflow: hidden;
  font-size: min(1.8rem, 1.6vw);
}
.pg-dfryer .blk-cmn--header {
  padding: 0.75em 0.5em;
  text-align: center;
  color: #fff;
}
.pg-dfryer .blk-cmn--header span {
  font-size: min(2.8rem, 3vw);
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .pg-dfryer .blk-cmn--header span {
    font-size: 2rem;
  }
}
.pg-dfryer .blk-cmn--inner {
  padding: 4% 5%;
  border-bottom: solid 1rem;
  line-height: 1.5;
}
@media screen and (max-width: 750px) {
  .pg-dfryer .blk-cmn--inner {
    padding: 7% 5%;
  }
}
.pg-dfryer .blk-cmn--text {
  line-height: 1.8;
  text-align: center;
}
.pg-dfryer .blk-cmn--text em.fc--red {
  font-style: normal;
  color: #f00;
}
@media screen and (max-width: 750px) {
  .pg-dfryer .blk-cmn--text {
    font-size: 1.7rem;
  }
}
.pg-dfryer .blk-cmn--btn {
  margin-top: 2em;
  text-align: center;
}
.pg-dfryer .blk-cmn--btn a {
  display: inline-block;
  min-width: 16em;
  padding: 0.3em 0.5em;
  border-radius: 0.3em;
  background-color: #0062b1;
  font-size: min(2.6rem, 2.8vw);
  font-weight: 700;
  color: #fff;
  box-shadow: 0 3px 0 rgba(0, 98, 177, 0.3);
  transition: 0.3s;
}
.pg-dfryer .blk-cmn--btn a > span {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pg-dfryer .blk-cmn--btn a > span::after {
  content: "";
  width: 1em;
  height: 1em;
  border-radius: 100%;
  background: url(/assets/images/common/request_a_icon.svg) center center/contain no-repeat #fff;
}
.pg-dfryer .blk-cmn--btn a > span > span {
  padding: 0 0.5em;
  background-color: #fff;
  font-size: 0.64em;
  color: #0062b1;
}
.pg-dfryer .blk-cmn--btn a > span > em {
  flex: 1;
  font-style: normal;
}
.pg-dfryer .blk-cmn--btn a:hover {
  transform: translateY(3px);
  box-shadow: 0 0 0 rgba(0, 98, 177, 0.3);
  opacity: 0.8;
}
@media screen and (max-width: 750px) {
  .pg-dfryer .blk-cmn--btn {
    margin-top: 1.5em;
  }
  .pg-dfryer .blk-cmn--btn a {
    display: block;
    min-width: initial;
    padding: 0.5em;
    font-size: 2.3rem;
  }
}
.pg-dfryer .blk-fm--header {
  background-color: #009c43;
}
.pg-dfryer .blk-fm--inner {
  border-bottom-color: #018bd4;
}
.pg-dfryer .blk-fm--flex {
  display: flex;
  justify-content: space-between;
}
.pg-dfryer .blk-fm--text {
  flex: 1;
}
.pg-dfryer .blk-fm--img {
  width: 23%;
}
.pg-dfryer .blk-fm--btn a {
  background-color: #009c43;
  box-shadow: 0 3px 0 rgba(0, 156, 67, 0.3);
}
.pg-dfryer .blk-fm--btn a > span > span {
  color: #009c43;
}
.pg-dfryer .blk-fm--btn a:hover {
  box-shadow: 0 0 0 rgba(0, 156, 67, 0.3);
}
@media screen and (max-width: 750px) {
  .pg-dfryer .blk-fm--flex {
    display: block;
  }
  .pg-dfryer .blk-fm--text {
    text-align: center;
  }
  .pg-dfryer .blk-fm--img {
    width: min(80%, 300px);
    margin: 5% auto 0;
  }
}
.pg-dfryer .blk-aeon--header {
  background-color: #c40046;
}
.pg-dfryer .blk-aeon--inner {
  border-bottom-color: #952c67;
}
.pg-dfryer .blk-aeon--btn a {
  background-color: #c40046;
  box-shadow: 0 3px 0 rgba(196, 0, 70, 0.3);
}
.pg-dfryer .blk-aeon--btn a > span > span {
  color: #c40046;
}
.pg-dfryer .blk-aeon--btn a:hover {
  box-shadow: 0 0 0 rgba(196, 0, 70, 0.3);
}
.pg-dfryer .blk-konomiya--header {
  background-color: #fff000;
  color: #f00;
}
.pg-dfryer .blk-konomiya--inner {
  border-bottom-color: #5a5a5a;
}
.pg-dfryer .blk-konomiya--btn a {
  background-color: #fff000;
  box-shadow: 0 3px 0 #d6d276;
  color: #f00;
}
.pg-dfryer .blk-konomiya--btn a > span > span {
  background-color: #f00;
  color: #fff;
}
.pg-dfryer .blk-ufj--header {
  background-color: #f00;
}
.pg-dfryer .blk-ufj--inner {
  border-bottom-color: #5a5a5a;
}
.pg-dfryer .blk-ufj--btn a {
  background-color: #f00;
  box-shadow: 0 3px 0 rgba(255, 0, 0, 0.3);
}
.pg-dfryer .blk-ufj--btn a > span > span {
  color: #f00;
}
.pg-dfryer .blk-ufj--btn a:hover {
  box-shadow: 0 0 0 rgba(255, 0, 0, 0.3);
}

/* end pg-dfryer */
/* ==============================
  共済 共通
============================== */
.pg-kyosai .ancbase {
  position: relative;
}
.pg-kyosai .ancpoint {
  position: absolute;
  top: 0;
  left: 0;
}
@media screen and (max-width: 750px) {
  .pg-kyosai .ancpoint {
    top: -8vw;
  }
}
.pg-kyosai .sec_title > span {
  position: relative;
  display: inline-block;
  padding: 0.7em 1em;
  border-radius: 0.4em;
  line-height: 1.4;
  font-size: min(3.4em, 3vw);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .pg-kyosai .sec_title > span {
    font-size: 2.4em;
  }
}
.pg-kyosai .sec_title > span::after {
  content: "";
  position: absolute;
  display: block;
  bottom: -0.6em;
  right: 20%;
  width: 0.6em;
  height: 0.6em;
  -webkit-clip-path: polygon(10% 0, 100% 0, 0% 100%);
          clip-path: polygon(10% 0, 100% 0, 0% 100%);
}
.pg-kyosai .sec_title > span.orange {
  background-color: #CA5E37;
}
.pg-kyosai .sec_title > span.orange::after {
  background-color: #CA5E37;
}
.pg-kyosai .sec_title > span.pink {
  background-color: #DC6987;
}
.pg-kyosai .sec_title > span.pink::after {
  background-color: #DC6987;
}
.pg-kyosai .sec_title > span.blue {
  background-color: #0062b1;
}
.pg-kyosai .sec_title > span.blue::after {
  background-color: #0062b1;
}
.pg-kyosai .sec_title > span em {
  font-size: 1.2em;
  font-style: normal;
}
.pg-kyosai .sec_title > span small {
  display: block;
  margin-top: 1em;
  font-size: 0.3em;
  font-weight: normal;
  letter-spacing: 0;
}
.pg-kyosai .casestudy {
  padding-top: min(5%, 70px);
}
@media screen and (max-width: 750px) {
  .pg-kyosai .casestudy {
    width: 100vw;
    overflow-x: auto;
  }
}
@media screen and (max-width: 750px) {
  .pg-kyosai .casestudy_inner {
    width: 195vw;
    margin-left: 5vw;
  }
}
.pg-kyosai .casestudy_list {
  display: flex;
}
@media screen and (min-width: 751px), print {
  .pg-kyosai .casestudy_list {
    justify-content: space-between;
  }
}
.pg-kyosai .casestudy_list li {
  display: flex;
  width: 32%;
}
@media screen and (max-width: 750px) {
  .pg-kyosai .casestudy_list li {
    width: 60vw;
    margin-right: 5vw;
  }
}
.pg-kyosai .casestudy_list li a {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  padding: 8% 8% 5%;
  border: solid 2px #999;
  border-radius: 1em;
  background-color: #fff;
  font-size: min(1em, 1vw);
}
@media screen and (min-width: 751px), print {
  .pg-kyosai .casestudy_list li a {
    transition: box-shadow 0.3s;
  }
  .pg-kyosai .casestudy_list li a:hover {
    box-shadow: 1px 1px 5px #999;
  }
  .pg-kyosai .casestudy_list li a:hover img {
    opacity: 1;
  }
}
@media screen and (max-width: 750px) {
  .pg-kyosai .casestudy_list li a {
    font-size: 1em;
  }
}
.pg-kyosai .casestudy_list li a h4 {
  margin-bottom: 1em;
  padding: 0.5em 0;
  border: solid 1px #999;
  background-color: #eee;
  text-align: center;
  font-size: 1.7em;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .pg-kyosai .casestudy_list li a h4 {
    font-size: 2em;
  }
}
.pg-kyosai .casestudy_list li a p {
  line-height: 1.6;
  font-size: 1.4em;
}
@media screen and (max-width: 750px) {
  .pg-kyosai .casestudy_list li a p {
    font-size: 1.7em;
  }
}
.pg-kyosai .casestudy_list li a p small {
  display: block;
  margin-top: 0.5em;
  padding-left: 1em;
  text-indent: -1em;
  line-height: 1.4;
}
.pg-kyosai .casestudy_list li a div {
  width: 86%;
  margin: auto auto 0;
}
.pg-kyosai .casestudy_list li a i {
  position: absolute;
  display: block;
  top: -0.8em;
  right: -0.8em;
  width: 1.6em;
  border-radius: 50%;
  background-color: #999;
  line-height: 1.6;
  text-align: center;
  font-size: 2em;
  color: #fff;
}
.pg-kyosai .casestudy_notes {
  margin-top: 1.5em;
  line-height: 1.4;
  padding-left: 1em;
  text-align: justify;
  text-indent: -1em;
  font-size: 1.2em;
}
@media screen and (max-width: 750px) {
  .pg-kyosai .casestudy_notes {
    font-size: 1.4em;
  }
}
.pg-kyosai .casestudy_notes + .casestudy_notes {
  margin-top: 0.5em;
}
.pg-kyosai .reason_list {
  margin-top: 11.25em;
}
.pg-kyosai .reason_list .slick-track {
  display: flex;
}
.pg-kyosai .reason_list .slick-arrow {
  position: absolute;
  top: -2.75em;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 2em;
  height: 2em;
  border: solid 1px #D6D6D6;
  border-radius: 50%;
  background-color: #fff;
  font-size: 2.5em;
  color: #fff;
  transition: border-color 0.3s;
}
@media screen and (min-width: 751px), print {
  .pg-kyosai .reason_list .slick-arrow {
    transition: 0.3s;
  }
}
.pg-kyosai .reason_list .slick-arrow.slick-disabled {
  pointer-events: none;
  opacity: 0.5;
}
.pg-kyosai .reason_list .slick-prev {
  left: max((100% - 1056px) / 2, 5vw);
}
.pg-kyosai .reason_list .slick-next {
  left: max((100% - 1056px) / 2 + 2.5em, 5vw + 2.5em);
}
.pg-kyosai .reason_item {
  height: auto;
  margin: 0 1em;
  padding: 2.5em 2.5em 2em;
  border: solid 2px #999;
  border-radius: 1em;
  background-color: #fff;
}
@media screen and (min-width: 751px), print {
  .pg-kyosai .reason_item {
    font-size: min(1em, 1vw);
  }
}
.pg-kyosai .reason_item > *:last-child {
  margin-bottom: auto;
}
.pg-kyosai .reason_item p {
  display: flex;
  justify-content: center;
  margin-bottom: 2em;
}
.pg-kyosai .reason_item p span {
  display: flex;
  align-items: center;
  padding: 0 0 0 1.5em;
  border: solid 0.5rem #999;
  border-radius: 4em;
  background-color: #999;
  font-size: 1.6em;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .pg-kyosai .reason_item p span {
    font-size: 1.8em;
  }
}
.pg-kyosai .reason_item p span em {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 1.4em;
  height: 1.4em;
  margin-left: 1em;
  border-radius: 50%;
  background-color: #fff;
  line-height: 1;
  font-size: 1.2em;
  font-style: normal;
  font-weight: 700;
  color: #111;
}
.pg-kyosai .reason_item dl dt {
  line-height: 1.4;
  font-size: 2.2em;
  font-weight: 400;
  color: #f00;
}
@media screen and (max-width: 750px) {
  .pg-kyosai .reason_item dl dt {
    font-size: 2.4em;
  }
}
.pg-kyosai .reason_item dl dt sup {
  font-size: 0.5em;
  color: #111;
}
.pg-kyosai .reason_item dl dd {
  margin-top: 0.75em;
  line-height: 1.6;
  text-align: justify;
  font-size: 1.4em;
}
@media screen and (max-width: 750px) {
  .pg-kyosai .reason_item dl dd {
    font-size: 1.8em;
  }
}
.pg-kyosai .reason_item dl dd small {
  display: block;
  margin-top: 0.5em;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 0.8em;
}
.pg-kyosai .reason_item dl dd a {
  text-decoration: underline;
  color: #00A7E9;
}
@media screen and (min-width: 751px), print {
  .pg-kyosai .reason_item dl dd a:hover {
    text-decoration: none;
  }
}
.pg-kyosai .fancybox__backdrop {
  background-color: rgba(255, 253, 229, 0.95);
}
.pg-kyosai .fancybox-image {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3);
}
@media screen and (min-width: 751px), print {
  .pg-kyosai .fancybox-image {
    width: min(90vw, 1050px);
    height: auto;
    border-radius: 1.2%;
  }
}
@media screen and (max-width: 750px) {
  .pg-kyosai .fancybox-image {
    width: auto;
    margin-bottom: 10vw;
    border-radius: 1.5%;
  }
}
.pg-kyosai .f-button.is-close-btn {
  top: -50px;
  border-radius: 50%;
  opacity: 1;
}
@media screen and (max-width: 750px) {
  .pg-kyosai .is-compact .fancybox__content > .f-button.is-close-btn {
    top: -20px;
  }
}
.pg-kyosai .f-button {
  color: #fff;
}
@media screen and (min-width: 751px), print {
  .pg-kyosai .f-button:hover {
    color: #fff;
  }
}

/* end pg-kyosai */
/* ==============================
  火災共済
============================== */
.pg-kasai .sec01 {
  padding: min(10%, 110px) 0;
}
.pg-kasai .sec01_inner {
  position: relative;
}
.pg-kasai .sec01_box01 {
  background: url(/assets/images/kasai/sec01_img.png) right 25%/38% auto no-repeat;
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec01_box01 {
    margin-bottom: 8%;
    padding-bottom: 0;
    background: url(/assets/images/kasai/sec01_img.png) right bottom/43% auto no-repeat;
  }
}
.pg-kasai .sec01_text01 {
  margin-top: 1.25em;
  line-height: 1.2;
  font-size: min(3.4em, 3vw);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #f00;
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec01_text01 {
    font-size: min(3em, 5.2vw);
  }
}
.pg-kasai .sec01_text01 em {
  font-size: 1.4em;
  font-style: normal;
}
.pg-kasai .sec01_text01 sup {
  vertical-align: super;
  font-size: 0.3em;
  font-weight: 400;
  color: #111;
}
.pg-kasai .sec01_text01 small {
  display: block;
  margin-top: 0.5em;
  font-size: 0.4em;
  font-weight: 400;
  letter-spacing: 0;
  color: #111;
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec01_text01 small {
    font-size: 0.5em;
  }
}
.pg-kasai .sec01_text02 {
  margin-top: 1em;
  line-height: 1.6em;
  font-size: min(2.6em, 2.6vw);
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec01_text02 {
    font-size: min(2.6em, 4.2vw);
    text-shadow: 1px 1px 2px #fff;
  }
}
.pg-kasai .sec01_text02 em {
  font-size: 1.4em;
  font-style: normal;
  color: #CA5E37;
}
.pg-kasai .sec01_nav {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 1em;
  border-radius: 1em;
  background-color: #F6DFD7;
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec01_nav {
    position: static;
  }
}
.pg-kasai .sec01_nav li a {
  display: flex;
  align-items: center;
  padding: 0.5em;
  line-height: 1.4;
  font-size: min(1.4em, 1.4vw);
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec01_nav li a {
    font-size: min(2em, 4vw);
  }
}
.pg-kasai .sec01_nav li a::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  background: url(/assets/images/kasai/sec01_nav_arrow.svg) center center/contain no-repeat;
}
.pg-kasai .sec01_nav li a:hover {
  color: #CA5E37;
}
.pg-kasai .sec01_nav li:not(:last-child) a {
  border-bottom: solid 1px #fff;
}
.pg-kasai .sec02 {
  padding-top: min(10%, 110px);
  background-color: #FFFCE4;
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec02 {
    position: relative;
    padding-top: 20%;
  }
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec02_inner01 {
    position: absolute;
    top: 10vw;
    width: 100%;
  }
}
.pg-kasai .sec02_box01 {
  position: relative;
  padding-top: 5%;
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec02_box01 {
    width: 90vw;
    margin: 0 auto;
  }
}
.pg-kasai .sec02_img01__pc {
  text-align: center;
}
.pg-kasai .sec02_img01__pc img {
  border-radius: 2em;
}
.pg-kasai .sec02 .sec_title {
  position: absolute;
  top: 0;
  left: 0;
}
.pg-kasai .sec02 .sec_title > span {
  box-shadow: 2px 2px 10px rgba(17, 17, 17, 0.2);
}
.pg-kasai .sec02_text01 {
  position: absolute;
  top: 0;
  right: 6%;
  writing-mode: vertical-rl;
  white-space: nowrap;
  line-height: 1.6;
  font-size: min(3.4em, 3vw);
  font-weight: 700;
  color: #CA5E37;
  text-shadow: 0 0 5px #fff, 0 0 7px #fff, 0 0 10px #fff;
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec02_text01 {
    right: 0;
    font-size: 2.6em;
    text-shadow: -1px -1px 2px #fff, 1px -1px 2px #fff, 1px 1px 2px #fff, -1px 1px 2px #fff;
  }
}
.pg-kasai .sec02_inner02 {
  margin-top: min(8%, 80px);
  border: solid 3px #CA5E37;
  border-radius: 2em;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec02_inner02 {
    border-width: 2px;
  }
}
.pg-kasai .sec02_box02 {
  width: min(90%, 920px);
  margin: 0 auto;
  padding: min(5%, 40px) 0 min(7%, 55px);
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec02_box02 {
    padding-bottom: 5%;
  }
}
.pg-kasai .sec02_box02 .secSubttl {
  margin-bottom: 1em;
  line-height: 1.4;
  text-align: center;
  font-size: min(4em, 3vw);
  font-weight: 700;
  color: #CA5E37;
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec02_box02 .secSubttl {
    font-size: 3em;
  }
}
.pg-kasai .sec02_img03 {
  margin-top: min(8%, 80px);
  padding: 0 4% 4%;
  border-radius: 2em;
  background-color: #FCE7C7;
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec02_img03 {
    margin-top: 15%;
    padding: 0 5% 7%;
  }
}
.pg-kasai .sec02_img03 .secBoxttl {
  text-align: center;
}
.pg-kasai .sec02_img03 .secBoxttl span {
  transform: translateY(-50%);
  display: inline-block;
  padding: 0.75em 2em;
  border: solid 1px #CA5E37;
  border-radius: 4em;
  background-color: #fff;
  font-size: 1.6em;
}
.pg-kasai .sec02_img03 dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec02_img03 dl {
    display: block;
  }
}
.pg-kasai .sec02_img03 dl:not(:last-of-type) {
  margin-bottom: 2.5%;
  padding-bottom: 2.5%;
  border-bottom: solid 1px #aaa;
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec02_img03 dl:not(:last-of-type) {
    margin-bottom: 5%;
    padding-bottom: 8%;
  }
}
.pg-kasai .sec02_img03 dl dt {
  width: 40%;
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec02_img03 dl dt {
    width: 94%;
    margin: 0 auto 5%;
  }
}
.pg-kasai .sec02_img03 dl dd {
  width: 55%;
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec02_img03 dl dd {
    width: 96%;
    margin: 0 auto;
  }
}
.pg-kasai .sec02_img03 dl dd p:first-child {
  font-size: min(1.8em, 1.8vw);
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec02_img03 dl dd p:first-child {
    font-size: 1.7em;
  }
}
.pg-kasai .sec02_img03 dl dd p:first-child em {
  margin-right: 0.1em;
  font-size: 1.8em;
  font-style: normal;
  font-weight: 700;
}
.pg-kasai .sec02_img03 dl dd p:first-child .red {
  color: #f00;
}
.pg-kasai .sec02_img03 dl dd p:first-child .blue {
  color: #0062b1;
}
.pg-kasai .sec02_img03 dl dd p:first-child .orange {
  color: #CA5E37;
}
.pg-kasai .sec02_img03 dl dd p:last-child {
  margin-top: 1em;
  line-height: 1.6;
  font-size: min(1.6em, 1.45vw);
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec02_img03 dl dd p:last-child {
    margin-top: 0.5em;
    font-size: 1.6em;
  }
}
.pg-kasai .sec02_img03 dl dd p:last-child small {
  display: block;
  margin-top: 0.5em;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 0.6em;
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec02_img03 dl dd p:last-child small {
    font-size: 0.7em;
  }
}
.pg-kasai .sec02_box03 {
  margin-top: min(5%, 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
}
.pg-kasai .sec02_box03 span {
  display: block;
  font-size: 2em;
}
.pg-kasai .sec02_box03 i {
  width: 1.6em;
  height: 1.6em;
  margin-top: 0.25em;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #111;
  border-radius: 50%;
  font-size: 2.8em;
  color: #fff;
}
.pg-kasai .sec02_box04 {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec02_box04 {
    display: block;
  }
}
.pg-kasai .sec02_sbox {
  width: min(48%, 510px);
  margin: min(7%, 30px) 0 0;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec02_sbox {
    width: 100%;
  }
}
.pg-kasai .sec02_sbox.orange {
  color: #CA5E37;
}
.pg-kasai .sec02_sbox.blue {
  color: #0062b1;
}
.pg-kasai .sec02_sbox > p:first-child {
  margin-bottom: 1em;
  line-height: 1.4;
  font-size: 2.6em;
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec02_sbox > p:first-child {
    font-size: 3em;
    margin-bottom: 0.5em;
  }
}
.pg-kasai .sec02_sboxbg {
  padding: 5%;
  border-radius: 1em;
}
.pg-kasai .sec02_sboxbg h4 {
  font-size: 3.6em;
}
.pg-kasai .sec02_sboxbg p:first-of-type {
  margin: 1em 0;
  line-height: 1.6;
  font-size: 1.3em;
  font-weight: 400;
  color: #111;
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec02_sboxbg p:first-of-type {
    font-size: 1.5em;
  }
}
.pg-kasai .sec02_sboxbg p:nth-of-type(2) {
  margin-bottom: 1em;
  font-size: 1.7em;
  font-weight: 400;
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec02_sboxbg p:nth-of-type(2) {
    font-size: 1.8em;
  }
}
.pg-kasai .sec02_sboxbg p:nth-of-type(2) span {
  display: inline-block;
}
.pg-kasai .sec02_sboxbg p:nth-of-type(2) span::before, .pg-kasai .sec02_sboxbg p:nth-of-type(2) span::after {
  content: "";
  display: inline-block;
  vertical-align: bottom;
  width: 2em;
  height: 1.2em;
  background-repeat: no-repeat;
  background-size: contain;
}
.pg-kasai .sec02_sboxbg p:nth-of-type(2) span::before {
  background-position: center center;
}
.pg-kasai .sec02_sboxbg p:nth-of-type(2) span::after {
  background-position: right center;
  transform: scaleX(-1);
}
.pg-kasai .sec02_sboxbg p:last-of-type a {
  width: min(90%, 354px);
  align-items: center;
  border: solid 1px;
  background-color: #999;
  padding: 0.75em 0.75em 0.75em 1em;
  border-radius: 10em;
  font-size: 1.4em;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (min-width: 751px), print {
  .pg-kasai .sec02_sboxbg p:last-of-type a.forpc {
    display: flex;
    margin: 0 auto;
    transition: 0.3s;
  }
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec02_sboxbg p:last-of-type a.forsp {
    display: flex;
    margin: 0 auto;
  }
}
.pg-kasai .sec02_sboxbg p:last-of-type a::after {
  content: "";
  display: block;
  width: 1.6em;
  height: 1.6em;
  border-radius: 50%;
  background: url(/assets/images/common/request_a_icon.svg) center center/contain no-repeat #fff;
  box-shadow: 0 0 2px #999;
}
.pg-kasai .sec02_sboxbg p:last-of-type a span {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pg-kasai .sec02_sboxbg p:last-of-type a em {
  font-size: 1.7em;
  font-style: normal;
  letter-spacing: 0.1em;
}
.pg-kasai .sec02_sboxbg.orange {
  background-color: #fdecea;
}
.pg-kasai .sec02_sboxbg.orange p:nth-of-type(2) span::before, .pg-kasai .sec02_sboxbg.orange p:nth-of-type(2) span::after {
  background-image: url(/assets/images/kasai/mark_orange.svg);
}
.pg-kasai .sec02_sboxbg.orange p:last-of-type a {
  border-color: #CA5E37;
  background-color: #CA5E37;
  box-shadow: 1px 2px 0 #b75430;
}
@media screen and (min-width: 751px), print {
  .pg-kasai .sec02_sboxbg.orange p:last-of-type a:hover {
    background-color: #fff;
    color: #CA5E37;
  }
}
.pg-kasai .sec02_sboxbg.blue {
  background-color: #ddf1fc;
}
.pg-kasai .sec02_sboxbg.blue p:nth-of-type(2) span::before, .pg-kasai .sec02_sboxbg.blue p:nth-of-type(2) span::after {
  background-image: url("/assets/images/kasai/mark_blue.svg");
}
.pg-kasai .sec02_sboxbg.blue p:last-of-type a {
  border-color: #0062b1;
  background-color: #0062b1;
  box-shadow: 1px 2px 0 #004596;
}
@media screen and (min-width: 751px), print {
  .pg-kasai .sec02_sboxbg.blue p:last-of-type a:hover {
    background-color: #fff;
    color: #0062b1;
  }
}
.pg-kasai .sec03 {
  padding-top: min(10%, 110px);
  background-color: #FFFCE4;
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec03 {
    position: relative;
    padding-top: 20%;
  }
}
.pg-kasai .sec03 .sec_title {
  position: absolute;
  top: 0;
  left: 0;
}
.pg-kasai .sec03 .sec_title > span {
  box-shadow: 2px 2px 10px rgba(17, 17, 17, 0.2);
}
.pg-kasai .sec03_box01 {
  padding: 1.5em;
  border-radius: 1em;
  background-color: #fff;
  text-align: center;
}
@media screen and (min-width: 751px), print {
  .pg-kasai .sec03_box01 {
    position: absolute;
    bottom: 5%;
    left: 5%;
    display: inline-block;
  }
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec03_box01 {
    width: 90%;
    margin: 5% auto;
  }
}
.pg-kasai .sec03_box01 .secSubttl {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em 2em;
  border-radius: 1em;
  background-color: #CA5E37;
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec03_box01 .secSubttl {
    padding: 0.5em;
  }
}
.pg-kasai .sec03_box01 .secSubttl span {
  margin-right: 0.5em;
  font-size: 1.6em;
}
.pg-kasai .sec03_box01 .secSubttl em {
  font-size: 3.2em;
  font-style: normal;
}
.pg-kasai .sec03_box01_text01 {
  margin-top: 1em;
  font-size: 1.4em;
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec03_box01_text01 {
    font-size: 1.8em;
  }
}
.pg-kasai .sec03_box01_link01 a {
  display: flex;
  align-items: center;
  width: 16em;
  margin: 1em auto;
  padding: 0.3em 0.5em;
  border-radius: 4em;
  border: solid 1px #ee7c00;
  background-color: #ee7c00;
  font-size: 1.4em;
  color: #fff;
}
@media screen and (min-width: 751px), print {
  .pg-kasai .sec03_box01_link01 a {
    transition: 0.3s;
  }
  .pg-kasai .sec03_box01_link01 a:hover {
    background-color: #fff;
    color: #ee7c00;
  }
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec03_box01_link01 a {
    font-size: 1.6em;
  }
}
.pg-kasai .sec03_box01_link01 a span {
  flex: 1;
  text-align: center;
}
.pg-kasai .sec03_box01_link01 a::after {
  content: "";
  display: block;
  width: 1.4em;
  height: 1.4em;
  border-radius: 50%;
  background: url(/assets/images/common/request_a_icon.svg) center center/contain no-repeat #fff;
  box-shadow: 0 0 2px #999;
}
.pg-kasai .sec03_box01_text02 {
  font-size: 1.2em;
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec03_box01_text02 {
    font-size: 1.6em;
  }
}
.pg-kasai .sec03_box01_link02 {
  margin-top: 0.5em;
  font-size: 1.3em;
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec03_box01_link02 {
    font-size: 1.6em;
  }
}
.pg-kasai .sec03_box01_link02 a {
  text-decoration: underline;
  color: #0062b1;
}
@media screen and (min-width: 751px), print {
  .pg-kasai .sec03_box01_link02 a:hover {
    text-decoration: none;
  }
}
.pg-kasai .sec03 .casestudy_list li a {
  border-color: #CA5E37;
}
.pg-kasai .sec03 .casestudy_list li a h4 {
  border-color: #CA5E37;
  background-color: rgba(202, 94, 55, 0.1);
  color: #CA5E37;
}
.pg-kasai .sec03 .casestudy_list li a i {
  background-color: #CA5E37;
}
.pg-kasai .sec04 {
  padding-top: min(10%, 110px);
  background-color: #FFFCE4;
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec04 {
    position: relative;
    padding-top: 20%;
  }
}
.pg-kasai .sec04 .sec_title {
  position: absolute;
  top: 0;
  left: 0;
}
.pg-kasai .sec04 .sec_title > span {
  box-shadow: 2px 2px 10px rgba(17, 17, 17, 0.2);
}
.pg-kasai .sec04 .reason_list .slick-arrow {
  border-color: #CA5E37;
  background-color: #CA5E37;
}
@media screen and (min-width: 751px), print {
  .pg-kasai .sec04 .reason_list .slick-arrow:hover {
    background-color: #fff;
    color: #CA5E37;
  }
}
.pg-kasai .sec04 .reason_item {
  padding-bottom: 10em;
  border-color: #CA5E37;
  background-position: center bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media screen and (max-width: 750px) {
  .pg-kasai .sec04 .reason_item {
    padding-bottom: 5em;
  }
}
.pg-kasai .sec04 .reason_item.item01 {
  background-image: url(/assets/images/kasai/sec04_img02a.webp);
}
.pg-kasai .sec04 .reason_item.item01 dd {
  width: 70%;
}
.pg-kasai .sec04 .reason_item.item02 {
  background-image: url(/assets/images/kasai/sec04_img02b.webp);
}
.pg-kasai .sec04 .reason_item.item03 {
  background-image: url(/assets/images/kasai/sec04_img02c.webp);
}
.pg-kasai .sec04 .reason_item p span {
  border-color: #CA5E37;
  background-color: #CA5E37;
}
.pg-kasai .notes-img {
  padding: min(10%, 40px) 0 min(10%, 30px);
  background-color: #FFFCE4;
}
.pg-kasai .f-button.is-close-btn {
  background-color: #CA5E37;
}

/* end pg-kasai */
/* ==============================
  県民共済 こども型
============================== */
.pg-kodomo .sec01 {
  padding: min(10%, 110px) 0;
}
.pg-kodomo .sec01_inner {
  position: relative;
}
.pg-kodomo .sec01_box01 {
  background: url(/assets/images/kodomo/sec01_img01.webp) right center/45% auto no-repeat;
}
@media screen and (max-width: 750px) {
  .pg-kodomo .sec01_box01 {
    margin-bottom: 5%;
    padding-bottom: 5%;
    background: url(/assets/images/kodomo/sec01_img01.webp) right 9em/32% auto no-repeat;
  }
}
.pg-kodomo .sec01_text01 {
  line-height: 1.2;
  font-size: min(3.4em, 3vw);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #f00;
}
@media screen and (max-width: 750px) {
  .pg-kodomo .sec01_text01 {
    font-size: min(3em, 5.2vw);
  }
}
.pg-kodomo .sec01_text01 em {
  font-size: 1.2em;
  font-style: normal;
}
.pg-kodomo .sec01_text01 sup {
  vertical-align: super;
  font-size: 0.3em;
  font-weight: 400;
  color: #111;
}
.pg-kodomo .sec01_text01 small {
  display: block;
  margin-top: 0.5em;
  font-size: 0.3em;
  font-weight: 400;
  letter-spacing: 0;
  color: #111;
}
@media screen and (max-width: 750px) {
  .pg-kodomo .sec01_text01 small {
    font-size: 0.5em;
  }
}
.pg-kodomo .sec01_text02 {
  margin-top: 1em;
  line-height: 1.6em;
  font-size: min(2.6em, 2.6vw);
  font-weight: 700;
  letter-spacing: 0.05em;
}
@media screen and (max-width: 750px) {
  .pg-kodomo .sec01_text02 {
    font-size: min(2.6em, 4.2vw);
    text-shadow: 1px 1px 2px #fff;
  }
}
.pg-kodomo .sec01_text02 em {
  font-size: 1.4em;
  font-style: normal;
  color: #DC6987;
}
.pg-kodomo .sec01_img02 {
  position: relative;
  width: 49%;
  margin: 2em auto 0 0;
}
@media screen and (max-width: 750px) {
  .pg-kodomo .sec01_img02 {
    width: 100%;
    margin: 5% auto 0 0;
  }
}
.pg-kodomo .sec01_img02::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 96.5%;
  border-radius: 3%;
  box-shadow: 0.75em 0.75em 1.5em rgba(17, 17, 17, 0.15);
}
.pg-kodomo .sec01_img02 > * {
  position: relative;
}
.pg-kodomo .sec01_nav {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 1em;
  border-radius: 1em;
  background-color: #fadae3;
}
@media screen and (max-width: 750px) {
  .pg-kodomo .sec01_nav {
    position: static;
  }
}
.pg-kodomo .sec01_nav li a {
  display: flex;
  align-items: center;
  padding: 0.5em;
  line-height: 1.4;
  font-size: min(1.4em, 1.4vw);
}
@media screen and (max-width: 750px) {
  .pg-kodomo .sec01_nav li a {
    font-size: min(2em, 4vw);
  }
}
.pg-kodomo .sec01_nav li a::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  background: url(/assets/images/kasai/sec01_nav_arrow.svg) center center/contain no-repeat;
}
.pg-kodomo .sec01_nav li a:hover {
  color: #CA5E37;
}
.pg-kodomo .sec01_nav li:not(:last-child) a {
  border-bottom: solid 1px #fff;
}
.pg-kodomo .sec02 {
  padding-top: min(10%, 110px);
  background-color: #FFFCE4;
}
@media screen and (max-width: 750px) {
  .pg-kodomo .sec02 {
    position: relative;
    padding-top: 20%;
  }
}
.pg-kodomo .sec02 .more_btn a {
  display: flex;
  align-items: center;
  width: 16em;
  padding: 0.3em 0.5em;
  border: solid 1px #0062b1;
  border-radius: 4em;
  background-color: #0062b1;
  font-size: 1.4em;
  color: #fff;
}
@media screen and (min-width: 751px), print {
  .pg-kodomo .sec02 .more_btn a {
    transition: 0.3s;
  }
  .pg-kodomo .sec02 .more_btn a:hover {
    background-color: #fff;
    color: #0062b1;
  }
}
@media screen and (max-width: 750px) {
  .pg-kodomo .sec02 .more_btn a {
    font-size: 1.6em;
  }
}
.pg-kodomo .sec02 .more_btn a::after {
  content: "";
  display: block;
  width: 1.4em;
  height: 1.4em;
  border-radius: 50%;
  background: url(/assets/images/common/request_a_icon.svg) center center/contain no-repeat #fff;
  box-shadow: 0 0 2px #999;
}
.pg-kodomo .sec02 .more_btn a span {
  flex: 1;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .pg-kodomo .sec02_inner01 {
    position: absolute;
    top: 10vw;
    width: 100%;
  }
}
.pg-kodomo .sec02_box01 {
  position: relative;
  padding-top: 5%;
}
@media screen and (max-width: 750px) {
  .pg-kodomo .sec02_box01 {
    width: 90vw;
    margin: 0 auto;
  }
}
.pg-kodomo .sec02_img01__pc {
  text-align: center;
}
.pg-kodomo .sec02_img01__pc img {
  border-radius: 2em;
}
.pg-kodomo .sec02 .sec_title {
  position: absolute;
  top: 0;
  left: 0;
}
.pg-kodomo .sec02 .sec_title > span {
  box-shadow: 2px 2px 10px rgba(17, 17, 17, 0.2);
}
.pg-kodomo .sec02_text01 {
  position: absolute;
  top: 0;
  right: 6%;
  writing-mode: vertical-rl;
  white-space: nowrap;
  line-height: 1.6;
  font-size: min(3.4em, 3vw);
  font-weight: 700;
  color: #DC6987;
  text-shadow: 0 0 5px #fff, 0 0 7px #fff, 0 0 10px #fff;
}
@media screen and (max-width: 750px) {
  .pg-kodomo .sec02_text01 {
    right: 0;
    font-size: 2.6em;
    text-shadow: -1px -1px 2px #fff, 1px -1px 2px #fff, 1px 1px 2px #fff, -1px 1px 2px #fff;
  }
}
.pg-kodomo .sec02_inner02 {
  position: relative;
  margin-top: min(10%, 80px);
}
.pg-kodomo .sec02_inner02::before {
  content: "";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 3%;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2);
}
.pg-kodomo .sec02_inner02 > * {
  position: relative;
}
.pg-kodomo .sec02_inner02 .more_btn {
  position: absolute;
}
@media screen and (min-width: 751px), print {
  .pg-kodomo .sec02_inner02 .more_btn {
    bottom: 4%;
    right: 3%;
  }
}
@media screen and (max-width: 750px) {
  .pg-kodomo .sec02_inner02 .more_btn {
    bottom: 2%;
    left: 0;
    width: 100%;
    display: flex;
    justify-content: center;
  }
}
.pg-kodomo .sec02_inner03 {
  margin-top: min(5%, 30px);
}
.pg-kodomo .sec02_box02 {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
}
.pg-kodomo .sec02_box02 span {
  display: block;
  font-size: 2em;
}
.pg-kodomo .sec02_box02 i {
  width: 1.6em;
  height: 1.6em;
  margin-top: 0.25em;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #111;
  border-radius: 50%;
  font-size: 2.8em;
  color: #fff;
}
.pg-kodomo .sec02_box02 p {
  margin-top: 0.5em;
  font-size: min(4em, 6vw);
  color: #0062b1;
}
.pg-kodomo .sec02_box03 {
  margin-top: min(5%, 30px);
  padding: 3% 5%;
  border-radius: 1em;
  background-color: #dff2fc;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .pg-kodomo .sec02_box03 {
    padding: 5%;
  }
}
.pg-kodomo .sec02_box03ttl {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.pg-kodomo .sec02_box03ttl em {
  font-size: min(5.6em, 5vw);
  font-weight: 700;
  font-style: normal;
  color: #0062b1;
}
@media screen and (max-width: 750px) {
  .pg-kodomo .sec02_box03ttl em {
    font-size: min(5.6em, 7vw);
  }
}
.pg-kodomo .sec02_box03ttl span {
  margin-left: 2em;
  padding: 0.5em 1.9em 0.5em 2em;
  border-radius: 0.4em;
  background-color: #0062b1;
  line-height: 1.4;
  text-align: center;
  font-size: 1.4em;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .pg-kodomo .sec02_box03ttl span {
    margin-left: 1em;
    padding: 0.5em 1em;
    font-size: 1.2em;
    font-weight: 400;
    letter-spacing: 0;
  }
}
.pg-kodomo .sec02_box03txt {
  display: inline-block;
  margin: 3% 0;
  text-align: left;
}
@media screen and (max-width: 750px) {
  .pg-kodomo .sec02_box03txt {
    margin: 5% 0;
    font-size: 1.2em;
  }
}
.pg-kodomo .sec02_box03txt p {
  line-height: 1.4;
  font-size: 1.6em;
  font-weight: 700;
}
.pg-kodomo .sec02_box03txt ul {
  margin-top: 1em;
  line-height: 1.4;
  font-size: 1.2em;
}
.pg-kodomo .sec02_box03txt ul li {
  padding-left: 1em;
  text-indent: -1em;
  text-align: justify;
}
.pg-kodomo .sec02_box03 .more_btn a {
  margin: 0 auto;
}
.pg-kodomo .sec03 {
  padding-top: min(10%, 110px);
  background-color: #FFFCE4;
}
@media screen and (max-width: 750px) {
  .pg-kodomo .sec03 {
    position: relative;
    padding-top: 20%;
  }
}
@media screen and (max-width: 750px) {
  .pg-kodomo .sec03 .sec02_img01__sp {
    position: relative;
  }
}
.pg-kodomo .sec03 .sec_title {
  position: absolute;
  top: 0;
  left: 0;
}
.pg-kodomo .sec03 .sec_title > span {
  box-shadow: 2px 2px 10px rgba(17, 17, 17, 0.2);
}
.pg-kodomo .sec03_box01 {
  position: absolute;
  display: inline-block;
  padding: 1.5em;
  border-radius: 1em;
  background-color: #fff;
}
@media screen and (min-width: 751px), print {
  .pg-kodomo .sec03_box01 {
    bottom: 5%;
    left: 5%;
  }
}
@media screen and (max-width: 750px) {
  .pg-kodomo .sec03_box01 {
    bottom: 5vw;
    left: 5vw;
    font-size: 0.8em;
  }
}
.pg-kodomo .sec03_box01 .secSubttl {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 1em;
  border-radius: 1em;
  background-color: #DC6987;
  font-weight: 700;
  color: #fff;
}
.pg-kodomo .sec03_box01 .secSubttl span {
  margin-left: 0.75em;
  padding: 0.5em;
  border-radius: 0.4em;
  background-color: #fff;
  font-size: 1.4em;
  font-weight: 400;
  color: #111;
}
.pg-kodomo .sec03_box01 .secSubttl em {
  font-size: 3.2em;
  font-style: normal;
}
.pg-kodomo .sec03_box01_text01 {
  margin-top: 1em;
  font-size: 1.2em;
}
@media screen and (max-width: 750px) {
  .pg-kodomo .sec03_box01_text01 {
    font-size: 1.6em;
  }
}
.pg-kodomo .sec03 .casestudy_list li a {
  border-color: #DC6987;
}
.pg-kodomo .sec03 .casestudy_list li a h4 {
  border-color: #DC6987;
  background-color: rgba(220, 105, 135, 0.1);
  color: #DC6987;
}
.pg-kodomo .sec03 .casestudy_list li a i {
  background-color: #DC6987;
}
.pg-kodomo .sec04 {
  padding-top: min(10%, 110px);
  background-color: #FFFCE4;
}
@media screen and (max-width: 750px) {
  .pg-kodomo .sec04 {
    position: relative;
    padding-top: 20%;
  }
}
.pg-kodomo .sec04 .sec_title {
  position: absolute;
  top: 0;
  left: 0;
}
.pg-kodomo .sec04 .sec_title > span {
  box-shadow: 2px 2px 10px rgba(17, 17, 17, 0.2);
}
.pg-kodomo .sec04 .reason_list .slick-arrow {
  border-color: #DC6987;
  background-color: #DC6987;
}
@media screen and (min-width: 751px), print {
  .pg-kodomo .sec04 .reason_list .slick-arrow:hover {
    background-color: #fff;
    color: #DC6987;
  }
}
.pg-kodomo .sec04 .reason_item {
  padding-bottom: 11em;
  border-color: #DC6987;
  background-position: center bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
@media screen and (max-width: 750px) {
  .pg-kodomo .sec04 .reason_item {
    padding-bottom: 10em;
  }
}
.pg-kodomo .sec04 .reason_item.item01 {
  background-image: url(/assets/images/kodomo/sec04_img02a.png);
}
.pg-kodomo .sec04 .reason_item.item02 {
  background-image: url(/assets/images/kodomo/sec04_img02b.png);
}
.pg-kodomo .sec04 .reason_item.item02 dd {
  padding-right: 25%;
}
.pg-kodomo .sec04 .reason_item.item03 {
  background-image: url(/assets/images/kodomo/sec04_img02c.png);
}
.pg-kodomo .sec04 .reason_item.item05 {
  background-image: url(/assets/images/kodomo/sec04_img02d.png);
}
.pg-kodomo .sec04 .reason_item p span {
  border-color: #DC6987;
  background-color: #DC6987;
}
.pg-kodomo .notes-img {
  padding: min(10%, 40px) 0 min(10%, 30px);
  background-color: #FFFCE4;
}
.pg-kodomo .f-button.is-close-btn {
  background-color: #DC6987;
}

/* end pg-kodomo */
/* ==============================
  生命共済
============================== */
.pg-kenmin .sec01 {
  padding: min(10%, 110px) 0 min(7%, 80px);
}
.pg-kenmin .sec01_inner {
  position: relative;
}
.pg-kenmin .sec01_box01 {
  background: url(/assets/images/kenmin/sec01_img01__pc.webp) right 5%/45% auto no-repeat;
}
@media screen and (max-width: 750px) {
  .pg-kenmin .sec01_box01 {
    margin-bottom: 8%;
    padding-bottom: 0;
    background: url(/assets/images/kasai/sec01_img.png) right bottom/43% auto no-repeat;
  }
}
.pg-kenmin .sec01_box01 .sec_title span {
  padding: 0.3em 1em 0.5em;
  font-size: min(4.6em, 4vw);
}
.pg-kenmin .sec01_text01 {
  margin-top: 1.25em;
  line-height: 1.4;
  font-size: min(4em, 4vw);
  font-weight: 700;
  letter-spacing: 0.05em;
  color: #0062b1;
}
@media screen and (max-width: 750px) {
  .pg-kenmin .sec01_text01 {
    font-size: min(3em, 5.2vw);
  }
}
.pg-kenmin .sec01_text01 em {
  font-size: 1.4em;
  font-style: normal;
}
.pg-kenmin .sec01_text01 sup {
  vertical-align: super;
  font-size: 0.3em;
  font-weight: 400;
  color: #111;
}
.pg-kenmin .sec01_text01 small {
  display: block;
  margin-top: 0.5em;
  font-size: 0.4em;
  font-weight: 400;
  letter-spacing: 0;
  color: #111;
}
@media screen and (max-width: 750px) {
  .pg-kenmin .sec01_text01 small {
    font-size: 0.5em;
  }
}
.pg-kenmin .sec01_text02 {
  margin-top: 1em;
  line-height: 1.8em;
  font-size: min(1.6em, 2.2vw);
}
@media screen and (max-width: 750px) {
  .pg-kenmin .sec01_text02 {
    font-size: min(2.6em, 4.2vw);
    text-shadow: 1px 1px 2px #fff;
  }
}
.pg-kenmin .sec01_text02 em {
  font-size: 1.4em;
  font-style: normal;
  color: #CA5E37;
}
.pg-kenmin .sec01_text03 {
  margin-top: 1em;
  line-height: 1.6;
  font-size: min(1.2em, 2vw);
}
.pg-kenmin .sec01_nav {
  position: absolute;
  top: 0;
  right: 0;
  padding: 0 1em;
  border-radius: 1em;
  background-color: #BBE2F7;
}
@media screen and (max-width: 750px) {
  .pg-kenmin .sec01_nav {
    position: static;
    margin-top: 5%;
    margin-bottom: 5%;
  }
}
.pg-kenmin .sec01_nav li a {
  display: flex;
  align-items: center;
  padding: 0.5em;
  line-height: 1.4;
  font-size: min(1.4em, 1.4vw);
}
@media screen and (max-width: 750px) {
  .pg-kenmin .sec01_nav li a {
    font-size: min(2em, 4vw);
  }
}
.pg-kenmin .sec01_nav li a::before {
  content: "";
  display: block;
  width: 1em;
  height: 1em;
  margin-right: 0.5em;
  background: url(/assets/images/kenmin/sec01_nav_arrow.svg) center center/contain no-repeat;
}
.pg-kenmin .sec01_nav li a:hover {
  color: #0062b1;
}
.pg-kenmin .sec01_nav li:not(:last-child) a {
  border-bottom: solid 1px #fff;
}
.pg-kenmin .instagram {
  display: flex;
  align-items: center;
  padding-bottom: min(10%, 110px);
}
@media screen and (max-width: 750px) {
  .pg-kenmin .instagram {
    display: block;
  }
}
.pg-kenmin .instagramTxt {
  width: 55%;
}
@media screen and (max-width: 750px) {
  .pg-kenmin .instagramTxt {
    width: 100%;
  }
}
.pg-kenmin .instagramImg {
  flex: 1;
}
@media screen and (max-width: 750px) {
  .pg-kenmin .instagramImg {
    width: 90%;
    margin: 7% auto 10%;
  }
}
.pg-kenmin .instagramBtn a {
  display: block;
  width: 65%;
}
@media screen and (max-width: 750px) {
  .pg-kenmin .instagramBtn a {
    width: 80%;
    margin: 0 auto;
  }
}
.pg-kenmin .instagram p {
  margin-top: 2em;
  line-height: 1.8;
  font-size: 1.6em;
}
@media screen and (max-width: 750px) {
  .pg-kenmin .instagram p {
    font-size: 1.8em;
  }
  .pg-kenmin .instagram p:first-of-type {
    margin-top: 1.5em;
  }
  .pg-kenmin .instagram p span {
    display: inline-block;
  }
}
.pg-kenmin .officialsns {
  padding-top: 0;
}
.pg-kenmin .bnr0401 {
  padding-top: min(10%, 110px);
  background-color: #FFFCE4;
}
.pg-kenmin .bnr0401 p {
  margin-top: 1em;
  line-height: 1.6;
  font-size: 1.2em;
}
.pg-kenmin .sec02 {
  padding-top: min(10%, 110px);
  background-color: #FFFCE4;
}
@media screen and (max-width: 750px) {
  .pg-kenmin .sec02 {
    position: relative;
    padding-top: 20%;
  }
}
@media screen and (max-width: 750px) {
  .pg-kenmin .sec02_inner01 {
    position: absolute;
    top: 10vw;
    width: 100%;
  }
}
.pg-kenmin .sec02_box01 {
  position: relative;
  padding-top: 5%;
}
@media screen and (max-width: 750px) {
  .pg-kenmin .sec02_box01 {
    width: 90vw;
    margin: 0 auto;
  }
}
.pg-kenmin .sec02_img01__pc {
  text-align: center;
}
.pg-kenmin .sec02_img01__pc img {
  border-radius: 2em;
}
.pg-kenmin .sec02 .sec_title {
  position: absolute;
  top: 0;
  left: 0;
}
.pg-kenmin .sec02 .sec_title > span {
  box-shadow: 2px 2px 10px rgba(17, 17, 17, 0.2);
}
.pg-kenmin .sec02_text01 {
  position: absolute;
  top: 0;
  right: 6%;
  writing-mode: vertical-rl;
  white-space: nowrap;
  line-height: 1.6;
  font-size: min(3.4em, 3vw);
  font-weight: 700;
  color: #0062b1;
  text-shadow: 0 0 5px #fff, 0 0 7px #fff, 0 0 10px #fff;
}
@media screen and (max-width: 750px) {
  .pg-kenmin .sec02_text01 {
    right: 0;
    font-size: 2.6em;
    text-shadow: -1px -1px 2px #fff, 1px -1px 2px #fff, 1px 1px 2px #fff, -1px 1px 2px #fff;
  }
}
.pg-kenmin .sec02_inner02 {
  margin-top: min(8%, 80px);
  border: solid 3px #0062b1;
  border-radius: 2em;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .pg-kenmin .sec02_inner02 {
    border-width: 2px;
  }
}
.pg-kenmin .sec02_box02 {
  width: min(90%, 920px);
  margin: 0 auto;
  padding: min(5%, 40px) 0 min(7%, 55px);
}
@media screen and (max-width: 750px) {
  .pg-kenmin .sec02_box02 {
    padding-bottom: 5%;
  }
}
.pg-kenmin .sec02_box02 .secSubttl {
  margin-bottom: 1em;
  line-height: 1.4;
  text-align: center;
  font-size: min(4em, 3vw);
  font-weight: 700;
  color: #CA5E37;
}
@media screen and (max-width: 750px) {
  .pg-kenmin .sec02_box02 .secSubttl {
    font-size: 3em;
  }
}
.pg-kenmin .sec02_img03 {
  margin-top: min(8%, 80px);
  padding: 0 4% 4%;
  border-radius: 2em;
  background-color: #FCE7C7;
}
@media screen and (max-width: 750px) {
  .pg-kenmin .sec02_img03 {
    margin-top: 15%;
    padding: 0 5% 7%;
  }
}
.pg-kenmin .sec02_img03 .secBoxttl {
  text-align: center;
}
.pg-kenmin .sec02_img03 .secBoxttl span {
  transform: translateY(-50%);
  display: inline-block;
  padding: 0.75em 2em;
  border: solid 1px #CA5E37;
  border-radius: 4em;
  background-color: #fff;
  font-size: 1.6em;
}
.pg-kenmin .sec02_img03 dl {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .pg-kenmin .sec02_img03 dl {
    display: block;
  }
}
.pg-kenmin .sec02_img03 dl:not(:last-of-type) {
  margin-bottom: 2.5%;
  padding-bottom: 2.5%;
  border-bottom: solid 1px #aaa;
}
@media screen and (max-width: 750px) {
  .pg-kenmin .sec02_img03 dl:not(:last-of-type) {
    margin-bottom: 5%;
    padding-bottom: 8%;
  }
}
.pg-kenmin .sec02_img03 dl dt {
  width: 40%;
}
@media screen and (max-width: 750px) {
  .pg-kenmin .sec02_img03 dl dt {
    width: 94%;
    margin: 0 auto 5%;
  }
}
.pg-kenmin .sec02_img03 dl dd {
  width: 55%;
}
@media screen and (max-width: 750px) {
  .pg-kenmin .sec02_img03 dl dd {
    width: 96%;
    margin: 0 auto;
  }
}
.pg-kenmin .sec02_img03 dl dd p:first-child {
  font-size: min(1.8em, 1.8vw);
}
@media screen and (max-width: 750px) {
  .pg-kenmin .sec02_img03 dl dd p:first-child {
    font-size: 1.7em;
  }
}
.pg-kenmin .sec02_img03 dl dd p:first-child em {
  margin-right: 0.1em;
  font-size: 1.8em;
  font-style: normal;
  font-weight: 700;
}
.pg-kenmin .sec02_img03 dl dd p:first-child .red {
  color: #f00;
}
.pg-kenmin .sec02_img03 dl dd p:first-child .blue {
  color: #0062b1;
}
.pg-kenmin .sec02_img03 dl dd p:first-child .orange {
  color: #CA5E37;
}
.pg-kenmin .sec02_img03 dl dd p:last-child {
  margin-top: 1em;
  line-height: 1.6;
  font-size: min(1.6em, 1.45vw);
}
@media screen and (max-width: 750px) {
  .pg-kenmin .sec02_img03 dl dd p:last-child {
    margin-top: 0.5em;
    font-size: 1.6em;
  }
}
.pg-kenmin .sec02_img03 dl dd p:last-child small {
  display: block;
  margin-top: 0.5em;
  padding-left: 1em;
  text-indent: -1em;
  font-size: 0.6em;
}
@media screen and (max-width: 750px) {
  .pg-kenmin .sec02_img03 dl dd p:last-child small {
    font-size: 0.7em;
  }
}
.pg-kenmin .sec02_box03 {
  margin-top: min(5%, 30px);
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
}
.pg-kenmin .sec02_box03 span {
  display: block;
  font-size: 2em;
}
.pg-kenmin .sec02_box03 i {
  width: 1.6em;
  height: 1.6em;
  margin-top: 0.25em;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #111;
  border-radius: 50%;
  font-size: 2.8em;
  color: #fff;
}
.pg-kenmin .sec02_box04 {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 750px) {
  .pg-kenmin .sec02_box04 {
    display: block;
  }
}
.pg-kenmin .sec02_sbox {
  width: min(48%, 510px);
  margin: min(7%, 30px) 0 0;
  font-weight: 700;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .pg-kenmin .sec02_sbox {
    width: 100%;
  }
}
.pg-kenmin .sec02_sbox.orange {
  color: #CA5E37;
}
.pg-kenmin .sec02_sbox.blue {
  color: #0062b1;
}
.pg-kenmin .sec02_sbox > p:first-child {
  margin-bottom: 1em;
  line-height: 1.4;
  font-size: 2.6em;
}
@media screen and (max-width: 750px) {
  .pg-kenmin .sec02_sbox > p:first-child {
    font-size: 3em;
    margin-bottom: 0.5em;
  }
}
.pg-kenmin .sec02_sboxbg {
  padding: 5%;
  border-radius: 1em;
}
.pg-kenmin .sec02_sboxbg h4 {
  font-size: 3.6em;
}
.pg-kenmin .sec02_sboxbg p:first-of-type {
  margin: 1em 0;
  line-height: 1.6;
  font-size: 1.3em;
  font-weight: 400;
  color: #111;
}
@media screen and (max-width: 750px) {
  .pg-kenmin .sec02_sboxbg p:first-of-type {
    font-size: 1.5em;
  }
}
.pg-kenmin .sec02_sboxbg p:nth-of-type(2) {
  margin-bottom: 1em;
  font-size: 1.7em;
  font-weight: 400;
}
@media screen and (max-width: 750px) {
  .pg-kenmin .sec02_sboxbg p:nth-of-type(2) {
    font-size: 1.8em;
  }
}
.pg-kenmin .sec02_sboxbg p:nth-of-type(2) span {
  display: inline-block;
}
.pg-kenmin .sec02_sboxbg p:nth-of-type(2) span::before, .pg-kenmin .sec02_sboxbg p:nth-of-type(2) span::after {
  content: "";
  display: inline-block;
  vertical-align: bottom;
  width: 2em;
  height: 1.2em;
  background-repeat: no-repeat;
  background-size: contain;
}
.pg-kenmin .sec02_sboxbg p:nth-of-type(2) span::before {
  background-position: center center;
}
.pg-kenmin .sec02_sboxbg p:nth-of-type(2) span::after {
  background-position: right center;
  transform: scaleX(-1);
}
.pg-kenmin .sec02_sboxbg p:last-of-type a {
  width: min(90%, 354px);
  align-items: center;
  border: solid 1px;
  background-color: #999;
  padding: 0.75em 0.75em 0.75em 1em;
  border-radius: 10em;
  font-size: 1.4em;
  letter-spacing: 0.05em;
  color: #fff;
}
@media screen and (min-width: 751px), print {
  .pg-kenmin .sec02_sboxbg p:last-of-type a.forpc {
    display: flex;
    margin: 0 auto;
    transition: 0.3s;
  }
}
@media screen and (max-width: 750px) {
  .pg-kenmin .sec02_sboxbg p:last-of-type a.forsp {
    display: flex;
    margin: 0 auto;
  }
}
.pg-kenmin .sec02_sboxbg p:last-of-type a::after {
  content: "";
  display: block;
  width: 1.6em;
  height: 1.6em;
  border-radius: 50%;
  background: url(/assets/images/common/request_a_icon.svg) center center/contain no-repeat #fff;
  box-shadow: 0 0 2px #999;
}
.pg-kenmin .sec02_sboxbg p:last-of-type a span {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}
.pg-kenmin .sec02_sboxbg p:last-of-type a em {
  font-size: 1.7em;
  font-style: normal;
  letter-spacing: 0.1em;
}
.pg-kenmin .sec02_sboxbg.orange {
  background-color: #fdecea;
}
.pg-kenmin .sec02_sboxbg.orange p:nth-of-type(2) span::before, .pg-kenmin .sec02_sboxbg.orange p:nth-of-type(2) span::after {
  background-image: url(/assets/images/kasai/mark_orange.svg);
}
.pg-kenmin .sec02_sboxbg.orange p:last-of-type a {
  border-color: #CA5E37;
  background-color: #CA5E37;
  box-shadow: 1px 2px 0 #b75430;
}
@media screen and (min-width: 751px), print {
  .pg-kenmin .sec02_sboxbg.orange p:last-of-type a:hover {
    background-color: #fff;
    color: #CA5E37;
  }
}
.pg-kenmin .sec02_sboxbg.blue {
  background-color: #ddf1fc;
}
.pg-kenmin .sec02_sboxbg.blue p:nth-of-type(2) span::before, .pg-kenmin .sec02_sboxbg.blue p:nth-of-type(2) span::after {
  background-image: url("/assets/images/kasai/mark_blue.svg");
}
.pg-kenmin .sec02_sboxbg.blue p:last-of-type a {
  border-color: #0062b1;
  background-color: #0062b1;
  box-shadow: 1px 2px 0 #004596;
}
@media screen and (min-width: 751px), print {
  .pg-kenmin .sec02_sboxbg.blue p:last-of-type a:hover {
    background-color: #fff;
    color: #0062b1;
  }
}
.pg-kenmin .sec02_inner03 {
  padding: 5% 0;
}
.pg-kenmin .lineup .forpc .lineupTab {
  display: flex;
  justify-content: space-between;
}
.pg-kenmin .lineup .forpc .lineupTab li {
  width: 32%;
}
.pg-kenmin .lineup .forpc .lineupTab li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  padding: 5% 0 13%;
  border: solid 2px #DDF1FC;
  border-radius: 1em 1em 0 0;
  background-color: #DDF1FC;
  transition: 0.3s;
}
.pg-kenmin .lineup .forpc .lineupTab li a::after {
  content: "";
  width: 3em;
  height: 3em;
  border: solid #0062b1;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.pg-kenmin .lineup .forpc .lineupTab li a span {
  width: min(90%, 320px);
  margin: 0 auto;
}
.pg-kenmin .lineup .forpc .lineupTab li a em {
  margin-bottom: 0.25em;
  line-height: 1.4;
  text-align: center;
  font-size: min(3.4em, 2.8vw);
  font-weight: 700;
  font-style: normal;
  color: #0062b1;
}
.pg-kenmin .lineup .forpc .lineupTab li a em small {
  display: inline-block;
  margin-left: 0.25em;
  font-size: 0.6em;
}
.pg-kenmin .lineup .forpc .lineupTab li:hover a {
  border-color: #0062b1;
}
.pg-kenmin .lineup .forpc .lineupTab li.selected a {
  border-color: #0062b1;
  background-color: #0062b1;
}
.pg-kenmin .lineup .forpc .lineupTab li.selected a::after {
  border-color: #fff;
}
.pg-kenmin .lineup .forpc .lineupTab li.selected a em {
  color: #fff;
}
.pg-kenmin .lineup .forpc .lineupBody {
  position: relative;
  margin-top: -3%;
  padding: 3%;
  border: solid 4px #0062b1;
  border-radius: 2em;
  background-color: #fff;
}
.pg-kenmin .lineup .forpc .lineupBody > div {
  display: none;
  position: relative;
}
.pg-kenmin .lineup .forpc .lineupBody > div.selected {
  display: block;
}
.pg-kenmin .lineup .forpc .lineupBody .linkBtn {
  position: absolute;
  width: 22%;
}
.pg-kenmin .lineup .forpc .lineupBody .linkBtn.btn01 {
  bottom: 3%;
  left: 5%;
}
.pg-kenmin .lineup .forpc .lineupBody .linkBtn.btn02 {
  bottom: 3%;
  left: 39%;
}
.pg-kenmin .lineup .forpc .lineupBody .linkBtn.btn03 {
  bottom: 3%;
  right: 5%;
}
.pg-kenmin .lineup .forpc .lineupBody .linkBtn.btn04 {
  bottom: 4%;
  left: 39%;
}
.pg-kenmin .lineup .forpc .lineupBody .linkBtn.btn05 {
  bottom: 3%;
  left: 13%;
}
.pg-kenmin .lineup .forpc .lineupBody .linkBtn.btn06 {
  bottom: 3%;
  left: 65%;
}
.pg-kenmin .lineup .forsp .lineupTab li a > * {
  margin-top: -2rem;
  padding: 1rem 1rem 3.5rem;
  border: solid #0062b1;
  border-width: 2px 2px 0;
  border-radius: 1.5rem 1.5rem 0 0;
  text-align: center;
  font-size: 2.8em;
  font-weight: 700;
}
.pg-kenmin .lineup .forsp .lineupTab li a > *.tabContent01 {
  display: block;
  background-color: #DCF0FB;
}
.pg-kenmin .lineup .forsp .lineupTab li a > *.tabContent02 {
  display: none;
  padding: 1rem 0 3.5rem;
  background-color: #0062b1;
}
.pg-kenmin .lineup .forsp .lineupTab li.selected a > *.tabContent01 {
  display: none;
}
.pg-kenmin .lineup .forsp .lineupTab li.selected a > *.tabContent02 {
  display: block;
}
.pg-kenmin .lineup .forsp .lineupBody {
  margin-top: -2rem;
  border: solid 2px #0062b1;
  border-radius: 1.5rem;
  background-color: #fff;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.pg-kenmin .lineup .forsp .lineupBody > div {
  display: none;
  position: relative;
}
.pg-kenmin .lineup .forsp .lineupBody > div.selected {
  display: block;
}
.pg-kenmin .lineup .forsp .lineupBody > div > div > img {
  border-radius: 1.5rem;
}
.pg-kenmin .lineup .forsp .lineupBody .linkBtn {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 40%;
}
.pg-kenmin .lineup .forsp .lineupBody .linkBtn.btn01 {
  top: 38.5%;
}
.pg-kenmin .lineup .forsp .lineupBody .linkBtn.btn02 {
  top: 66.5%;
}
.pg-kenmin .lineup .forsp .lineupBody .linkBtn.btn03 {
  top: 95%;
}
.pg-kenmin .lineup .forsp .lineupBody .linkBtn.btn04 {
  top: 94.5%;
}
.pg-kenmin .lineup .forsp .lineupBody .linkBtn.btn05 {
  top: 54%;
}
.pg-kenmin .lineup .forsp .lineupBody .linkBtn.btn06 {
  top: 94%;
}
.pg-kenmin .moreover > dl {
  line-height: 1.4;
  text-align: center;
}
.pg-kenmin .moreover > dl > dt {
  margin: 0.5em 0 0.25em;
  font-size: min(4em, 4vw);
  font-weight: 700;
  color: #00A3D1;
}
@media screen and (max-width: 750px) {
  .pg-kenmin .moreover > dl > dt {
    font-size: 5vw;
  }
}
.pg-kenmin .moreover > dl > dd {
  line-height: 1.6;
  font-size: 2em;
}
@media screen and (max-width: 750px) {
  .pg-kenmin .moreover > dl > dd {
    font-size: 1.6em;
  }
}
.pg-kenmin .moreoverBody {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-evenly;
  margin-top: 5%;
  padding: 3% 0;
  background-color: #DFF2FC;
}
@media screen and (min-width: 751px), print {
  .pg-kenmin .moreoverBody {
    border-radius: 1em;
  }
}
@media screen and (max-width: 750px) {
  .pg-kenmin .moreoverBody {
    position: relative;
    left: -5vw;
    width: 100vw;
    padding: 3% 0 0;
  }
}
.pg-kenmin .moreoverBody dl {
  width: 22%;
  padding: 2%;
  border-radius: 1em;
  background-color: #F0FFE6;
  text-align: center;
  font-weight: 400;
}
@media screen and (max-width: 750px) {
  .pg-kenmin .moreoverBody dl {
    width: 46%;
    margin-bottom: 3%;
  }
}
.pg-kenmin .moreoverBody dl dt {
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 3em;
  border-radius: 10em;
  background-color: #00A3D1;
  font-size: min(2em, 2vw);
  color: #fff;
}
@media screen and (max-width: 750px) {
  .pg-kenmin .moreoverBody dl dt {
    font-size: 2em;
  }
}
.pg-kenmin .moreoverBody dl dd {
  margin-top: 0.5em;
  line-height: 1.4;
  font-size: min(1.6em, 1.6vw);
}
@media screen and (max-width: 750px) {
  .pg-kenmin .moreoverBody dl dd {
    font-size: 1.6em;
  }
}
.pg-kenmin .casestudy_list li a {
  border-color: #0062b1;
}
.pg-kenmin .casestudy_list li a h4 {
  border-color: #0062b1;
  background-color: rgba(0, 98, 177, 0.1);
  color: #0062b1;
}
.pg-kenmin .casestudy_list li a i {
  background-color: #0062b1;
}
.pg-kenmin .casestudy_notesbox {
  line-height: 1.6;
}
.pg-kenmin .casestudy_notesbox dt {
  margin: 1em 0 0.5em;
  font-size: min(2em, 2.2vw);
  color: #0062b1;
}
@media screen and (max-width: 750px) {
  .pg-kenmin .casestudy_notesbox dt {
    font-size: 3vw;
  }
}
.pg-kenmin .casestudy_notesbox dd {
  font-size: min(1.6em, 1.6vw);
}
@media screen and (max-width: 750px) {
  .pg-kenmin .casestudy_notesbox dd {
    font-size: 2.6vw;
  }
}
.pg-kenmin .casestudy_notesbox dd.casestudy_notes {
  margin-top: 0;
}
.pg-kenmin .f-button.is-close-btn {
  background-color: #0062b1;
}
.pg-kenmin .reason_list .slick-arrow {
  border-color: #0062b1;
  background-color: #0062b1;
}
@media screen and (min-width: 751px), print {
  .pg-kenmin .reason_list .slick-arrow:hover {
    background-color: #fff;
    color: #0062b1;
  }
}
.pg-kenmin .reason_item {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding-bottom: 2em;
  border-color: #0062b1;
  background-position: center bottom;
  background-size: 100% auto;
  background-repeat: no-repeat;
}
.pg-kenmin .reason_item p span {
  border-color: #0062b1;
  background-color: #0062b1;
}
.pg-kenmin .reason_item figure {
  width: 90%;
  margin: auto auto 0;
}
.pg-kenmin .reason_item figure:last-child {
  margin-bottom: 0;
}
.pg-kenmin .notes-img {
  padding: min(10%, 40px) 0 min(10%, 30px);
  background-color: #FFFCE4;
}

/* end pg-kenmin */
/* ==============================
  2024.03.28 Update
  サイトメンテナンス告知
============================== */
.maintenance {
  background-color: #fff;
}
.maintenance_inner {
  margin-top: 30px;
  padding: 30px;
  border: solid 1px #111;
  background-color: #fff;
  line-height: 1.4;
  text-align: center;
  font-size: 1.8rem;
}
.maintenance_inner dl {
  display: inline-block;
}
.maintenance_inner dl dt {
  margin: 0.5em 0 0.5em;
  font-weight: 400;
}
.maintenance_inner dl dd {
  position: relative;
  margin: 0 0.5em;
  padding-left: 1em;
  text-align: left;
  font-weight: 600;
  color: #f00;
}
.maintenance_inner dl dd::before {
  content: "・";
  position: absolute;
  left: 0;
}
.maintenance_inner p {
  margin-top: 1em;
}
.maintenance_inner p a {
  text-decoration: underline;
  color: #0062b1;
}
@media screen and (min-width: 751px), print {
  .maintenance_inner p a:hover {
    text-decoration: none;
  }
}
@media screen and (max-width: 750px) {
  .maintenance_inner {
    margin-top: 10vw;
    padding: 1em;
    line-height: 1.6;
    font-size: 2rem;
  }
  .maintenance_inner h2 {
    line-height: 1.6;
  }
  .maintenance_inner dl dd {
    margin: 0;
  }
}

/* end maintenance */
/* ==============================
  組合員特典のご案内
============================== */
@media screen and (min-width: 751px), print {
  .pg-benefit .hero {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    height: max(56vw, 400px);
    background: url(/assets/images/benefit/hero_bg__pc.webp) center center/cover no-repeat;
  }
  .pg-benefit .hero_title {
    width: clamp(300px, 60%, 730px);
    margin-bottom: 10vw;
  }
}
.pg-benefit main {
  position: relative;
}
.pg-benefit .instagram {
  padding: min(7%, 80px) 0 50px;
}
.pg-benefit .subnav {
  position: sticky;
  z-index: 10;
  top: 0;
  width: 100%;
  height: 110px;
  background-color: #fff;
  overflow: visible;
}
.pg-benefit .subnav_inner {
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
}
.pg-benefit .subnav_inner dl {
  width: 48.1818181818%;
}
.pg-benefit .subnav_inner dl dt {
  height: 70px;
  padding: 0 1em;
  display: flex;
  align-items: center;
  font-size: 2em;
  color: #fff;
  cursor: pointer;
}
.pg-benefit .subnav_inner dl dt span {
  flex: 1;
  text-align: center;
}
.pg-benefit .subnav_inner dl dt::after {
  content: "";
  width: 1.2em;
  height: 1.2em;
  background: url(/assets/images/benefit/subnav_arw.svg) center center/contain no-repeat;
}
.pg-benefit .subnav_inner dl dd {
  display: none;
}
.pg-benefit .subnav_inner dl dd ul {
  border-bottom: solid 2px;
  background-color: #fff;
}
.pg-benefit .subnav_inner dl dd ul li {
  border-width: 2px 2px 0;
}
.pg-benefit .subnav_inner dl.subnav-blue dt {
  background-color: #0062B1;
}
.pg-benefit .subnav_inner dl.subnav-blue dd ul {
  border-color: #0062B1;
}
.pg-benefit .subnav_inner dl.subnav-blue dd ul li {
  border-color: #0062B1;
}
.pg-benefit .subnav_inner dl.subnav-pink dt {
  background-color: #FF5E64;
}
.pg-benefit .subnav_inner dl.subnav-pink dd ul {
  border-color: #FF5E64;
}
.pg-benefit .subnav_inner dl.subnav-pink dd ul li {
  border-color: #FF5E64;
}
@media screen and (max-width: 750px) {
  .pg-benefit .subnav {
    top: 16vw;
    height: 10vw;
    background-color: transparent;
  }
  .pg-benefit .subnav_inner {
    padding: 0;
  }
  .pg-benefit .subnav_inner dl {
    width: 49%;
  }
  .pg-benefit .subnav_inner dl dt {
    height: 10vw;
    padding: 0 0.5em;
    font-size: 1.8em;
  }
}
.pg-benefit .headline_title {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 40px;
  text-align: center;
  font-size: 2.4em;
  font-weight: 700;
  color: #5B3219;
}
.pg-benefit .headline_title span::before {
  content: "";
  display: inline-block;
  width: 3em;
  height: 1em;
  margin-right: 0.75em;
  background: url(/assets/images/benefit/headline_title.svg) center center no-repeat;
}
.pg-benefit .headline_title span::after {
  content: "";
  display: inline-block;
  width: 3em;
  height: 1em;
  margin-left: 0.75em;
  background: url(/assets/images/benefit/headline_title.svg) center center no-repeat;
}
.pg-benefit .headline_border {
  padding: 0.75em 0.5em;
  border: solid 1px #0062b1;
  line-height: 1.6;
  text-align: center;
  font-size: 1.9em;
  color: #0062b1;
}
.pg-benefit .headline_notes {
  margin-top: 20px;
  padding: 0 0 min(10%, 110px);
  line-height: 1.6;
  text-align: center;
  font-size: 1.4em;
}
@media screen and (max-width: 750px) {
  .pg-benefit .headline_title {
    font-size: 2.8em;
  }
  .pg-benefit .headline_border {
    margin-top: 1em;
    padding: 1em;
    text-align: left;
  }
  .pg-benefit .headline_notes {
    text-align: left;
    font-size: 1.6em;
  }
}
.pg-benefit .present {
  position: relative;
}
.pg-benefit .present > span.anc_point {
  position: absolute;
  top: -110px;
  left: 0;
  width: 0;
  height: 0;
}
@media screen and (max-width: 750px) {
  .pg-benefit .present > span.anc_point {
    top: -26vw;
  }
}
.pg-benefit .present_inner {
  position: relative;
  width: min(100%, 1220px);
  margin: 0 auto;
}
.pg-benefit .present_btn {
  position: absolute;
}
.pg-benefit .present_btn a[href="#"] {
  pointer-events: none;
}
.pg-benefit .present.p_dome {
  background-color: #D9F3FC;
}
.pg-benefit .present.p_dome .present_btn {
  top: 71.6883116883%;
  left: 47.3770491803%;
  width: 38.0327868852%;
}
@media screen and (max-width: 750px) {
  .pg-benefit .present.p_dome .present_btn {
    top: 84.4331641286%;
    left: 15.2%;
    width: 69.4666666667%;
  }
}
.pg-benefit .present.p_nagashima {
  background-color: #F9E6E1;
}
.pg-benefit .present.p_nagashima .present_btn {
  top: 71.6883116883%;
  left: 12.5409836066%;
  width: 38.0327868852%;
}
@media screen and (max-width: 750px) {
  .pg-benefit .present.p_nagashima .present_btn {
    top: 84.0947546531%;
    left: 15.8666666667%;
    width: 69.4666666667%;
  }
}
.pg-benefit .present.p_laguna {
  background-color: #E7F6F8;
}
.pg-benefit .present.p_laguna .present_btn {
  top: 71.6883116883%;
  left: 47.5409836066%;
  width: 38.0327868852%;
}
@media screen and (max-width: 750px) {
  .pg-benefit .present.p_laguna .present_btn {
    top: 84.4331641286%;
    left: 14.9333333333%;
    width: 69.4666666667%;
  }
}
.pg-benefit .present.p_misonoza {
  background-color: #E7E8F3;
}
.pg-benefit .present.p_misonoza .present_btn {
  top: 72.8571428571%;
  left: 10.9836065574%;
  width: 38.0327868852%;
}
@media screen and (max-width: 750px) {
  .pg-benefit .present.p_misonoza .present_btn {
    top: 82.7411167513%;
    left: 15.6%;
    width: 69.4666666667%;
  }
}
.pg-benefit .present.p_ransel {
  background-color: #FFFDE5;
}
.pg-benefit .present.p_ransel .present_btn.btn_a {
  top: 60.0716845878%;
  left: 26.2295081967%;
  width: 18.2786885246%;
}
.pg-benefit .present.p_ransel .present_btn.btn_b {
  top: 60.0716845878%;
  left: 60.6557377049%;
  width: 18.2786885246%;
}
.pg-benefit .present.p_ransel .present_btn.btn_c {
  top: 82.7956989247%;
  left: 36.6393442623%;
  width: 26.7213114754%;
}
@media screen and (max-width: 750px) {
  .pg-benefit .present.p_ransel .present_btn.btn_a {
    top: 44.6006749156%;
    left: 34.8%;
    width: 29.8666666667%;
  }
  .pg-benefit .present.p_ransel .present_btn.btn_b {
    top: 69.3475815523%;
    left: 34.8%;
    width: 29.8666666667%;
  }
  .pg-benefit .present.p_ransel .present_btn.btn_c {
    top: 87.9640044994%;
    left: 27.7333333333%;
    width: 43.4666666667%;
  }
}
.pg-benefit .present.p_suit {
  background-color: #FDEEE6;
}
.pg-benefit .present.p_suit .present_btn {
  top: 59.4936708861%;
  left: 52.4590163934%;
  width: 38.0327868852%;
}
@media screen and (max-width: 750px) {
  .pg-benefit .present.p_suit .present_btn {
    top: 81.0451727192%;
    left: 15.6%;
    width: 69.4666666667%;
  }
}
.pg-benefit .notes p {
  height: 2em;
  margin-top: -2em;
  font-size: 1.4em;
}
@media screen and (max-width: 750px) {
  .pg-benefit .notes p {
    font-size: 1.6em;
  }
}
.pg-benefit .snsinfo {
  margin: min(7%, 80px) auto;
  padding: 3% 0;
  border-radius: 3rem;
  background: url(/assets/images/benefit/snsinfo_bg.svg) center top/contain no-repeat #fff479;
}
@media screen and (max-width: 750px) {
  .pg-benefit .snsinfo {
    padding: 5% 0;
    border-radius: 1rem;
    background-size: 180% auto;
  }
}
.pg-benefit .snsinfo--header {
  padding: 0 5%;
  display: flex;
  justify-content: space-between;
}
.pg-benefit .snsinfo--header .col-text {
  width: 50%;
}
.pg-benefit .snsinfo--header .col-text .title {
  margin: 0.5em 0;
  line-height: 1.4;
  font-size: min(3rem, 2.6vw);
  font-weight: 900;
  letter-spacing: 0.05em;
  color: #0062b1;
}
.pg-benefit .snsinfo--header .col-text .col-flex {
  display: flex;
  align-items: center;
}
.pg-benefit .snsinfo--header .col-text .col-flex p {
  flex: 1;
  line-height: 1.6;
  font-size: min(1.7rem, 1.4vw);
  font-weight: 600;
}
.pg-benefit .snsinfo--header .col-text .col-flex figure {
  width: 26%;
}
.pg-benefit .snsinfo--header .col-img {
  width: 50%;
}
.pg-benefit .snsinfo--header .col-img figure {
  margin: 0 -5% 0 5%;
}
@media screen and (max-width: 750px) {
  .pg-benefit .snsinfo--header {
    display: block;
  }
  .pg-benefit .snsinfo--header .col-text {
    width: 100%;
  }
  .pg-benefit .snsinfo--header .col-text .title {
    margin: 10% 0 5%;
    text-align: center;
    font-size: 2.8rem;
  }
  .pg-benefit .snsinfo--header .col-text .col-flex {
    display: block;
  }
  .pg-benefit .snsinfo--header .col-text .col-flex p {
    text-align: center;
    font-size: 1.8rem;
  }
  .pg-benefit .snsinfo--header .col-text .col-flex figure {
    width: 36%;
    margin: 2rem auto 0;
  }
  .pg-benefit .snsinfo--header .col-img {
    width: 103%;
    margin: -5% -3% 0 0;
  }
  .pg-benefit .snsinfo--header .col-img figure {
    margin: 0;
  }
}
.pg-benefit .snsinfo--body {
  position: relative;
  width: 90%;
  margin: 3% auto 0;
  padding: 1.6rem;
  border-radius: 1.8rem;
  font-size: min(1.5rem, 1.2vw);
}
.pg-benefit .snsinfo--body .inner {
  padding: 4% 3% 3%;
  border-radius: 1.2rem;
}
.pg-benefit .snsinfo--body .subttl {
  line-height: 1.4;
  text-align: center;
  font-size: 1.9em;
  font-weight: 700;
}
.pg-benefit .snsinfo--body .subttl > span {
  display: inline-block;
}
.pg-benefit .snsinfo--body .button {
  margin: 2em 0;
  text-align: center;
}
.pg-benefit .snsinfo--body .button a {
  display: inline-block;
  min-width: 18em;
  padding: 1em;
  border-radius: 0.6em;
  text-align: center;
  font-size: min(2rem, 2vw);
  font-weight: 700;
  color: #fff;
  transition: 0.3s;
}
.pg-benefit .snsinfo--body .button a:hover {
  box-shadow: 0 1px 5px rgba(17, 17, 17, 0.3);
  opacity: 0.8;
}
@media screen and (max-width: 750px) {
  .pg-benefit .snsinfo--body {
    margin: 10% auto 0;
    font-size: 1.5rem;
  }
  .pg-benefit .snsinfo--body .inner {
    padding: 7% 5% 3%;
  }
  .pg-benefit .snsinfo--body .subttl {
    font-size: 1.5em;
  }
  .pg-benefit .snsinfo--body .button {
    margin: 5% 0 7%;
  }
  .pg-benefit .snsinfo--body .button a {
    min-width: initial;
    width: 100%;
    font-size: 2rem;
  }
}
.pg-benefit .snsinfo--insta {
  background-color: #ff00b9;
}
.pg-benefit .snsinfo--insta .inner {
  background-color: #fadfe7;
}
.pg-benefit .snsinfo--insta .subttl {
  color: #ff5297;
}
.pg-benefit .snsinfo--insta .button a {
  background: url(/assets/images/benefit/Instagram_glyph.png) center center/120% auto no-repeat;
}
.pg-benefit .snsinfo--insta .col-detail01 {
  padding: 2% 3% 3%;
  border-radius: 1.5rem;
  background-color: #fff;
}
.pg-benefit .snsinfo--insta .col-detail01 .detail-ttl {
  margin-bottom: 1em;
  line-height: 1.6;
  font-size: 1.1em;
  font-weight: 700;
}
.pg-benefit .snsinfo--insta .col-detail01 .detail-ttl em {
  position: relative;
  margin-right: 0.25em;
  font-size: 1.4em;
  font-style: normal;
  color: #ff5297;
}
.pg-benefit .snsinfo--insta .col-detail01 .detail-ttl em::before {
  content: "";
  position: absolute;
  top: 80%;
  left: 0;
  width: 100%;
  height: 0.4em;
  background: url(/assets/images/benefit/snsinfo_textdeco.svg) center center/auto 100% no-repeat;
}
.pg-benefit .snsinfo--insta .col-detail01 .detail-ttl em span {
  position: relative;
}
.pg-benefit .snsinfo--insta .col-detail01 .col-flex01 {
  display: flex;
  justify-content: space-between;
  gap: 1em;
}
.pg-benefit .snsinfo--insta .col-detail01 .col-flex01 figure {
  display: flex;
  align-items: center;
}
.pg-benefit .snsinfo--insta .col-detail01 .col-flex01 figure:not(:last-child) {
  position: relative;
}
.pg-benefit .snsinfo--insta .col-detail01 .col-flex01 figure:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1em;
  width: 0;
  height: 100%;
  border-right: dotted 2px #666;
}
.pg-benefit .snsinfo--insta .col-detail01 .col-flex01 figure img {
  width: calc(9.25em + 10px);
  margin-right: 0.5em;
  border: solid 0.3em #fff;
  box-shadow: 1px 1px 0.3em rgba(17, 17, 17, 0.3);
}
.pg-benefit .snsinfo--insta .col-detail01 .col-flex01 figure figcaption {
  flex: 1;
  line-height: 1.4;
  font-weight: 700;
}
@media screen and (max-width: 750px) {
  .pg-benefit .snsinfo--insta .col-detail01 {
    padding: 5%;
  }
  .pg-benefit .snsinfo--insta .col-detail01 .detail-ttl {
    margin-bottom: 1em;
    text-align: center;
  }
  .pg-benefit .snsinfo--insta .col-detail01 .col-flex01 {
    display: block;
  }
  .pg-benefit .snsinfo--insta .col-detail01 .col-flex01 figure:not(:last-child) {
    margin-bottom: 1em;
    padding-bottom: 1em;
    border-bottom: dotted 2px #999;
  }
  .pg-benefit .snsinfo--insta .col-detail01 .col-flex01 figure:not(:last-child)::after {
    content: none;
  }
  .pg-benefit .snsinfo--insta .col-detail01 .col-flex01 figure img {
    margin-right: 1.5em;
    border-width: 0.3em;
    box-shadow: 1px 1px 3px rgba(17, 17, 17, 0.3);
  }
}
.pg-benefit .snsinfo--insta .col-detail02 {
  margin-top: 1.5em;
}
.pg-benefit .snsinfo--insta .col-detail02 .col-flex02 {
  display: flex;
  justify-content: space-between;
}
.pg-benefit .snsinfo--insta .col-detail02 .col-flex02 figure {
  display: flex;
  flex-direction: row-reverse;
  align-items: center;
}
.pg-benefit .snsinfo--insta .col-detail02 .col-flex02 figure:not(:last-child) {
  position: relative;
}
.pg-benefit .snsinfo--insta .col-detail02 .col-flex02 figure:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 0;
  right: -1.75em;
  width: 0;
  height: 100%;
  border-right: dotted 2px #666;
}
.pg-benefit .snsinfo--insta .col-detail02 .col-flex02 figure:first-child img {
  width: 8em;
  margin-left: 1em;
}
.pg-benefit .snsinfo--insta .col-detail02 .col-flex02 figure:nth-child(2) img {
  width: 7em;
  margin-left: -1em;
}
.pg-benefit .snsinfo--insta .col-detail02 .col-flex02 figure:last-child img {
  width: 4.5em;
}
.pg-benefit .snsinfo--insta .col-detail02 .col-flex02 figure figcaption {
  flex: 1;
  line-height: 1.4;
}
.pg-benefit .snsinfo--insta .col-detail02 .col-flex02 figure figcaption em {
  font-size: 1.4em;
  font-weight: 700;
  font-style: normal;
  color: #ff5297;
}
.pg-benefit .snsinfo--insta .col-detail02 .col-flex02 figure figcaption span {
  color: #ff5297;
}
.pg-benefit .snsinfo--insta .col-detail02 .col-flex02 figure figcaption .bracket {
  display: block;
  transform: translateX(-0.5em);
}
@media screen and (max-width: 750px) {
  .pg-benefit .snsinfo--insta .col-detail02 .col-flex02 {
    display: block;
    width: 94%;
    margin: 7% auto 2%;
    font-size: 1.8rem;
  }
  .pg-benefit .snsinfo--insta .col-detail02 .col-flex02 figure:not(:last-child) {
    margin-bottom: 3%;
    padding-bottom: 3%;
    border-bottom: dotted 1px #666;
  }
  .pg-benefit .snsinfo--insta .col-detail02 .col-flex02 figure:not(:last-child)::after {
    content: none;
  }
  .pg-benefit .snsinfo--insta .col-detail02 .col-flex02 figure figcaption em {
    font-size: 1.2em;
  }
  .pg-benefit .snsinfo--insta .col-detail02 .col-flex02 figure figcaption br + em {
    margin-top: 0.25em;
  }
}
.pg-benefit .snsinfo--line {
  background-color: #06c755;
}
.pg-benefit .snsinfo--line .inner {
  background-color: #ecf1c5;
}
.pg-benefit .snsinfo--line .subttl {
  color: #00a65a;
}
.pg-benefit .snsinfo--line .button a {
  background-color: #06c755;
}
.pg-benefit .snsinfo--line .col-flex--l {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 750px) {
  .pg-benefit .snsinfo--line .col-flex--l {
    display: block;
  }
}
.pg-benefit .snsinfo--line .col-detail01 {
  width: 57%;
  border-radius: 1em;
  background-color: #fff;
  display: flex;
  align-items: center;
}
.pg-benefit .snsinfo--line .col-detail01 .col--text {
  position: relative;
  flex: 1;
  margin-left: 3%;
  font-size: 0.9em;
  font-weight: 700;
}
.pg-benefit .snsinfo--line .col-detail01 .col--text .minittl {
  margin-bottom: 1em;
  font-size: 1.1em;
}
.pg-benefit .snsinfo--line .col-detail01 .col--text .minittl em {
  position: relative;
  display: inline-block;
  margin-top: 0.25em;
  font-size: 1.5em;
  font-style: normal;
  color: #00a65a;
}
.pg-benefit .snsinfo--line .col-detail01 .col--text .minittl em::before {
  content: "";
  position: absolute;
  top: 80%;
  left: 0;
  width: 100%;
  height: 0.4em;
  background: url(/assets/images/benefit/snsinfo_textdeco.svg) center center/auto 100% no-repeat;
}
.pg-benefit .snsinfo--line .col-detail01 .col--text .minittl em span {
  position: relative;
}
.pg-benefit .snsinfo--line .col-detail01 .col--text .text img {
  display: block;
  width: 90%;
  margin-bottom: 0.25em;
}
.pg-benefit .snsinfo--line .col-detail01 .col--text figure {
  position: absolute;
  top: -18%;
  right: 0;
  width: 26%;
}
.pg-benefit .snsinfo--line .col-detail01 .col--img {
  width: 48%;
  margin: -2% 1% 0 0;
}
.pg-benefit .snsinfo--line .col-detail01 .col--img img {
  display: block;
}
@media screen and (max-width: 750px) {
  .pg-benefit .snsinfo--line .col-detail01 {
    width: 100%;
    display: block;
  }
  .pg-benefit .snsinfo--line .col-detail01 .col--text {
    width: 90%;
    margin: 0 auto;
    padding-top: 7%;
  }
  .pg-benefit .snsinfo--line .col-detail01 .col--text .minittl {
    width: 70%;
    font-size: 1.4em;
  }
  .pg-benefit .snsinfo--line .col-detail01 .col--text .text img {
    width: 75%;
  }
  .pg-benefit .snsinfo--line .col-detail01 .col--text figure {
    top: 20%;
    right: 0;
    width: 24%;
  }
  .pg-benefit .snsinfo--line .col-detail01 .col--img {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 3%;
  }
}
.pg-benefit .snsinfo--line .col-detail02 {
  flex: 1;
  margin-left: 3%;
  display: flex;
  align-items: center;
}
.pg-benefit .snsinfo--line .col-detail02 .col--text {
  width: 37%;
  line-height: 1.4;
  font-weight: 700;
}
.pg-benefit .snsinfo--line .col-detail02 .col--text .minittl em {
  display: inline-block;
  margin: 0.25em 0;
  line-height: 1.2;
  font-size: 1.4em;
  font-style: normal;
  color: #00a65a;
}
.pg-benefit .snsinfo--line .col-detail02 .col--img {
  flex: 1;
  margin-top: -5%;
  position: relative;
}
.pg-benefit .snsinfo--line .col-detail02 .col--img img {
  display: block;
}
.pg-benefit .snsinfo--line .col-detail02 .col--img img:first-child {
  width: 86%;
}
.pg-benefit .snsinfo--line .col-detail02 .col--img img:last-child {
  position: absolute;
  width: 28%;
  bottom: -10%;
  right: -5%;
}
@media screen and (max-width: 750px) {
  .pg-benefit .snsinfo--line .col-detail02 {
    margin: 7% 0 0 0;
    align-items: flex-start;
  }
  .pg-benefit .snsinfo--line .col-detail02 .col--text {
    width: 50%;
    margin-bottom: 2rem;
  }
  .pg-benefit .snsinfo--line .col-detail02 .col--text .minittl em {
    margin-right: 0.25em;
    font-size: 1.7em;
  }
  .pg-benefit .snsinfo--line .col-detail02 .col--img img:first-child {
    width: 90%;
  }
  .pg-benefit .snsinfo--line .col-detail02 .col--img img:last-child {
    width: 36%;
    bottom: -2rem;
    right: 0;
  }
}

/* end pg-benefit */
/* ==============================
  〈求人〉県民共済のお仕事
============================== */
.pg-recruit .request {
  display: none;
}
.pg-recruit .main_wrapper {
  position: relative;
  overflow: hidden;
}
@media screen and (min-width: 751px), print {
  .pg-recruit .bg {
    position: absolute;
    display: block;
    width: 100vw;
    height: 100%;
    background-color: #E6F6FD;
  }
  .pg-recruit .bg-01 {
    position: relative;
    height: 86.5277777778vw;
    background-color: #fff;
  }
  .pg-recruit .bg-01 figure {
    position: relative;
  }
  .pg-recruit .bg-01 figure::before {
    content: "";
    position: absolute;
    display: block;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 29.8611111111vw;
    -webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
            clip-path: polygon(0 0, 100% 100%, 0 100%);
    background-color: #fff;
  }
  .pg-recruit .bg-01 figure img {
    width: 100%;
    height: auto;
  }
  .pg-recruit .bg-01::after {
    content: "";
    position: absolute;
    display: block;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 31.25vw;
    -webkit-clip-path: polygon(100% 0, 100% 100%, 0 100%);
            clip-path: polygon(100% 0, 100% 100%, 0 100%);
    background-color: #E6F6FD;
  }
  .pg-recruit .bg-02 {
    position: relative;
  }
  .pg-recruit .bg-02::before {
    content: "";
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 82.6388888889vw;
    -webkit-clip-path: polygon(0 0, 100% 50%, 0 100%);
            clip-path: polygon(0 0, 100% 50%, 0 100%);
    background-color: rgba(133, 208, 244, 0.3);
  }
  .pg-recruit .bg-02::after {
    content: "";
    display: block;
    width: 100%;
    height: 112.5vw;
    transform: skewY(-18deg);
    margin-top: 20vw;
    background-color: rgba(133, 208, 244, 0.3);
  }
}
@media screen and (min-width: 751px), print {
  .pg-recruit .main_inner {
    position: relative;
  }
}
.pg-recruit .hero_title {
  display: none;
}
@media screen and (max-width: 750px) {
  .pg-recruit .hero img {
    width: 100%;
    aspect-ratio: 75/121;
  }
}
.pg-recruit .outline {
  width: min(100%, 1440px);
  margin: 0 auto;
}
.pg-recruit .detail {
  width: min(100%, 1440px);
  margin: 0 auto;
}
.pg-recruit .lineup {
  width: min(100%, 1200px);
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .pg-recruit .lineup {
    position: relative;
    background-color: rgba(133, 208, 244, 0.6);
  }
  .pg-recruit .lineup::before {
    content: "";
    position: absolute;
    display: block;
    bottom: 0;
    right: 0;
    width: 100vw;
    height: 146.6216216216vw;
    -webkit-clip-path: polygon(0 70%, 100% 0, 100% 100%, 0 100%);
            clip-path: polygon(0 70%, 100% 0, 100% 100%, 0 100%);
    background-color: #E9F6FD;
  }
}
.pg-recruit .lineup .forpc {
  margin-bottom: 5vw;
}
.pg-recruit .lineup .forpc .lineupTab {
  display: flex;
  justify-content: space-between;
}
.pg-recruit .lineup .forpc .lineupTab li {
  width: 32%;
}
.pg-recruit .lineup .forpc .lineupTab li a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  border: solid 2px;
  border-radius: 1em 1em 0 0;
  transition: 0.3s;
}
.pg-recruit .lineup .forpc .lineupTab li a.tab01 {
  border-color: #F07D00;
}
.pg-recruit .lineup .forpc .lineupTab li a.tab02 {
  border-color: #DC6987;
}
.pg-recruit .lineup .forpc .lineupTab li a.tab03 {
  border-color: #0062b1;
}
.pg-recruit .lineup .forpc .lineupTab li a img {
  border-radius: 1em 1em 0 0;
}
.pg-recruit .lineup .forpc .lineupTab li:hover a {
  opacity: 0.8;
}
.pg-recruit .lineup .forpc .lineupTab li.selected a {
  background-position: center center;
  background-size: contain;
  background-repeat: no-repeat;
}
.pg-recruit .lineup .forpc .lineupTab li.selected a img {
  opacity: 0;
}
.pg-recruit .lineup .forpc .lineupTab li.selected a.tab01 {
  background-image: url(/assets/images/recruit/lineup_tab01b__pc.svg);
}
.pg-recruit .lineup .forpc .lineupTab li.selected a.tab02 {
  background-image: url(/assets/images/recruit/lineup_tab02b__pc.svg);
}
.pg-recruit .lineup .forpc .lineupTab li.selected a.tab03 {
  background-image: url(/assets/images/recruit/lineup_tab03b__pc.svg);
}
.pg-recruit .lineup .forpc .lineupTab li.selected a:hover {
  opacity: 1;
}
.pg-recruit .lineup .forpc .lineupBody {
  position: relative;
  margin-top: -3%;
  border-radius: 2.1em;
  background-color: #fff;
}
.pg-recruit .lineup .forpc .lineupBody > div {
  display: none;
  position: relative;
  padding: 3%;
  border: solid 4px;
  border-radius: 2em;
}
.pg-recruit .lineup .forpc .lineupBody > div.body01 {
  border-color: #F07D00;
}
.pg-recruit .lineup .forpc .lineupBody > div.body02 {
  border-color: #DC6987;
}
.pg-recruit .lineup .forpc .lineupBody > div.body03 {
  border-color: #0062b1;
}
.pg-recruit .lineup .forpc .lineupBody > div.selected {
  display: block;
}
.pg-recruit .lineup .forpc .lineupBody .linkBtn {
  position: absolute;
  display: block;
  bottom: 12%;
  left: 0;
  width: 100%;
}
.pg-recruit .lineup .forpc .lineupBody .linkBtn a {
  display: block;
  width: 30.2013422819%;
  margin: 0 auto;
}
.pg-recruit .lineup .forsp .lineupTab {
  padding-top: 4rem;
}
.pg-recruit .lineup .forsp .lineupTab li a > * {
  margin-top: -2rem;
  padding: 1rem 1rem 3.5rem;
  border-style: solid;
  border-width: 2px 2px 0;
  border-radius: 1.5rem 1.5rem 0 0;
  text-align: center;
  font-size: 2.8em;
  font-weight: 700;
}
.pg-recruit .lineup .forsp .lineupTab li a > *.tabContent01 {
  display: block;
}
.pg-recruit .lineup .forsp .lineupTab li a > *.tabContent02 {
  display: none;
  padding: 0 0 2rem;
}
.pg-recruit .lineup .forsp .lineupTab li a > *.tabContent02 img {
  border-radius: 1.5rem 1.5rem 0 0;
}
.pg-recruit .lineup .forsp .lineupTab li a.tab01 > * {
  border-color: #F07D00;
}
.pg-recruit .lineup .forsp .lineupTab li a.tab01 > *.tabContent01 {
  background-color: #FFECDA;
  color: #F07D00;
}
.pg-recruit .lineup .forsp .lineupTab li a.tab01 > *.tabContent02 {
  background-color: #F07D00;
}
.pg-recruit .lineup .forsp .lineupTab li a.tab02 > * {
  border-color: #DC6987;
}
.pg-recruit .lineup .forsp .lineupTab li a.tab02 > *.tabContent01 {
  background-color: #FADCE9;
  color: #DC6987;
}
.pg-recruit .lineup .forsp .lineupTab li a.tab02 > *.tabContent02 {
  background-color: #DC6987;
}
.pg-recruit .lineup .forsp .lineupTab li a.tab03 > * {
  border-color: #0062b1;
}
.pg-recruit .lineup .forsp .lineupTab li a.tab03 > *.tabContent01 {
  background-color: #D3E6F6;
  color: #0062b1;
}
.pg-recruit .lineup .forsp .lineupTab li a.tab03 > *.tabContent02 {
  background-color: #0062b1;
}
.pg-recruit .lineup .forsp .lineupTab li.selected a > *.tabContent01 {
  display: none;
}
.pg-recruit .lineup .forsp .lineupTab li.selected a > *.tabContent02 {
  display: block;
}
.pg-recruit .lineup .forsp .lineupBody {
  margin-top: -2rem;
}
.pg-recruit .lineup .forsp .lineupBody > div {
  display: none;
  position: relative;
  border: solid 2px;
  border-radius: 1.5rem;
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3);
}
.pg-recruit .lineup .forsp .lineupBody > div.body01 {
  border-color: #F07D00;
  background-color: #FFECDA;
}
.pg-recruit .lineup .forsp .lineupBody > div.body02 {
  border-color: #DC6987;
  background-color: #FADCE9;
}
.pg-recruit .lineup .forsp .lineupBody > div.body03 {
  border-color: #0062b1;
  background-color: #D3E6F6;
}
.pg-recruit .lineup .forsp .lineupBody > div.selected {
  display: block;
}
.pg-recruit .lineup .forsp .lineupBody > div > div > img {
  border-radius: 1.5rem;
}
.pg-recruit .lineup .forsp .lineupBody .linkBtn {
  position: absolute;
  display: block;
  bottom: 11.5%;
  left: 0;
  width: 100%;
}
.pg-recruit .lineup .forsp .lineupBody .linkBtn a {
  display: block;
  width: 70.4615384615%;
  margin: 0 auto;
}
.pg-recruit .notes-img {
  padding: min(10%, 40px) 0 min(10%, 30px);
}
@media screen and (max-width: 750px) {
  .pg-recruit .notes-img {
    background-color: #E9F6FD;
  }
}
.pg-recruit .women_banner {
  background: url(/assets/images/recruit/women_bg.svg) center center/cover no-repeat;
}
.pg-recruit .women_banner-inner {
  position: relative;
  width: min(100%, 1200px);
  margin: 0 auto;
}
.pg-recruit .women_banner-inner a {
  position: absolute;
  bottom: 12%;
  left: 15%;
  width: 30%;
}
@media screen and (max-width: 750px) {
  .pg-recruit .women_banner {
    padding-top: 10vw;
    background-color: #E6F6FD;
  }
  .pg-recruit .women_banner a {
    bottom: 10%;
    left: 50%;
    width: 77.0666666667%;
    transform: translateX(-50%);
  }
}

/* end pg-recruit */
/* ==============================
  外部リンクアナウンス
============================== */
.link {
  margin: 0;
  padding: 0;
}
.link_wrapper {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.link_inner {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.link_box {
  width: min(90%, 750px);
  padding: 5% 2% 7%;
  border: solid 4px #ccc;
  line-height: 1.8;
  text-align: center;
  font-size: 1.5rem;
}
.link_box h1 {
  margin-bottom: 1em;
  font-size: 1.5333333333em;
  color: #0062b1;
}
.link_box p {
  margin-top: 1em;
}
.link_box p a {
  color: #0062b1;
}
.link_box p a:hover {
  text-decoration: underline;
}
.link_close a {
  width: 150px;
  margin-top: 20px;
  padding: 0.75em 1em;
  display: flex;
  align-items: center;
  border: solid 1px #ccc;
  border-radius: 0.5em;
  box-shadow: 2px 2px 0 #ccc;
  font-size: 1.4rem;
}
.link_close a:hover {
  opacity: 0.7;
}
.link_close a span {
  flex: 1;
  text-align: center;
}
.link_close a::after {
  content: "";
  width: 0.6em;
  height: 0.6em;
  border: solid #0062b1;
  border-width: 1px 1px 0 0;
  transform: rotate(45deg);
}
@media screen and (max-width: 750px) {
  .link_close a {
    width: 30vw;
    padding: 1em;
  }
}
.link .footer .copyright {
  padding-bottom: 20px;
}

/* end link */
/* ==============================
  2024.10 相談会リニューアル
============================== */
.block-muryo_wrap {
  position: relative;
  padding-top: 50px;
}

.block-muryo {
  width: min(90%, 1100px);
  margin: 0 auto 50px;
  padding-bottom: 50px;
  border: solid 5px #64B432;
  border-radius: 2rem;
  background-color: #fff;
}
.block-muryo_title {
  border-radius: calc(2rem - 7px) calc(2rem - 7px) 0 0;
  background-color: #64B432;
}
@media screen and (max-width: 750px) {
  .block-muryo {
    padding-bottom: 5vw;
    border-width: 2px;
  }
}

/* お気軽相談会 */
.base-okigaru {
  position: relative;
  padding: 50px 0;
  background-color: #DFF2FC;
}

.block-okigaru {
  width: min(90%, 1100px);
  margin: 0 auto;
  padding-bottom: 40px;
  border: solid 5px #0062b1;
  border-radius: 2rem;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .block-okigaru {
    padding-bottom: 3%;
    border-width: 2px;
  }
}

.okigaru-title {
  position: relative;
}
.okigaru-title img {
  border-radius: 2rem 2rem 0 0;
}
.okigaru-title_copy {
  margin-top: -0.5em;
  line-height: 1.6;
  text-align: center;
  font-size: 3.5em;
  font-weight: 700;
  color: #0062b1;
}
.okigaru-title_copy > span {
  display: inline-block;
}
.okigaru-title_copy > em {
  display: inline-block;
  font-style: normal;
  color: #ed6c00;
}
.okigaru-title_area {
  width: 90%;
  margin: min(5%, 30px) auto;
}
@media screen and (max-width: 750px) {
  .okigaru-title_copy {
    font-size: 2.8em;
  }
  .okigaru-title_sub {
    position: absolute;
    top: -5vw;
    left: 0;
    width: 100%;
  }
}
.okigaru_menu dt {
  margin: 2em 0 1em;
  text-align: center;
  font-size: 2.6rem;
  color: #0062b1;
}
.okigaru_menu dt span {
  display: flex;
  justify-content: center;
  align-items: center;
}
.okigaru_menu dt span::before, .okigaru_menu dt span::after {
  content: "";
  width: 1.5em;
  height: 1em;
  margin: 0 0.5em;
  background: url(../images/soudankai/okigaru_menu_title.svg) center center/contain no-repeat;
}

.location_list {
  width: min(92% + 10px, 1030px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
}
.location_list li {
  width: 25%;
  padding: 5px;
}
.location_list li a {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 1rem;
  border-radius: 0.6rem;
  color: #fff;
  transition: opacity 0.3s;
}
.location_list li a:hover {
  opacity: 0.8;
}
.location_list li a span {
  flex: 1;
  text-align: center;
}
.location_list li a span em {
  display: block;
  font-size: 2.7rem;
  font-weight: 700;
  font-style: normal;
}
.location_list li a span small {
  display: block;
  margin-top: 0.25em;
  font-size: 1.2rem;
}
.location_list li a::after {
  content: "";
  width: 1.6rem;
  height: 1.6rem;
  background: url(../images/common/location_arw.svg) center center/contain no-repeat;
}
@media screen and (max-width: 750px) {
  .location_list {
    width: calc(90% + 4px);
  }
  .location_list li {
    width: 50%;
    padding: 2px;
  }
  .location_list li a {
    padding: 1rem 0.5rem 1rem 0;
  }
  .location_list li a::after {
    width: 1.2rem;
    height: 1.2rem;
  }
}
.location_list.okigaru_list li a {
  background-color: #0062b1;
}
.location_list.lifeup_list li a {
  background-color: #E8537D;
}

.link_notice {
  width: min(92%, 1020px);
  margin: 30px auto 0;
  border: solid 1px #0062b1;
}
.link_notice dt {
  padding: 1rem 1em;
  background-color: #0062b1;
  line-height: 1.4;
  text-align: center;
  font-size: 2.4rem;
  font-weight: 700;
  color: #fff;
}
.link_notice dd {
  padding: 1em 2em;
  line-height: 1.6;
  font-size: 1.4rem;
}
.link_notice dd strong {
  font-size: 1.2em;
  color: #0062b1;
}
.link_notice-ul li {
  padding-left: 1em;
  text-indent: -1em;
}
@media screen and (max-width: 750px) {
  .link_notice {
    width: 90%;
  }
  .link_notice dt {
    text-align: left;
  }
  .link_notice dd {
    padding: 1em;
  }
}

.books {
  margin-top: 10px;
}

/* 女性のためのライフアップ無料相談会 */
.base-lifeup {
  position: relative;
  padding-top: 50px;
  background-color: #FBE6EF;
}
.pg-recruit .base-lifeup {
  background-color: transparent;
}

.block-lifeup {
  width: min(90%, 1100px);
  margin: 0 auto;
  padding-bottom: 40px;
  border: solid 5px #f00;
  border-radius: 2rem;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .block-lifeup {
    padding-bottom: 3%;
    border-width: 2px;
  }
}

.lifeup_title01 {
  position: relative;
}
.lifeup_title01 picture img {
  border-radius: 2rem 2rem 0 0;
}
@media screen and (min-width: 751px), print {
  .lifeup_title02 a {
    position: relative;
    display: block;
  }
  .lifeup_title02 a img:last-child {
    position: absolute;
    top: 0;
    left: 0;
  }
  .lifeup_title02 a:hover img {
    opacity: 1;
  }
  .lifeup_title02 a:hover img:last-child {
    opacity: 0;
  }
}
@media screen and (max-width: 750px) {
  .lifeup_title03 {
    position: absolute;
    top: -10vw;
    left: -2vw;
    width: 60vw;
  }
}
.lifeup_subttl {
  margin: 1em 0;
  text-align: center;
  font-size: 3.5rem;
  font-weight: 700;
  color: #E8537D;
}

/* ==============================
  モーダル
============================== */
.modal-soudan .fancybox__backdrop,
.modal-dflyer .fancybox__backdrop {
  background-color: #DFF2FC;
}
.modal-soudan .fancybox__container .fancybox__slide.has-close-btn,
.modal-dflyer .fancybox__container .fancybox__slide.has-close-btn {
  padding: 40px 0;
}
.modal-soudan .fancybox__content,
.modal-dflyer .fancybox__content {
  box-sizing: content-box;
  width: min(90%, 1100px) !important;
  padding: 0;
  border: solid 5px #0062b1;
  border-radius: 2rem;
  background-color: #fff;
}
@media screen and (max-width: 750px) {
  .modal-soudan .fancybox__content,
  .modal-dflyer .fancybox__content {
    border-width: 3px;
  }
}
.modal-soudan .fancybox__iframe,
.modal-dflyer .fancybox__iframe {
  border-radius: calc(2rem - 5px);
  overflow: hidden;
}
.modal-soudan .fancybox__content > .f-button.is-close-btn,
.modal-dflyer .fancybox__content > .f-button.is-close-btn {
  top: -30px;
  right: -30px;
  width: 60px;
  height: 60px;
  background: url(../images/soudankai/modal_close.svg) center center/contain no-repeat;
  opacity: 1;
  transition: opacity 0.3s;
}
.modal-soudan .fancybox__content > .f-button.is-close-btn:hover,
.modal-dflyer .fancybox__content > .f-button.is-close-btn:hover {
  opacity: 0.8;
}
.modal-soudan .fancybox__content > .f-button.is-close-btn svg,
.modal-dflyer .fancybox__content > .f-button.is-close-btn svg {
  display: none;
}
@media screen and (max-width: 750px) {
  .modal-soudan .fancybox__content > .f-button.is-close-btn,
  .modal-dflyer .fancybox__content > .f-button.is-close-btn {
    top: -2.5rem;
    right: -1.5rem;
    width: 5rem;
    height: 5rem;
  }
}

.modal-dflyer .fancybox__content {
  width: min(90%, 1000px) !important;
  border-radius: 1rem;
}

/* ==============================
  ポータルページ
============================== */
.pg-portal .wrapper {
  position: relative;
  min-height: 100vh;
}
@media screen and (max-width: 750px) {
  .pg-portal .wrapper {
    min-height: calc(100vh - 16vw);
  }
}
.pg-portal .header {
  padding: 35px 0 0;
}
.pg-portal .header .logo {
  margin: 0 auto;
}
@media screen and (max-width: 750px) {
  .pg-portal .header {
    padding: 4vw;
  }
  .pg-portal .header .logo {
    margin: 0 auto 0 0;
  }
}
.pg-portal .contents {
  width: min(100% - 4em, 800px);
  margin: 0 auto;
  padding: min(10%, 50px) 0;
}
@media screen and (max-width: 750px) {
  .pg-portal .contents {
    padding: 5% 0 10%;
  }
}
.pg-portal .gnavOpen {
  bottom: 120px !important;
}
.pg-portal .bnr-list {
  display: flex;
  flex-wrap: wrap;
  gap: 2em;
}
.pg-portal .bnr-list li {
  width: calc(50% - 1em);
}
@media screen and (max-width: 750px) {
  .pg-portal .bnr-list {
    gap: 1em;
  }
  .pg-portal .bnr-list li {
    width: calc(50% - 0.5em);
  }
}
.pg-portal .sns-icon {
  margin: 50px 0 40px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  text-align: center;
}
.pg-portal .sns-icon dt {
  width: 100%;
  margin-bottom: 1em;
  font-size: 2.6em;
}
.pg-portal .sns-icon dd {
  width: 80px;
  margin: 0 2em;
}
@media screen and (max-width: 750px) {
  .pg-portal .sns-icon {
    margin: 10% 0;
  }
  .pg-portal .sns-icon dt {
    font-size: 2.2em;
  }
  .pg-portal .sns-icon dd {
    width: 8em;
  }
}
.pg-portal .footer {
  position: absolute;
  bottom: 0;
  width: 100%;
}
.pg-portal .footer .copyright {
  padding-bottom: 15px;
}

/* ==============================
  2025.05 相談会リニューアル
============================== */
.pg-soudan .block-outline {
  background-color: #fff;
}
.pg-soudan .block-outline_inner {
  width: min(90%, 1100px);
  margin: 0 auto;
  padding: 5rem 0 2rem;
}
.pg-soudan .block-outline_title {
  text-align: center;
}
.pg-soudan .block-outline_list01 {
  margin-top: 5rem;
  display: flex;
  justify-content: space-between;
}
.pg-soudan .block-outline_list01 li {
  position: relative;
  width: calc((100% - 4rem) / 3);
  border: solid 3px;
  border-radius: 1.2rem;
  text-align: center;
}
@media screen and (max-width: 750px) {
  .pg-soudan .block-outline_list01 li {
    width: calc((100% - 2rem) / 3);
  }
}
.pg-soudan .block-outline_list01 li::before {
  content: "";
  position: absolute;
  bottom: calc(-1.8rem - 6px);
  left: calc(50% - 1rem - 3px);
  width: calc(2rem + 6px);
  height: calc(1.8rem + 6px);
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
}
.pg-soudan .block-outline_list01 li::after {
  content: "";
  position: absolute;
  bottom: -1.8rem;
  left: calc(50% - 1rem);
  width: 2rem;
  height: 1.8rem;
  -webkit-clip-path: polygon(0 0, 100% 0, 50% 100%);
          clip-path: polygon(0 0, 100% 0, 50% 100%);
  background-color: #fff;
}
.pg-soudan .block-outline_list01 li .num {
  position: absolute;
  top: -2.5rem;
  left: calc(50% - 2.5rem);
  width: 5rem;
  height: 5rem;
  border-radius: 100%;
  line-height: 5rem;
  text-align: center;
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
}
.pg-soudan .block-outline_list01 li .inner {
  display: inline-block;
  padding: 4rem 1rem 2rem;
  text-align: left;
}
.pg-soudan .block-outline_list01 li .txt {
  margin-top: 2rem;
  line-height: 1.5;
  font-size: min(2rem, 1.8vw);
  font-weight: 700;
}
.pg-soudan .block-outline_list01 li.green {
  border-color: #009646;
}
.pg-soudan .block-outline_list01 li.green::before {
  background-color: #009646;
}
.pg-soudan .block-outline_list01 li.green .num {
  background-color: #009646;
}
.pg-soudan .block-outline_list01 li.green .ttl img {
  max-width: 86.5%;
}
.pg-soudan .block-outline_list01 li.blue {
  border-color: #0062b1;
}
.pg-soudan .block-outline_list01 li.blue::before {
  background-color: #0062b1;
}
.pg-soudan .block-outline_list01 li.blue .num {
  background-color: #0062b1;
}
.pg-soudan .block-outline_list01 li.blue .ttl img {
  max-width: 84.8%;
}
.pg-soudan .block-outline_list01 li.pink {
  border-color: #e8537d;
}
.pg-soudan .block-outline_list01 li.pink::before {
  background-color: #e8537d;
}
.pg-soudan .block-outline_list01 li.pink .num {
  background-color: #e8537d;
}
.pg-soudan .block-outline_list01 li.pink .txt {
  font-size: min(1.8rem, 1.5vw);
}
.pg-soudan .block-outline_nav {
  position: sticky;
  top: 0;
  z-index: 10;
}
.pg-soudan .block-outline_nav-inner {
  width: min(90%, 1100px);
  margin: 0 auto;
  padding: 1rem 0;
}
.pg-soudan .block-outline_list02 {
  display: flex;
  justify-content: space-between;
}
.pg-soudan .block-outline_list02 li {
  position: relative;
  width: calc((100% - 4rem) / 3);
}
@media screen and (max-width: 750px) {
  .pg-soudan .block-outline_list02 li {
    width: calc((100% - 2rem) / 3);
  }
}
.pg-soudan .block-outline_list02 li a {
  height: 8.6rem;
  padding: 1rem;
  display: flex;
  align-items: center;
}
.pg-soudan .block-outline_list02 li a::after {
  content: "";
  width: 3rem;
  height: 3rem;
  background: url(../images/soudankai/outline_item_arrow.svg) center center/contain no-repeat;
}
.pg-soudan .block-outline_list02 li a span {
  flex: 1;
  text-align: center;
  line-height: 1.4;
  font-size: min(2.3rem, 1.8vw);
  font-weight: 700;
  color: #fff;
}
@media screen and (max-width: 750px) {
  .pg-soudan .block-outline_list02 li a {
    padding: 0.5rem;
    flex-direction: column;
  }
  .pg-soudan .block-outline_list02 li a::after {
    width: 1.6rem;
    height: 1.6rem;
  }
  .pg-soudan .block-outline_list02 li a span {
    display: flex;
    justify-content: center;
    align-items: center;
    line-height: 1.3;
    font-size: 2.2vw;
  }
}
.pg-soudan .block-outline_list02 li.green a {
  background-color: #009646;
}
.pg-soudan .block-outline_list02 li.blue a {
  background-color: #0062b1;
}
.pg-soudan .block-outline_list02 li.pink a {
  background-color: #e8537d;
}
.pg-soudan .block-outline_bg {
  position: relative;
  padding-top: 5rem;
  text-align: center;
}
.pg-soudan .block-outline_bg::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 8rem;
  background-color: #64b432;
}
.pg-soudan .block-outline_bg::after {
  content: "";
  position: absolute;
  bottom: 8rem;
  left: 0;
  width: 100%;
  height: 2.3rem;
  background-color: #a2cf86;
}
.pg-soudan .block-outline_bg div {
  position: relative;
  z-index: 1;
  height: 167px;
  background: url(../images/soudankai/outline_bg.svg) center bottom no-repeat;
}
.pg-soudan .anchor_point {
  position: absolute;
  top: -10.6rem;
  left: 0;
  width: 0;
  height: 10.6rem;
}

/* pg-soudan *//*# sourceMappingURL=style.css.map */