@charset "utf-8";
/* CSS Document */
/************************************************************ font */
/*Noto Sans（日本語）*/
@font-face {
  font-family: 'NotoSans JP';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url( "../../tpl/font/NotoSansJP-Light.woff2") format('woff2'), url( "../../tpl/font/NotoSansJP-Light.woff") format('woff');
}
@font-face {
  font-family: 'NotoSans JP';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url( "../../tpl/font/NotoSansJP-Regular.woff2") format('woff2'), url( "../../tpl/font/NotoSansJP-Regular.woff") format('woff');
}
@font-face {
  font-family: 'NotoSans JP';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url( "../../tpl/font/NotoSansJP-Medium.woff2") format('woff2'), url( "../../tpl/font/NotoSansJP-Medium.woff") format('woff');
}
@font-face {
  font-family: 'NotoSans JP';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url( "../../tpl/font/NotoSansJP-Bold.woff2") format('woff2'), url( "../../tpl/font/NotoSansJP-Bold.woff") format('woff');
}
/*SawarabiMincho-Regular（日本語）*/
@font-face {
  font-family: 'SawarabiMincho JP';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url( "../../tpl/font/SawarabiMincho-Regular.woff2") format('woff2'), url( "../../tpl/font/SawarabiMincho-Regular.woff") format('woff');
}
/*Cardo　数字*/
@font-face {
  font-family: 'Cardo';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url( "../../tpl/font/Cardo-Bold.woff2") format('woff2'), url( "../../tpl/font/Cardo-Bold.woff") format('woff');
}
/************************************************************ */
* {
  /*font-size: 100%;*/
  color: #333;
  box-sizing: border-box;
  font-family: 'NotoSans JP', 'Hiragino Sans W3', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
html {
  font-size: 62.5%;
}
body {
  width: 100%;
  margin: 0;
  padding: 0;
  font-size: 1.7rem;
  line-height: 2.0em;
  -webkit-print-color-adjust: exact;
  -webkit-text-size-adjust: 100%;
  background-color: #fcfcfc;
}
@media screen and (max-width: 1023px) {
  body {
    font-size: 1.4rem;
    line-height: 1.8;
  }
}
/* ------------------------------ color */ :root {
  --re: #D94B4B;
  --pi: #F48787;
  --lpi: #FFF1F1;
  --bl: #66B0E8;
  --lbl: #A5D8FF;
  --gr: #8FCA73;
  --dbl: #7394C0;
  --br: #857F73;
}
/* ------------------------------ レスポンシブ */
.pc {
  display: block;
}
.sp {
  display: none;
}
/* ------------------------------ img */
img {
  max-width: 100%;
  height: auto;
}
/* ------------------------------ hover*/
a {
  text-decoration: none;
  transition: .4s;
}
a:hover {
  color: var(--pi);
}
/**/
a img {
  transition: .4s;
}
a:hover img {
  opacity: 0.8;
}
/* ------------------------------ color */
.red {
  color: var(--re);
}
/* ------------------------------ position */
.center {
  text-align: center;
}
.left {
  text-align: left;
}
.right {
  text-align: right;
}
/* ------------------------------ float */
.f_left {
  float: left;
}
.f_right {
  float: right;
}
.f_left img {
  margin: 0 20px 0 0;
}
.f_right img {
  margin: 0 0 0 20px;
}
/* ------------------------------ 解除*/
hr.clear {
  clear: both;
  height: 1px;
  border: 0px;
  border: 1px solid transparent;
  color: #fff;
}
.clear {
  clear: both;
}
/****************************************  ボタン */
.btn {
  display: inline-block;
  position: relative;
  color: #fff;
  text-decoration: none !important;
  font-size: 1.6rem;
  background-color: var(--br);
  margin: 20px 10px 20px 0;
  padding: 12px 120px 12px 40px;
  border-radius: 100vh;
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.1));
  border: 2px solid var(--br);
}
.btn::before {
  display: block;
  content: '';
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: .4s;
}
.btn::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 21px;
  width: 15px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 2px) 50%;
  transition: .4s;
}
/**/
.btn:hover {
  color: #fff;
}
.btn:hover::before {
  right: 10px;
}
.btn:hover::after {
  right: 11px;
}
/****************************************  ボタン */
.btn_bk {
  display: inline-block;
  position: relative;
  color: #fff;
  text-decoration: none !important;
  font-size: 1.3rem;
  background-color: #999;
  margin: 20px 10px 20px 0;
  padding: 8px 60px 8px 28px;
  border-radius: 100vh;
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.1));
  border: 2px solid #999;
}
.btn_bk::before {
  display: block;
  content: '';
  position: absolute;
  top: calc(50% - 5px);
  right: 20px;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  -webkit-transform: rotate(-45deg);
  transform: rotate(-45deg);
  transition: .4s;
}
.btn_bk::after {
  content: "";
  position: absolute;
  top: calc(50% - 2px);
  right: 21px;
  width: 15px;
  height: 2px;
  border-radius: 9999px;
  background-color: #fff;
  transform-origin: calc(100% - 2px) 50%;
  transition: .4s;
}
/**/
.btn_bk:hover {
  color: #fff;
}
.btn_bk:hover::before {
  right: 10px;
}
.btn_bk:hover::after {
  right: 11px;
}
/************************************************************ wrapper */
#wrapper {
  background-image: url("../../form/img/second_bg.png");
  background-repeat: no-repeat;
  background-position: center top;
}
/************************************************************ header*/
header {}
#header {
  width: 100%;
}
#header .inner {
  width: 100%;
  max-width: 1920px;
  margin: 0 auto;
  padding: 0;
}
@media screen and (max-width: 1023px) {
  #header .inner {
    padding: 0;
  }
}
/****************************************  h1*/
#header .inner .logo {
  width: 100%;
  max-width: 400px;
  margin: 40px auto 0 auto;
  text-align: center;
}
@media screen and (max-width: 1439px) {
  #header .inner .logo {
    max-width: 320px;
    margin: 20px 0 0 20px;
  }
}
@media screen and (max-width: 1023px) {
  #header .inner {
    padding: 0;
  }
  #header .inner h1, #header .inner .logo {
    max-width: 320px;
  }
}
@media screen and (max-width: 575px) {
  #header .inner h1, #header .inner .logo {
    max-width: 240px;
  }
}
#header .inner .logo a {}
#header .inner .logo a img {
  width: 100%;
  height: auto;
}
/************************************************************ container*/
#container {
  width: calc(100% - 40px);
  max-width: 1280px;
  margin: 0 auto;
  padding: 80px 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: flex-start;
  justify-content: flex-start;
}
/****************************************  main*/
#main {
  width: calc(100% - 40px);
  max-width: 1280px;
  margin: 0 auto;
  padding: 0;
  -webkit-flex-grow: 1;
  flex-grow: 1;
}
@media screen and (max-width: 1023px) {
  #main {
    width: 100%;
    padding: 0 0 80px 0;
  }
}
#main h1:first-of-type {
  margin: 0 0 40px 0;
}
/****************************************  h*/
#main h1 {
  margin: 40px 0;
  padding: 0 0 0 50px;
  position: relative;
  font-size: 3.4rem;
  font-weight: 400;
  letter-spacing: 0.05em;
  color: #6B4D4B;
}
#main h1::before {
  position: absolute;
  content: "";
  width: 25px;
  height: 25px;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  border-radius: 50%;
  background: radial-gradient(#FAC7C3 20%, #FF9393 80%);
  filter: drop-shadow(0px 0px 8px rgba(255, 159, 159, .3));
}
@media screen and (max-width: 1023px) {
  #main h1 {
    font-size: 2.6rem;
    padding: 0 0 0 40px;
  }
  #main h1::before {
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 575px) {
  #main h1 {
    margin: 20px 0;
    font-size: 2.2rem;
    padding: 0 0 0 35px;
  }
  #main h1::before {
    width: 18px;
    height: 18px;
  }
}
#main h2 {
  margin: 40px 0;
  padding: .9em 1em;
  color: #777;
  font-size: 2.8rem;
  background: #F8F5EE;
  border-radius: 7px 7px 0 0;
}
@media screen and (max-width: 1023px) {
  #main h2 {
    margin: 20px 0;
    padding: .7em 1em;
    font-size: 2.0rem;
  }
}
#main h3 {
  margin: 40px 0;
  padding: 10px 0 10px 32px;
  position: relative;
  font-size: 2.6rem;
  color: #464F56;
}
#main h3::before {
  position: absolute;
  content: "";
  width: 5px;
  height: 75%;
  left: 0;
  border-radius: 10px;
  border: 5px solid var(--bl);
}
@media screen and (max-width: 1023px) {
  #main h3 {
    margin: 20px 0;
    padding: 10px 0 10px 24px;
    font-size: 1.8rem;
  }
  #main h3::before {
    width: 4px;
    border: 4px solid var(--bl);
  }
}
/****************************************  リスト共通*/
#main .contents ul, #main ol {
  margin: 10px 0 0 10px;
  list-style: none;
}
#main .contents ul li, #main .contents ol li {
  position: relative;
  padding-left: 28px;
  margin: 5px 0;
}
#main .contents ul li::before, #main .contents ol li::before {
  content: '';
  display: inline-block;
  position: absolute;
  left: 0;
}
/* ------------------------------ ul*/
#main .contents ul li::before {
  top: 0.7em;
  width: 11px;
  height: 11px;
  background-color: var(--pi);
  border-radius: 50%;
}
/* ------------------------------ ol*/
#main .contents ol {
  counter-reset: item;
  padding: 0;
  /*padding-left: 0;*/
}
#main .contents ol li {
  text-indent: 0;
}
#main .contents ol li::before {
  counter-increment: item;
  content: counter(item)'';
  font-family: 'Cardo';
  top: 0.05em;
  font-size: 130%;
  color: var(--pi);
}
#main .contents ol li:nth-child(n+10)::before {
  left: -10px;
}
@media screen and (max-width: 1023px) {
  #main ul, #main ol {
    margin: 5px 0 0 5px;
  }
  #main ul li, #main ol li {
    padding-left: 20px;
  }
  #main ul li::before {
    width: 9px;
    height: 9px;
    top: 0.6em;
  }
  #main ol li::before {
    top: -0.05em;
  }
}
/* ------------------------------ box_1*/
#main .contents .box_1 {
  margin: 20px 0;
  padding: 20px 30px;
  border: 4px solid #F8D0D0;
  border-radius: 10px;
}
#main .contents .box_1 h2 {
  margin: 5px 0 10px 0;
  padding: 0;
  color: #777;
  background: none;
  border-radius: 0;
  font-size: 1.9rem;
  font-weight: 500;
  color: var(--br);
}
@media screen and (max-width: 1023px) {}
/************************************************************ footer*/
footer {}
#footer {
  background-color: #E3EEF7;
  background-image: url("../../form/img/footer_bg.png");
  background-repeat: no-repeat;
  background-position: 100% 0%;
}
#footer .inner {
  width: calc(100% - 40px);
  max-width: 1280px;
  margin: 0 auto;
  padding: 20px 0;
  display: block;
}
/* ---------- info*/
#footer .info {}
#footer .info .top {
  padding: 20px 0;
  position: relative;
}
#footer .info .top .f_logo {
  width: 100%;
  max-width: 400px;
  margin: 20px auto 40px auto;
}
/**/
#footer .copy {
  width: 100%;
  text-align: center;
}
#footer small, #footer small span {
  font-size: 1.3rem;
  color: #8AC1EA;
}
/************************************************************ form */
/**************************************** flow*/
#main .contents .flow {
  margin: 0 auto;
  padding: 60px 0 40px 0;
}
#main .contents .flow ol {
  counter-reset: item;
  width: 100%;
  margin: 0;
  padding: 0;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  position: relative;
}
#main .contents .flow ol::after {
  position: absolute;
  content: "";
  width: calc(100% - 30%);
  margin: 0 auto;
  height: 6px;
  top: -6px;
  left: 0;
  right: 0;
  border-top: 3px solid #eee;
  z-index: -1;
}
#main .contents .flow ol li {
  width: 33%;
  margin: 0;
  padding: 0;
  text-indent: 0;
  text-align: center;
  position: relative;
  display: -webkit-flex;
  display: flex;
  -webkit-justify-content: space-around;
  justify-content: space-around;
  -webkit-align-items: flex-start;
  align-items: flex-start;
  -webkit-flex-direction: column;
  flex-direction: column;
}
#main .contents .flow ol li::before {
  counter-increment: item;
  content: counter(item)'';
  font-family: 'Cardo';
  top: 0.05em;
  font-size: 3.2rem;
  line-height: 2.5em;
  color: #fff;
  top: -2em;
  left: 0;
  right: 0;
  margin: 20px auto;
  background: #FFF1F1;
  width: 80px;
  height: 80px;
  border-radius: 50%;
}
#main .contents .flow ol li.on::before {
  background: var(--pi);
}
#main .contents .flow ol li:nth-child(n+10)::before {
  left: -10px;
}
/**/
#main .contents .flow ol li span {
  display: block;
  margin: 60px auto 0 auto;
  color: #ccc;
}
#main .contents .flow ol li.on span {
  color: #6B4D4B;
}
/************************************************************ form */
/****************************************  table*/
#form .form {
  width: 100%;
  margin: 40px 0;
}
#form .form th, #form .form td {
  padding: 20px;
  border: 1px solid var(--bl);
  background-color: #fff;
}
@media screen and (max-width: 1023px) {
  #form .form th, #form .form td {
    padding: 10px;
  }
}
#form .form th {
  width: 25%;
  color: #777;
  background-color: #edf7ff;
}
#form .form td {
  vertical-align: middle;
  line-height: 1.6em;
}
/**/
#form .form th .required {
  display: block;
  color: var(--re);
  font-size: 80%;
  white-space: nowrap;
  line-height: 2.0em;
  margin: 0;
  padding: 0;
  border-radius: 5px;
  margin-left: auto;
}
/**/
#form .form td span {
  font-size: 85%;
}
#form .form td .title {
  display: block;
  margin: 0 0 5px 0;
  padding: 0;
  color: #777;
  font-size: 95%;
  font-weight: bold;
}
#form .form td .note {
  display: block;
  color: #777;
}
/**/
#form .form td .out_hosp_txt {
  font-size: inherit;
}
#form .form td .out_hosp_txt strong {
  padding-left: 0.5em;
}
/**************************************** input*/
#form input {
  font-family: 'NotoSans JP', 'Hiragino Sans W3', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
  border-radius: 5px;
  background: #f7f7f7;
  font-size: 1em;
  line-height: 1.5;
  padding: .4em .8em;
  border: 2px solid #ccc;
  transition: .4s;
}
@media screen and (max-width: 1023px) {
  #form input {
    font-size: 1.6rem; /*iphone文字入力時のズームを防ぐ*/
  }
}
#form input:focus {
  outline: none;
  background: #fff;
  border: 2px solid var(--bl);
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.1));
}
/**************************************** テキストボックス*/
#form input[type="text"] {
  margin: 4px;
  /*margin: 0px;
  padding: 10px;
  border: 1px solid #ccc;
  border-radius: 5px;
  box-shadow: 0px 1px 2px 0px #ccc inset;*/
}
#form input[type="text"]:focus {
  /*border: 1px solid #B4CDE4;
  outline: none;
  padding: 10px;
  background-color: #F3F5F5;*/
}
/**************************************** date*/
#form input[type="date"] {
  min-height: 40px;
  width: 180px;
}
#form input[type="date"]::-webkit-date-and-time-value {
  text-align: left; /*safariて左寄せにする*/
}
/**/
.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%;
}
.w15 {
  width: 15%;
}
@media screen and (max-width: 767px) {
  .w100, .w90, .w80, .w70, .w60, .w50 {
    width: 100%;
  }
  .w40, .w30, .w20, .w15 {
    width: 50%;
  }
}
@media screen and (max-width: 480px) {
  .w100, .w90, .w80, .w70, .w60, .w50 {
    width: 100%;
  }
  .w40, .w30, .w20, .w15 {
    width: 60%;
  }
}
/**************************************** セレクトボックス*/
#form select {
  appearance: none;
  min-width: 200px;
  height: 2.8em;
  padding: .4em calc(.8em + 30px) .4em .8em;
  border-radius: 5px;
  background: #f7f7f7;
  cursor: pointer;
  border: 2px solid #ccc;
}
@media screen and (max-width: 480px) {
  #form select {
    max-width: 220px;
  }
}
#form select:focus {
  outline: none;
  background: #fff;
  border: 2px solid var(--bl);
}
/*矢印*/
#form .selectbox {
  display: inline-flex;
  align-items: center;
  position: relative;
}
#form .selectbox::after {
  position: absolute;
  right: 15px;
  width: 10px;
  height: 7px;
  background-color: #535353;
  clip-path: polygon(0 0, 100% 0, 50% 100%);
  content: '';
  pointer-events: none;
}
/**************************************** チェックボックス*/
#form input[type="checkbox"], #form input[type="radio"] {
  margin: 5px;
}
#form .list_check {
  display: flex;
  flex-wrap: wrap;
  gap: .5em 2em;
  border: none;
}
#form .list_check label {
  display: flex;
  align-items: center;
  gap: 0 .5em;
  position: relative;
  cursor: pointer;
}
#form .list_check label::before {
  width: 18px;
  height: 18px;
  border-radius: 3px;
  border: 2px solid #ccc;
  content: '';
  background-color: #fff;
  flex-shrink: 0;
}
#form .list_check label:has(:checked)::after {
  position: absolute;
  top: 40%;
  left: 7px;
  transform: rotate(45deg);
  width: 7px;
  height: 14px;
  border: solid #2589d0;
  border-width: 0 3px 3px 0;
  content: '';
}
#form .list_check input {
  display: none;
}
/**************************************** ラジオボタン*/
#form .list_radio {
  gap: .3em 2em;
  border: none;
  list-style: none;
}
#form .list_radio li {
  margin: 0;
  padding: 6px 0;
}
#form .list_radio label {
  display: flex;
  align-items: center;
  gap: 0 .5em;
  position: relative;
  cursor: pointer;
}
#form .list_radio label::before, #form .list_radio label::after {
  border-radius: 50%;
  content: '';
}
#form .list_radio label::before {
  width: 21px;
  height: 21px;
  border: 2px solid #ccc;
  box-sizing: border-box;
  background-color: #fff;
  flex-shrink: 0;
}
#form .list_radio label::after {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translate(-50%, -50%);
  width: 11px;
  height: 11px;
  background-color: #dee5eb;
}
#form .list_radio label:has(:checked)::after {
  background-color: var(--bl);
  animation: ani-radio .3s linear;
}
@keyframes ani-radio {
  0% {
    box-shadow: 0 0 0 1px transparent;
  }
  50% {
    box-shadow: 0 0 0 10px #2589d033;
  }
  100% {
    box-shadow: 0 0 0 10px transparent;
  }
}
#form .list_radio input {
  display: none;
}
/**************************************** テキストエリア*/
#form textarea {
  width: 100%;
  border: none;
  border-radius: 5px;
  background: #f7f7f7;
  font-size: 1em;
  line-height: 1.5;
  padding: .4em .8em;
  border: 2px solid #ccc;
  transition: .4s;
}
#form textarea:focus {
  outline: none;
  background: #fff;
  border: 2px solid var(--bl);
  filter: drop-shadow(0px 0px 3px rgba(0, 0, 0, 0.1));
}
@media screen and (max-width: 1023px) {
  #form textarea {
    font-size: 1.6rem; /*iphone文字入力時のズームを防ぐ*/
  }
}
/************************************************************ error */
#form td.error {
  background-color: var(--lpi);
}
#form td.error .error {
  font-weight: bold;
  color: #FF0000;
  margin: 0 0 4px 0;
  font-size: 95%;
}
/**/
#form div.list_check.error .error {
  width: 100%;
  font-weight: bold;
  color: #FF0000;
  margin: 0 0 10px 0;
  font-size: 95%;
  background-color: var(--lpi);
  border-radius: 7px;
  display: block;
}
#form div.error {
  width: 100%;
  margin: 0;
  padding: 10px 20px;
  background-color: var(--lpi);
}
#form div.error p.error {
  font-weight: bold;
  color: #FF0000;
  font-size: 95%;
  display: block;
  white-space: nowrap;
  line-height: 1.0em;
}
#form div.error_check p {
  width: 100%;
  font-weight: bold;
  color: #FF0000;
  margin: 40px 0 20px 0;
  padding: 10px 20px;
  font-size: 95%;
  background-color: var(--lpi);
  border-radius: 7px;
  display: block;
}
/*div.error {
  padding: 20px;
  margin-bottom: 20px;
  color: #FF5353;
  text-align: center;
  background-color: #FFEEEE;
}
p.error {
  color: #FF5353;
}
td.error {
  background-color: #FFEEEE;
}
.error em {
  color: #FF5353;
  display: block;
  font-style: normal;
  font-size: 90%;
}*/
/************************************************************ message */
/*.message {
  padding: 20px;
  margin-bottom: 20px;
  text-align: center;
  border: 1px solid #ccc;
  background-color: #F1F1F1;
}*/
/************************************************************ button */
/*#form .btn_form {
  text-align: center;
  padding: 20px 0px 30px 0px;
}
#form  .btn_form input {
  display: inline-block;
  margin: 0px 10px;
  padding: 15px;
  width: 230px;
  font-size: 130%;
  color: #fff;
  border: none;
  border-radius: 4px;
  background-color: #035fb8;
  box-shadow: 0px 3px 0px 1px #01489a;
  background-repeat: no-repeat;
  background-position: 25% 50%;
  opacity: 1;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  font-family: 'NotoSans JP', 'Hiragino Sans W3', 'Hiragino Kaku Gothic ProN', 'ヒラギノ角ゴ ProN W3', 'メイリオ', 'Meiryo', 'ＭＳ Ｐゴシック', 'MS PGothic', sans-serif;
}
#form  .btn_form input:hover {
  opacity: 0.7;
  cursor: pointer;
}*/
/************************************************************ agree */
.link {
  display: block;
  width: 100%;
}
.link a {
  text-decoration: underline;
  font-size: 85%;
}