@charset "UTF-8";

::selection {
  background: #B4ADA9;
  color: #ffffff;
}

* {
  margin: 0px;
  padding: 0px;
}

a {
  text-decoration: none;
  color: #333;
  transition: 0.3s;
}

a:hover {
  opacity: 0.7;
}

html {
  font-size: 62.5%;
}

body {
  margin: 0;
  font-family: "Noto Sans JP", "游ゴシック体", "Yu Gothic", YuGothic, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, "ＭＳ Ｐゴシック", sans-serif;
  font-size: 1.4rem;
  font-style: normal;
  font-weight: 400;
  color: #333333;
  background: #ffffff;
  position: relative;
}

/* ---- font------- */
.fw100 {
  font-weight: 100
}

.fw300 {
  font-weight: 300
}

.fw400 {
  font-weight: 400
}

.fw500 {
  font-weight: 500
}

.fw600 {
  font-weight: 600
}

.fw700 {
  font-weight: 700
}

/* ---- display------- */
.pc-block {
  display: block
}

.pc-inline {
  display: inline
}

.sp-block,
.sp-inline {
  display: none
}

@media screen and (max-width: 768px) {
  .pc-block {
    display: none
  }

  .sp-block {
    display: block
  }
}

@media screen and (max-width: 480px) {
  .pc-inline {
    display: none
  }

  .sp-inline {
    display: inline
  }
}

/* ---- 背景------- */
.bg_sub {
  background: #f7f5f2;
}

.bg_sub2 {
  background: #EEE9E6;
}

.bg_pink {
  background: #ED7A9B;
}

.bg_blue {
  background: #589DCD;
}

.bg_green {
  background: #8FC21F;
}

/* ---- scrool fadein------- */
.fadein {
  opacity: 0;
  transform: translate3d(0, 10px, 0);
}

.fadein.is-active {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  transition: 1s;
}

/* Framework
---------------------------------------------------------*/
.content_box {
  margin: 0;
  padding: 100px 0 0 0;
  width: 100%;
}

.container_wrap {
  width: 90%;
  max-width: 1100px;
  padding: 0 0px;
  margin: 0 auto;
}

@media screen and (max-width: 768px) {
  .content_box {
    margin: 0;
    padding: 80px 0 0 0;
    width: 100%;
  }
}

/* Breadcrumbs Navigation */
.breadcrumbs_area {
  font-size: 1.3rem;
  letter-spacing: 0;
  text-align: left;
  padding: 30px 0 0 0;
}

.breadcrumbs {
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
}

.breadcrumbs li:not(:last-of-type)::after {
  content: "＞";
  margin: 0 5px;
  /* 記号の左右の余白 */
  color: #333333;
  /* 記号の色 */
}

.breadcrumbs li {
  margin: 0;
  padding: 0;
}

.breadcrumbs .current-item {
  font-weight: 500;
}

.breadcrumbs a {
  color: #333333;
  text-decoration: none;
}

.breadcrumbs a:link, .breadcrumbms a:visited {
  color: #333333;
}

.breadcrumbs a:hover {
  color: #ED7A9B;
  text-decoration: underline;
}

@media screen and (max-width: 768px) {
  .breadcrumbs_area {
    font-size: 1.2rem;
    letter-spacing: 0;
    text-align: left;
    padding: 10px 0 0 0;
  }

  .breadcrumbs li {
    margin: 0 0 10px 0;
    padding: 0;
  }
}

/*--  subheader画像なし  */
#subheader_box {
  margin: 0 auto 120px auto;
  height: 200px;
}

.subheader_box {
  display: flex;
  height: 100%;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

.subheader_title {
  flex-basis: 75%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

.subheader_title h1 {
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
}

.subheader_title h1 span {
  font-size: 1.2rem;
  font-weight: normal;
}

@media screen and (max-width: 768px) {
  #subheader_box {
    margin: 0 auto 60px auto;
    height: auto;
    padding: 0 0 20px 0;
  }

  .subheader_title h1 {
    font-size: 1.8rem;
    text-align: justify;
    line-height: 1.6;
  }

  .subheader_title h1 span {
    font-size: 1rem;
  }
}

/*--  subheader画像あり  */
#subheader_box2 {
  margin: 0 auto 120px auto;
  height: 360px;
}

#subheader_box2 .subheader_wrap {
  display: flex;
  height: 100%;
  background: #f7f5f2;
  height: 200px;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
}

#subheader_box2 .subheader_title {
  flex-basis: 75%;
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  justify-content: center;
}

#subheader_box2 .subheader_title h1 {
  padding: 30px 0 0 0;
  font-size: 2.8rem;
  font-weight: 600;
  line-height: 1;
  display: flex;
}

#subheader_box2 .subheader_title h1 span {
  font-size: 1.2rem;
  font-weight: normal;
}

#subheader_box2 img {
  height: 290px;
  position: absolute;
  right: 0;
  border-radius: 10px 0 0 10px;
}

@media screen and (max-width: 1100px) {
  #subheader_box2 {
    margin: 0 auto 40px auto;
    height: calc(360 / 1100 * 100vw);
  }

  #subheader_box2 img {
    height: auto;
    width: 60%;
  }
}

@media screen and (max-width: 768px) {
  #subheader_box2 {
    margin: 0 auto 60px auto;
    height: 100px;
  }

  #subheader_box2 .subheader_wrap {
    display: flex;
    height: 100%;
    background: #f7f5f2;
    height: 100px;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
  }

  #subheader_box2 .subheader_title {
    display: flex;
    height: 100%;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  #subheader_box2 .subheader_title h1 {
    font-size: 2rem;
    padding: 0;
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
  }

  #subheader_box2 .subheader_title h1 span {
    font-size: 1rem;
  }

  #subheader_box2 img {
    display: none
  }
}

/*見出し系*/
.base_midashi {
  padding: 120px 0 40px 0;
  text-align: left;
  font-size: 2.4rem;
  font-weight: 600;
}

.pink_midashi {
  color: #ED7A9B;
  font-weight: 600;
  font-size: 2.2rem;
  padding: 0 0 20px 0;
}

.sub_midashi {
  font-weight: 600;
  margin: 20px 0 10px 0;
}

@media screen and (max-width: 768px) {
  .base_midashi {
    padding: 60px 0 20px 0;
    text-align: left;
    font-size: 1.8rem;
    font-weight: 600;
  }

  .pink_midashi {
    color: #ED7A9B;
    font-weight: 600;
    font-size: 1.8rem;
    padding: 0 0 20px 0;
  }
}

#map {
  height: 600px;
  margin: 5rem auto;
}

@media screen and (max-width: 768px) {
  #map {
    height: 400px;
    margin: 3rem auto;
  }
}

/*===========
.scroll-box
===========*/
.scroll-box {
  overflow-x: auto;
  padding-bottom: 10px;
  -webkit-overflow-scrolling: touch;
}

.scroll-box div img {
  max-width: 100%;
  min-width: 600px;
  vertical-align: top;
}

/*===========
scrollbar
===========*/
/*スクロールバー全体の高さ*/
.scroll-box::-webkit-scrollbar {
  height: 4px;
}

/*スクロールバー全体の背景*/
.scroll-box::-webkit-scrollbar-track {
  background: #eee;
}

/*スクロールバーの動く部分*/
.scroll-box::-webkit-scrollbar-thumb {
  background: #aaa;
  border: none;
}

/*スクロールバーの動く部分のホバー（マウスオーバー）*/
.scroll-box::-webkit-scrollbar-thumb:hover {
  background: #999;
}

/* 1/3 Column */
.oneThirdCol {
  width: 210px;
  display: inline-block;
}

/* 2/3 Column */
.twoThirdCol {
  width: 446px;
  display: inline-block;
}

/* 1/2 Column */
.halfCol {
  width: 328px;
  display: inline-block;
}

/* 用語（dt要素）2文字 用 */
.twoChara dt {
  width: 6%;
}

.twoChara dd {
  width: 94%;
}

/* 用語（dt要素）3文字 用 */
.threeChara dt {
  width: 8%;
}

.threeChara dd {
  width: 92%;
}

/* 用語（dt要素）4文字 用 */
.fourChara dt {
  width: 10%;
}

.fourChara dd {
  width: 90%;
}

/* 用語（dt要素）5文字 用 */
.fiveChara dt {
  width: 12%;
}

.fiveChara dd {
  width: 88%;
}

/* 用語（dt要素）6文字 用 */
.sixChara dt {
  width: 14%;
}

.sixChara dd {
  width: 86%;
}

/* 用語（dt要素）7文字 用 */
.sevenChara dt {
  width: 16%;
}

.sevenChara dd {
  width: 84%;
}

/* 用語（dt要素）8文字 用 */
.eightChara dt {
  width: 18%;
}

.eightChara dd {
  width: 82%;
}

/* 用語（dt要素）9文字 用 */
.nineChara dt {
  width: 20%;
}

.nineChara dd {
  width: 80%;
}

/* 用語（dt要素）10文字 用 */
.tenChara dt {
  width: 22%;
}

.tenChara dd {
  width: 78%;
}

/* 1/3 Column + 用語（dt要素）2文字 用 */
.oneThirdCol.twoChara dt {
  width: 19%;
}

.oneThirdCol.twoChara dd {
  width: 81%;
}

/* 1/3 Column + 用語（dt要素）3文字 用 */
.oneThirdCol.threeChara dt {
  width: 25%;
}

.oneThirdCol.threeChara dd {
  width: 75%;
}

/* 1/3 Column + 用語（dt要素）4文字 用 */
.oneThirdCol.fourChara dt {
  width: 31%;
}

.oneThirdCol.fourChara dd {
  width: 69%;
}

/* 1/3 Column + 用語（dt要素）5文字 用 */
.oneThirdCol.fiveChara dt {
  width: 37%;
}

.oneThirdCol.fiveChara dd {
  width: 63%;
}

/* 1/3 Column + 用語（dt要素）6文字 用 */
.oneThirdCol.sixChara dt {
  width: 43%;
}

.oneThirdCol.sixChara dd {
  width: 57%;
}

/* 1/3 Column + 用語（dt要素）7文字 用 */
.oneThirdCol.sevenChara dt {
  width: 49%;
}

.oneThirdCol.sevenChara dd {
  width: 51%;
}

/* 1/3 Column + 用語（dt要素）8文字 用 */
.oneThirdCol.eightChara dt {
  width: 55%;
}

.oneThirdCol.eightChara dd {
  width: 45%;
}

/* 1/3 Column + 用語（dt要素）9文字 用 */
.oneThirdCol.nineChara dt {
  width: 61%;
}

.oneThirdCol.nineChara dd {
  width: 39%;
}

/* 1/3 Column + 用語（dt要素）10文字 用 */
.oneThirdCol.tenChara dt {
  width: 67%;
}

.oneThirdCol.tenChara dd {
  width: 33%;
}

/* 2/3 Column + 用語（dt要素）2文字 用 */
.twoThirdCol.twoChara dt {
  width: 9%;
}

.twoThirdCol.twoChara dd {
  width: 91%;
}

/* 2/3 Column + 用語（dt要素）3文字 用 */
.twoThirdCol.threeChara dt {
  width: 12%;
}

.twoThirdCol.threeChara dd {
  width: 88%;
}

/* 2/3 Column + 用語（dt要素）4文字 用 */
.twoThirdCol.fourChara dt {
  width: 15%;
}

.twoThirdCol.fourChara dd {
  width: 85%;
}

/* 2/3 Column + 用語（dt要素）5文字 用 */
.twoThirdCol.fiveChara dt {
  width: 18%;
}

.twoThirdCol.fiveChara dd {
  width: 82%;
}

/* 2/3 Column + 用語（dt要素）6文字 用 */
.twoThirdCol.sixChara dt {
  width: 21%;
}

.twoThirdCol.sixChara dd {
  width: 79%;
}

/* 2/3 Column + 用語（dt要素）7文字 用 */
.twoThirdCol.sevenChara dt {
  width: 24%;
}

.twoThirdCol.sevenChara dd {
  width: 76%;
}

/* 2/3 Column + 用語（dt要素）8文字 用 */
.twoThirdCol.eightChara dt {
  width: 27%;
}

.twoThirdCol.eightChara dd {
  width: 73%;
}

/* 2/3 Column + 用語（dt要素）9文字 用 */
.twoThirdCol.nineChara dt {
  width: 30%;
}

.twoThirdCol.nineChara dd {
  width: 70%;
}

/* 2/3 Column + 用語（dt要素）10文字 用 */
.twoThirdCol.tenChara dt {
  width: 33%;
}

.twoThirdCol.tenChara dd {
  width: 67%;
}

/* 1/2 Column + 用語（dt要素）2文字 用 */
.halfCol.twoChara dt {
  width: 12%;
}

.halfCol.twoChara dd {
  width: 88%;
}

/* 1/2 Column + 用語（dt要素）3文字 用 */
.halfCol.threeChara dt {
  width: 16%;
}

.halfCol.threeChara dd {
  width: 84%;
}

/* 1/2 Column + 用語（dt要素）4文字 用 */
.halfCol.fourChara dt {
  width: 20%;
}

.halfCol.fourChara dd {
  width: 80%;
}

/* 1/2 Column + 用語（dt要素）5文字 用 */
.halfCol.fiveChara dt {
  width: 24%;
}

.halfCol.fiveChara dd {
  width: 76%;
}

/* 1/2 Column + 用語（dt要素）6文字 用 */
.halfCol.sixChara dt {
  width: 28%;
}

.halfCol.sixChara dd {
  width: 72%;
}

/* 1/2 Column + 用語（dt要素）7文字 用 */
.halfCol.sevenChara dt {
  width: 32%;
}

.halfCol.sevenChara dd {
  width: 68%;
}

/* 1/2 Column + 用語（dt要素）8文字 用 */
.halfCol.eightChara dt {
  width: 36%;
}

.halfCol.eightChara dd {
  width: 64%;
}

/* 1/2 Column + 用語（dt要素）9文字 用 */
.halfCol.nineChara dt {
  width: 40%;
}

.halfCol.nineChara dd {
  width: 60%;
}

/* 1/2 Column + 用語（dt要素）10文字 用 */
.halfCol.tenChara dt {
  width: 44%;
}

.halfCol.tenChara dd {
  width: 56%;
}

/* お問い合わせ・資料請求
---------------------------------------------------------*/
.contactTitle,
.requestTitle,
.trialRegisterTitle {
  margin: 35px 0;
  padding: 0;
  text-align: center;
  color: #42201b;
  font-size: 1.8em;
}

.privacyPra {
  line-height: 1.8;
}

.privacyPra a {
  text-decoration: underline;
}

.agreeArea {
  margin: 20px auto;
  padding: 20px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (max-width: 768px) {
  .agreeArea {
    margin: 20px auto;
    padding: 20px 0px;
    text-align: left;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
}

.submitArea {
  margin: 0 auto 2em auto;
  padding: 0;
  font-size: 0.875em;
  /* 14px */
  text-align: center;
}

.requiredNotes {
  color: #ef6d82;
}

.required {
  color: #ffffff;
  background: #E20000;
  font-size: 1rem;
  padding: 2px;
  border-radius: 4px;
}

.complement {
  color: #333333;
  font-size: 80%;
}

.complement a {
  pointer-events: none;
  color: inherit;
  text-decoration: none;
}

.formHeading {
  margin: 40px auto 20px auto;
  font-size: 1.8rem;
  font-weight: 600;
  padding: 0 0 0 10px;
  border-left: 4px solid #ED7A9B;
}

.formDL+.formHeading {
  width: 100%;
  margin: 60px 0 20px 0;
}

.formDL {
  border-bottom: 1px dotted #B3ADAA;
  padding: 20px 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.formDT {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0;
  flex-basis: 28%;
}

.formDD {
  margin: 0;
  flex-basis: 75%;
}

@media screen and (max-width: 768px) {
  .formDL {
    border-bottom: 1px dotted #B3ADAA;
    padding: 20px 0;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    flex-wrap: nowrap;
    justify-content: flex-start;
    margin: 0 0 20px 0;
  }

  .formDT {
    font-size: 1.6rem;
    font-weight: 600;
    margin: 0 0 10px 0;
    flex-basis: 100%;
  }

  .formDD {
    margin: 0;
    flex-basis: 100%;
    margin: 0 0 20px 0;
    width: 100%;
  }

  .agreeArea {}
}

.formDL_text {
  border-bottom: 1px dotted #B3ADAA;
  padding: 20px 0;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  flex-wrap: nowrap;
  justify-content: flex-start;
}

.formDT_text {
  font-size: 1.6rem;
  font-weight: 600;
  margin: 0 0 10px 0;
  width: 100%;
}

.formDT_text_pre {
  font-weight: 400;
  font-size: 1.2rem;
}

.formDD_text {
  margin: 0;
  width: 100%;
}

.referTitle {
  margin: 10px 40px;
  color: #42201b;
}

.formDL input {
  padding: 10px;
  border: 1px solid #B3ADAA;
}

.formDL select {
  padding: 10px;
  border: 1px solid #B3ADAA;
  width: 50%;
}

.formDL select selected {
  padding: 10px;
  border: 1px solid #B3ADAA;
  width: 50%;
  color: #333;
}

.formDL_text textarea {
  padding: 10px;
  border: 1px solid #B3ADAA;
  width: 100%;
  height: 80px;
}

.agreecheck input[type="checkbox"] {
  position: relative;
  width: 24px;
  height: 24px;
  border: 1px solid #333;
  vertical-align: -5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.agreecheck input[type="checkbox"]:checked:before {
  position: absolute;
  top: -5px;
  left: 10px;
  transform: rotate(50deg);
  width: 12px;
  height: 24px;
  border-right: 4px solid #ED7A9B;
  border-bottom: 4px solid #ED7A9B;
  content: '';
}

.formDL input[type="radio"] {
  position: relative;
  width: 16px;
  height: 16px;
  border: 1px solid #333;
  border-radius: 50%;
  vertical-align: -5px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.formDL input[type="radio"]:checked:before {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #ED7A9B;
  content: '';
}

.agreecheck {
  display: inline;
  align-items: center;
  cursor: pointer;
  justify-content: center;
  width: auto;
  font-size: 1.6rem;
  font-weight: 600;
}

.agreecheck-Input {
  margin: 0;
  width: 0;
  opacity: 0;
}

.agreeArea:hover {
  background: rgba(0, 0, 0, .05) !important;
}

.agreecheck-Input:focus+.agreecheck-DummyInput {
  border: dashed 10px #333333;
}

.agreecheck-Input:checked+.agreecheck-DummyInput {
  background: #333333;
}

.agreecheck-Input:checked+.agreecheck-DummyInput::before {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 40%;
  height: 4px;
  border-radius: 2px;
  transform: translate(-6px, 5px) rotateZ(-135deg);
  transform-origin: 2px 2px;
  background: #FFFFFF;
}

.agreecheck-Input:checked+.agreecheck-DummyInput::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  left: 50%;
  width: 76%;
  height: 4px;
  border-radius: 2px;
  transform: translate(-6px, 5px) rotateZ(-45deg);
  transform-origin: 2px 2px;
  background: #FFFFFF;
}

.agreecheck-DummyInput {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  width: 32px;
  height: 32px;
  border: solid 2px transparent;
  background: rgba(0, 0, 0, .1);
  border-radius: 4px;
}

.agreecheck-LabelText {
  margin-left: 12px;
  display: block;
  font-size: 18px;
  font-weight: bold;
}

.grgeelink a {
  margin: 0 0 0 20px;
  color: #333333;
  text-decoration: underline;
}

.grgeelink a:hover {
  opacity: .7;
}

.formDL input:focus,
.formDL select:focus {
  border: 1px solid #ED7A9B;
  outline: none;
}

.formDL input::-webkit-input-placeholder {
  color: #B3ADAA;
}

.formDL input:-moz-placeholder {
  color: #B3ADAA;
}

.formDL input::-moz-placeholder {
  color: #B3ADAA;
}

.formDL input:-ms-input-placeholder {
  color: #B3ADAA;
}

optgroup {
  color: #ED7A9B;
  font-style: normal;
}

optgroup option {
  color: #000;
}

#option_01 option,
#option_02 option,
#option_03 option {
  color: #B3ADAA;
}

#option_01,
#option_02,
#option_03 {
  padding: 10px;
  border: 1px solid #B3ADAA;
  width: 50%;
  color: #333333;
  margin: 0 0 10px 0;
}

#your-name, #refer-name, #your-name-j, #address1, #address2, #address3, #facilities, #school, #refer-area, #refer-qualification {
  width: 100%;
}

#tel, #datepicker, #employee-number, #number, #your-age {
  width: 50%;
}

#email,
#entry-email {
  width: 100%;
}

#message {
  padding: 10px;
  border: 1px solid #B3ADAA;
  width: 100%;
  height: 80px;
}

#number-people {
  width: 15%;
  display: inline-block;
}

.input_subtitle {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 10px;
}

.input_date {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 20px;
}

.date-calendar {
  font-size: 16px;
  height: 40px;
  box-shadow: none;
  padding: 0 5px;
  color: #000;
  line-height: 2;
  text-align: left;
  margin-left: -0.25%;
  position: relative;
  display: block;
}

.time-select {
  position: relative;
  width: 48%;
}

@media screen and (max-width: 768px) {
  .date-calendar {
    position: relative;
    width: 100%;
  }

  .time-select {
    position: relative;
    width: 100%;
  }

  #refer-contact{
    width: 100%;
  }
}

.select_radio {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  line-height: 1.6;
  gap: 10px;
}

.checkZip {
  background-color: #eec0bc;
  margin: 0;
  padding: 0.4em 0.6em;
  font-size: 0.75rem;
  /* 12px */
  font-weight: bold;
  border: solid 1px #eec0bc;
  border-radius: 3px;
  cursor: pointer;
}

.wpcf7-list-item-label {
  margin: 0 auto 0 5px;
}

/* お問い合わせ エラー項目 */
span.wpcf7-form-control-wrap {
  position: relative;
}

.wpcf7 span.wpcf7-not-valid-tip {
  color: #fff;
  background: #ef6d82;
  margin: 0;
  padding: 5px 10px;
  width: 280px;
  font-size: 0.875em;
  /* 14px */
  text-align: left;
  position: absolute;
  bottom: -30px;
  left: 20px;
  z-index: 100;
  border: none;
  border-radius: 3px;
}

.wpcf7 span.wpcf7-not-valid-tip:before {
  content: '';
  position: absolute;
  border: 5px solid transparent;
  border-bottom: 5px solid #ef6d82;
  top: -10px;
  left: 10px;
}

.wpcf7 .wpcf7-not-valid {
  background-color: #f6f6f6;
}

.wpcf7 .wpcf7-mail-sent-ok {
  color: #fff;
  background-color: #99ad3c;
  margin: 0 40px 2em;
  padding: 1em;
  font-size: 0.875em;
  /* 14px */
  border-radius: 3px;
}

.wpcf7 form.init .wpcf7-response-output,
.wpcf7 form.resetting .wpcf7-response-output,
.wpcf7 form.submitting .wpcf7-response-output {
  display: none;
}

.wpcf7 form .wpcf7-response-output {
  color: #fff;
  background-color: #ef6d82;
  margin: 0 40px 2em;
  padding: 1em;
  font-size: 0.875em;
  /* 14px */
  border-radius: 3px;
}

.wpcf7 form.failed .wpcf7-response-output,
.wpcf7 form.aborted .wpcf7-response-output {
  border-color: #dc3232;
  /* Red */
  color: #dc3232;
  background-color: #FFF;
}

.wpcf7 form.spam .wpcf7-response-output {
  border-color: #f56e28;
  /* Orange */
  color: #000;
  background-color: #FFF;
}

div.wpcf7 .screen-reader-response {
  position: absolute;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  height: 1px;
  width: 1px;
  margin: 0;
  padding: 0;
  border: 0;
}

.wpcf7-display-none {
  display: none;
}

/*
.grecaptcha-badge {
  visibility: hidden;
}
*/
/*角括弧*/
.box62 {
  --border-color: black;
  /*カッコの色*/
  padding: 2em;
  /*内側余白*/
  position: relative;
}

.box62::after,
.box62::before {
  content: "";
  height: 100%;
  width: 0.75em;
  position: absolute;
  bottom: 0;
  border-top: 1px solid var(--border-color);
  border-bottom: 1px solid var(--border-color);
}

.box62::before {
  border-left: 1px solid var(--border-color);
  left: 0;
}

.box62::after {
  border-right: 1px solid var(--border-color);
  right: 0;
}

.requestCaution {
  margin-bottom: 60px;
  padding: 20px;
  line-height: 1.8;
  border-radius: 10px;
  background: rgba(237, 122, 155, 0.1);
  text-align: center;
}

.requestCaution h3 {
  margin-bottom: 20px;
  font-size: 2.4rem;
  font-weight: 600;
}

.requestCaution p.-strong {
  font-size: 1.8rem;
  font-weight: 600;
  font-style: normal;
  text-decoration: underline;
  text-underline-offset: 5px;
  padding: 10px 0;
  color: #ED7A9B;
}

.requestCautionTel {
  padding: 0 20px;
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: center;
  align-items: center;
  font-size: 1rem;
  gap: 10px;
}

.requestCautionT_tel {
  font-size: 4rem;
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  vertical-align: middle;
}

.requestCautionTelIcon {
  display: flex;
  flex-direction: row;
  text-align: center;
  justify-content: center;
  align-items: baseline;
}

.requestCaution_icon_freedial {
  width: 40px;
  height: auto;
}

.requestCaution_time {
  font-size: 1.2rem;
  letter-spacing: 0.05rem;
  line-height: 1.2;
}

@media screen and (max-width: 768px) {
  .requestCaution {
    margin-bottom: 30px;
    text-align: justify;
  }

  .requestCaution h3 {
    margin-bottom: 20px;
    font-size: 1.8rem;
    font-weight: 600;
    text-align: center;
  }

  .requestCaution p.-strong {
    font-size: 1.6rem;
    text-align: center !important;
  }

  .requestCautionTel {
    padding: 0 0px;
    display: flex;
    flex-direction: column;
    text-align: center;
    justify-content: center;
    align-items: center;
    font-size: 1rem;
    gap: 0px;
  }

  .requestCaution_icon_freedial {
    width: 40px;
    height: auto;
  }

  .requestCaution_time {
    font-size: 1.2rem;
    letter-spacing: 0.05rem;
    line-height: 1.2;
  }
}

ul.form_list {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin-bottom: 80px;
  gap: 40px;
  align-items: stretch;
}

ul.form_list li {
  list-style: none;
  width: calc((100% - 40px) / 2);
  border-radius: 10px;
  min-height: 132px;
}

ul.form_list li dd.arrowbtn {
  width: 100%;
}

ul.form_list li dd.arrowbtn a {
  display: block;
  height: 100%;
  width: 100%;
  padding: 20px 0 20px 30px;
  box-sizing: border-box;
}

ul.form_list li h3 {
  font-size: 1.8rem;
  font-weight: 600;
  padding: 0 0 20px 0;
}

ul.form_list li p {
  line-height: 1.8;
  padding-right: 80px;
  font-size: 1.4rem;
}

ul.form_list li.form_tel {
  text-align: center;
  border: 1px solid #B3ADAA;
  display: flex;
  align-items: center;
  flex-direction: row;
  justify-content: center;
}

ul.form_list li.form_tel p {
  padding: 0;
}

ul.form_list li.form_tel h4 {
  font-size: 4rem;
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-direction: row;
  margin: 0 0 5px 0;
}

.form_icon_freedial {
  width: 30px;
  height: auto;
}

.form_midashi {
  padding: 0px 0 40px 0;
  text-align: left;
  font-size: 2.4rem;
  font-weight: 600;
}

@media screen and (max-width: 768px) {
  ul.form_list {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 80px;
    gap: 40px;
    align-items: stretch;
    flex-direction: column;
  }

  ul.form_list li {
    width: 100%;
  }

  ul.form_list li dd.arrowbtn a {
    display: block;
    height: 100%;
    width: 100%;
    padding: 20px 0 20px 20px;
    box-sizing: border-box;
  }

  ul.form_list li p {
    line-height: 1.8;
    padding-right: 45px;
    font-size: 1.4rem;
    text-align: justify;
  }

  .form_midashi {
    padding: 0px 0 20px 0;
    text-align: left;
    font-size: 2rem;
    font-weight: 600;
  }

  ul.form_list li.form_tel p {
    text-align: center;
  }
}

.slider {
  display: none;
}

.slider.slick-initialized {
  display: block;
  /*slick-initializedが付与されたら表示*/
}

.form_btn {
  width: 350px;
  margin: 0 auto 0px auto;
  display: flex;
  background: #333;
  color: #fff;
  padding: 20px;
  text-align: center;
  flex-direction: column;
  align-items: center;
  font-size: 1.6rem;
}

.form_btn:hover {
  opacity: .8;
}

.infoWrap {
  margin: 0 auto 120px auto;
}

ul.form_footer_wrap {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 80px auto;
  gap: 40px;
  align-items: stretch;
}

ul.form_footer_wrap li {
  list-style: none;
  width: calc((100% - 40px) / 2);
}

ul.form_footer_wrap li p {
  line-height: 1.8;
  font-size: 1.4rem;
}

.form_tel2 {
  text-align: center;
  border: 1px solid #B3ADAA;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  list-style: none;
  border-radius: 10px;
  min-height: 132px;
}

.form_tel2 h4 {
  font-size: 4rem;
  font-family: 'Barlow', sans-serif;
  font-weight: 400;
  display: flex;
  align-items: baseline;
  justify-content: center;
  flex-direction: row;
  margin: 0 0 5px 0;
}

@media screen and (max-width: 768px) {
  ul.form_footer_wrap {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    margin-bottom: 80px;
    gap: 40px;
    align-items: stretch;
    flex-direction: column;
  }

  ul.form_footer_wrap li {
    width: 100%;
  }

  ul.form_footer_wrap li p {
    line-height: 1.8;
    font-size: 1.4rem;
  }

  ul.form_list li.form_tel2 p {
    text-align: center;
  }
}
