@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Shippori+Mincho+B1:wght@400;500;600;700;800&display=swap");
:root {
  --btn-color:#fff;
  --btnline-color:#000;
  --btntxt-color:#000;
  --btn-width:18rem;
  --en-color:colors(c_yellow);
  --ja-color:#be1e1e;
  --item-color:red;
  --list-color:#fff;
  --base-gradation:linear-gradient(90deg, rgba(5, 100, 205, 1) 20%, rgba(60, 160, 255, 1) 100%) ;
  --reverse-gradation:linear-gradient(270deg, rgba(5, 100, 205, 1) 20%, rgba(60, 160, 255, 1) 100%) fixed;
  --base-gradation-opacity:linear-gradient(90deg, rgba(5, 100, 205, .5) 20%, rgba(60, 160, 255, .5) 100%) ;
  --base-content:1440;
  --btn-size:30rem;
}

@keyframes slideIcon {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(0.5em);
  }
}
@keyframes reverseGradation {
  0% {
    background: var(--base-gradation);
  }
  100% {
    background: var(--reverse-gradation);
  }
}
*,
*:before,
*:after {
  box-sizing: inherit;
}

html {
  box-sizing: border-box;
}

html {
  color: #000;
  background: #FFF;
}

body {
  -webkit-text-size-adjust: 100%;
}

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

td, th {
  vertical-align: top;
}

img {
  vertical-align: bottom;
}

ul, ol, li {
  list-style: none;
}

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

p, li, dd, dt, td, th {
  word-wrap: break-word;
}

select, input {
  word-wrap: normal;
}

address, caption, cite, code, dfn, em, strong, th, var, time, mark {
  font-style: normal;
  font-weight: normal;
}

caption, th {
  text-align: left;
}

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

abbr, acronym {
  border: 0;
  font-variant: normal;
}

mark {
  color: #000;
  background: #FFF;
}

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input, textarea, select, keygen {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

legend {
  color: #000;
}

pre, code,
kbd, samp, tt {
  font-family: monospace;
  line-height: 100%;
}

input:not([type=radio]):not([type=checkbox]), textarea, button {
  /* iosでボタンなどのデフォルト装飾を解除 */
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

input:focus,
select:focus,
textarea:focus {
  outline: 0;
}

/* Firefoxでボタン系の高さが1pxずれる対策 */
button::-moz-focus-inner,
input[type=button]::-moz-focus-inner,
input[type=reset]::-moz-focus-inner,
input[type=submit]::-moz-focus-inner {
  border: 0px;
}

/*----------------------
     html base
---------------------------------------- */
*,
*:before,
*:after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  height: 100%;
  font-size: 10px; /* 1rem = 10px */
  background: #fff;
}

body {
  min-height: 100%;
  font-size: 16px;
  font-size: 1.6rem;
  line-height: 1;
  font-family: Noto Sans JP, ヒラギノ角ゴ ProN W3, Hiragino Kaku Gothic ProN, 游ゴシック, YuGothic, メイリオ, Meiryo, Arimo, sans-serif;
  font-weight: 400;
  background: #fff;
}

a {
  color: #000;
  text-decoration: none;
  transition: all 1s;
}
button, input, textarea {
  font-family: Noto Sans JP, ヒラギノ角ゴ ProN W3, Hiragino Kaku Gothic ProN, 游ゴシック, YuGothic, メイリオ, Meiryo, Arimo, sans-serif;
}

input[type=text], textarea, select, input[type=password] {
  padding: 0.5em 1em;
  border: 1px solid #ddd;
  background: #fff;
  border-radius: 6px;
  width: 100%;
}

textarea {
  height: 10em;
}

button {
  cursor: pointer;
}

@media (max-width: 767px) {
  img {
    max-width: 100%;
  }
}
.c-btn-disabled {
  pointer-events: none;
  opacity: 0.3;
}

.c-btn {
  display: block;
  border-radius: 2.5em;
  font-weight: 500;
  font-size: 1.6rem;
  background: var(--btn-color);
  border: 2px solid var(--btnline-color);
  color: var(--btntxt-color);
  text-align: center;
  width: var(--btn-width);
  padding: 0.8em 0.5em;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
}
.c-btn:hover {
  background: var(--btnline-color);
  color: var(--btn-color);
  opacity: 1;
  text-decoration: none;
}

.c-btn-beta:hover {
  border: 2px solid var(--btnline-color);
  background: var(--btntxt-color);
}

.c-btn:disabled {
  background-color: #999;
  border-color: #999;
  pointer-events: none;
}

.c-btn-min {
  width: clamp(10rem, 100%, 15rem);
}

.c-btn-arrow {
  display: grid;
  grid-template-columns: auto 1.6rem;
  align-items: center;
  gap: 0.2em;
}
.c-btn-arrow:after {
  content: "";
  display: block;
  width: 1.2rem;
  height: 1rem;
  background: url(../images/common/icon_arrow_b.svg) no-repeat center center/contain;
}
.c-btn-arrow.c-btn-beta:after {
  background: none;
  -webkit-mask-image: url(../images/common/icon_arrow_b.png);
          mask-image: url(../images/common/icon_arrow_b.png);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--btntxt-color);
}
.c-btn-arrow:hover:after {
  background: none;
  -webkit-mask-image: url(../images/common/icon_arrow_b.png);
          mask-image: url(../images/common/icon_arrow_b.png);
  -webkit-mask-size: contain;
          mask-size: contain;
  -webkit-mask-repeat: no-repeat;
          mask-repeat: no-repeat;
  -webkit-mask-position: center;
          mask-position: center;
  background-color: var(--btn-color);
}

.c-btn__more {
  background: var(--base-gradation);
  border-radius: 2.5em;
  width: var(--btn-size);
  text-align: center;
  padding: 1em;
  font-weight: 700;
  font-size: 1.8rem;
  color: #fff;
}
.c-btn__more:hover {
  animation: reverseGradation 0.1s linear forwards;
}

.c-btn__circlearrow {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.c-btn__circlearrow:after {
  content: "";
  display: block;
  width: 4rem;
  aspect-ratio: 1/1;
  border-radius: 50%;
  padding: 0.5rem;
  background: url(../images/common/icon_arrow_wr.svg) no-repeat center center/40%, var(--base-gradation);
}
.c-btn__circlearrow:hover:after {
  animation: slideIcon 0.1s linear forwards;
  background: url(../images/common/icon_arrow_wr.svg) no-repeat center center/40%, var(--reverse-gradation);
}

.c-fixed {
  display: fixed;
  overflow: hidden;
}

.c-listicon {
  display: flex;
}
.c-listicon:before {
  content: attr(data-icon);
  margin-right: 0.2em;
}

.c-animation2__text {
  position: relative;
  display: inline;
  width: -moz-fit-content;
  width: fit-content;
}
.c-animation2__text > span {
  display: inline-block;
  will-change: transform, opacity;
  opacity: 0;
  transform: rotateY(80deg) translateY(60%);
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), clip-path 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.c-animation2__text.is_view > span.is_display {
  transform: rotateY(0) translateY(0);
  opacity: 1;
}
.c-animation2__slide {
  position: relative;
}
.c-animation2__slide > * {
  opacity: 0;
  will-change: clip-path, opacity;
  clip-path: inset(0% 100% 0% 0%);
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), clip-path 1s ease-in-out;
}
.c-animation2__slide.is_view .is_display {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

.c-animation__text {
  position: relative;
  display: inline;
  width: -moz-fit-content;
  width: fit-content;
}
.c-animation__text > span {
  display: inline-block;
  opacity: 0;
  transform: rotateY(80deg) translateY(40px);
  clip-path: inset(0% 0% 0% 100%);
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), clip-path 1s cubic-bezier(0.19, 1, 0.22, 1), rotate 1s cubic-bezier(0.19, 1, 0.22, 1), translate 1s cubic-bezier(0.19, 1, 0.22, 1);
}
.c-animation__text.is_view > span.is_display {
  transform: rotateY(0) translateY(0);
  clip-path: inset(0 0 0 0);
  opacity: 1;
}
.c-animation__slide {
  position: relative;
}
.c-animation__slide > * {
  opacity: 0;
  will-change: clip-path, opacity;
  clip-path: inset(0% 100% 0% 0%);
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), clip-path 1s ease-in-out;
}
.c-animation__slide.is_view .is_display {
  clip-path: inset(0 0 0 0);
  opacity: 1;
}

.c-gradation__text {
  font-size: 4rem;
  --elem-size:var(--js-elem-size);
  width: -moz-fit-content;
  width: fit-content;
}

/* グラデーション文字の個々のspanにも適用 */
.c-gradation__text span {
  background: var(--base-gradation);
  background-size: calc(var(--elem-size) * 1px + 50px);
  background-position-x: calc(var(--js-w) * -1px);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
}

/* 共通アニメーション */
.c-animation__text > span {
  display: inline-block;
  opacity: 0;
  transform: rotateY(80deg) translateY(40px);
  transition: opacity 1s cubic-bezier(0.19, 1, 0.22, 1), transform 1s cubic-bezier(0.19, 1, 0.22, 1);
}

/* 表示時のスタイル */
.c-animation__text > span.is_display {
  opacity: 1;
  transform: rotateY(0deg) translateY(0);
}

.c-bg2 {
  background: #f5f7f5;
  border-block: 1px solid #f5f7f5;
}

.p-steplist {
  display: flex;
  margin: 0;
  padding: 0;
  gap: 4px;
  --step-arrow-width:3rem;
}

.p-steplist__item {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 8rem;
  padding: 0 var(--step-arrow-width);
  flex: 1;
  list-style: none;
  background-color: #e1f5e6;
  color: #37b44b;
  text-align: center;
  clip-path: polygon(0% 0%, calc(100% - var(--step-arrow-width)) 0%, 100% 50%, calc(100% - var(--step-arrow-width)) 100%, 0% 100%, var(--step-arrow-width) 50%);
  margin: 0 -14px;
}

.p-steplist__item:first-child {
  clip-path: polygon(0% 0%, calc(100% - var(--step-arrow-width)) 0%, 100% 50%, calc(100% - var(--step-arrow-width)) 100%, 0% 100%);
  margin-left: 0;
  padding-left: 0;
}

.p-steplist__item:last-child {
  clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%, var(--step-arrow-width) 50%);
  margin-right: 0;
  padding-right: 0;
}

.p-steplist__item--current {
  background-color: #37b44b;
  color: #fff;
}

.step-text {
  font-weight: 700;
  font-size: 2.2rem;
  font-family: "Montserrat", "Noto Sans JP", "ヒラギノ角ゴ ProN W3", "Hiragino Kaku Gothic ProN", "游ゴシック", YuGothic, "メイリオ", Meiryo, "Arimo", sans-serif;
  display: inline-block;
}

.step-text2 {
  margin-left: 1em;
  display: inline-block;
  font-weight: 700;
  font-size: 1.6rem;
}

button {
  cursor: pointer;
}

label {
  /* margin-bottom: 1em; */
  display: inline-block;
  display: flex;
  align-items: center;
}

.p-form button, .p-form input, .p-form textarea {
  font-family: Noto Sans JP, ヒラギノ角ゴ ProN W3, Hiragino Kaku Gothic ProN, 游ゴシック, YuGothic, メイリオ, Meiryo, Arimo, sans-serif;
}
.p-form input[type=text],
.p-form input[type=email],
.p-form input[type=tel],
.p-form input[type=date],
.p-form input[type=time],
.p-form input[type=password],
.p-form input[type=url],
.p-form textarea, .p-form select {
  font-size: 1.8rem;
  display: block;
  width: 100%;
  padding: 0.75rem 0.75rem;
  line-height: 1.5;
  background-clip: padding-box;
  border: 1px solid;
  background-color: #fff;
  border-radius: 0.25rem;
  transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.p-form input[type=text]:focus,
.p-form input[type=email]:focus,
.p-form input[type=tel]:focus,
.p-form input[type=date]:focus,
.p-form input[type=time]:focus,
.p-form input[type=password]:focus,
.p-form input[type=url]:focus,
.p-form textarea:focus, .p-form select:focus {
  border: 1px solid;
}
.p-form input[type=text].__error,
.p-form input[type=email].__error,
.p-form input[type=tel].__error,
.p-form input[type=date].__error,
.p-form input[type=time].__error,
.p-form input[type=password].__error,
.p-form input[type=url].__error,
.p-form textarea.__error, .p-form select.__error {
  border: 1px solid;
}
.p-form input[type=text].__min,
.p-form input[type=email].__min,
.p-form input[type=tel].__min,
.p-form input[type=date].__min,
.p-form input[type=time].__min,
.p-form input[type=password].__min,
.p-form input[type=url].__min,
.p-form textarea.__min, .p-form select.__min {
  width: 40%;
  box-sizing: border-box;
}
.p-form textarea {
  height: 10em;
}
.p-form textarea.multi_text {
  height: 4em;
}
.p-form input[type=radio],
.p-form input[type=checkbox] {
  transform: scale(1.6, 1.6);
  margin-right: 0.8em;
}
.p-form input[type=time] {
  width: 6em;
}
.p-form input[type=text].__half {
  width: 48%;
}
@media (max-width: 767px) {
  .p-form input[type=text].__half {
    width: 100%;
  }
}
.p-form input[type=text].__short {
  width: 25%;
}
@media (max-width: 767px) {
  .p-form input[type=text].__short {
    width: 30%;
  }
}
.p-form input[type=text].__inline {
  display: inline-block;
}
.p-form .__disabled {
  background: #eee !important;
  pointer-events: none;
}

.p-form {
  --btn-color:#e61414;
  --btnline-color:#e61414;
  width: 100%;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto;
  background: #fff;
  padding: 2.4rem;
}
@media (max-width: 1023px) {
  .p-form {
    padding-inline: 5vw;
  }
}
@media (max-width: 767px) {
  .p-form {
    padding: 1.6rem;
  }
}
.p-form_inner {
  display: grid;
  gap: 2.4rem;
}
.p-form_confirm .__input {
  text-align: left;
}
.p-form_input {
  display: grid;
  grid-template-columns: 1fr 3.5fr;
  gap: 1.6rem;
  align-items: center;
  text-align: left;
  font-weight: 400;
  font-size: 1.6rem;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-form_input {
    grid-template-columns: 1fr 3fr;
  }
}
.p-form_input .__heading {
  font-weight: 500;
  font-size: 1.6rem;
  position: relative;
  display: flex;
  align-items: center;
  text-align: left;
  gap: 0.4em;
}
.p-form_input.a-multi .__heading {
  align-self: start;
}
.p-form_input.a-required .__heading:before {
  content: "必須";
  background: #e61414;
  color: #fff;
  padding: 0.2em 0.4em;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  border-radius: 0.3rem;
}
.p-form_input.a-any .__heading:before {
  content: "任意";
  background: #b3b3b3;
  color: #fff;
  padding: 0.2em 0.4em;
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
  border-radius: 0.3rem;
}
.p-form_input .__input_multi {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 1em;
  align-items: start;
  margin-bottom: 0.5em;
  flex-wrap: wrap;
}
@media (max-width: 767px) {
  .p-form_input .__input_multi {
    flex-direction: column;
    text-align: left;
    align-items: flex-start;
  }
}
.p-form_input .__input_inline {
  display: flex;
  gap: 1em;
  align-items: center;
  margin-bottom: 0.5em;
  justify-content: flex-start;
}
.p-form_input .__input_inline > p {
  display: flex;
  gap: 1em;
  align-items: center;
  margin-bottom: 0.5em;
}
.p-form_input__note {
  font-size: 1.4rem;
  text-align: left;
  display: flex;
  gap: 0.4em;
}
@media (min-width: 1024px) {
  .p-form_input__note {
    margin-top: calc(7.2rem * 0.25);
    margin-bottom: calc(7.2rem * 0.25);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-form_input__note {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
@media (max-width: 767px) {
  .p-form_input__note {
    margin-top: calc(4rem * 0.25);
    margin-bottom: calc(4rem * 0.25);
  }
}
.p-form_input__note:before {
  content: attr(data-icon);
}
@media (max-width: 767px) {
  .p-form_input {
    grid-template-columns: 1fr;
    row-gap: 0.8rem;
  }
  .p-form_input .__heading {
    font-weight: 500;
    font-size: 1.6rem;
    -moz-text-align-last: left;
         text-align-last: left;
    width: 100%;
  }
}
.p-form_agree {
  display: grid;
  gap: 0.5em;
  text-align: center;
}
@media (min-width: 1024px) {
  .p-form_agree {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-form_agree {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-form_agree {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
.p-form_agree .__check label {
  justify-content: center;
}
.p-form_btn {
  width: 100%;
  max-width: 28rem;
  --btn-color: #37b44b;
  --btntxt-color:#fff;
  --btnline-color:#37b44b;
}
.p-form_backbtn {
  width: 100%;
  max-width: 28rem;
  --btn-color:#000;
  --btnline-color:#000;
}
.p-form_notice {
  font-weight: 500;
  font-size: 2.1rem;
  text-align: center;
  padding: 1em 0;
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-form_notice {
    font-weight: 500;
    font-size: 1.8rem;
    line-height: 1.4;
    text-align: left;
  }
}
@media (max-width: 767px) {
  .p-form_notice {
    font-weight: 500;
    font-size: 1.6rem;
    text-align: left;
    line-height: 1.4;
  }
}
.p-form_btn_block {
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1.6rem;
}
@media (min-width: 1024px) {
  .p-form_btn_block {
    margin-top: calc(7.2rem * 0.5);
    margin-bottom: calc(7.2rem * 0.5);
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .p-form_btn_block {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-form_btn_block {
    margin-top: calc(4rem * 0.5);
    margin-bottom: calc(4rem * 0.5);
  }
}
@media (max-width: 767px) {
  .p-form_btn img {
    width: 40%;
  }
}
.p-form_btn.__send {
  pointer-events: none;
  background: #666;
}
.p-form_btn .__spiner {
  color: #fff;
  font-size: 2.4rem;
  display: inline-block;
  margin-left: 0.5em;
}
@media (max-width: 767px) {
  .p-form_btn .__spiner {
    font-size: 1.5em;
  }
}
.p-form_complete {
  border: 1px solid #000;
  padding: 1em;
  margin-bottom: 1em;
}

.wpcf7-form-control-wrap {
  display: contents;
}

.message_inline {
  padding: 0.8rem 1.2rem;
}

.p-form-message__text {
  text-align: left;
  position: relative;
  margin-top: 1.6rem;
  margin-bottom: 1.6rem;
  padding: 1.2rem 2rem;
  border-radius: 0.8rem;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}

.p-form-message__error {
  color: #772b35;
  background-color: #fadddd;
}

.p-contact__err {
  color: #e6323c;
  grid-column: 2/3;
  color: #772b35;
  background-color: #fadddd;
  text-align: left;
  position: relative;
  margin-bottom: 1.6rem;
  padding: 1.2rem 2rem;
  border-radius: 0.8rem;
  font-weight: 700;
  font-size: 1.6rem;
  letter-spacing: 0.02em;
}

.p-contact__err:empty {
  display: none; /* 要素を非表示にする */
}

.p-contect__confirm {
  text-align: left;
}

.p-form-message__success {
  color: #18603a;
  background-color: #d5f1de;
}

.c-normal-link {
  color: #37b44b;
  line-height: 2.1;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.c-normal-link:hover {
  text-decoration: none;
}

.p-cms-front p:not([class]) {
  line-height: 2;
}
.p-cms-front strong {
  font-weight: 700;
}
.p-cms-front .single-news__imgbox {
  width: 100%;
  display: flex;
  justify-content: space-between;
}
@media (max-width: 767px) {
  .p-cms-front .single-news__imgbox {
    display: block;
  }
}
@media screen and (max-width: 768px) {
  .p-cms-front .single-news__imgbox {
    display: block;
  }
}
.p-cms-front .single-news__imgbox li {
  width: 48%;
  margin-top: 50px;
}
.p-cms-front .single-news__imgbox li img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .p-cms-front .single-news__imgbox li {
    width: 100%;
    margin-top: 30px;
  }
}
.p-cms-front .single-news .banner {
  padding-bottom: 20px;
  text-align: -webkit-center;
}
.p-cms-front .single-news .banner p {
  color: #fff;
  background-color: #000;
  font-weight: 700;
}
.p-cms-front .single-news__grid {
  background-color: #fff;
  line-height: 2;
}
.p-cms-front .single-news__grid img {
  max-width: 100%;
  height: auto;
}
.p-cms-front .single-news__grid div .date {
  float: left;
  position: relative;
  padding: 2px 10px 0 40px;
}
.p-cms-front .single-news__grid div .date span {
  left: 0;
}
.p-cms-front .single-news__grid div .tag {
  float: left;
  border: 1px solid #39b54a;
  padding: 0 20px;
}
.p-cms-front .single-news__grid .content_ttl {
  width: 100%;
  display: inline-block;
  border-bottom: 2px solid #CCC;
  border-left: 5px solid #39b54a;
  font-weight: 700;
  padding: 10px 0 0 5px;
  margin-bottom: 30px;
  font-size: 25px;
}
@media screen and (max-width: 768px) {
  .p-cms-front .single-news__grid {
    padding: 30px 10px;
  }
  .p-cms-front .single-news__grid .content_ttl {
    margin-bottom: 20px;
    font-size: 18px;
  }
}
.p-cms-front .single-news__grid a {
  color: #39b54a;
}
.p-cms-front .single-news__grid a:hover {
  text-decoration: underline;
}
.p-cms-front .single-news__grid h2 {
  font-size: 22px;
  font-weight: 700;
  color: #222;
  margin-bottom: 20px;
  margin-top: 40px;
  width: 100%;
  border-bottom: 1px solid #CCC;
}
.p-cms-front .single-news__grid > h2:first-of-type {
  margin-top: 0;
}
.p-cms-front .single-news__grid h3 {
  font-size: 20px;
  font-weight: 700;
  color: #222;
  margin-bottom: 16px;
  margin-top: 35px;
  width: 100%;
  border-bottom: 1px dashed #CCC;
}
.p-cms-front .single-news__grid h4 {
  font-size: 18px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  margin-top: 30px;
}
.p-cms-front .single-news__grid h5 {
  font-size: 16px;
  font-weight: 700;
  color: #222;
  margin-bottom: 10px;
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-cms-front .single-news__grid h2 {
    margin-top: 30px;
    font-size: 18px;
  }
  .p-cms-front .single-news__grid h3 {
    margin-top: 30px;
    font-size: 17px;
  }
  .p-cms-front .single-news__grid h4 {
    margin-top: 20px;
    font-size: 16px;
  }
  .p-cms-front .single-news__grid h5 {
    margin-top: 20px;
    font-size: 14px;
  }
}
.p-cms-front .single-news__grid p,
.p-cms-front .single-news__grid table {
  margin-left: 20px;
}
.p-cms-front .single-news__grid ul {
  margin-left: 40px;
}
@media screen and (max-width: 768px) {
  .p-cms-front .single-news__grid p,
  .p-cms-front .single-news__grid table {
    margin-left: 10px;
  }
  .p-cms-front .single-news__grid ul {
    margin-left: 30px;
  }
}
.p-cms-front .single-news__grid h1 + p + h2,
.p-cms-front .single-news__grid h1 + p + h3,
.p-cms-front .single-news__grid h1 + p + h4,
.p-cms-front .single-news__grid h1 + p + h5 {
  margin-top: 0;
}
.p-cms-front .single-news__grid img,
.p-cms-front .single-news__grid iframe {
  padding: 20px 0 20px;
}
.p-cms-front .single-news__grid .nospace {
  padding: 0;
}
.p-cms-front .single-news__grid span.sub {
  vertical-align: sub;
  font-size: 80%;
}
.p-cms-front .single-news__grid span.super {
  vertical-align: super;
  font-size: 80%;
}
.p-cms-front .single-news__grid span.small {
  font-size: 80%;
}
.p-cms-front .single-news__grid div.enclosure {
  width: 90%;
  margin: 0 auto;
  margin-top: 20px;
  margin-bottom: 20px;
  padding: 10px;
  background: #dff1e1;
  border: solid 1px #008b13;
  border-radius: 20px;
}
@media screen and (max-width: 768px) {
  .p-cms-front .single-news__grid div.enclosure {
    width: 100%;
    margin-top: 10px;
    margin-bottom: 10px;
    padding: 5px;
  }
}
.p-cms-front .single-news__grid .no_bullets {
  margin-top: 10px;
}
.p-cms-front .single-news__grid iframe.wp-embedded-content {
  width: 100%;
  max-width: 1000px;
}
.p-cms-front__subtitle {
  font-weight: 700;
  font-size: 1.8rem;
  color: #37b44b;
  margin-bottom: 1em;
}
.p-cms-front__text {
  margin-bottom: 1.5em;
}
.p-cms-front__text ul, .p-cms-front__text li, .p-cms-front__text ol {
  list-style: revert;
  line-height: 2;
}
.p-cms-front__text ul, .p-cms-front__text ol {
  list-style-position: outside;
  margin-left: 1em;
}
.p-cms-front__text blockquote {
  all: revert;
}
.p-cms-front__image {
  text-align: center;
  margin-block: 2.4rem;
}
.p-cms-front__image img {
  max-width: 100%;
}

.slick-list {
  overflow: visible;
}

.p-notfound {
  padding-inline: 5vw;
  min-height: 80vh;
}
.p-notfound .c-title2 {
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .p-notfound {
    padding-block: 7.2rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-notfound {
    padding-block: 5.6rem;
  }
}
@media screen and (max-width: 767px) {
  .p-notfound {
    padding-block: 4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-notfound {
    padding-inline: 10vw;
  }
}
@media screen and (max-width: 767px) and (min-width: 1024px) {
  .p-notfound {
    padding-block: 7.2rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 1023px) {
  .p-notfound {
    padding-block: 5.6rem;
  }
}
@media screen and (max-width: 767px) and (max-width: 767px) {
  .p-notfound {
    padding-block: 4rem;
  }
}
.p-notfound__inner {
  width: 100%;
  max-width: 1120px;
  margin-inline: auto;
}

@media screen and (min-width: 1024px) {
  .p-notfound__inner {
    padding-block: 0rem;
    padding-block: 0rem 3.6rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-notfound__inner {
    padding-block: 0rem;
    padding-block: 0rem 2.8rem;
  }
}
@media screen and (max-width: 767px) {
  .p-notfound__inner {
    padding-block: 0rem;
    padding-block: 0rem 2rem;
  }
}
.p-notfound__inner:not(:first-child) {
  margin-top: 4rem;
}

.p-notfound__text {
  font-size: 1.6rem;
  line-height: 2;
  letter-spacing: 0.024em;
  text-align: center;
}

@media screen and (min-width: 1024px) {
  .p-notfound__text {
    padding-block: 3.6rem;
    padding-block: 3.6rem 0rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-notfound__text {
    padding-block: 2.8rem;
    padding-block: 2.8rem 0rem;
  }
}
@media screen and (max-width: 767px) {
  .p-notfound__text {
    padding-block: 2rem;
    padding-block: 2rem 0rem;
  }
}
.p-notfound__btn {
  display: flex;
  justify-content: center;
}

@media screen and (min-width: 1024px) {
  .p-notfound__btn {
    padding-block: 1.8rem;
  }
}
@media screen and (max-width: 1023px) {
  .p-notfound__btn {
    padding-block: 1.4rem;
  }
}
@media screen and (max-width: 767px) {
  .p-notfound__btn {
    padding-block: 1rem;
  }
}
@media (min-width: 1024px) {
  .h-pc_hide,
  .h-pc_tab_hide {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 1023px) {
  .h-tab_hide,
  .h-pc_tab_hide,
  .h-sp_tab_hide {
    display: none !important;
  }
}
@media (max-width: 767px) {
  .h-sp_hide,
  .h-sp_tab_hide {
    display: none !important;
  }
}
.h-hide {
  display: none;
}

.h-inlineblock {
  display: inline-block;
}

.h-mb0 {
  margin-bottom: 0rem !important;
}
@media (max-width: 767px) {
  .h-mb0 {
    margin-bottom: 0rem !important;
  }
}

.h-mt0 {
  margin-top: 0rem !important;
}
@media (max-width: 767px) {
  .h-mt0 {
    margin-top: 0rem !important;
  }
}

.h-pb0 {
  padding-bottom: 0rem !important;
}
@media (max-width: 767px) {
  .h-pb0 {
    padding-bottom: 0rem !important;
  }
}

.h-mb10 {
  margin-bottom: 1.6rem !important;
}
@media (max-width: 767px) {
  .h-mb10 {
    margin-bottom: 0.8rem !important;
  }
}

.h-mt10 {
  margin-top: 1.6rem !important;
}
@media (max-width: 767px) {
  .h-mt10 {
    margin-top: 0.8rem !important;
  }
}

.h-pb10 {
  padding-bottom: 1.6rem !important;
}
@media (max-width: 767px) {
  .h-pb10 {
    padding-bottom: 0.8rem !important;
  }
}

.h-mb20 {
  margin-bottom: 3.2rem !important;
}
@media (max-width: 767px) {
  .h-mb20 {
    margin-bottom: 1.6rem !important;
  }
}

.h-mt20 {
  margin-top: 3.2rem !important;
}
@media (max-width: 767px) {
  .h-mt20 {
    margin-top: 1.6rem !important;
  }
}

.h-pb20 {
  padding-bottom: 3.2rem !important;
}
@media (max-width: 767px) {
  .h-pb20 {
    padding-bottom: 1.6rem !important;
  }
}

.h-mb30 {
  margin-bottom: 4.8rem !important;
}
@media (max-width: 767px) {
  .h-mb30 {
    margin-bottom: 2.4rem !important;
  }
}

.h-mt30 {
  margin-top: 4.8rem !important;
}
@media (max-width: 767px) {
  .h-mt30 {
    margin-top: 2.4rem !important;
  }
}

.h-pb30 {
  padding-bottom: 4.8rem !important;
}
@media (max-width: 767px) {
  .h-pb30 {
    padding-bottom: 2.4rem !important;
  }
}

.h-mb40 {
  margin-bottom: 6.4rem !important;
}
@media (max-width: 767px) {
  .h-mb40 {
    margin-bottom: 3.2rem !important;
  }
}

.h-mt40 {
  margin-top: 6.4rem !important;
}
@media (max-width: 767px) {
  .h-mt40 {
    margin-top: 3.2rem !important;
  }
}

.h-pb40 {
  padding-bottom: 6.4rem !important;
}
@media (max-width: 767px) {
  .h-pb40 {
    padding-bottom: 3.2rem !important;
  }
}

.h-mb50 {
  margin-bottom: 8rem !important;
}
@media (max-width: 767px) {
  .h-mb50 {
    margin-bottom: 4rem !important;
  }
}

.h-mt50 {
  margin-top: 8rem !important;
}
@media (max-width: 767px) {
  .h-mt50 {
    margin-top: 4rem !important;
  }
}

.h-pb50 {
  padding-bottom: 8rem !important;
}
@media (max-width: 767px) {
  .h-pb50 {
    padding-bottom: 4rem !important;
  }
}

.h-mb60 {
  margin-bottom: 9.6rem !important;
}
@media (max-width: 767px) {
  .h-mb60 {
    margin-bottom: 4.8rem !important;
  }
}

.h-mt60 {
  margin-top: 9.6rem !important;
}
@media (max-width: 767px) {
  .h-mt60 {
    margin-top: 4.8rem !important;
  }
}

.h-pb60 {
  padding-bottom: 9.6rem !important;
}
@media (max-width: 767px) {
  .h-pb60 {
    padding-bottom: 4.8rem !important;
  }
}

.h-mb70 {
  margin-bottom: 11.2rem !important;
}
@media (max-width: 767px) {
  .h-mb70 {
    margin-bottom: 5.6rem !important;
  }
}

.h-mt70 {
  margin-top: 11.2rem !important;
}
@media (max-width: 767px) {
  .h-mt70 {
    margin-top: 5.6rem !important;
  }
}

.h-pb70 {
  padding-bottom: 11.2rem !important;
}
@media (max-width: 767px) {
  .h-pb70 {
    padding-bottom: 5.6rem !important;
  }
}

.h-mb80 {
  margin-bottom: 12.8rem !important;
}
@media (max-width: 767px) {
  .h-mb80 {
    margin-bottom: 6.4rem !important;
  }
}

.h-mt80 {
  margin-top: 12.8rem !important;
}
@media (max-width: 767px) {
  .h-mt80 {
    margin-top: 6.4rem !important;
  }
}

.h-pb80 {
  padding-bottom: 12.8rem !important;
}
@media (max-width: 767px) {
  .h-pb80 {
    padding-bottom: 6.4rem !important;
  }
}

.h-mb90 {
  margin-bottom: 14.4rem !important;
}
@media (max-width: 767px) {
  .h-mb90 {
    margin-bottom: 7.2rem !important;
  }
}

.h-mt90 {
  margin-top: 14.4rem !important;
}
@media (max-width: 767px) {
  .h-mt90 {
    margin-top: 7.2rem !important;
  }
}

.h-pb90 {
  padding-bottom: 14.4rem !important;
}
@media (max-width: 767px) {
  .h-pb90 {
    padding-bottom: 7.2rem !important;
  }
}

.h-mb100 {
  margin-bottom: 16rem !important;
}
@media (max-width: 767px) {
  .h-mb100 {
    margin-bottom: 8rem !important;
  }
}

.h-mt100 {
  margin-top: 16rem !important;
}
@media (max-width: 767px) {
  .h-mt100 {
    margin-top: 8rem !important;
  }
}

.h-pb100 {
  padding-bottom: 16rem !important;
}
@media (max-width: 767px) {
  .h-pb100 {
    padding-bottom: 8rem !important;
  }
}

.h-listicon {
  display: flex;
  gap: 0.2em;
}
.h-listicon:before {
  content: attr(data-icon);
}

.h-underline {
  text-decoration: underline;
  text-underline-offset: 0.2em;
}
.h-underline:hover {
  text-decoration: none;
}

.h-fadein {
  opacity: 0;
  transition: 2s;
  transform: translate3d(0, 50px, 0);
}
.h-fadein.__visibled {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}

.h-external:after {
  content: "";
  display: inline-block;
  background: url(../images/common/icon_external.svg) no-repeat center center/contain;
  width: 1.6rem;
  aspect-ratio: 16/13;
  margin-left: 0.2em;
}

.h-white {
  color: #fff;
}

.h-black {
  color: #000;
}

.h-center {
  text-align: center;
}

.h-left {
  text-align: left;
}

.h-left {
  text-align: right;
}