@charset "utf-8";
@import url("https://fonts.googleapis.com/css2?family=Montserrat:wght@100..900&family=Poppins:wght@400;500;600;700&family=Roboto:wght@700;900&display=swap");

:root {
  --easing: cubic-bezier(0.2, 1, 0.2, 1);
  --transition: 0.8s var(--easing);
  --color-base: #cbe5ff;
  --color-gray: #d5d5d5;
  --color-theme: #00913a;
  --color-theme-light: #b5dfc6;
  --color-theme-second: #1ea855;
  --color-theme-dark: #333;
  --color-red: #ef2b23;
  --color-blue: #3296e6;
  --color-blue-light: #a6d6fc;
  --color-green: var(--color-theme);
  --color-orange: #ff7415;
  --color-orange-light: #fbddcb;
  --color-yellow: #fec601;
  --color-cream: #fffced;
  --font-base: YuGothic, "Yu Gothic", "Yu Gothic Medium", -apple-system, BlinkMacSystemFont, Roboto, Verdana, Meiryo, sans-serif;
  --box-shadow: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05), -0.8rem -0.8rem 1.2rem #fff;
  --box-shadow-hover: 1rem 1rem 1.5rem rgba(0, 0, 0, 0.08), -1rem -1rem 1.5rem #fff;
  --box-shadow-inset: inset 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.05), inset -0.8rem -0.8rem 1.2rem #fff;
  --box-shadow-dark: 0.8rem 0.8rem 1.2rem rgba(0, 0, 0, 0.1), -0.8rem -0.8rem 1.2rem rgba(#fff, 0.2);
}
*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: var(--font-base);
  min-height: 100%;
  line-height: 1.5;
  font-size: 62.5%;
  color: #000;
  text-spacing-trim: space-all;
}

div,
span,
object,
iframe,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
caption,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  font-size: 100%;
  vertical-align: baseline;
  background: transparent;
  font-style: normal;
}

a {
  color: var(--color-theme);
  text-decoration: none;
}

li {
  list-style: none;
}

li::marker {
  display: none;
}

@media only screen and (max-width: 1024px) {
  html {
    -webkit-text-size-adjust: 100%;
  }
  .pc {
    display: none !important;
  }
}

@media only screen and (min-width: 1025px) {
  .tab-smp {
    display: none !important;
  }
}
@media screen and (max-width: 768px) {
  body {
      margin-top: 0!important;
  }
}
@media only screen and (min-width: 600px) {
  .smp {
    display: none !important;
  }
}
@media only screen and (max-width: 599px) {
  .pc-tab {
    display: none !important;
  }
}

input[type="text"],
input[type="tel"],
input[type="email"],
textarea,
select {
  border-radius: 6px;
  border: solid 1px #bfbfbf;
  padding: 1rem;
  box-sizing: border-box;
  width: 100%;
  background-color: #fff;
}

select {
  min-height: 40px;
}

@media only screen and (min-width: 1025px) {
  input[type="text"],
  input[type="tel"],
  input[type="email"],
  textarea {
    width: 100%;
  }
}

input:-webkit-autofill {
  transition: background-color 5000s ease-in-out 0s !important;
}

input:focus::placeholder {
  color: transparent;
}

h1,h2,h3,h4,h5,h6 { font-weight: bold;}

.center {
  text-align: center;
}

.center img {
  margin-inline: auto;
}

@media only screen and (max-width: 768px) {
  .center_smp {
    text-align: center;
  }
}

.bold {
  font-weight: 900;
}
.white {
  color: #fff;
}
.red {
  color: var(--color-red);
}
.blue {
  color: var(--color-blue);
}
.green {
  color: var(--color-green);
}
.orange {
  color: var(--color-orange);
}
.yellow {
  color: var(--color-yellow);
}

@media only screen and (min-width: 600px) {
  .txt_s {
    font-size: 1rem;
  }
  .txt12 {
    font-size: 1.2rem;
  }
  .txt14 {
    font-size: 1.4rem;
  }
  .txt16 {
    font-size: 1.6rem;
  }
  .txt20 {
    font-size: 2rem;
  }
  .txt24 {
    font-size: 2.4rem;
  }
  .txt30 {
    font-size: 3rem;
  }
}

.mt15 {
  margin-top: 1.5rem;
}
.mt24 {
  margin-top: 2.4rem;
}
.mt50 {
  margin-top: 5rem;
}
.mb15 {
  margin-bottom: 1.5rem;
}
.mb20 {
  margin-bottom: 2rem;
}

.roboto-bold,
.roboto-black {
  font-family: "Roboto", sans-serif;
  font-style: normal;
}
.roboto-bold {
  font-weight: 700;
}
.roboto-black {
  font-weight: 900;
}

.poppins-regular,
.poppins-medium,
.poppins-semibold,
.poppins-bold {
  font-family: "Poppins", serif;
  font-style: normal;
}
.poppins-regular {
  font-weight: 400;
}
.poppins-medium {
  font-weight: 500;
}
.poppins-semibold {
  font-weight: 600;
}
.poppins-bold {
  font-weight: 700;
}


.opa {
  transition: var(--transition);
  backface-visibility: hidden;
}

.opa:hover {
  opacity: 0.6;
  filter: alpha(opacity=60);
  backface-visibility: hidden;
}

img {
  max-width: 100%;
  height: auto;
}

.link_icon { display: inline-block; width: 15px; height: 15px; }

.iso-lp {
  background: var(--color-base) url(../images/cloud_bg.svg) no-repeat fixed;
  background-position: center 40px;
}

@media only screen and (max-width: 599px) {
  .iso-lp {
    background: var(--color-base) url(../images/smp_cloud_bg.svg) no-repeat fixed;
    background-position: center 40px;
  } 
}

.iso-lp header {
  width: 100%;
  z-index: 1;
  transition: var(--transition);
}

.iso-lp header .header-inner {
  margin: 0 auto;
  position: relative;
  padding: 100px 0 60px 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.iso-lp header .header-inner .h_txt {
  font-size: 1.4rem;
  padding: 10px 20px;
  border-radius: 100px;
  background-color: var(--color-blue);
  border: solid 2px #000;
  font-weight: bold;
  color: #fff;
  display: inline-block;
  min-width: 379px;
}

.h_box_l {
  width: 520px;
}

.h_box_l h1 {
  margin: 3rem 0;
}
.h_box_r {
  width: 430px;
}
.h_box_r img {
  margin-inline: auto;
}
@media only screen and (max-width: 768px) {
  .h_box_l h1 {
    margin: 1rem 0;
  } 
  .h_box_l {
    width: 100%;
  }
  
  .h_box_l h1 {
    margin: 3rem 0;
  }
  .h_box_r {
    width: 100%;
  }
}

@media only screen and (min-width: 1281px) {
  .iso-lp header .header-inner {
    width: 960px;
  }
}

@media only screen and (max-width: 1024px) {
  .iso-lp header .header-inner {
    grid-template-columns: 1fr 1fr;
  }
}
@media only screen and (min-width: 600px) and (max-width: 768px) {
  .iso-lp header .header-inner { padding: 20px;}
}

@media only screen and (max-width: 599px) {
  .iso-lp header .header-inner {
    grid-template-columns: 1fr;
  }
  
  .iso-lp header .header-inner {
    padding: 1.5rem;
  }
  .iso-lp header .header-inner .h_txt {
    font-size: 1.2rem;
    padding: 10px 20px;
    min-width: 100%;
  }
  .medal_img_smp {
    width: 100%;
    height: 117px;
    background: url(../images/medal_01.png) no-repeat center;
    background-size: contain;
    margin-top: 1.5rem;
  }
}

@media only screen and (max-width: 599px) {
  .mv_img {
    height: 246px;
    margin-bottom: 1.5rem;
  }
  .iso-lp header .header-inner .h_txt {
    display: block;
  }
}

.cta-floating {
  display: inline-block;
  background-color: #fff;
  border: solid 2px #000;
  border-radius: 100px;
  padding: 10px 40px;
  margin: 0 auto;
  position: fixed;
  bottom: 160px;
  z-index: 10;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  left: 50%;
  transform: translateX(-50%);
  transition: var(--transition);
}
.cta-floating.is-scrolled {
  bottom: 30px;
}
@media only screen and (min-width: 1025px) {
  .cta-floating {
    padding: 8px 40px 12px 40px;
  }
  .cta-floating__inner::before {
    content: "";
    background: url(../images/roket_img01.png) no-repeat;
    background-size: contain;
    display: inline-block;
    width: 106px;
    height: 100px;
    margin-top: -30px;
    aspect-ratio: 200 / 187;
  }
}

@media only screen and (max-width: 1024px) {
  .cta-floating {
    width: 90%;
  }
}

.cta-floating__inner {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
}

.cta-floating__item {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cta-floating__decoration {
  font-size: 1.6rem;
}

.tel_txt {
  font-size: 1.4rem;
  display: flex;
  flex-direction: row;
  min-height: 78px;
}

.tel_txt_time {
  font-size: 1.2rem;
}

.tel_inner {
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
}

.slash {
  font-family: Arial, sans-serif;
}
@media only screen and (min-width: 600px) {
  .tel_txt::before {
    content: "";
    background: url(../images/tel_icon.png) no-repeat;
    background-size: contain;
    display: inline-block;
    width: 32px;
    height: 32px;
    margin-right: 1rem;
  }
}

.tel_txt a span {
  opacity: 0;
  display: none;
  position: relative;
}
.tel_txt a::before {
  display: block;
  content: "";
  background-image: url(../images/tel_no.svg);
  background-repeat: no-repeat;
  width: 160px;
  height: 21px;
  position: relative;
}

@media only screen and (max-width: 599px) {
  .cta-floating {
    width: 90%;
    display: flex;
    padding: 10px 15px;
    margin: 0;
    left: 50%;
    transform: translateX(-50%);
  }
  .cta-floating__inner {
    width: 100%;
    display: flex;
    justify-content: center;
    gap: 1rem;
  }
  .cta-floating__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
  }
  .tel_txt_time {
    display: none;
  }
  .cta-floating__decoration {
    display: none;
  }
  .tel_inner a {
    border: solid 2px var(--color-theme);
    padding: 0.5rem;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
  }
  .tel_txt {
    font-size: 1.4rem;
    display: flex;
    flex-direction: row;
    min-height: initial;
  }
  .tel_txt a::before {
    content: "";
    background: url(../images/tel_icon.png) no-repeat;
    background-size: contain;
    display: inline-block;
    width: 20px;
    height: 20px;
    margin-right: 0;
  }
  .tel_txt a span {
    display: none;
  }
}

.cta-floating.is-fixed {
  position: fixed;
  bottom: 30px;
}

nav {
  width: 100%;
}

main {
  padding: 0;
  margin: 0 auto;
  width: 100%;
  line-height: 1.5;
}

section {
  width: 100%;
  margin: 0 auto;
  text-align: left;
}

.main-content {
  margin: 0 auto;
  padding: 40px 0;
  line-height: 1.5;
  font-size: 1.6rem;
}

.main-content p,
.main-content > dl > dd {
  margin-bottom: 1.5rem;
}

.main-content > ol {
  margin-left: 3.5rem;
}

.main-content > ol > li {
  list-style-type: decimal;
  margin-bottom: 1.5rem;
}

.main-content em {
  font-weight: 900;
}

#sec01 {
  background: url(../images/top_link_bg.svg) no-repeat top center;
  min-height: 400px;
  position: relative;
  z-index: 1;
}

#sec01 .main-content {
  padding-top: 230px;
  padding-bottom: 130px;
}
@media only screen and (max-width: 1024px) {
  #sec01 {
    background-size: auto 100%;
  }
  #sec01 .main-content {
    padding-top: 50px;
    padding-bottom: 50px;
  }
}
@media only screen and (max-width: 599px) {
  #sec01 {
    background: url(../images/top_link_bg_smp.svg) no-repeat top center;
    min-height: 400px;
    position: relative;
    z-index: 1;
    background-size: auto 100%;
  }
  #sec01 .main-content {
    padding: 2rem 2rem 10rem 2rem;
  }
}

#sec01 .main-content h2 {
  font-size: 3.6rem;
  text-align: center;
  color: var(--color-blue);
  margin-bottom: 3rem;
  margin-top: 80px;
  margin-bottom: 3rem;
  font-weight: bold;
}

@media screen and (min-width: 1025px) {
  #sec01 .main-content h2:first-child {
    margin-top: 0;
  }
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

.iso_toha_txt {
  position: relative;
  min-height: 202px;
}
.iso_toha_txt_inner {
  width: 720px;
}

.iso_toha_txt .img_box {
  position: absolute;
  top: 0;
  right: 0;
}

@media screen and (max-width: 769px) {
  #sec01 .txt_box {
    width: 100%;
  }

  #sec01 .main-content h2 {
    font-size: 3rem;
    text-align: center;
    color: var(--color-blue);
    margin-bottom: 1.5rem;
    margin-top: 45px;
  }

  #sec01 .main-content h2:first-child {
    margin-top: 70px;
  }


  .iso_toha_txt_inner {
    width: 100%;
  }

}

@media screen and (max-width: 599px) {
  .iso_toha_txt_inner {
    width: 100%;
  }
  .iso_toha_inner_smp { position: relative; font-size: 1.4rem; padding-right: 100px;}
  .iso_toha_inner_smp::after {
    content: "";
    display: block;
    background: url(../images/iso_icon01.png);
    width: 80px;
    height: 101px;
    background-size: cover;
    position: absolute;
    top: 0;
    right: 0;
  }
}

.iso_toha_subtitle {
  font-size: 2rem;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  .iso_toha_subtitle {
    font-size: 1.6rem;
  }
}

#sec01 .img_box {
  width: 160px;
  display: none;
}

@media only screen and (min-width: 769px) {
  #sec01 .img_box {
    display: block;
  }
}

.syutoku_merit_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
 }
 .merit_item {
  width: 300px;
 }
 .merit_circle {
  width: 100%;
  aspect-ratio: 1 / 1;
  position: relative;
  background-color: #fff;
  border-radius: 50%;
  border: solid 2px #000;
  margin-bottom: 2rem;
 }
 @supports not (aspect-ratio: 1 / 1) {
  .merit_circle::before {
    content: "";
    display: block;
    padding-top: 100%;
  }
   .merit_circle_inner {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 1rem;
  }
 }

 @supports (aspect-ratio: 1 / 1) {
  .merit_circle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
   .merit_circle_inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding: 1rem;
  }
 }

 .merit_circle_inner::before {
  content: "";
  display: inline-block;
  width: 31px;
  height: 48px;
  background-repeat: no-repeat;
  background-size: contain;
 }
 .merit_item:nth-of-type(1) .merit_circle_inner::before {
  background-image: url(../images/no_01.svg);
 }
 .merit_item:nth-of-type(2) .merit_circle_inner::before {
  background-image: url(../images/no_02.svg);
 }
 .merit_item:nth-of-type(3) .merit_circle_inner::before {
  background-image: url(../images/no_03.svg);
 }
 .merit_circle h3 {
  margin: 1rem 0;
  font-size: 2rem;
  font-weight: 601;
  line-height: 1.6em;

 }
 .merit_item h4 {
  font-weight: 400;
 }

@media only screen and (max-width: 768px) {
  .merit_item {
    width: calc(33.333% - 20px);
   }
  .merit_item .merit_circle .merit_circle_inner::before {
    font-size: 6rem;
  }
  .merit_item .merit_circle img {
    width: 100px;
  }
}

@media only screen and (max-width: 599px) {
  .merit_item .merit_circle .merit_circle_inner::before {
    font-size: 4rem;
  }
  .syutoku_merit_wrap {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }
  .merit_item {
    width: calc((100% - 20px) / 2);
        display: flex;
        flex-wrap: wrap;
        flex-direction: column;
        align-items: flex-start;
  }

  .merit_item .merit_circle .merit_circle_inner::before {
    width: 18px;
    height: 28px;
    background-size: contain;
  }
  .merit_item .merit_circle h3 {
    font-size: 1.4rem;
    margin: 0;
  }
  .merit_item .merit_circle p {margin-bottom: 0;}
  .merit_item .merit_circle img {
    width: 90px;
  }
  .merit_item h4 {
    font-size: 1.4rem;
  }
}

#sec02 {
  background: url(../images/bg_01.svg) no-repeat top center;
  background-size: 100% auto;
  min-height: 400px;
  position: relative;
  z-index: 0;
  margin-top: -150px;
}

#sec02 .main-content {
  padding-top: 142px;
}

#sec02 .main-content .wall_title h2 {
  font-size: 3.6rem;
  text-align: center;
  color: #fff;
  margin-bottom: 28px;
  margin-top: 100px;
  font-weight: 600;
}

.santen_txt {
  vertical-align: bottom;
  line-height: 1;
}

@media screen and (min-width: 1025px) {
  .wall_title {
    position: relative;
    margin-top: 120px;
  }
  .wall_title::after {
    content: "";
    background-image: url(../images/sec02_img01.svg);
    display: inline-block;
    width: 160px;
    height: 160px;
    position: absolute;
    bottom: 0;
    right: -30px;
  }
}

@media screen and (max-width: 768px) {
  #sec02 {
    background: url(../images/cloud_bg_smp.svg) no-repeat top center;
    background-size: 100% auto;
    min-height: 400px;
    margin-top: -65px;
  }
  #sec02 .main-content {
    padding-top: 65px;
  }
  #sec02 > .main-content > h2 {
    font-size: 2.4rem;
    margin-bottom: 10px;
    margin-top: 20px;
  }
  .wall_title { margin-top: 50px;}
}

.wall_title {
  margin-top: 0;
  text-shadow: 0 0 8px #000;
}

.wall_wrap {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 860px;
  margin: 35px auto 120px auto;
}

.wall_item {
  background: url(../images/wall_bg.svg) repeat;
    padding: 30px 20px;
    background-size: contain;
    color: #fff;
    width: 280px;
    height: 190px;

}

.wall_item h3 {
  font-size: 2.4rem;
  margin-bottom: 16px;
  text-align: center;
  letter-spacing: 1px
}

.wall_item p {
  margin-bottom: 0;
}


@media only screen and (max-width: 768px) {
  .wall_item {
    width: calc(33.333% - 20px);
    height: initial;
  }
}
@media only screen and (max-width: 599px) {
  .wall_wrap {
    justify-content: center;
    max-width: 100%;
    margin: 18px auto 60px auto;
  }

  .wall_item {
    background: url(../images/wall_bg.svg) repeat;
    padding: 30px 20px;
    color: #fff; 
    background-size: cover;
    width: 280px;
    height: initial;
    min-height: initial;
    margin-bottom: 15px;
  }
  .wall_item:last-child { margin-bottom: 0;}

.wall_item h3 {
    font-size: 2.4rem;
    margin-bottom: 3px;
    text-align: center;
}
}

.kobetsuninsyo {
  background-color: var(--color-cream);
  padding: 4rem 5rem;
  border-radius: 2rem;
  border: solid 2px #000;
  position: relative;
  z-index: 1;
}

.kobetsuninsyo p {
  margin-top: 5px;
  margin-bottom: 10px;
}

@media only screen and (max-width: 768px) {
  .kobetsuninsyo {
    padding: 2.4rem;
  }
  .kobetsuninsyo::before {
    content: "";
    background: url(../images/sec02_img01.png);
    width: 100px;
    height: 100px;
    display: block;
    background-size: contain;
    position: absolute;
    top: -97px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 0;
}
}

.kobetsuninsyo h2,
.kobetsuninsyo h3 {
  color: var(--color-orange);
}

.kobetsuninsyo h2 {
  font-size: 3.6rem;
  margin-bottom: 3.5rem;
  font-weight: bold;
}

.kobetsuninsyo h3 {
  font-size: 2rem;
  margin-bottom: 16px;
  font-weight: bold;
}

@media only screen and (max-width: 599px) {
  .kobetsuninsyo h2 {
    font-size: 2.6rem;
    margin-bottom: 3.5rem;
  }
}

.syutoku_title01,
.syutoku_title02,
.syutoku_title03 {
  writing-mode: vertical-rl;
  text-orientation: upright;
  white-space: nowrap;
  text-align: center;
  display: flex;
  padding: 1rem 0.5rem;
  width: 80px;
  height: 300px;
  border: solid 2px #000;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: bold;
}

.syutoku_title01 {
  background-color: var(--color-blue);
  color: #fff;
}
.syutoku_title02 {
  background-color: var(--color-orange);
  color: #fff;
}

.dantaininsyo .syutoku_title02 {
  background-color: var(--color-theme);
  color: #fff;
}

.syutoku_title03 {
  background-color: var(--color-gray);
}

.ninsyo_syutokuji_box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 45px;
}

@media only screen and (max-width: 599px) {
  .ninsyo_syutokuji_box {
    display: flex;
    align-items: center;
    flex-direction: column;
    justify-content: space-between;
  }
  .syutoku_title01,
.syutoku_title02,
.syutoku_title03 {
  writing-mode: initial;
  text-orientation: upright;
  white-space: nowrap;
  text-align: center;
  display: flex;
  padding: 1rem 0.5rem;
  width: 100%;
  height: initial;
  border: solid 2px #000;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  font-weight: bold;
}
}

.dantaininsyo .ninsyo_syutokuji_box  { margin-bottom: 50px;}

.ninsyo_syutokuji_box ul {
  width: 270px;
  writing-mode: horizontal-tb;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  justify-content: center;
  box-sizing: border-box;
  margin: 0 20px;
}

.ninsyo_syutokuji_box ul li {
  padding: 15px 30px;
  margin: 15px 0;
  position: relative;
  text-align: center;
  font-size: 2rem;
  font-weight: normal;
}

.ninsyo_syutokuji_box ul li:nth-child(1),
.ninsyo_syutokuji_box ul li:nth-child(3) {
  background-color: #fbddcb;
}

.ninsyo_syutokuji_box ul li:nth-child(1)::after,
.ninsyo_syutokuji_box ul li:nth-child(3)::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0;
  height: 100%;
  width: 30px;
  background: linear-gradient(to right top, #fffced 50%, #fbddcb 50%) bottom right / 100% 50% no-repeat, linear-gradient(to right bottom, #fffced 50%, #fbddcb 50%) top right / 100% 50% no-repeat;
}



.dantaininsyo .ninsyo_syutokuji_box ul li:nth-child(1),
.dantaininsyo .ninsyo_syutokuji_box ul li:nth-child(3) {
  background-color: #b5dfc6;
}



.dantaininsyo .ninsyo_syutokuji_box ul li:nth-child(1)::after,
.dantaininsyo .ninsyo_syutokuji_box ul li:nth-child(3)::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0;
  height: 100%;
  width: 30px;
  background: linear-gradient(to right top, #fffced 50%, #b5dfc6 50%) bottom right / 100% 50% no-repeat, linear-gradient(to right bottom, #fffced 50%, #b5dfc6 50%) top right / 100% 50% no-repeat;
}

.ninsyo_syutokuji_box ul li:nth-child(2) {
  background-color: #add5f5;
}
.ninsyo_syutokuji_box ul li:nth-child(2)::after {
  content: "";
  position: absolute;
  right: 0px;
  top: 0;
  height: 100%;
  width: 30px;
  background: linear-gradient(to left top, #fffced 50%, #add5f5 50%) bottom left/100% 50% no-repeat, linear-gradient(to left bottom, #fffced 50%, #add5f5 50%) top left/100% 50% no-repeat;
}

.ninsyo_syutokuji_box ul.list_r li:nth-child(1) {
  background-color: #fbddcb;
}
.ninsyo_syutokuji_box ul.list_r li:nth-child(1)::after {
  content: "";
  position: absolute;
  right: 0px;
  left: initial;
  top: 0;
  height: 100%;
  width: 30px;
  background: linear-gradient(to left top, #fffced 50%, #fbddcb 50%) bottom left/100% 50% no-repeat, linear-gradient(to left bottom, #fffced 50%, #fbddcb 50%) top left/100% 50% no-repeat;
}

.ninsyo_syutokuji_box ul.list_r li:nth-child(2) {
  background-color: #e2e2e2;
}

.ninsyo_syutokuji_box ul.list_r li:nth-child(2)::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0;
  height: 100%;
  width: 30px;
  background: linear-gradient(to right top, #fffced 50%, #e2e2e2 50%) bottom right/100% 50% no-repeat, linear-gradient(to right bottom, #fffced 50%, #e2e2e2 50%) top right/100% 50% no-repeat;
}

.dantaininsyo .ninsyo_syutokuji_box ul.list_r li:nth-child(1) {
  background-color: #b5dfc6;
}
.dantaininsyo .ninsyo_syutokuji_box ul.list_r li:nth-child(1)::after {
  content: "";
  position: absolute;
  left: 0px;
  top: 0;
  height: 100%;
  width: 30px;
  background: linear-gradient(to right top, #fffced 50%, #b5dfc6 50%) bottom right/100% 50% no-repeat, linear-gradient(to right bottom, #fffced 50%, #b5dfc6 50%) top right/100% 50% no-repeat;
}

.dantaininsyo .ninsyo_syutokuji_box ul.list_r li:nth-child(2) {
  background-color: #e2e2e2;
}

.dantaininsyo .ninsyo_syutokuji_box ul.list_r li:nth-child(2)::after {
  content: "";
  position: absolute;
  right: 0px;
  left: initial;
  top: 0;
  height: 100%;
  width: 30px;
  background: linear-gradient(to left top, #fffced 50%, #e2e2e2 50%) bottom left/100% 50% no-repeat, linear-gradient(to left bottom, #fffced 50%, #e2e2e2 50%) top left/100% 50% no-repeat;
}

@media only screen and (max-width: 599px) {
  .ninsyo_syutokuji_box ul {
    width: 100%;    
    margin: 2rem 0;
    display: flex;
    flex-wrap: wrap;
    flex-direction: column;
    box-sizing: border-box;
    writing-mode: vertical-rl;
    -webkit-writing-mode: vertical-rl;
    text-orientation: upright;
    -webkit-text-orientation: upright;
    text-combine-upright: none;
    -webkit-text-combine: none;
    letter-spacing: 0;
    text-transform: none;
  }
  .ninsyo_syutokuji_box ul li {
    padding: 30px 15px;
    margin: 0 10px;
    width: 60px;
    min-height: 180px;
    font-size: 1.6rem;
  }

  .ninsyo_syutokuji_box ul li:nth-child(1)::after,
  .ninsyo_syutokuji_box ul li:nth-child(3)::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to bottom right, #fffced 50%, #fbddcb 50%) left bottom / 50% 100% no-repeat,
    linear-gradient(to bottom left, #fffced 50%, #fbddcb 50%) right bottom / 50% 100% no-repeat;
  }

  .ninsyo_syutokuji_box ul li:nth-child(2)::after {
    content: "";
    position: absolute;
    left: 0;
    top:initial;
    bottom: 0;
    width: 100%;
    height: 30px;
    background: linear-gradient(to top right, #fffced 50%, #add5f5 50%) left top / 50% 100% no-repeat,
    linear-gradient(to top left, #fffced 50%, #add5f5 50%) right top / 50% 100% no-repeat;
  }

  .ninsyo_syutokuji_box ul li:nth-child(2) {
    background-color: #add5f5;
  }

  .ninsyo_syutokuji_box ul.list_r {
    justify-content: center;
  }
  .ninsyo_syutokuji_box ul.list_r li:nth-child(1)::after {
    content: "";
    position: absolute;
    right: 0px;
    left: initial;
    top: initial;
    bottom: 0;
    height: 30px;
    width: 100%;
    background: linear-gradient(to top right, #fffced 50%, #fbddcb 50%) left top / 50% 100% no-repeat,
    linear-gradient(to top left, #fffced 50%, #fbddcb 50%) right top / 50% 100% no-repeat;
  }

  .ninsyo_syutokuji_box ul.list_r li:nth-child(2)::after {
    content: "";
    position: absolute;
    right: 0px;
    left: initial;
    top: 0;
    height: 30px;
    width: 100%;
    background: linear-gradient(to bottom right, #fffced 50%, #e2e2e2 50%) left bottom / 50% 100% no-repeat,
    linear-gradient(to bottom left, #fffced 50%, #e2e2e2 50%) right bottom / 50% 100% no-repeat;
  }

  .dantaininsyo .ninsyo_syutokuji_box ul li:nth-child(1)::after,
  .dantaininsyo .ninsyo_syutokuji_box ul li:nth-child(3)::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0;
    height: 30px;
    width: 100%;
    background: linear-gradient(to bottom right, #fffced 50%, #b5dfc6 50%) left bottom / 50% 100% no-repeat,
    linear-gradient(to bottom left, #fffced 50%, #b5dfc6 50%) right bottom / 50% 100% no-repeat;
  }

  .dantaininsyo .ninsyo_syutokuji_box ul.list_r li:nth-child(1)::after {
    content: "";
    position: absolute;
    left: 0px;
    top: 0;
    height: 30px;
    width: 100%;
    background: linear-gradient(to bottom right, #fffced 50%, #b5dfc6 50%) left bottom / 50% 100% no-repeat,
    linear-gradient(to bottom left, #fffced 50%, #b5dfc6 50%) right bottom / 50% 100% no-repeat;
  }

  .dantaininsyo .ninsyo_syutokuji_box ul.list_r li:nth-child(2)::after {
    content: "";
    position: absolute;
    right: 0px;
    top: initial;
    bottom: 0;
    height: 30px;
    width: 100%;
    background: linear-gradient(to top right, #fffced 50%, #e2e2e2 50%) left top / 50% 100% no-repeat,
    linear-gradient(to top left, #fffced 50%, #e2e2e2 50%) right top / 50% 100% no-repeat;
  }

}

.kobetsuninsyo > h2 > span {
  display: inline-flex;
  padding: 9px;
  line-height: 1;
  color: #fff;
  background-color: var(--color-orange);
  margin-top: 4px;
}

.hiyou_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
}

@media only screen and (max-width: 768px) {
  .hiyou_wrap {
    grid-template-columns: 1fr;
    gap: 20px;
  }
}

@media only screen and (max-width: 599px) {

  .slide_box {
    width: 100%;
    overflow: auto;
  }
  .kobetsuninsyo .slide_box { margin-bottom: 50px;}
  .ninsyo_syutokuji_box ul li {
    font-size: 1.4rem;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    min-width: 70px;
  }
}

.hiyou_box_inner {
  border: solid 2px #000;
}

.hiyou_box .title {
  font-size: 2.4rem;
  background-color: var(--color-orange);
  color: #fff;
  padding: 1rem;
  text-align: center;
  margin: 0;
  font-weight: bold;
}

.hiyou_box .price {
  font-size: 2.4rem;
  background-color: #fff;
  color: #cc0000;
  padding: 1rem;
  text-align: center;
  margin: 0;
  font-weight: bold;
}

.hiyou_box .price small {
  font-size: 1.8rem;
  font-weight: 400;
}

.dantaininsyo .hiyou_box .price {
  font-size: 3rem;
}

.hiyou_sub_txt {
  line-height: 1;
  margin-bottom: 0;
  margin-top: 5px;
}

.dantaininsyo {
  background-color: #f7faef;
  padding:5rem 4rem;
  border-radius: 2rem;
  border: solid 2px #000;
}

@media only screen and (max-width: 768px) {
  .dantaininsyo {
    padding: 2rem;
  }
}

.dantaininsyo .hiyou_box .title {
  background-color: var(--color-theme);
}

.dantaininsyo .hiyou_box .price {
  font-size: 3.6rem;
}

.hiyou_box_inner > dl {
  border-top: solid 2px #000;
}

.hiyou_box_inner > dl > div {
  display: grid;
  align-items: center;
  font-size: 1.8rem;
  grid-template-columns: 100px 1fr;
}

.hiyou_box_inner > dl > div > dt {
  background-color: var(--color-orange-light);
  padding: 2rem;
  display: flex;
  height: 100%;
  position: relative;
  align-items: center;
  justify-content: center;
}

.hiyou_box_inner > dl > div > dt::after {
  content: "";
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 10px 0 10px 10px;
  border-color: transparent transparent transparent var(--color-orange-light);
}

@media only screen and (max-width: 768px) {
  .hiyou_box .title {
    font-size: 1.8rem;
  }
  .hiyou_box .price {
    font-size: 2rem;
  }
  .hiyou_box_inner > dl > div {
    grid-template-columns: 1fr;
  }
  .hiyou_box_inner > dl > div > dt {
    padding: 1rem;
  }
  .hiyou_box_inner > dl > div > dt::after {
    right: 50%;
    top: auto;
    bottom: -15px;
    transform: translateX(50%) rotate(90deg);
  }
}

.dantaininsyo .hiyou_box_inner > dl > div > dt {
  background-color: var(--color-theme-light);
}

.dantaininsyo .hiyou_box_inner > dl > div > dt::after {
  border-color: transparent transparent transparent var(--color-theme-light);
}

.hiyou_box_inner > dl > div > dd {
  padding: 2rem;
  background-color: #fff;
  display: grid;
  grid-template-columns: 1fr 1fr;
  justify-items: center;
}

.dantaininsyo .hiyou_box_inner > dl > div > dd {
  padding: 16px 53px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  justify-items: center;
  font-weight: bold;
}

.dantaininsyo .hiyou_box {margin-bottom: 17px;}

.sec02_koushin {
  position: relative;
}

.sec02_koushin_flow_wrap::after {
  content: "";
  background-image: url(../images/sec02_img03.svg);
  width: 120px;
  height: 150px;
  background-size: cover;
  display: inline-block;
  position: absolute;
  right: 60px;
  top: 0;
  transform: translateY(-100%);
}

.sec02_koushin_flow_wrap {
  margin-top: 45px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
}
.koushin_flow_inner {
  position: relative;
}

.koushin_flow_inner::after {
  content: "";
    display: inline-block;
    width: 36px;
    height: 122px;
    position: absolute;
    background-image: url(../images/flow_arrow.svg);
    right: -53px;
    top: 50%;
    transform: translateY(-50%);
}

@media screen and (min-width: 600px) and (max-width: 768px) {
  .sec02_koushin_flow_wrap {
    margin-top: 45px;
    display: grid;
    flex-wrap: wrap;
    justify-content: space-between;
    position: relative;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
  }
  .koushin_flow_inner {
    position: relative;
    padding-bottom: 0;
  }
  
  .koushin_flow_inner::after {
    content: "";
      display: inline-block;
      width: 36px;
      height: 122px;
      position: absolute;
      background-image: url(../images/flow_arrow.svg);
      right: -40px;
      top: 50%;
      transform: translateY(-50%);
      scale: 0.5;
  }
}

.koushin_flow_inner:last-of-type::after { display: none;}

.sec03_gyosya_flow_wrap { display: flex; flex-wrap: wrap; justify-content: space-between; width: 700px; position: relative;}
.koushin_flow_inner_2 { display: flex; flex-wrap: wrap; position: relative; }

@media screen and (min-width: 600px) {
  .koushin_flow_inner_2 table:nth-child(2) { margin-left: -2px;}
}

.Garden_koushin_box {
  position: absolute;
  left: 10px;
  bottom: 10px;
  padding: 5px 20px;
  width: 460px;
  background-color: rgba(204, 204, 204, 0.9);
  text-align: left;
  font-size: 1.7rem;
  line-height: 1.2;
}

@media only screen and (min-width: 600px) and (max-width: 768px) {
  .sec03_gyosya_flow_wrap {
    display: grid;
    flex-wrap: wrap;
    justify-content: space-between;
    width: 100%;
    position: relative;
    grid-template-columns: 150px 1fr;
    gap: 40px;
  }
.koushin_flow_inner_2 { 
  display: grid;  
  position: relative;
  grid-template-columns: 1fr 1fr;z-index: 1; }
}

@media only screen and (max-width: 599px) {
  .sec02_koushin_flow,
  .sec03_gyosya_flow_txt {
    padding-right: 140px;
    font-size: 1.4rem;
  }
  .sec02_koushin::after {
    width: 100px;
    height: 160px;
    right: 0;
  }

  .sec02_koushin_flow_wrap::after {
    right: 0;
    top: 0;
  }

  .sec02_koushin_flow { margin-top: 35px;}

  
  .Garden_koushin_box {
    position: static;
    left: initial;
    bottom: initial;
    padding: 0;
    width: 100%;
     background-color: initial; 
    text-align: left;
    font-size: 1.4rem;
    line-height: 1.2;
    margin-top: 1rem;
}
  .koushin_flow_inner {
    position: relative;
    width: 100%;
    padding-bottom: 8rem;
    z-index: 1;
  }
  .koushin_flow_inner:last-child { padding-bottom: 0;}
  
}


@media only screen and (max-width: 599px) {
  .sec03_gyosya_flow_wrap { width: 100%;}
  .sec02_koushin_flow,
  .sec03_gyosya_flow_txt {
    padding-right: 0;
    font-size: 1.4rem;
    }
    .koushin_flow_inner::after {
      content: "";
      display: inline-block;
      width: 36px;
      height: 122px;
      position: absolute;
      background-image: url(../images/flow_arrow.svg);
      right: 50%;
      top: initial;
      bottom: -20px;
      transform: translateX(50%) rotate(90deg);
  }
  }

  .koushin_flow_inner_2 .koushin_table:nth-child(1) { border-bottom: 0;}

  .sec02_koushin_flow_wrap {
    margin-top: 0;
  }
  .sec02_koushin_flow p { padding-right: 120px;}

  .sec02_koushin_flow_wrap::after {
    content: "";
    background-image: url(../images/sec02_img03.svg);
    width: 80px;
    height: 100px;
    background-size: cover;
    display: inline-block;
    position: absolute;
    right: 0;
    top: 0;
    transform: translateY(-100%);
  }

.sec03_gyosya {
  position: relative;
  padding-right: 120px;
}

.sec03_gyosya_flow_wrap::after {
  content: "";
  background-image: url(../images/sec03_img04.svg);
  width: 140px;
  height: 420px;
  background-size: cover;
  display: inline-block;
  position: absolute;
  right: -163px;
  bottom: 0;
}

@media only screen and (max-width: 768px) {
  .sec03_gyosya {
    padding-right: 0px;
    z-index: 1;
  }
  .sec03_gyosya img {
    position: relative;
    z-index: 1;
  }
  .sec03_gyosya::after {
    height: 320px;
  }
  .sec03_gyosya_flow_wrap::after {
    content: "";
    background-image: url(../images/sec02_img03.svg);
    width: 120px;
    height: 150px;
    background-size: cover;
    display: inline-block;
    position: absolute;
    right: 0;
    bottom: initial;
    z-index: 0;
    top: -140px;
}
}

@media only screen and (max-width: 599px) {
  .pr140_smp { padding-right: 140px;}
}

#sec03 .break_title { padding: 0 50px;}
#sec03 .break_title h2.break_txt {
  font-size: 3.6rem;
}

#sec03 .break_title h2.break_txt > span {
  opacity: 0;
  display: none;
}


#sec03 .break_title h3 {
  font-size: 32px;
  margin-bottom: 1.5rem;
  line-height: 37px;
}

#sec03 .break_title h3 span.osusume_txt {
  font-size: 2rem;
  font-weight: 600;
}

#sec03 .break_title h3 span.dantai_txt {
  display: inline-flex;
  background-color: #fff;
  padding: 6px;
  font-size: 3rem;
  font-weight: 900;
  line-height: 1;
}

@media only screen and (max-width: 599px) {
  #sec03 .break_title h3 span.osusume_txt {
    font-size: 1.8rem;
  }
  
  #sec03 .break_title h3 span.dantai_txt {
    font-size: 2.8rem;
  }
}

.break_title {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}


.kowasimasu_txt { margin-bottom: 33px;}


@media only screen and (min-width: 1024px) {
  .kowasimasu_txt img {
    width: 410px;
  }
}

.break_title .txt_box { width: 450px; }
.break_title .img_box { width: 390px; }

.toppa_txt_red {
  color: var(--color-red);
  font-size: 32px;
  font-weight: 900;
}

@media only screen and (min-width: 600px) and (max-width: 768px) {
  
  #sec03 .break_title { display: grid; grid-template-columns: 1fr 1fr; gap: 40px;}

  #sec03 .break_title h2.break_txt {
    font-size: 3rem;
    text-align: center;
  }

  .break_title .img_box {
    width: initial;
    margin-left: initial;
}

  .kowasimasu_txt {
    width: 100%;
    margin-inline: auto;
  }
  #sec03 .break_title h3 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .toppa_txt_red {
    color: var(--color-red);
    font-size: 2rem;
  }
}

@media only screen and (max-width: 599px) {
  .break_title > .img_box {
    display: none;
  }
  #sec03 .break_title h2.break_txt {
    font-size: 3rem;
    text-align: center;
  }


  .kowasimasu_txt {
    width: 100%;
    margin-inline: auto;
  }
  #sec03 .break_title h3 {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    text-align: center;
  }
  .toppa_txt_red {
    color: var(--color-red);
    font-size: 2rem;
  }
}

@media only screen and (max-width: 768px) {
  #sec03 .break_title { padding: 0;}
}

.dantaininsyo h2 {
  font-size: 3.6rem;
  margin-bottom: 3.5rem;
  color: var(--color-theme);
}

.dantaininsyo h3 {
  margin: 3rem 0;
}

.dantaininsyo h3.title_green {
  font-size: 2rem;
  margin-top: 44px;
  margin-bottom: 3.5rem;
  color: var(--color-theme);
  border: solid 2px var(--color-theme);
  padding: 13px 30px;
  border-radius: 100px;
  background-color: #fff;
  font-weight: bold;
}

.sec03_gyosya_flow_txt { margin-bottom: 36px;}
.sec03_gyosya_flow_txt h3.title_green {
  margin-top: 48px;
  margin-bottom: 36px;
}

@media only screen and (min-width: 769px) {
  .sec03_gyosya_flow_txt p { line-height: 1.2;}
}

@media only screen and (max-width: 768px) {
  .dantaininsyo h3.title_green {
    font-size: 2rem;
    margin-bottom: 3.5rem;
    color: var(--color-theme);
    border: solid 2px var(--color-theme);
    padding: 1rem 2rem;
    border-radius: 100px;
    background-color: #fff;
  }
  .dantaininsyo h2 {
    font-size: 3rem;
    margin-bottom: 2rem;
  }
  .dantaininsyo h3 {
    margin: 1.5rem 0;
    font-size: 1.6rem;
    font-weight: bold;
  }

  .dantaininsyo .hiyou_box_inner > dl > div > dd {
    padding: 2rem;
    background-color: #fff;
    display: grid;
    grid-template-columns: initial;
    grid-template-rows: 1fr 1fr;
    justify-items: center;
  }
  .dantaininsyo .hiyou_box .price {
    font-size: 2rem;
  }
}

@media only screen and (max-width: 599px) {
  .dantaininsyo h2 {
    font-size: 2.8rem;
  }
}

.toppa_grid_wrap {
  display: grid;
  grid-template-columns: 280px 280px 280px;
  gap: 30px;
  justify-content: center;
  margin: 4rem 0 10rem 0;
 }
 .toppa_grid {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: relative;
 }
 .toppa_grid_inner {
  width: 100%;
  aspect-ratio: 1 / 1;
  background: url(../images/toppa_fukidashi_bg.svg) no-repeat;
  background-size: cover;
  position: relative;
 }

 @supports not (aspect-ratio: 1 / 1) {
  .toppa_grid_inner {
    height: 0;
    padding-top: 100%;
  }
}
 .toppa_grid_txt {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 2rem;
 }
 .toppa_grid_inner::before {
  content: "";
  display: inline-block;
  background: url(../images/hunmer_blue.svg);
  width: 60px;
  height: 60px;
  position: absolute;
  top: -10px;
  left: 50%;
  background-size: cover;
  transform: translateX(-50%);
 }
 .toppa_grid_inner h3 {
  font-size: 2.6rem;
  text-align: center;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
  letter-spacing: 1px;
 }

 
 @media only screen and (max-width: 1024px) {
  .toppa_grid_wrap {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 30px;
    margin: 4rem 0 10rem 0;
   }
  .toppa_grid_txt h3 {
    font-size: 2.4rem;
  }
  .toppa_grid_txt p {
    font-size: 1.4rem;
  }
}
 @media only screen and (max-width: 599px) {
  .toppa_grid_wrap {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin: 4rem 0;
    align-items: start;
  }
   .toppa_grid::after {
    padding: 10px;
    font-size: 1.4rem;
    display: block;
    z-index: 2;
  }
   .toppa_grid:nth-child(1):after {
    content: "初期費用が95％オフ！安価に取得が可能！";
  }
   .toppa_grid:nth-child(2):after {
    content: "維持費用が60％オフ！負担少なく維持が可能！";
  }
   .toppa_grid:nth-child(3):after {
    content: "審査や更新対応の大部分を協会にて負担します！";
  }
   .toppa_grid_inner {
    max-width: 170px;
    aspect-ratio: 1 / 1;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-size: contain;
  }

  @supports not (aspect-ratio: 1 / 1) {
    .toppa_grid_inner {
      height: 170px;
    }
  }
   .toppa_grid_inner h3 {
    font-size: 2rem;
    margin-bottom: 0;
  }
}

#sec04 > .main-content > .dantai_hikaku_wrap > h2 {
  color: var(--color-blue);
  font-size: 3.6rem;
  margin-bottom: 3.6rem;
}

@media only screen and (max-width: 599px) {
  #sec04 > .main-content > .dantai_hikaku_wrap > h2 {   
    font-size: 2.2rem;
  }
}

.dantai_hikaku_wrap,
.voice_wrap,
.faq_wrap,
.flow_wrap {
  padding: 4rem 5rem 3.5rem 5rem;
  background-color: #fff;
  border: solid 2px #000;
  border-radius: 2rem;
  width: 960px;
  margin: 0 auto;
  box-sizing: border-box;
  position: relative;
}

@media only screen and (max-width: 768px) {
  .dantai_hikaku_wrap,
  .voice_wrap,
  .faq_wrap,
  .flow_wrap {
    padding: 2rem;
    width: 100%;
  }
}
#sec05 > .main-content { padding: 40px 50px;}
#sec05 > .main-content > h2 {
  font-size: 3.6rem;
  text-align: center;
  color: #000;
  margin: 3rem 0;
  position: relative;
  line-height: 1.2;
  font-weight: bold;
}

@media screen and (min-width: 1025px) {
  #sec05 > .main-content > h2::before {
    content: "";
    background-image: url(../images/sec05_img01.svg);
    position: absolute;
    left: 0;
    transform: translateY(-50%);
    top: 50%;
    display: inline-block;
    width: 160px;
    height: 154px;
    background-size: contain;
  }
}

#sec05 > .main-content > h2 > span {
  font-size: 4.8rem;
}

.chikara_title {
  display: grid;
  grid-template-columns: 328px 480px;
  margin: 7rem 0;
  gap: 4rem;
}

.chikara_title > .img_box {
  position: relative;
}

.chikara_title > .img_box::before {
  content: "";
  width: 325px;
  height: 85px;
  display: block;
  background-repeat: no-repeat;
  background-size: contain;
}

@media only screen and (max-width: 1024px) {
.chikara_title {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin: 7rem 0;
  gap: 4rem;
}
}

@media only screen and (max-width: 599px) {
  .chikara_title {
    grid-template-columns: 1fr;
  }
  .chikara_title > .img_box::before {
    width: 240px;
    height: 63px;
    margin-inline: auto;
  }
}

.chikara_title:nth-of-type(1) > .img_box::before {
  background-image: url(../images/chikara_txt01.png);
}

.chikara_title:nth-of-type(2) > .img_box::before {
  background-image: url(../images/chikara_txt02.png);
}

.chikara_title:nth-of-type(3) > .img_box::before {
  background-image: url(../images/chikara_txt03.png);
}

.chikara_title > .img_box > p {
  opacity: 0;
  display: none;
}

.chikara_title > .txt_box {
  padding: 2rem;
  border: solid 1px #707070;
  border-radius: 1rem;
  background-color: #fff;
  letter-spacing: 1px;
}
.chikara_title > .txt_box > h3 {
  font-size: 1.6rem;
  font-weight: bold;
}

#sec06 > .main-content > .voice_wrap > h2 {
  font-size: 2.6rem;
  text-align: center;
  color: var(--color-blue);
  margin-bottom: 4rem;
  position: relative;
  line-height: 1.4;
  font-weight: bold;
}

#sec06 > .main-content > .voice_wrap > h2 > span {
  font-size: 3.6rem;
  font-weight: 900;
}

.voice_inner {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.voice_box {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  border-bottom: solid 1px #000;
  padding-bottom: 4rem;
}

@media only screen and (max-width: 768px) {
  .voice_box {
    flex-direction: column;
    gap: 2rem;
  }
}

@media only screen and (min-width: 600px) {
  .voice_box:nth-of-type(2) {
    flex-direction: row-reverse;
  }
}

.voice_box:last-of-type {
  border-bottom: 0;
}

.voice_box .img_box {
  flex: 0 0 180px;
  position: relative;
}
.voice_box .img_box img {
  border-radius: 10px;
  width: 100%;
  height: auto;
  display: block;
}

.voice_box .img_box::after {
  content: attr(data-text);
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 0.5rem;
  background: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 1) 80%);
  color: #fff;
  font-size: 1.4rem;
  white-space: pre-line;
  line-height: 1.4;
  text-align: center;
  border-radius: 0 0 10px 10px;
}
.voice_box .txt_box {
  width: 640px;
  letter-spacing: 0.5px;
}
.quote-start { margin-left: -5px;}
.comma,.quote-end { margin-right: -5px;}

.voice_box .txt_box h3 {
  color: var(--color-blue);
  margin-bottom: 1.5rem;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  .smp_voice_title {
    display: flex;
    gap: 20px;
    margin-bottom: 1.5rem;
    align-items: flex-start;
  }
  
  .voice_box .smp_voice_title .smp_img {
    width: 100px;
    height: 140px;
    border-radius: 5px;
    flex-shrink: 0;
    background-position: top center;
    background-size: cover;
  }
  .voice_box:nth-child(1) .smp_voice_title .smp_img {
    background-image: url(../images/voice_img01.jpg);
  }
  .voice_box:nth-child(2) .smp_voice_title .smp_img {
    background-image: url(../images/voice_img02.jpg);
  }
  .voice_box:nth-child(3) .smp_voice_title .smp_img {
    background-image: url(../images/voice_img03.jpg);
  }

  .voice_box .txt_box {
    width: 100%;
  }

  .voice_box .txt_box h3 {
    flex: 1;
  }
  .voice_box .txt_box h3::before {
    content: attr(data-text);
    display: block;
    color: #000;
    font-size: 1.6rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
  }

  .voice_box .img_box.pc {
    display: none;
  }
  
}

#sec07 > .main-content > .faq_wrap > h2 {
  font-size: 3.6rem;
  text-align: center;
  color: var(--color-blue);
  margin-bottom: 4rem;
  position: relative;
  line-height: 1.4;
  font-weight: bold;
}

@media only screen and (max-width: 768px) {
  #sec07 > .main-content > .faq_wrap > h2 {
    font-size: 2.6rem;
  }
}

.faq_inner {
  margin-bottom: 4rem;
}
.faq_inner:last-of-type {
  margin-bottom: 0;
}

.faq_q {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: var(--color-blue-light);
  border: none;
  border-radius: 5px;
  padding: 2rem 4rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: background-color 0.3s;
  margin: 0;
}

.faq_q:hover {
  background: var(--color-base);
}

.faq_q i {
  transition: transform 0.3s;
  color: #fff;
}

.faq_q[aria-expanded="true"] i {
  transform: rotate(180deg);
}

.faq_a {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: all 0.3s ease-out;
  width: 780px;
  margin: 0 auto;
  font-weight: 400;
  padding: 0;
} 

 .faq_a_inner {
  padding: 1.5rem 0; 
  transform: translateY(-10px);
  transition: transform 0.3s ease-out;
 }

 .faq_a .faq_a_inner h4 { font-weight: 400;}

 .faq_a[aria-hidden="false"] {
  max-height: 1000px;
  opacity: 1;
 }
 .faq_a[aria-hidden="false"] .faq_a_inner {
  transform: translateY(0);
}
@media only screen and (max-width: 768px) {
  .faq_q {
    padding: 2rem;
  }
  .faq_q,
  .faq_a {
    font-size: 1.4rem;
    width: 100%;
  }
}
#sec08 > .main-content > .flow_wrap > h2 {
  font-size: 3.6rem;
  text-align: center;
  color: var(--color-blue);
  margin-bottom: 4rem;
  position: relative;
  line-height: 1.4;
  font-weight: bold;
}

@media screen and (max-width: 599px) {

  .faq_a {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: all 0.3s ease-out;
    width: 100%;
  }
}

.flow_inner {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 10px;
  position: relative;
  padding-bottom: 20px;
  margin-bottom: 20px;
}

@media screen and (max-width: 599px) {
  .flow_inner {
    grid-template-columns: 1fr;
    gap: 10px;
    justify-items: start;
  }
}

.flow_inner:last-child {
  padding-bottom: 0;
  margin-bottom: 0;
}

.flow_inner:not(:last-child)::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 50px 0 50px;
  border-color: var(--color-yellow) transparent transparent transparent;
}

.flow_title {
  text-align: center;
}

.flow_title p {
  display: inline-block;
  border: solid 1px #000;
  background-color: var(--color-blue);
  color: #fff;
  padding: 5px 20px;
  line-height: 1;
  border-radius: 50px;
  font-size: 1.6rem;
  font-weight: 900;
}

.flow_txt {
  margin-bottom: 20px;
  line-height: 1.2;
}

.flow_txt_title {
  font-size: 2.6rem;
  font-weight: bold;
  margin-bottom: 1.8rem;
}

.flow_txt p:last-child { margin-bottom: 0;}

.flow_inner:last-of-type .flow_txt { margin-bottom: 0;}

@media screen and (max-width: 599px) {
  .flow_title {
    padding: 0px;
  }

  .flow_title p {
    display: inline-block;
    border: solid 1px #000;
    background-color: var(--color-blue);
    color: #fff;
    padding: 10px 20px;
    line-height: 1;
    border-radius: 50px;
    font-size: 1.6rem;
    font-weight: 900;
    margin: 0;
  }

  .flow_txt {
    padding: 0px;
  }
}

.flow_txt ul {
  display: flex;
  gap: 15px;
  margin-top: 15px;
}

#sec09::before {
  content: "";
  background-image: url(../images/bg_02.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 100%;
  height: 160px;
  display: block;
}
#sec09::after {
  content: "";
  background-image: url(../images/bg_03.svg);
  background-repeat: no-repeat;
  background-size: 100% auto;
  width: 100%;
  height: 160px;
  display: block;
}
#sec09 > .main-content {
  width: 100%;
  background-color: #fff;
}

.company_wrap {
  width: 1000px;
  margin: 0 auto;
}

@media only screen and (max-width: 1024px) {
  #sec09::before,
  #sec09::after {
    height: 60px;
  }
  .company_wrap {
    width: 100%;
    padding: 3rem;
  }
}

@media only screen and (max-width: 599px) {
  #sec09::before,
  #sec09::after {
    height: 35px;
  }
}

.company_wrap h2 {
  color: var(--color-theme);
  font-size: 3.6rem;
  text-align: center;
  font-weight: bold;
}

.company_wrap h3 {
  color: var(--color-theme);
  font-size: 1.8rem;
  margin-top: 3.5rem;
  margin-bottom: 1.5rem;
  font-weight: bold;
}
.company_wrap h4 {
  font-size: 1.6rem;
  font-weight: 400;
}

.riji_wrap {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 20px;
}

.tenpo_txt { line-height: 1.2; margin-bottom: 0!important;}

.omoi_wrap {
  display: grid;
  grid-template-columns: 1fr 160px;
  gap: 20px;
  align-items: end;
}

@media only screen and (max-width: 768px) {
  .company_wrap h2 {
    font-size: 2.6rem;
  }
  .riji_wrap img { margin-inline: auto;}
  .omoi_wrap {
    grid-template-columns: 1fr;
  }
}

@media only screen and (min-width: 1025px) {
  .omoi_wrap::after {
    content: "";
    display: block;
    width: 160px;
    height: 200px;
    background: url(../images/sec09_img02.svg) no-repeat;
  }
}

@media only screen and (min-width: 1025px) {
  .main-content {
    width: 960px;
  }
}

@media only screen and (max-width: 1024px) {
  .main-content {
    width: 100%;
    padding: 20px;
  }
}



.iso-lp-form,
.iso-lp-form-thanks {
  background: url(../images/form_bg.png) repeat;
  height: 100svh;
  overflow: hidden;
  margin: 0;
}

.iso-lp-form .p-step-form__form {
  margin-top: initial;
}

.p-form-head {
  padding-bottom: 0;
}

.iso-lp-form .p-form-head__text.lp-form {
  bottom: calc(-1em - 46px);
}

.iso-lp-form .p-form__body--radio .wpcf7-list-item input[type=radio]:checked + .wpcf7-list-item-label {
  background-color: #fff;
  border-color: var(--color-theme);
  padding: 10px 20px;
}

.iso-lp-form .p-form__body--radio .wpcf7-list-item .wpcf7-list-item-label {
  padding: 10px 20px;
  background-color: #fff;
}

.iso-lp-form .radio-last-full .last { grid-column: 1 / -1; }

.iso-lp-form .p-form__btn-wrap {
  padding: 20px;
  margin-top: initial;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.iso-lp-form .p-form__list {
  margin-bottom: initial;
}

.p-form__btn:disabled {
  border: 1px solid #ddd;
  color: #a5a5a5;
  background-color: #fff;
}

.iso-lp-form .p-form__submit {
  display: inline-block;
    padding: 13px;
    min-width: 144px;
    text-align: center;
    background-color: #00913a;
    border-radius: 100vh;
    color: #fff;
    font-size: 1.6rem;
    line-height: 1.125;
    font-weight: bold;
    border: 0;
}

#form {
  height: 100%;
}

#form .main-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  width: 90vw;
  height: 100%;
  overflow: hidden;
  padding: 0;
}

#form .p-form__input-text {
  margin-bottom: 0;
}

@media only screen and (max-width: 1024px) {
  #form .main-content {
    grid-template-columns: 1fr;
  }
}

@media only screen and (max-width: 768px) {
  #form .main-content {
    width: 100%;
  }
}

@media screen and (max-width: 767px) {
  .p-form__text {
      margin-top: 0;
      font-size: 1.6rem;
  }
}

.form_l {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  height: 100%;
}

@media only screen and (max-width: 1024px) {
  .form_l {
    display: none;
  }
}

.form_l > .gba_logo {
  width: 395px;
  background-color: #fff;
  border-radius: 15px;
  padding: 1rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  box-shadow: 3px 3px 3px 0px rgba(0, 0, 0, 0.2);
}

.form_l > .gba_logo > p {
  margin: 0.5rem 0;
  font-size: 2rem;
}

.form_r {
  box-sizing: border-box;
  width: 560px;
  height: 100%;
  margin-right: auto;
  background-color: #fff;
  border: solid 1px #d0d0d0;
  overflow-y: auto;
  -ms-overflow-style: none;
  scrollbar-width: none;
}

@media only screen and (max-width: 1024px) {
  .form_r {
    width: 100%;
  }
}
.form_r::-webkit-scrollbar {
  display: none;
}

.form_r header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 2.4rem 7rem;
  justify-items: center;
  align-items: center;
}

.form_r header .h_txt { font-weight: bold;}

@media only screen and (max-width: 768px) {
  .form_r header {
    padding: 1.5rem 2rem;
  }
}

.form_wrap {
  background-color: #ebeded;
  padding: 3rem;
}

.p-form .form_wrap { padding: 0 3rem 3rem;}

.iso-lp-form-thanks .form_wrap {
  min-height: calc(100vh - 200px);
  gap: 2rem;
}

.p-form__submit:disabled {
  border: 2px solid #a2dea5;
  color: #a5a5a5;
  background-color: #fff;
}

/* デフォルトのスタイル */
.wpcf7-form-control.wpcf7-text {
  border: solid 1px #ddd;
}

/* 入力があった場合のスタイル */
.wpcf7-validates-as-required[value]:not([value=""]),
.no-required[value]:not([value=""]),
.wpcf7-form-control.wpcf7-text:not(.wpcf7-validates-as-required):not(.no-required):not(:placeholder-shown) {
  background-color: #fff;
  border: solid 2px var(--color-theme);
}

/* フォーカス時のスタイル */
.wpcf7-form-control.wpcf7-text:focus {
  outline: none;
}

/* 入力済み + フォーカス時のスタイル */
.wpcf7-validates-as-required[value]:not([value=""]):focus,
.no-required[value]:not([value=""]):focus,
.wpcf7-form-control.wpcf7-text:not(.wpcf7-validates-as-required):not(.no-required):not(:placeholder-shown):focus {
  border: solid 2px var(--color-theme);
}

/* プレースホルダーのスタイル */
.wpcf7-form-control.wpcf7-text::placeholder {
  font-size: 1.6rem;
}

/* JavaScriptで追加するクラス */
.has-value {
  border: solid 2px var(--color-theme) !important;
}

.hissu_txt { color: var(--color-red); font-size: 1.2rem;}

@media only screen and (max-width: 768px) {
  .iso-lp-form-thanks .form_wrap {
    min-height: calc(100vh - 170px);
  }
}

.iso-lp-form-thanks .form_wrap p {
  max-width: 600px;
  line-height: 1.8;
}

.thanks_subtitle {
  font-size: 2.2rem;
}

.iso-lp-form-thanks .form_wrap .form_title {
  margin-bottom: 3rem;
}
.step_wrap {
  display: grid;
  grid-template-columns: 120px 1fr;
}
.step_title {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  color: var(--color-theme);
  font-size: 2rem;
  height: 50px;
  display: flex;
  align-items: center;
}
.form_steps {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  position: relative;
}

.form_steps::before {
  content: "";
  position: absolute;
  top: 25px;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 2px;
  background: #d0d0d0;
  z-index: 0;
}
.form_steps.active02::after,
.form_steps.active03::after {
  background-color: var(--color-theme);
  width: 50%;
  height: 2px;
  content: "";
  position: absolute;
  top: 25px;
  z-index: 1;
}

.form_steps.active02::after {
  left: 0;
}
.form_steps.active03::after {
  right: 0;
}

.step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  z-index: 3;
}
.step_number {
  font-family: "Montserrat", serif;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 700;
  width: 50px;
  height: 50px;
  border-radius: 3px;
  background: #d0d0d0;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.2rem;
}
@media only screen and (max-width: 599px) {
  .step_title {
    align-items: flex-start;
  }
  .step_number {
    width: 30px;
    height: 30px;
    font-size: 1.8rem;
  }
  .form_steps::before,
  .form_steps.active02::after,
  .form_steps.active03::after {
    top: 15px;
  }
}
.step_text {
  color: #d0d0d0;
  font-size: 1.4rem;
}
.step.active .step_number {
  background: var(--color-theme);
}

.step.active .step_text {
  color: var(--color-theme);
}

.form_title {
  font-size: 1.6rem;
  font-weight: 900;
  color: var(--color-theme);
  text-align: center;
  padding-bottom: 1rem;
  border-bottom: solid 3px var(--color-theme);
  margin-top: 3rem;
}

.form_inner ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form_inner ul.gyosyu li:last-child {
  grid-column: 1 / -1;
}

.form_inner input[type="checkbox"]:not(#privacy-policy) + label,
.form_inner input[type="radio"]:not(#privacy-policy) + label {
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  padding: 10px 20px;
  background-color: #fff;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  transition: all 0.3s ease;
}

.form_inner label {
  display: block;
  margin-bottom: 0.5rem;
}

.form_inner input[type="checkbox"]:not(#privacy-policy):checked + label,
.form_inner input[type="radio"]:not(#privacy-policy):checked + label {
  border-color: var(--color-theme);
}

.form_inner input[type="radio"],
.form_inner input[type="checkbox"]:not(#privacy-policy) {
  display: none;
}
@media only screen and (max-width: 599px) {
  .form_inner label {
    padding: 1rem;
    font-size: 1.4rem;
  }
}

input::placeholder {
  font-size: 1.2rem;
  color: #999;
}

input:focus::placeholder {
  opacity: 0;
}

input::-moz-placeholder {
  font-size: 1.2rem;
  color: #999;
}
input:focus::-moz-placeholder {
  opacity: 0;
}

input::-webkit-input-placeholder {
  font-size: 1.2rem;
  color: #999;
}
input:focus::-webkit-input-placeholder {
  opacity: 0;
}

.other-content {
  margin-top: 15px;
  transition: var(--transition);
}
.other-content p {
  margin-bottom: 10px;
  font-size: 1.6rem;
}
.other-content input {
  width: 100%;
  padding: 10px;
  border: 1px solid #d0d0d0;
  border-radius: 5px;
  font-size: 1.6rem;
}
.other-content input:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}

.form_inner label.input_txt {
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.post_code_inputs {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.post_code_inputs input {
  width: 6em;
  text-align: center;
}
.post_code_inputs input:last-child {
  width: 10em;
  text-align: center;
}
.post_code_inputs .separator {
  color: #666;
}

.checkbox-group {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.checkbox-group input[type="checkbox"] {
  width: 1.6rem;
  height: 1.6rem;
}
.checkbox-group label {
  cursor: pointer;
}

.form_inner #privacy label {
  padding: 0;
  margin-bottom: 0;
}

#privacy-policy-desc {
  font-size: 1.4rem;
  margin: 2rem 0;
}

.form_bt_wrap {
  background-color: #fff;
  padding: 1.6rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

#footer {
  width: 100%;
  margin: 0;
  padding: 3.5rem 0 15rem 0;
}

.copyright {
  text-align: center;
  font-size: 1.4rem;
  color: var(--color-blue);
}

#footer .footer-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-content: center;
  flex-direction: column;
  text-align: center;
  font-size: 2rem;
}

@media only screen and (max-width: 1024px) {
  #footer .footer-inner {
    padding: 20px;
  }
}

.arrow_list {
  margin: 0;
}
.arrow_list > li {
  position: relative;
  font-weight: bold;
  line-height: 1.2;
  padding-left: 26px;
}
.arrow_list > li::before {
  content: "";
    display: inline-block;
    background-image: url(../images/arrow_01.svg);
    width: 16px;
    height: 16px;
    background-size: contain;
    margin-right: 1rem;
    background-repeat: no-repeat;
    margin-left: -26px;
}


.company_table,
.form {
  border-collapse: collapse;
  width: 100%;
  margin: 4rem auto;
  padding: 0;
  border-left: 0px solid #e3e3e3;
}

.company_table {
  border-top: 1px solid #ccc;
}

.form {
  border-top: 1px solid #000;
  margin-bottom: 20px;
}

.company_table th,
.form th {
  text-align: left;
  vertical-align: middle;
  padding: 2rem 0 1.3rem 0;
  border-right: 0px solid #e3e3e3;
}

.company_table th {
  color: #000;
  font-size: 1.6rem;
  border-bottom: 1px solid #ccc;
  width: 180px;
  vertical-align: top;
}

.form th {
  color: #000;
  font-size: 1.6rem;
  border-bottom: 1px solid #000;
}

.company_table td,
.form td {
  padding: 2rem 0 1.3rem 0;
  border-right: 0px solid #e3e3e3;
}

.company_table td {
  color: #000;
  font-size: 1.6rem;
  border-bottom: 1px solid #ccc;
}

.company_table td ul li {
  margin: 0.5rem 0;
}

.form td {
  color: #000;
  font-size: 14px;
  border-bottom: 1px solid #000;
}

.koushin_table { 
  width: 240px; 
  height: 300px; 
  border: solid 2px #000; 
  border-collapse: collapse;
  border-spacing: 0;
}

@media screen and (max-width: 768px) {
  .koushin_table { 
    width: 100%; 
    height: 300px; 
    border: solid 2px #000; 
    border-collapse: collapse;
    border-spacing: 0;
  }
}

.koushin_table thead th {
  color: #fff;
    font-size: 2.4rem;
    border-bottom: 2px solid #000;
    vertical-align: top;
    background-color: var(--color-orange);
    height: 75px;
    vertical-align: middle;
    line-height: 1.1;
    text-align: center;
}


.koushin_table tbody th {
  color: #000;
  font-size: 1.8rem;
  border-bottom: 2px solid #000;
  border-right: 2px solid #000;
  vertical-align: top;
  background-color: #fbddcb;
  height: 70px;
  padding: 10px;
  vertical-align: middle;
  line-height: 1.1;
  text-align: center;
}

.koushin_table tbody th span { font-weight: normal;}

.koushin_table td {
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
    background-color: #fff;
    writing-mode: vertical-rl;
    text-orientation: upright;
    text-align: left;
    padding-top: 10px;
    font-size: 2rem;
    letter-spacing: 4px;
    font-weight: normal;
    vertical-align: middle;
}


@media only screen and (max-width: 599px) {
  .koushin_table thead th {
      font-size: 1.8rem;
      height: initial;
      padding: 1rem;
  }
  .koushin_table tbody th {
    height: initial;    
    padding: 1rem;
  }
  .koushin_table td {
    padding: 1rem;
    font-size: 1.6rem;
    writing-mode: initial;
    letter-spacing: initial;
    text-align: center;
  }
  .table01 td { border-bottom: 0;}
}

.flow_l .koushin_table { width: 150px;}
.sec03_gyosya_flow_wrap .koushin_table { height: 330px;}
.sec03_gyosya_flow_wrap .koushin_table thead th { background-color: var(--color-theme); text-align: center;}
.sec03_gyosya_flow_wrap .koushin_table tbody th { background-color: #b5dfc6; text-align: center;}

@media only screen and (max-width: 599px) {

  .koushin_table { 
    width: 100%; 
    height: initial; 
    border: solid 2px #000; 
    border-collapse: collapse;
    border-spacing: 0;
  }

.flow_l .koushin_table {
    width: 100%;
}

.flow_l .koushin_table { width: 100%;}
.sec03_gyosya_flow_wrap .koushin_table { height: initial;}

}


@media only screen and (max-width: 1024px) {
  .company_table th {
    width: 20%;
  }
}

@media only screen and (max-width: 768px) {
  .company_table th,
  .form th {
    display: block;
    width: 100%;
    border-bottom: 0;
  }

  .company_table th {
    padding: 1rem 0 0 0;
  }

  .company_table td,
  .form td {
    display: block;
    width: 100%;
  }

  .company_table td {
    padding: 1rem 0;
  }

  .form th {
    padding-bottom: 0;
  }
}
.dantai_hikaku_table {
  margin: 0;
  border-collapse: collapse;
  border-spacing: 0;
}

.dantai_hikaku_table .kigou {
  content: "";
  width: 30px;
  height: 30px;
  display: inline-block;
  margin-bottom: 0.5rem;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
}

.dantai_hikaku_table .kigou.nijyu_maru { background-image: url(../images/nijyu_maru.svg); }
.dantai_hikaku_table .kigou.maru { background-image: url(../images/maru.svg); }
.dantai_hikaku_table .kigou.sankaku { background-image: url(../images/tryangle.svg); }
.dantai_hikaku_table .kigou.batsu { background-image: url(../images/batsu.svg); }

.dantai_hikaku_table th {
  font-weight: 600;
  text-align: center;
}

.dantai_hikaku_table th,
.dantai_hikaku_table td {
  padding: 1.5rem;
  vertical-align: top;
  text-align: center;
  width: 20%;
  background-color: #ddd;
  border: none;
  font-size: 1.6rem;
  line-height: 1.2;
  
}

.dantai_hikaku_table td div.setsumei_txt {
  text-align: left;
  font-size: 14px;
}

.dantai_hikaku_table thead th {
  font-size: 1.4rem;
}

.dantai_hikaku_table thead th:first-of-type {
  background-color: #fff;
}

.dantai_hikaku_table th:nth-child(even),
.dantai_hikaku_table td:nth-child(even) {
  background-color: #f2f2f2;
}

.dantai_hikaku_table tbody tr:first-child th,
.dantai_hikaku_table tbody tr:first-child td {
  background-color: var(--color-theme);
  border: 4px solid var(--color-yellow);
  color: #fff;
}

.dantai_hikaku_table tbody tr:first-child th:nth-child(even),
.dantai_hikaku_table tbody tr:first-child td:nth-child(even) {
  background-color: var(--color-theme-second);
}

.dantai_hikaku_table tbody th {
  vertical-align: middle;
}

.dantai_hikaku_table tbody tr:first-child th {
  font-size: 2.4rem;
}

.dantai_hikaku_table tbody td span {
  display: block;
}

@media only screen and (max-width: 599px) {
  .dantai_hikaku_table {
    display: grid;
    grid-template-columns: 60px 1fr;
    grid-template-rows: repeat(5, auto);
  }
  .dantai_hikaku_table thead {
    display: grid;
    grid-template-columns: 1fr;
    grid-row: 1 / span 5;
  }

  .dantai_hikaku_table thead tr th:nth-child(1) {
    height: 67px;
  }
  .dantai_hikaku_table thead tr th:nth-child(2) {
    height: 121px;
  }
  .dantai_hikaku_table thead tr th:nth-child(3) {
    height: 121px;
  }
  .dantai_hikaku_table thead tr th:nth-child(4) {
    height: 181px;
  }
  .dantai_hikaku_table thead tr th:nth-child(5) {
    height: 164px;
  }
  .dantai_hikaku_table tbody {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-row: 1 / span 5;
  }

  .dantai_hikaku_table tbody tr {
    display: grid;
    grid-template-rows: subgrid;
    grid-row: span 5;
  }

  .dantai_hikaku_table th,
  .dantai_hikaku_table td {
    width: 100%;
    padding: 1.2rem;
  }

  .dantai_hikaku_table thead th {
    display: flex;
    align-items: center;
    justify-content: center;
    writing-mode: vertical-rl;
  text-orientation: upright;
  }

  .dantai_hikaku_table tbody tr:first-child th {
    font-size: 1.8rem;
  }
  .dantai_hikaku_table .kigou {
    font-family: "MS Gothic", "Yu Gothic", monospace;
    font-size: 3rem;
    display: inline-block;
    line-height: 1;
    width: 3rem;
    height: 3rem;
    text-align: center;
    margin-bottom: 0.5rem;
    font-weight: 100;
  }
  .dantai_hikaku_table tbody tr:first-child th,
  .dantai_hikaku_table tbody tr:first-child td {
    border: solid 2px var(--color-yellow);
  }
  .dantai_hikaku_table td span {
    font-size: 1.4rem;
  }
  .dantai_hikaku_table td span.txt14 {
    font-size: 1.2rem;
  }
}

@media only screen and (max-width: 375px) {


  .dantai_hikaku_table thead tr th:nth-child(1) {
    height: 62px;
  }
  .dantai_hikaku_table thead tr th:nth-child(2) {
    height: 114px;
  }
  .dantai_hikaku_table thead tr th:nth-child(3) {
    height: 114px;
  }
  .dantai_hikaku_table thead tr th:nth-child(4) {
    height: 191px;
  }
  .dantai_hikaku_table thead tr th:nth-child(5) {
    height: 174px;
  }
}

#page-top {
  position: fixed;
  bottom: 0;
  right: 0;
  font-size: 1.2rem;
  z-index: 999;
  margin: 0 !important;
}

#page-top a {
  background: var(--color-theme);
  text-decoration: none;
  color: #fff;
  width: 42px;
  height: 42px;
  display: flex;
  justify-content: center;
  align-items: center;
}

@media only screen and (min-width: 1281px) {
  #page-top a:hover {
    text-decoration: none;
    background: var(--color-theme-light);
  }
}

.bt01 {
  color: #fff;
  padding: 0;
  font-size: 1.6rem;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  transition: all 0.3s;
  background-color: var(--color-theme);
  border-radius: 10px;
  border: solid 2px #000;
  line-height: 1;
  width: 200px;
  height: 54px;
  font-weight: bold;
}

.bt01:hover {
  background-color: var(--color-theme-light);
  color: var(--color-theme);
}

.bt01.seikyu::before {
  content: "";
  display: inline-block;
  width: 30px;
  height: 27px;
  background: url(../images/mail_img01.png) no-repeat;
  background-size: contain;
  aspect-ratio: 45 / 39;
  margin-right: 10px;
}

.bt01.syosai::before {
  content: "";
  display: inline-block;
  width: 32px;
  height: 35px;
  background: url(../images/syosai_img01.svg) no-repeat;
  background-size: contain;
  margin-right: 1rem;
}

.bt02 {
  color: #000;
  padding: 0.5rem 2rem;
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
  background-color: #fff;
  border-radius: 50px;
  border: solid 1px #000;
  gap: 0.5rem;
}

.bt02:hover::after {
  transform: translateX(3px);
}

.bt02:hover {
  background-color: #f5f5f5;
  color: #000;
}

.bt_form {
  color: #fff;
  padding: 1.5rem 4.8rem;
  font-size: 1.6rem;
  display: inline-flex;
  align-items: center;
  transition: all 0.3s;
  background-color: var(--color-theme);
  border-radius: 100px;
  border: solid 1px var(--color-theme);
}
.bt_form:hover {
  background-color: var(--color-theme-second);
  border: solid 1px var(--color-theme-second);
}

@media only screen and (max-width: 768px) {
  .bt01 {
    color: #fff;
    padding: 0.5rem 1.5rem;
    font-size: 1.2rem;
    display: inline-flex;
    transition: all 0.3s;
    background-color: var(--color-theme);
    border-radius: 10px;
    border: solid 0px var(--color-theme);
    height: 100%;
    width: initial;
    justify-content: center;
}
.bt01.seikyu::before {
  content: "";
  display: inline-block;
  width: 24px;
  height: 24px;
  background: url(../images/mail_img01.png) no-repeat;
  background-size: contain;
  aspect-ratio: 24 / 24;
  margin-right: 3px;
  margin-right: 5px;
}

.bt01.syosai::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 24px;
  background: url(../images/syosai_img01.png) no-repeat;
  background-size: contain;
  aspect-ratio: 24 / 24;
  margin-right: 3px;
}

  .bt02 {
    font-size: 1.4rem;
  }
}

@media only screen and (max-width: 480px) {
  #sec03 .break_title h3 {
    font-size: 2.8rem;
  }
  .ninsyo_syutokuji_box ul li {
      min-width: 60px;
    }
  #sec03 .break_title h2.break_txt {
      font-size: 2.8rem;
  }
  .bt01 {
      padding: 0.5rem 1rem;
      font-size: 1.1rem;
  }
  .bt01.seikyu::before {
    width: 20px;
    height: 20px;
  }
  .iso-lp-form, .iso-lp-form-thanks {
    height: 100svh;
  }
}

.wpcf7cf_show {
    display: block !important;
}

.wpcf7cf-hidden {
    display: none !important;
    transition: none !important;
}

/* グレーアウトボタンのスタイル */
.p-form__btn.disabled {
    cursor: not-allowed;
    opacity: 0.6;
}

/* 条件が満たされた時にグレーアウトボタンを非表示 */
.wpcf7cf-shown + .disabled-btn-wrap {
    display: none;
}

.p-form__text-detail.group { margin-top:24px;}