@charset "UTF-8";
/* CSS Information
---------------------------------------------------------------
Site URL:https://
File name:style.css
Summary:base styles
Created:2025-10-20
--------------------------------------------------------------- */
/* Link */
/* ------------------------------------------------------------ */
a {
  color: #111;
  text-decoration: none;
}

/* Animation */
/* ------------------------------------------------------------ */
a,
img {
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}

.alpha:hover {
  filter: alpha(opacity=60);
  opacity: 0.6;
}

/* Font */
/* ------------------------------------------------------------ */
sup {
  font-size: 66%;
  vertical-align: top;
}

sub {
  font-size: 66%;
  vertical-align: baseline;
}

/* インデント1文字分 */
/* ------------------------------------------------------------ */
.indent {
  text-indent: -1em;
  margin-left: 1em;
}

/* HR */
/* ------------------------------------------------------------ */
hr {
  width: 100%;
  height: 1px;
  margin: min(4.392vw, 60px) auto;
  padding: 0;
  display: block;
  border: 0;
  border-top: 1px #000 solid;
}
@media screen and (max-width: 768px) {
  hr {
    margin: 7.246vw auto;
  }
}

/* pc_mode / sp_mode */
/* ------------------------------------------------------------ */
.pc {
  display: inherit;
}

.sp {
  display: none;
}

@media screen and (max-width: 768px) {
  .pc {
    display: none;
  }
  .sp {
    display: inherit;
  }
}
/* Style */
/* ------------------------------------------------------------ */
html {
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  font-size: 1.171vw;
}
@media screen and (max-width: 768px) {
  html {
    font-size: 3.382vw;
  }
}
html body {
  background: #fff;
}
html body::-webkit-scrollbar {
  display: none;
}
html body header {
  position: relative;
}
html body header .inner {
  background: rgb(255, 255, 255);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  height: min(7.028vw, 96px);
  padding: 0 min(2.562vw, 35px);
  margin: 0;
  position: fixed;
  top: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
  z-index: 10;
}
html body header .inner .header_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 100;
}
html body header .inner .header_area h1,
html body header .inner .header_area .logo {
  width: min(32.211vw, 440px);
}
html body header .inner .header_area #nav_toggle {
  display: none;
}
html body header .inner #global_nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(2.928vw, 40px);
}
html body header .inner #global_nav > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(1.83vw, 25px);
}
html body header .inner #global_nav > ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: url("../img/icon_arrow1.svg") no-repeat right min(0.22vw, 3px)/min(1.171vw, 16px) auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
html body header .inner #global_nav > ul li a span {
  font-size: min(1.125rem, 18px);
  font-weight: 700;
  padding-right: min(2.196vw, 30px);
}
html body header .inner #global_nav > ul li a::after {
  content: "";
  width: 100%;
  height: 1px;
  background: #21aa00;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  margin-top: min(0.366vw, 5px);
}
html body header .inner #global_nav > ul li a:hover {
  background: url("../img/icon_arrow2.svg") no-repeat right min(0.22vw, 3px)/min(1.171vw, 16px) auto;
}
html body header .inner #global_nav > ul li a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
html body header .inner #global_nav .btn {
  width: min(17.936vw, 245px);
}
@media screen and (max-width: 768px) {
  html body header .inner {
    height: 14.493vw;
    padding: 0 0 0 3.623vw;
  }
  html body header .inner .header_area {
    width: 100%;
  }
  html body header .inner .header_area h1,
  html body header .inner .header_area .logo {
    width: 76.812vw;
  }
  html body header .inner .header_area #nav_toggle {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    background: #fff;
    width: 14.493vw;
    height: 14.493vw;
    cursor: pointer;
    position: relative;
  }
  html body header .inner .header_area #nav_toggle span {
    width: 7.246vw;
    height: 2px;
    display: block;
    background: #21aa00;
    position: absolute;
    -webkit-transition: top 0.2s ease, -webkit-transform 0.5s ease-in-out;
    transition: top 0.2s ease, -webkit-transform 0.5s ease-in-out;
    transition: transform 0.5s ease-in-out, top 0.2s ease;
    transition: transform 0.5s ease-in-out, top 0.2s ease, -webkit-transform 0.5s ease-in-out;
  }
  html body header .inner .header_area #nav_toggle span:nth-child(1) {
    top: calc(37% - 1.867vw);
  }
  html body header .inner .header_area #nav_toggle span:nth-child(2) {
    top: 37%;
  }
  html body header .inner .header_area #nav_toggle span:nth-child(3) {
    top: calc(37% + 1.867vw);
  }
  html body header .inner .header_area #nav_toggle p {
    font-family: "Inter";
    font-size: 0.857rem;
    position: absolute;
    bottom: 2.415vw;
  }
  html body header .inner #global_nav {
    background: rgba(0, 0, 0, 0.9);
    position: fixed;
    inset: 0;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    visibility: hidden;
    height: 100dvh;
    opacity: 0;
    z-index: 50;
    gap: 9.662vw;
    -webkit-transition: opacity 0.5s ease, visibility 0.5s ease;
    transition: opacity 0.5s ease, visibility 0.5s ease;
  }
  html body header .inner #global_nav > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
    gap: 7.246vw;
    opacity: 0;
    -webkit-transform: translateY(9.662vw);
            transform: translateY(9.662vw);
    -webkit-transition: opacity 0.1s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.1s ease, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, opacity 0.1s ease;
    transition: transform 0.5s ease, opacity 0.1s ease, -webkit-transform 0.5s ease;
  }
  html body header .inner #global_nav > ul li {
    width: 100%;
  }
  html body header .inner #global_nav > ul li a {
    background: url("../img/icon_arrow3.svg") no-repeat right 0.22vw/3.623vw auto !important;
  }
  html body header .inner #global_nav > ul li a span {
    color: #fff;
    font-size: 1.285rem;
    padding-right: 7.246vw;
  }
  html body header .inner #global_nav > ul li a::after {
    margin-top: 1.208vw;
  }
  html body header .inner #global_nav > ul li a:hover {
    background: url("../img/icon_arrow2.svg") no-repeat right 0.22vw/3.623vw auto !important;
  }
  html body header .inner #global_nav .btn {
    width: 59.179vw;
    opacity: 0;
    -webkit-transform: translateY(9.662vw);
            transform: translateY(9.662vw);
    -webkit-transition: opacity 0.1s ease, -webkit-transform 0.5s ease;
    transition: opacity 0.1s ease, -webkit-transform 0.5s ease;
    transition: transform 0.5s ease, opacity 0.1s ease;
    transition: transform 0.5s ease, opacity 0.1s ease, -webkit-transform 0.5s ease;
  }
  html body header .inner.open {
    background: none;
  }
  html body header .inner.open .header_area h1,
  html body header .inner.open .header_area .logo {
    -webkit-filter: invert(1) brightness(1);
            filter: invert(1) brightness(1);
  }
  html body header .inner.open .header_area #nav_toggle span:nth-child(1) {
    top: 37% !important;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
  }
  html body header .inner.open .header_area #nav_toggle span:nth-child(2) {
    width: 0;
  }
  html body header .inner.open .header_area #nav_toggle span:nth-child(3) {
    top: 37% !important;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
  }
  html body header .inner.open #global_nav {
    visibility: visible;
    opacity: 1;
  }
  html body header .inner.open #global_nav > ul {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
  html body header .inner.open #global_nav .btn {
    opacity: 1;
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
html body main {
  overflow: hidden;
  margin-top: min(7.028vw, 96px);
}
@media screen and (max-width: 768px) {
  html body main {
    margin-top: 0;
  }
}
html body main#index section#mainvisual {
  background: url("../img/bg_mainvisual.jpg") repeat-y center top/100% auto;
}
@media screen and (max-width: 768px) {
  html body main#index section#mainvisual {
    background: url("../img/bg_mainvisual_sp.jpg") repeat-y center top/100% auto;
  }
}
html body main#index section#mainvisual .inner {
  width: 100%;
  aspect-ratio: 683/364;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main#index section#mainvisual .inner {
    aspect-ratio: 69/121;
  }
}
html body main#index section#mainvisual .inner h2,
html body main#index section#mainvisual .inner p {
  display: none;
}
html body main#index section#mainvisual .inner ul {
  position: absolute;
  right: 10.249vw;
  bottom: 2.196vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#index section#mainvisual .inner ul {
    left: 0;
    right: 0;
    bottom: 2.415vw;
    gap: 2.415vw;
  }
}
html body main#index section#mainvisual .inner ul li {
  width: 24.524vw;
}
@media screen and (max-width: 768px) {
  html body main#index section#mainvisual .inner ul li {
    width: 46.377vw;
  }
}
html body main#index section#mainvisual .inner ul li img {
  -webkit-filter: drop-shadow(0 0 min(0.366vw, 5px) rgba(4, 28, 0, 0.75));
          filter: drop-shadow(0 0 min(0.366vw, 5px) rgba(4, 28, 0, 0.75));
}
@media screen and (max-width: 768px) {
  html body main#index section#mainvisual .inner ul li img {
    -webkit-filter: drop-shadow(0 0 1.208vw rgba(4, 28, 0, 0.75));
            filter: drop-shadow(0 0 1.208vw rgba(4, 28, 0, 0.75));
  }
}
html body main#index section:not(#mainvisual) .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(76.135vw, 1040px);
  padding: min(7.321vw, 100px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#index section:not(#mainvisual) .inner {
    width: 100% !important;
    padding: 14.493vw 7.246vw;
  }
}
html body main#index section#news {
  background: #efefef;
}
html body main#index section#news .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (max-width: 768px) {
  html body main#index section#news .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding-bottom: 28.986vw;
    position: relative;
  }
}
html body main#index section#news .inner > div:nth-of-type(1) {
  width: min(13.543vw, 185px);
}
@media screen and (max-width: 768px) {
  html body main#index section#news .inner > div:nth-of-type(1) {
    width: 100%;
    text-align: center;
  }
}
html body main#index section#news .inner > div:nth-of-type(1) .btn {
  width: min(10.176vw, 139px);
  margin: min(2.196vw, 30px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#index section#news .inner > div:nth-of-type(1) .btn {
    width: 33.575vw;
    position: absolute;
    bottom: 12.077vw;
    left: 0;
    right: 0;
    margin: auto;
  }
}
html body main#index section#news .inner > div:nth-of-type(2) {
  width: min(58.931vw, 805px);
}
@media screen and (max-width: 768px) {
  html body main#index section#news .inner > div:nth-of-type(2) {
    width: 100%;
    margin-top: 3.623vw;
  }
}
html body main#index section#news .inner > div:nth-of-type(2) article {
  background-image: linear-gradient(to right, #809394 2px, transparent 2px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
  background-position: center bottom;
  width: 100%;
}
html body main#index section#news .inner > div:nth-of-type(2) article a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: min(2.196vw, 30px) min(1.464vw, 20px) min(2.196vw, 30px) 0;
  background: url("../img/icon_arrow4.svg") no-repeat right center/auto min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#index section#news .inner > div:nth-of-type(2) article a {
    display: block;
    background: none;
    padding: 3.623vw 3.623vw 3.623vw 0;
    background: url("../img/icon_arrow4.svg") no-repeat right center/auto 2.415vw;
  }
}
html body main#index section#news .inner > div:nth-of-type(2) article a div {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 28%;
}
@media screen and (max-width: 768px) {
  html body main#index section#news .inner > div:nth-of-type(2) article a div {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
  }
}
html body main#index section#news .inner > div:nth-of-type(2) article a div time {
  font-family: "Inter";
  font-size: min(0.875rem, 14px);
  white-space: nowrap;
  margin-right: min(1.098vw, 15px);
}
@media screen and (max-width: 768px) {
  html body main#index section#news .inner > div:nth-of-type(2) article a div time {
    font-size: 1rem;
    margin-right: 3.623vw;
  }
}
html body main#index section#news .inner > div:nth-of-type(2) article a div .category {
  border-radius: min(1.464vw, 20px);
  background: #21aa00;
  color: #fff;
  font-size: min(0.75rem, 12px);
  white-space: nowrap;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#index section#news .inner > div:nth-of-type(2) article a div .category {
    border-radius: 4.831vw;
    font-size: 0.714rem;
    padding: 1.208vw 2.415vw;
  }
}
html body main#index section#news .inner > div:nth-of-type(2) article a h2 {
  display: block;
  width: 72%;
  font-size: min(0.875rem, 14px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
  html body main#index section#news .inner > div:nth-of-type(2) article a h2 {
    width: 100%;
    font-size: 1rem;
    margin-top: 2.415vw;
  }
}
html body main#index section#point {
  background: url("../img/bg_common.jpg") no-repeat center top/cover;
}
html body main#index section#point .inner p {
  text-align: center;
  color: #fff;
  font-size: min(1.125rem, 18px);
  font-weight: 700;
  line-height: 1.6;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#index section#point .inner p {
    font-size: 1.142rem;
    margin-top: 7.246vw;
  }
}
html body main#index section#point .inner ul {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: min(1.464vw, 20px);
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#index section#point .inner ul {
    grid-template-columns: repeat(2, 1fr);
    gap: 4.831vw;
    margin-top: 7.246vw;
  }
}
html body main#index section#point .inner ul li {
  width: 100%;
}
html body main#index section#point .inner ul li figure {
  width: 100%;
}
html body main#index section#point .inner ul li figure div {
  border-radius: min(14.641vw, 200px);
  width: 100%;
  -webkit-box-shadow: 0 0 min(0.732vw, 10px) rgba(4, 28, 0, 0.75);
          box-shadow: 0 0 min(0.732vw, 10px) rgba(4, 28, 0, 0.75);
  overflow: hidden;
}
@media screen and (max-width: 768px) {
  html body main#index section#point .inner ul li figure div {
    border-radius: 48.309vw;
    width: 100%;
    -webkit-box-shadow: 0 0 2.415vw rgba(4, 28, 0, 0.75);
            box-shadow: 0 0 2.415vw rgba(4, 28, 0, 0.75);
  }
}
html body main#index section#point .inner ul li figure div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#index section#point .inner ul li figure figcaption {
  text-align: center;
  margin-top: min(2.196vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#index section#point .inner ul li figure figcaption {
    margin-top: 3.623vw;
  }
}
html body main#index section#point .inner ul li figure figcaption span {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  color: #fff;
  font-size: min(1.5rem, 24px);
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#index section#point .inner ul li figure figcaption span {
    font-size: 1.142rem;
  }
}
html body main#index section#point .inner ul li figure figcaption span::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #21aa00;
  border-radius: 2px;
}
html body main#index section#area {
  background: url("../img/bg_area.png?date=20251120") no-repeat center top/auto 100%;
}
@media screen and (max-width: 768px) {
  html body main#index section#area {
    background: url("../img/bg_area_sp.png") no-repeat center calc(100% - 74.879vw)/100% auto;
  }
}
html body main#index section#area .inner {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
@media screen and (max-width: 768px) {
  html body main#index section#area .inner {
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 169.082vw;
    position: relative;
  }
}
html body main#index section#area .inner > strong {
  display: block;
  width: min(35.652vw, 487px);
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#index section#area .inner > strong {
    width: 57.005vw;
    margin-top: 7.246vw;
  }
}
html body main#index section#area .inner > div {
  margin-top: min(1.098vw, 15px);
}
@media screen and (max-width: 768px) {
  html body main#index section#area .inner > div {
    position: absolute;
    bottom: 12.077vw;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding: 0 7.246vw;
    margin-top: 0;
  }
}
html body main#index section#area .inner > div em {
  font-size: min(1.125rem, 18px);
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#index section#area .inner > div em {
    text-align: center;
    font-size: 1.142rem;
  }
}
html body main#index section#area .inner > div p {
  font-size: min(0.875rem, 14px);
  font-weight: 500;
  margin-top: min(1.098vw, 15px);
}
@media screen and (max-width: 768px) {
  html body main#index section#area .inner > div p {
    text-align: center;
    font-size: 1rem;
    margin-top: 2.415vw;
  }
}
html body main#index section#area .inner > div > strong {
  display: block;
  width: min(36.31vw, 496px);
  margin-top: min(1.098vw, 15px);
}
@media screen and (max-width: 768px) {
  html body main#index section#area .inner > div > strong {
    width: 79.227vw;
    margin-top: 2.415vw;
  }
}
html body main#index section#course {
  background: #efefef;
}
html body main#index section#course .inner > p {
  text-align: center;
  color: #1e3f40;
  font-size: min(1.125rem, 18px);
  font-weight: 700;
  line-height: 1.6;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#index section#course .inner > p {
    font-size: 1.142rem;
    margin-top: 7.246vw;
  }
}
html body main#index section#course .inner > ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(2.928vw, 40px);
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#index section#course .inner > ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 7.246vw;
    margin-top: 7.246vw;
  }
}
html body main#index section#course .inner > ul li {
  border-radius: min(0.366vw, 5px);
  border: 2px #1e3f40 solid;
  background: #fff;
  width: 100%;
  -webkit-box-shadow: 0 0 min(0.366vw, 5px) rgba(4, 28, 0, 0.5);
          box-shadow: 0 0 min(0.366vw, 5px) rgba(4, 28, 0, 0.5);
}
@media screen and (max-width: 768px) {
  html body main#index section#course .inner > ul li {
    border-radius: 1.208vw;
    -webkit-box-shadow: 0 0 1.208vw rgba(4, 28, 0, 0.5);
            box-shadow: 0 0 1.208vw rgba(4, 28, 0, 0.5);
  }
}
html body main#index section#course .inner > ul li figure {
  width: 100%;
  height: 100%;
  position: relative;
}
html body main#index section#course .inner > ul li figure div {
  width: 100%;
  aspect-ratio: 160/113;
  overflow: hidden;
}
html body main#index section#course .inner > ul li figure div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#index section#course .inner > ul li figure figcaption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 min(1.464vw, 20px) min(7.321vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#index section#course .inner > ul li figure figcaption {
    padding: 0 4.831vw 21.739vw;
  }
}
html body main#index section#course .inner > ul li figure figcaption strong {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: min(1.25rem, 20px);
  font-weight: 700;
  width: min(15.373vw, 210px);
  height: min(3.221vw, 44px);
  border-radius: min(2.928vw, 40px);
  background: -webkit-gradient(linear, left top, right top, from(#1f3d3e), color-stop(50%, #0b665e), to(#1f3d3e));
  background: linear-gradient(to right, #1f3d3e 0%, #0b665e 50%, #1f3d3e 100%);
  margin-top: calc(-1 * min(1.611vw, 22px));
}
@media screen and (max-width: 768px) {
  html body main#index section#course .inner > ul li figure figcaption strong {
    font-size: 1.571rem;
    width: 55.556vw;
    height: 12.077vw;
    border-radius: 12.077vw;
    margin-top: -6.039vw;
  }
}
html body main#index section#course .inner > ul li figure figcaption .price {
  color: #1e3f40;
  font-family: "Inter";
  font-size: min(2.75rem, 44px);
  font-weight: 800;
  margin-top: min(2.196vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#index section#course .inner > ul li figure figcaption .price {
    font-size: 3.142rem;
    margin-top: 4.831vw;
  }
}
html body main#index section#course .inner > ul li figure figcaption .price i {
  font-size: min(2rem, 32px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#index section#course .inner > ul li figure figcaption .price i {
    font-size: 2.285rem;
  }
}
html body main#index section#course .inner > ul li figure figcaption .price span {
  font-size: min(1rem, 16px);
  font-weight: 800;
}
@media screen and (max-width: 768px) {
  html body main#index section#course .inner > ul li figure figcaption .price span {
    font-size: 1.142rem;
  }
}
html body main#index section#course .inner > ul li figure figcaption .comment {
  font-size: min(0.875rem, 14px);
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#index section#course .inner > ul li figure figcaption .comment {
    font-size: 1rem;
    margin-top: 4.831vw;
  }
}
html body main#index section#course .inner > ul li figure figcaption .btn {
  width: min(10.176vw, 139px);
  position: absolute;
  bottom: min(2.196vw, 30px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  html body main#index section#course .inner > ul li figure figcaption .btn {
    width: 33.575vw;
    bottom: 7.246vw;
  }
}
html body main#index section#materials .inner > p {
  color: #1e3f40;
  font-size: min(1.125rem, 18px);
  font-weight: 700;
  line-height: 1.6;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#index section#materials .inner > p {
    text-align: center;
    font-size: 1.142rem;
    margin-top: 7.246vw;
  }
}
html body main#index section#materials .inner h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  color: #00635b;
  font-size: min(1.875rem, 30px);
  font-weight: 700;
  margin-top: min(4.392vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main#index section#materials .inner h3 {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    font-size: 2.142rem;
    margin-top: 12.077vw;
  }
  html body main#index section#materials .inner h3::after {
    content: "";
    -ms-flex-negative: 0;
        flex-shrink: 0;
    display: block;
    width: 12.077vw;
    height: 2px;
    background: #21aa00;
    margin-top: 4.831vw;
  }
}
html body main#index section#materials .inner h3::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: min(0.512vw, 7px);
  height: min(2.05vw, 28px);
  background: #21aa00;
  margin-right: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#index section#materials .inner h3::before {
    content: none;
  }
}
html body main#index section#materials .inner h3 + p {
  color: #1e3f40;
  font-size: min(1rem, 16px);
  font-weight: 700;
  line-height: 1.6;
  width: 100%;
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#index section#materials .inner h3 + p {
    font-size: 1rem;
    margin-top: 4.831vw;
  }
}
html body main#index section#materials .inner > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #efefef;
  width: 100%;
  padding: min(1.464vw, 20px) min(3.66vw, 50px);
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#index section#materials .inner > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 4.831vw 4.831vw 0;
    margin-top: 4.831vw;
  }
}
html body main#index section#materials .inner > div h4 {
  color: #00635b;
  font-size: min(1.875rem, 30px);
  font-weight: 700;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#index section#materials .inner > div h4 {
    text-align: center;
    font-size: 1.714rem;
  }
}
html body main#index section#materials .inner > div ul {
  width: min(38.067vw, 520px);
}
@media screen and (max-width: 768px) {
  html body main#index section#materials .inner > div ul {
    width: 100%;
  }
}
html body main#index section#materials .inner > div ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: min(2.196vw, 30px) 0;
  background-image: linear-gradient(to right, #809394 2px, transparent 2px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
  background-position: center top;
}
@media screen and (max-width: 768px) {
  html body main#index section#materials .inner > div ul li {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    padding: 7.246vw 0;
  }
}
html body main#index section#materials .inner > div ul li:first-of-type {
  background-image: none;
}
html body main#index section#materials .inner > div ul li strong {
  color: #1e3f40;
  font-size: min(1.125rem, 18px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#index section#materials .inner > div ul li strong {
    font-size: 1.142rem;
  }
}
html body main#index section#materials .inner > div ul li strong img {
  width: min(1.83vw, 25px);
  margin-right: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#index section#materials .inner > div ul li strong img {
    width: 4.831vw;
    margin-right: 2.415vw;
  }
}
html body main#index section#materials .inner > div ul li strong small {
  font-size: min(1rem, 16px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#index section#materials .inner > div ul li strong small {
    font-size: 1rem;
  }
}
html body main#index section#materials .inner > div ul li .btn {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(10.908vw, 149px);
}
@media screen and (max-width: 768px) {
  html body main#index section#materials .inner > div ul li .btn {
    width: 35.99vw;
    margin-top: 3.623vw;
  }
}
@media screen and (max-width: 768px) {
  html body main#course {
    margin-top: 14.493vw;
  }
}
html body main#course section#title {
  background: url("../img/title_course.png") no-repeat center/cover;
  aspect-ratio: 1366/253;
}
@media screen and (max-width: 768px) {
  html body main#course section#title {
    background: url("../img/title_course.png") no-repeat center/cover;
    aspect-ratio: 207/70;
  }
}
html body main#course section#title .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0 5.857vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#course section#title .inner {
    padding: 0 7.246vw;
  }
}
html body main#course section#title .inner h1,
html body main#course section#title .inner p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 0 0 0.366vw #041c00;
  margin-top: 5.124vw;
}
@media screen and (max-width: 768px) {
  html body main#course section#title .inner h1,
  html body main#course section#title .inner p {
    font-size: 2.285rem;
    margin-top: 9.662vw;
  }
}
html body main#course section#title .inner h1::before,
html body main#course section#title .inner p::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 0.878vw;
  height: 3.807vw;
  background: #21aa00;
  margin-right: 1.464vw;
}
@media screen and (max-width: 768px) {
  html body main#course section#title .inner h1::before,
  html body main#course section#title .inner p::before {
    width: 1.208vw;
    height: 7.246vw;
    margin-right: 2.415vw;
  }
}
html body main#course section#title .inner h1 span,
html body main#course section#title .inner p span {
  font-size: 70%;
  font-weight: 700;
  -ms-flex-item-align: center;
      align-self: center;
  margin: 0 -0.366vw 0 -0.732vw;
}
@media screen and (max-width: 768px) {
  html body main#course section#title .inner h1 span,
  html body main#course section#title .inner p span {
    margin: 0 -1.208vw 0 -2.415vw;
  }
}
html body main#course section#title .inner h1 small,
html body main#course section#title .inner p small {
  font-size: 70%;
  font-weight: 700;
}
html body main#course section:not(#title) {
  overflow: hidden;
}
html body main#course section:not(#title) .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(76.135vw, 1040px);
  padding: min(7.321vw, 100px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#course section:not(#title) .inner {
    width: 100% !important;
    padding: 14.493vw 7.246vw;
  }
}
html body main#course section#posting .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 768px) {
  html body main#course section#posting .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
html body main#course section#posting .inner article {
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#course section#posting .inner article {
    margin-bottom: 14.493vw;
  }
}
html body main#course section#posting .inner article > .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
html body main#course section#posting .inner article > .date time {
  font-family: "Inter";
  font-size: min(0.875rem, 14px);
  white-space: nowrap;
  margin-right: min(1.098vw, 15px);
}
@media screen and (max-width: 768px) {
  html body main#course section#posting .inner article > .date time {
    font-size: 1rem;
    margin-right: 3.623vw;
  }
}
html body main#course section#posting .inner article > .date .category {
  border-radius: min(1.464vw, 20px);
  background: #21aa00;
  color: #fff;
  font-size: min(0.75rem, 12px);
  white-space: nowrap;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#course section#posting .inner article > .date .category {
    border-radius: 4.831vw;
    font-size: 0.714rem;
    padding: 1.208vw 2.415vw;
  }
}
html body main#course section#posting .inner article > .date .category + .category {
  margin-left: min(1.098vw, 15px);
}
@media screen and (max-width: 768px) {
  html body main#course section#posting .inner article > .date .category + .category {
    margin-left: 3.623vw;
  }
}
html body main#course section#posting .inner article > h1 {
  font-size: min(1.375rem, 22px);
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #809394 solid;
  margin: min(1.464vw, 20px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#course section#posting .inner article > h1 {
    font-size: 1.428rem;
    padding-bottom: 2.415vw;
    margin: 4.831vw 0 0;
  }
}
html body main#course section#posting .inner article > figure {
  width: 100%;
  aspect-ratio: 500/309;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#course section#posting .inner article > figure {
    margin-top: 4.831vw;
  }
}
html body main#course section#posting .inner article > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#course section#posting .inner article > .comment {
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#course section#posting .inner article > .comment {
    margin-top: 4.831vw;
  }
}
html body main#course section#posting .inner article > .comment h1,
html body main#course section#posting .inner article > .comment h2,
html body main#course section#posting .inner article > .comment h3,
html body main#course section#posting .inner article > .comment h4,
html body main#course section#posting .inner article > .comment h5,
html body main#course section#posting .inner article > .comment h6,
html body main#course section#posting .inner article > .comment p {
  all: revert;
}
html body main#course section#posting .inner article > .comment h2 {
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #809394 solid;
}
@media screen and (max-width: 768px) {
  html body main#course section#posting .inner article > .comment h2 {
    font-size: 1.285rem;
    padding-bottom: 2.415vw;
  }
}
html body main#course section#posting .inner article > .comment h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: min(1.125rem, 18px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#course section#posting .inner article > .comment h3 {
    font-size: 1.142rem;
  }
}
html body main#course section#posting .inner article > .comment h3::before {
  content: "●";
  color: #21aa00;
  font-size: min(0.5rem, 8px);
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#course section#posting .inner article > .comment h3::before {
    font-size: 1.208vw;
    margin-right: 1.208vw;
  }
}
html body main#course section#posting .inner article > .comment h4 {
  font-size: min(1rem, 16px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#course section#posting .inner article > .comment h4 {
    font-size: 1rem;
  }
}
html body main#course section#posting .inner article > .comment ul,
html body main#course section#posting .inner article > .comment ol {
  list-style: revert;
  padding: revert;
}
html body main#course section#posting .inner article > .comment li {
  display: revert;
  font-size: revert;
  list-style: revert;
  margin: revert;
  padding: revert;
}
html body main#course section#posting .inner article > .comment img {
  max-width: 100%;
}
html body main#course section#posting .inner article > .comment a {
  text-decoration: underline;
}
html body main#course section#posting .inner article > .comment strong {
  font-weight: bold;
}
html body main#course section#posting .inner article > .comment em {
  font-style: italic;
}
html body main#course section#posting .inner article > .comment blockquote {
  background: #efefef;
  font-size: 0.75rem;
  line-height: 2;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#course section#posting .inner article > .comment blockquote {
    padding: 1.208vw 2.415vw;
  }
}
html body main#course section#posting .inner article > .comment blockquote p {
  margin-top: 0;
}
html body main#course section#posting .inner article > .comment hr {
  width: 100%;
  height: 1px;
  padding: 0;
  display: block;
  border: 0;
  background: #000;
}
html body main#course section#posting .inner article > .comment a {
  color: #000;
  text-decoration: underline;
  vertical-align: baseline;
}
html body main#course section#posting .inner article > .comment del {
  vertical-align: baseline;
}
@media screen and (max-width: 768px) {
  html body main#news {
    margin-top: 14.493vw;
  }
}
html body main#news section#title {
  background: url("../img/title_news.png") no-repeat center/cover;
  aspect-ratio: 1366/253;
}
@media screen and (max-width: 768px) {
  html body main#news section#title {
    background: url("../img/title_news.png") no-repeat center/cover;
    aspect-ratio: 207/70;
  }
}
html body main#news section#title .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0 5.857vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#news section#title .inner {
    padding: 0 7.246vw;
  }
}
html body main#news section#title .inner h1,
html body main#news section#title .inner p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 0 0 0.366vw #041c00;
  margin-top: 5.124vw;
}
@media screen and (max-width: 768px) {
  html body main#news section#title .inner h1,
  html body main#news section#title .inner p {
    font-size: 2.285rem;
    margin-top: 9.662vw;
  }
}
html body main#news section#title .inner h1::before,
html body main#news section#title .inner p::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 0.878vw;
  height: 3.807vw;
  background: #21aa00;
  margin-right: 1.464vw;
}
@media screen and (max-width: 768px) {
  html body main#news section#title .inner h1::before,
  html body main#news section#title .inner p::before {
    width: 1.208vw;
    height: 7.246vw;
    margin-right: 2.415vw;
  }
}
html body main#news section#title .inner h1 span,
html body main#news section#title .inner p span {
  font-size: 70%;
  font-weight: 700;
  -ms-flex-item-align: center;
      align-self: center;
  margin: 0 -0.366vw 0 -0.732vw;
}
@media screen and (max-width: 768px) {
  html body main#news section#title .inner h1 span,
  html body main#news section#title .inner p span {
    margin: 0 -1.208vw 0 -2.415vw;
  }
}
html body main#news section#title .inner h1 small,
html body main#news section#title .inner p small {
  font-size: 70%;
  font-weight: 700;
}
html body main#news section:not(#title) {
  overflow: hidden;
}
html body main#news section:not(#title) .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(76.135vw, 1040px);
  padding: min(7.321vw, 100px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#news section:not(#title) .inner {
    width: 100% !important;
    padding: 14.493vw 7.246vw;
  }
}
html body main#news section#posting .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 768px) {
  html body main#news section#posting .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
html body main#news section#posting .inner article {
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#news section#posting .inner article {
    margin-bottom: 14.493vw;
  }
}
html body main#news section#posting .inner article > .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
html body main#news section#posting .inner article > .date time {
  font-family: "Inter";
  font-size: min(0.875rem, 14px);
  white-space: nowrap;
  margin-right: min(1.098vw, 15px);
}
@media screen and (max-width: 768px) {
  html body main#news section#posting .inner article > .date time {
    font-size: 1rem;
    margin-right: 3.623vw;
  }
}
html body main#news section#posting .inner article > .date .category {
  border-radius: min(1.464vw, 20px);
  background: #21aa00;
  color: #fff;
  font-size: min(0.75rem, 12px);
  white-space: nowrap;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#news section#posting .inner article > .date .category {
    border-radius: 4.831vw;
    font-size: 0.714rem;
    padding: 1.208vw 2.415vw;
  }
}
html body main#news section#posting .inner article > .date .category + .category {
  margin-left: min(1.098vw, 15px);
}
@media screen and (max-width: 768px) {
  html body main#news section#posting .inner article > .date .category + .category {
    margin-left: 3.623vw;
  }
}
html body main#news section#posting .inner article > h1 {
  font-size: min(1.375rem, 22px);
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #809394 solid;
  margin: min(1.464vw, 20px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#news section#posting .inner article > h1 {
    font-size: 1.428rem;
    padding-bottom: 2.415vw;
    margin: 4.831vw 0 0;
  }
}
html body main#news section#posting .inner article > figure {
  width: 100%;
  aspect-ratio: 500/309;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#news section#posting .inner article > figure {
    margin-top: 4.831vw;
  }
}
html body main#news section#posting .inner article > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#news section#posting .inner article > .comment {
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#news section#posting .inner article > .comment {
    margin-top: 4.831vw;
  }
}
html body main#news section#posting .inner article > .comment h1,
html body main#news section#posting .inner article > .comment h2,
html body main#news section#posting .inner article > .comment h3,
html body main#news section#posting .inner article > .comment h4,
html body main#news section#posting .inner article > .comment h5,
html body main#news section#posting .inner article > .comment h6,
html body main#news section#posting .inner article > .comment p {
  all: revert;
}
html body main#news section#posting .inner article > .comment h2 {
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #809394 solid;
}
@media screen and (max-width: 768px) {
  html body main#news section#posting .inner article > .comment h2 {
    font-size: 1.285rem;
    padding-bottom: 2.415vw;
  }
}
html body main#news section#posting .inner article > .comment h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: min(1.125rem, 18px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#news section#posting .inner article > .comment h3 {
    font-size: 1.142rem;
  }
}
html body main#news section#posting .inner article > .comment h3::before {
  content: "●";
  color: #21aa00;
  font-size: min(0.5rem, 8px);
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#news section#posting .inner article > .comment h3::before {
    font-size: 1.208vw;
    margin-right: 1.208vw;
  }
}
html body main#news section#posting .inner article > .comment h4 {
  font-size: min(1rem, 16px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#news section#posting .inner article > .comment h4 {
    font-size: 1rem;
  }
}
html body main#news section#posting .inner article > .comment ul,
html body main#news section#posting .inner article > .comment ol {
  list-style: revert;
  padding: revert;
}
html body main#news section#posting .inner article > .comment li {
  display: revert;
  font-size: revert;
  list-style: revert;
  margin: revert;
  padding: revert;
}
html body main#news section#posting .inner article > .comment img {
  max-width: 100%;
}
html body main#news section#posting .inner article > .comment a {
  text-decoration: underline;
}
html body main#news section#posting .inner article > .comment strong {
  font-weight: bold;
}
html body main#news section#posting .inner article > .comment em {
  font-style: italic;
}
html body main#news section#posting .inner article > .comment blockquote {
  background: #efefef;
  font-size: 0.75rem;
  line-height: 2;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#news section#posting .inner article > .comment blockquote {
    padding: 1.208vw 2.415vw;
  }
}
html body main#news section#posting .inner article > .comment blockquote p {
  margin-top: 0;
}
html body main#news section#posting .inner article > .comment hr {
  width: 100%;
  height: 1px;
  padding: 0;
  display: block;
  border: 0;
  background: #000;
}
html body main#news section#posting .inner article > .comment a {
  color: #000;
  text-decoration: underline;
  vertical-align: baseline;
}
html body main#news section#posting .inner article > .comment del {
  vertical-align: baseline;
}
@media screen and (max-width: 768px) {
  html body main#news_detail {
    margin-top: 14.493vw;
  }
}
html body main#news_detail section#title {
  background: url("../img/title_news_detail.png") no-repeat center/cover;
  aspect-ratio: 1366/253;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#title {
    background: url("../img/title_news_detail.png") no-repeat center/cover;
    aspect-ratio: 207/70;
  }
}
html body main#news_detail section#title .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0 5.857vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#title .inner {
    padding: 0 7.246vw;
  }
}
html body main#news_detail section#title .inner h1,
html body main#news_detail section#title .inner p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 0 0 0.366vw #041c00;
  margin-top: 5.124vw;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#title .inner h1,
  html body main#news_detail section#title .inner p {
    font-size: 2.285rem;
    margin-top: 9.662vw;
  }
}
html body main#news_detail section#title .inner h1::before,
html body main#news_detail section#title .inner p::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 0.878vw;
  height: 3.807vw;
  background: #21aa00;
  margin-right: 1.464vw;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#title .inner h1::before,
  html body main#news_detail section#title .inner p::before {
    width: 1.208vw;
    height: 7.246vw;
    margin-right: 2.415vw;
  }
}
html body main#news_detail section#title .inner h1 span,
html body main#news_detail section#title .inner p span {
  font-size: 70%;
  font-weight: 700;
  -ms-flex-item-align: center;
      align-self: center;
  margin: 0 -0.366vw 0 -0.732vw;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#title .inner h1 span,
  html body main#news_detail section#title .inner p span {
    margin: 0 -1.208vw 0 -2.415vw;
  }
}
html body main#news_detail section#title .inner h1 small,
html body main#news_detail section#title .inner p small {
  font-size: 70%;
  font-weight: 700;
}
html body main#news_detail section:not(#title) {
  overflow: hidden;
}
html body main#news_detail section:not(#title) .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(76.135vw, 1040px);
  padding: min(7.321vw, 100px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section:not(#title) .inner {
    width: 100% !important;
    padding: 14.493vw 7.246vw;
  }
}
html body main#news_detail section#posting .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#posting .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
html body main#news_detail section#posting .inner article {
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#posting .inner article {
    margin-bottom: 14.493vw;
  }
}
html body main#news_detail section#posting .inner article > .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
html body main#news_detail section#posting .inner article > .date time {
  font-family: "Inter";
  font-size: min(0.875rem, 14px);
  white-space: nowrap;
  margin-right: min(1.098vw, 15px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#posting .inner article > .date time {
    font-size: 1rem;
    margin-right: 3.623vw;
  }
}
html body main#news_detail section#posting .inner article > .date .category {
  border-radius: min(1.464vw, 20px);
  background: #21aa00;
  color: #fff;
  font-size: min(0.75rem, 12px);
  white-space: nowrap;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#posting .inner article > .date .category {
    border-radius: 4.831vw;
    font-size: 0.714rem;
    padding: 1.208vw 2.415vw;
  }
}
html body main#news_detail section#posting .inner article > .date .category + .category {
  margin-left: min(1.098vw, 15px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#posting .inner article > .date .category + .category {
    margin-left: 3.623vw;
  }
}
html body main#news_detail section#posting .inner article > h1 {
  font-size: min(1.375rem, 22px);
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #809394 solid;
  margin: min(1.464vw, 20px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#posting .inner article > h1 {
    font-size: 1.428rem;
    padding-bottom: 2.415vw;
    margin: 4.831vw 0 0;
  }
}
html body main#news_detail section#posting .inner article > figure {
  width: 100%;
  aspect-ratio: 500/309;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#posting .inner article > figure {
    margin-top: 4.831vw;
  }
}
html body main#news_detail section#posting .inner article > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#news_detail section#posting .inner article > .comment {
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#posting .inner article > .comment {
    margin-top: 4.831vw;
  }
}
html body main#news_detail section#posting .inner article > .comment h1,
html body main#news_detail section#posting .inner article > .comment h2,
html body main#news_detail section#posting .inner article > .comment h3,
html body main#news_detail section#posting .inner article > .comment h4,
html body main#news_detail section#posting .inner article > .comment h5,
html body main#news_detail section#posting .inner article > .comment h6,
html body main#news_detail section#posting .inner article > .comment p {
  all: revert;
}
html body main#news_detail section#posting .inner article > .comment h2 {
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #809394 solid;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#posting .inner article > .comment h2 {
    font-size: 1.285rem;
    padding-bottom: 2.415vw;
  }
}
html body main#news_detail section#posting .inner article > .comment h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: min(1.125rem, 18px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#posting .inner article > .comment h3 {
    font-size: 1.142rem;
  }
}
html body main#news_detail section#posting .inner article > .comment h3::before {
  content: "●";
  color: #21aa00;
  font-size: min(0.5rem, 8px);
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#posting .inner article > .comment h3::before {
    font-size: 1.208vw;
    margin-right: 1.208vw;
  }
}
html body main#news_detail section#posting .inner article > .comment h4 {
  font-size: min(1rem, 16px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#posting .inner article > .comment h4 {
    font-size: 1rem;
  }
}
html body main#news_detail section#posting .inner article > .comment ul,
html body main#news_detail section#posting .inner article > .comment ol {
  list-style: revert;
  padding: revert;
}
html body main#news_detail section#posting .inner article > .comment li {
  display: revert;
  font-size: revert;
  list-style: revert;
  margin: revert;
  padding: revert;
}
html body main#news_detail section#posting .inner article > .comment img {
  max-width: 100%;
}
html body main#news_detail section#posting .inner article > .comment a {
  text-decoration: underline;
}
html body main#news_detail section#posting .inner article > .comment strong {
  font-weight: bold;
}
html body main#news_detail section#posting .inner article > .comment em {
  font-style: italic;
}
html body main#news_detail section#posting .inner article > .comment blockquote {
  background: #efefef;
  font-size: 0.75rem;
  line-height: 2;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail section#posting .inner article > .comment blockquote {
    padding: 1.208vw 2.415vw;
  }
}
html body main#news_detail section#posting .inner article > .comment blockquote p {
  margin-top: 0;
}
html body main#news_detail section#posting .inner article > .comment hr {
  width: 100%;
  height: 1px;
  padding: 0;
  display: block;
  border: 0;
  background: #000;
}
html body main#news_detail section#posting .inner article > .comment a {
  color: #000;
  text-decoration: underline;
  vertical-align: baseline;
}
html body main#news_detail section#posting .inner article > .comment del {
  vertical-align: baseline;
}
@media screen and (max-width: 768px) {
  html body main#contact {
    margin-top: 14.493vw;
  }
}
html body main#contact section#title {
  background: url("../img/title_contact.png") no-repeat center/cover;
  aspect-ratio: 1366/253;
}
@media screen and (max-width: 768px) {
  html body main#contact section#title {
    background: url("../img/title_contact.png") no-repeat center/cover;
    aspect-ratio: 207/70;
  }
}
html body main#contact section#title .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0 5.857vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#contact section#title .inner {
    padding: 0 7.246vw;
  }
}
html body main#contact section#title .inner h1,
html body main#contact section#title .inner p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 0 0 0.366vw #041c00;
  margin-top: 5.124vw;
}
@media screen and (max-width: 768px) {
  html body main#contact section#title .inner h1,
  html body main#contact section#title .inner p {
    font-size: 2.285rem;
    margin-top: 9.662vw;
  }
}
html body main#contact section#title .inner h1::before,
html body main#contact section#title .inner p::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 0.878vw;
  height: 3.807vw;
  background: #21aa00;
  margin-right: 1.464vw;
}
@media screen and (max-width: 768px) {
  html body main#contact section#title .inner h1::before,
  html body main#contact section#title .inner p::before {
    width: 1.208vw;
    height: 7.246vw;
    margin-right: 2.415vw;
  }
}
html body main#contact section#title .inner h1 span,
html body main#contact section#title .inner p span {
  font-size: 70%;
  font-weight: 700;
  -ms-flex-item-align: center;
      align-self: center;
  margin: 0 -0.366vw 0 -0.732vw;
}
@media screen and (max-width: 768px) {
  html body main#contact section#title .inner h1 span,
  html body main#contact section#title .inner p span {
    margin: 0 -1.208vw 0 -2.415vw;
  }
}
html body main#contact section#title .inner h1 small,
html body main#contact section#title .inner p small {
  font-size: 70%;
  font-weight: 700;
}
html body main#contact section:not(#title) {
  overflow: hidden;
}
html body main#contact section:not(#title) .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(76.135vw, 1040px);
  padding: min(7.321vw, 100px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#contact section:not(#title) .inner {
    width: 100% !important;
    padding: 14.493vw 7.246vw;
  }
}
html body main#contact section#posting .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 768px) {
  html body main#contact section#posting .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
html body main#contact section#posting .inner article {
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#contact section#posting .inner article {
    margin-bottom: 14.493vw;
  }
}
html body main#contact section#posting .inner article > .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
html body main#contact section#posting .inner article > .date time {
  font-family: "Inter";
  font-size: min(0.875rem, 14px);
  white-space: nowrap;
  margin-right: min(1.098vw, 15px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#posting .inner article > .date time {
    font-size: 1rem;
    margin-right: 3.623vw;
  }
}
html body main#contact section#posting .inner article > .date .category {
  border-radius: min(1.464vw, 20px);
  background: #21aa00;
  color: #fff;
  font-size: min(0.75rem, 12px);
  white-space: nowrap;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#posting .inner article > .date .category {
    border-radius: 4.831vw;
    font-size: 0.714rem;
    padding: 1.208vw 2.415vw;
  }
}
html body main#contact section#posting .inner article > .date .category + .category {
  margin-left: min(1.098vw, 15px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#posting .inner article > .date .category + .category {
    margin-left: 3.623vw;
  }
}
html body main#contact section#posting .inner article > h1 {
  font-size: min(1.375rem, 22px);
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #809394 solid;
  margin: min(1.464vw, 20px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#contact section#posting .inner article > h1 {
    font-size: 1.428rem;
    padding-bottom: 2.415vw;
    margin: 4.831vw 0 0;
  }
}
html body main#contact section#posting .inner article > figure {
  width: 100%;
  aspect-ratio: 500/309;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#posting .inner article > figure {
    margin-top: 4.831vw;
  }
}
html body main#contact section#posting .inner article > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#contact section#posting .inner article > .comment {
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#posting .inner article > .comment {
    margin-top: 4.831vw;
  }
}
html body main#contact section#posting .inner article > .comment h1,
html body main#contact section#posting .inner article > .comment h2,
html body main#contact section#posting .inner article > .comment h3,
html body main#contact section#posting .inner article > .comment h4,
html body main#contact section#posting .inner article > .comment h5,
html body main#contact section#posting .inner article > .comment h6,
html body main#contact section#posting .inner article > .comment p {
  all: revert;
}
html body main#contact section#posting .inner article > .comment h2 {
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #809394 solid;
}
@media screen and (max-width: 768px) {
  html body main#contact section#posting .inner article > .comment h2 {
    font-size: 1.285rem;
    padding-bottom: 2.415vw;
  }
}
html body main#contact section#posting .inner article > .comment h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: min(1.125rem, 18px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#contact section#posting .inner article > .comment h3 {
    font-size: 1.142rem;
  }
}
html body main#contact section#posting .inner article > .comment h3::before {
  content: "●";
  color: #21aa00;
  font-size: min(0.5rem, 8px);
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#posting .inner article > .comment h3::before {
    font-size: 1.208vw;
    margin-right: 1.208vw;
  }
}
html body main#contact section#posting .inner article > .comment h4 {
  font-size: min(1rem, 16px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#contact section#posting .inner article > .comment h4 {
    font-size: 1rem;
  }
}
html body main#contact section#posting .inner article > .comment ul,
html body main#contact section#posting .inner article > .comment ol {
  list-style: revert;
  padding: revert;
}
html body main#contact section#posting .inner article > .comment li {
  display: revert;
  font-size: revert;
  list-style: revert;
  margin: revert;
  padding: revert;
}
html body main#contact section#posting .inner article > .comment img {
  max-width: 100%;
}
html body main#contact section#posting .inner article > .comment a {
  text-decoration: underline;
}
html body main#contact section#posting .inner article > .comment strong {
  font-weight: bold;
}
html body main#contact section#posting .inner article > .comment em {
  font-style: italic;
}
html body main#contact section#posting .inner article > .comment blockquote {
  background: #efefef;
  font-size: 0.75rem;
  line-height: 2;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#posting .inner article > .comment blockquote {
    padding: 1.208vw 2.415vw;
  }
}
html body main#contact section#posting .inner article > .comment blockquote p {
  margin-top: 0;
}
html body main#contact section#posting .inner article > .comment hr {
  width: 100%;
  height: 1px;
  padding: 0;
  display: block;
  border: 0;
  background: #000;
}
html body main#contact section#posting .inner article > .comment a {
  color: #000;
  text-decoration: underline;
  vertical-align: baseline;
}
html body main#contact section#posting .inner article > .comment del {
  vertical-align: baseline;
}
@media screen and (max-width: 768px) {
  html body main#complete {
    margin-top: 14.493vw;
  }
}
html body main#complete section#title {
  background: url("../img/title_complete.png") no-repeat center/cover;
  aspect-ratio: 1366/253;
}
@media screen and (max-width: 768px) {
  html body main#complete section#title {
    background: url("../img/title_complete.png") no-repeat center/cover;
    aspect-ratio: 207/70;
  }
}
html body main#complete section#title .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0 5.857vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#complete section#title .inner {
    padding: 0 7.246vw;
  }
}
html body main#complete section#title .inner h1,
html body main#complete section#title .inner p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 0 0 0.366vw #041c00;
  margin-top: 5.124vw;
}
@media screen and (max-width: 768px) {
  html body main#complete section#title .inner h1,
  html body main#complete section#title .inner p {
    font-size: 2.285rem;
    margin-top: 9.662vw;
  }
}
html body main#complete section#title .inner h1::before,
html body main#complete section#title .inner p::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 0.878vw;
  height: 3.807vw;
  background: #21aa00;
  margin-right: 1.464vw;
}
@media screen and (max-width: 768px) {
  html body main#complete section#title .inner h1::before,
  html body main#complete section#title .inner p::before {
    width: 1.208vw;
    height: 7.246vw;
    margin-right: 2.415vw;
  }
}
html body main#complete section#title .inner h1 span,
html body main#complete section#title .inner p span {
  font-size: 70%;
  font-weight: 700;
  -ms-flex-item-align: center;
      align-self: center;
  margin: 0 -0.366vw 0 -0.732vw;
}
@media screen and (max-width: 768px) {
  html body main#complete section#title .inner h1 span,
  html body main#complete section#title .inner p span {
    margin: 0 -1.208vw 0 -2.415vw;
  }
}
html body main#complete section#title .inner h1 small,
html body main#complete section#title .inner p small {
  font-size: 70%;
  font-weight: 700;
}
html body main#complete section:not(#title) {
  overflow: hidden;
}
html body main#complete section:not(#title) .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(76.135vw, 1040px);
  padding: min(7.321vw, 100px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#complete section:not(#title) .inner {
    width: 100% !important;
    padding: 14.493vw 7.246vw;
  }
}
html body main#complete section#posting .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 768px) {
  html body main#complete section#posting .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
html body main#complete section#posting .inner article {
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#complete section#posting .inner article {
    margin-bottom: 14.493vw;
  }
}
html body main#complete section#posting .inner article > .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
html body main#complete section#posting .inner article > .date time {
  font-family: "Inter";
  font-size: min(0.875rem, 14px);
  white-space: nowrap;
  margin-right: min(1.098vw, 15px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#posting .inner article > .date time {
    font-size: 1rem;
    margin-right: 3.623vw;
  }
}
html body main#complete section#posting .inner article > .date .category {
  border-radius: min(1.464vw, 20px);
  background: #21aa00;
  color: #fff;
  font-size: min(0.75rem, 12px);
  white-space: nowrap;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#posting .inner article > .date .category {
    border-radius: 4.831vw;
    font-size: 0.714rem;
    padding: 1.208vw 2.415vw;
  }
}
html body main#complete section#posting .inner article > .date .category + .category {
  margin-left: min(1.098vw, 15px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#posting .inner article > .date .category + .category {
    margin-left: 3.623vw;
  }
}
html body main#complete section#posting .inner article > h1 {
  font-size: min(1.375rem, 22px);
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #809394 solid;
  margin: min(1.464vw, 20px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#complete section#posting .inner article > h1 {
    font-size: 1.428rem;
    padding-bottom: 2.415vw;
    margin: 4.831vw 0 0;
  }
}
html body main#complete section#posting .inner article > figure {
  width: 100%;
  aspect-ratio: 500/309;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#posting .inner article > figure {
    margin-top: 4.831vw;
  }
}
html body main#complete section#posting .inner article > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#complete section#posting .inner article > .comment {
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#posting .inner article > .comment {
    margin-top: 4.831vw;
  }
}
html body main#complete section#posting .inner article > .comment h1,
html body main#complete section#posting .inner article > .comment h2,
html body main#complete section#posting .inner article > .comment h3,
html body main#complete section#posting .inner article > .comment h4,
html body main#complete section#posting .inner article > .comment h5,
html body main#complete section#posting .inner article > .comment h6,
html body main#complete section#posting .inner article > .comment p {
  all: revert;
}
html body main#complete section#posting .inner article > .comment h2 {
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #809394 solid;
}
@media screen and (max-width: 768px) {
  html body main#complete section#posting .inner article > .comment h2 {
    font-size: 1.285rem;
    padding-bottom: 2.415vw;
  }
}
html body main#complete section#posting .inner article > .comment h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: min(1.125rem, 18px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#complete section#posting .inner article > .comment h3 {
    font-size: 1.142rem;
  }
}
html body main#complete section#posting .inner article > .comment h3::before {
  content: "●";
  color: #21aa00;
  font-size: min(0.5rem, 8px);
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#posting .inner article > .comment h3::before {
    font-size: 1.208vw;
    margin-right: 1.208vw;
  }
}
html body main#complete section#posting .inner article > .comment h4 {
  font-size: min(1rem, 16px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#complete section#posting .inner article > .comment h4 {
    font-size: 1rem;
  }
}
html body main#complete section#posting .inner article > .comment ul,
html body main#complete section#posting .inner article > .comment ol {
  list-style: revert;
  padding: revert;
}
html body main#complete section#posting .inner article > .comment li {
  display: revert;
  font-size: revert;
  list-style: revert;
  margin: revert;
  padding: revert;
}
html body main#complete section#posting .inner article > .comment img {
  max-width: 100%;
}
html body main#complete section#posting .inner article > .comment a {
  text-decoration: underline;
}
html body main#complete section#posting .inner article > .comment strong {
  font-weight: bold;
}
html body main#complete section#posting .inner article > .comment em {
  font-style: italic;
}
html body main#complete section#posting .inner article > .comment blockquote {
  background: #efefef;
  font-size: 0.75rem;
  line-height: 2;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#posting .inner article > .comment blockquote {
    padding: 1.208vw 2.415vw;
  }
}
html body main#complete section#posting .inner article > .comment blockquote p {
  margin-top: 0;
}
html body main#complete section#posting .inner article > .comment hr {
  width: 100%;
  height: 1px;
  padding: 0;
  display: block;
  border: 0;
  background: #000;
}
html body main#complete section#posting .inner article > .comment a {
  color: #000;
  text-decoration: underline;
  vertical-align: baseline;
}
html body main#complete section#posting .inner article > .comment del {
  vertical-align: baseline;
}
@media screen and (max-width: 768px) {
  html body main#notfound {
    margin-top: 14.493vw;
  }
}
html body main#notfound section#title {
  background: url("../img/title_notfound.png") no-repeat center/cover;
  aspect-ratio: 1366/253;
}
@media screen and (max-width: 768px) {
  html body main#notfound section#title {
    background: url("../img/title_notfound.png") no-repeat center/cover;
    aspect-ratio: 207/70;
  }
}
html body main#notfound section#title .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0 5.857vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#notfound section#title .inner {
    padding: 0 7.246vw;
  }
}
html body main#notfound section#title .inner h1,
html body main#notfound section#title .inner p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 0 0 0.366vw #041c00;
  margin-top: 5.124vw;
}
@media screen and (max-width: 768px) {
  html body main#notfound section#title .inner h1,
  html body main#notfound section#title .inner p {
    font-size: 2.285rem;
    margin-top: 9.662vw;
  }
}
html body main#notfound section#title .inner h1::before,
html body main#notfound section#title .inner p::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 0.878vw;
  height: 3.807vw;
  background: #21aa00;
  margin-right: 1.464vw;
}
@media screen and (max-width: 768px) {
  html body main#notfound section#title .inner h1::before,
  html body main#notfound section#title .inner p::before {
    width: 1.208vw;
    height: 7.246vw;
    margin-right: 2.415vw;
  }
}
html body main#notfound section#title .inner h1 span,
html body main#notfound section#title .inner p span {
  font-size: 70%;
  font-weight: 700;
  -ms-flex-item-align: center;
      align-self: center;
  margin: 0 -0.366vw 0 -0.732vw;
}
@media screen and (max-width: 768px) {
  html body main#notfound section#title .inner h1 span,
  html body main#notfound section#title .inner p span {
    margin: 0 -1.208vw 0 -2.415vw;
  }
}
html body main#notfound section#title .inner h1 small,
html body main#notfound section#title .inner p small {
  font-size: 70%;
  font-weight: 700;
}
html body main#notfound section:not(#title) {
  overflow: hidden;
}
html body main#notfound section:not(#title) .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(76.135vw, 1040px);
  padding: min(7.321vw, 100px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#notfound section:not(#title) .inner {
    width: 100% !important;
    padding: 14.493vw 7.246vw;
  }
}
html body main#notfound section#posting .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 768px) {
  html body main#notfound section#posting .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
html body main#notfound section#posting .inner article {
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#notfound section#posting .inner article {
    margin-bottom: 14.493vw;
  }
}
html body main#notfound section#posting .inner article > .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
html body main#notfound section#posting .inner article > .date time {
  font-family: "Inter";
  font-size: min(0.875rem, 14px);
  white-space: nowrap;
  margin-right: min(1.098vw, 15px);
}
@media screen and (max-width: 768px) {
  html body main#notfound section#posting .inner article > .date time {
    font-size: 1rem;
    margin-right: 3.623vw;
  }
}
html body main#notfound section#posting .inner article > .date .category {
  border-radius: min(1.464vw, 20px);
  background: #21aa00;
  color: #fff;
  font-size: min(0.75rem, 12px);
  white-space: nowrap;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#notfound section#posting .inner article > .date .category {
    border-radius: 4.831vw;
    font-size: 0.714rem;
    padding: 1.208vw 2.415vw;
  }
}
html body main#notfound section#posting .inner article > .date .category + .category {
  margin-left: min(1.098vw, 15px);
}
@media screen and (max-width: 768px) {
  html body main#notfound section#posting .inner article > .date .category + .category {
    margin-left: 3.623vw;
  }
}
html body main#notfound section#posting .inner article > h1 {
  font-size: min(1.375rem, 22px);
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #809394 solid;
  margin: min(1.464vw, 20px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#notfound section#posting .inner article > h1 {
    font-size: 1.428rem;
    padding-bottom: 2.415vw;
    margin: 4.831vw 0 0;
  }
}
html body main#notfound section#posting .inner article > figure {
  width: 100%;
  aspect-ratio: 500/309;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#notfound section#posting .inner article > figure {
    margin-top: 4.831vw;
  }
}
html body main#notfound section#posting .inner article > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#notfound section#posting .inner article > .comment {
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#notfound section#posting .inner article > .comment {
    margin-top: 4.831vw;
  }
}
html body main#notfound section#posting .inner article > .comment h1,
html body main#notfound section#posting .inner article > .comment h2,
html body main#notfound section#posting .inner article > .comment h3,
html body main#notfound section#posting .inner article > .comment h4,
html body main#notfound section#posting .inner article > .comment h5,
html body main#notfound section#posting .inner article > .comment h6,
html body main#notfound section#posting .inner article > .comment p {
  all: revert;
}
html body main#notfound section#posting .inner article > .comment h2 {
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #809394 solid;
}
@media screen and (max-width: 768px) {
  html body main#notfound section#posting .inner article > .comment h2 {
    font-size: 1.285rem;
    padding-bottom: 2.415vw;
  }
}
html body main#notfound section#posting .inner article > .comment h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: min(1.125rem, 18px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#notfound section#posting .inner article > .comment h3 {
    font-size: 1.142rem;
  }
}
html body main#notfound section#posting .inner article > .comment h3::before {
  content: "●";
  color: #21aa00;
  font-size: min(0.5rem, 8px);
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#notfound section#posting .inner article > .comment h3::before {
    font-size: 1.208vw;
    margin-right: 1.208vw;
  }
}
html body main#notfound section#posting .inner article > .comment h4 {
  font-size: min(1rem, 16px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#notfound section#posting .inner article > .comment h4 {
    font-size: 1rem;
  }
}
html body main#notfound section#posting .inner article > .comment ul,
html body main#notfound section#posting .inner article > .comment ol {
  list-style: revert;
  padding: revert;
}
html body main#notfound section#posting .inner article > .comment li {
  display: revert;
  font-size: revert;
  list-style: revert;
  margin: revert;
  padding: revert;
}
html body main#notfound section#posting .inner article > .comment img {
  max-width: 100%;
}
html body main#notfound section#posting .inner article > .comment a {
  text-decoration: underline;
}
html body main#notfound section#posting .inner article > .comment strong {
  font-weight: bold;
}
html body main#notfound section#posting .inner article > .comment em {
  font-style: italic;
}
html body main#notfound section#posting .inner article > .comment blockquote {
  background: #efefef;
  font-size: 0.75rem;
  line-height: 2;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#notfound section#posting .inner article > .comment blockquote {
    padding: 1.208vw 2.415vw;
  }
}
html body main#notfound section#posting .inner article > .comment blockquote p {
  margin-top: 0;
}
html body main#notfound section#posting .inner article > .comment hr {
  width: 100%;
  height: 1px;
  padding: 0;
  display: block;
  border: 0;
  background: #000;
}
html body main#notfound section#posting .inner article > .comment a {
  color: #000;
  text-decoration: underline;
  vertical-align: baseline;
}
html body main#notfound section#posting .inner article > .comment del {
  vertical-align: baseline;
}
@media screen and (max-width: 768px) {
  html body main#privacy {
    margin-top: 14.493vw;
  }
}
html body main#privacy section#title {
  background: url("../img/title_privacy.png") no-repeat center/cover;
  aspect-ratio: 1366/253;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#title {
    background: url("../img/title_privacy.png") no-repeat center/cover;
    aspect-ratio: 207/70;
  }
}
html body main#privacy section#title .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: 0 5.857vw;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#title .inner {
    padding: 0 7.246vw;
  }
}
html body main#privacy section#title .inner h1,
html body main#privacy section#title .inner p {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  color: #fff;
  font-size: 3.5rem;
  font-weight: 700;
  text-shadow: 0 0 0.366vw #041c00;
  margin-top: 5.124vw;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#title .inner h1,
  html body main#privacy section#title .inner p {
    font-size: 2.285rem;
    margin-top: 9.662vw;
  }
}
html body main#privacy section#title .inner h1::before,
html body main#privacy section#title .inner p::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: 0.878vw;
  height: 3.807vw;
  background: #21aa00;
  margin-right: 1.464vw;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#title .inner h1::before,
  html body main#privacy section#title .inner p::before {
    width: 1.208vw;
    height: 7.246vw;
    margin-right: 2.415vw;
  }
}
html body main#privacy section#title .inner h1 span,
html body main#privacy section#title .inner p span {
  font-size: 70%;
  font-weight: 700;
  -ms-flex-item-align: center;
      align-self: center;
  margin: 0 -0.366vw 0 -0.732vw;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#title .inner h1 span,
  html body main#privacy section#title .inner p span {
    margin: 0 -1.208vw 0 -2.415vw;
  }
}
html body main#privacy section#title .inner h1 small,
html body main#privacy section#title .inner p small {
  font-size: 70%;
  font-weight: 700;
}
html body main#privacy section:not(#title) {
  overflow: hidden;
}
html body main#privacy section:not(#title) .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(76.135vw, 1040px);
  padding: min(7.321vw, 100px) 0;
  margin: 0 auto;
}
@media screen and (max-width: 768px) {
  html body main#privacy section:not(#title) .inner {
    width: 100% !important;
    padding: 14.493vw 7.246vw;
  }
}
html body main#privacy section#posting .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#posting .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
html body main#privacy section#posting .inner article {
  display: block;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#posting .inner article {
    margin-bottom: 14.493vw;
  }
}
html body main#privacy section#posting .inner article > .date {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
html body main#privacy section#posting .inner article > .date time {
  font-family: "Inter";
  font-size: min(0.875rem, 14px);
  white-space: nowrap;
  margin-right: min(1.098vw, 15px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#posting .inner article > .date time {
    font-size: 1rem;
    margin-right: 3.623vw;
  }
}
html body main#privacy section#posting .inner article > .date .category {
  border-radius: min(1.464vw, 20px);
  background: #21aa00;
  color: #fff;
  font-size: min(0.75rem, 12px);
  white-space: nowrap;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#posting .inner article > .date .category {
    border-radius: 4.831vw;
    font-size: 0.714rem;
    padding: 1.208vw 2.415vw;
  }
}
html body main#privacy section#posting .inner article > .date .category + .category {
  margin-left: min(1.098vw, 15px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#posting .inner article > .date .category + .category {
    margin-left: 3.623vw;
  }
}
html body main#privacy section#posting .inner article > h1 {
  font-size: min(1.375rem, 22px);
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #809394 solid;
  margin: min(1.464vw, 20px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#posting .inner article > h1 {
    font-size: 1.428rem;
    padding-bottom: 2.415vw;
    margin: 4.831vw 0 0;
  }
}
html body main#privacy section#posting .inner article > figure {
  width: 100%;
  aspect-ratio: 500/309;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#posting .inner article > figure {
    margin-top: 4.831vw;
  }
}
html body main#privacy section#posting .inner article > figure img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#privacy section#posting .inner article > .comment {
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#posting .inner article > .comment {
    margin-top: 4.831vw;
  }
}
html body main#privacy section#posting .inner article > .comment h1,
html body main#privacy section#posting .inner article > .comment h2,
html body main#privacy section#posting .inner article > .comment h3,
html body main#privacy section#posting .inner article > .comment h4,
html body main#privacy section#posting .inner article > .comment h5,
html body main#privacy section#posting .inner article > .comment h6,
html body main#privacy section#posting .inner article > .comment p {
  all: revert;
}
html body main#privacy section#posting .inner article > .comment h2 {
  font-size: min(1.25rem, 20px);
  font-weight: 400;
  line-height: 1.6;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #809394 solid;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#posting .inner article > .comment h2 {
    font-size: 1.285rem;
    padding-bottom: 2.415vw;
  }
}
html body main#privacy section#posting .inner article > .comment h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: min(1.125rem, 18px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#posting .inner article > .comment h3 {
    font-size: 1.142rem;
  }
}
html body main#privacy section#posting .inner article > .comment h3::before {
  content: "●";
  color: #21aa00;
  font-size: min(0.5rem, 8px);
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#posting .inner article > .comment h3::before {
    font-size: 1.208vw;
    margin-right: 1.208vw;
  }
}
html body main#privacy section#posting .inner article > .comment h4 {
  font-size: min(1rem, 16px);
  font-weight: 400;
  line-height: 1.6;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#posting .inner article > .comment h4 {
    font-size: 1rem;
  }
}
html body main#privacy section#posting .inner article > .comment ul,
html body main#privacy section#posting .inner article > .comment ol {
  list-style: revert;
  padding: revert;
}
html body main#privacy section#posting .inner article > .comment li {
  display: revert;
  font-size: revert;
  list-style: revert;
  margin: revert;
  padding: revert;
}
html body main#privacy section#posting .inner article > .comment img {
  max-width: 100%;
}
html body main#privacy section#posting .inner article > .comment a {
  text-decoration: underline;
}
html body main#privacy section#posting .inner article > .comment strong {
  font-weight: bold;
}
html body main#privacy section#posting .inner article > .comment em {
  font-style: italic;
}
html body main#privacy section#posting .inner article > .comment blockquote {
  background: #efefef;
  font-size: 0.75rem;
  line-height: 2;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#posting .inner article > .comment blockquote {
    padding: 1.208vw 2.415vw;
  }
}
html body main#privacy section#posting .inner article > .comment blockquote p {
  margin-top: 0;
}
html body main#privacy section#posting .inner article > .comment hr {
  width: 100%;
  height: 1px;
  padding: 0;
  display: block;
  border: 0;
  background: #000;
}
html body main#privacy section#posting .inner article > .comment a {
  color: #000;
  text-decoration: underline;
  vertical-align: baseline;
}
html body main#privacy section#posting .inner article > .comment del {
  vertical-align: baseline;
}
html body main#course {
  background: #efefef;
}
html body main#course section#course_list {
  background: #efefef;
}
html body main#course section#course_list .inner > p {
  text-align: center;
  color: #1e3f40;
  font-size: min(1.125rem, 18px);
  font-weight: 700;
  line-height: 1.6;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#course section#course_list .inner > p {
    font-size: 1.142rem;
    margin-top: 7.246vw;
  }
}
html body main#course section#course_list .inner > ul {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: min(2.928vw, 40px);
  width: 100%;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#course section#course_list .inner > ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 7.246vw;
    margin-top: 7.246vw;
  }
}
html body main#course section#course_list .inner > ul li {
  border-radius: min(0.366vw, 5px);
  border: 2px #1e3f40 solid;
  background: #fff;
  width: 100%;
  -webkit-box-shadow: 0 0 min(0.366vw, 5px) rgba(4, 28, 0, 0.5);
          box-shadow: 0 0 min(0.366vw, 5px) rgba(4, 28, 0, 0.5);
}
@media screen and (max-width: 768px) {
  html body main#course section#course_list .inner > ul li {
    border-radius: 1.208vw;
    -webkit-box-shadow: 0 0 1.208vw rgba(4, 28, 0, 0.5);
            box-shadow: 0 0 1.208vw rgba(4, 28, 0, 0.5);
  }
}
html body main#course section#course_list .inner > ul li figure {
  width: 100%;
  height: 100%;
  position: relative;
}
html body main#course section#course_list .inner > ul li figure div {
  width: 100%;
  aspect-ratio: 160/113;
  overflow: hidden;
}
html body main#course section#course_list .inner > ul li figure div img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#course section#course_list .inner > ul li figure figcaption {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: 0 min(1.464vw, 20px) min(7.321vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#course section#course_list .inner > ul li figure figcaption {
    padding: 0 4.831vw 21.739vw;
  }
}
html body main#course section#course_list .inner > ul li figure figcaption strong {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: min(1.25rem, 20px);
  font-weight: 700;
  width: min(15.373vw, 210px);
  height: min(3.221vw, 44px);
  border-radius: min(2.928vw, 40px);
  background: -webkit-gradient(linear, left top, right top, from(#1f3d3e), color-stop(50%, #0b665e), to(#1f3d3e));
  background: linear-gradient(to right, #1f3d3e 0%, #0b665e 50%, #1f3d3e 100%);
  margin-top: calc(-1 * min(1.611vw, 22px));
}
@media screen and (max-width: 768px) {
  html body main#course section#course_list .inner > ul li figure figcaption strong {
    font-size: 1.571rem;
    width: 55.556vw;
    height: 12.077vw;
    border-radius: 12.077vw;
    margin-top: -6.039vw;
  }
}
html body main#course section#course_list .inner > ul li figure figcaption .price {
  color: #1e3f40;
  font-family: "Inter";
  font-size: min(2.75rem, 44px);
  font-weight: 800;
  margin-top: min(2.196vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#course section#course_list .inner > ul li figure figcaption .price {
    font-size: 3.142rem;
    margin-top: 4.831vw;
  }
}
html body main#course section#course_list .inner > ul li figure figcaption .price i {
  font-size: min(2rem, 32px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#course section#course_list .inner > ul li figure figcaption .price i {
    font-size: 2.285rem;
  }
}
html body main#course section#course_list .inner > ul li figure figcaption .price span {
  font-size: min(1rem, 16px);
  font-weight: 800;
}
@media screen and (max-width: 768px) {
  html body main#course section#course_list .inner > ul li figure figcaption .price span {
    font-size: 1.142rem;
  }
}
html body main#course section#course_list .inner > ul li figure figcaption .comment {
  font-size: min(0.875rem, 14px);
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#course section#course_list .inner > ul li figure figcaption .comment {
    font-size: 1rem;
    margin-top: 4.831vw;
  }
}
html body main#course section#course_list .inner > ul li figure figcaption .btn {
  width: min(10.176vw, 139px);
  position: absolute;
  bottom: min(2.196vw, 30px);
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
}
@media screen and (max-width: 768px) {
  html body main#course section#course_list .inner > ul li figure figcaption .btn {
    width: 33.575vw;
    bottom: 7.246vw;
  }
}
html body main#course section#course1 {
  background: #fff;
}
html body main#course section#course1 .inner {
  padding: min(7.321vw, 100px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#course section#course1 .inner {
    padding: 14.493vw 7.246vw 0;
  }
}
html body main#course section#course1 .inner > div {
  border-radius: min(0.732vw, 10px);
  background: #efefef;
  width: 100%;
  padding: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#course section#course1 .inner > div {
    border-radius: 2.415vw;
    padding: 7.246vw;
  }
}
html body main#course section#course1 .inner > div > div:nth-of-type(1) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
  padding-bottom: min(2.928vw, 40px);
  background-image: linear-gradient(to right, #809394 2px, transparent 2px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
  background-position: center bottom;
}
@media screen and (max-width: 768px) {
  html body main#course section#course1 .inner > div > div:nth-of-type(1) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    padding-bottom: 4.831vw;
  }
}
html body main#course section#course1 .inner > div > div:nth-of-type(1) > div h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  color: #00635b;
  font-size: min(1.875rem, 30px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#course section#course1 .inner > div > div:nth-of-type(1) > div h3 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.714rem;
  }
}
html body main#course section#course1 .inner > div > div:nth-of-type(1) > div h3::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: min(0.512vw, 7px);
  height: min(2.05vw, 28px);
  background: #21aa00;
  margin-right: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#course section#course1 .inner > div > div:nth-of-type(1) > div h3::before {
    width: 1.208vw;
    height: 5.314vw;
    margin-right: 1.208vw;
  }
}
html body main#course section#course1 .inner > div > div:nth-of-type(1) > div h3 aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1e3f40;
  font-size: min(0.875rem, 14px);
  font-weight: 700;
  padding: min(0.366vw, 5px) min(1.464vw, 20px);
  background: #fff;
  border: 2px #1e3f40 solid;
  border-radius: min(2.928vw, 40px);
  margin: 0 0 0 min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#course section#course1 .inner > div > div:nth-of-type(1) > div h3 aside {
    display: block;
    font-size: 0.857rem;
    padding: 1.208vw 4.831vw;
    border-radius: 4.831vw;
    margin: 2.415vw 0 0 0;
  }
}
html body main#course section#course1 .inner > div > div:nth-of-type(1) > div .comment {
  font-size: min(0.875rem, 14px);
  font-weight: 700;
  margin-top: min(2.196vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#course section#course1 .inner > div > div:nth-of-type(1) > div .comment {
    font-size: 0.857rem;
    margin-top: 4.831vw;
  }
}
html body main#course section#course1 .inner > div > div:nth-of-type(1) > div dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin-top: min(2.196vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#course section#course1 .inner > div > div:nth-of-type(1) > div dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    margin-top: 4.831vw;
  }
}
html body main#course section#course1 .inner > div > div:nth-of-type(1) > div dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #21aa00;
  padding: min(0.732vw, 10px);
  color: #ffe91f;
  font-size: min(1.125rem, 18px);
}
@media screen and (max-width: 768px) {
  html body main#course section#course1 .inner > div > div:nth-of-type(1) > div dl dt {
    padding: 2.415vw;
    font-size: 1rem;
    width: 100%;
  }
}
html body main#course section#course1 .inner > div > div:nth-of-type(1) > div dl dt strong {
  font-size: min(1.75rem, 28px);
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  html body main#course section#course1 .inner > div > div:nth-of-type(1) > div dl dt strong {
    font-size: 1.428rem;
  }
}
html body main#course section#course1 .inner > div > div:nth-of-type(1) > div dl dt strong em {
  font-family: "Inter";
  font-size: min(2.416vw, 33px);
  vertical-align: top;
  margin-left: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#course section#course1 .inner > div > div:nth-of-type(1) > div dl dt strong em {
    font-size: 1.642rem;
    margin-left: 1.208vw;
  }
}
html body main#course section#course1 .inner > div > div:nth-of-type(1) > div dl dd {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  padding: min(0.732vw, 10px);
  font-size: min(0.875rem, 14px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#course section#course1 .inner > div > div:nth-of-type(1) > div dl dd {
    padding: 2.415vw;
    font-size: 0.857rem;
    line-height: 1.6;
    width: 100%;
  }
}
html body main#course section#course1 .inner > div > div:nth-of-type(1) figure {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(8.419vw, 115px);
}
@media screen and (max-width: 768px) {
  html body main#course section#course1 .inner > div > div:nth-of-type(1) figure {
    width: 21.75vw;
    margin-top: 4.831vw;
  }
}
html body main#course section#course1 .inner > div > div:nth-of-type(2) {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#course section#course1 .inner > div > div:nth-of-type(2) {
    grid-template-columns: repeat(1, 1fr);
  }
}
html body main#course section#course1 .inner > div > div:nth-of-type(2) > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html body main#course section#course1 .inner > div > div:nth-of-type(2) > div:nth-of-type(1) {
  padding: min(2.928vw, 40px) min(1.464vw, 20px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#course section#course1 .inner > div > div:nth-of-type(2) > div:nth-of-type(1) {
    padding: 4.831vw 0;
  }
}
html body main#course section#course1 .inner > div > div:nth-of-type(2) > div:nth-of-type(2) {
  background-image: linear-gradient(to bottom, #809394 2px, transparent 2px);
  background-size: 2px 6px;
  background-repeat: repeat-y;
  background-position: left bottom;
  padding: min(2.928vw, 40px) 0 0 min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#course section#course1 .inner > div > div:nth-of-type(2) > div:nth-of-type(2) {
    background-image: linear-gradient(to right, #809394 2px, transparent 2px);
    background-size: 6px 2px;
    background-repeat: repeat-x;
    background-position: center top;
    padding: 4.831vw 0 0;
  }
}
html body main#course section#course1 .inner > div > div:nth-of-type(2) > div em {
  display: block;
  color: #1e3f40;
  font-size: min(0.75rem, 12px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#course section#course1 .inner > div > div:nth-of-type(2) > div em {
    font-size: 0.857rem;
  }
}
html body main#course section#course1 .inner > div > div:nth-of-type(2) > div strong {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: min(1.25rem, 20px);
  font-weight: 700;
  width: min(15.373vw, 210px);
  height: min(3.221vw, 44px);
  border-radius: min(2.928vw, 40px);
  background: -webkit-gradient(linear, left top, right top, from(#1f3d3e), color-stop(50%, #0b665e), to(#1f3d3e));
  background: linear-gradient(to right, #1f3d3e 0%, #0b665e 50%, #1f3d3e 100%);
  margin-top: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#course section#course1 .inner > div > div:nth-of-type(2) > div strong {
    font-size: 1.571rem;
    width: 55.556vw;
    height: 12.077vw;
    border-radius: 12.077vw;
    margin-top: 2.415vw;
  }
}
html body main#course section#course1 .inner > div > div:nth-of-type(2) > div .price {
  color: #1e3f40;
  font-family: "Inter";
  font-size: min(3.5rem, 56px);
  font-weight: 800;
  margin-top: min(2.196vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#course section#course1 .inner > div > div:nth-of-type(2) > div .price {
    font-size: 3.142rem;
    margin-top: 4.831vw;
  }
}
html body main#course section#course1 .inner > div > div:nth-of-type(2) > div .price i {
  font-size: min(2.75rem, 44px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#course section#course1 .inner > div > div:nth-of-type(2) > div .price i {
    font-size: 2.285rem;
  }
}
html body main#course section#course1 .inner > div > div:nth-of-type(2) > div .price span {
  font-size: min(1.375rem, 22px);
  font-weight: 800;
}
@media screen and (max-width: 768px) {
  html body main#course section#course1 .inner > div > div:nth-of-type(2) > div .price span {
    font-size: 1.142rem;
  }
}
html body main#course section#course1 .inner > div > div:nth-of-type(2) > div .deadline {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1e3f40;
  font-size: min(1.125rem, 18px);
  font-weight: 700;
  width: 100%;
  margin-top: min(2.196vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#course section#course1 .inner > div > div:nth-of-type(2) > div .deadline {
    font-size: 1.142rem;
    margin-top: 4.831vw;
  }
}
html body main#course section#course1 .inner > div > div:nth-of-type(2) > div .deadline::before {
  content: "●";
  font-size: min(0.625rem, 10px);
}
@media screen and (max-width: 768px) {
  html body main#course section#course1 .inner > div > div:nth-of-type(2) > div .deadline::before {
    font-size: 0.571rem;
  }
}
html body main#course section#course1 .inner > div > div:nth-of-type(2) > div .deadline span {
  color: #1a1a1a;
  font-size: min(0.875rem, 14px);
  font-weight: 700;
  margin-left: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#course section#course1 .inner > div > div:nth-of-type(2) > div .deadline span {
    font-size: 0.857rem;
    margin-left: 2.415vw;
  }
}
html body main#course section#course1 .inner > div > div:nth-of-type(2) > div figure {
  width: 100%;
  margin: min(1.464vw, 20px) 0;
}
@media screen and (max-width: 768px) {
  html body main#course section#course1 .inner > div > div:nth-of-type(2) > div figure {
    font-size: 0.857rem;
    margin: 4.831vw 0;
  }
}
html body main#course section#course1 .inner > div > div:nth-of-type(2) > div .comment {
  font-size: min(0.75rem, 12px);
  font-weight: 700;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#course section#course1 .inner > div > div:nth-of-type(2) > div .comment {
    font-size: 0.714rem;
  }
}
html body main#course section#course2, html body main#course section#course3 {
  background: #fff;
}
html body main#course section#course2 .inner, html body main#course section#course3 .inner {
  padding: min(7.321vw, 100px) 0 0;
}
@media screen and (max-width: 768px) {
  html body main#course section#course2 .inner, html body main#course section#course3 .inner {
    padding: 14.493vw 7.246vw 0;
  }
}
html body main#course section#course2 .inner > div, html body main#course section#course3 .inner > div {
  border-radius: min(0.732vw, 10px);
  background: #efefef;
  width: 100%;
  padding: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#course section#course2 .inner > div, html body main#course section#course3 .inner > div {
    border-radius: 2.415vw;
    padding: 7.246vw;
  }
}
html body main#course section#course2 .inner > div > div, html body main#course section#course3 .inner > div > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#course section#course2 .inner > div > div, html body main#course section#course3 .inner > div > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
@media screen and (max-width: 768px) {
  html body main#course section#course2 .inner > div > div > div, html body main#course section#course3 .inner > div > div > div {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
html body main#course section#course2 .inner > div > div > div h3, html body main#course section#course3 .inner > div > div > div h3 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
  width: 100%;
  color: #00635b;
  font-size: min(1.875rem, 30px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#course section#course2 .inner > div > div > div h3, html body main#course section#course3 .inner > div > div > div h3 {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    font-size: 1.714rem;
  }
}
html body main#course section#course2 .inner > div > div > div h3::before, html body main#course section#course3 .inner > div > div > div h3::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: min(0.512vw, 7px);
  height: min(2.05vw, 28px);
  background: #21aa00;
  margin-right: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#course section#course2 .inner > div > div > div h3::before, html body main#course section#course3 .inner > div > div > div h3::before {
    width: 1.208vw;
    height: 5.314vw;
    margin-right: 1.208vw;
  }
}
html body main#course section#course2 .inner > div > div > div h3 aside, html body main#course section#course3 .inner > div > div > div h3 aside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #1e3f40;
  font-size: min(0.875rem, 14px);
  font-weight: 700;
  padding: min(0.366vw, 5px) min(1.464vw, 20px);
  background: #fff;
  border: 2px #1e3f40 solid;
  border-radius: min(2.928vw, 40px);
  margin: 0 0 0 min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#course section#course2 .inner > div > div > div h3 aside, html body main#course section#course3 .inner > div > div > div h3 aside {
    display: block;
    font-size: 0.857rem;
    padding: 1.208vw 4.831vw;
    border-radius: 4.831vw;
    margin: 2.415vw 0 0 0;
  }
}
html body main#course section#course2 .inner > div > div > div .comment, html body main#course section#course3 .inner > div > div > div .comment {
  font-size: min(0.875rem, 14px);
  font-weight: 700;
  margin-top: min(2.196vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#course section#course2 .inner > div > div > div .comment, html body main#course section#course3 .inner > div > div > div .comment {
    font-size: 0.857rem;
    margin-top: 4.831vw;
  }
}
html body main#course section#course2 .inner > div > div > div .price, html body main#course section#course3 .inner > div > div > div .price {
  color: #1e3f40;
  font-family: "Inter";
  font-size: min(3.5rem, 56px);
  font-weight: 800;
  margin-top: min(2.196vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#course section#course2 .inner > div > div > div .price, html body main#course section#course3 .inner > div > div > div .price {
    font-size: 3.142rem;
    margin-top: 4.831vw;
  }
}
html body main#course section#course2 .inner > div > div > div .price i, html body main#course section#course3 .inner > div > div > div .price i {
  font-size: min(2.75rem, 44px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#course section#course2 .inner > div > div > div .price i, html body main#course section#course3 .inner > div > div > div .price i {
    font-size: 2.285rem;
  }
}
html body main#course section#course2 .inner > div > div > div .price span, html body main#course section#course3 .inner > div > div > div .price span {
  font-size: min(1.375rem, 22px);
  font-weight: 800;
}
@media screen and (max-width: 768px) {
  html body main#course section#course2 .inner > div > div > div .price span, html body main#course section#course3 .inner > div > div > div .price span {
    font-size: 1.142rem;
  }
}
html body main#course section#course2 .inner > div > div figure {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(18.594vw, 254px);
}
@media screen and (max-width: 768px) {
  html body main#course section#course2 .inner > div > div figure {
    width: 48.041vw;
    margin-top: 4.831vw;
  }
}
html body main#course section#course3 .inner {
  padding: min(7.321vw, 100px) 0;
}
@media screen and (max-width: 768px) {
  html body main#course section#course3 .inner {
    padding: 14.493vw 7.246vw;
  }
}
html body main#course section#course3 .inner > div > div figure {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(29.356vw, 401px);
}
@media screen and (max-width: 768px) {
  html body main#course section#course3 .inner > div > div figure {
    width: 75.845vw;
    margin-top: 4.831vw;
  }
}
html body main#course section#report {
  background: #efefef;
}
html body main#course section#report .inner > p {
  text-align: center;
  color: #1e3f40;
  font-size: min(1.125rem, 18px);
  font-weight: 700;
  line-height: 1.6;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#course section#report .inner > p {
    font-size: 1.142rem;
    margin-top: 7.246vw;
  }
}
html body main#course section#report .inner > ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: min(5.857vw, 80px);
  width: min(51.245vw, 700px);
  background: #fff;
  padding: min(2.928vw, 40px);
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#course section#report .inner > ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 7.246vw;
    width: 100%;
    background: #fff;
    padding: 7.246vw;
    margin-top: 7.246vw;
  }
}
html body main#course section#report .inner > ul li {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html body main#course section#report .inner > ul li strong {
  color: #1e3f40;
  font-size: min(1.125rem, 18px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#course section#report .inner > ul li strong {
    font-size: 1.142rem;
  }
}
html body main#course section#report .inner > ul li figure {
  border-radius: min(0.366vw, 5px);
  border: 2px #1e3f40 solid;
  width: min(13.177vw, 180px);
  aspect-ratio: 176/248;
  overflow: hidden;
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#course section#report .inner > ul li figure {
    border-radius: 1.208vw;
    width: 43.478vw;
    aspect-ratio: 176/248;
    overflow: hidden;
    margin-top: 2.415vw;
  }
}
html body main#course section#report .inner > ul li figure img {
  -o-object-fit: cover;
     object-fit: cover;
}
html body main#course section#report .inner > ul li .btn {
  width: min(10.908vw, 149px);
  margin: min(2.196vw, 30px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#course section#report .inner > ul li .btn {
    width: 35.99vw;
    margin-top: 3.623vw;
  }
}
html body main#news section#contents .inner {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-direction: row;
          flex-direction: row;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
@media screen and (max-width: 768px) {
  html body main#news section#contents .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}
html body main#news section#contents .inner .list {
  display: block;
  width: 75%;
}
@media screen and (max-width: 768px) {
  html body main#news section#contents .inner .list {
    width: 100%;
    margin-bottom: 14.493vw;
  }
}
html body main#news section#contents .inner .list article {
  background-image: linear-gradient(to right, #809394 2px, transparent 2px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
  background-position: center bottom;
  width: 100%;
}
html body main#news section#contents .inner .list article a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  padding: min(2.196vw, 30px) min(1.464vw, 20px) min(2.196vw, 30px) 0;
  background: url("../img/icon_arrow4.svg") no-repeat right center/auto min(0.732vw, 10px);
  width: 100%;
}
@media screen and (max-width: 768px) {
  html body main#news section#contents .inner .list article a {
    display: block;
    background: none;
    padding: 3.623vw 3.623vw 3.623vw 0;
    background: url("../img/icon_arrow4.svg") no-repeat right center/auto 2.415vw;
  }
}
html body main#news section#contents .inner .list article a div {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 28%;
}
@media screen and (max-width: 768px) {
  html body main#news section#contents .inner .list article a div {
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    width: 100%;
  }
}
html body main#news section#contents .inner .list article a div time {
  font-family: "Inter";
  font-size: min(0.875rem, 14px);
  white-space: nowrap;
  margin-right: min(1.098vw, 15px);
}
@media screen and (max-width: 768px) {
  html body main#news section#contents .inner .list article a div time {
    font-size: 1rem;
    margin-right: 3.623vw;
  }
}
html body main#news section#contents .inner .list article a div .category {
  border-radius: min(1.464vw, 20px);
  background: #21aa00;
  color: #fff;
  font-size: min(0.75rem, 12px);
  white-space: nowrap;
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#news section#contents .inner .list article a div .category {
    border-radius: 4.831vw;
    font-size: 0.714rem;
    padding: 1.208vw 2.415vw;
  }
}
html body main#news section#contents .inner .list article a h2 {
  display: block;
  width: 72%;
  font-size: min(0.875rem, 14px);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
@media screen and (max-width: 768px) {
  html body main#news section#contents .inner .list article a h2 {
    width: 100%;
    font-size: 1rem;
    line-height: 1.6;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    margin-top: 2.415vw;
  }
}
html body main#news_detail .btn {
  width: min(10.176vw, 139px);
  margin: 0 auto;
  padding: 0 0 min(7.321vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#news_detail .btn {
    width: 33.575vw;
    padding: 0 0 14.493vw;
  }
}
html body main#contact section#tel {
  margin-top: min(7.321vw, 100px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#tel {
    margin-top: 12.077vw;
  }
}
html body main#contact section#tel .inner {
  width: min(51.245vw, 700px);
  padding: min(3.66vw, 50px);
  border: 2px #00635b solid;
  border-radius: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#tel .inner {
    width: calc(100% - 14.493vw) !important;
    padding: 4.831vw;
    border-radius: 1.208vw;
  }
}
html body main#contact section#tel .inner h2 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html body main#contact section#tel .inner h2 img {
  width: min(2.635vw, 36px);
  height: auto;
}
@media screen and (max-width: 768px) {
  html body main#contact section#tel .inner h2 img {
    width: 4.831vw;
  }
}
html body main#contact section#tel .inner h2 span {
  font-size: min(1.5rem, 24px);
  font-weight: 700;
  padding-bottom: min(0.732vw, 10px);
  border-bottom: 2px #1a1a1a solid;
  margin-left: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#tel .inner h2 span {
    font-size: 1.125rem;
    padding-bottom: 1.208vw;
    margin-left: 1.208vw;
  }
}
html body main#contact section#tel .inner strong {
  margin-top: min(2.196vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#tel .inner strong {
    margin-top: 4.831vw;
  }
}
html body main#contact section#tel .inner strong a {
  display: block;
  color: #21aa00;
  font-family: "Inter";
  font-size: min(3.5rem, 56px);
  font-weight: 900;
}
@media screen and (max-width: 768px) {
  html body main#contact section#tel .inner strong a {
    font-size: 2rem;
  }
}
html body main#contact section#tel .inner p {
  color: #333;
}
html body main#contact section#tel .inner p:nth-of-type(1) {
  font-size: min(1.125rem, 18px);
  font-weight: 700;
  margin-top: min(2.196vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#tel .inner p:nth-of-type(1) {
    font-size: 1.142rem;
    margin-top: 4.831vw;
  }
}
html body main#contact section#tel .inner p:nth-of-type(2) {
  font-size: min(0.75rem, 12px);
  font-weight: 700;
  margin-top: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#tel .inner p:nth-of-type(2) {
    font-size: 0.714rem;
    font-weight: 700;
    margin-top: 2.415vw;
  }
}
html body main#contact section#inquiry .inner h2 {
  margin-bottom: min(3.66vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner h2 {
    margin-bottom: 7.246vw;
  }
}
html body main#contact section#inquiry .inner form > .note {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: min(51.245vw, 700px);
  margin: 0 auto min(3.66vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form > .note {
    width: 100%;
    margin: 0 auto 7.246vw;
  }
}
html body main#contact section#inquiry .inner form > .note strong {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: min(1.25rem, 20px);
  font-weight: 700;
  width: min(38.36vw, 524px);
  height: min(3.221vw, 44px);
  border-radius: min(2.928vw, 40px);
  background: -webkit-gradient(linear, left top, right top, from(#1f3d3e), color-stop(50%, #0b665e), to(#1f3d3e));
  background: linear-gradient(to right, #1f3d3e 0%, #0b665e 50%, #1f3d3e 100%);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form > .note strong {
    font-size: 1rem;
    width: 100%;
    height: 12.077vw;
    border-radius: 12.077vw;
  }
}
html body main#contact section#inquiry .inner form > .note p {
  text-align: center;
  font-size: min(0.875rem, 14px);
  font-weight: 700;
  margin-top: min(2.196vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form > .note p {
    text-align: left;
    font-size: 0.857rem;
    margin-top: 4.831vw;
  }
}
html body main#contact section#inquiry .inner form .checkbox_text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-top: min(3.66vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .checkbox_text {
    margin-top: 7.246vw;
  }
}
html body main#contact section#inquiry .inner form .checkbox_text em {
  color: #00635b;
  font-size: min(1.125rem, 18px);
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .checkbox_text em {
    font-size: 1.142rem;
  }
}
html body main#contact section#inquiry .inner form .checkbox_text p {
  text-align: center;
  font-size: min(1rem, 16px);
  font-weight: 700;
  line-height: 2;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .checkbox_text p {
    font-size: 1rem;
  }
}
html body main#contact section#inquiry .inner form .checkbox_text p a {
  color: #21aa00;
  text-decoration: underline;
}
html body main#contact section#inquiry .inner form .checkbox_text label {
  margin-top: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .checkbox_text label {
    margin-top: 1.208vw;
  }
}
html body main#contact section#inquiry .inner form .checkbox_text label span {
  font-size: min(1rem, 16px);
  font-weight: 700;
  line-height: 2;
  margin-left: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .checkbox_text label span {
    font-size: 1rem;
    margin-left: 1.208vw;
  }
}
html body main#contact section#inquiry .inner form .checkbox_text .wpcf7-form-control-wrap {
  text-align: center;
}
html body main#contact section#inquiry .inner form .btn_area {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  margin-top: min(3.66vw, 50px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .btn_area {
    margin-top: 7.246vw;
  }
}
html body main#contact section#inquiry .inner form .btn_area .formSubmit {
  background: transparent url("../img/btn_submit.png") no-repeat center/contain;
  border: none;
  cursor: pointer;
  color: transparent;
  width: min(10.176vw, 139px);
  height: min(2.709vw, 37px);
  padding: 0;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .btn_area .formSubmit {
    width: 33.575vw;
    height: 8.937vw;
  }
}
html body main#contact section#inquiry .inner form .btn_area .formSubmit:hover {
  filter: alpha(opacity=60);
  opacity: 0.6;
}
html body main#contact section#inquiry .inner form .btn_area .wpcf7-spinner {
  display: none;
}
html body main#contact section#inquiry .inner form .btn_area + .btn_area {
  margin-top: 0;
}
html body main#contact section#inquiry .inner form .must {
  background: #ce3e36;
  color: #fff;
  font-size: min(0.75rem, 12px);
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .must {
    font-size: 0.714rem;
    padding: 1.208vw 2.415vw;
  }
}
html body main#contact section#inquiry .inner form .w10 {
  width: 10% !important;
}
html body main#contact section#inquiry .inner form .w20 {
  width: 20% !important;
}
html body main#contact section#inquiry .inner form .w30 {
  width: 30% !important;
}
html body main#contact section#inquiry .inner form .w50 {
  width: 50% !important;
}
html body main#contact section#inquiry .inner form .w100 {
  width: 100% !important;
}
html body main#contact section#inquiry .inner form span.error {
  display: block;
  text-align: left;
  margin-top: min(0.366vw, 5px);
  -ms-flex-preferred-size: 100%;
      flex-basis: 100%;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form span.error {
    margin-top: 1.208vw;
  }
}
html body main#contact section#inquiry .inner form .wpcf7-list-item {
  margin: 0 !important;
}
html body main#contact section#inquiry .inner form .wpcf7-not-valid-tip,
html body main#contact section#inquiry .inner form .wpcf7-response-output {
  font-size: min(1rem, 16px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form .wpcf7-not-valid-tip,
  html body main#contact section#inquiry .inner form .wpcf7-response-output {
    font-size: 1rem;
  }
}
html body main#contact section#inquiry .inner form dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: min(76.135vw, 1040px);
  background-image: linear-gradient(to right, #c4c7c7 2px, transparent 2px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
  background-position: center top;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form dl {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    width: 100%;
  }
}
html body main#contact section#inquiry .inner form dl:first-of-type {
  border-top: 2px #c4c7c7 solid !important;
  background-image: none !important;
}
html body main#contact section#inquiry .inner form dl:first-of-type dt {
  background-image: none !important;
}
html body main#contact section#inquiry .inner form dl:last-of-type {
  border-bottom: 2px #c4c7c7 solid !important;
}
html body main#contact section#inquiry .inner form dl dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(23.426vw, 320px);
  padding: min(2.196vw, 30px);
  background: #edf4f3;
  background-image: linear-gradient(to right, #c4c7c7 2px, transparent 2px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
  background-position: center top;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form dl dt {
    width: 100%;
    padding: 2.415vw;
  }
}
html body main#contact section#inquiry .inner form dl dt .wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  font-size: min(1.125rem, 18px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form dl dt .wrap {
    font-size: 1.142rem;
  }
}
html body main#contact section#inquiry .inner form dl dd {
  display: block;
  width: 100%;
  padding: min(2.196vw, 30px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form dl dd {
    padding: 2.415vw;
  }
}
html body main#contact section#inquiry .inner form dl dd .wrap {
  width: 100%;
  font-size: min(0.875rem, 14px);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form dl dd .wrap {
    font-size: 0.857rem;
  }
}
html body main#contact section#inquiry .inner form dl dd .wrap input {
  margin-right: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form dl dd .wrap input {
    margin-right: 1.208vw;
  }
}
html body main#contact section#inquiry .inner form dl dd .wrap input:last-child {
  margin-right: 0;
}
html body main#contact section#inquiry .inner form dl dd .wrap input + input {
  margin-left: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form dl dd .wrap input + input {
    margin-left: 1.208vw;
  }
}
html body main#contact section#inquiry .inner form dl dd .wrap + .wrap {
  margin-top: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form dl dd .wrap + .wrap {
    margin-top: 1.208vw;
  }
}
html body main#contact section#inquiry .inner form :is(input:not([type=file]):not([type=radio]):not([type=checkbox]):not([type=submit]), select, textarea) {
  background: #f1f3f3;
  border: none;
  font-size: min(0.875rem, 14px);
  width: 100%;
  height: min(3.66vw, 50px);
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form :is(input:not([type=file]):not([type=radio]):not([type=checkbox]):not([type=submit]), select, textarea) {
    font-size: 0.857rem;
    height: 12.077vw;
    padding: 1.208vw 2.415vw;
  }
}
html body main#contact section#inquiry .inner form :is(input:not([type=file]):not([type=radio]):not([type=checkbox]):not([type=submit]), select, textarea):focus {
  outline: none;
}
html body main#contact section#inquiry .inner form textarea {
  height: min(10.417vw, 200px) !important;
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form textarea {
    height: 53.333vw !important;
  }
}
html body main#contact section#inquiry .inner form input[type=file] {
  font-size: min(0.875rem, 14px);
}
@media screen and (max-width: 768px) {
  html body main#contact section#inquiry .inner form input[type=file] {
    font-size: 0.857rem;
  }
}
html body main#contact section#inquiry .inner form input[type=image] {
  width: min(10.176vw, 139px) !important;
  height: auto !important;
  appearance: none !important;
  /* OSやブラウザ固有の見た目を無効化 */
  -webkit-appearance: none !important;
  /* Safari対応 */
  -moz-appearance: none !important;
  /* Firefox対応 */
  border: none !important;
  /* 枠線を削除 */
  padding: 0 !important;
  /* 内側の余白を削除 */
  margin: 0 !important;
  /* 外側の余白を削除 */
  background: none !important;
  /* 背景を削除 */
  -webkit-box-shadow: none !important;
          box-shadow: none !important;
  /* 影を削除 */
  outline: none !important;
  /* フォーカス時の枠線を削除 */
  cursor: pointer !important;
  /* ポインタに変更 */
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
html body main#complete section#contents .inner {
  width: min(58.565vw, 800px);
}
html body main#complete section#contents .inner > strong {
  display: block;
  text-align: center;
  font-size: min(1.125rem, 18px);
  font-weight: 700;
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > strong {
    font-size: 1.142rem;
    line-height: 1.6;
  }
}
html body main#complete section#contents .inner > .comment {
  text-align: center;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > .comment {
    margin-top: 4.831vw;
  }
}
html body main#complete section#contents .inner > div {
  background: #edf4f3;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
  padding: min(1.464vw, 20px) min(2.928vw, 40px);
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > div {
    border-radius: 1.208vw;
    width: 100%;
    padding: 4.831vw;
    margin-top: 9.662vw;
  }
}
html body main#complete section#contents .inner > div > div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > div > div {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
html body main#complete section#contents .inner > div > div figure {
  width: min(2.928vw, 40px);
  margin: 0 min(1.464vw, 20px) 0 0;
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > div > div figure {
    width: 9.662vw;
    margin: 0 0 2.415vw 0;
  }
}
html body main#complete section#contents .inner > div > div div {
  width: 100%;
}
html body main#complete section#contents .inner > div > div div p {
  font-size: min(0.875rem, 14px);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > div > div div p {
    font-size: 0.857rem;
  }
}
html body main#complete section#contents .inner > div > em {
  font-size: min(1rem, 16px);
  margin-top: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > div > em {
    font-size: 0.857rem;
    margin-top: 4.831vw;
  }
}
html body main#complete section#contents .inner > div > p {
  text-align: center;
  font-size: min(0.875rem, 14px);
  line-height: 2;
  margin-top: min(0.732vw, 10px);
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner > div > p {
    font-size: 0.857rem;
    margin-top: 2.415vw;
  }
}
html body main#complete section#contents .inner > div > p a {
  color: #111;
}
html body main#complete section#contents .inner .btn {
  width: min(10.908vw, 149px);
  margin: min(5.857vw, 80px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#complete section#contents .inner .btn {
    width: 35.99vw;
    margin: 9.662vw auto 0;
  }
}
html body main#privacy section#contents .inner {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
html body main#privacy section#contents .inner strong {
  display: block;
  font-size: min(1rem, 16px);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#contents .inner strong {
    font-size: 1rem;
  }
}
html body main#privacy section#contents .inner em {
  display: block;
  font-size: min(1rem, 16px);
  font-weight: 700;
  width: 100%;
  padding-bottom: min(1.464vw, 20px);
  border-bottom: 1px #000 solid;
  margin: min(4.392vw, 60px) 0 min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main#privacy section#contents .inner em {
    font-size: 1.142rem;
    padding-bottom: 2.415vw;
    margin: 9.662vw 0 2.415vw;
  }
}
html body main#privacy section#contents .inner p {
  font-size: min(1rem, 16px);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#contents .inner p {
    font-size: 1rem;
  }
}
html body main#privacy section#contents .inner p a {
  color: #1a1a1a;
}
html body main#privacy section#contents .inner ul li {
  font-size: min(1rem, 16px);
  line-height: 2;
  text-indent: -1em;
  margin-left: 1em;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#contents .inner ul li {
    font-size: 1rem;
  }
}
html body main#privacy section#contents .inner ul li::before {
  content: "・";
}
html body main#privacy section#contents .inner b {
  font-size: min(1.125rem, 18px);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  html body main#privacy section#contents .inner b {
    font-size: 1.142rem;
  }
}
html body main#notfound section#contents .inner {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
html body main#notfound section#contents .inner strong {
  font-size: min(1.875rem, 30px);
}
@media screen and (max-width: 768px) {
  html body main#notfound section#contents .inner strong {
    font-size: 1.285rem;
    line-height: 1.3;
  }
}
html body main#notfound section#contents .inner p {
  font-size: min(1rem, 16px);
  line-height: 2;
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main#notfound section#contents .inner p {
    font-size: 1rem;
    margin-top: 4.831vw;
  }
}
html body main#notfound section#contents .inner .btn {
  width: min(10.908vw, 149px);
  margin: min(5.857vw, 80px) auto 0;
}
@media screen and (max-width: 768px) {
  html body main#notfound section#contents .inner .btn {
    width: 35.99vw;
    margin: 9.662vw auto 0;
  }
}
html body main#page section#contents .inner p {
  font-size: min(1rem, 16px);
  line-height: 2;
}
html body main h2 img {
  width: auto;
  height: min(3.367vw, 46px);
}
@media screen and (max-width: 768px) {
  html body main h2 img {
    height: 8.454vw;
  }
}
html body main .comment {
  font-size: min(1rem, 16px);
  line-height: 2;
}
@media screen and (max-width: 768px) {
  html body main .comment {
    font-size: 1rem;
  }
}
html body main .pagination {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(0.732vw, 10px);
  padding: 0 0 min(7.321vw, 100px);
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main .pagination {
    gap: 2.415vw;
    padding: 0 0 14.493vw;
  }
}
html body main .pagination li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #fff;
  color: #111;
  height: min(2.928vw, 40px);
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 768px) {
  html body main .pagination li a {
    height: 9.662vw;
  }
}
html body main .pagination li a span {
  font-size: min(1rem, 16px);
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  html body main .pagination li a span {
    font-size: 0.857rem;
  }
}
html body main .pagination li a:hover {
  filter: alpha(opacity=60);
  opacity: 0.6;
}
html body main .pagination li .page-numbers {
  font-size: min(1rem, 16px);
  width: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main .pagination li .page-numbers {
    font-size: 0.857rem;
    width: 9.662vw;
  }
}
html body main .pagination li .page-numbers.current {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #000;
  color: #fff;
  height: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main .pagination li .page-numbers.current {
    height: 9.662vw;
  }
}
html body main .sidebar {
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: min(16.105vw, 220px);
  margin: 0 0 0 min(4.392vw, 60px);
}
@media screen and (max-width: 768px) {
  html body main .sidebar {
    width: 100%;
    margin: 0;
  }
}
html body main .sidebar h3 {
  background: #21aa00;
  color: #fff;
  font-size: min(1rem, 16px);
  padding: min(0.732vw, 10px) min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body main .sidebar h3 {
    font-size: 1rem;
    padding: 4.333vw 4.667vw;
  }
}
html body main .sidebar h3:nth-of-type(n+2) {
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main .sidebar h3:nth-of-type(n+2) {
    margin-top: 4.831vw;
  }
}
html body main .sidebar > ul li a {
  display: block;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  width: 100%;
  padding: min(1.464vw, 20px) 0;
  border-bottom: 1px #809394 solid;
  -webkit-transition: all 0.5s ease;
  transition: all 0.5s ease;
}
@media screen and (max-width: 768px) {
  html body main .sidebar > ul li a {
    padding: 4.831vw 0;
  }
}
html body main .sidebar > ul li a span {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #111;
  font-size: min(1rem, 16px);
  line-height: 1.3;
}
@media screen and (max-width: 768px) {
  html body main .sidebar > ul li a span {
    font-size: 1rem;
  }
}
html body main .sidebar > ul li a span::before {
  content: "";
  -ms-flex-negative: 0;
      flex-shrink: 0;
  display: block;
  width: min(0.366vw, 5px);
  height: 1px;
  background: #21aa00;
  margin-right: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body main .sidebar > ul li a span::before {
    width: 1.208vw;
    margin-right: 1.208vw;
  }
}
html body main .sidebar .select {
  width: 100%;
  margin-top: min(1.464vw, 20px);
  position: relative;
}
@media screen and (max-width: 768px) {
  html body main .sidebar .select {
    margin-top: 4.831vw;
  }
}
html body main .sidebar .select::after {
  content: "";
  display: block;
  width: min(0.512vw, 7px);
  height: min(0.512vw, 7px);
  border-width: 0 2px 2px 0;
  border-color: #111;
  border-style: solid;
  position: absolute;
  right: min(0.732vw, 10px);
  top: calc(50% - min(0.512vw, 7px));
  -webkit-transform-origin: center;
          transform-origin: center;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 768px) {
  html body main .sidebar .select::after {
    width: 1.208vw;
    height: 1.208vw;
    border-width: 0 1px 1px 0;
    right: 2.415vw;
    top: calc(50% - 1.208vw);
  }
}
html body main .sidebar .select select {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  background: #efefef;
  border: none;
  color: #111;
  font-size: min(1rem, 16px);
  letter-spacing: 1px;
  width: 100%;
  height: min(2.928vw, 40px);
  padding: min(0.366vw, 5px) min(0.732vw, 10px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}
@media screen and (max-width: 768px) {
  html body main .sidebar .select select {
    font-size: 1rem;
    height: 9.662vw;
    padding: 1.208vw 2.415vw;
  }
}
html body main #contact {
  background: url("../img/bg_contact.jpg") no-repeat center top/cover;
}
html body main #contact .inner ul {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: min(1.464vw, 20px);
  width: min(50.22vw, 686px);
  margin-top: min(2.928vw, 40px);
}
@media screen and (max-width: 768px) {
  html body main #contact .inner ul {
    grid-template-columns: repeat(1, 1fr);
    gap: 4.831vw;
    width: 84.541vw;
    margin-top: 7.246vw;
  }
}
html body main #contact .inner ul li img {
  -webkit-filter: drop-shadow(0 0 min(0.366vw, 5px) rgba(4, 28, 0, 0.75));
          filter: drop-shadow(0 0 min(0.366vw, 5px) rgba(4, 28, 0, 0.75));
}
@media screen and (max-width: 768px) {
  html body main #contact .inner ul li img {
    -webkit-filter: drop-shadow(0 0 1.208vw rgba(4, 28, 0, 0.75));
            filter: drop-shadow(0 0 1.208vw rgba(4, 28, 0, 0.75));
  }
}
html body footer {
  background: #21aa00;
  padding-bottom: min(7.321vw, 100px);
}
@media screen and (max-width: 768px) {
  html body footer {
    background: #fff;
    padding-bottom: 17.15vw;
  }
}
html body footer.no-padding {
  padding-bottom: 0;
}
html body footer .wrapper {
  background: url("../img/bg_common.jpg") no-repeat center top/cover;
}
@media screen and (max-width: 768px) {
  html body footer .wrapper {
    background: url("../img/bg_common.jpg") no-repeat left top/cover;
  }
}
html body footer .wrapper .inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  width: min(76.135vw, 1040px);
  padding: min(4.392vw, 60px) 0 min(3.66vw, 50px);
  margin: 0 auto;
  position: relative;
}
@media screen and (max-width: 768px) {
  html body footer .wrapper .inner {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100% !important;
    padding: 14.493vw 7.246vw;
    position: initial;
  }
}
html body footer .wrapper .inner h2,
html body footer .wrapper .inner .logo {
  width: min(34.7vw, 474px);
  -webkit-filter: invert(1) brightness(1);
          filter: invert(1) brightness(1);
}
@media screen and (max-width: 768px) {
  html body footer .wrapper .inner h2,
  html body footer .wrapper .inner .logo {
    width: 50.725vw;
  }
}
@media screen and (max-width: 768px) {
  html body footer .wrapper .inner nav {
    width: 100%;
    margin-top: 12.077vw;
  }
}
html body footer .wrapper .inner nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  gap: min(1.83vw, 25px);
}
@media screen and (max-width: 768px) {
  html body footer .wrapper .inner nav ul {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 4.831vw;
    width: 100%;
  }
}
html body footer .wrapper .inner nav ul li {
  width: 100%;
}
html body footer .wrapper .inner nav ul li a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  background: url("../img/icon_arrow3.svg") no-repeat right min(0.22vw, 3px)/min(1.171vw, 16px) auto;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}
@media screen and (max-width: 768px) {
  html body footer .wrapper .inner nav ul li a {
    background: url("../img/icon_arrow3.svg") no-repeat right 0.22vw/3.623vw auto;
  }
}
html body footer .wrapper .inner nav ul li a span {
  color: #fff;
  font-size: min(1.125rem, 18px);
  font-weight: 700;
  padding-right: min(2.196vw, 30px);
}
@media screen and (max-width: 768px) {
  html body footer .wrapper .inner nav ul li a span {
    font-size: 1.285rem;
    padding-right: 7.246vw;
  }
}
html body footer .wrapper .inner nav ul li a::after {
  content: "";
  width: 100%;
  height: 2px;
  background: #21aa00;
  -webkit-transform: scaleX(0);
          transform: scaleX(0);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  margin-top: min(0.366vw, 5px);
}
@media screen and (max-width: 768px) {
  html body footer .wrapper .inner nav ul li a::after {
    margin-top: 1.208vw;
  }
}
html body footer .wrapper .inner nav ul li a:hover {
  background: url("../img/icon_arrow2.svg") no-repeat right min(0.22vw, 3px)/min(1.171vw, 16px) auto;
}
@media screen and (max-width: 768px) {
  html body footer .wrapper .inner nav ul li a:hover {
    background: url("../img/icon_arrow2.svg") no-repeat right 0.22vw/3.623vw auto;
  }
}
html body footer .wrapper .inner nav ul li a:hover::after {
  -webkit-transform: scaleX(1);
          transform: scaleX(1);
  -webkit-transform-origin: left top;
          transform-origin: left top;
}
html body footer .wrapper .inner address {
  position: absolute;
  left: 0;
  bottom: min(4.392vw, 60px);
}
@media screen and (max-width: 768px) {
  html body footer .wrapper .inner address {
    position: initial;
    width: 100%;
    margin-top: 6.039vw;
    padding-top: 7.246vw;
    background-image: linear-gradient(to right, #809394 2px, transparent 2px);
    background-size: 6px 2px;
    background-repeat: repeat-x;
    background-position: center top;
  }
}
html body footer .wrapper .inner address dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  color: #fff;
  font-size: min(0.875rem, 14px);
}
@media screen and (max-width: 768px) {
  html body footer .wrapper .inner address dl {
    font-size: 1rem;
  }
}
html body footer .wrapper .inner address dl:nth-of-type(n+2) {
  margin-top: min(1.098vw, 15px);
}
@media screen and (max-width: 768px) {
  html body footer .wrapper .inner address dl:nth-of-type(n+2) {
    margin-top: 3.623vw;
  }
}
html body footer .wrapper .inner address dl dt {
  width: 7em;
}
html body footer .wrapper .inner address dl dd a {
  color: #fff;
}
html body footer small {
  display: block;
  background: #000;
  width: 100%;
  padding: min(1.098vw, 15px) 0;
  color: #fff;
  text-align: center;
  font-size: min(0.875rem, 14px);
}
@media screen and (max-width: 768px) {
  html body footer small {
    padding: 2.415vw;
    font-size: 0.714rem;
  }
}
html body .banners {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #21aa00;
  width: 100%;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  html body .banners {
    bottom: -0.725vw;
    background: #fff;
  }
}
html body .banners dl {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: min(1.464vw, 20px);
}
@media screen and (max-width: 768px) {
  html body .banners dl {
    gap: 2.415vw;
    padding-top: 3.623vw;
  }
}
html body .banners dl dt {
  width: min(35.798vw, 489px);
}
@media screen and (max-width: 768px) {
  html body .banners dl dt {
    display: none;
  }
}
html body .banners dl dd {
  width: min(18.302vw, 250px);
  padding-top: min(0.146vw, 2px);
}
@media screen and (max-width: 768px) {
  html body .banners dl dd {
    width: 46.377vw;
    padding-top: 0;
  }
}
html body .banners dl dd img {
  -webkit-filter: drop-shadow(0 0 min(0.366vw, 5px) rgba(4, 28, 0, 0.75));
          filter: drop-shadow(0 0 min(0.366vw, 5px) rgba(4, 28, 0, 0.75));
}
@media screen and (max-width: 768px) {
  html body .banners dl dd img {
    -webkit-filter: drop-shadow(0 0 1.208vw rgba(4, 28, 0, 0.75));
            filter: drop-shadow(0 0 1.208vw rgba(4, 28, 0, 0.75));
  }
}
.grecaptcha-badge {
  visibility: hidden;
}/*# sourceMappingURL=style.css.map */