@charset "UTF-8";

/****************************************************
 * Stylesheet
 ****************************************************/
/**リセット**/
html {
  box-sizing: border-box;
  -webkit-text-size-adjust: 100%;
  color: #000;
  background: #FFF;
  line-height: 1.5;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
input,
textarea,
p,
blockquote,
th,
td,
figure {
  margin: 0;
  padding: 0;
}

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

fieldset,
img,
svg {
  border: 0;
}

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

ol,
ul {
  list-style: none;
}

caption,
th {
  text-align: left;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal;
}

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

sup {
  vertical-align: text-top;
}

sub {
  vertical-align: text-bottom;
}

input,
textarea,
select,
button {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  color: inherit;
  margin: 0;
  padding: 0;
  border: none;
  outline: none;
  background: none;
  appearance: none;
  -webkit-appearance: none;
}

input[type=submit],
input[type=button],
input[type=reset] {
  appearance: none;
  -webkit-appearance: none;
  border-radius: 0;
}

textarea {
  resize: vertical;
}

article,
aside,
footer,
header,
nav,
section {
  display: block;
}

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

a,
a:focus,
a:hover {
  text-decoration: none;
  color: inherit;
  outline: none;
}

/**common**/
html {
  font-family: "Noto Sans JP", sans-serif;
  font-optical-sizing: auto;
  font-size: 10px;
  font-weight: 400;
  font-style: normal;
  color: #2B2B2B;
  scroll-behavior: smooth;
  scroll-padding-top: 13.6rem;
}

@media only screen and (max-width: 1599px) {
  html {
    font-size: 9px;
  }
}

@media only screen and (max-width: 1279px) {
  html {
    font-size: 8px;
  }
}

@media only screen and (max-width: 900px) {
  html {
    scroll-padding-top: 7.8rem;
  }
}

@media only screen and (max-width: 780px) {
  html {
    height: 100%;
    font-size: 10px;
  }
}

body {
  font-size: 1.6rem;
}

@media only screen and (max-width: 780px) {
  body {
    font-size: 1.5rem;
    -webkit-text-size-adjust: 100%;
  }
}

a {
  color: #2B2B2B;
}

a[href^="tel:"] {
  cursor: default;
}

a[href^="tel:"]:hover {
  text-decoration: none;
}

@media only screen and (max-width: 900px) {
  .pc {
    display: none !important;
  }
}

@media only screen and (max-width: 1279px) {
  .pc2 {
    display: none !important;
  }
}

@media only screen and (max-width: 780px) {
  .pc_tb {
    display: none !important;
  }
}

@media only screen and (min-width: 901px) {
  .tb_sp {
    display: none !important;
  }
}

@media only screen and (min-width: 781px) {
  .sp {
    display: none !important;
  }
}

.container {
  padding-top: 13.6rem;
}

@media only screen and (max-width: 900px) {
  .container {
    padding-top: 7.8rem;
  }
}

section,
.cta_block,
.anime {
  opacity: 0;
  filter: brightness(1.5) saturate(0.5);
  -webkit-transform: translateY(1.5rem);
  transform: translateY(1.5rem);
  -webkit-animation: sec_anime 1.2s cubic-bezier(0.1, 0.85, 0.45, 1) forwards;
  animation: sec_anime 1.2s cubic-bezier(0.1, 0.85, 0.45, 1) forwards;
  will-change: opacity, filter, transform;
}

@-webkit-keyframes sec_anime {
  0% {
    opacity: 0;
    filter: brightness(1.5) saturate(0.5);
    -webkit-transform: translateY(1.5rem);
    transform: translateY(1.5rem);
  }

  40% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    filter: brightness(1.05) saturate(0.9);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    filter: brightness(1) saturate(1);
  }
}

@keyframes sec_anime {
  0% {
    opacity: 0;
    filter: brightness(1.5) saturate(0.5);
    -webkit-transform: translateY(1.5rem);
    transform: translateY(1.5rem);
  }

  40% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    filter: brightness(1.05) saturate(0.9);
  }

  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0);
    filter: brightness(1) saturate(1);
  }
}

.inner {
  width: 90%;
  max-width: 1224px;
  margin: 0 auto;
}

.input_area input[type=text],
.input_area input[type=tel],
.input_area input[type=email],
.input_area input[type=number] {
  width: 100%;
  padding: 1em 1.5em;
  line-height: 1.25;
  background-color: #FAFAFA;
  border: solid 1px #D9D9D9;
}

@media only screen and (max-width: 780px) {

  .input_area input[type=text],
  .input_area input[type=tel],
  .input_area input[type=email],
  .input_area input[type=number] {
    padding: 1em;
  }
}

.input_area input[type=text]::placeholder,
.input_area input[type=tel]::placeholder,
.input_area input[type=email]::placeholder,
.input_area input[type=number]::placeholder {
  color: #BCBCBC;
}

.input_area textarea {
  width: 100%;
  height: 17em;
  padding: 1em 1.5em;
  line-height: 1.25;
  background-color: #FAFAFA;
  border: solid 1px #D9D9D9;
}

@media only screen and (max-width: 780px) {
  .input_area textarea {
    height: 12em;
    padding: 1em;
  }
}

.input_area textarea::placeholder {
  color: #BCBCBC;
}

.input_area select {
  width: 100%;
  padding: 1em 4em 1em 1.5em;
  line-height: 1.25;
  background-color: #FAFAFA;
  background-image: url("../img/select_arrow.webp");
  background-repeat: no-repeat;
  background-position: calc(100% - 1em) center;
  -webkit-background-size: 1.1rem auto;
  background-size: 1.1rem auto;
  border: solid 1px #D9D9D9;
}

@media only screen and (max-width: 780px) {
  .input_area select {
    padding: 1em;
  }
}

.input_area .checkbox label input {
  visibility: hidden;
  position: absolute;
  left: -99999px;
}

.input_area .checkbox label input+span {
  padding-left: 2.5em;
  display: inline-block;
  position: relative;
}

.input_area .checkbox label input+span:before {
  width: 1.5em;
  height: 1.5em;
  margin: 0 1em 0 -2.5em;
  content: "";
  border: solid 1px #ADADAD;
  display: inline-block;
  vertical-align: -0.25em;
}

.input_area .checkbox label input+span:after {
  width: 1em;
  height: 0.6em;
  content: none;
  border: solid 0.3rem #10572F;
  border-top: none;
  border-right: none;
  position: absolute;
  top: 0.25em;
  left: 0.25em;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

.input_area .checkbox label input:checked+span:after {
  content: "";
}

.input_area .radiobutton label input {
  visibility: hidden;
  position: absolute;
  left: -99999px;
}

.input_area .radiobutton label input+span {
  padding-left: 2.5em;
  display: inline-block;
  position: relative;
}

.input_area .radiobutton label input+span:before {
  width: 1.5em;
  height: 1.5em;
  margin: 0 1em 0 -2.5em;
  content: "";
  border: solid 1px #ADADAD;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  vertical-align: -0.25em;
}

.input_area .radiobutton label input+span:after {
  width: 1em;
  height: 1em;
  content: none;
  background-color: #10572F;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: 0.25em;
  left: 0.25em;
}

.input_area .radiobutton label input:checked+span:after {
  content: "";
}

.input_area button[type=submit] {
  width: 39.2rem;
  max-width: 100%;
  padding: 1.26em;
  font-size: 1.9rem;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
  background-color: #10572F;
}

.input_area button[type=submit]:hover {
  opacity: 0.6;
}

/**ヘッダーブロック**/
#header {
  width: 100%;
  height: 13.6rem;
  padding: 0 3.2rem;
  background-color: #ffffff;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 99;
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

@media only screen and (min-width: 901px) and (max-width: 1599px) {
  #header {
    padding: 0 2rem;
  }
}

@media only screen and (max-width: 900px) {
  #header {
    height: 7.8rem;
    padding: 0 0 0 1.5rem;
  }
}

#header .logo {
  width: 29.8rem;
}

@media only screen and (max-width: 1099px) {
  #header .logo {
    width: 26.3rem;
  }
}

#header .header_right {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

#header .header_right nav>ul {
  padding-top: 3.5em;
  letter-spacing: -0.4em;
}

#header .header_right nav>ul>* {
  display: inline-block;
  letter-spacing: normal;
}

#header .header_right nav>ul>li {
  padding: 0 1em 3.5em 1em;
  font-weight: 500;
}

@media only screen and (max-width: 1599px) {
  #header .header_right nav>ul>li {
    padding-left: 0.5em;
    padding-right: 0.5em;
  }
}

#header .header_right nav>ul>li a:hover {
  color: #10572F;
}

#header .header_right nav>ul>li>span:after {
  width: 1em;
  height: 1em;
  margin-left: 0.5em;
  content: "";
  background-image: url("../img/icon_arrow06.webp");
  -webkit-background-size: cover;
  background-size: cover;
  display: inline-block;
  vertical-align: -0.1em;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
}

#header .header_right nav>ul>li:hover>span {
  color: #10572F;
}

#header .header_right nav>ul>li:hover .megamenu {
  display: block;
}

#header .header_right nav>ul>li .megamenu {
  width: 100%;
  background-color: #ffffff;
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  z-index: -1;
}

#header .header_right nav>ul>li .megamenu dl {
  padding: 4em 0;
}

#header .header_right nav>ul>li .megamenu dl dt {
  margin-bottom: 2.4em;
  font-size: 2.3rem;
  font-weight: 500;
}

#header .header_right nav>ul>li .megamenu dl dd ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

#header .header_right nav>ul>li .megamenu dl dd ul li {
  width: 23.5%;
  margin: 0 2% 2em 0;
  border-bottom: solid 1px #D9D9D9;
}

#header .header_right nav>ul>li .megamenu dl dd ul li:nth-child(4n) {
  margin-right: 0;
}

#header .header_right nav>ul>li .megamenu dl dd ul li a {
  padding-bottom: 1.5em;
  background-image: url("../img/icon_arrow04.webp");
  -webkit-background-size: 1.5em auto;
  background-size: 1.5em auto;
  background-repeat: no-repeat;
  background-position: right top;
  display: block;
}

#header .header_right nav>ul>li .megamenu dl dd ul li a:hover {
  color: #10572F;
}

#header .header_right .tel {
  width: 28.8rem;
  padding: 0.85em;
  height: 7.2rem;
  margin-left: 1.5em;
  font-size: 1.3rem;
  text-align: center;
  border: solid 1px #CBBE88;
}

@media only screen and (max-width: 1700px) {
  #header .header_right .tel {
    width: 24rem;
  }
}

@media only screen and (max-width: 1599px) {
  #header .header_right .tel {
    width: auto;
    margin-left: 1em;
  }
}

@media only screen and (max-width: 1099px) {
  #header .header_right .tel {
    display: none;
  }
}

#header .header_right .tel .num {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}

#header .header_right .tel .num span {
  margin-left: 0.25em;
  font-size: 1.46em;
  display: inline-block;
  vertical-align: -0.05em;
}

#header .header_right .shindan {
  width: 28.8rem;
  height: 7.2rem;
  margin-left: 1.5em;
}

@media only screen and (max-width: 1700px) {
  #header .header_right .shindan {
    width: 24rem;
  }
}

@media only screen and (max-width: 1599px) {
  #header .header_right .shindan {
    width: auto;
    margin-left: 1em;
  }
}

#header .header_right .shindan a {
  width: 100%;
  height: 100%;
  padding: 0.4em;
  font-family: "Noto Serif JP", serif;
  font-size: 2.3rem;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
  background-color: #FFA800;
  display: block;
}

@media only screen and (max-width: 1599px) {
  #header .header_right .shindan a {
    font-size: 2rem;
    padding: 0.6em;
  }
}

@media only screen and (max-width: 1599px) and (max-width: 1279px) {
  #header .header_right .shindan a {
    padding: 1em 0.5em;
  }
}

#header .header_right .shindan a:before {
  width: 2.3em;
  height: 2.3em;
  margin-right: 0.3em;
  content: "";
  background-image: url("../img/icon_seach01.webp");
  -webkit-background-size: cover;
  background-size: cover;
  display: inline-block;
  vertical-align: -0.75em;
}

@media only screen and (max-width: 1279px) {
  #header .header_right .shindan a:before {
    width: 1.5em;
    height: 1.5em;
    vertical-align: -0.3em;
  }
}

#header .header_right .shindan a:hover {
  filter: brightness(1.2);
}

#header .burger_menu_area .menu_btn {
  width: 7.8rem;
  height: 7.8rem;
  background-image: url("../img/sp_menu_open.webp");
  -webkit-background-size: cover;
  background-size: cover;
}

#header .burger_menu_area .menu_btn.open {
  background-image: url("../img/sp_menu_close.webp");
}

#header .burger_menu_area .menu_btn.open+.menu {
  left: 0;
}

#header .burger_menu_area .menu {
  width: 100%;
  height: calc(100vh - 7.8rem);
  padding: 4.6rem 2.3rem;
  color: #ffffff;
  background-color: rgba(4, 31, 16, 0.98);
  position: absolute;
  top: 100%;
  left: 100%;
  -webkit-transition: left 0.3s;
  transition: left 0.3s;
  overflow-y: auto;
}

#header .burger_menu_area .menu nav {
  margin-bottom: 2em;
}

#header .burger_menu_area .menu nav>ul>li {
  border-bottom: solid 1px #3D4E48;
}

#header .burger_menu_area .menu nav>ul>li>a {
  padding: 1.1em 0;
  font-size: 1.8rem;
  font-weight: 500;
  color: #ffffff;
  display: block;
}

#header .burger_menu_area .menu nav>ul>li>span {
  font-size: 2rem;
  font-weight: 500;
  display: block;
}

#header .burger_menu_area .menu nav>ul>li ul {
  margin: 1.875em 0;
}

#header .burger_menu_area .menu nav>ul>li ul li+li {
  margin-top: 1.25em;
}

#header .burger_menu_area .menu nav>ul>li ul li a {
  letter-spacing: 0.1em;
  color: #ffffff;
  display: block;
}

#header .burger_menu_area .menu .btn {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

#header .burger_menu_area .menu .btn>div {
  width: 48.25%;
}

#header .burger_menu_area .menu .btn>div a {
  font-family: "Noto Serif JP", serif;
  font-size: 1.06em;
  font-weight: 600;
  text-align: center;
  display: block;
}

#header .burger_menu_area .menu .btn>div a:before {
  width: 1.9em;
  height: 1.9em;
  margin: 0 auto;
  content: "";
  -webkit-background-size: cover;
  background-size: cover;
  display: block;
}

#header .burger_menu_area .menu .btn>div.tel a {
  padding: 0.7em 0;
  color: #ffffff !important;
  background-color: #10572F;
  border: solid 1px #CBBE88;
}

#header .burger_menu_area .menu .btn>div.tel a:before {
  background-image: url("../img/icon_tel01.webp");
}

#header .burger_menu_area .menu .btn>div.mail a {
  padding: 0.7em 0;
  color: #10572F !important;
  background-color: #CBBE88;
  border: solid 1px #CBBE88;
}

#header .burger_menu_area .menu .btn>div.mail a:before {
  background-image: url("../img/icon_mail01.webp");
}

/**フッターブロック**/
#footer {
  padding: 7.3rem 0 7.8rem 0;
  background-color: #FAFAFA;
}

@media only screen and (max-width: 780px) {
  #footer {
    padding: 3.3rem 0 10rem 0;
  }
}

@media only screen and (min-width: 901px) {
  #footer .footer_top {
    margin-bottom: 4.8rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}

@media only screen and (max-width: 900px) {
  #footer .footer_top {
    margin-bottom: 3.6rem;
  }
}

@media only screen and (min-width: 901px) {
  #footer .footer_top nav {
    width: 57.5%;
  }
}

@media only screen and (max-width: 900px) {
  #footer .footer_top nav {
    margin-bottom: 2em;
  }
}

#footer .footer_top nav>span {
  margin-bottom: 1.4em;
  padding-bottom: 1em;
  font-size: 2.3rem;
  font-weight: 500;
  border-bottom: solid 1px #D9D9D9;
  display: block;
}

@media only screen and (max-width: 780px) {
  #footer .footer_top nav>span {
    font-size: 1.8rem;
  }
}

@media only screen and (min-width: 781px) {
  #footer .footer_top nav ul {
    column-count: 2;
    column-gap: 2.5rem;
  }
}

#footer .footer_top nav ul li {
  letter-spacing: 0.1em;
}

@media only screen and (min-width: 781px) {
  #footer .footer_top nav ul li {
    break-inside: avoid;
    margin-bottom: 2.5rem;
    font-size: 1.9rem;
  }
}

@media only screen and (max-width: 780px) {
  #footer .footer_top nav ul li {
    margin-bottom: 1em;
  }
}

@media only screen and (min-width: 781px) {
  #footer .footer_top nav ul li a:hover {
    color: #10572F;
  }
}

#footer .footer_top .contact {
  text-align: center;
  border: solid 1px #D9D9D9;
  -webkit-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
  border-radius: 0.8rem;
}

@media only screen and (min-width: 901px) {
  #footer .footer_top .contact {
    width: 40.5%;
    padding: 4rem 2rem;
  }
}

@media only screen and (max-width: 900px) {
  #footer .footer_top .contact {
    padding: 2rem;
  }
}

#footer .footer_top .contact p {
  margin-bottom: 1.26em;
  font-family: "Noto Serif JP", serif;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.175;
}

@media only screen and (max-width: 780px) {
  #footer .footer_top .contact p {
    margin-bottom: 0.6em;
  }
}

#footer .footer_top .contact .tel {
  margin-bottom: 1.5em;
}

@media only screen and (max-width: 780px) {
  #footer .footer_top .contact .tel {
    margin-bottom: 0.5em;
  }
}

@media only screen and (max-width: 780px) {
  #footer .footer_top .contact .tel a {
    padding: 0.5em;
    color: #10572F !important;
    border: solid 1px #10572F;
    display: block;
  }
}

#footer .footer_top .contact .tel a .num {
  font-family: "Noto Serif JP", serif;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.175;
}

@media only screen and (max-width: 780px) {
  #footer .footer_top .contact .tel a .num {
    font-size: 1.7rem;
  }
}

#footer .footer_top .contact .tel a .num span {
  margin-left: 0.25em;
  font-size: 1.7em;
  display: inline-block;
  vertical-align: -0.1em;
}

@media only screen and (max-width: 780px) {
  #footer .footer_top .contact .tel a .time {
    font-size: 1.3rem;
  }
}

#footer .footer_top .contact .mail a {
  width: 28.8rem;
  margin: 0 auto;
  padding: 1em;
  font-weight: 500;
  text-align: center;
  color: #10572F;
  background-color: #CBBE88;
  display: block;
}

@media only screen and (max-width: 780px) {
  #footer .footer_top .contact .mail a {
    width: 100%;
    font-size: 2rem;
  }
}

#footer .footer_top .contact .mail a:before {
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.25em;
  content: "";
  background-image: url("../img/icon_mail01.webp");
  -webkit-background-size: cover;
  background-size: cover;
  display: inline-block;
  vertical-align: -0.3em;
}

@media only screen and (min-width: 781px) {
  #footer .footer_top .contact .mail a:hover {
    filter: brightness(1.2);
  }
}

@media only screen and (min-width: 901px) {
  #footer .footer_middle {
    margin-bottom: 3.6rem;
    padding: 2em 0;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
    -webkit-align-items: center;
    align-items: center;
    border-top: solid 1px #D9D9D9;
    border-bottom: solid 1px #D9D9D9;
  }
}

@media only screen and (max-width: 900px) {
  #footer .footer_middle {
    margin-bottom: 1em;
  }
}

@media only screen and (min-width: 901px) {
  #footer .footer_middle nav {
    width: calc(100% - 30rem);
    text-align: right;
  }
}

@media only screen and (max-width: 900px) {
  #footer .footer_middle nav {
    width: 111%;
    margin: 0 -5.5% 2.4rem -5.5%;
    background-color: #F0F0F0;
  }
}

@media only screen and (min-width: 901px) {
  #footer .footer_middle nav ul {
    letter-spacing: -0.4em;
  }

  #footer .footer_middle nav ul>* {
    display: inline-block;
    letter-spacing: normal;
  }
}

@media only screen and (max-width: 900px) {
  #footer .footer_middle nav ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    border-top: solid 1px #D9D9D9;
    border-bottom: solid 1px #D9D9D9;
  }
}

@media only screen and (min-width: 901px) {
  #footer .footer_middle nav ul li {
    margin: 0 1em;
  }
}

@media only screen and (max-width: 900px) {
  #footer .footer_middle nav ul li {
    width: 50%;
    margin-bottom: -1px;
    border-bottom: solid 1px #D9D9D9;
  }

  #footer .footer_middle nav ul li:nth-child(2n+1) {
    border-right: solid 1px #D9D9D9;
  }
}

#footer .footer_middle nav ul li a {
  font-weight: 500;
}

@media only screen and (min-width: 781px) {
  #footer .footer_middle nav ul li a:hover {
    color: #10572F;
  }
}

@media only screen and (max-width: 900px) {
  #footer .footer_middle nav ul li a {
    padding: 1em;
    text-align: center;
    display: block;
  }
}

@media only screen and (min-width: 781px) {
  #footer .footer_middle .logo {
    width: 29.8rem;
  }
}

@media only screen and (max-width: 900px) {
  #footer .footer_middle .logo {
    margin: 0 auto;
  }
}

@media only screen and (max-width: 780px) {
  #footer .footer_middle .logo {
    width: 20.6rem;
  }
}

@media only screen and (min-width: 901px) {
  #footer .footer_bottom {
    text-align: right;
  }
}

@media only screen and (max-width: 900px) {
  #footer .footer_bottom {
    text-align: center;
  }
}

@media only screen and (min-width: 901px) {
  #footer .footer_bottom .link {
    margin-right: 2em;
    display: inline-block;
  }
}

@media only screen and (min-width: 781px) {
  #footer .footer_bottom .link:hover {
    color: #10572F;
  }
}

@media only screen and (max-width: 900px) {
  #footer .footer_bottom .link {
    margin-bottom: 1.46em;
  }
}

@media only screen and (max-width: 780px) {
  #footer .footer_bottom .link {
    font-size: 1.4rem;
  }
}

#footer .footer_bottom .copyright {
  color: #848484;
}

@media only screen and (min-width: 901px) {
  #footer .footer_bottom .copyright {
    display: inline-block;
  }
}

@media only screen and (max-width: 780px) {
  #footer .footer_bottom .copyright {
    font-size: 1.1rem;
  }
}

/*CTA*/
.cta_block {
  padding: 6.4rem 0 8.1rem 0;
  color: #ffffff;
}

@media only screen and (max-width: 780px) {
  .cta_block {
    padding: 4rem 0 4.8rem 0;
  }
}

.cta_block .midashi01 {
  margin-bottom: 0.5em;
  font-size: 4.8rem;
}

@media only screen and (max-width: 780px) {
  .cta_block .midashi01 {
    font-size: 2.4rem;
  }
}

.cta_block .midashi01 span {
  color: #CBBE88 !important;
}

.cta_block .midashi01+p {
  margin-bottom: 2.2em;
  font-family: "Noto Serif JP", serif;
  font-size: 1.9rem;
  font-weight: 600;
  text-align: center;
}

@media only screen and (max-width: 780px) {
  .cta_block .midashi01+p {
    font-size: 1.6rem;
  }
}

@media only screen and (min-width: 901px) {
  .cta_block .btn_area {
    width: 100%;
    max-width: 84rem;
    margin: 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}

@media only screen and (min-width: 901px) {
  .cta_block .btn_area .tel {
    width: 46.6%;
  }
}

@media only screen and (max-width: 900px) {
  .cta_block .btn_area .tel {
    width: 100%;
    max-width: 39.2rem;
    margin: 0 auto 1.2rem auto;
  }
}

.cta_block .btn_area .tel a {
  padding: 0.7em;
  text-align: center;
  color: #ffffff !important;
  background-color: #10572F;
  border: solid 1px #CBBE88;
  display: block;
}

.cta_block .btn_area .tel a .num {
  font-family: "Noto Serif JP", serif;
  font-size: 1.9rem;
  font-weight: 600;
  line-height: 1.175;
}

@media only screen and (max-width: 780px) {
  .cta_block .btn_area .tel a .num {
    font-size: 1.7rem;
  }
}

.cta_block .btn_area .tel a .num span {
  margin-left: 0.25em;
  font-size: 1.7em;
  display: inline-block;
  vertical-align: -0.1em;
}

.cta_block .btn_area .tel a .time {
  font-size: 1.3rem;
}

@media only screen and (min-width: 901px) {
  .cta_block .btn_area .mail {
    width: 46.6%;
  }
}

@media only screen and (max-width: 900px) {
  .cta_block .btn_area .mail {
    width: 100%;
    max-width: 39.2rem;
    margin: 0 auto;
  }
}

.cta_block .btn_area .mail a {
  width: 100%;
  padding: 1.4em;
  font-size: 1.9rem;
  font-weight: 500;
  text-align: center;
  color: #10572F;
  background-color: #CBBE88;
  display: block;
}

@media only screen and (max-width: 780px) {
  .cta_block .btn_area .mail a {
    font-size: 2rem;
  }
}

.cta_block .btn_area .mail a:before {
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.5em;
  content: "";
  background-image: url("../img/icon_mail01.webp");
  -webkit-background-size: cover;
  background-size: cover;
  display: inline-block;
  vertical-align: -0.35em;
}

@media only screen and (min-width: 781px) {
  .cta_block .btn_area .mail a:hover {
    filter: brightness(1.2);
  }
}

/*追従　PC*/
@media only screen and (min-width: 781px) {
  .fix_pc {
    width: 24.8rem;
    padding: 1.5em 1.8em;
    background-color: #ffffff;
    -webkit-border-radius: 0.4rem;
    -moz-border-radius: 0.4rem;
    border-radius: 0.4rem;
    -webkit-box-shadow: 0.3rem 0.3rem 0.6rem rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0.3rem 0.3rem 0.6rem rgba(0, 0, 0, 0.1);
    box-shadow: 0.3rem 0.3rem 0.6rem rgba(0, 0, 0, 0.1);
    position: fixed;
    right: 1.5em;
    bottom: 1.5em;
    z-index: 90;
  }

  .fix_pc p {
    margin-bottom: 0.4em;
    font-family: "Noto Serif JP", serif;
    font-size: 1.9rem;
    font-weight: 600;
    text-align: center;
    color: #10572F;
  }

  .fix_pc .mail a {
    width: 100%;
    padding: 0.6em;
    font-weight: 500;
    text-align: center;
    color: #10572F;
    background-color: #CBBE88;
    display: block;
  }

  .fix_pc .mail a:before {
    width: 1.5em;
    height: 1.5em;
    margin-right: 0.5em;
    content: "";
    background-image: url("../img/icon_mail01.webp");
    -webkit-background-size: cover;
    background-size: cover;
    display: inline-block;
    vertical-align: -0.35em;
  }

  .fix_pc .mail a:hover {
    filter: brightness(1.2);
  }
}

/*追従　SP*/
@media only screen and (max-width: 780px) {
  .fix_sp {
    width: 100%;
    display: -webkit-flex;
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 90;
  }

  .fix_sp>div {
    width: 33.3333%;
  }

  .fix_sp>div a {
    padding: 1em 0;
    font-family: "Noto Serif JP", serif;
    font-size: 1.13em;
    font-weight: 600;
    text-align: center;
    display: block;
  }

  .fix_sp>div a:before {
    width: 1.76em;
    height: 1.76em;
    margin: 0 auto;
    content: "";
    -webkit-background-size: cover;
    background-size: cover;
    display: block;
  }

  .fix_sp>div.shindan a {
    color: #ffffff !important;
    background-color: #FFA800;
  }

  .fix_sp>div.shindan a:before {
    background-image: url("../img/icon_seach01.webp");
  }

  .fix_sp>div.tel a {
    color: #ffffff !important;
    background-color: #10572F;
  }

  .fix_sp>div.tel a:before {
    background-image: url("../img/icon_tel01.webp");
  }

  .fix_sp>div.mail a {
    color: #10572F !important;
    background-color: #CBBE88;
  }

  .fix_sp>div.mail a:before {
    background-image: url("../img/icon_mail01.webp");
  }
}

/**共通パーツ（コンポーネント）**/
/*グラデ*/
.bg_grad01 {
  background: -webkit-linear-gradient(156deg, #10572F, #093C20 50%, #093C20);
  background: linear-gradient(156deg, #10572F, #093C20 50%, #093C20);
}

.bg_grad02 {
  background: -webkit-linear-gradient(to bottom right, #EFEAD5, #CBBE88);
  background: linear-gradient(to bottom right, #EFEAD5, #CBBE88);
}

/*ボタン*/
.btn01 {
  width: 39.2rem;
  max-width: 100%;
  padding: 1.25em;
  font-family: "Noto Serif JP", serif;
  font-size: 1.9rem;
  font-weight: 500;
  text-align: center;
  color: #10572F !important;
  border: solid 1px #10572F;
  display: inline-block;
  position: relative;
}

@media only screen and (max-width: 780px) {
  .btn01 {
    width: 30.4rem;
    font-size: 1.6rem;
  }
}

.btn01:after {
  width: 2.5em;
  height: 1px;
  content: "";
  background-color: #10572F;
  position: absolute;
  top: 50%;
  right: -1.25em;
}

@media only screen and (min-width: 781px) {
  .btn01:after {
    -webkit-transition: right 0.3s;
    transition: right 0.3s;
  }

  .btn01:hover:after {
    right: -2em;
  }
}

/*見出し*/
.midashi01 {
  margin-bottom: 1em;
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  font-weight: 600;
}

@media only screen and (max-width: 780px) {
  .midashi01 {
    font-size: 2.4rem;
  }
}

.midashi01 span {
  margin-bottom: 0.25em;
  font-size: 0.475em;
  letter-spacing: 0.1em;
  color: #10572F;
  display: block;
}

@media only screen and (max-width: 780px) {
  .midashi01 span {
    font-size: 0.66em;
  }
}

.midashi01 span.dot {
  margin-bottom: 0.6em;
}

.midashi01 span.dot:before {
  width: 0.6rem;
  height: 0.6rem;
  margin-right: 1em;
  content: "";
  background-color: #10572F;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  vertical-align: 0.2em;
}

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

.midashi01.white {
  color: #ffffff;
}

.midashi01.white span {
  color: #ffffff;
}

.midashi01.white2 {
  color: #ffffff;
}

.midashi01.white2 span {
  color: #CBBE88;
}

.midashi02 {
  margin-bottom: 0.8em;
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  font-weight: 600;
}

@media only screen and (max-width: 780px) {
  .midashi02 {
    font-size: 2.4rem;
  }
}

.midashi02 span {
  margin-bottom: 1em;
  font-size: 1.9rem;
  letter-spacing: 0.1em;
  color: #10572F;
  display: block;
}

@media only screen and (max-width: 780px) {
  .midashi02 span {
    font-size: 1.6rem;
  }
}

.midashi02 span.ja {
  font-size: 2.4rem;
}

@media only screen and (max-width: 780px) {
  .midashi02 span.ja {
    font-size: 2rem;
  }
}

.midashi02 span:before {
  width: 0.6rem;
  height: 0.6rem;
  margin-right: 1em;
  content: "";
  background-color: #10572F;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  vertical-align: 0.2em;
}

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

.midashi02.white {
  color: #ffffff;
}

.midashi02.white span {
  color: #ffffff;
}

.midashi02.white span:before {
  background-color: #ffffff;
}

.midashi02.white2 {
  color: #ffffff;
}

.midashi02.white2 span {
  color: #CBBE88;
}

.midashi02.white2 span:before {
  background-color: #CBBE88;
}

/*レイアウトコンポーネント*/
@media only screen and (min-width: 781px) {
  .content_layout01 {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}

@media only screen and (min-width: 781px) {
  .content_layout01 .img {
    width: 77.5%;
    margin-left: -27.5%;
    margin-right: 0;
  }
}

@media only screen and (max-width: 780px) {
  .content_layout01 .img {
    width: 105.5%;
    margin-left: -5.5%;
    margin-right: 0;
    margin-bottom: 2rem;
  }
}

@media only screen and (min-width: 781px) {
  .content_layout01 .text {
    width: 50%;
  }
}

@media only screen and (min-width: 781px) {
  .content_layout01 .text+.img {
    margin-left: 0;
    margin-right: -27.5%;
  }
}

@media only screen and (max-width: 780px) {
  .content_layout01 .text+.img {
    margin-top: 2rem;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: -5.5%;
  }
}

@media only screen and (min-width: 781px) {
  .content_layout01.reverse {
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

@media only screen and (min-width: 781px) {
  .content_layout01.reverse .img {
    margin-left: 0;
    margin-right: -27.5%;
  }
}

@media only screen and (max-width: 780px) {
  .content_layout01.reverse .img {
    margin-left: 0;
    margin-right: -5.5%;
  }
}

@media only screen and (min-width: 781px) {
  .content_layout01.reverse .text+.img {
    margin-left: -27.5%;
    margin-right: 0;
  }
}

@media only screen and (max-width: 780px) {
  .content_layout01.reverse .text+.img {
    margin-left: -5.5%;
    margin-right: 0;
  }
}

.content_layout01.align-center {
  -webkit-align-items: center;
  align-items: center;
}

@media only screen and (min-width: 781px) {
  .content_layout02 {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}

@media only screen and (min-width: 781px) {
  .content_layout02 .img {
    width: 40%;
  }
}

@media only screen and (max-width: 780px) {
  .content_layout02 .img {
    margin-bottom: 2rem;
  }
}

@media only screen and (min-width: 781px) {
  .content_layout02 .text {
    width: 55%;
  }
}

@media only screen and (max-width: 780px) {
  .content_layout02 .text+.img {
    margin-top: 2rem;
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 781px) {
  .content_layout02.reverse {
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

.content_layout02.align-center {
  -webkit-align-items: center;
  align-items: center;
}

/*リスト*/
.list_type01 li {
  padding-left: 2em;
}

.list_type01 li+li {
  margin-top: 0.5em;
}

.list_type01 li:before {
  width: 0.5em;
  height: 0.5em;
  margin: 0 1.5em 0 -2em;
  content: "";
  background-color: #10572F;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  vertical-align: 0.15em;
}

/*FAQリストレイアウト*/
@media only screen and (min-width: 781px) {
  .faq_layout01 {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media only screen and (min-width: 781px) {
  .faq_layout01 .midashi01 {
    width: 34%;
  }
}

@media only screen and (min-width: 781px) {
  .faq_layout01 .faq_list {
    width: 66%;
  }
}

.faq_layout01 .faq_list ul li {
  padding: 1em 2.5em;
  background-color: #FAFAFA;
  -webkit-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
  border-radius: 0.8rem;
}

@media only screen and (max-width: 780px) {
  .faq_layout01 .faq_list ul li {
    padding: 0.5em 1.3em;
  }
}

.faq_layout01 .faq_list ul li+li {
  margin-top: 0.5em;
}

.faq_layout01 .faq_list ul li .faq_q {
  padding: 1em 2.5em 1em 0;
  padding-right: 2.5em;
  font-weight: 500;
}

@media only screen and (max-width: 780px) {
  .faq_layout01 .faq_list ul li .faq_q {
    padding: 0.5em 1.7em 0.5em 0;
    font-size: 1.6rem;
  }
}

.faq_layout01 .faq_list ul li .faq_q i {
  background-image: url("../img/icon_arrow01.webp") !important;
  top: 0.5em;
}

.faq_layout01 .faq_list ul li .faq_a {
  width: calc(100% + 2em);
  margin: 0 -1em;
  padding: 1.5em 1em;
  line-height: 2.125;
  background-color: #ffffff;
  -webkit-border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  border-radius: 0.4rem;
}

@media only screen and (max-width: 780px) {
  .faq_layout01 .faq_list ul li .faq_a {
    width: calc(100% + 1em);
    margin: 0 -0.5em;
    padding: 1em 0.5em;
  }
}

.faq_layout01 .btn {
  text-align: center;
}

@media only screen and (min-width: 781px) {
  .faq_layout01 .btn {
    width: 100%;
    margin-top: 4.8rem;
  }
}

@media only screen and (max-width: 780px) {
  .faq_layout01 .btn {
    margin-top: 2.8rem;
  }
}

.faq_layout02 {
  margin-bottom: 6rem;
}

@media only screen and (max-width: 780px) {
  .faq_layout02 {
    margin-bottom: 2rem;
  }
}

.faq_layout02 h2 {
  margin-bottom: 1.4em;
  padding: 0.15em 0.5em 0.15em 1em;
  font-size: 2.3rem;
  font-weight: 500;
  border-left: solid 0.4rem #10572F;
}

@media only screen and (max-width: 780px) {
  .faq_layout02 h2 {
    font-size: 1.8rem;
  }
}

@media only screen and (min-width: 781px) {
  .faq_layout02 ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-start;
    align-items: flex-start;
  }
}

.faq_layout02 ul li {
  background-color: #FAFAFA;
  -webkit-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
  border-radius: 0.8rem;
}

@media only screen and (min-width: 781px) {
  .faq_layout02 ul li {
    width: 49%;
    margin-bottom: 2rem;
    padding: 1em;
  }
}

@media only screen and (max-width: 780px) {
  .faq_layout02 ul li {
    padding: 0.5em 1em;
  }

  .faq_layout02 ul li+li {
    margin-top: 1.5em;
  }
}

.faq_layout02 ul li .faq_q {
  padding: 0.75em 2.5em;
  padding-right: 2.5em;
  font-size: 1.9rem;
  font-weight: 500;
  background-image: url("../img/faq/faq_q.webp");
  background-repeat: no-repeat;
  background-position: left 0.7em;
  -webkit-background-size: 1.6em auto;
  background-size: 1.6em auto;
}

@media only screen and (max-width: 780px) {
  .faq_layout02 ul li .faq_q {
    padding: 0.5em 2.2em;
    font-size: 1.6rem;
    background-position: left 0.5em;
  }
}

.faq_layout02 ul li .faq_q i {
  top: 0.5em;
}

.faq_layout02 ul li .faq_a {
  width: 100%;
  margin-top: 1em;
  padding: 1.5em 1em;
  line-height: 2.125;
  background-color: #ffffff;
  -webkit-border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  border-radius: 0.4rem;
}

@media only screen and (max-width: 780px) {
  .faq_layout02 ul li .faq_a {
    width: calc(100% + 1em);
    margin: 0 -0.5em;
    padding: 1em 0.5em;
  }
}

/*グループロゴ一覧*/
.group_logo_list ul {
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (min-width: 781px) {
  .group_logo_list ul {
    margin-right: -2.4rem;
  }
}

@media only screen and (max-width: 780px) {
  .group_logo_list ul {
    margin-right: -1.4rem;
  }
}

@media only screen and (min-width: 781px) {
  .group_logo_list ul li {
    width: 18.4rem;
    margin: 0 2.4rem 2.4rem 0;
  }
}

@media only screen and (max-width: 780px) {
  .group_logo_list ul li {
    width: 10.5rem;
    margin: 0 1.4rem 1.4rem 0;
  }
}

.acc .acc_head {
  position: relative;
}

.acc .acc_head i {
  width: 2.1em;
  height: 2.1em;
  background-image: url("../img/icon_pulus01.webp");
  -webkit-background-size: cover;
  background-size: cover;
  position: absolute;
  top: 0;
  right: 0;
}

@media only screen and (max-width: 780px) {
  .acc .acc_head i {
    width: 1.8em;
    height: 1.8em;
  }
}

.acc .acc_body {
  display: none;
}

.acc.open .acc_head i {
  background-image: url("../img/icon_minus01.webp");
}

.acc.open .acc_body {
  display: block;
}

@media only screen and (min-width: 781px) {
  .sidebar-menu {
    position: sticky;
    top: 13.6rem;
  }
}

@media only screen and (max-width: 780px) {
  .sidebar-menu {
    margin-bottom: 3em;
  }
}

.sidebar-menu .search {
  margin-bottom: 2em;
}

@media only screen and (max-width: 900px) {
  .sidebar-menu .search {
    position: relative;
  }
}

.sidebar-menu .search input[type=search] {
  width: 100%;
  padding: 1.5em 1em 1.5em 3em;
  font-weight: 500;
  background-image: url("../img/icon_seach02.webp");
  -webkit-background-size: 1.2em auto;
  background-size: 1.2em auto;
  background-repeat: no-repeat;
  background-position: 0.9em center;
  border: solid 1px #D9D9D9;
}

.sidebar-menu .search input[type=search]::placeholder {
  color: #D9D9D9;
}

@media only screen and (max-width: 900px) {
  .sidebar-menu .search input[type=search] {
    width: calc(100% - 4em);
    padding: 1em 1em 1em 3em;
    border-right: none;
  }
}

@media only screen and (max-width: 900px) {
  .sidebar-menu .search button[type=submit] {
    width: 4em;
    padding: 1em 0;
    text-align: center;
    letter-spacing: 0.1em;
    background-color: #EFEFEF;
    border: solid 1px #D9D9D9;
    border-left: none;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.sidebar-menu .cate_list {
  margin-bottom: 3em;
  letter-spacing: -0.4em;
}

.sidebar-menu .cate_list>* {
  display: inline-block;
  letter-spacing: normal;
}

@media only screen and (max-width: 780px) {
  .sidebar-menu .cate_list {
    margin-bottom: 0;
  }
}

.sidebar-menu .cate_list a {
  margin: 0 1em 1em 0;
  padding: 0.5em 2em;
  letter-spacing: 0.1em;
  background-color: #EFEFEF;
  -webkit-border-radius: 99px;
  -moz-border-radius: 99px;
  border-radius: 99px;
}

@media only screen and (min-width: 781px) {
  .sidebar-menu .cate_list a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }

  .sidebar-menu .cate_list a:hover {
    opacity: 0.6;
  }
}

@media only screen and (max-width: 780px) {
  .sidebar-menu .cate_list a {
    font-size: 1.2rem;
  }
}

.sidebar-menu .new dl dt {
  margin-bottom: 1.4em;
  padding-bottom: 0.7em;
  font-size: 2.3rem;
  font-weight: 500;
  border-bottom: solid 1px #D9D9D9;
}

.sidebar-menu .new dl dd ul li {
  margin-bottom: 1.5em;
  padding-bottom: 1.5em;
  border-bottom: dashed 1px #D9D9D9;
}

.sidebar-menu .new dl dd ul li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.sidebar-menu .new dl dd ul li a {
  display: block;
}

.sidebar-menu .new dl dd ul li a:hover p {
  color: #10572F;
}

.sidebar-menu .new dl dd ul li p {
  margin-bottom: 0.5em;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.3;
}

.sidebar-menu .new dl dd ul li .date {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #ADADAD;
}

.sidebar-menu .new dl dd ul li .cate span {
  letter-spacing: 0.1em;
  display: inline-block;
}

/*画像トリミング*/
.img_cover {
  overflow: hidden;
}

.img_cover>img,
.img_cover>video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*ページレイアウト*/
@media only screen and (min-width: 781px) {
  .two_col_layout {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-direction: row-reverse;
    flex-direction: row-reverse;
  }
}

@media only screen and (min-width: 781px) {
  .two_col_layout .main_col {
    width: 66%;
  }
}

@media only screen and (min-width: 781px) {
  .two_col_layout .sub_col {
    width: 28.7%;
  }
}

/*ページネーション*/
.pagenation_area .wp-pagenavi {
  font-size: 1.4rem;
  text-align: center;
  letter-spacing: -0.4em;
}

.pagenation_area .wp-pagenavi>* {
  display: inline-block;
  letter-spacing: normal;
}

@media only screen and (max-width: 780px) {
  .pagenation_area .wp-pagenavi {
    font-size: 1.2rem;
  }
}

.pagenation_area .wp-pagenavi>* {
  vertical-align: middle;
}

@media only screen and (min-width: 781px) {
  .pagenation_area .wp-pagenavi a {
    -webkit-transition: opacity 0.3s;
    transition: opacity 0.3s;
  }

  .pagenation_area .wp-pagenavi a:hover {
    opacity: 0.6;
  }
}

.pagenation_area .wp-pagenavi .page {
  width: 2.5em;
  margin: 0 0.5em;
  padding: 1em 0;
  font-family: "Poppins", sans-serif;
  color: #ADADAD;
  background-color: #EFEFEF;
}

.pagenation_area .wp-pagenavi .current {
  width: 2.5em;
  margin: 0 0.5em;
  padding: 1em 0;
  font-family: "Poppins", sans-serif;
  color: #ffffff;
  background-color: #10572F;
}

.pagenation_area .wp-pagenavi .previouspostslink,
.pagenation_area .wp-pagenavi .nextpostslink {
  width: 2em;
  height: 2em;
  background-image: url("../img/icon_arrow06.webp");
  -webkit-background-size: cover;
  background-size: cover;
  text-indent: 200%;
  white-space: nowrap;
  overflow: hidden;
}

.pagenation_area .wp-pagenavi .previouspostslink {
  margin-right: 1.5em;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
}

.pagenation_area .wp-pagenavi .nextpostslink {
  margin-left: 1.5em;
}

/**TOPページ**/
.p-top__mv {
  width: 100%;
  margin-bottom: 2rem;
  position: relative;
  overflow: hidden;
}

@media only screen and (max-width: 780px) {
  .p-top__mv {
    margin-bottom: 2.8rem;
  }
}

.p-top__mv .catchcopy {
  width: 100%;
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center top;
}

@media only screen and (min-width: 781px) {
  .p-top__mv .catchcopy {
    height: 76.4rem;
    background-image: url("../img/top/mv.webp");
  }
}

@media only screen and (max-width: 780px) {
  .p-top__mv .catchcopy {
    height: 35.4rem;
    background-image: url("../img/top/mv_sp.webp");
  }
}

.p-top__mv .catchcopy .inner {
  padding-top: 20rem;
}

@media only screen and (max-width: 780px) {
  .p-top__mv .catchcopy .inner {
    padding-top: 6.4rem;
  }
}

.p-top__mv .catchcopy h1 {
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  line-height: 1.3;
}

@media only screen and (min-width: 781px) {
  .p-top__mv .catchcopy h1 {
    max-width: 101.6rem;
    margin: 0 auto;
    font-size: 5.8rem;
  }
}

@media only screen and (max-width: 780px) {
  .p-top__mv .catchcopy h1 {
    font-size: 2.6rem;
  }
}

.p-top__mv .contact {
  color: #ffffff;
  background-color: #10572F;
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 781px) {
  .p-top__mv .contact {
    max-width: 114.8rem;
    margin: 0 0 0 auto;
    padding-right: 2.8rem;
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
  }

  .p-top__mv .contact:after {
    width: 9999px;
    height: 100%;
    content: "";
    background-color: #10572F;
    position: absolute;
    top: 0;
    left: 99%;
    z-index: -1;
  }
}

@media only screen and (max-width: 780px) {
  .p-top__mv .contact {
    width: 111%;
    margin: 0 -5.5%;
    padding-top: 0.5rem;
  }
}

.p-top__mv .contact p {
  padding: 1em;
  font-family: "Noto Serif JP", serif;
  font-size: 2.3rem;
  font-weight: 600;
  color: #ffffff;
  background-color: #093C20;
}

@media only screen and (max-width: 780px) {
  .p-top__mv .contact p {
    width: 90%;
    margin: -7rem auto 0 auto;
    font-size: 1.7rem;
    line-height: 1.38;
    text-align: center;
  }
}

@media only screen and (min-width: 781px) {
  .p-top__mv .contact .btn_area {
    padding: 1.5em 0 1.5em 1.5em;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
}

@media only screen and (max-width: 780px) {
  .p-top__mv .contact .btn_area {
    width: 90%;
    margin: 0 auto;
    padding-bottom: 2rem;
  }
}

.p-top__mv .contact .btn_area h2 {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
}

@media only screen and (min-width: 781px) {
  .p-top__mv .contact .btn_area h2 {
    width: 29.6rem;
    font-size: 2.8rem;
  }
}

@media only screen and (max-width: 780px) {
  .p-top__mv .contact .btn_area h2 {
    margin: 0.8em 0;
    font-size: 2.2rem;
  }
}

.p-top__mv .contact .btn_area .btn {
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-between;
  justify-content: space-between;
}

@media only screen and (min-width: 781px) {
  .p-top__mv .contact .btn_area .btn {
    width: calc(100% - 29.6rem);
  }
}

.p-top__mv .contact .btn_area .btn>div {
  width: 48.5%;
}

.p-top__mv .contact .btn_area .btn>div a {
  padding: 1em 0;
  font-family: "Noto Serif JP", serif;
  font-size: 1.06em;
  font-weight: 600;
  text-align: center;
  display: block;
}

@media only screen and (min-width: 781px) {
  .p-top__mv .contact .btn_area .btn>div a {
    padding: 1.4em 0;
    font-size: 1.9rem;
  }

  .p-top__mv .contact .btn_area .btn>div a:hover {
    filter: brightness(1.2);
  }
}

.p-top__mv .contact .btn_area .btn>div a:before {
  width: 1.9em;
  height: 1.9em;
  margin-right: 0.5em;
  content: "";
  -webkit-background-size: cover;
  background-size: cover;
  display: inline-block;
  vertical-align: -0.5em;
}

@media only screen and (max-width: 780px) {
  .p-top__mv .contact .btn_area .btn>div a:before {
    margin: 0 auto;
    display: block;
  }
}

@media only screen and (min-width: 781px) {
  .p-top__mv .contact .btn_area .btn>div.tel>span {
    padding: 1em 0;
    text-align: center;
    border: solid 1px #CBBE88;
    display: block;
  }

  .p-top__mv .contact .btn_area .btn>div.tel>span .num {
    font-family: "Noto Serif JP", serif;
    font-size: 1.9rem;
    font-weight: 600;
    line-height: 1.175;
  }

  .p-top__mv .contact .btn_area .btn>div.tel>span .num span {
    margin-left: 0.25em;
    font-size: 1.7em;
    display: inline-block;
    vertical-align: -0.1em;
  }

  .p-top__mv .contact .btn_area .btn>div.tel>span .time {
    font-size: 1.3rem;
  }
}

@media only screen and (max-width: 780px) {
  .p-top__mv .contact .btn_area .btn>div.tel a {
    color: #ffffff !important;
    background-color: #10572F;
    border: solid 1px #CBBE88;
  }

  .p-top__mv .contact .btn_area .btn>div.tel a:before {
    background-image: url("../img/icon_tel01.webp");
  }
}

.p-top__mv .contact .btn_area .btn>div.mail a {
  color: #10572F !important;
  background-color: #CBBE88;
  border: solid 1px #CBBE88;
}

.p-top__mv .contact .btn_area .btn>div.mail a:before {
  background-image: url("../img/icon_mail01.webp");
}

.p-top__contents01 {
  margin-bottom: 12.8rem;
  overflow: hidden;
}

@media only screen and (max-width: 780px) {
  .p-top__contents01 {
    margin-bottom: 6rem;
  }
}

.p-top__contents01 h2 {
  margin-bottom: 0.6em;
  font-family: "Noto Serif JP", serif;
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 1.3;
}

@media only screen and (max-width: 780px) {
  .p-top__contents01 h2 {
    font-size: 2.9rem;
  }
}

.p-top__contents01 p {
  margin-bottom: 2.5em;
  line-height: 2.6;
}

@media only screen and (max-width: 780px) {
  .p-top__contents01 p {
    margin-bottom: 2em;
    line-height: 1.8;
  }
}

@media only screen and (max-width: 780px) {
  .p-top__contents01 .btn {
    text-align: center;
  }
}

.p-top__news {
  margin-bottom: 19.2rem;
}

@media only screen and (max-width: 780px) {
  .p-top__news {
    margin-bottom: 7.2rem;
  }
}

.p-top__news .news_list {
  margin-bottom: 5.6rem;
  border-top: solid 1px #DDDDDD;
}

@media only screen and (max-width: 780px) {
  .p-top__news .news_list {
    margin-bottom: 3.2rem;
  }
}

.p-top__news .news_list li {
  padding: 2em;
  border-bottom: solid 1px #DDDDDD;
}

@media only screen and (max-width: 780px) {
  .p-top__news .news_list li {
    padding: 1.3em 0;
  }
}

.p-top__news .news_list li a {
  display: block;
}

@media only screen and (min-width: 781px) {
  .p-top__news .news_list li a:hover p {
    color: #10572F;
  }
}

.p-top__news .news_list li a .date {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #ADADAD;
  display: inline-block;
}

.p-top__news .news_list li a .date:after {
  width: 1px;
  height: 1em;
  margin: 0 1em;
  content: "";
  background-color: #DDDDDD;
  display: inline-block;
  vertical-align: 0;
}

.p-top__news .news_list li a .cate {
  display: inline-block;
}

@media only screen and (max-width: 780px) {
  .p-top__news .news_list li a .cate {
    font-size: 1.4rem;
  }
}

.p-top__news .news_list li a .cate span {
  letter-spacing: 0.1em;
  display: inline-block;
}

.p-top__news .news_list li a p {
  margin-top: 0.5em;
  letter-spacing: 0.1em;
}

.p-top__news .btn {
  text-align: center;
}

.p-top__service {
  margin-bottom: 10.4rem;
  background-color: #093C20;
}

@media only screen and (max-width: 780px) {
  .p-top__service {
    margin-bottom: 4rem;
  }
}

@media only screen and (min-width: 781px) {
  .p-top__service .inner {
    display: -webkit-flex;
    display: flex;
  }
}

@media only screen and (min-width: 781px) {
  .p-top__service .headding {
    width: 31.8rem;
    padding: 9.6rem 0;
    position: relative;
    z-index: 1;
  }

  .p-top__service .headding:before {
    width: 207%;
    height: 100%;
    content: "";
    background-image: url("../img/top/img02.webp");
    -webkit-background-size: cover;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
  }
}

@media only screen and (max-width: 780px) {
  .p-top__service .headding {
    width: 111%;
    margin: 0 -5.5%;
    padding: 4rem 0;
    background-image: url("../img/top/img02_sp.webp");
    -webkit-background-size: cover;
    background-size: cover;
  }

  .p-top__service .headding .midashi01 {
    width: 90%;
    margin: 0 auto;
  }
}

.p-top__service .headding .midashi01 {
  margin-bottom: 0;
}

@media only screen and (min-width: 781px) {
  .p-top__service .content {
    width: calc(100% - 31.8rem);
    padding: 9.6rem 0;
  }
}

@media only screen and (max-width: 780px) {
  .p-top__service .content {
    padding: 3.6rem 0;
  }
}

@media only screen and (min-width: 781px) {
  .p-top__service .content ul {
    width: 90%;
    margin-top: 80.8rem;
    margin: 0 0 0 auto;
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}

.p-top__service .content ul li {
  text-align: center;
  background-color: #ffffff;
}

@media only screen and (min-width: 781px) {
  .p-top__service .content ul li {
    width: 48.5%;
    margin-bottom: 1.5em;
  }
}

@media only screen and (max-width: 780px) {
  .p-top__service .content ul li+li {
    margin-top: 1em;
  }
}

.p-top__service .content ul li a {
  width: 100%;
  height: 100%;
  display: block;
  position: relative;
  overflow: hidden;
}

@media only screen and (min-width: 781px) {
  .p-top__service .content ul li a {
    padding: 2.75em 1.5em 8rem 1.5em;
  }

  .p-top__service .content ul li a:hover .detail {
    background-color: #CBBE88;
  }
}

@media only screen and (max-width: 780px) {
  .p-top__service .content ul li a {
    padding: 3.4rem 1em 6.8rem 1em;
  }
}

.p-top__service .content ul li a:before {
  width: 1.5em;
  height: 1.5em;
  content: "";
  background-color: #CBBE88;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 780px) {
  .p-top__service .content ul li a:before {
    width: 1.3em;
    height: 1.3em;
  }
}

.p-top__service .content ul li a h3 {
  margin-bottom: 0.34em;
  font-family: "Noto Serif JP", serif;
  font-size: 2.3rem;
  font-weight: 600;
}

@media only screen and (max-width: 780px) {
  .p-top__service .content ul li a h3 {
    font-size: 2.2rem;
  }
}

.p-top__service .content ul li a p {
  margin-bottom: 1em;
}

.p-top__service .content ul li a .fig {
  width: 8rem;
  margin: 0 auto;
}

@media only screen and (max-width: 780px) {
  .p-top__service .content ul li a .fig {
    width: 7.2rem;
  }
}

.p-top__service .content ul li a .detail {
  width: 100%;
  padding: 1em 0;
  font-family: "Noto Serif JP", serif;
  font-weight: 500;
  color: #093C20 !important;
  background-color: #EFEFEF;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media only screen and (max-width: 780px) {
  .p-top__service .content ul li a .detail {
    font-size: 1.4rem;
  }
}

.p-top__service .content ul li a .detail:after {
  width: 3em;
  height: 1px;
  content: "";
  background-color: #D9D9D9;
  position: absolute;
  top: 50%;
  right: 0;
}

.p-top__service .content ul li.btn a {
  color: #ffffff;
  background-color: #0C4A28;
  border: solid 1px #597B68;
}

@media only screen and (min-width: 781px) {
  .p-top__service .content ul li.btn a:hover {
    filter: brightness(1.2);
  }
}

.p-top__service .content ul li.btn a:before {
  content: none;
}

.p-top__service .content ul li.btn a span {
  width: 100%;
  font-family: "Noto Serif JP", serif;
  font-size: 1.9rem;
  font-weight: 600;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

@media only screen and (max-width: 780px) {
  .p-top__service .content ul li.btn a span {
    font-size: 1.6rem;
  }
}

.p-top__service .content ul li.btn a span:after {
  width: 2em;
  height: 2em;
  margin-left: 0.5em;
  content: "";
  background-image: url("../img/icon_arrow02.webp");
  -webkit-background-size: cover;
  background-size: cover;
  display: inline-block;
  vertical-align: -0.55em;
}

.p-top__shindan {
  margin-bottom: 11.2rem;
}

@media only screen and (max-width: 780px) {
  .p-top__shindan {
    margin-bottom: 6.4rem;
  }
}

.p-top__shindan .inner {
  max-width: 101.6rem;
}

.p-top__shindan a {
  color: #ffffff;
  background-color: #FFA800;
}

@media only screen and (min-width: 781px) {
  .p-top__shindan a {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }

  .p-top__shindan a:hover {
    filter: brightness(1.2);
  }
}

@media only screen and (max-width: 780px) {
  .p-top__shindan a {
    display: block;
  }
}

.p-top__shindan a .text {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}

@media only screen and (min-width: 781px) {
  .p-top__shindan a .text {
    width: 61.5%;
    padding: 0 3.5em;
  }
}

@media only screen and (max-width: 780px) {
  .p-top__shindan a .text {
    padding: 1.6em;
  }
}

.p-top__shindan a .text span {
  margin-top: 0.24em;
  font-size: 2.06em;
  display: block;
}

@media only screen and (max-width: 780px) {
  .p-top__shindan a .text span {
    margin-top: 0.16em;
    font-size: 1.86em;
    line-height: 1.14;
    background-image: url("../img/icon_arrow03.webp");
    background-repeat: no-repeat;
    -webkit-background-size: 1em auto;
    background-size: 1em auto;
    background-position: right center;
  }
}

@media only screen and (min-width: 781px) {
  .p-top__shindan a .text span:after {
    width: 1.2em;
    height: 1.2em;
    margin-left: 0.5em;
    content: "";
    background-image: url("../img/icon_arrow03.webp");
    -webkit-background-size: cover;
    background-size: cover;
    display: inline-block;
    vertical-align: -0.25em;
  }
}

@media only screen and (min-width: 781px) {
  .p-top__shindan a .img {
    width: 38.5%;
  }
}

.p-top__strength {
  margin-bottom: 12rem;
}

@media only screen and (max-width: 780px) {
  .p-top__strength {
    margin-bottom: 6rem;
  }
}

.p-top__strength ol {
  counter-reset: num;
}

@media only screen and (min-width: 781px) {
  .p-top__strength ol {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}

.p-top__strength ol li {
  text-align: center;
  background-color: #FAFAFA;
  counter-increment: num;
  position: relative;
}

@media only screen and (min-width: 781px) {
  .p-top__strength ol li {
    width: 49%;
    margin-bottom: 1.5em;
    padding: 6.8rem 5.6rem 4rem 5.6rem;
  }
}

@media only screen and (max-width: 780px) {
  .p-top__strength ol li {
    margin-bottom: 1.2rem;
    padding: 4.6rem 2rem 2rem 2rem;
  }
}

.p-top__strength ol li:before {
  width: 3em;
  margin-left: -1.5em;
  padding-top: 0.28em;
  content: counter(num, decimal-leading-zero);
  font-family: "Noto Serif JP", serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #10572F;
  border-top: solid 0.4rem #10572F;
  position: absolute;
  top: 0;
  left: 50%;
}

@media only screen and (max-width: 780px) {
  .p-top__strength ol li:before {
    font-size: 2.1rem;
  }
}

.p-top__strength ol li h3 {
  margin-bottom: 0.85em;
  font-family: "Noto Serif JP", serif;
  font-size: 2.8rem;
  font-weight: 600;
}

@media only screen and (max-width: 780px) {
  .p-top__strength ol li h3 {
    font-size: 2rem;
  }
}

.p-top__strength ol li .img {
  width: 100%;
  height: auto;
  aspect-ratio: 488/194;
}

@media only screen and (max-width: 780px) {
  .p-top__strength ol li .img {
    aspect-ratio: 688/260;
  }
}

.p-top__strength ol li p {
  margin-top: 1.5em;
}

.p-top__contents02 {
  margin-bottom: 12.8rem;
  overflow: hidden;
}

@media only screen and (max-width: 780px) {
  .p-top__contents02 {
    margin-bottom: 6rem;
  }
}

@media only screen and (min-width: 781px) {
  .p-top__contents02 .img {
    width: 66%;
    margin-left: -28.4%;
  }
}

@media only screen and (min-width: 781px) {
  .p-top__contents02 .text {
    width: 57%;
  }
}

.p-top__contents02 h2 {
  margin-bottom: 0.8em;
  font-family: "Noto Serif JP", serif;
  font-size: 4.8rem;
  font-weight: 600;
  line-height: 1.3;
  text-indent: -0.5em;
}

@media only screen and (max-width: 780px) {
  .p-top__contents02 h2 {
    font-size: 2.9rem;
  }
}

.p-top__contents02 p {
  margin-bottom: 0 !important;
  line-height: 2.6;
}

@media only screen and (max-width: 780px) {
  .p-top__contents02 p {
    line-height: 1.8;
  }
}

.p-top__contents02 p.strong {
  margin-top: 1.7em;
  font-size: 1.4em;
  line-height: 1.56;
}

@media only screen and (max-width: 780px) {
  .p-top__contents02 p.strong {
    font-size: 1.13em;
  }
}

.p-top__contents02 p.strong b {
  font-weight: 400;
  color: #10572F;
}

.p-top__column {
  margin-bottom: 12.8rem;
}

@media only screen and (max-width: 780px) {
  .p-top__column {
    margin-bottom: 5.6rem;
  }
}

.p-top__column .column_slides {
  margin-bottom: 4rem;
  position: relative;
}

@media only screen and (max-width: 780px) {
  .p-top__column .column_slides {
    margin-bottom: 3.2rem;
  }
}

.p-top__column .column_slides .swiper {
  padding-bottom: 2.4rem;
}

@media only screen and (max-width: 780px) {
  .p-top__column .column_slides .swiper {
    padding-bottom: 1.6rem;
  }
}

.p-top__column .column_slides .swiper .swiper-wrapper .swiper-slide {
  width: 39.2rem;
  height: auto;
}

@media only screen and (max-width: 780px) {
  .p-top__column .column_slides .swiper .swiper-wrapper .swiper-slide {
    width: 25.5rem;
  }
}

.p-top__column .column_slides .swiper .swiper-wrapper .swiper-slide a {
  width: 100%;
  height: 100%;
  display: block;
  border: solid 1px #D9D9D9;
}

@media only screen and (min-width: 781px) {
  .p-top__column .column_slides .swiper .swiper-wrapper .swiper-slide a img {
    -webkit-transition: transform 0.3s;
    transition: transform 0.3s;
  }

  .p-top__column .column_slides .swiper .swiper-wrapper .swiper-slide a:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

.p-top__column .column_slides .swiper .swiper-wrapper .swiper-slide a .img {
  width: 100%;
  height: auto;
  aspect-ratio: 392/221;
}

.p-top__column .column_slides .swiper .swiper-wrapper .swiper-slide a .text {
  padding: 1.5em 1em 4em 1em;
}

@media only screen and (max-width: 780px) {
  .p-top__column .column_slides .swiper .swiper-wrapper .swiper-slide a .text {
    padding: 0.75em 0.75em 3.5em 0.75em;
  }
}

.p-top__column .column_slides .swiper .swiper-wrapper .swiper-slide a .text p {
  font-family: "Noto Serif JP", serif;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.26;
}

@media only screen and (max-width: 780px) {
  .p-top__column .column_slides .swiper .swiper-wrapper .swiper-slide a .text p {
    font-size: 1.6rem;
  }
}

.p-top__column .column_slides .swiper .swiper-wrapper .swiper-slide a .text .meta {
  position: absolute;
  bottom: 1em;
  left: 1.5em;
}

.p-top__column .column_slides .swiper .swiper-wrapper .swiper-slide a .text .meta .date {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #ADADAD;
  display: inline-block;
}

.p-top__column .column_slides .swiper .swiper-wrapper .swiper-slide a .text .meta .date:after {
  width: 1px;
  height: 1em;
  margin: 0 1em;
  content: "";
  background-color: #DDDDDD;
  display: inline-block;
  vertical-align: 0;
}

.p-top__column .column_slides .swiper .swiper-wrapper .swiper-slide a .text .meta .cate {
  display: inline-block;
}

@media only screen and (max-width: 780px) {
  .p-top__column .column_slides .swiper .swiper-wrapper .swiper-slide a .text .meta .cate {
    font-size: 1.4rem;
  }
}

.p-top__column .column_slides .swiper .swiper-wrapper .swiper-slide a .text .meta .cate span {
  letter-spacing: 0.1em;
  display: inline-block;
}

.p-top__column .column_slides .swiper-pagination {
  position: static;
}

.p-top__column .column_slides .swiper-pagination .swiper-pagination-bullet {
  width: 0.8rem;
  height: 0.8rem;
  margin: 0 0.5em;
  background-color: #D9D9D9;
  opacity: 1 !important;
}

.p-top__column .column_slides .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #093C20;
}

@media only screen and (min-width: 901px) {
  .p-top__column .column_slides .swiper-arrows {
    width: calc(100% + 14rem);
    height: 0;
    margin: 0 -7rem;
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateY(-1);
    transform: translateY(-1);
  }

  .p-top__column .column_slides .swiper-arrows .swiper-button-prev,
  .p-top__column .column_slides .swiper-arrows .swiper-button-next {
    width: 5.6rem;
    height: 5.6rem;
    background-image: url("../img/icon_arrow04.webp");
    -webkit-background-size: cover;
    background-size: cover;
  }

  .p-top__column .column_slides .swiper-arrows .swiper-button-prev svg,
  .p-top__column .column_slides .swiper-arrows .swiper-button-next svg {
    display: none;
  }

  .p-top__column .column_slides .swiper-arrows .swiper-button-prev {
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
    left: 0;
  }

  .p-top__column .column_slides .swiper-arrows .swiper-button-next {
    right: 0;
  }
}

.p-top__column .btn {
  text-align: center;
}

.p-top__group {
  margin-bottom: 12.8rem;
  padding: 8rem 0 8.8rem 0;
}

@media only screen and (max-width: 780px) {
  .p-top__group {
    margin-bottom: 5.6rem;
    padding: 3.6rem 0 4.4rem 0;
  }
}

@media only screen and (min-width: 781px) {
  .p-top__group .headding {
    margin-bottom: 4.8rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: flex-end;
    align-items: flex-end;
  }
}

@media only screen and (max-width: 780px) {
  .p-top__group .headding {
    margin-bottom: 2.5rem;
  }
}

@media only screen and (min-width: 781px) {
  .p-top__group .headding .text {
    width: 65%;
  }
}

.p-top__group .headding .text h2 {
  margin-bottom: 0.6em;
  font-family: "Noto Serif JP", serif;
  font-size: 4.8rem;
  font-weight: 600;
}

@media only screen and (max-width: 780px) {
  .p-top__group .headding .text h2 {
    font-size: 2.9rem;
  }
}

.p-top__group .headding .text p {
  line-height: 2.625;
}

@media only screen and (max-width: 780px) {
  .p-top__group .headding .text p {
    line-height: 1.83;
  }
}

@media only screen and (min-width: 781px) {
  .p-top__group .headding .btn {
    width: 33%;
  }
}

@media only screen and (max-width: 780px) {
  .p-top__group .btn {
    margin-top: 1em;
    text-align: center;
  }
}

.p-top__faq {
  margin-bottom: 16rem;
}

@media only screen and (max-width: 780px) {
  .p-top__faq {
    margin-bottom: 5.6rem;
  }
}

/**下層ページ**/
.pagetitle {
  margin-bottom: 2em;
  padding: 13.6rem 0;
  background-image: url("../img/pagetitle_bg.webp");
  -webkit-background-size: cover;
  background-size: cover;
  background-position: center center;
}

@media only screen and (max-width: 780px) {
  .pagetitle {
    padding: 6rem 0;
  }
}

.pagetitle h1,
.pagetitle .pagetitle_text {
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  font-weight: 600;
  text-align: center;
  color: #ffffff;
}

@media only screen and (max-width: 780px) {

  .pagetitle h1,
  .pagetitle .pagetitle_text {
    font-size: 2.8rem;
  }
}

.pagetitle h1 span,
.pagetitle .pagetitle_text span {
  font-size: 0.475em;
  letter-spacing: 0.1em;
  display: block;
}

.pankuzu {
  margin-bottom: 11rem;
}

@media only screen and (max-width: 780px) {
  .pankuzu {
    margin-bottom: 5rem;
  }
}

.pankuzu .inner {
  letter-spacing: -0.4em;
}

.pankuzu .inner>* {
  display: inline-block;
  letter-spacing: normal;
}

.pankuzu .inner {
  font-size: 1.3rem;
}

.pankuzu a:after {
  width: 1.7em;
  height: 1.7em;
  margin: 0 0.75em;
  content: "";
  background-image: url("../img/icon_arrow06.webp");
  -webkit-background-size: cover;
  background-size: cover;
  display: inline-block;
  vertical-align: -0.5em;
}

.p-about__beginning {
  margin-bottom: 12rem;
}

@media only screen and (max-width: 780px) {
  .p-about__beginning {
    margin-bottom: 6rem;
  }
}

.p-about__beginning .inner {
  max-width: 113.5rem;
}

.p-about__beginning h2 {
  margin-bottom: 0.6em;
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  font-weight: 600;
  color: #10572F;
  text-align: center;
  overflow: hidden;
}

@media only screen and (max-width: 780px) {
  .p-about__beginning h2 {
    font-size: 2.4rem;
  }
}

.p-about__beginning h2 span {
  padding: 0 1.5em;
  display: inline-block;
  position: relative;
}

@media only screen and (max-width: 780px) {
  .p-about__beginning h2 span {
    padding: 0 1em;
  }
}

.p-about__beginning h2 span:before,
.p-about__beginning h2 span:after {
  width: 9999px;
  height: 1px;
  content: "";
  background-color: #D9D9D9;
  position: absolute;
  top: 50%;
}

.p-about__beginning h2 span:before {
  right: 100%;
}

.p-about__beginning h2 span:after {
  left: 100%;
}

.p-about__beginning p {
  font-size: 1.9rem;
  text-align: center;
  line-height: 1.9;
}

@media only screen and (max-width: 780px) {
  .p-about__beginning p {
    font-size: 1.6rem;
  }
}

.p-about__content01 {
  margin-bottom: 11.2rem;
  padding: 8rem 0;
  background-color: #FAFAFA;
}

@media only screen and (max-width: 780px) {
  .p-about__content01 {
    margin-bottom: 5.6rem;
    padding: 4rem 0;
  }
}

@media only screen and (min-width: 781px) {
  .p-about__content01 .content_layout01 .img {
    width: 64.3%;
    margin-left: -26.1%;
    margin-right: 0;
  }
}

@media only screen and (min-width: 781px) {
  .p-about__content01 .content_layout01 .text {
    width: 55%;
  }
}

.p-about__content01 .content_layout01 .text h2 {
  margin-bottom: 1.5em;
  font-weight: 500;
}

.p-about__content01 .content_layout01 .text h2 span {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #10572F;
  display: inline-block;
}

@media only screen and (max-width: 780px) {
  .p-about__content01 .content_layout01 .text h2 span {
    display: block;
  }
}

.p-about__content01 .content_layout01 .text h2 span:before {
  width: 0.6rem;
  height: 0.6rem;
  margin: 0 1em;
  content: "";
  background-color: #10572F;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  vertical-align: 0.2em;
}

@media only screen and (max-width: 780px) {
  .p-about__content01 .content_layout01 .text h2 span:before {
    margin: 0 1em 0 0;
  }
}

.p-about__content01 .content_layout01 .text h3 {
  margin-bottom: 0.8em;
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.2;
}

@media only screen and (max-width: 780px) {
  .p-about__content01 .content_layout01 .text h3 {
    font-size: 2.4rem;
  }
}

.p-about__content01 .content_layout01 .text p {
  line-height: 2.625;
}

@media only screen and (max-width: 780px) {
  .p-about__content01 .content_layout01 .text p {
    line-height: 1.8;
  }
}

.p-about__content01 .content_layout01 .text p b {
  font-weight: 400;
  color: #10572F;
}

.p-about__content02 {
  margin-bottom: 15.2rem;
}

@media only screen and (max-width: 780px) {
  .p-about__content02 {
    margin-bottom: 7rem;
  }
}

.p-about__content02 ul .content_layout02+.content_layout02 {
  margin-top: 6.4rem;
}

@media only screen and (max-width: 780px) {
  .p-about__content02 ul .content_layout02+.content_layout02 {
    margin-top: 3.2rem;
  }
}

.p-about__content02 ul .content_layout02 .midashi02 {
  margin-bottom: 0.7em;
  font-size: 3.3rem;
}

.p-about__content02 ul .content_layout02 p {
  line-height: 2.625;
}

@media only screen and (max-width: 780px) {
  .p-about__content02 ul .content_layout02 p {
    line-height: 1.8;
  }
}

.p-about__group {
  margin-bottom: 15.2rem;
}

@media only screen and (max-width: 780px) {
  .p-about__group {
    margin-bottom: 7rem;
  }
}

.p-about__group .midashi01+p {
  margin-bottom: 3em;
  text-align: center;
  line-height: 2.625;
}

@media only screen and (max-width: 780px) {
  .p-about__group .midashi01+p {
    margin-bottom: 2em;
    line-height: 1.8;
  }
}

.p-about__group .btn {
  margin-top: 4rem;
  text-align: center;
}

@media only screen and (max-width: 780px) {
  .p-about__group .btn {
    margin-top: 3rem;
  }
}

.p-about__content03 {
  margin-bottom: 16rem;
}

@media only screen and (max-width: 780px) {
  .p-about__content03 {
    margin-bottom: 5.6rem;
  }
}

.p-about__content03 .inner {
  max-width: 101.6rem;
}

.p-about__content03 .text p {
  line-height: 2.625;
}

@media only screen and (max-width: 780px) {
  .p-about__content03 .text p {
    line-height: 1.8;
  }
}

.p-profile__beginning {
  margin-bottom: 9rem;
}

@media only screen and (max-width: 780px) {
  .p-profile__beginning {
    margin-bottom: 5rem;
  }
}

.p-profile__beginning p {
  font-size: 1.9rem;
  text-align: center;
  line-height: 1.9;
}

@media only screen and (max-width: 780px) {
  .p-profile__beginning p {
    font-size: 1.6rem;
  }
}

.p-profile__message {
  margin-bottom: 13.6rem;
  color: #ffffff;
  background-color: #10572F;
}

@media only screen and (max-width: 780px) {
  .p-profile__message {
    margin-bottom: 6rem;
  }
}

.p-profile__message .inner {
  max-width: 1280px;
}

@media only screen and (min-width: 781px) {
  .p-profile__message .img {
    width: 62.8%;
    margin-left: -25%;
  }
}

@media only screen and (max-width: 780px) {
  .p-profile__message .img {
    width: 111%;
    margin: 0 -5.5% 2rem -5.5%;
  }
}

@media only screen and (min-width: 781px) {
  .p-profile__message .text {
    width: 57%;
    padding: 2em 0;
  }
}

@media only screen and (max-width: 780px) {
  .p-profile__message .text {
    padding-bottom: 2rem;
  }
}

.p-profile__message .text h2 {
  margin-bottom: 1.5em;
  font-weight: 500;
}

.p-profile__message .text h2 span {
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  letter-spacing: 0.1em;
  display: inline-block;
}

@media only screen and (max-width: 780px) {
  .p-profile__message .text h2 span {
    display: block;
  }
}

.p-profile__message .text h2 span:before {
  width: 0.6rem;
  height: 0.6rem;
  margin: 0 1em;
  content: "";
  background-color: #ffffff;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  vertical-align: 0.2em;
}

@media only screen and (max-width: 780px) {
  .p-profile__message .text h2 span:before {
    margin: 0 1em 0 0;
  }
}

.p-profile__message .text h3 {
  margin-bottom: 0.8em;
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.2;
}

@media only screen and (max-width: 780px) {
  .p-profile__message .text h3 {
    font-size: 2.4rem;
  }
}

.p-profile__message .text p {
  line-height: 2.625;
}

@media only screen and (max-width: 780px) {
  .p-profile__message .text p {
    line-height: 1.8;
  }
}

.p-profile__message .text .name {
  margin-top: 2.5em;
  letter-spacing: 0.1em;
}

@media only screen and (max-width: 780px) {
  .p-profile__message .text .name {
    margin-top: 1.5em;
  }
}

.p-profile__message .text .name span {
  margin-bottom: 0.28em;
  font-family: "Noto Serif JP", serif;
  font-size: 1.75em;
  font-weight: 500;
  display: block;
}

@media only screen and (max-width: 780px) {
  .p-profile__message .text .name span {
    font-size: 1.5em;
  }
}

.p-profile__staff {
  margin-bottom: 5rem;
}

@media only screen and (max-width: 780px) {
  .p-profile__staff {
    margin-bottom: 6rem;
  }
}

.p-profile__staff h2 {
  margin-bottom: 0.8em;
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  font-weight: 600;
}

@media only screen and (max-width: 780px) {
  .p-profile__staff h2 {
    font-size: 2.4rem;
  }
}

.p-profile__staff h2 span {
  font-size: 1.9rem;
  letter-spacing: 0.1em;
  color: #10572F;
  display: inline-block;
  vertical-align: 0.2em;
}

@media only screen and (max-width: 780px) {
  .p-profile__staff h2 span {
    font-size: 1.6rem;
    display: block;
  }
}

.p-profile__staff h2 span:before {
  width: 0.6rem;
  height: 0.6rem;
  margin: 0 1em;
  content: "";
  background-color: #10572F;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  vertical-align: 0.2em;
}

@media only screen and (max-width: 780px) {
  .p-profile__staff h2 span:before {
    margin: 0 1em 0 0;
  }
}

@media only screen and (min-width: 781px) {
  .p-profile__staff .staff_list {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media only screen and (min-width: 781px) {
  .p-profile__staff .staff_list li {
    width: 32%;
    margin: 0 2% 7.2rem 0;
  }

  .p-profile__staff .staff_list li:nth-child(3n) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 780px) {
  .p-profile__staff .staff_list li+li {
    margin-top: 3rem;
  }
}

.p-profile__staff .staff_list li .photo {
  width: 100%;
  height: auto;
  margin-bottom: 1.5em;
  aspect-ratio: 392/294;
  overflow: hidden;
}

.p-profile__staff .staff_list li .photo>img,
.p-profile__staff .staff_list li .photo>video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media only screen and (max-width: 780px) {
  .p-profile__staff .staff_list li .photo {
    margin-bottom: 1em;
  }
}

.p-profile__staff .staff_list li .text .name {
  font-family: "Noto Serif JP", serif;
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
}

.p-profile__profile {
  margin-bottom: 11.2rem;
  padding: 8.8rem 0;
  background-color: #FAFAFA;
}

@media only screen and (max-width: 780px) {
  .p-profile__profile {
    margin-bottom: 5.6rem;
    padding: 4rem 0;
  }
}

.p-profile__profile table {
  width: 100%;
  max-width: 93.6rem;
  margin: 0 auto;
  letter-spacing: 0.06em;
  border-top: solid 1px #D9D9D9;
}

.p-profile__profile table tbody tr th {
  width: 34%;
  padding: 2em;
  font-weight: 500;
  border-bottom: solid 1px #D9D9D9;
  vertical-align: middle;
}

@media only screen and (max-width: 780px) {
  .p-profile__profile table tbody tr th {
    width: 30%;
    padding: 1em 0;
  }
}

.p-profile__profile table tbody tr td {
  padding: 2em 0;
  border-bottom: solid 1px #D9D9D9;
  vertical-align: middle;
}

@media only screen and (max-width: 780px) {
  .p-profile__profile table tbody tr td {
    padding: 1em 0 1em 1em;
  }
}

.p-profile__group {
  margin-bottom: 16rem;
}

@media only screen and (max-width: 780px) {
  .p-profile__group {
    margin-bottom: 5.6rem;
  }
}

@media only screen and (min-width: 781px) {
  .p-profile__group .headding {
    margin-bottom: 4.8rem;
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
}

@media only screen and (max-width: 780px) {
  .p-profile__group .headding {
    margin-bottom: 3rem;
  }
}

@media only screen and (min-width: 781px) {
  .p-profile__group .headding .midashi02 {
    width: 31.2rem;
    margin-bottom: 0;
  }
}

@media only screen and (min-width: 781px) {
  .p-profile__group .headding p {
    width: calc(100% - 31.2rem);
    line-height: 2.625;
  }
}

@media only screen and (max-width: 780px) {
  .p-profile__group .headding p {
    line-height: 1.8;
  }
}

.p-profile__group .btn {
  margin-top: 4.8rem;
  text-align: center;
}

@media only screen and (max-width: 780px) {
  .p-profile__group .btn {
    margin-top: 3rem;
  }
}

.p-sdgs__beginning {
  margin-bottom: 9.6rem;
}

@media only screen and (max-width: 780px) {
  .p-sdgs__beginning {
    margin-bottom: 5rem;
  }
}

.p-sdgs__beginning p {
  margin-bottom: 2.5em;
  font-size: 1.9rem;
  line-height: 1.89;
  text-align: center;
}

@media only screen and (max-width: 780px) {
  .p-sdgs__beginning p {
    font-size: 1.6rem;
  }
}

.p-sdgs__beginning .sdgs_logo {
  width: 60.4rem;
  max-width: 90%;
  margin: 0 auto;
}

.p-sdgs__list {
  margin-bottom: 8rem;
  padding: 8rem 0;
  background-color: #FAFAFA;
}

@media only screen and (max-width: 780px) {
  .p-sdgs__list {
    margin-bottom: 4rem;
    padding: 4rem 0;
  }
}

.p-sdgs__list .goal_list>li {
  border-bottom: solid 1px #D9D9D9;
}

@media only screen and (min-width: 781px) {
  .p-sdgs__list .goal_list>li {
    margin-bottom: 6.4rem;
    padding-bottom: 6.4rem;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}

@media only screen and (max-width: 780px) {
  .p-sdgs__list .goal_list>li {
    margin-bottom: 3rem;
    padding-bottom: 3rem;
  }
}

.p-sdgs__list .goal_list>li:first-child .text p {
  line-height: 2.625;
}

@media only screen and (max-width: 780px) {
  .p-sdgs__list .goal_list>li:first-child .text p {
    line-height: 1.8;
  }
}

.p-sdgs__list .goal_list>li:last-child {
  margin-bottom: 0;
}

@media only screen and (min-width: 781px) {
  .p-sdgs__list .goal_list>li .text {
    width: 49%;
  }
}

@media only screen and (max-width: 780px) {
  .p-sdgs__list .goal_list>li .text {
    margin-bottom: 3rem;
  }
}

@media only screen and (min-width: 781px) {
  .p-sdgs__list .goal_list>li .text .midashi01 {
    margin-bottom: 0.8em;
  }
}

@media only screen and (min-width: 781px) {
  .p-sdgs__list .goal_list>li .text .midashi01 span {
    margin-bottom: 1.26em;
  }
}

.p-sdgs__list .goal_list>li .text p {
  line-height: 1.8;
}

.p-sdgs__list .goal_list>li .text p+ul {
  margin-top: 1.5em;
}

@media only screen and (min-width: 781px) {
  .p-sdgs__list .goal_list>li dl {
    width: 49%;
  }
}

.p-sdgs__list .goal_list>li dl dt {
  padding: 0.84em;
  font-size: 1.9rem;
  font-weight: 500;
  text-align: center;
  background-color: #EFEFEF;
}

@media only screen and (max-width: 780px) {
  .p-sdgs__list .goal_list>li dl dt {
    font-size: 1.6rem;
  }
}

.p-sdgs__list .goal_list>li dl dd {
  padding: 4rem 0;
  background-color: #ffffff;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: center;
  justify-content: center;
}

@media only screen and (max-width: 780px) {
  .p-sdgs__list .goal_list>li dl dd {
    padding: 2rem 0;
  }
}

.p-sdgs__list .goal_list>li dl dd .goal {
  width: 50%;
  padding: 0 3rem;
}

@media only screen and (max-width: 780px) {
  .p-sdgs__list .goal_list>li dl dd .goal {
    padding: 0 1.5rem;
  }
}

.p-sdgs__list .goal_list>li dl dd .goal+.goal {
  border-left: dashed 1px #D9D9D9;
}

.p-sdgs__list .goal_list>li dl dd .goal .logo {
  width: 16rem;
  max-width: 100%;
  margin: 0 auto 1.5em auto;
}

.p-sdgs__list .goal_list>li dl dd .goal p {
  font-size: 1.9rem;
  font-weight: 500;
  text-align: center;
}

@media only screen and (max-width: 780px) {
  .p-sdgs__list .goal_list>li dl dd .goal p {
    font-size: 1.6rem;
  }
}

.p-sdgs__ahead {
  margin-bottom: 11.2rem;
}

@media only screen and (max-width: 780px) {
  .p-sdgs__ahead {
    margin-bottom: 5.6rem;
  }
}

.p-sdgs__ahead p {
  font-size: 1.9rem;
  line-height: 1.89;
  text-align: center;
}

@media only screen and (max-width: 780px) {
  .p-sdgs__ahead p {
    font-size: 1.6rem;
  }
}

.p-privacy__content {
  margin-bottom: 11.2rem;
}

@media only screen and (max-width: 780px) {
  .p-privacy__content {
    margin-bottom: 5.6rem;
  }
}

.p-privacy__content .inner>*:last-child {
  margin-bottom: 0 !important;
}

.p-privacy__content h2 {
  margin-bottom: 0.75em;
  font-size: 3.3rem;
  font-weight: 500;
}

@media only screen and (max-width: 780px) {
  .p-privacy__content h2 {
    font-size: 2.4rem;
  }
}

.p-privacy__content h2+h3 {
  margin-top: 3em;
}

.p-privacy__content h3 {
  margin-bottom: 0.88em;
  padding-bottom: 0.5em;
  font-size: 1.8rem;
  font-weight: 500;
  border-bottom: solid 1px #D9D9D9;
}

@media only screen and (max-width: 780px) {
  .p-privacy__content h3 {
    font-size: 1.6rem;
  }
}

.p-privacy__content h3+table {
  margin-top: 2em;
}

.p-privacy__content h4 {
  margin-bottom: 0.3em;
  font-weight: 700;
}

.p-privacy__content h4.circle {
  margin-bottom: 1em;
  padding-left: 1.5em;
  font-weight: 500;
}

.p-privacy__content h4.circle:before {
  width: 1em;
  height: 1em;
  margin: 0 0.5em 0 -1.5em;
  content: "";
  background-color: #2B2B2B;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  vertical-align: -0.05em;
}

.p-privacy__content p {
  margin-bottom: 2em;
  line-height: 1.68;
}

.p-privacy__content p.mb4 {
  margin-bottom: 4em;
}

.p-privacy__content p+h3 {
  margin-top: 3em;
}

.p-privacy__content p+table {
  margin-top: -1em;
}

.p-privacy__content table {
  width: 80.8rem;
  max-width: 100%;
  margin-bottom: 1.5em;
}

.p-privacy__content table.w100 {
  width: 100%;
}

.p-privacy__content table.w100 thead tr th:first-child {
  width: 42.5%;
}

.p-privacy__content table.w100 tbody tr td:first-child {
  width: 42.5%;
}

.p-privacy__content table+h3 {
  margin-top: 2.5em;
}

.p-privacy__content table thead tr th {
  padding: 1em;
  font-weight: 500;
  text-align: center;
  background-color: #EFEFEF;
  border: solid 1px #D9D9D9;
}

.p-privacy__content table thead tr:first-child {
  width: 35.6%;
}

.p-privacy__content table tbody tr td {
  padding: 1em 1.5em;
  border: solid 1px #D9D9D9;
  vertical-align: top;
}

.p-privacy__content table tbody tr td:first-child {
  width: 35.6%;
}

.p-privacy__content ol {
  margin-bottom: 2em;
}

.p-privacy__content ol.alpha {
  padding-left: 1em;
  list-style: lower-alpha outside;
}

.p-privacy__content ol>li+li {
  margin-top: 1em;
}

.p-privacy__content ol>li>*:last-child {
  margin-bottom: 0 !important;
}

.p-news .pagenation_area {
  margin-top: 8rem;
  margin-bottom: 16rem;
}

@media only screen and (max-width: 780px) {
  .p-news .pagenation_area {
    margin-top: 4rem;
    margin-bottom: 8rem;
  }
}

.p-news__list h2 {
  margin-bottom: 2em;
  font-size: 2.8rem;
  font-weight: 500;
}

@media only screen and (max-width: 780px) {
  .p-news__list h2 {
    font-size: 2rem;
  }
}

.p-news__list .news_list li {
  padding: 2em 0;
  border-bottom: solid 1px #DDDDDD;
}

@media only screen and (max-width: 780px) {
  .p-news__list .news_list li {
    padding: 1.3em 0;
  }
}

.p-news__list .news_list li:first-child {
  padding-top: 0;
}

.p-news__list .news_list li a {
  display: block;
}

@media only screen and (min-width: 781px) {
  .p-news__list .news_list li a:hover p {
    color: #10572F;
  }
}

.p-news__list .news_list li a .date {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #ADADAD;
  display: inline-block;
}

.p-news__list .news_list li a .date:after {
  width: 1px;
  height: 1em;
  margin: 0 1em;
  content: "";
  background-color: #DDDDDD;
  display: inline-block;
  vertical-align: 0;
}

.p-news__list .news_list li a .cate {
  display: inline-block;
}

@media only screen and (max-width: 780px) {
  .p-news__list .news_list li a .cate {
    font-size: 1.4rem;
  }
}

.p-news__list .news_list li a .cate span {
  letter-spacing: 0.1em;
  display: inline-block;
}

.p-news__list .news_list li a p {
  margin-top: 0.5em;
  letter-spacing: 0.1em;
}

.p-news__post .inner {
  max-width: 101.6rem;
}

.p-column .pagenation_area {
  margin-top: 8rem;
  margin-bottom: 16rem;
}

@media only screen and (max-width: 780px) {
  .p-column .pagenation_area {
    margin-top: 4rem;
    margin-bottom: 8rem;
  }
}

.p-column .sidebar-menu .new dl dd ul li a {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: flex-start;
  align-items: flex-start;
}

@media only screen and (min-width: 781px) {
  .p-column .sidebar-menu .new dl dd ul li a img {
    -webkit-transition: transform 0.3s;
    transition: transform 0.3s;
  }

  .p-column .sidebar-menu .new dl dd ul li a:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

.p-column .sidebar-menu .new dl dd ul li a .text {
  width: 43.1%;
  margin-right: 4.7%;
}

.p-column .sidebar-menu .new dl dd ul li a .text p {
  color: #2B2B2B !important;
}

.p-column .sidebar-menu .new dl dd ul li a .img {
  width: 52.2%;
  height: auto;
  aspect-ratio: 184/104;
}

.p-column__list h2 {
  margin-bottom: 2em;
  font-size: 2.8rem;
  font-weight: 500;
}

@media only screen and (max-width: 780px) {
  .p-column__list h2 {
    font-size: 2rem;
  }
}

@media only screen and (min-width: 781px) {
  .p-column__list ul {
    display: -webkit-flex;
    display: flex;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}

@media only screen and (min-width: 781px) {
  .p-column__list ul li {
    width: 48.5%;
    margin-bottom: 3em;
  }
}

@media only screen and (max-width: 780px) {
  .p-column__list ul li+li {
    margin-top: 2rem;
  }
}

.p-column__list ul li a {
  width: 100%;
  height: 100%;
  display: block;
}

@media only screen and (min-width: 781px) {
  .p-column__list ul li a img {
    -webkit-transition: transform 0.3s;
    transition: transform 0.3s;
  }

  .p-column__list ul li a:hover img {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
}

.p-column__list ul li a .img {
  width: 100%;
  height: auto;
  aspect-ratio: 392/221;
}

.p-column__list ul li a .text {
  padding: 2em 1em;
}

@media only screen and (max-width: 780px) {
  .p-column__list ul li a .text {
    padding: 0.75em;
  }
}

.p-column__list ul li a .text p {
  font-family: "Noto Serif JP", serif;
  font-size: 1.9rem;
  font-weight: 500;
  line-height: 1.26;
}

@media only screen and (max-width: 780px) {
  .p-column__list ul li a .text p {
    font-size: 1.6rem;
  }
}

.p-column__list ul li a .text .meta {
  margin-top: 1em;
}

.p-column__list ul li a .text .meta .date {
  font-family: "Poppins", sans-serif;
  font-size: 1.4rem;
  letter-spacing: 0.1em;
  color: #ADADAD;
  display: inline-block;
}

.p-column__list ul li a .text .meta .date:after {
  width: 1px;
  height: 1em;
  margin: 0 1em;
  content: "";
  background-color: #DDDDDD;
  display: inline-block;
  vertical-align: 0;
}

.p-column__list ul li a .text .meta .cate {
  display: inline-block;
}

@media only screen and (max-width: 780px) {
  .p-column__list ul li a .text .meta .cate {
    font-size: 1.4rem;
  }
}

.p-column__list ul li a .text .meta .cate span {
  letter-spacing: 0.1em;
  display: inline-block;
}

.p-column__post .inner {
  max-width: 101.6rem;
}

.wp_post_headding {
  margin-bottom: 7.2rem;
}

.wp_post_headding h1 {
  margin-bottom: 1em;
  font-family: "Noto Serif JP", serif;
  font-size: 3.3rem;
  font-weight: 500;
}

@media only screen and (max-width: 780px) {
  .wp_post_headding h1 {
    font-size: 2.4rem;
  }
}

.wp_post_headding .date {
  margin-bottom: 2em;
  font-family: "Poppins", sans-serif;
  letter-spacing: 0.1em;
  color: #ADADAD;
  display: block;
}

@media only screen and (max-width: 780px) {
  .wp_post_headding .date {
    font-size: 1.3rem;
  }
}

.wp_post_headding .cate {
  letter-spacing: -0.4em;
}

.wp_post_headding .cate>* {
  display: inline-block;
  letter-spacing: normal;
}

.wp_post_headding .cate span {
  margin: 0 1em 1em 0;
  padding: 0.5em 2em;
  letter-spacing: 0.1em;
  background-color: #EFEFEF;
  -webkit-border-radius: 99px;
  -moz-border-radius: 99px;
  border-radius: 99px;
}

@media only screen and (max-width: 780px) {
  .wp_post_headding .cate span {
    font-size: 1.2rem;
  }
}

.wp_post_headding .icatch {
  margin-top: 2em;
}

@media only screen and (max-width: 780px) {
  .wp_post_headding .icatch {
    margin-top: 1em;
  }
}

.wp_post_footer {
  margin-top: 8.5rem;
  margin-bottom: 16rem;
  padding-top: 7.2rem;
  border-top: solid 1px #D9D9D9;
}

@media only screen and (max-width: 780px) {
  .wp_post_footer {
    margin-top: 4rem;
    margin-bottom: 8rem;
    padding-top: 3rem;
  }
}

.wp_post_footer .post-navigation {
  display: -webkit-flex;
  display: flex;
}

@media only screen and (min-width: 781px) {
  .wp_post_footer .post-navigation {
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-align-items: center;
    align-items: center;
  }
}

@media only screen and (max-width: 780px) {
  .wp_post_footer .post-navigation {
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 780px) {
  .wp_post_footer .post-navigation .nav-list {
    width: 100%;
    padding-top: 2rem;
    text-align: center;
    -webkit-order: 3;
    order: 3;
  }
}

@media only screen and (max-width: 780px) {

  .wp_post_footer .post-navigation .nav-previous,
  .wp_post_footer .post-navigation .nav-next {
    width: 50%;
  }
}

.wp_post_footer .post-navigation .nav-previous a,
.wp_post_footer .post-navigation .nav-next a {
  font-weight: 500;
}

@media only screen and (max-width: 780px) {

  .wp_post_footer .post-navigation .nav-previous a,
  .wp_post_footer .post-navigation .nav-next a {
    font-size: 1.3rem;
  }
}

.wp_post_footer .post-navigation .nav-previous a:before,
.wp_post_footer .post-navigation .nav-previous a:after,
.wp_post_footer .post-navigation .nav-next a:before,
.wp_post_footer .post-navigation .nav-next a:after {
  width: 1.5em;
  height: 1.5em;
  background-image: url("../img/icon_arrow05.webp");
  -webkit-background-size: cover;
  background-size: cover;
  display: inline-block;
  vertical-align: -0.25em;
}

@media only screen and (max-width: 780px) {
  .wp_post_footer .post-navigation .nav-previous {
    -webkit-order: 1;
    order: 1;
  }
}

.wp_post_footer .post-navigation .nav-previous a:before {
  margin-right: 1rem;
  content: "";
  -webkit-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

@media only screen and (max-width: 780px) {
  .wp_post_footer .post-navigation .nav-next {
    text-align: right;
    -webkit-order: 2;
    order: 2;
  }
}

.wp_post_footer .post-navigation .nav-next a:after {
  margin-left: 1rem;
  content: "";
}

.p-contact__beginning {
  margin-bottom: 12.8rem;
}

@media only screen and (max-width: 780px) {
  .p-contact__beginning {
    margin-bottom: 6.4rem;
  }
}

.p-contact__beginning p {
  margin-bottom: 2.5em;
  text-align: center;
  line-height: 1.8;
}

@media only screen and (max-width: 780px) {
  .p-contact__beginning p {
    text-align: left;
  }
}

.p-contact__beginning .tel {
  max-width: 101.6rem;
  margin: 0 auto;
  padding: 2.5em;
  text-align: center;
  border: solid 1px #D9D9D9;
}

@media only screen and (max-width: 780px) {
  .p-contact__beginning .tel {
    padding: 1.5em;
  }
}

.p-contact__beginning .tel p {
  margin-bottom: 0.47em;
  font-size: 1.9rem;
}

@media only screen and (max-width: 780px) {
  .p-contact__beginning .tel p {
    font-size: 1.6rem;
    text-align: center;
  }
}

.p-contact__beginning .tel a .num {
  font-family: "Noto Serif JP", serif;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.175;
  color: #10572F;
}

@media only screen and (max-width: 780px) {
  .p-contact__beginning .tel a .num {
    font-size: 1.7rem;
  }
}

.p-contact__beginning .tel a .num span {
  margin-left: 0.25em;
  font-size: 1.7em;
  display: inline-block;
  vertical-align: -0.1em;
}

.p-contact__beginning .tel .time {
  margin-top: 0.3em;
  font-size: 1.3rem;
}

.p-contact__consultation {
  padding: 10.4rem 0 11.2rem 0;
  background-color: #FAFAFA;
}

@media only screen and (max-width: 780px) {
  .p-contact__consultation {
    padding: 5rem 0 6rem 0;
  }
}

.p-contact__consultation h2 {
  margin-bottom: 1.2em;
  font-family: "Noto Serif JP", serif;
  font-size: 3.3rem;
  font-weight: 600;
  text-align: center;
}

@media only screen and (max-width: 780px) {
  .p-contact__consultation h2 {
    font-size: 2.4rem;
  }
}

.p-contact__consultation h2:after {
  width: 6em;
  height: 1px;
  margin: 1em auto 0 auto;
  content: "";
  background-color: #D9D9D9;
  display: block;
}

.p-contact__consultation ul {
  margin-bottom: 2em;
}

@media only screen and (min-width: 781px) {
  .p-contact__consultation ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: center;
    justify-content: center;
  }
}

.p-contact__consultation ul li {
  width: 28.8rem;
  margin: 0 0.75em;
  padding: 1em;
  text-align: center;
  color: #10572F;
  background-color: #ffffff;
  border: solid 1px #10572F;
}

@media only screen and (max-width: 780px) {
  .p-contact__consultation ul li {
    margin: 0 auto;
  }

  .p-contact__consultation ul li+li {
    margin-top: 2rem;
  }
}

.p-contact__consultation p {
  text-align: center;
}

.p-contact__flow {
  padding-bottom: 13.6rem;
  background-color: #FAFAFA;
}

@media only screen and (max-width: 780px) {
  .p-contact__flow {
    padding-bottom: 6rem;
  }
}

.p-contact__flow ol {
  counter-reset: num;
}

@media only screen and (min-width: 781px) {
  .p-contact__flow ol {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}

@media only screen and (max-width: 780px) {
  .p-contact__flow ol {
    max-width: 40rem;
    margin: 0 auto;
  }
}

.p-contact__flow ol li {
  counter-increment: num;
}

@media only screen and (min-width: 781px) {
  .p-contact__flow ol li {
    width: 23.5%;
  }
}

@media only screen and (max-width: 780px) {
  .p-contact__flow ol li {
    padding-bottom: 1rem;
    position: relative;
  }

  .p-contact__flow ol li:after {
    margin-left: -1rem;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 1.6rem 1.05rem 0 1.05rem;
    border-color: #D9D9D9 transparent transparent transparent;
    position: absolute;
    top: 100%;
    left: 50%;
  }

  .p-contact__flow ol li+li {
    margin-top: 3rem;
  }
}

.p-contact__flow ol li .fig {
  margin-bottom: 1em;
  padding: 4rem;
  text-align: center;
  background-color: #ffffff;
  position: relative;
}

.p-contact__flow ol li .fig:before {
  width: 1.68em;
  height: 1.68em;
  content: counter(num);
  font-family: "Noto Serif JP", serif;
  font-size: 1.9rem;
  font-weight: 600;
  text-align: center;
  line-height: 1.68;
  color: #ffffff;
  background-color: #10572F;
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (min-width: 781px) {
  .p-contact__flow ol li .fig:after {
    margin-top: -1rem;
    content: "";
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 1.05rem 0 1.05rem 1.6rem;
    border-color: transparent transparent transparent #D9D9D9;
    position: absolute;
    top: 50%;
    left: 100%;
  }
}

.p-contact__flow ol li .fig img {
  width: 8rem;
}

.p-contact__flow ol li p {
  text-align: center;
}

@media only screen and (max-width: 780px) {
  .p-contact__flow ol li:last-child:after {
    content: none !important;
  }
}

@media only screen and (min-width: 781px) {
  .p-contact__flow ol li:last-child .fig:after {
    content: none !important;
  }
}

.p-contact__form {
  margin-bottom: 16rem;
  padding-bottom: 10.4rem;
  background-color: #FAFAFA;
}

@media only screen and (max-width: 780px) {
  .p-contact__form {
    margin-bottom: 8rem;
    padding-bottom: 5rem;
  }
}

.p-contact__form .inner {
  padding: 8.8rem 4rem;
  background-color: #ffffff;
}

@media only screen and (max-width: 780px) {
  .p-contact__form .inner {
    padding: 4rem 2rem;
  }
}

.p-contact__form table {
  width: 100%;
  max-width: 101.6rem;
  margin: 0 auto 5.6rem auto;
}

@media only screen and (max-width: 780px) {
  .p-contact__form table {
    display: block;
  }
}

@media only screen and (max-width: 780px) {
  .p-contact__form table tbody {
    display: block;
  }
}

@media only screen and (max-width: 780px) {
  .p-contact__form table tbody tr {
    display: block;
  }
}

.p-contact__form table tbody tr th {
  width: 40%;
  padding-bottom: 2em;
  font-weight: 500;
  vertical-align: top;
}

@media only screen and (max-width: 780px) {
  .p-contact__form table tbody tr th {
    width: 100%;
    padding-bottom: 1em;
    display: block;
  }
}

.p-contact__form table tbody tr th span {
  font-size: 0.8125em;
}

.p-contact__form table tbody tr th span.ninni {
  margin-left: 1em;
  color: #D9D9D9;
  display: inline-block;
}

.p-contact__form table tbody tr th span.hissu {
  margin-left: 1em;
  color: #CBBE88;
  display: inline-block;
}

.p-contact__form table tbody tr th span.annotation {
  font-weight: 400;
  display: block;
}

.p-contact__form table tbody tr td {
  padding-bottom: 2em;
  vertical-align: top;
}

@media only screen and (max-width: 780px) {
  .p-contact__form table tbody tr td {
    display: block;
  }
}

@media only screen and (min-width: 781px) {
  .p-contact__form table tbody tr td .checkbox {
    margin-bottom: -1.5rem;
    letter-spacing: -0.4em;
  }

  .p-contact__form table tbody tr td .checkbox>* {
    display: inline-block;
    letter-spacing: normal;
  }

  .p-contact__form table tbody tr td .checkbox>label {
    min-width: 50%;
    margin-bottom: 1.5rem;
  }
}

@media only screen and (max-width: 780px) {
  .p-contact__form table tbody tr td .checkbox>label {
    display: block;
  }

  .p-contact__form table tbody tr td .checkbox>label+label {
    margin-top: 1rem;
  }
}

.p-contact__form .submit {
  text-align: center;
}

.p-contact__confirm {
  margin-bottom: 16rem;
}

@media only screen and (max-width: 780px) {
  .p-contact__confirm {
    margin-bottom: 8rem;
  }
}

.p-contact__confirm h2 {
  margin-bottom: 3em;
  font-size: 2.3rem;
  text-align: center;
}

@media only screen and (max-width: 780px) {
  .p-contact__confirm h2 {
    margin-bottom: 2em;
    font-size: 1.8rem;
  }
}

.p-contact__confirm .confirm_box {
  max-width: 101.6rem;
  margin: 0 auto 8rem auto;
}

@media only screen and (max-width: 780px) {
  .p-contact__confirm .confirm_box {
    margin-bottom: 4rem;
  }
}

.p-contact__confirm .confirm_box li {
  border-bottom: solid 1px #EFEFEF;
}

@media only screen and (min-width: 781px) {
  .p-contact__confirm .confirm_box li {
    padding: 1.5rem 0;
    display: -webkit-flex;
    display: flex;
  }
}

@media only screen and (max-width: 780px) {
  .p-contact__confirm .confirm_box li {
    padding: 1em 0;
  }
}

.p-contact__confirm .confirm_box li .item_name {
  padding: 1em;
  font-weight: 500;
  background-color: #FAFAFA;
}

@media only screen and (min-width: 781px) {
  .p-contact__confirm .confirm_box li .item_name {
    width: 28.8rem;
    text-align: center;
  }
}

@media only screen and (min-width: 781px) {
  .p-contact__confirm .confirm_box li .value {
    width: calc(100% - 28.8rem);
    padding: 0 1.5em;
    -webkit-align-self: center;
    align-self: center;
  }
}

@media only screen and (max-width: 780px) {
  .p-contact__confirm .confirm_box li .value {
    padding: 1em;
  }
}

.p-contact__confirm .submit {
  text-align: center;
}

.p-contact__confirm .submit .back {
  margin-top: 1.5em;
}

.p-contact__confirm .submit .back a {
  width: 39.2rem;
  max-width: 100%;
  padding: 1.26em;
  font-size: 1.9rem;
  font-weight: 500;
  text-align: center;
  background-color: #EFEFEF;
  display: inline-block;
}

.p-contact__confirm .submit .back a:hover {
  opacity: 0.6;
}

.p-contact__thanks {
  margin-bottom: 16rem;
}

@media only screen and (max-width: 780px) {
  .p-contact__thanks {
    margin-bottom: 8rem;
  }
}

.p-contact__thanks h2 {
  margin-bottom: 1em;
  font-family: "Noto Serif JP", serif;
  font-size: 3.3rem;
  font-weight: 600;
  text-align: center;
  color: #10572F;
}

@media only screen and (max-width: 780px) {
  .p-contact__thanks h2 {
    font-size: 2.4rem;
  }
}

.p-contact__thanks p {
  margin-bottom: 2.5em;
  text-align: center;
  line-height: 1.8;
}

@media only screen and (max-width: 780px) {
  .p-contact__thanks p {
    text-align: left;
  }
}

.p-contact__thanks .tel {
  max-width: 101.6rem;
  margin: 0 auto;
  padding: 2.5em;
  text-align: center;
  border: solid 1px #D9D9D9;
}

@media only screen and (max-width: 780px) {
  .p-contact__thanks .tel {
    padding: 1.5em;
  }
}

.p-contact__thanks .tel p {
  margin-bottom: 0.47em;
  font-size: 1.9rem;
}

@media only screen and (max-width: 780px) {
  .p-contact__thanks .tel p {
    font-size: 1.6rem;
    text-align: center;
  }
}

.p-contact__thanks .tel a .num {
  font-family: "Noto Serif JP", serif;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1.175;
  color: #10572F;
}

@media only screen and (max-width: 780px) {
  .p-contact__thanks .tel a .num {
    font-size: 1.7rem;
  }
}

.p-contact__thanks .tel a .num span {
  margin-left: 0.25em;
  font-size: 1.7em;
  display: inline-block;
  vertical-align: -0.1em;
}

.p-contact__thanks .tel .time {
  margin-top: 0.3em;
  font-size: 1.3rem;
}

.p-contact__thanks .btn {
  margin: 7.2rem;
  text-align: center;
}

@media only screen and (max-width: 780px) {
  .p-contact__thanks .btn {
    margin-top: 3rem;
  }
}

.p-faq__content {
  margin-bottom: 16rem;
}

@media only screen and (max-width: 780px) {
  .p-faq__content {
    margin-bottom: 8rem;
  }
}

.p-faq__content .intro {
  margin-bottom: 4em;
  font-size: 1.9rem;
  line-height: 1.89;
  text-align: center;
}

@media only screen and (max-width: 780px) {
  .p-faq__content .intro {
    margin-bottom: 2em;
    font-size: 1.6rem;
  }
}

.p-faq__content .link {
  margin-bottom: 8.8rem;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (max-width: 780px) {
  .p-faq__content .link {
    margin-bottom: 4rem;
  }
}

.p-faq__content .link li {
  margin: 0 2% 2% 0;
}

@media only screen and (min-width: 781px) {
  .p-faq__content .link li {
    width: 32%;
  }

  .p-faq__content .link li:nth-child(3n) {
    margin-right: 0;
  }
}

@media only screen and (max-width: 780px) {
  .p-faq__content .link li {
    width: 49%;
  }

  .p-faq__content .link li:nth-child(2n) {
    margin-right: 0;
  }
}

.p-faq__content .link li a {
  padding: 0.8em;
  font-family: "Noto Serif JP", serif;
  font-size: 1.9rem;
  letter-spacing: 0.1em;
  text-align: center;
  color: #10572F;
  border: solid 1px #10572F;
  display: block;
}

@media only screen and (min-width: 781px) {
  .p-faq__content .link li a:hover {
    background-color: #EFEFEF;
  }
}

@media only screen and (max-width: 780px) {
  .p-faq__content .link li a {
    font-size: 1.2rem;
  }
}

.p-faq__content .faq_layout02+.faq_layout02 {
  margin-top: 6rem;
}

.p-factoring__beginning {
  margin-bottom: 8.8rem;
  color: #ffffff;
  background-color: #10572F;
}

@media only screen and (max-width: 780px) {
  .p-factoring__beginning {
    margin-bottom: 4.4rem;
    padding-bottom: 4rem;
  }
}

@media only screen and (min-width: 781px) {
  .p-factoring__beginning .content_layout01 .img {
    width: 54%;
    margin-right: -28.4%;
  }
}

@media only screen and (min-width: 781px) {
  .p-factoring__beginning .content_layout01 .text {
    width: 70%;
    padding: 5.5rem 0;
  }
}

.p-factoring__beginning .content_layout01 .text h2 {
  margin-bottom: 0.5em;
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  font-weight: 600;
  line-height: 1.35;
}

@media only screen and (max-width: 780px) {
  .p-factoring__beginning .content_layout01 .text h2 {
    font-size: 2.4rem;
  }
}

.p-factoring__beginning .content_layout01 .text p {
  margin-bottom: 1.73em;
  font-size: 1.9rem;
}

@media only screen and (max-width: 780px) {
  .p-factoring__beginning .content_layout01 .text p {
    font-size: 1.6rem;
  }
}

@media only screen and (max-width: 780px) {
  .p-factoring__beginning .content_layout01 .text .mail {
    text-align: center;
  }
}

.p-factoring__beginning .content_layout01 .text .mail a {
  width: 39.2rem;
  max-width: 100%;
  padding: 1.2em;
  font-weight: 500;
  text-align: center;
  color: #10572F;
  background-color: #CBBE88;
  display: inline-block;
}

@media only screen and (max-width: 780px) {
  .p-factoring__beginning .content_layout01 .text .mail a {
    font-size: 2rem;
  }
}

.p-factoring__beginning .content_layout01 .text .mail a:before {
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.25em;
  content: "";
  background-image: url("../img/icon_mail01.webp");
  -webkit-background-size: cover;
  background-size: cover;
  display: inline-block;
  vertical-align: -0.3em;
}

@media only screen and (min-width: 781px) {
  .p-factoring__beginning .content_layout01 .text .mail a:hover {
    filter: brightness(1.2);
  }
}

.p-factoring__whats {
  margin-bottom: 11.2rem;
}

@media only screen and (max-width: 780px) {
  .p-factoring__whats {
    margin-bottom: 5.6rem;
  }
}

.p-factoring__whats .box {
  background-color: #FAFAFA;
}

@media only screen and (min-width: 781px) {
  .p-factoring__whats .box {
    margin-bottom: 2em;
    padding: 3em 2em;
    -webkit-border-radius: 0.8rem;
    -moz-border-radius: 0.8rem;
    border-radius: 0.8rem;
  }
}

@media only screen and (max-width: 780px) {
  .p-factoring__whats .box {
    width: 111%;
    margin: 0 -5.5% 2em -5.5%;
    padding: 2em 0;
  }
}

.p-factoring__whats .box h3 {
  margin-bottom: 2em;
  font-size: 1.9rem;
  font-weight: 500;
  text-align: center;
}

@media only screen and (max-width: 780px) {
  .p-factoring__whats .box h3 {
    width: 90%;
    margin: 0 auto 2em auto;
    font-size: 1.6rem;
  }
}

.p-factoring__whats .box h3:after {
  width: 9em;
  height: 1px;
  margin: 1.3em auto 0 auto;
  content: "";
  background-color: #10572F;
  display: block;
}

.p-factoring__whats .box p {
  line-height: 2.625;
}

@media only screen and (max-width: 780px) {
  .p-factoring__whats .box p {
    width: 90%;
    margin: 0 auto;
    line-height: 1.8;
  }
}

.p-factoring__whats .box ul {
  margin-bottom: 2em;
}

@media only screen and (min-width: 781px) {
  .p-factoring__whats .box ul {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}

@media only screen and (max-width: 780px) {
  .p-factoring__whats .box ul {
    width: 90%;
    margin: 0 auto 2em auto;
  }
}

.p-factoring__whats .box ul li {
  padding: 4.25em 2em 2em 2em;
  background-color: #ffffff;
  border: solid 1px #D9D9D9;
  position: relative;
  overflow: hidden;
}

@media only screen and (min-width: 781px) {
  .p-factoring__whats .box ul li {
    width: 48.6%;
  }
}

@media only screen and (max-width: 780px) {
  .p-factoring__whats .box ul li:nth-child(2) {
    margin-top: 1.5em;
  }
}

.p-factoring__whats .box ul li:nth-child(2) h4 {
  color: #ffffff;
  background-color: #10572F;
}

.p-factoring__whats .box ul li h4 {
  padding: 0.5em 1em;
  font-size: 1.9rem;
  font-weight: 500;
  background-color: #EFEFEF;
  -webkit-border-radius: 0 0 0.8rem 0;
  -moz-border-radius: 0 0 0.8rem 0;
  border-radius: 0 0 0.8rem 0;
  position: absolute;
  top: 0;
  left: 0;
}

@media only screen and (max-width: 780px) {
  .p-factoring__whats .box ul li h4 {
    font-size: 1.6rem;
  }
}

.p-factoring__whats .box ul li .fig {
  margin-bottom: 1.5em;
}

.p-factoring__whats .box ul li p {
  font-size: 1.9rem;
  font-weight: 500;
  text-align: center;
  line-height: 1.5;
}

@media only screen and (max-width: 780px) {
  .p-factoring__whats .box ul li p {
    font-size: 1.6rem;
  }
}

.p-factoring__whats .box ul li p b {
  font-weight: 500;
  color: #10572F;
}

.p-factoring__whats .bottom_text h3 {
  margin-bottom: 1em;
  font-family: "Noto Serif JP", serif;
  font-size: 2.3rem;
  font-weight: 600;
  text-align: center;
}

@media only screen and (max-width: 780px) {
  .p-factoring__whats .bottom_text h3 {
    font-size: 1.6rem;
  }
}

.p-factoring__whats .bottom_text p {
  line-height: 2;
  text-align: center;
}

@media only screen and (max-width: 780px) {
  .p-factoring__whats .bottom_text p {
    text-align: left;
  }
}

.p-factoring__feature {
  margin-bottom: 13.6rem;
}

@media only screen and (max-width: 780px) {
  .p-factoring__feature {
    margin-bottom: 6rem;
  }
}

@media only screen and (min-width: 781px) {
  .p-factoring__feature ul {
    margin-bottom: 0.5em;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

@media only screen and (max-width: 780px) {
  .p-factoring__feature ul {
    margin-bottom: 4rem;
  }
}

@media only screen and (min-width: 781px) {
  .p-factoring__feature ul li {
    width: 47.7%;
    margin-bottom: 4em;
  }
}

@media only screen and (max-width: 780px) {
  .p-factoring__feature ul li+li {
    margin-top: 3rem;
  }
}

.p-factoring__feature ul li .img {
  margin-bottom: 1.5em;
}

.p-factoring__feature ul li .text {
  text-align: center;
}

.p-factoring__feature ul li .text h3 {
  margin-bottom: 0.5em;
  font-family: "Noto Serif JP", serif;
  font-size: 3.3rem;
  font-weight: 600;
  color: #10572F;
}

@media only screen and (max-width: 780px) {
  .p-factoring__feature ul li .text h3 {
    font-size: 2.4rem;
  }
}

.p-factoring__feature ul li .text p {
  line-height: 2;
}

.p-factoring__feature .box {
  max-width: 101.6rem;
  margin: 0 auto;
  padding: 2.5em 3em;
  background-color: #FAFAFA;
  border: solid 1px #D9D9D9;
}

.p-factoring__feature .box h3 {
  margin-bottom: 0.7em;
  padding-left: 0.7em;
  font-family: "Noto Serif JP", serif;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.3;
  border-left: solid 0.4rem #10572F;
}

@media only screen and (max-width: 780px) {
  .p-factoring__feature .box h3 {
    font-size: 1.6rem;
  }
}

.p-factoring__feature .box p {
  line-height: 2;
}

.p-factoring__flow {
  margin-bottom: 11.2rem;
  padding: 9.6rem 0;
  background-color: #FAFAFA;
}

@media only screen and (max-width: 780px) {
  .p-factoring__flow {
    margin-bottom: 5.6rem;
    padding: 4rem 0;
  }
}

.p-factoring__flow ol {
  max-width: 112rem;
  margin: 0 0 0 auto;
  border-left: solid 1px #10572F;
}

.p-factoring__flow ol>li {
  padding-left: 9.6rem;
  position: relative;
}

@media only screen and (max-width: 780px) {
  .p-factoring__flow ol>li {
    padding-left: 3rem;
  }
}

.p-factoring__flow ol>li+li {
  margin-top: 1.5em;
}

.p-factoring__flow ol>li:before {
  width: 7.1rem;
  height: 0;
  content: "";
  border-bottom: dashed 1px #10572F;
  position: absolute;
  top: 3.5em;
  left: 0;
}

@media only screen and (max-width: 780px) {
  .p-factoring__flow ol>li:before {
    width: 2rem;
    top: 2.2em;
  }
}

.p-factoring__flow ol>li:last-child:after {
  width: 10px;
  height: calc(100% - 4.063em);
  content: "";
  background-color: #FAFAFA;
  position: absolute;
  bottom: 0;
  left: -5px;
  z-index: 10;
}

@media only screen and (max-width: 780px) {
  .p-factoring__flow ol>li:last-child:after {
    height: calc(100% - 2.763em);
  }
}

.p-factoring__flow ol>li .text {
  padding: 2.5em 3em;
  background-color: #ffffff;
  -webkit-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
  border-radius: 0.8rem;
}

@media only screen and (max-width: 780px) {
  .p-factoring__flow ol>li .text {
    padding: 1.5em;
  }
}

.p-factoring__flow ol>li .text:before {
  width: 1.126em;
  height: 1.126em;
  margin-top: -0.563em;
  margin-left: -0.563em;
  content: "";
  background-color: #10572F;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: 3.5em;
  left: 0;
}

@media only screen and (max-width: 780px) {
  .p-factoring__flow ol>li .text:before {
    top: 2.2em;
  }
}

.p-factoring__flow ol>li .text .num {
  margin-bottom: 1.26em;
  font-family: "Noto Serif JP", serif;
  font-size: 1.9rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: #10572F;
}

@media only screen and (max-width: 780px) {
  .p-factoring__flow ol>li .text .num {
    font-size: 1.6rem;
  }
}

.p-factoring__flow ol>li .text h3 {
  margin-bottom: 0.57em;
  font-family: "Noto Serif JP", serif;
  font-size: 2.8rem;
  font-weight: 600;
  color: #10572F;
}

@media only screen and (max-width: 780px) {
  .p-factoring__flow ol>li .text h3 {
    font-size: 2rem;
  }
}

.p-factoring__flow ol>li .text p {
  line-height: 2;
}

.p-factoring__flow ol>li .text .note {
  margin-top: 2.5em;
  padding-top: 2.5em;
  border-top: solid 1px #D9D9D9;
}

.p-factoring__flow ol>li .text .note h4 {
  margin-bottom: 1.3em;
  font-size: 1.9rem;
  font-weight: 500;
}

@media only screen and (max-width: 780px) {
  .p-factoring__flow ol>li .text .note h4 {
    font-size: 1.6rem;
  }
}

@media only screen and (min-width: 781px) {
  .p-factoring__flow ol>li .text .note .in {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}

@media only screen and (min-width: 781px) {
  .p-factoring__flow ol>li .text .note .in>* {
    width: 48%;
  }
}

.p-factoring__flow ol>li .text .note .in ul {
  padding: 1.5em 2em;
  border: solid 1px #D9D9D9;
  -webkit-border-radius: 0.4rem;
  -moz-border-radius: 0.4rem;
  border-radius: 0.4rem;
}

@media only screen and (max-width: 780px) {
  .p-factoring__flow ol>li .text .note .in ul {
    padding: 1em;
  }
}

.p-factoring__flow ol>li .text .note .in ul li {
  font-weight: 500;
}

.p-factoring__type {
  margin-bottom: 12rem;
}

@media only screen and (max-width: 780px) {
  .p-factoring__type {
    margin-bottom: 6rem;
  }
}

.p-factoring__type h3 {
  margin-bottom: 1.7em;
  font-family: "Noto Serif JP", serif;
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
}

@media only screen and (max-width: 780px) {
  .p-factoring__type h3 {
    font-size: 2rem;
  }
}

@media only screen and (min-width: 781px) {
  .p-factoring__type ul {
    margin-bottom: 4.5em;
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}

@media only screen and (max-width: 780px) {
  .p-factoring__type ul {
    margin-bottom: 2.5em;
  }
}

.p-factoring__type ul li {
  overflow: hidden;
  border: solid 1px #D9D9D9;
  -webkit-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
  border-radius: 0.8rem;
}

@media only screen and (min-width: 781px) {
  .p-factoring__type ul li {
    width: 49%;
  }
}

@media only screen and (max-width: 780px) {
  .p-factoring__type ul li:nth-child(2) {
    margin-top: 2rem;
  }
}

.p-factoring__type ul li:nth-child(2) h4 {
  color: #ffffff;
  background-color: #10572F;
}

.p-factoring__type ul li h4 {
  padding: 0.85em 0 0.57em 0;
  font-family: "Noto Serif JP", serif;
  font-size: 2.8rem;
  font-weight: 600;
  text-align: center;
  background-color: #CBBE88;
}

@media only screen and (max-width: 780px) {
  .p-factoring__type ul li h4 {
    font-size: 2rem;
  }
}

.p-factoring__type ul li .fig {
  width: 11.2rem;
  margin: 2em auto 1.5em auto;
}

@media only screen and (max-width: 780px) {
  .p-factoring__type ul li .fig {
    width: 8rem;
    margin: 1.5em auto;
  }
}

.p-factoring__type ul li p {
  padding: 0 2em 2.5em 2em;
  line-height: 2;
}

@media only screen and (max-width: 780px) {
  .p-factoring__type ul li p {
    padding: 0 1.5em 1.5em 1.5em;
  }
}

.p-factoring__type table {
  width: 100%;
  table-layout: fixed;
}

.p-factoring__type table thead th {
  padding: 1.1em;
  font-size: 1.9rem;
  font-weight: 500;
  text-align: center;
  background-color: #EFEFEF;
  border: solid 1px #D9D9D9;
}

@media only screen and (max-width: 780px) {
  .p-factoring__type table thead th {
    padding: 1em 0.5em;
    font-size: 1.5rem;
  }
}

.p-factoring__type table thead th:first-child {
  background: none;
  border: none;
}

.p-factoring__type table tbody tr td {
  padding: 1.68em;
  font-size: 1.9rem;
  font-weight: 500;
  border: solid 1px #D9D9D9;
}

@media only screen and (max-width: 780px) {
  .p-factoring__type table tbody tr td {
    padding: 1em 0.5em;
    font-size: 1.5rem;
  }
}

.p-factoring__differences {
  margin-bottom: 8.8rem;
  padding: 10.4rem 0 8.8rem 0;
  background-color: #FAFAFA;
}

@media only screen and (max-width: 780px) {
  .p-factoring__differences {
    margin-bottom: 5rem;
    padding: 4rem 0;
  }
}

.p-factoring__differences .box {
  padding: 8rem;
  background-color: #ffffff;
}

@media only screen and (max-width: 780px) {
  .p-factoring__differences .box {
    padding: 2rem;
  }
}

.p-factoring__differences .box table {
  width: 100%;
  max-width: 101.6rem;
  margin: 0 auto;
}

.p-factoring__differences .box table thead tr th {
  padding: 1em 2em 1em 1em;
  font-size: 1.9rem;
  font-weight: 500;
  text-align: center;
}

@media only screen and (max-width: 780px) {
  .p-factoring__differences .box table thead tr th {
    padding: 0.5em 1.5em 0.5em 0.5em;
    font-size: 1.5rem;
  }
}

.p-factoring__differences .box table thead tr th:first-child {
  width: 20%;
}

.p-factoring__differences .box table thead tr th:nth-child(2) {
  position: relative;
  z-index: 1;
}

.p-factoring__differences .box table thead tr th:nth-child(2):after {
  width: calc(100% - 1em);
  height: 100%;
  content: "";
  background-color: #EFEFEF;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.p-factoring__differences .box table thead tr th:last-child {
  width: 38.5%;
  padding: 1em;
  color: #ffffff;
  background-color: #10572F;
  border-left: solid 0.6rem #10572F;
  border-right: solid 0.6rem #10572F;
}

@media only screen and (max-width: 780px) {
  .p-factoring__differences .box table thead tr th:last-child {
    padding: 0.5em;
    border-left-width: 0.3rem;
    border-right-width: 0.3rem;
  }
}

.p-factoring__differences .box table tbody tr th {
  width: 20%;
  padding: 1.5em 1.8em;
  font-size: 1.9rem;
  font-weight: 500;
  border-right: dashed 1px #D9D9D9;
  border-bottom: solid 1px #D9D9D9;
}

@media only screen and (max-width: 780px) {
  .p-factoring__differences .box table tbody tr th {
    padding: 0.5em 0.8em 0.5em 0;
    font-size: 1.5rem;
  }
}

.p-factoring__differences .box table tbody tr td {
  padding: 1.5em 2.5em 1.5em 1.5em;
  font-size: 1.9rem;
  font-weight: 500;
  text-align: center;
  border-bottom: solid 1px #D9D9D9;
}

@media only screen and (max-width: 780px) {
  .p-factoring__differences .box table tbody tr td {
    padding: 0.5em 1.5em 0.5em 0.5em;
    font-size: 1.5rem;
  }
}

.p-factoring__differences .box table tbody tr td:last-child {
  width: 38.5%;
  padding: 1.5em;
  color: #10572F;
  border-bottom-color: #10572F;
  border-left: solid 0.6rem #10572F;
  border-right: solid 0.6rem #10572F;
}

@media only screen and (max-width: 780px) {
  .p-factoring__differences .box table tbody tr td:last-child {
    padding: 0.5em;
    border-left-width: 0.3rem;
    border-right-width: 0.3rem;
  }
}

.p-factoring__differences .box table tbody tr:first-child th {
  border-top: solid 1px #D9D9D9;
}

.p-factoring__differences .box table tbody tr:first-child td {
  border-top: solid 1px #D9D9D9;
}

.p-factoring__differences .box table tbody tr:first-child td:last-of-type {
  border-top-color: #10572F;
}

.p-factoring__differences .box table tbody tr:last-child td:last-child {
  border-bottom-width: 0.6rem;
}

@media only screen and (max-width: 780px) {
  .p-factoring__differences .box table tbody tr:last-child td:last-child {
    border-bottom-width: 0.3rem;
  }
}

.p-factoring__faq {
  margin-bottom: 16rem;
}

@media only screen and (max-width: 780px) {
  .p-factoring__faq {
    margin-bottom: 5.6rem;
  }
}

.p-ma__beginning {
  margin-bottom: 6.4rem;
}

@media only screen and (max-width: 780px) {
  .p-ma__beginning {
    margin-bottom: 4rem;
  }
}

.p-ma__beginning h2 {
  margin-bottom: 0.4em;
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  font-weight: 500;
  text-align: center;
}

@media only screen and (max-width: 780px) {
  .p-ma__beginning h2 {
    font-size: 2.4rem;
  }
}

.p-ma__beginning p {
  margin-bottom: 1.7em;
  font-size: 1.9rem;
  text-align: center;
  line-height: 1.89;
}

@media only screen and (max-width: 780px) {
  .p-ma__beginning p {
    font-size: 1.6rem;
  }
}

.p-ma__beginning .mail {
  text-align: center;
}

.p-ma__beginning .mail a {
  width: 39.2rem;
  max-width: 100%;
  padding: 1.2em;
  font-weight: 500;
  text-align: center;
  color: #10572F;
  background-color: #CBBE88;
  display: inline-block;
}

@media only screen and (max-width: 780px) {
  .p-ma__beginning .mail a {
    font-size: 2rem;
  }
}

.p-ma__beginning .mail a:before {
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.25em;
  content: "";
  background-image: url("../img/icon_mail01.webp");
  -webkit-background-size: cover;
  background-size: cover;
  display: inline-block;
  vertical-align: -0.3em;
}

@media only screen and (min-width: 781px) {
  .p-ma__beginning .mail a:hover {
    filter: brightness(1.2);
  }
}

.p-ma__whats {
  margin-bottom: 12rem;
  padding: 9.6rem 0;
  background-color: #FAFAFA;
}

@media only screen and (max-width: 780px) {
  .p-ma__whats {
    margin-bottom: 6rem;
    padding: 4rem 0;
  }
}

.p-ma__whats .midashi01+p {
  text-align: center;
  line-height: 2.625;
}

@media only screen and (max-width: 780px) {
  .p-ma__whats .midashi01+p {
    line-height: 1.8;
  }
}

.p-ma__whats .ma_image {
  width: 60rem;
  max-width: 90%;
  margin: 3em auto 2.5em auto;
}

@media only screen and (max-width: 780px) {
  .p-ma__whats .ma_image {
    margin: 1.5em auto;
  }
}

.p-ma__whats p.strong {
  font-family: "Noto Serif JP", serif;
  font-size: 2.3rem;
  font-weight: 600;
  text-align: center;
}

@media only screen and (max-width: 780px) {
  .p-ma__whats p.strong {
    font-size: 1.6rem;
  }
}

.p-ma__whats p.strong b {
  font-weight: 600;
  color: #10572F;
}

.p-ma__whats p+.box {
  margin-top: 8rem;
}

@media only screen and (max-width: 780px) {
  .p-ma__whats p+.box {
    margin-top: 3rem;
  }
}

.p-ma__whats .box {
  background-color: #ffffff;
}

@media only screen and (min-width: 781px) {
  .p-ma__whats .box {
    -webkit-border-radius: 0.8rem;
    -moz-border-radius: 0.8rem;
    border-radius: 0.8rem;
    overflow: hidden;
  }
}

@media only screen and (max-width: 780px) {
  .p-ma__whats .box {
    width: 111%;
    margin: 0 -5.5%;
  }
}

.p-ma__whats .box+.box {
  margin-top: 4rem;
}

@media only screen and (max-width: 780px) {
  .p-ma__whats .box+.box {
    margin-top: 2.5rem;
  }
}

.p-ma__whats .box .headding {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

@media only screen and (max-width: 780px) {
  .p-ma__whats .box .headding {
    padding: 1em;
    color: #ffffff;
    background-color: #10572F;
  }
}

.p-ma__whats .box .headding h3 {
  padding: 0.6em 0.85em;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}

@media only screen and (min-width: 781px) {
  .p-ma__whats .box .headding h3 {
    font-size: 2.8rem;
    color: #ffffff;
    background-color: #10572F;
    -webkit-border-radius: 0 0 0.8rem 0;
    -moz-border-radius: 0 0 0.8rem 0;
    border-radius: 0 0 0.8rem 0;
  }
}

@media only screen and (max-width: 780px) {
  .p-ma__whats .box .headding h3 {
    padding: 0;
    font-size: 2rem;
  }
}

.p-ma__whats .box .headding p {
  margin-left: 1.4em;
  font-size: 2.3rem;
  font-weight: 500;
}

@media only screen and (max-width: 780px) {
  .p-ma__whats .box .headding p {
    margin-left: 1em;
    font-size: 1.5rem;
  }
}

.p-ma__whats .box .content {
  padding: 2em 2.5em 2.5em 2.5em;
}

@media only screen and (max-width: 780px) {
  .p-ma__whats .box .content {
    padding: 1em;
  }
}

.p-ma__whats .box .content p {
  margin-bottom: 2em;
}

@media only screen and (max-width: 780px) {
  .p-ma__whats .box .content p {
    margin-bottom: 1em;
  }
}

.p-ma__whats .box .content table {
  width: 100%;
}

.p-ma__whats .box .content table thead tr th {
  padding: 1em;
  font-size: 1.9rem;
  font-weight: 500;
  text-align: center;
  background-color: #EFEFEF;
  border: solid 1px #D9D9D9;
}

@media only screen and (max-width: 780px) {
  .p-ma__whats .box .content table thead tr th {
    padding: 0.5em;
    font-size: 1.5rem;
  }
}

.p-ma__whats .box .content table thead tr th:first-child {
  width: 20%;
}

.p-ma__whats .box .content table thead tr th:last-child {
  width: 50%;
}

.p-ma__whats .box .content table tbody tr td {
  padding: 2.2em 1.8em;
  font-weight: 500;
  border: solid 1px #D9D9D9;
}

@media only screen and (max-width: 780px) {
  .p-ma__whats .box .content table tbody tr td {
    padding: 0.5em;
    font-size: 1.3rem;
  }
}

.p-ma__whats .box .content table tbody tr td:first-child {
  width: 20%;
}

.p-ma__whats .box .content table tbody tr td:last-child {
  width: 50%;
  font-weight: 400;
}

.p-ma__whats .scheme {
  position: relative;
  background-color: #ffffff;
}

@media only screen and (min-width: 781px) {
  .p-ma__whats .scheme {
    max-width: 111.4rem;
    margin: 10.4rem auto 4rem auto;
    padding: 5.75em 3em 3em 3em;
    -webkit-border-radius: 0.8rem;
    -moz-border-radius: 0.8rem;
    border-radius: 0.8rem;
  }
}

@media only screen and (max-width: 780px) {
  .p-ma__whats .scheme {
    width: 111%;
    margin: 2rem -5.5%;
    padding: 1em;
  }
}

.p-ma__whats .scheme dt {
  padding: 1em;
  text-align: center;
  background-color: #CBBE88;
  -webkit-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
  border-radius: 0.8rem;
}

@media only screen and (min-width: 781px) {
  .p-ma__whats .scheme dt {
    width: 80.8rem;
    max-width: 90%;
    position: absolute;
    top: 0;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
  }
}

@media only screen and (max-width: 780px) {
  .p-ma__whats .scheme dt {
    margin-bottom: 5rem;
    position: relative;
  }
}

.p-ma__whats .scheme dt:after {
  margin-left: -1.2rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2.1rem 1.2rem 0 1.2rem;
  border-color: #CBBE88 transparent transparent transparent;
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
}

.p-ma__whats .scheme dd {
  margin-bottom: 2.25em;
  padding-bottom: 2.25em;
  border-bottom: solid 1px #D9D9D9;
}

@media only screen and (max-width: 780px) {
  .p-ma__whats .scheme dd {
    margin-bottom: 1em;
    padding-bottom: 1em;
  }
}

.p-ma__whats .scheme dd:last-of-type {
  margin-bottom: 0;
}

@media only screen and (min-width: 781px) {
  .p-ma__whats .scheme dd {
    display: -webkit-flex;
    display: flex;
    -webkit-align-items: center;
    align-items: center;
  }
}

.p-ma__whats .scheme dd h3 {
  padding-left: 0.7em;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
  line-height: 1.2;
  border-left: solid 0.4rem #10572F;
}

@media only screen and (min-width: 781px) {
  .p-ma__whats .scheme dd h3 {
    width: 20.8rem;
    font-size: 2.3rem;
  }
}

@media only screen and (max-width: 780px) {
  .p-ma__whats .scheme dd h3 {
    margin-bottom: 0.5em;
    font-size: 1.8rem;
  }
}

@media only screen and (min-width: 781px) {
  .p-ma__whats .scheme dd p {
    width: calc(100% - 20.8rem);
  }
}

.p-ma__support {
  margin-bottom: 14rem;
}

@media only screen and (max-width: 780px) {
  .p-ma__support {
    margin-bottom: 7rem;
  }
}

.p-ma__support .content_layout02+.content_layout02 {
  margin-top: 5.6rem;
}

@media only screen and (max-width: 780px) {
  .p-ma__support .content_layout02+.content_layout02 {
    margin-top: 3rem;
  }
}

.p-ma__support .content_layout02 .text h3 {
  margin-bottom: 0.7em;
  font-family: "Noto Serif JP", serif;
  font-size: 3.3rem;
  font-weight: 600;
}

@media only screen and (max-width: 780px) {
  .p-ma__support .content_layout02 .text h3 {
    font-size: 2.4rem;
  }
}

.p-ma__support .content_layout02 .text h3 b {
  font-weight: 600;
  color: #10572F;
}

.p-ma__support .content_layout02 .text p {
  line-height: 2.625;
}

@media only screen and (max-width: 780px) {
  .p-ma__support .content_layout02 .text p {
    line-height: 1.8;
  }
}

.p-ma__support .attention {
  max-width: 101.6rem;
  margin: 10rem auto 0 auto;
  padding: 2.5em 3em;
  background-color: #FAFAFA;
  border: solid 1px #D9D9D9;
}

@media only screen and (max-width: 780px) {
  .p-ma__support .attention {
    margin-top: 3rem;
    padding: 1.5em;
  }
}

.p-ma__support .attention h3 {
  margin-bottom: 0.7em;
  padding-left: 0.7em;
  font-family: "Noto Serif JP", serif;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.2;
  border-left: solid 0.4rem #10572F;
}

@media only screen and (max-width: 780px) {
  .p-ma__support .attention h3 {
    font-size: 1.8rem;
  }
}

.p-ma__support .attention p {
  margin-bottom: 1.5em;
}

.p-ma__faq {
  margin-bottom: 16rem;
}

@media only screen and (max-width: 780px) {
  .p-ma__faq {
    margin-bottom: 5.6rem;
  }
}

.p-loan__beginning {
  margin-bottom: 15rem;
}

@media only screen and (max-width: 780px) {
  .p-loan__beginning {
    margin-bottom: 7rem;
  }
}

.p-loan__beginning h2 {
  margin-bottom: 0.4em;
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  font-weight: 500;
  text-align: center;
}

@media only screen and (max-width: 780px) {
  .p-loan__beginning h2 {
    font-size: 2.4rem;
  }
}

.p-loan__beginning p {
  margin-bottom: 1.7em;
  font-size: 1.9rem;
  text-align: center;
  line-height: 1.89;
}

@media only screen and (max-width: 780px) {
  .p-loan__beginning p {
    font-size: 1.6rem;
  }
}

.p-loan__beginning .mail {
  text-align: center;
}

.p-loan__beginning .mail a {
  width: 39.2rem;
  max-width: 100%;
  padding: 1.2em;
  font-weight: 500;
  text-align: center;
  color: #10572F;
  background-color: #CBBE88;
  display: inline-block;
}

@media only screen and (max-width: 780px) {
  .p-loan__beginning .mail a {
    font-size: 2rem;
  }
}

.p-loan__beginning .mail a:before {
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.25em;
  content: "";
  background-image: url("../img/icon_mail01.webp");
  -webkit-background-size: cover;
  background-size: cover;
  display: inline-block;
  vertical-align: -0.3em;
}

@media only screen and (min-width: 781px) {
  .p-loan__beginning .mail a:hover {
    filter: brightness(1.2);
  }
}

.p-loan__whats {
  color: #ffffff;
  overflow: hidden;
}

@media only screen and (min-width: 781px) {
  .p-loan__whats {
    margin-bottom: 11.2rem;
    padding: 0 0 11.4rem 0;
    position: relative;
    z-index: 1;
  }

  .p-loan__whats:before {
    width: 100%;
    max-width: 179.2rem;
    height: 100%;
    content: "";
    background-color: #10572F;
    position: absolute;
    top: 7.2rem;
    left: 0;
    z-index: -1;
  }
}

@media only screen and (max-width: 780px) {
  .p-loan__whats {
    margin-bottom: 5.6rem;
    padding: 4rem 0;
    background-color: #10572F;
  }
}

.p-loan__whats .content_layout01 {
  margin-bottom: 7.2rem;
}

@media only screen and (max-width: 780px) {
  .p-loan__whats .content_layout01 {
    margin-bottom: 3rem;
  }
}

@media only screen and (min-width: 781px) {
  .p-loan__whats .content_layout01 .img {
    width: 74.2%;
    margin-right: -26.2%;
  }
}

@media only screen and (min-width: 781px) {
  .p-loan__whats .content_layout01 .text {
    width: 46%;
    padding-top: 15.5rem;
  }
}

@media only screen and (min-width: 781px) {
  .p-loan__whats .content_layout01 .text .midashi01 {
    margin-bottom: 0.6em;
  }
}

.p-loan__whats .content_layout01 .text p {
  line-height: 2.625;
}

@media only screen and (max-width: 780px) {
  .p-loan__whats .content_layout01 .text p {
    line-height: 1.8;
  }
}

.p-loan__whats p.strong {
  font-family: "Noto Serif JP", serif;
  font-size: 2.3rem;
  font-weight: 600;
  text-align: center;
}

@media only screen and (max-width: 780px) {
  .p-loan__whats p.strong {
    font-size: 1.6rem;
  }
}

.p-loan__whats p.strong+.box {
  margin-top: 3em;
}

@media only screen and (max-width: 780px) {
  .p-loan__whats p.strong+.box {
    margin-top: 2em;
  }
}

.p-loan__whats .box {
  color: #2B2B2B;
  background-color: #ffffff;
}

@media only screen and (min-width: 781px) {
  .p-loan__whats .box {
    -webkit-border-radius: 0.8rem;
    -moz-border-radius: 0.8rem;
    border-radius: 0.8rem;
    overflow: hidden;
  }
}

@media only screen and (max-width: 780px) {
  .p-loan__whats .box {
    width: 111%;
    margin: 0 -5.5%;
  }
}

.p-loan__whats .box+.box {
  margin-top: 4rem;
}

@media only screen and (max-width: 780px) {
  .p-loan__whats .box+.box {
    margin-top: 2.5rem;
  }
}

.p-loan__whats .box+p.strong {
  margin-top: 3em;
}

@media only screen and (max-width: 780px) {
  .p-loan__whats .box+p.strong {
    margin-top: 2em;
  }
}

.p-loan__whats .box .headding {
  display: -webkit-flex;
  display: flex;
  -webkit-align-items: center;
  align-items: center;
}

@media only screen and (max-width: 780px) {
  .p-loan__whats .box .headding {
    padding: 1em;
    color: #10572F;
    background-color: #CBBE88;
  }
}

.p-loan__whats .box .headding h3 {
  padding: 0.6em 0.85em;
  font-family: "Noto Serif JP", serif;
  font-weight: 600;
}

@media only screen and (min-width: 781px) {
  .p-loan__whats .box .headding h3 {
    font-size: 2.8rem;
    color: #10572F;
    background-color: #CBBE88;
    -webkit-border-radius: 0 0 0.8rem 0;
    -moz-border-radius: 0 0 0.8rem 0;
    border-radius: 0 0 0.8rem 0;
  }
}

@media only screen and (max-width: 780px) {
  .p-loan__whats .box .headding h3 {
    padding: 0;
    font-size: 2rem;
  }
}

.p-loan__whats .box .headding p {
  margin-left: 1.4em;
  font-size: 2.3rem;
  font-weight: 500;
}

@media only screen and (max-width: 780px) {
  .p-loan__whats .box .headding p {
    margin-left: 1em;
    font-size: 1.5rem;
  }
}

.p-loan__whats .box .content {
  padding: 2em 2.5em 2.5em 2.5em;
}

@media only screen and (max-width: 780px) {
  .p-loan__whats .box .content {
    padding: 1em;
  }
}

.p-loan__whats .box .content p {
  margin-bottom: 2em;
}

@media only screen and (max-width: 780px) {
  .p-loan__whats .box .content p {
    margin-bottom: 1em;
  }
}

.p-loan__whats .box .content table {
  width: 100%;
}

.p-loan__whats .box .content table thead tr th {
  padding: 1em;
  font-size: 1.9rem;
  font-weight: 500;
  text-align: center;
  background-color: #EFEFEF;
  border: solid 1px #D9D9D9;
}

@media only screen and (max-width: 780px) {
  .p-loan__whats .box .content table thead tr th {
    padding: 0.5em;
    font-size: 1.5rem;
  }
}

.p-loan__whats .box .content table thead tr th:first-child {
  width: 20%;
}

.p-loan__whats .box .content table thead tr th:last-child {
  width: 50%;
}

.p-loan__whats .box .content table tbody tr td {
  padding: 2.2em 1.8em;
  font-weight: 500;
  border: solid 1px #D9D9D9;
}

@media only screen and (max-width: 780px) {
  .p-loan__whats .box .content table tbody tr td {
    padding: 0.5em;
    font-size: 1.3rem;
  }
}

.p-loan__whats .box .content table tbody tr td:first-child {
  width: 20%;
}

.p-loan__whats .box .content table tbody tr td:last-child {
  width: 50%;
  font-weight: 400;
}

.p-loan__support {
  margin-bottom: 14rem;
}

@media only screen and (max-width: 780px) {
  .p-loan__support {
    margin-bottom: 7rem;
  }
}

.p-loan__support .content_layout02+.content_layout02 {
  margin-top: 5.6rem;
}

@media only screen and (max-width: 780px) {
  .p-loan__support .content_layout02+.content_layout02 {
    margin-top: 3rem;
  }
}

.p-loan__support .content_layout02 .text h3 {
  margin-bottom: 0.7em;
  font-family: "Noto Serif JP", serif;
  font-size: 3.3rem;
  font-weight: 600;
}

@media only screen and (max-width: 780px) {
  .p-loan__support .content_layout02 .text h3 {
    font-size: 2.4rem;
  }
}

.p-loan__support .content_layout02 .text h3 b {
  font-weight: 600;
  color: #10572F;
}

.p-loan__support .content_layout02 .text p {
  line-height: 2.625;
}

@media only screen and (max-width: 780px) {
  .p-loan__support .content_layout02 .text p {
    line-height: 1.8;
  }
}

.p-loan__support .attention {
  max-width: 101.6rem;
  margin: 10rem auto 0 auto;
  padding: 2.5em 3em;
  background-color: #FAFAFA;
  border: solid 1px #D9D9D9;
}

@media only screen and (max-width: 780px) {
  .p-loan__support .attention {
    margin-top: 3rem;
    padding: 1.5em;
  }
}

.p-loan__support .attention h3 {
  margin-bottom: 0.7em;
  padding-left: 0.7em;
  font-family: "Noto Serif JP", serif;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.2;
  border-left: solid 0.4rem #10572F;
}

@media only screen and (max-width: 780px) {
  .p-loan__support .attention h3 {
    font-size: 1.8rem;
  }
}

.p-loan__support .attention p {
  margin-bottom: 1.5em;
}

.p-loan__faq {
  margin-bottom: 16rem;
}

@media only screen and (max-width: 780px) {
  .p-loan__faq {
    margin-bottom: 5.6rem;
  }
}

.p-finance__beginning {
  margin-bottom: 7.3rem;
}

@media only screen and (max-width: 780px) {
  .p-finance__beginning {
    margin-bottom: 4rem;
  }
}

.p-finance__beginning h2 {
  margin-bottom: 0.4em;
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  font-weight: 500;
  text-align: center;
}

@media only screen and (max-width: 780px) {
  .p-finance__beginning h2 {
    font-size: 2.4rem;
  }
}

.p-finance__beginning p {
  margin-bottom: 1.7em;
  font-size: 1.9rem;
  text-align: center;
  line-height: 1.89;
}

@media only screen and (max-width: 780px) {
  .p-finance__beginning p {
    font-size: 1.6rem;
  }
}

.p-finance__content01 {
  margin-bottom: 9.6rem;
}

@media only screen and (max-width: 780px) {
  .p-finance__content01 {
    margin-bottom: 5rem;
  }
}

.p-finance__content01 .headding {
  margin-bottom: 10rem;
  padding: 6.4rem 0;
  color: #ffffff;
  background-color: #10572F;
  position: relative;
}

@media only screen and (max-width: 780px) {
  .p-finance__content01 .headding {
    margin-bottom: 6rem;
    padding: 3rem 0;
  }
}

.p-finance__content01 .headding:after {
  margin-left: -2.3rem;
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3.6rem 2.3rem 0 2.3rem;
  border-color: #10572F transparent transparent transparent;
  position: absolute;
  top: 100%;
  left: 50%;
}

@media only screen and (max-width: 780px) {
  .p-finance__content01 .headding:after {
    margin-left: -1.5rem;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 2.5rem 1.5rem 0 1.5rem;
    border-color: #10572F transparent transparent transparent;
  }
}

.p-finance__content01 .headding h2 {
  margin-bottom: 0.6em;
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  font-weight: 600;
  text-align: center;
}

@media only screen and (max-width: 780px) {
  .p-finance__content01 .headding h2 {
    font-size: 2.4rem;
  }
}

.p-finance__content01 .headding h2 span {
  color: #CBBE88;
}

.p-finance__content01 .headding p {
  line-height: 2.625;
  text-align: center;
}

@media only screen and (max-width: 780px) {
  .p-finance__content01 .headding p {
    line-height: 1.8;
  }
}

.p-finance__content01 .content_layout02 .text h3 {
  margin-bottom: 1.5em;
  font-weight: 500;
}

.p-finance__content01 .content_layout02 .text h3 span {
  font-family: "Noto Serif JP", serif;
  font-size: 1.9rem;
  letter-spacing: 0.1em;
  color: #10572F;
  display: inline-block;
  vertical-align: 0;
}

@media only screen and (max-width: 780px) {
  .p-finance__content01 .content_layout02 .text h3 span {
    font-size: 1.6rem;
    display: block;
  }
}

.p-finance__content01 .content_layout02 .text h3 span:before {
  width: 0.6rem;
  height: 0.6rem;
  margin: 0 1em;
  content: "";
  background-color: #10572F;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  vertical-align: 0.2em;
}

@media only screen and (max-width: 780px) {
  .p-finance__content01 .content_layout02 .text h3 span:before {
    margin: 0 1em 0 0;
  }
}

.p-finance__content01 .content_layout02 .text h4 {
  margin-bottom: 0.8em;
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  font-weight: 500;
}

@media only screen and (max-width: 780px) {
  .p-finance__content01 .content_layout02 .text h4 {
    font-size: 2.4rem;
  }
}

.p-finance__content01 .content_layout02 .text p {
  line-height: 2.625;
}

@media only screen and (max-width: 780px) {
  .p-finance__content01 .content_layout02 .text p {
    line-height: 1.8;
  }
}

.p-finance__content02 {
  margin-bottom: 9.6rem;
  padding: 9.6rem 0;
  background-color: #FAFAFA;
}

@media only screen and (max-width: 780px) {
  .p-finance__content02 {
    margin-bottom: 5rem;
    padding: 5rem 0;
  }
}

.p-finance__content02 p {
  text-align: center;
}

.p-finance__content02 p.strong {
  font-family: "Noto Serif JP", serif;
  font-size: 2.3rem;
  font-weight: 600;
}

@media only screen and (max-width: 780px) {
  .p-finance__content02 p.strong {
    font-size: 1.8rem;
  }
}

.p-finance__content02 ol {
  margin: 3em 0 2.5em 0;
}

@media only screen and (min-width: 781px) {
  .p-finance__content02 ol {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}

.p-finance__content02 ol li {
  padding: 1.5em 1.5em 2em 1.5em;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  -webkit-text-shadow: 0 0 2rem rgba(0, 0, 0, 0.04);
  -moz-text-shadow: 0 0 2rem rgba(0, 0, 0, 0.04);
  text-shadow: 0 0 2rem rgba(0, 0, 0, 0.04);
}

@media only screen and (max-width: 780px) {
  .p-finance__content02 ol li {
    padding: 1em 1em 1.5em 1em;
  }
}

.p-finance__content02 ol li:before {
  width: 2em;
  height: 2em;
  margin: -1em 0 0 -1em;
  content: "";
  background-color: #10572F;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
}

@media only screen and (min-width: 781px) {
  .p-finance__content02 ol li {
    width: 32%;
  }
}

@media only screen and (max-width: 780px) {
  .p-finance__content02 ol li+li {
    margin-top: 3rem;
  }
}

.p-finance__content02 ol li .num {
  font-family: "Noto Serif JP", serif;
  font-size: 3.3rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  color: #10572F;
}

@media only screen and (max-width: 780px) {
  .p-finance__content02 ol li .num {
    font-size: 2.4rem;
  }
}

.p-finance__content02 ol li .fig {
  width: 11.2rem;
  margin: 0.5em auto 1em auto;
}

@media only screen and (max-width: 780px) {
  .p-finance__content02 ol li .fig {
    width: 8rem;
  }
}

.p-finance__content02 ol li p {
  font-size: 1.9rem;
  font-weight: 500;
  text-align: center;
}

@media only screen and (max-width: 780px) {
  .p-finance__content02 ol li p {
    font-size: 1.6rem;
  }
}

.p-finance__content03 {
  margin-bottom: 9.6rem;
}

@media only screen and (max-width: 780px) {
  .p-finance__content03 {
    margin-bottom: 5rem;
  }
}

.p-finance__content03 .content_layout02 .text h2 {
  margin-bottom: 1.5em;
  font-weight: 500;
}

.p-finance__content03 .content_layout02 .text h2 span {
  font-family: "Noto Serif JP", serif;
  font-size: 1.9rem;
  letter-spacing: 0.1em;
  color: #10572F;
  display: inline-block;
  vertical-align: 0;
}

@media only screen and (max-width: 780px) {
  .p-finance__content03 .content_layout02 .text h2 span {
    font-size: 1.6rem;
    display: block;
  }
}

.p-finance__content03 .content_layout02 .text h2 span:before {
  width: 0.6rem;
  height: 0.6rem;
  margin: 0 1em;
  content: "";
  background-color: #10572F;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  vertical-align: 0.2em;
}

@media only screen and (max-width: 780px) {
  .p-finance__content03 .content_layout02 .text h2 span:before {
    margin: 0 1em 0 0;
  }
}

.p-finance__content03 .content_layout02 .text h3 {
  margin-bottom: 0.8em;
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  font-weight: 500;
}

@media only screen and (max-width: 780px) {
  .p-finance__content03 .content_layout02 .text h3 {
    font-size: 2.4rem;
  }
}

.p-finance__content03 .content_layout02 .text p {
  line-height: 2.625;
}

@media only screen and (max-width: 780px) {
  .p-finance__content03 .content_layout02 .text p {
    line-height: 1.8;
  }
}

.p-finance__support {
  margin-bottom: 9.6rem;
  padding: 8.8rem 0;
  background-color: #10572F;
}

@media only screen and (max-width: 780px) {
  .p-finance__support {
    margin-bottom: 5rem;
    padding: 4rem 0;
  }
}

@media only screen and (min-width: 781px) {
  .p-finance__support ol {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}

.p-finance__support ol li {
  margin-bottom: 1.5em;
  background-color: #ffffff;
  position: relative;
  overflow: hidden;
  -webkit-text-shadow: 0 0 2rem rgba(0, 0, 0, 0.04);
  -moz-text-shadow: 0 0 2rem rgba(0, 0, 0, 0.04);
  text-shadow: 0 0 2rem rgba(0, 0, 0, 0.04);
}

@media only screen and (min-width: 781px) {
  .p-finance__support ol li {
    padding: 1.5em 1em 16rem 1em;
  }
}

@media only screen and (max-width: 780px) {
  .p-finance__support ol li {
    margin-bottom: 1em;
    padding: 1em 1em 10rem 1em;
  }
}

.p-finance__support ol li:before {
  width: 2em;
  height: 2em;
  margin: -1em 0 0 -1em;
  content: "";
  background-color: #10572F;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: absolute;
  top: 0;
  left: 50%;
}

@media only screen and (min-width: 781px) {
  .p-finance__support ol li {
    width: 32%;
  }
}

@media only screen and (max-width: 780px) {
  .p-finance__support ol li+li {
    margin-top: 3rem;
  }
}

.p-finance__support ol li .num {
  font-family: "Noto Serif JP", serif;
  font-size: 3.3rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-align: center;
  color: #10572F;
}

@media only screen and (max-width: 780px) {
  .p-finance__support ol li .num {
    font-size: 2.4rem;
  }
}

.p-finance__support ol li p {
  margin-top: 0.4em;
  font-size: 1.9rem;
  font-weight: 500;
  text-align: center;
}

@media only screen and (max-width: 780px) {
  .p-finance__support ol li p {
    font-size: 1.6rem;
  }
}

.p-finance__support ol li .img {
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
}

@media only screen and (min-width: 781px) {
  .p-finance__support ol li .img {
    height: 13.6rem;
  }
}

@media only screen and (max-width: 780px) {
  .p-finance__support ol li .img {
    height: 8rem;
  }
}

.p-finance__flow {
  margin-bottom: 5rem;
}

@media only screen and (max-width: 780px) {
  .p-finance__flow {
    margin-bottom: 3rem;
  }
}

.p-finance__flow ol {
  margin-top: 5.6rem;
  display: -webkit-flex;
  display: flex;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
}

@media only screen and (min-width: 781px) {
  .p-finance__flow ol {
    -webkit-justify-content: center;
    justify-content: center;
  }
}

@media only screen and (max-width: 780px) {
  .p-finance__flow ol {
    width: 90%;
    margin: 4rem auto 0 auto;
  }
}

.p-finance__flow ol li {
  height: auto;
  aspect-ratio: 1/1;
  background-color: #ffffff;
  border: solid 1px #D9D9D9;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  position: relative;
  z-index: 1;
}

@media only screen and (min-width: 1100px) {
  .p-finance__flow ol li {
    width: 16.33%;
    margin: 0 4.5875% 2em 0;
  }

  .p-finance__flow ol li:nth-child(5n) {
    margin-right: 0;
  }

  .p-finance__flow ol li:nth-child(5n):before {
    content: none;
  }
}

@media only screen and (max-width: 1099px) and (min-width: 781px) {
  .p-finance__flow ol li {
    width: 24%;
    margin: 0 14% 2em 0;
  }

  .p-finance__flow ol li:nth-child(3n) {
    margin-right: 0;
  }

  .p-finance__flow ol li:nth-child(3n):before {
    content: none;
  }
}

@media only screen and (max-width: 780px) {
  .p-finance__flow ol li {
    width: 44%;
    margin: 0 12% 2em 0;
  }

  .p-finance__flow ol li:before {
    content: none !important;
  }

  .p-finance__flow ol li:nth-child(2n) {
    margin-right: 0;
  }
}

.p-finance__flow ol li:before {
  width: 100%;
  height: 1px;
  content: "";
  background-color: #10572F;
  position: absolute;
  top: 50%;
  left: 100%;
  z-index: -1;
}

.p-finance__flow ol li:last-child {
  margin-right: 0;
}

.p-finance__flow ol li:last-child:before {
  content: none;
}

.p-finance__flow ol li .num {
  width: 5.2rem;
  height: auto;
  aspect-ratio: 1/1;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 5.2rem;
  text-align: center;
  color: #ffffff;
  background-color: #10572F;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
}

@media only screen and (max-width: 780px) {
  .p-finance__flow ol li .num {
    width: 4rem;
    font-size: 1.8rem;
    line-height: 4rem;
  }
}

.p-finance__flow ol li .fig {
  width: 36%;
  position: absolute;
  top: 22.5%;
  left: 32%;
}

.p-finance__flow ol li p {
  width: 90%;
  font-size: 1.9rem;
  font-weight: 500;
  text-align: center;
  position: absolute;
  top: 58.5%;
  left: 5%;
}

@media only screen and (max-width: 780px) {
  .p-finance__flow ol li p {
    font-size: 1.6rem;
  }
}

.p-finance__differences {
  margin-bottom: 8.8rem;
  padding: 10.4rem 0 8.8rem 0;
  background-color: #FAFAFA;
}

@media only screen and (max-width: 780px) {
  .p-finance__differences {
    margin-bottom: 5rem;
    padding: 4rem 0;
  }
}

.p-finance__differences .box {
  padding: 8rem;
  background-color: #ffffff;
}

@media only screen and (max-width: 780px) {
  .p-finance__differences .box {
    padding: 2rem;
  }
}

.p-finance__differences .box table {
  width: 100%;
  max-width: 101.6rem;
  margin: 0 auto;
}

.p-finance__differences .box table thead tr td {
  width: 20%;
}

.p-finance__differences .box table thead tr th {
  padding: 1em 2em 1em 1em;
  font-size: 1.9rem;
  font-weight: 500;
  text-align: center;
}

@media only screen and (max-width: 780px) {
  .p-finance__differences .box table thead tr th {
    padding: 0.5em 1.5em 0.5em 0.5em;
    font-size: 1.5rem;
  }
}

.p-finance__differences .box table thead tr th:first-child {
  background: none;
  border: none;
}

.p-finance__differences .box table thead tr th:nth-child(2) {
  position: relative;
  z-index: 1;
}

.p-finance__differences .box table thead tr th:nth-child(2):after {
  width: calc(100% - 1em);
  height: 100%;
  content: "";
  background-color: #EFEFEF;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

.p-finance__differences .box table thead tr th:last-child {
  width: 38.5%;
  padding: 1em;
  color: #ffffff;
  background-color: #10572F;
  border-left: solid 0.6rem #10572F;
  border-right: solid 0.6rem #10572F;
}

@media only screen and (max-width: 780px) {
  .p-finance__differences .box table thead tr th:last-child {
    padding: 0.5em;
    border-left-width: 0.3rem;
    border-right-width: 0.3rem;
  }
}

.p-finance__differences .box table tbody tr th {
  width: 20%;
  padding: 1.5em 1.8em;
  font-size: 1.9rem;
  font-weight: 500;
  border-right: dashed 1px #D9D9D9;
  border-bottom: solid 1px #D9D9D9;
}

@media only screen and (max-width: 780px) {
  .p-finance__differences .box table tbody tr th {
    padding: 0.5em 0.8em 0.5em 0;
    font-size: 1.5rem;
  }
}

.p-finance__differences .box table tbody tr td {
  padding: 1.5em 2.5em 1.5em 1.5em;
  font-size: 1.9rem;
  font-weight: 500;
  text-align: center;
  border-bottom: solid 1px #D9D9D9;
}

@media only screen and (max-width: 780px) {
  .p-finance__differences .box table tbody tr td {
    padding: 0.5em 1.5em 0.5em 0.5em;
    font-size: 1.5rem;
  }
}

.p-finance__differences .box table tbody tr td:last-child {
  width: 38.5%;
  padding: 1.5em;
  color: #10572F;
  border-bottom-color: #10572F;
  border-left: solid 0.6rem #10572F;
  border-right: solid 0.6rem #10572F;
}

@media only screen and (max-width: 780px) {
  .p-finance__differences .box table tbody tr td:last-child {
    padding: 0.5em;
    border-left-width: 0.3rem;
    border-right-width: 0.3rem;
  }
}

.p-finance__differences .box table tbody tr:first-child th {
  border-top: solid 1px #D9D9D9;
}

.p-finance__differences .box table tbody tr:first-child td {
  border-top: solid 1px #D9D9D9;
}

.p-finance__differences .box table tbody tr:first-child td:last-of-type {
  border-top-color: #10572F;
}

.p-finance__differences .box table tbody tr:last-child td:last-child {
  border-bottom-width: 0.6rem;
}

@media only screen and (max-width: 780px) {
  .p-finance__differences .box table tbody tr:last-child td:last-child {
    border-bottom-width: 0.3rem;
  }
}

.p-finance__goal {
  margin-bottom: 11.2rem;
}

@media only screen and (max-width: 780px) {
  .p-finance__goal {
    margin-bottom: 6rem;
  }
}

.p-finance__goal p {
  line-height: 2.625;
  text-align: center;
}

@media only screen and (max-width: 780px) {
  .p-finance__goal p {
    line-height: 1.8;
  }
}

.p-subsidy__beginning {
  margin-bottom: 6.4rem;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__beginning {
    margin-bottom: 4rem;
  }
}

.p-subsidy__beginning h2 {
  margin-bottom: 0.4em;
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  font-weight: 500;
  text-align: center;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__beginning h2 {
    font-size: 2.4rem;
  }
}

.p-subsidy__beginning p {
  margin-bottom: 1.7em;
  font-size: 1.9rem;
  text-align: center;
  line-height: 1.89;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__beginning p {
    font-size: 1.6rem;
  }
}

.p-subsidy__beginning .mail {
  text-align: center;
}

.p-subsidy__beginning .mail a {
  width: 39.2rem;
  max-width: 100%;
  padding: 1.2em;
  font-weight: 500;
  text-align: center;
  color: #10572F;
  background-color: #CBBE88;
  display: inline-block;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__beginning .mail a {
    font-size: 2rem;
  }
}

.p-subsidy__beginning .mail a:before {
  width: 1.5em;
  height: 1.5em;
  margin-right: 0.25em;
  content: "";
  background-image: url("../img/icon_mail01.webp");
  -webkit-background-size: cover;
  background-size: cover;
  display: inline-block;
  vertical-align: -0.3em;
}

@media only screen and (min-width: 781px) {
  .p-subsidy__beginning .mail a:hover {
    filter: brightness(1.2);
  }
}

.p-subsidy__whats {
  margin-bottom: 11.5rem;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__whats {
    margin-bottom: 6rem;
  }
}

.p-subsidy__whats .headding {
  padding: 8rem 0 9.5rem 0;
  background-color: #FAFAFA;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__whats .headding {
    padding: 4rem 0 5rem 0;
  }
}

.p-subsidy__whats .headding p {
  text-align: center;
  line-height: 2.625;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__whats .headding p {
    line-height: 1.8;
  }
}

.p-subsidy__whats .fukidashi {
  width: 90%;
  max-width: 80.8rem;
  margin: -4rem auto 8.5rem auto;
  padding: 1em;
  text-align: center;
  color: #ffffff;
  background-color: #10572F;
  -webkit-border-radius: 0.8rem;
  -moz-border-radius: 0.8rem;
  border-radius: 0.8rem;
  position: relative;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__whats .fukidashi {
    margin-bottom: 4rem;
  }
}

.p-subsidy__whats .fukidashi:after {
  margin-left: -1.2rem;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 2.1rem 1.2rem 0 1.2rem;
  border-color: #10572F transparent transparent transparent;
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__whats .fukidashi:after {
    margin-left: -0.8rem;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 1.5rem 0.8rem 0 0.8rem;
    border-color: #10572F transparent transparent transparent;
  }
}

.p-subsidy__whats .content_layout02+.content_layout02 {
  margin-top: 5.6rem;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__whats .content_layout02+.content_layout02 {
    margin-top: 3rem;
  }
}

.p-subsidy__whats .content_layout02 .text h3 {
  margin-bottom: 1em;
  padding-bottom: 0.7em;
  font-family: "Noto Serif JP", serif;
  font-size: 3.3rem;
  font-weight: 600;
  border-bottom: solid 1px #D9D9D9;
  position: relative;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__whats .content_layout02 .text h3 {
    font-size: 2.4rem;
  }
}

.p-subsidy__whats .content_layout02 .text h3:after {
  width: 8em;
  height: 1px;
  content: "";
  background-color: #10572F;
  position: absolute;
  top: 100%;
  left: 0;
}

.p-subsidy__whats .content_layout02 .text p {
  line-height: 2.625;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__whats .content_layout02 .text p {
    line-height: 1.8;
  }
}

.p-subsidy__whats .table {
  margin-top: 10rem;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__whats .table {
    margin-top: 5rem;
  }
}

.p-subsidy__whats .table table {
  width: 100%;
  table-layout: fixed;
}

.p-subsidy__whats .table table thead tr th {
  padding: 1em;
  font-size: 1.9rem;
  font-weight: 500;
  text-align: center;
  background-color: #EFEFEF;
  border: solid 1px #D9D9D9;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__whats .table table thead tr th {
    font-size: 1.5rem;
  }
}

.p-subsidy__whats .table table tbody tr td {
  padding: 1.6em 2.6em;
  font-size: 1.9rem;
  font-weight: 500;
  border: solid 1px #D9D9D9;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__whats .table table tbody tr td {
    padding: 1em;
    font-size: 1.5rem;
  }
}

.p-subsidy__support {
  margin-bottom: 9.6rem;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__support {
    margin-bottom: 5rem;
  }
}

.p-subsidy__support .bg {
  margin-bottom: 9.3rem;
  padding: 7.7rem 0 6.8rem 0;
  color: #ffffff;
  background-color: #10572F;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__support .bg {
    margin-bottom: 5rem;
    padding: 4rem 0;
  }
}

@media only screen and (min-width: 781px) {
  .p-subsidy__support .support_list {
    display: -webkit-flex;
    display: flex;
    -webkit-justify-content: space-between;
    justify-content: space-between;
  }
}

@media only screen and (min-width: 781px) {
  .p-subsidy__support .support_list li {
    width: 32%;
  }
}

@media only screen and (max-width: 780px) {
  .p-subsidy__support .support_list li+li {
    margin-top: 2rem;
  }
}

.p-subsidy__support .support_list li .img {
  margin-bottom: 1.5em;
}

.p-subsidy__support .support_list li .text {
  text-align: center;
}

.p-subsidy__support .support_list li .text h3 {
  margin-bottom: 0.34em;
  font-size: 2.3rem;
  font-weight: 500;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__support .support_list li .text h3 {
    font-size: 1.8rem;
  }
}

.p-subsidy__support .support_list li .text p {
  font-size: 1.9rem;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__support .support_list li .text p {
    font-size: 1.6rem;
  }
}

.p-subsidy__support .attention {
  max-width: 101.6rem;
  margin: 10rem auto 0 auto;
  padding: 2.5em 3em;
  background-color: #FAFAFA;
  border: solid 1px #D9D9D9;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__support .attention {
    margin-top: 3rem;
    padding: 1.5em;
  }
}

.p-subsidy__support .attention h3 {
  margin-bottom: 0.7em;
  padding-left: 0.7em;
  font-family: "Noto Serif JP", serif;
  font-size: 2.3rem;
  font-weight: 600;
  line-height: 1.2;
  border-left: solid 0.4rem #10572F;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__support .attention h3 {
    font-size: 1.8rem;
  }
}

.p-subsidy__support .attention p {
  margin-bottom: 1.5em;
}

.p-subsidy__differences {
  margin-bottom: 12rem;
  padding: 10.4rem 0 8.8rem 0;
  background-color: #FAFAFA;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__differences {
    margin-bottom: 6rem;
    padding: 4rem 0;
  }
}

.p-subsidy__differences .box {
  padding: 8rem;
  background-color: #ffffff;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__differences .box {
    padding: 2rem;
  }
}

.p-subsidy__differences .box table {
  width: 100%;
  max-width: 101.6rem;
  margin: 0 auto;
  table-layout: fixed;
}

.p-subsidy__differences .box table thead tr th {
  padding: 1em 2em 1em 1em;
  font-size: 1.9rem;
  font-weight: 500;
  text-align: center;
  position: relative;
  z-index: 1;
}

.p-subsidy__differences .box table thead tr th:after {
  width: calc(100% - 1em);
  height: 100%;
  content: "";
  background-color: #EFEFEF;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__differences .box table thead tr th {
    padding: 0.5em 1.5em 0.5em 0.5em;
    font-size: 1.5rem;
  }
}

.p-subsidy__differences .box table thead tr th:first-child {
  width: 20%;
  background: none;
  border: none;
}

.p-subsidy__differences .box table thead tr th:first-child:after {
  content: none;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__differences .box table thead tr th:first-child {
    width: 25%;
  }
}

.p-subsidy__differences .box table thead tr th:last-child {
  padding: 1em 1em 1em 2em;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__differences .box table thead tr th:last-child {
    padding: 0.5em 0.5em 0.5em 1.5em;
  }
}

.p-subsidy__differences .box table thead tr th:last-child:after {
  left: auto;
  right: 0;
}

.p-subsidy__differences .box table tbody tr th {
  width: 20%;
  padding: 1.5em 1.8em;
  font-size: 1.9rem;
  font-weight: 500;
  border-right: dashed 1px #D9D9D9;
  border-bottom: solid 1px #D9D9D9;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__differences .box table tbody tr th {
    width: 25%;
    padding: 0.5em 0.8em 0.5em 0;
    font-size: 1.5rem;
  }
}

.p-subsidy__differences .box table tbody tr td {
  padding: 1.5em 2.5em 1.5em 1.5em;
  font-size: 1.9rem;
  font-weight: 500;
  text-align: center;
  border-bottom: solid 1px #D9D9D9;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__differences .box table tbody tr td {
    padding: 0.5em 1.5em 0.5em 0.5em;
    font-size: 1.5rem;
  }
}

.p-subsidy__differences .box table tbody tr td:last-of-type {
  padding: 1.5em 1.5em 1.5em 2.5em;
  border-left: dashed 1px #D9D9D9;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__differences .box table tbody tr td:last-of-type {
    padding: 0.5em 0.5em 0.5em 1.5em;
  }
}

.p-subsidy__differences .box table tbody tr:first-of-type th {
  border-top: solid 1px #D9D9D9;
}

.p-subsidy__differences .box table tbody tr:first-of-type td {
  border-top: solid 1px #D9D9D9;
}

.p-subsidy__thinking {
  margin-bottom: 9.6rem;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__thinking {
    margin-bottom: 5rem;
  }
}

@media only screen and (min-width: 781px) {
  .p-subsidy__thinking .content_layout02 .img {
    width: 45%;
  }
}

@media only screen and (min-width: 781px) {
  .p-subsidy__thinking .content_layout02 .text {
    width: 50%;
  }
}

.p-subsidy__thinking .content_layout02 .text h2 {
  margin-bottom: 1.5em;
  font-weight: 500;
}

.p-subsidy__thinking .content_layout02 .text h2 span {
  font-family: "Noto Serif JP", serif;
  font-size: 1.9rem;
  letter-spacing: 0.1em;
  color: #10572F;
  display: inline-block;
  vertical-align: 0;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__thinking .content_layout02 .text h2 span {
    font-size: 1.6rem;
    display: block;
  }
}

.p-subsidy__thinking .content_layout02 .text h2 span:before {
  width: 0.6rem;
  height: 0.6rem;
  margin: 0 1em;
  content: "";
  background-color: #10572F;
  -webkit-border-radius: 50%;
  -moz-border-radius: 50%;
  border-radius: 50%;
  display: inline-block;
  vertical-align: 0.2em;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__thinking .content_layout02 .text h2 span:before {
    margin: 0 1em 0 0;
  }
}

.p-subsidy__thinking .content_layout02 .text h3 {
  margin-bottom: 0.8em;
  font-family: "Noto Serif JP", serif;
  font-size: 4rem;
  font-weight: 500;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__thinking .content_layout02 .text h3 {
    font-size: 2.4rem;
  }
}

.p-subsidy__thinking .content_layout02 .text p {
  line-height: 2.625;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__thinking .content_layout02 .text p {
    line-height: 1.8;
  }
}

.p-subsidy__faq {
  margin-bottom: 16rem;
}

@media only screen and (max-width: 780px) {
  .p-subsidy__faq {
    margin-bottom: 5.6rem;
  }
}

/* ////////////////////////////////////////////////////////////

資金調達診断ページ

/////////////////////////////////////////////////////////////*/
.p-calc .pc-only {
  display: block;
}

.p-calc .sp-only {
  display: none;
}

@media screen and (max-width:780px) {
  .p-calc .pc-only {
    display: none;
  }

  .p-calc .sp-only {
    display: block;
  }
}

.p-calc main {
  background-color: #fffef7;
}

.p-calc .calc__wrap {
  width: 80%;
  max-width: 960px;
  position: relative;
  z-index: 1;
  margin: -100px auto 100px;
}

.p-calc .p-calc__box {
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 5px 20px 10px rgba(162, 162, 162, 0.15);
  width: 100%;
  padding: 40px 30px;
  text-align: center;
}

.p-calc .calc__toback {
  display: inline-block;
  font-weight: bold;
  margin-top: 1em;
  transition: color .3s ease-in-out;
}

.p-calc .calc__toback:hover {
  color: #666666;
}

@media screen and (max-width:900px) {
  .p-calc .calc__wrap {
    width: 90%;
    margin: -60px auto 60px;
  }
}

@media screen and (max-width:780px) {
  .p-calc .calc__wrap {
    width: 95%;
  }
}

@media screen and (max-width:599px) {
  .p-calc .p-calc__box {
    padding: 40px 15px;
  }
}

/* ページタイトル */
.p-calc .pagetitle h1 {
  display: flex;
  align-items: center;
  justify-content: center;
}

.p-calc .pagetitle h1 span.page_subtitle {
  font-size: 0.8em;
}

.p-calc .pagetitle p {
  color: #ffffff;
  font-size: 0.8em;
  text-align: center;
  margin-top: 1em;
}

@media screen and (max-width:780px) {
  .p-calc .pagetitle h1 {
    flex-direction: column;
  }
}

/* プログレスバー */
.progress {
  display: flex;
  align-items: center;
  width: 60%;
  margin-inline: auto;
}

.progress-item {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.progress-item.is-active {
  background-color: #CBBE88;
  border: none;
}

.progress-number {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d9d9d9;
  font-size: 1.2rem;
}

.progress-item.is-active .progress-number {
  color: #fff;
}

.progress-line {
  flex: 1;
  height: 6px;
  border-top: 1px solid #d9d9d9;
  border-bottom: 1px solid #d9d9d9;
}

.progress-line.is-active {
  background-color: #cbbe88;
  border: none;
}

/* 診断内容 */
.p-calc__box .content {
  margin-top: 2.4rem;
}

.p-calc__box .content h2 {
  font-size: 2.8rem;
  font-weight: bold;
  margin-bottom: 1.4em;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.p-calc__box .content h2 .en {
  font-size: 0.6em;
  font-family: "Noto Serif JP", serif;
  color: #10572F;
  text-transform: capitalize;
  display: block;
  margin-bottom: 0.6em;
}

.p-calc__box .content .calc {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.6rem;
}

.p-calc__box .content .calc .calc-item {
  height: 100%;
}

.p-calc__box .content .calc .calc-item label {
  height: 100%;
  border: 1px solid #d9d9d9;
  background-color: #f6f6f6;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 30px 10px;
  transition: .2s ease-in-out;
}

.p-calc__box .content .calc .calc-item label h3 {
  font-size: 2rem;
  font-weight: bold;
  margin-bottom: 1.4rem;
  word-break: keep-all;
  overflow-wrap: break-word;
  min-height: 3em;
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.p-calc__box .content .calc .calc-item label h3 span {
  font-size: 0.8em;
}

.p-calc__box .content .calc .calc-item label p {
  color: #494949;
}

.p-calc__box .content .calc .calc-item label:hover {
  border: 1px solid #10572f;
  border-radius: 10px;
  background-color: #fffef7;
  color: #10572F;
}

.p-calc__box .content .calc .calc-item label:hover p {
  color: #10572F;
}

.p-calc__form {
  margin-top: 5rem;
}

.p-calc__form .select select {
  width: 100%;
  padding: 1em 4em 1em 1.5em;
  margin-bottom: 2em;
  line-height: 1.25;
  background-color: #FAFAFA;
  background-image: url(../img/select_arrow.webp);
  background-repeat: no-repeat;
  background-position: calc(100% - 1em) center;
  -webkit-background-size: 1.1rem auto;
  background-size: 1.1rem auto;
  border: solid 1px #D9D9D9;
  font-size: 2rem;
}

.p-calc__form .formBtn_wrap {
  margin-top: 3rem;
}

.p-calc__form .formBtn {
  margin-inline: auto;
  width: 39.2rem;
  max-width: 100%;
  padding: 1.26em;
  font-size: 1.9rem;
  font-weight: 500;
  text-align: center;
  color: #ffffff;
  background-color: #10572F;
  cursor: pointer;
  transition: .3s ease-in-out;
}

.p-calc__form .formBtn:hover {
  background-color: #597B68;
}

@media screen and (max-width:780px) {
  .p-calc__box .content h2 {
    font-size: 2rem;
  }

  .p-calc__box .content .calc .calc-item h3 {
    font-size: 1.6rem;
  }

  .p-calc__box .content .calc .calc-item p {
    font-size: 1.28rem;
  }

  .p-calc__form {
    margin-top: 3rem;
  }

  .p-calc__form .select select {
    font-size: 1.4rem;
    margin-bottom: 1em;
  }

  .p-calc__form .formBtn {
    font-size: 1.4rem;
    margin-top: 2rem;
  }
}

@media screen and (max-width:599px) {
  .p-calc__box .content .calc {
    gap: 10px;
  }

  .p-calc__box .content .calc .calc-item label h3 {
    font-size: 1.5rem;
  }
}

/* ////////////////////////////////////////////////////////////

資金調達診断結果ページ

/////////////////////////////////////////////////////////////*/
.p-result .content h2 {
  font-size: 2.5rem;
}

.p-result .result {
  margin: 80px auto;
  width: 80%;
  max-width: 700px;
  font-size: 1.8rem;
}

.p-result .result h3 {
  font-size: 3.2rem;
  font-weight: bold;
  margin-bottom: 30px;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.p-result .result h3.is-long-title {
  font-size: 2.8rem;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.p-result .result h3.is-long-title .logo_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
}

.p-result .result h3.is-long-title .logo_wrap img {
  width: 400px;
}

.p-result .result h3 .category {
  font-size: 1.9rem;
  color: #10572F;
  display: block;
}

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

.p-result .result .catch {
  width: 80%;
  margin: 30px auto;
  padding: 1em;
  color: #10572F;
  border: 1px solid #10572F;
  border-radius: 8px;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.p-result .result .result-button {
  /* width: 60%; */
  max-width: 560px;
  margin-top: 30px;
  margin-inline: auto;
}

.p-result .result .result-button p {
  font-size: 0.8em;
  margin-bottom: 5px;
}

.p-result .result .result-button a {
  background-color: #10572F;
  border-radius: 50px;
  color: #fff;
  display: inline-block;
  min-width: 60%;
  /* width: 100%; */
  padding: 1em 2em;
  transition: .3s ease-in-out;
  word-break: keep-all;
  overflow-wrap: break-word;
}

.p-result .result .result-button a:hover {
  background-color: #407a59;
}

@media screen and (max-width:780px) {
  .p-result .content h2 {
    font-size: 1.8rem;
  }

  .p-result .result {
    width: 90%;
    margin: 40px auto;
    font-size: 1.6rem;
  }

  .p-result .result h3 {
    font-size: 2.4rem;
  }

  .p-result .result h3.is-long-title {
    font-size: 2rem;
  }

  .p-result .result .catch {
    width: 100%;
  }

  /* .p-result .result .result-button{
  width: 80%;
 } */
}

@media screen and (max-width:599px) {
  .p-result .result {
    width: 100%;
  }

  .p-result .result h3.is-long-title .logo_wrap img {
    width: 300px;
  }
  
  .p-result .result .result-button a {
    font-size: 14px;
    padding: 1em;
  }
}

/* result_a_a cashN */
.p-result .result.cashN .orange {
  color: #ffcc19;
  font-size: 2rem;
  font-weight: bold;
}

.p-result .result.cashN .logo_wrap {
  overflow: hidden;
  height: 100px;
  display: flex;
  align-items: center;
}

.p-result .result.cashN .logo_wrap img {
  display: block;
  width: 50%;
  margin-inline: auto;
}

.p-result .result.cashN .result-button a {
  background-color: #ffcc19;
}

.p-result .result.cashN .result-button a:hover {
  background-color: #ffe37e;
}

/* result_a_b */
.p-result .result .result_box {
  width: 95%;
  margin: 0 auto 30px;
  padding: 15px 20px 20px;
  border-radius: 10px;
  border: 1px solid #10572F;
  text-align: left;
}

.p-result .result .result_box .amount_wrap {
  display: flex;
  align-items: center;
}

.p-result .result .result_box .amount_ttl {
  font-weight: bold;
  color: #10572F;
  margin-right: 1em;
}

.p-result .result .result_box .amount .bg {
  font-weight: bold;
  font-size: 1.8em;
  margin-left: 2px;
  margin-right: 5px;
}

.p-result .result .result_box .small {
  font-size: 0.9em;
  color: #848484;
}

@media screen and (max-width:780px) {
  .p-result .result .result_box .amount_wrap {
    flex-direction: column;
  }

  .p-result .result .result_box .small {
    font-size: 0.8em;
  }
}

/* result_b */
.p-result .result-5 h3 .category {
  color: #51a8ae;
}

.p-result .result-5 .logo_wrap {
  overflow: hidden;
  height: 100px;
  display: flex;
  align-items: center;
}

.p-result .result-5 .logo_wrap img {
  display: block;
  width: 60%;
  margin-inline: auto;
}

.p-result .result-5 .result-button a {
  background-color: #51a8ae;
}

.p-result .result-5 .result-button a:hover {
  background-color: #51a8ae;
  opacity: 0.7;
}

.p-result .result-6 h3 .accent {
  color: #1d4479;
}

.p-result .result-6 .result-button a {
  background-color: #1d4479;
}

.p-result .result-6 .result-button a:hover {
  background-color: #1d4479;
  opacity: 0.7;
}