@charset "UTF-8";
@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 400;
  src: url("../fonts/NotoSansJP-Regular.woff") format("woff");
  font-display: swap;
}

@font-face {
  font-family: "Noto Sans JP";
  font-style: normal;
  font-weight: 700;
  src: url("../fonts/NotoSansJP-Bold.woff") format("woff");
  font-display: swap;
}

/*--------------------------------------------------------
animation
--------------------------------------------------------*/
.animated {
  animation-duration: 1s;
  animation-timing-function: ease;
  animation-fill-mode: both;
}

@keyframes pickup {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

.pickup {
  display: block;
  animation-name: pickup;
  animation-duration: 1.5s;
  animation-fill-mode: both;
  animation-delay: 0s;
  animation-iteration-count: infinite;
}

/*********************
* fadeInRightShort
*********************/

@keyframes fadeInRightShort {
  0% {
    opacity: 0;
    transform: translateX(20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeInRightShort {
  opacity: 0;
  transform: translateX(20px);
}

.fadeInRightShort.go {
  animation-name: fadeInRightShort;
}

/*********************
* fadeInLeftShort
*********************/

@keyframes fadeInLeftShort {
  0% {
    opacity: 0;
    transform: translateX(-20px);
  }
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.fadeInLeftShort {
  opacity: 0;
  transform: translateX(-20px);
}

.fadeInLeftShort.go {
  animation-name: fadeInLeftShort;
}

/*********************
* fadeInUpShort
*********************/

@keyframes fadeInUpShort {
  0% {
    opacity: 1;
    transform: translateY(40px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.fadeInUpShort {
  opacity: 0;
  transform: translateY(20px);
}

.fadeInUpShort.go {
  animation-name: fadeInUpShort;
}

/***********
* bounceIn *
************/
@keyframes bounceIn {
  0% {
    transform: scale(0.8);
  }
  100% {
    transform: scale(1);
  }
}

.bounceIn.go {
  animation-name: bounceIn;
  transform-origin: center;
}

/*********************
* fadeInUpShort
*********************/
/***********
* ddn *
************/
/*--------------------------------------------------------
Reset
--------------------------------------------------------*/
*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  font-size: 62.5%;
  overflow: auto;
}

html:focus-within {
  scroll-behavior: smooth;
}

body {
  overflow: hidden;
  font-size: 1.6rem;
  /*16px*/
  line-height: 1.5;
  font-family: "Noto Sans JP", "游ゴシック Medium", "游ゴシック体", "Yu Gothic Medium", YuGothic, "ヒラギノ角ゴ ProN", "Hiragino Kaku Gothic ProN", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", "MS PGothic", sans-serif;
  text-align: justify;
  text-justify: inter-ideograph;
  font-feature-settings: "palt" 1;
  min-height: 100vh;
  text-rendering: optimizeSpeed;
}

body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
blockquote,
ul,
ol,
dl,
dd {
  margin: 0;
}

ul,
ol {
  list-style: none;
  padding-left: 0;
}

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

a:not([class]) {
  text-decoration-skip-ink: auto;
}

input,
button,
textarea,
select {
  font: inherit;
}

li {
  list-style: none;
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
  color: #000;
}

a:hover {
  text-decoration: none;
}

/*a img:hover { opacity: 0.9; -moz-opacity: 0.9;}*/
a img {
  border-style: none;
}

img {
  vertical-align: bottom;
  /* 一番上の画像だけ注意。隙間が空く可能性あり */
  line-height: 0 !important;
  /* display:block; */
}

button {
  background-color: transparent;
  border: none;
  backface-visibility: hidden;
}

button:focus {
  outline: none;
}

button:hover {
  cursor: pointer;
}

input:focus,
select:focus {
  outline: none;
}

/*--------------------------------------------------------
定数（基本的に、全サイト共通に使えるもの）
--------------------------------------------------------*/
.c {
  text-align: center !important;
}

.cm {
  margin-left: auto;
  margin-right: auto;
}

.r {
  text-align: right !important;
}

.l {
  text-align: left !important;
}

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

.block {
  display: block;
}

.vertical-top {
  vertical-align: top;
}

.vertical-middle {
  vertical-align: middle;
}

.pointer {
  cursor: pointer;
}

.br::before {
  content: "\A";
  white-space: pre;
}

.margin_b100 {
  margin-bottom: 100px;
}

.margin_b90 {
  margin-bottom: 90px;
}

.margin_b80 {
  margin-bottom: 80px;
}

.margin_b70 {
  margin-bottom: 70px;
}

.margin_b60 {
  margin-bottom: 60px;
}

.margin_b50 {
  margin-bottom: 50px;
}

.margin_b40 {
  margin-bottom: 40px;
}

.margin_b30 {
  margin-bottom: 30px;
}

.margin_b20 {
  margin-bottom: 20px;
}

.margin_b10 {
  margin-bottom: 10px;
}

.padding_t100 {
  padding-top: 100px;
}

.padding_t90 {
  padding-top: 90px;
}

.padding_t80 {
  padding-top: 80px;
}

.padding_t70 {
  padding-top: 70px;
}

.padding_t60 {
  padding-top: 60px;
}

.padding_t50 {
  padding-top: 50px;
}

.padding_t40 {
  padding-top: 40px;
}

.padding_t30 {
  padding-top: 30px;
}

.padding_t20 {
  padding-top: 20px;
}

.padding_t10 {
  padding-top: 10px;
}

@media screen and (max-width: 900px) {
  .margin_b100 {
    margin-bottom: 11%;
  }
  .margin_b90 {
    margin-bottom: 10%;
  }
  .margin_b80 {
    margin-bottom: 9%;
  }
  .margin_b70 {
    margin-bottom: 8%;
  }
  .margin_b60 {
    margin-bottom: 7%;
  }
  .margin_b50 {
    margin-bottom: 6%;
  }
  .margin_b40 {
    margin-bottom: 5%;
  }
  .margin_b30 {
    margin-bottom: 4%;
  }
  .margin_b20 {
    margin-bottom: 3%;
  }
  .margin_b10 {
    margin-bottom: 2%;
  }
  .padding_t100 {
    padding-top: 11%;
  }
  .padding_t90 {
    padding-top: 10%;
  }
  .padding_t80 {
    padding-top: 9%;
  }
  .padding_t70 {
    padding-top: 8%;
  }
  .padding_t60 {
    padding-top: 7%;
  }
  .padding_t50 {
    padding-top: 6%;
  }
  .padding_t40 {
    padding-top: 5%;
  }
  .padding_t30 {
    padding-top: 4%;
  }
  .padding_t20 {
    padding-top: 3%;
  }
  .padding_t10 {
    padding-top: 2%;
  }
}

.visible1800, .visible1000, .visible900, .visible750, .visible600, .visible500, .visible400, .visible320 {
  display: none;
}

/* clearfix */
.clearfix:after {
  content: "";
  clear: both;
  display: block;
}

/*重なりの優先度*/
.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

/*要素固定*/
.fixed {
  position: fixed;
  z-index: 999;
}

.z0 {
  z-index: 0;
}

.z1 {
  z-index: 1;
}

.z2 {
  z-index: 2;
}

.z3 {
  z-index: 3;
}

.z4 {
  z-index: 4;
}

.z5 {
  z-index: 5;
}

.z6 {
  z-index: 6;
}

.z7 {
  z-index: 7;
}

.z8 {
  z-index: 8;
}

.z9 {
  z-index: 9;
}

.z10 {
  z-index: 10;
}

/*横幅*/
.w100 {
  width: 100%;
}

.w90 {
  width: 90%;
}

.w80 {
  width: 80%;
}

.w70 {
  width: 70%;
}

.w60 {
  width: 60%;
}

.w50 {
  width: 50%;
}

.w40 {
  width: 40%;
}

.w30 {
  width: 30%;
}

.w20 {
  width: 20%;
}

.w10 {
  width: 10%;
}

.disabled {
  pointer-events: none;
  /*リンクを無効にする*/
}

.cp {
  font-family: Verdana,"Droid Sans","メイリオ",sans-serif;
}

.vh100 {
  height: 100%;
  min-height: 100vh;
}

/*--------------------------------------------------------
サイト毎に変化のある定数
--------------------------------------------------------*/
.fullscreen {
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}

.contents {
  width: 900px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.contents1800 {
  width: 100%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}

.contents1000 {
  width: 100%;
  max-width: 1000px;
  margin-left: auto;
  margin-right: auto;
}

.contents1800 {
  width: 100%;
  max-width: 1800px;
  margin-left: auto;
  margin-right: auto;
}

.img_center {
  margin-left: -450px;
}

.white {
  color: #fff;
}

.black {
  color: #303030;
}

.red {
  color: #f00;
}

.gray {
  color: #555;
}

.bold {
  font-weight: bold;
}

.bg_black {
  background-color: #303030;
}

.bg_white {
  background-color: #fff;
}

.bg_red {
  background-color: #f00;
}

.bg_clear {
  background-color: transparent;
}

/*--------------------------------------------------------
ヘッダー
--------------------------------------------------------*/
header {
  width: 100%;
  top: 0;
  margin: 0 auto;
  line-height: 0;
  /* 画像の上下に隙間が空いてしまう対策 */
}

/*--------------------------------------------------------
フッター
--------------------------------------------------------*/
/* footer {
  z-index: 2;
  text-align: center;
  color: #303030;
  background: #FFFFEA;
  bottom: 0;
  left: 0;
  right: 0;
} */
footer {
  z-index: 2;
  /* text-align: center; */
  color: #333;
  bottom: 0;
  left: 0;
  right: 0;
}

.wrapper {
  position: relative;
  box-sizing: border-box;
  padding-bottom: 3%;
}

.footer {
  background-color: #feffeb;
}

.p_copyright {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 7px 3%;
  font-size: 3rem;
}

.copyright,
.copyright a {
  color: #303030;
}

.copyright a:hover {
  text-decoration: underline;
}

/*--------------------------------------------------------
↓↓↓ 各種レイアウト ↓↓↓
--------------------------------------------------------*/
/*--header--*/
/*--header-end--*/
/*--contents--*/
.tpr_01 img {
  height: 1385px;
}

.btn_1 {
  top: 48%;
}

.tpr_02 img {
  height: 1500px;
}

.tpr_03 {
  margin-top: -14%;
}

.tpr_03 img {
  height: 1550px;
}

.tpr_15 img {
  height: 950px;
}

.tpr_04 img {
  height: 1090px;
}

.tpr_04_1 {
  top: -16%;
}

.tpr_04_2 {
  bottom: 0%;
}

.tpr_05 img {
  height: 750px;
}

.tpr_06 img {
  height: 545px;
}

.btn_2 {
  top: 22%;
}

.tpr_07 img {
  height: 2114px;
}

.tpr_08 {
  bottom: 0;
}

.tpr_08 img {
  height: 85px;
}

.tpr_08_1 {
  bottom: 0;
}

.tpr_08_1 img {
  height: 327px;
}

.tpr_09 img {
  height: 1452px;
}

.tpr_10 img {
  height: 1635px;
}

.tpr_11 img {
  height: 2320px;
}

.tpr_12 {
  margin-top: -10%;
}

.tpr_12 img {
  height: 1099px;
}

.tpr_12_1 {
  top: 26%;
}

.tpr_03_2 {
  margin-top: -27%;
}

.tpr_03_2 img {
  height: 1550px;
}

.tpr_13.contents1800 {
  background: #FFFFEA;
}

.tpr_13 img {
  height: 280px;
}

.tpr_13_1 img {
  height: 1505px;
}

.tpr_13_2 img {
  height: 1485px;
}

.tpr_13_3 img {
  height: 1495px;
}

.tpr_13_4 img {
  height: 1485px;
}

.tpr_13_5 img {
  height: 1495px;
}

.tpr_13_6 img {
  height: 1540px;
}

/*--contents-end--*/
/*--footer--*/
/*--footer-end--*/
/* --プラポリ-- */
.privacy_wrap {
  color: #303030;
  margin-left: auto;
  margin-right: auto;
}

.privacy_title img {
  height: 130px;
}

.privacy_head {
  width: 90%;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 5rem;
  text-align: center;
}

.privacy_head h2 {
  font-weight: normal;
}

.privacy_contents {
  width: 90%;
  border-radius: 20px;
  padding: 10px 20px;
  font-size: 3rem;
}

.privacy_contents p {
  margin-bottom: 2rem;
}

.privacy_subtitle {
  font-size: 1.25em;
}

.icon {
  position: relative;
  line-height: 0.5em;
  margin-bottom: 2rem;
  padding-left: 1em;
}

.icon::before {
  content: "";
  position: absolute;
  left: 0;
  background-size: contain;
  display: inline-block;
  width: 0.5em;
  height: 0.5em;
  background: #8D93D6;
  transform: rotate(45deg);
}

.back_btn {
  font-size: 3rem;
  display: inline-block;
  padding: 2rem 16rem;
  background: #8D93D6;
}

/* --プラポリ-end-- */
/*--------------------------------------------------------
↑↑↑ 各種レイアウト ↑↑↑
--------------------------------------------------------*/
/*--------------------------------------------------------
↓↓↓ フォーム部分 ↓↓↓
--------------------------------------------------------*/
label {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

::placeholder {
  color: #555;
}

.form_title {
  font-size: 2.5em;
}

.form_frame {
  width: 68%;
  margin-bottom: 5rem;
}

.form_field {
  font-size: 2.5rem;
}

.form_field input[type="text"],
.form_field input[type="email"],
.form_field input[type="password"],
.form_field select,
.form_field textarea {
  -webkit-appearance: none;
  width: 100%;
  padding: 1% 2% 1% 2%;
  border: 1px solid #303030;
}

.form_field label,
.form_field input[type="radio"] {
  cursor: pointer;
}

.form_field p:first-child {
  padding-top: 2rem;
  padding-bottom: 0.5rem;
}

.radio_wrap {
  display: flex;
  justify-content: space-between;
}

.err_msg {
  color: #f00;
  font-size: 0.8em;
}

.include_text_wrap {
  width: 80%;
  padding: 1% 1% 1% 2%;
  border: 2px solid #303030;
  border-radius: 5px;
}

.include_text {
  height: 15rem;
  padding-right: 1%;
  overflow-y: scroll;
}

.scroll::-webkit-scrollbar {
  width: 15px;
  -webkit-appearance: none;
}

.scroll::-webkit-scrollbar-thumb {
  background: #f00;
}

/********
ラジオボタン
********/
.radio-input {
  -webkit-appearance: none;
  position: absolute;
}

.radio-parts {
  position: relative;
  display: flex;
  align-items: center;
}

.radio-parts::before {
  content: '';
  display: block;
  margin-right: 5px;
  border-radius: 50%;
  border: 1px solid #303030;
  width: 16px;
  height: 16px;
}

.radio-input:checked + .radio-parts::after {
  content: '';
  position: absolute;
  left: 4px;
  display: block;
  border-radius: 50%;
  width: 8px;
  height: 8px;
  background-color: #303030;
}

/********
チェックボックス
********/
.checkbox {
  margin-left: 10%;
}

.checkbox span {
  font-size: 2.5rem;
  font-weight: bold;
  cursor: pointer;
}

.checkbox-input {
  display: none;
}

.checkbox-input:checked + .checkbox-parts::after {
  content: "";
  position: absolute;
  top: -4px;
  left: 7px;
  width: 14px;
  height: 28px;
  transform: rotate(40deg);
  border-bottom: 5px solid #f00;
  border-right: 5px solid #f00;
}

.checkbox-input:checked ~ span {
  color: #f00;
}

.checkbox-parts {
  position: relative;
  /* padding-top:30px; */
  padding-left: 40px;
}

.checkbox-parts::before {
  content: "";
  display: block;
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  left: 0;
  width: 25px;
  height: 25px;
  border: 2px solid #303030;
  border-radius: 4px;
}

/*--------------------------------------------------------
↑↑↑ フォーム部分 ↑↑↑
--------------------------------------------------------*/
/*# sourceMappingURL=base.css.map */

.inside-text {
  display: flex;
  gap: 10%;
  border-bottom: solid 1px #ACD5FF;
  margin-bottom: 2%;
  padding-bottom: 1%;
}
.inside-container {
  background-color: #E6F2FF;
  color: #4588C1;
  width: 85%;
  margin: 0 auto;
  padding: 6% 5% 2% 5%;
  margin-top: -3%;
  border-radius: 0 0 20px 20px;
}
.inside {
  background-color: #E6F2FF;
  color: #4588C1;
  width: 85%;
  margin: 0 auto;
  padding-top: 6%;
  padding-bottom: 2%;
  margin-top: -3%;
  border-radius: 0 0 20px 20px;
}
.space {
  letter-spacing: 0.3rem;
} 
.space1 {
  letter-spacing: 0.5rem;
}
.space2 {
  letter-spacing: 1rem;
}
.space3 {
  letter-spacing: 0.3rem;
}
.space4 {
  letter-spacing: 0.7rem;
}
.pb2 {
  padding-bottom: 2%;
}
.service {
  padding: 0 5%;
  padding-bottom: 3%;
}
.hr-service {
  width: 95%;
  border: none;
  border-bottom: solid 1px #ACD5FF;
  margin-bottom: 2%;
}
.inside-text2 {
  display: flex;
  /* gap: 10%; */
  border-bottom: solid 1px #ACD5FF;
  margin-bottom: 2%;
  padding-bottom: 1%;
}
#label3_text .inside-text2>p:nth-of-type(1) {
  width: 200px;
}
#label3_text .inside-text2>p:nth-of-type(2) {
  width: 500px;
  margin-left: 20px;
}
.accordion-content {
  display: none;
}
.accordion-content p {
  text-align: justify;/* テキストの両端揃え */
  text-justify: inter-ideograph; /* 文字間隔の調整方法:「表意文字間」 のスペースを調整 */
  font-feature-settings: "palt"; /* 特定の機能を有効化または無効化 */
}
.span span {
  display: inline-block;
}
.bg label {
  display: block;
  background-color: #ACD5FF;
  color: #346691;
  width: 85%;
  margin: 0 auto;
  padding: 2%;
  border-radius: 15px;
  font-size: 20px;
}
.sklup_13 {
  position: absolute;
  left: 90%;
  top: 50%;
  transform: translate(0, -50%);
}