@charset "UTF-8";
/*!
global > font
------------------------------
*/
@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@200..800&family=Noto+Sans+JP:wght@100..900&display=swap");
/*!
global > color
------------------------------
*/
:root {
  --color-primary: #1a7961;
  --color-primary-light: #f5f7fb;
  --color-secondary: #3F8EB3;
  --color-secondary-light: #FAF8F5;
  --color-link: #4895e6;
}

.white {
  color: white !important;
}

.blue {
  color: #3F8EB3 !important;
}

.egreen {
  color: #50AA9E !important;
}

.lgreen {
  color: #a6c035 !important;
}

.lgreen2 {
  color: #c6df55 !important;
}

.gray {
  color: #6c6c6c !important;
}

.red {
  color: #e86f8a;
}

.yellow {
  color: var(--color-secondary);
}

/*!
global > content-width
------------------------------
*/
:root {
  --width-content-s: 760px;
  --width-content: 768px;
}

:root {
  --font-family-base: "Manrope", "Noto Sans JP", "Helvetica Neue", "Helvetica",
      "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

.f_noto {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.f_man {
  font-family: "Manrope", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
}

.f_inter {
  font-family: "Inter", sans-serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-variation-settings: "slnt" 0;
}

/*!
global > adjustment
------------------------------
*/
/*!
global > effects
------------------------------
*/
#pagetop a, .pgNav li a {
  -webkit-transition: 0.3s ease-in-out;
  -moz-transition: 0.3s ease-in-out;
  -o-transition: 0.3s ease-in-out;
  transition: 0.3s ease-in-out;
}

/*!
foundation > reset
------------------------------
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/*!
foundation > base
------------------------------
*/
html {
  font-size: 62.5%;
}

body {
  font-family: var(--font-family-base);
  font-size: 1.8rem;
  font-weight: 400;
  color: #484848;
  line-height: 2;
  background-color: #fcfdf7;
  animation: fadeIn 1s ease 0s 1 normal;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 1.4rem;
    line-height: 1.7;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@-webkit-keyframes fadeIn {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
a {
  color: #3F8EB3;
  word-wrap: break-word;
}
a.noLink {
  pointer-events: none;
}
a.anchor {
  display: block;
  padding-top: 150px;
  margin-top: -150px;
}
a.anchor--1 {
  padding-top: 50px;
  margin-top: -50px;
}
a.External_links {
  display: table;
  margin-left: auto;
  font-size: 1.4rem;
}

.br-pc {
  display: block !important;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .br-pc {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .br-pc {
    display: none !important;
  }
}

.br-tb {
  display: none !important;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .br-tb {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .br-tb {
    display: none !important;
  }
}

.br-sp {
  display: none !important;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .br-sp {
    display: none !important;
  }
}
@media screen and (max-width: 767px) {
  .br-sp {
    display: block !important;
  }
}

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

.br-tb-sp {
  display: none !important;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .br-tb-sp {
    display: block !important;
  }
}
@media screen and (max-width: 767px) {
  .br-tb-sp {
    display: block !important;
  }
}

@media screen and (max-width: 767px) {
  .dn-sp {
    display: none !important;
  }
}

/*!
utility > utility
------------------------------
*/
.u-mauto {
  margin-left: auto !important;
  margin-right: auto !important;
}

.u-mlauto {
  margin-left: auto !important;
}

.u-mt0 {
  margin-top: 0px !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-mt120 {
  margin-top: 120px !important;
}

.u-mt140 {
  margin-top: 140px !important;
}

.u-mt150 {
  margin-top: 150px !important;
}

.u-mt200 {
  margin-top: 200px !important;
}

.u-mb5 {
  margin-bottom: 5px !important;
}

.u-mb10 {
  margin-bottom: 10px !important;
}

.u-mb15 {
  margin-bottom: 15px !important;
}

.u-mb25 {
  margin-bottom: 25px !important;
}

.u-mb50 {
  margin-bottom: 50px !important;
}

.u-mb70 {
  margin-bottom: 70px !important;
}

.u-mb100 {
  margin-bottom: 100px !important;
}

.u-mlauto {
  margin-left: auto !important;
}

.u-ml5 {
  margin-left: 10px !important;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-ml5 {
    margin-left: 0.3846153846vw !important;
  }
}

.u-ml10 {
  margin-left: 10px !important;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-ml10 {
    margin-left: 0.7692307692vw !important;
  }
}

.u-ml15 {
  margin-left: 15px !important;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-ml15 {
    margin-left: 1.1538461538vw !important;
  }
}

.u-ml25 {
  margin-left: 25px !important;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-ml25 {
    margin-left: 1.9230769231vw !important;
  }
}

.u-ml50 {
  margin-left: 50px !important;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-ml50 {
    margin-left: 3.8461538462vw !important;
  }
}

.u-ml70 {
  margin-left: 70px !important;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-ml70 {
    margin-left: 5.3846153846vw !important;
  }
}

.u-mr5 {
  margin-right: 5px !important;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-mr5 {
    margin-right: 0.3846153846vw !important;
  }
}

.u-mr10 {
  margin-right: 10px !important;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-mr10 {
    margin-right: 0.7692307692vw !important;
  }
}

.u-mr15 {
  margin-right: 15px !important;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-mr15 {
    margin-right: 1.1538461538vw !important;
  }
}

.u-mr25 {
  margin-right: 25px !important;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-mr25 {
    margin-right: 1.9230769231vw !important;
  }
}

.u-mr50 {
  margin-right: 50px !important;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-mr50 {
    margin-right: 3.8461538462vw !important;
  }
}

.u-mr70 {
  margin-right: 70px !important;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-mr70 {
    margin-right: 5.3846153846vw !important;
  }
}

.u-mr100 {
  margin-right: 100px !important;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-mr100 {
    margin-right: 7.6923076923vw !important;
  }
}

.u-mlr25 {
  margin-left: 25px !important;
  margin-right: 25px !important;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-mlr25 {
    margin-left: 1.9230769231vw !important;
    margin-right: 1.9230769231vw !important;
  }
}

.u-p-reset {
  padding: 0 !important;
}

.u-ptb {
  padding: 100px 0 !important;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-ptb {
    padding: 100px 0 !important;
  }
}
@media screen and (max-width: 767px) {
  .u-ptb {
    padding: 50px 0 !important;
  }
}

.u-ptb100 {
  padding: 100px 0 !important;
}

.u-ptb70 {
  padding: 70px 0 !important;
}
@media screen and (max-width: 767px) {
  .u-ptb70 {
    padding-top: 35px !important;
  }
}

.u-ptb50 {
  padding: 50px 0 !important;
}

.u-ptb25 {
  padding: 25px 0 !important;
}

.u-pt {
  padding-top: 100px !important;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-pt {
    padding-top: 100px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pt {
    padding-top: 50px !important;
  }
}

.u-pb {
  padding-bottom: 100px !important;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-pb {
    padding-bottom: 100px !important;
  }
}
@media screen and (max-width: 767px) {
  .u-pb {
    padding-bottom: 50px !important;
  }
}

.u-pt50 {
  padding-top: 50px !important;
}

.u-pt70 {
  padding-top: 70px !important;
}

.u-pt100 {
  padding-top: 100px !important;
}

.u-pt150 {
  padding-top: 150px !important;
}

.u-pt200 {
  padding-top: 200px !important;
}

.u-pb0 {
  padding-bottom: 0px !important;
}

.u-pb15 {
  padding-bottom: 15px !important;
}

.u-pb25 {
  padding-bottom: 25px !important;
}

.u-pb50 {
  padding-bottom: 50px !important;
}

.u-pb100 {
  padding-bottom: 100px !important;
}

.u-pb150 {
  padding-bottom: 150px !important;
}

.u-pb200 {
  padding-bottom: 200px !important;
}

@media screen and (max-width: 767px) {
  .u-sp-m-reset {
    margin: 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-mauto {
    margin-left: auto !important;
    margin-right: auto !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-mlauto {
    margin-left: 0 !important;
    margin-left: auto !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-mt0 {
    margin-top: 0px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-mt5 {
    margin-top: 5px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-mt10 {
    margin-top: 10px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-mt15 {
    margin-top: 15px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-mt25 {
    margin-top: 25px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-mt35 {
    margin-top: 35px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-mt50 {
    margin-top: 50px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-mt60 {
    margin-top: 60px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-mt70 {
    margin-top: 70px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-mt80 {
    margin-top: 80px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-mt100 {
    margin-top: 100px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-mt150 {
    margin-top: 150px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-mb5 {
    margin-bottom: 5px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-mb50 {
    margin-bottom: 50px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-ml0 {
    margin-left: 0px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-ml15 {
    margin-left: 15px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-ptb {
    padding: 70px 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-ptb15 {
    padding: 15px 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-ptb25 {
    padding: 25px 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-ptb35 {
    padding: 35px 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-ptb50 {
    padding: 50px 0 !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-pt {
    padding-top: 70px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-pt0 {
    padding-top: 0px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-pt25 {
    padding-top: 25px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-pt35 {
    padding-top: 35px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-pt50 {
    padding-top: 50px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-pt70 {
    padding-top: 70px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-pt100 {
    padding-top: 100px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-pb {
    padding-bottom: 70px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-pb0 {
    padding-bottom: 0px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-pb25 {
    padding-bottom: 25px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-pb50 {
    padding-bottom: 50px !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-pb100 {
    padding-bottom: 100px !important;
  }
}

.u-fll {
  float: left;
}

.u-flr {
  float: right;
}

@media screen and (max-width: 767px) {
  .u-sp-fl-reset {
    float: none !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-flr {
    float: right !important;
  }
}

.u-alc {
  text-align: center !important;
}

.u-all {
  text-align: left !important;
}

.u-alr {
  text-align: right !important;
}

@media screen and (max-width: 767px) {
  .u-sp-alc {
    text-align: center !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-all {
    text-align: left !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-alr {
    text-align: right !important;
  }
}

.u-vat {
  vertical-align: top !important;
}

.u-vam {
  vertical-align: middle !important;
}

.u-vab {
  vertical-align: bottom !important;
}

.u-wnum {
  width: 4em !important;
  max-width: 4em !important;
}

.u-w10 {
  width: 10% !important;
  max-width: 10% !important;
}

.u-w15 {
  width: 15% !important;
  max-width: 15% !important;
}

.u-w20 {
  width: 20% !important;
  max-width: 20% !important;
}

.u-w25 {
  width: 25% !important;
  max-width: 25% !important;
}

.u-w30 {
  width: 30% !important;
  max-width: 30% !important;
}

.u-w35 {
  width: 35% !important;
  max-width: 35% !important;
}

.u-w40 {
  width: 40% !important;
  max-width: 40% !important;
}

.u-w45 {
  width: 45% !important;
  max-width: 45% !important;
}

.u-w50 {
  width: 50% !important;
  max-width: 50% !important;
}

.u-w55 {
  width: 55% !important;
  max-width: 55% !important;
}

.u-w60 {
  width: 60% !important;
  max-width: 60% !important;
}

.u-w70 {
  width: 70% !important;
  max-width: 70% !important;
}

.u-w80 {
  width: 80% !important;
  max-width: 80% !important;
}

.u-w90 {
  width: 90% !important;
  max-width: 90% !important;
}

.u-w100 {
  width: 100% !important;
  max-width: 100% !important;
}

@media screen and (min-width: 768px) and (max-width: 1024px) {
  .u-tab-w50 {
    width: 50% !important;
    max-width: 50% !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-w-reset {
    width: auto !important;
    max-width: initial !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-w30 {
    width: 30% !important;
    max-width: 30% !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-w35 {
    width: 35% !important;
    max-width: 35% !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-w40 {
    width: 40% !important;
    max-width: 40% !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-w50 {
    width: 50% !important;
    max-width: 50% !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-w60 {
    width: 60% !important;
    max-width: 60% !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-w70 {
    width: 70% !important;
    max-width: 70% !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-w80 {
    width: 80% !important;
    max-width: 80% !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-w90 {
    width: 90% !important;
    max-width: 90% !important;
  }
}

@media screen and (max-width: 767px) {
  .u-sp-w100 {
    width: 100% !important;
    max-width: 100% !important;
  }
}

.u-of-hidden {
  overflow: hidden;
}

.u-bold {
  font-weight: 700;
}

.u-txtSmall {
  font-size: 1.4rem;
}

.u-txtLarge {
  font-size: 2.2rem;
}
@media screen and (min-width: 1025px) and (max-width: 1299px) {
  .u-txtLarge {
    font-size: 1.6923076923vw;
  }
}
@media screen and (max-width: 767px) {
  .u-txtLarge {
    font-size: 1.8rem;
  }
}

.u-marker {
  display: inline;
  background-color: #b6d450;
}

.u-btmMarker {
  display: inline;
  background: linear-gradient(transparent 60%, #b6d450 60%);
}

/*!
layout > container
------------------------------
*/
.l-container-s {
  width: 100%;
  margin: 0 auto;
}

.l-container-s {
  max-width: var(--width-content-s);
  box-sizing: border-box;
}

/*!
component > title
------------------------------
*/
.title-Lv1 {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding-bottom: 0.5em;
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.5;
  position: relative;
}
@media screen and (min-width: 1025px) and (max-width: 1299px) {
  .title-Lv1 {
    font-size: 2.3076923077vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .title-Lv1 {
    font-size: 2.5rem;
  }
}
@media screen and (max-width: 767px) {
  .title-Lv1 {
    font-size: 2.1rem;
  }
}
.title-Lv1::after {
  content: "";
  display: inline-block;
  width: 60px;
  height: 5px;
  background-image: linear-gradient(90deg, var(--color-primary) 49%, white 49%, white 51%, var(--color-secondary) 51%);
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .title-Lv1::after {
    width: 60px;
    height: 4px;
  }
}
.title-Lv1 i {
  font-size: 3.2rem;
  color: var(--color-primary);
}
.title-Lv1--small {
  font-size: 2.4rem;
}
@media screen and (min-width: 1025px) and (max-width: 1299px) {
  .title-Lv1--small {
    font-size: 1.8461538462vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .title-Lv1--small {
    font-size: 2rem;
  }
}
@media screen and (max-width: 767px) {
  .title-Lv1--small {
    font-size: 1.7rem;
  }
}

.title-En {
  display: flex;
  justify-content: center;
  font-size: 1.6rem;
  opacity: 0.5;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .title-En {
    font-size: 1.2rem;
  }
}
@media screen and (max-width: 767px) {
  .title-En {
    font-size: 1.1rem;
  }
}

.title-Lv2 {
  display: inline-flex;
  align-items: center;
  position: relative;
  font-size: clamp(2.8rem, 2.7vw, 100rem);
  font-weight: 700;
  color: var(--color-primary);
  line-height: 1.5;
  gap: 0 0.5em;
}
@media screen and (max-width: 767px) {
  .title-Lv2 {
    font-size: 2.3rem;
  }
}
.title-Lv2 small {
  font-size: clamp(1.5rem, 1.2vw, 100rem);
  font-weight: normal;
  position: relative;
  top: 0.25em;
}
.title-Lv2--center {
  align-items: center;
}
.title-Lv2--seminar {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.35em 0;
}
.title-Lv2--seminar .head {
  padding: 0.5em 1em;
  display: inline-flex;
  background-color: #a6c035;
  color: white;
  font-size: clamp(1.7rem, 1.4vw, 100rem);
  border-radius: 50px;
  line-height: 1.2;
}
@media screen and (max-width: 767px) {
  .title-Lv2--seminar .head {
    font-size: 1.4rem;
  }
}

.title-Lv3 {
  display: block;
  font-size: 1.4vw;
  font-weight: 600;
  border-bottom: 1px solid #ccc;
  position: relative;
}
@media screen and (min-width: 1025px) and (max-width: 1299px) {
  .title-Lv3 {
    font-size: 1.4615384615vw;
  }
}
@media screen and (max-width: 767px) {
  .title-Lv3 {
    font-size: 1.6rem;
  }
}
@media screen and (min-width: 1025px) and (max-width: 1299px) {
  .title-Lv3 {
    font-size: 1.4615384615vw;
  }
}
.title-Lv3::after {
  content: "";
  display: inline-block;
  width: 200px;
  height: 1px;
  background-color: var(--color-primary);
  position: absolute;
  bottom: -1px;
  left: 0;
}

.title-Lv4 {
  font-size: 1.2vw;
  font-weight: 600;
}
@media screen and (min-width: 1025px) and (max-width: 1299px) {
  .title-Lv4 {
    font-size: 1.3846153846vw;
  }
}
@media screen and (max-width: 767px) {
  .title-Lv4 {
    font-size: 1.6rem;
  }
}

.UnderFv {
  display: flex;
  flex-direction: column;
  position: relative;
  height: 450px;
  min-height: 450px;
  background-color: #b6c9d5;
  overflow: hidden;
}
.UnderFv__inner {
  height: calc(100% - 80px);
  position: relative;
}
.UnderFv__inner::after {
  content: "";
  display: block;
  width: 100%;
  height: 100%;
  background-color: black;
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0.25;
}
.UnderFv__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  max-width: 100%;
  height: 80px;
  padding: 0 3.5%;
  background-color: var(--color-primary);
  position: relative;
  z-index: 21;
  box-sizing: border-box;
}
.UnderFv__img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.UnderFv__triangle {
  display: block;
  width: 500px;
  height: 100%;
  background-color: var(--color-primary);
  position: absolute;
  top: 0;
  left: 0;
  z-index: 15;
  clip-path: polygon(0% 0%, 100% 0%, 0% 100%, 0% 100%);
  opacity: 0.8;
}
.UnderFv__triangle--ov1 {
  left: -70px;
  background-color: #e1e5ea;
  z-index: 20;
}
.UnderFv__triangle--ov2 {
  left: -100px;
  background-color: white;
  z-index: 21;
}

/*!
component > btn
------------------------------
*/
.Btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(90deg, #fa6a1e, #fa811e);
  color: white;
  text-decoration: none;
  border-radius: 50px;
  padding: 1em;
  line-height: 1.5;
  gap: 0 1em;
  font-size: 2rem;
  font-weight: 600;
  box-shadow: 2px 2px 0px #ce4a04;
  box-sizing: border-box;
  width: 80%;
  position: relative;
}
@media screen and (max-width: 767px) {
  .Btn {
    font-size: 1.7rem;
    width: 100%;
  }
}
.Btn .arrow {
  font-size: 1.4rem;
  position: absolute;
  top: 50%;
  right: 2.5em;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .Btn .arrow {
    font-size: 1.2rem;
    right: 1.5em;
  }
}

.Shiny {
  overflow: hidden;
}
.Shiny::after {
  content: "";
  position: absolute;
  top: -100px;
  left: -100px;
  width: 50px;
  height: 50px;
  background-image: linear-gradient(100deg, rgba(255, 255, 255, 0) 10%, rgb(255, 255, 255) 100%, rgba(255, 255, 255, 0) 0%);
  animation-name: shiny;
  animation-duration: 3s;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

@keyframes shiny {
  0% {
    transform: scale(0) rotate(25deg);
    opacity: 0;
  }
  50% {
    transform: scale(1) rotate(25deg);
    opacity: 0.5;
  }
  100% {
    transform: scale(50) rotate(25deg);
    opacity: 0;
  }
}
/*!
component > parts
------------------------------
*/
.listDisc li {
  margin-left: 1em;
  list-style-type: disc;
}

.listNum li {
  margin-left: 1em;
  list-style-type: decimal;
}

.aioseo-breadcrumbs {
  z-index: 10;
  display: flex;
  padding: 0.35em 0;
  overflow: hidden;
  font-size: 1.3rem;
}
@media screen and (max-width: 767px) {
  .aioseo-breadcrumbs {
    display: none;
  }
}
.aioseo-breadcrumbs .aioseo-breadcrumb-separator {
  margin: 0 1em;
}
.aioseo-breadcrumbs a {
  color: #484848;
}

.pgNav {
  display: flex;
  justify-content: center;
  position: relative;
  flex-wrap: wrap;
  gap: 15px;
}
@media screen and (max-width: 767px) {
  .pgNav {
    gap: 10px;
  }
}
.pgNav li a {
  display: block;
  padding: 0.75em 1.5em;
  border-radius: 50px;
  text-decoration: none;
  line-height: 1.2;
  font-size: 1.6rem;
  font-weight: 600;
  text-align: center;
  color: #484848;
  border: 1px solid #999;
  box-sizing: border-box;
}
@media screen and (min-width: 1025px) and (max-width: 1299px) {
  .pgNav li a {
    font-size: 1.2307692308vw;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .pgNav li a {
    min-width: 7em;
    padding: 1em;
    font-size: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .pgNav li a {
    min-width: 7em;
    padding: 1em;
    font-size: 1.3rem;
  }
}
.pgNav li a.active {
  border: 1px solid var(--color-secondary);
  background-color: var(--color-secondary);
  color: white;
}
.pgNav--white li a {
  color: white;
  border: 1px solid white;
}
.pgNav--white li a:hover {
  background-color: white;
  color: #484848;
}

sup {
  font-size: 1.1rem;
  vertical-align: 0.5em;
}

.NotesCnt {
  display: flex;
  flex-direction: column;
  gap: 0.25em 0;
}
.NotesCnt--ptn1 {
  align-items: flex-end;
}

.Notes {
  display: inline-flex;
  font-size: clamp(1rem, 0.8vw, 100rem);
  position: relative;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .Notes {
    font-size: 1rem;
  }
}
.Notes--mark {
  padding-left: 1em;
}
.Notes--mark::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.ContactInfo {
  background-color: var(--color-primary);
}
.ContactInfo__inner {
  width: 100%;
  margin: 0 auto;
  max-width: var(--width-content);
  position: relative;
  box-sizing: border-box;
  z-index: 10;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 1025px) and (max-width: 1299px) {
  .ContactInfo__inner {
    max-width: 90%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .ContactInfo__inner {
    max-width: 90%;
  }
}
@media screen and (max-width: 767px) {
  .ContactInfo__inner {
    max-width: 85%;
  }
}
@media screen and (max-width: 767px) {
  .ContactInfo__inner {
    flex-direction: column;
    justify-content: flex-start;
  }
}
.ContactInfo .ContactBtn {
  width: calc(50% - 50px);
}
@media screen and (max-width: 767px) {
  .ContactInfo .ContactBtn {
    width: 100%;
  }
}

/*!
component > table
------------------------------
*/
.baseTable th,
.baseTable td {
  font-size: clamp(1.2rem, 1vw, 100rem);
  padding: 1em 0.5em;
  border-bottom: 1px solid #d5d5d5;
}
@media screen and (max-width: 767px) {
  .baseTable th,
  .baseTable td {
    display: block;
    padding: 1em 0;
    font-size: 1.5rem;
  }
}
.baseTable th {
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  .baseTable th {
    padding-bottom: 0;
    border-bottom: none;
  }
}
@media screen and (max-width: 767px) {
  .baseTable td {
    padding-top: 0.5em;
  }
}
@media screen and (max-width: 767px) {
  .baseTable tr:nth-last-of-type(1) td {
    border-bottom: none;
  }
}

.subTable th, .subTable td {
  padding: 0;
  border: none;
}
@media screen and (max-width: 767px) {
  .subTable th, .subTable td {
    display: table-cell;
  }
}

/*!
component > tab
------------------------------
*/
.tab-group {
  padding: 0 10px;
  display: flex;
  justify-content: center;
  position: relative;
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .tab-group {
    flex-wrap: wrap;
  }
}
.tab-group li.tab {
  margin: 0 5px;
  padding: 0.75em;
  min-width: 200px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 2rem;
  font-weight: 600;
  color: #484848;
  list-style: none;
  text-align: center;
  cursor: pointer;
  box-sizing: border-box;
  background-color: white;
  line-height: 1.2;
  letter-spacing: -0.05em;
}
@media screen and (max-width: 767px) {
  .tab-group li.tab {
    padding: 0.75em 1em;
    min-width: initial;
    font-size: 1.5rem;
  }
}
@media screen and (max-width: 100px) {
  .tab-group li.tab {
    font-size: 1.4rem;
  }
}
.tab-group li.tab.tab-active {
  background-color: #3F8EB3;
  transition: all 0.2s ease-out;
  color: white;
}

.panel {
  display: none;
  position: relative;
  z-index: 1;
  box-sizing: border-box;
}
.panel.panel-show {
  display: block;
}
.panel__inner {
  background-color: white;
}
/*!
component > modal
------------------------------
*/
.iziModal {
  max-width: 60% !important;
  margin-top: 180px !important;
  /*  margin-right: 50px !important;*/
}
.iziModal .wrap {
  margin: 0.5em;
  padding: 4em;
  overflow: hidden;
  text-align: left;
  background-color: white;
}
.iziModal .wrap p strong {
  font-size: 2.4rem;
}
.iziModal .wrap img {
  width: 280px;
  float: left;
  margin-right: 50px;
}

.mv-modal {
  max-width: 740px !important;
  overflow: visible !important;
}
@media screen and (max-width: 767px) {
  .mv-modal {
    max-width: 85% !important;
  }
}
.mv-modal .iziModal-wrap {
  width: 740px !important;
  max-width: 740px !important;
}
@media screen and (max-width: 767px) {
  .mv-modal .iziModal-wrap {
    width: 99% !important;
    max-width: 99% !important;
  }
}
.mv-modal .iziModal-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 120px;
  padding: 50px 35px 35px !important;
  box-sizing: border-box !important;
}
@media screen and (max-width: 767px) {
  .mv-modal .iziModal-content {
    padding: 35px 25px 25px !important;
  }
}
.mv-modal .iziModal-content iframe {
  display: block;
  width: 100%;
  max-height: 400px !important;
}
@media screen and (max-width: 767px) {
  .mv-modal .iziModal-content iframe {
    height: 170px !important;
    max-height: 170px !important;
    border: 1px solid #ccc !important;
  }
}
.mv-modal .iziModal-content .date {
  display: table;
  margin: 15px 0 0;
  font-size: 1.4rem;
}
.mv-modal .iziModal-content .ttl {
  display: block;
  padding: 1em 0;
  line-height: 1.3;
  font-weight: bold;
}
.mv-modal .iziModal-content .teikyo {
  display: table;
  margin: 0 auto;
  padding: 0.15em 0;
  padding-left: 60px;
  font-size: 1.3rem;
  position: relative;
  line-height: 1.2;
  letter-spacing: -0.05em;
}
.mv-modal .iziModal-content .teikyo::before {
  content: "提供元";
  display: inline-block;
  padding: 0.15em 0.5em;
  position: absolute;
  top: 0;
  left: 0;
  color: #115a56;
  border: 1px solid #115a56;
  font-size: 1.1rem;
}
.mv-modal .iziModal-content .close-btn {
  font-size: 2.4rem;
  position: absolute;
  top: 20px;
  right: 20px;
  color: #484848;
}
@media screen and (max-width: 767px) {
  .mv-modal .iziModal-content .close-btn {
    top: 12px;
    right: 12px;
  }
}

/*!
global > scroll
------------------------------
*/
.scroll_bar {
  overflow-y: scroll;
}

.scroll_bar::-webkit-scrollbar {
  width: 10px;
}

.scroll_bar::-webkit-scrollbar-track {
  background-color: transparent;
}

.scroll_bar::-webkit-scrollbar-thumb {
  background-color: rgba(72, 72, 72, 0.1);
  border-radius: 50px;
}

@media screen and (max-width: 767px) {
  .TableScroll {
    width: 100%;
    padding-bottom: 25px;
    position: relative;
    overflow-x: scroll;
  }
}
/*!
layout > header
------------------------------
*/
.smpLogo {
  display: flex;
  justify-content: center;
  align-items: center;
  position: fixed;
  width: 40px;
  aspect-ratio: 5/5;
  top: 15px;
  left: 1em;
  border-radius: 5px;
  overflow: hidden;
  background-color: black;
  display: none;
  z-index: 15;
}
@media screen and (max-width: 767px) {
  .smpLogo {
    display: flex;
  }
}
.smpLogo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.Header {
  min-width: 200px;
  width: 20%;
  min-height: 100vh;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 10;
  background-color: var(--color-primary-light);
}
.Header__inner {
  height: 100vh;
  box-sizing: border-box;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-gutter: stable;
  scrollbar-width: thin; /* Firefox用 */
  scrollbar-color: #edf0f5 transparent; /* Firefox用: つまみ色 背景色 */
}
.Header__inner::-webkit-scrollbar {
  width: 4px; /* スクロールバーの幅（細く） */
}
.Header__inner::-webkit-scrollbar-thumb {
  background-color: #edf0f5; /* つまみの色（背景になじませる） */
  border-radius: 4px;
}
.Header__inner::-webkit-scrollbar-track {
  background-color: transparent; /* トラック背景色を透明に */
}
@media screen and (max-width: 767px) {
  .Header__inner {
    padding-top: 15%;
  }
}
.Header__column {
  display: flex;
  flex-direction: column;
}
.Header__Box {
  padding: 10% 15%;
  border-bottom: 1px solid #d4d7d9;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .Header__Box {
    padding: 10% 7.5%;
  }
}
@media screen and (max-width: 767px) {
  .Header__Box {
    padding: 10% 7.5%;
  }
}
.Header__Box:nth-of-type(1) {
  border-bottom: none;
}
@media screen and (max-width: 767px) {
  .Header__Box:nth-of-type(1) {
    display: none;
  }
}
.Header__Box:nth-last-of-type(1) {
  border-bottom: none;
}
.Header .Logo {
  display: flex;
}
.Header .Logo img {
  display: block;
  width: 80px;
  border-radius: 7px;
}
.Header .SideNav li {
  line-height: 1.5;
}
.Header .SideNav li a {
  display: flex;
  align-items: center;
  padding: 0.5em 0;
  font-size: clamp(1.1rem, 0.9vw, 100rem);
  font-weight: 600;
  color: #484848;
  text-decoration: none;
  position: relative;
  gap: 0 0.75em;
}
@media screen and (max-width: 767px) {
  .Header .SideNav li a {
    font-size: 1.5rem;
  }
}
.Header .SideNav li a.parent {
  padding-right: 1em;
}
.Header .SideNav li a.parent::after {
  content: "";
  position: absolute;
  top: 0.75em;
  right: 0;
  width: 0.4em;
  height: 0.4em;
  border-right: 2px solid #484848;
  border-bottom: 2px solid #484848;
  transform: rotate(45deg); /* ▼ */
  transition: transform 0.3s ease;
}
.Header .SideNav li a .icon {
  display: block;
  width: 20px;
  height: 20px;
  object-fit: contain;
  object-position: center;
}
.Header .SideNav li a:hover {
  color: var(--color-primary);
  font-weight: 800;
}
.Header .SideNav li a.active {
  color: var(--color-primary);
  font-weight: 800;
}
.Header .SideNav li.open > .subMenu {
  max-height: 700px;
}
.Header .SideNav li.open > a.parent::after {
  transform: rotate(-135deg);
}
.Header .SideNav .subMenu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  padding-left: 1.5em;
  counter-reset: submenu-counter;
  list-style: none;
}
.Header .SideNav .subMenu li {
  padding-left: 1.25em;
  counter-increment: submenu-counter;
  position: relative;
}
.Header .SideNav .subMenu li::before {
  content: counter(submenu-counter) ". ";
  position: absolute;
  top: 0.55em;
  left: 0;
  font-weight: 600;
}
.Header .SpecialClass li {
  line-height: 1.5;
}
.Header .SpecialClass li a {
  display: flex;
  align-items: center;
  padding: 0.5em 0;
  font-size: clamp(1.1rem, 0.9vw, 100rem);
  font-weight: 600;
  color: #484848;
  text-decoration: none;
  position: relative;
  gap: 0 0.75em;
}
@media screen and (max-width: 767px) {
  .Header .SpecialClass li a {
    font-size: 1.5rem;
  }
}
.Header .SpecialClass li a .color-marker {
  content: "";
  display: block;
  width: 10px;
  min-width: 10px;
  aspect-ratio: 5/5;
}

.config-menu {
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 30;
}
@media screen and (max-width: 767px) {
  .config-menu {
    position: absolute;
    top: 10px;
    right: 10px;
  }
}

.js-dropdown {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  aspect-ratio: 5/5;
  border-radius: 50%;
  cursor: pointer;
  background-color: #e6e9f1;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .js-dropdown {
    width: 32px;
  }
}
@media screen and (max-width: 767px) {
  .js-dropdown {
    width: 42px;
  }
}
.js-dropdown img {
  display: block;
  width: 50%;
  height: auto;
}

.panel {
  position: absolute;
  top: 48px;
  left: -100px;
  margin: auto;
  width: 150px;
  max-width: 150px;
  box-sizing: border-box;
  padding: 15px;
  display: none;
  border-radius: 5px;
  background-color: white;
  box-shadow: 1px 1px 3px rgba(68, 68, 68, 0.7);
}
@media screen and (max-width: 767px) {
  .panel {
    left: auto;
    right: 0;
    padding: 10px;
  }
}
.panel-inner {
  padding: 0;
  position: relative;
}
.panel ul {
  width: 100%;
  margin: 0;
  padding: 0;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
@media screen and (max-width: 767px) {
  .panel ul {
    display: flex;
  }
}
.panel ul li {
  width: 100%;
  margin: 0;
  padding: 0;
}
.panel ul li a {
  display: block;
  padding: 0.5em;
  font-size: 1.3rem;
  text-align: left;
  line-height: 1.3;
  text-decoration: none;
  color: #484848;
}
.panel ul li a::after {
  display: none;
}

/*!
layout > footer
------------------------------
*/
.footer {
  background-color: #28b893;
  color: white;
  position: relative;
}
.footer__inner {
  padding: 25px 0;
}
.footer .footerNav {
  display: flex;
  justify-content: center;
}
.footer .footerNav li {
  border-right: 1px solid rgba(255, 255, 255, 0.6);
}
.footer .footerNav li a {
  display: block;
  padding: 0 1.5em;
  color: white;
  font-size: 1.4rem;
  text-decoration: none;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .footer .footerNav li a {
    font-size: 1.2rem;
  }
}
.footer .footerNav li:last-child {
  border-right: none;
}
.footer .copyright {
  display: block;
  font-size: 1.1rem;
}

#pagetop {
  position: fixed;
  bottom: 15px;
  right: 15px;
  z-index: 50;
}
#pagetop a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  font-size: 2rem;
  color: #484848;
}
@media screen and (max-width: 767px) {
  #pagetop a {
    width: 45px;
    height: 45px;
  }
}
#pagetop a small {
  font-size: 1.1rem;
}
@media screen and (max-width: 767px) {
  #pagetop a small {
    font-size: 1rem;
  }
}
#pagetop a:hover {
  height: 80px;
  text-decoration: none;
}
@media screen and (max-width: 767px) {
  #pagetop a:hover {
    height: 45px;
  }
}
#pagetop a img {
  width: 25%;
}

/*!
layout > layout
------------------------------
*/
.MainCnt {
  padding-left: 20%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .MainCnt {
    padding-left: 200px;
  }
}
@media screen and (max-width: 767px) {
  .MainCnt {
    padding-left: 0;
  }
}
.MainCnt .Head {
  height: 80px;
  border-bottom: 1px solid #d4d7d9;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .MainCnt .Head {
    height: auto;
  }
}
.MainCnt .Head__inner {
  height: 100%;
  padding: 0 5%;
}
@media screen and (max-width: 767px) {
  .MainCnt .Head__inner {
    padding: 80px 5% 1.5em;
  }
}
.MainCnt .Head__column {
  display: flex;
  align-items: center;
  height: 100%;
}
.MainCnt__inner {
  padding: 7.5% 5%;
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  .MainCnt__inner {
    padding: 10% 5%;
  }
}
.MainCnt__column {
  display: flex;
  gap: 0 7.5%;
}
@media screen and (max-width: 767px) {
  .MainCnt__column {
    flex-direction: column;
    gap: 35px 0;
  }
}
.MainCnt__Box {
  width: 100%;
  position: relative;
}
.MainCnt__Box--1 {
  min-width: 57.5%;
  width: 57.5%;
}
@media screen and (max-width: 767px) {
  .MainCnt__Box--1 {
    min-width: initial;
    width: 100%;
  }
}

/*!
layout > menu(smp)
------------------------------
*/
.MenuOverlay {
  display: none;
  position: fixed;
  z-index: 9;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.85);
}

body.menu-open {
  overflow: hidden;
}

@media screen and (max-width: 767px) {
  .Header.is-open + .MenuOverlay {
    display: block;
  }
}
.MenuToggle {
  display: none;
  position: fixed;
  top: 15px;
  left: 70px;
  z-index: 100;
  width: 42px;
  aspect-ratio: 5/5;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  border: none;
  background-color: #e6e9f1;
  gap: 0.35em 0;
  border-radius: 5px;
}
.MenuToggle span {
  display: block;
  width: 60%;
  height: 1.5px;
  background-color: #484848;
  border-radius: 2px;
  transition: all 0.3s ease;
  transform-origin: center;
}
.MenuToggle.is-open span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 4px);
}
.MenuToggle.is-open span:nth-child(2) {
  opacity: 0;
}
.MenuToggle.is-open span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -4px);
}

@media screen and (max-width: 767px) {
  .Header {
    transform: translateX(-100%);
    transition: transform 0.3s ease;
    width: 80%;
  }
  .Header.is-open {
    transform: translateX(0);
  }
  .MenuToggle {
    display: flex;
  }
}
/*!
page > top
------------------------------
*/
#wrapper {
  width: 100%;
  margin: 0 auto;
  max-width: var(--width-content);
  position: relative;
  box-sizing: border-box;
}
@media screen and (min-width: 1025px) and (max-width: 1299px) {
  #wrapper {
    max-width: 90%;
  }
}
@media screen and (min-width: 768px) and (max-width: 1024px) {
  #wrapper {
    max-width: 90%;
  }
}
@media screen and (max-width: 767px) {
  #wrapper {
    max-width: 85%;
  }
}
@media screen and (max-width: 767px) {
  #wrapper {
    max-width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .LpCnt {
    padding: 0 5%;
  }
}

.Fv img {
  display: block;
  width: 100%;
}

.lastupdate {
  font-size: 1.4rem;
}
@media screen and (max-width: 767px) {
  .lastupdate {
    font-size: 1.2rem;
  }
}

.agencyList__column {
  display: flex;
  flex-direction: column;
  gap: 100px 0;
}
@media screen and (max-width: 767px) {
  .agencyList__column {
    gap: 75px 0;
  }
}

.agencyDetail__hd1 {
  display: flex;
  align-items: center;
  padding: 0.5em 1em;
  font-size: 3rem;
  font-weight: 700;
  background-image: linear-gradient(45deg, #188c6e, #28b893);
  line-height: 1.5;
  color: white;
  gap: 0 0.35em;
}
@media screen and (max-width: 767px) {
  .agencyDetail__hd1 {
    padding: 0.5em;
    font-size: 2.4rem;
  }
}
.agencyDetail__hd1 .icon {
  display: block;
  width: 36px;
  height: 36px;
  object-fit: contain;
  object-position: center;
}
@media screen and (max-width: 767px) {
  .agencyDetail__hd1 .icon {
    width: 28px;
    height: 28px;
  }
}
.agencyDetail__hd2 {
  display: flex;
  align-items: center;
  padding: 0.5em 1em;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1.5;
  color: var(--color-primary);
  border-left: 5px solid var(--color-primary);
}
@media screen and (max-width: 767px) {
  .agencyDetail__hd2 {
    font-size: 2.1rem;
    line-height: 1.3;
  }
}
.agencyDetail__img {
  display: block;
  width: 100%;
}
.agencyDetail__img img {
  display: block;
  width: 100%;
  object-fit: cover;
  aspect-ratio: 5/3;
}
.agencyDetail .checkList {
  background-color: white;
  border-radius: 15px;
  box-sizing: border-box;
  border: 3px solid #ff7d13;
  padding: 3.5%;
}
@media screen and (max-width: 767px) {
  .agencyDetail .checkList {
    padding: 5%;
  }
}
.agencyDetail .checkList li {
  margin-bottom: 1em;
  padding-left: 30px;
  display: block;
  position: relative;
  line-height: 1.7;
}
.agencyDetail .checkList li .icon {
  display: block;
  width: 24px;
  height: 24px;
  object-fit: contain;
  object-position: center;
  position: absolute;
  top: 0.35em;
  left: 0;
}
.agencyDetail .checkList li:last-child {
  margin-bottom: 0;
}
.agencyDetail .DtTable th,
.agencyDetail .DtTable td {
  background-color: white;
  border: 1px solid #ccc;
  padding: 0.75em 1em;
  line-height: 1.5;
  vertical-align: middle;
}
@media screen and (max-width: 767px) {
  .agencyDetail .DtTable th,
  .agencyDetail .DtTable td {
    padding: 0.75em;
    font-size: 1.3rem;
  }
}
.agencyDetail .DtTable th {
  background-color: #e8f8eb;
  font-weight: 700;
}

.VoiceList__column {
  display: flex;
  flex-direction: column;
  gap: 50px 0;
}

.Voice__column {
  display: flex;
  align-items: flex-start;
  gap: 0 30px;
}
@media screen and (max-width: 767px) {
  .Voice__column {
    flex-direction: column;
    align-items: center;
    gap: 15px 0;
  }
}
.Voice .avater {
  display: block;
  min-width: 120px;
  width: 120px;
}
@media screen and (max-width: 767px) {
  .Voice .avater {
    min-width: initial;
    width: 100px;
  }
}
.Voice .avater img {
  display: block;
  width: 100%;
}
.Voice__block {
  width: 100%;
  position: relative;
  background-color: white;
  border: 1.5px solid #ccc;
  border-radius: 10px;
  padding: 1.5em;
  box-sizing: border-box;
}
.Voice__block::before {
  content: "";
  position: absolute;
  top: 41px;
  left: -16.5px;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-bottom: 10px solid transparent;
  border-right: 18px solid white; /* 吹き出し背景色 */
  z-index: 1;
}
@media screen and (max-width: 767px) {
  .Voice__block::before {
    display: none;
  }
}
.Voice__block::after {
  content: "";
  position: absolute;
  top: 40px;
  left: -19.5px; /* 黒縁ぶん外側に */
  width: 0;
  height: 0;
  border-top: 11px solid transparent;
  border-bottom: 11px solid transparent;
  border-right: 19.5px solid #ccc; /* 黒縁 1.5px分大きく */
  z-index: 0;
}
@media screen and (max-width: 767px) {
  .Voice__block::after {
    display: none;
  }
}
.Voice__mainCopy {
  font-size: 2.1rem;
  font-weight: 700;
  color: #28b893;
}
@media screen and (max-width: 767px) {
  .Voice__mainCopy {
    font-size: 1.6rem;
  }
}
.Voice .star {
  color: #ff7d13;
}

/*# sourceMappingURL=style.css.map */
