@charset "utf-8";

/* -----------------------------------------
- root ( var )
----------------------------------------- */
:root {
  /* font-family */
  --font-family: "m-plus-2p", sans-serif;

  /* color */
  --txt: #000;
  --pink: #ED7980;
  --blue: #0054A7;
  --orange: #F18E38;
  --yellow: #FEDC5E;

  /* font-weight */
  --normal: 400;
  --regular: 400;
  --bold: 700;
}

/* color */
.-pink {
  color: var(--pink);
}
.-blue {
  color: var(--blue);
}
.-orange {
  color: var(--orange);
}
.-yellow {
  color: var(--yellow);
}
.-white {
  color: #fff;
}

/* .txt (font-family) */
.en,
.ff-mplus {
  font-family: var(--mplus);
}
/* font-weight */
.fw-regular {
  font-weight: var(--regular);
}
.fw-medium {
  font-weight: var(--medium);
}
.fw-smbold {
  font-weight: var(--semibold);
}
.fw-bold {
  font-weight: var(--bold);
}
/* font-size clamp - min-width: 1100px */
:root {
  --clamp_14px: clamp(13px, 1.273vw, 14px);
  --clamp_16px: clamp(14px, 1.455vw, 16px);
  --clamp_18px: clamp(15px, 1.636vw, 18px);
  --clamp_20px: clamp(16px, 1.818vw, 20px);
  --clamp_22px: clamp(20px, 2vw, 22px);
  --clamp_24px: clamp(22px, 2.182vw, 24px);
  --clamp_26px: clamp(24px, 2.364vw, 26px);
  --clamp_28px: clamp(26px, 2.545vw, 28px);
  --clamp_30px: clamp(27px, 2.727vw, 30px);
  --clamp_32px: clamp(24px, 2.909vw, 32px);
  --clamp_36px: clamp(32px, 3.273vw, 36px);
  --clamp_40px: clamp(34px, 3.633vw, 40px);
  --clamp_64px: clamp(60px, 5.818vw, 64px);
  --clamp_100px: clamp(70px, 9.083vw, 100px);
}
@media screen and (max-width: 768px) {
:root {
  /* font-size clamp w375px */
  --clamp_12px: clamp(11px, 3.2vw, 12px);
  --clamp_14px: clamp(13px, 3.733vw, 14px);
  --clamp_16px: clamp(13px, 4.267vw, 16px);
  --clamp_17px: clamp(15px, 4.533vw, 17px);
  --clamp_18px: clamp(16px, 4.8vw, 18px);
  --clamp_20px: clamp(18px, 5.333vw, 20px);
  --clamp_22px: clamp(19px, 5.867vw, 22px);
  --clamp_24px: clamp(20px, 6.4vw, 24px);
  --clamp_26px: clamp(24px, 6.933vw, 26px);
  --clamp_28px: clamp(26px, 7.467vw, 28px);
  --clamp_30px: clamp(28px, 8vw, 30px);
  --clamp_32px: clamp(30px, 8.533vw, 32px);
  --clamp_36px: clamp(34px, 9.6vw, 36px);
  }
}


/* ********************************
reset
******************************** */
.sec {
  padding: 0;
}
.sec h1,
.sec h2,
.sec h3,
.sec h4,
.sec h5,
.sec h6 {
  line-height: normal;
  margin: 0;
  padding: 0;
  border-left-style: none;
  border-left-width: 0;
}
.sec ul,
.sec ol {
  margin: 0;
  padding: 0;
}
.sec ul li,
.sec ol li {
  line-height: normal;
  padding: 0;
}
.sec ul {
  margin-left: 0;
}
.sec ul li {
  position: unset;
}
.sec ul li:before {
  display: none;
  box-shadow: none;
}
.sec img {
  margin: 0;
}
.sec p {
  padding: 0;
}
.sec a:hover img {
  -webkit-filter: none;
  -moz-filter: none;
  -ms-filter: none;
  -o-filter: none;
  filter: none;
}
.sec dl,
.sec table {
  margin-bottom: 0;
}
.sec dl {
  border-top: none;
}
.content dl,
.content dd,
.content dt,
.content table tr,
.content table th,
.content table td {
  border: 0;
  border-top: 0;
  background: unset;
  margin: 0;
  padding: 0;
}
.content {
  width: 100%;
  line-height: 1;
}
.clearfix::after,
.clearfix::before {
  content: "";
  display: none;
}
a,a:active,a:hover,a:visited {
  font-style: unset;
  font-weight: unset;
  text-decoration: none;
  color: unset;
}
li {
  list-style: none;
}
.sec #main-wrap.no-header {
  margin-top: 0;
}
.sec .entry a:hover {
  text-decoration: unset;
}

/* ********************************
effect js-fade
******************************** */
.sec .js-fade {
  opacity: 0;
  visibility: hidden;
  transition: opacity 1s;
  transition-delay: .13s;
}
.sec .js-fade.active {
  opacity: 1;
  visibility: visible;
}
.sec .js-fade+:nth-child(n+2) {
  transition-delay: .13s;
}
.sec .js-fade+:nth-child(n+3) {
  transition-delay: .26s;
}
.sec .js-fade+:nth-child(n+4) {
  transition-delay: .39s;
}
.sec .js-fade+:nth-child(n+5) {
  transition-delay: .52s;
}

/* .js-fade-up
-------------------------- */
.js-fade-up {
  opacity: 0;
  visibility: hidden;
  transform: translate(0, 120px);
  transition: transform 1s, opacity 1s;
  transition-delay: .3s;
}
.js-fade-up.active {
  opacity: 1;
  visibility: visible;
  transform: translate(0, 0);
}
.js-fade-up+:nth-child(n+2) {
  transition-delay: .4s;
}
.js-fade-up+:nth-child(n+3) {
  transition-delay: .5s;
}
.js-fade-up+:nth-child(n+4) {
  transition-delay: .6s;
}
.js-fade-up+:nth-child(n+5) {
  transition-delay: .7s;
}

/* .js-fade-down
-------------------------- */
.sec .js-fade-down {
  opacity: 0;
  visibility: hidden;
  transition: 1s;
  transition-delay: .13s;
  transform: translateY(-100px);
}
.sec .js-fade-down.active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.sec .js-fade-down:nth-of-type(1) {
  transition-delay: .13s;
}
.sec .js-fade-down:nth-of-type(2) {
  transition-delay: .26s;
}
.sec .js-fade-down:nth-of-type(3) {
  transition-delay: .39s;
}
.sec .js-fade-down:nth-of-type(4) {
  transition-delay: .52s;
}

/* --------------------------------
.pc-only / .sp-only
------------------------------------- */
.pc-only {
  display: block;
}
.sp-only {
  display: none;
}
span.pc-only {
  display: inline;
}
@media screen and (max-width: 768px) {
  .pc-only {
    display: none;
  }
  .sp-only {
    display: block;
  }
  span.pc-only {
    display: none;
  }
}

/* --------------------------------
  scrollbar
------------------------------------- */
::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}
::-webkit-scrollbar-track {
  background-color: transparent;
}
::-webkit-scrollbar-thumb {
  background-color: #b9b9ba;
  border-radius: 4px;
}

.sec .no_scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
.sec .no_scrollbar::-webkit-scrollbar {
  display: none;
}

/* ********************************
style
******************************** */
body {
  color: var(--txt);
  font-family: var(--font-family);
  font-size: 16px;
  font-weight: var(--regular);
  font-optical-sizing: auto;
  font-style: normal;
  line-height: 1;
  text-align: left;
  background: #fff;
  animation: is-fadeIn ease .5s;
  line-break: strict;
  overflow-wrap: break-word;
  word-wrap: break-word;
  overflow-x: hidden;
}
body,input,textarea {
  font-family: var(--font-family);
}
body.page-template.dl-guidebook {}
#headline-sec {
  display: none;
}
.main-wrap {
  position: relative;
  top: 0;
}
@media screen and (max-width: 768px) {
}

/* -----------------------------------------
- animation
----------------------------------------- */
.is-fadeIn {
  animation: is-fadeIn ease .5s;
}
@keyframes is-fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

/* common
---------------------------------------- */
img {
  height: auto;
  object-fit: contain;
}
section, div, ul,li, dl,dt,dd, p, a {
  box-sizing: border-box;
}

/* common class
---------------------------------------- */
.sec {
  color: #000;
  background: #fff;
}
.sec .entry-title.single-title {
  display: none;
}
.sec .main-wrap {
  width: 100%;
  margin: 0 auto;
}
.sec #dp_breadcrumb_div {
  border-top: 2px solid;
  border: 0;
  margin: 0 auto;
  padding: 20px 10px;
}
.sec .animate {
  visibility: hidden;
}
.sec {
  width: 100%;
}
@media screen and (max-width: 1366px) {
  .sec.-top.main-wrap {
    min-width: 100%;
    width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .sec.-top.header_container {
    border-color: #fff;
  }
}
@media screen and (min-width: 769px) {
  .sec a {
    transition: .25s;
  }
  .sec a:hover {
    opacity: .7;
  }
}

.sec {
  position: relative;
  width: 100%;
  margin: 0 auto;
}
.sec .inner {
  width: 100%;
  margin: 0 auto;
}
.flex {
  display: flex;
}
.txt {
  font-size: 16px;
  font-weight: var(--regular);
  letter-spacing: .8px;
  line-height: 1.75;
}
.read {
  font-size: 30px;
  font-weight: bold;
  letter-spacing: normal;
  line-height: 1.3;
}
.read .small {
  font-size: 20px;
}
.read.-big {
  display: block;
  margin: 0 auto;
  font-size: 40px;
  line-height: 1.5;
  text-align: center;
}
.ls_1em {
  letter-spacing: 1em!important;
  padding-left: 1em!important;
}
.underline {
  background:linear-gradient(transparent 60%, var(--orange) 60%);
}
@media screen and (max-width: 768px){
  .txt {
    font-size: 14px;
    font-weight: var(--regular);
    letter-spacing: .8px;
    line-height: 1.86;
  }
  .read {
    font-size: var(--clamp_22px);
    font-weight: bold;
    letter-spacing: .8px;
    line-height: 1.3;
  }
  .read .small {
    font-size: 14px;
  }
  .read.-big {
    display: block;
    margin: 0 auto;
    font-size: var(--clamp_22px);
    line-height: 1.5;
    text-align: center;
  }
  .underline {
    background:linear-gradient(transparent 60%, var(--orange) 60%);
  }
}

/* .dlist_box
---------------------------------------- */
.sec .dlist_box dl {
  display: flex;
  padding: 12px 5px 10px;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: -.8px;
  line-height: 1.3;
  border-bottom: 1px solid #807F80;
}
.sec .dlist_box dl:first-child {
  border-top: 1px solid #807F80;
}
.sec .dlist_box dt {
  flex-shrink: 0;
  width: 197px;
}
@media screen and (max-width: 768px){
  .sec .dlist_box dl {
    display: flex;
    flex-direction: column;
    padding: 13px 5px 8px;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: -.8px;
    line-height: 1.7;
    border-bottom: 1px solid #807F80;
  }
  .sec .dlist_box dt {
    flex-shrink: 0;
    width: 100%;
    font-size: 16px;
    font-weight: bold;
    letter-spacing: normal;
    line-height: 1.4;
  }
  .sec .dlist_box dd .list {
    display: flex;
    flex-wrap: wrap;
  }
  .sec .dlist_box dd .list li {
    margin-right: 1em;
    font-size: 14px;
    font-weight: bold;
    letter-spacing: -.8px;
    line-height: 1.7;
  }
}

/* .list
---------------------------------------- */
.sec .list.-circle li {
  display: flex;
  margin-bottom: 3px;
  font-size: 18px;
}
.sec .list.-circle li::before {
  flex-shrink: 0;
  content: "";
  display: inline-block;
  width: 15px;
  height: 15px;
  margin: 5px 5px 0 0;
  border-radius: 50%;
  background: var(--pink);
}
.sec .list.-circle.-yellow li::before {
  background: var(--yellow);
}
@media screen and (max-width: 768px){
  .sec .list.-circle li {
    display: flex;
    margin-bottom: 3px;
    font-size: 18px;
  }
  .sec .list.-circle li::before {
    flex-shrink: 0;
    content: "";
    display: inline-block;
    width: 12px;
    height: 12px;
    margin: 5px 5px 0 0;
    border-radius: 50%;
    background: var(--pink);
  }
}

.sec .txt-small {
  font-size: 12px;
}
.sec .txt-14 {
  font-size: 14px;
}
.sec .txt-16 {
  font-size: 16px;
}
.sec .txt-18 {
  font-size: 18px;
}
.sec .txt-20 {
  font-size: 20px;
}
.sec .txt-26 {
  font-size: 26px;
}
.sec .txt-27 {
  font-size: 27px;
}
.sec .txt-28 {
  font-size: 28px;
}
.sec .txt-32 {
  font-size: 32px;
}
.sec .txt-34 {
  font-size: 34px;
}
.sec .txt-48 {
  font-size: 48px;
}
@media screen and (max-width: 768px){
  .sec .txt-small {
    font-size: 10px;
  }
  .sec .txt-14 {
    font-size: 12px;
  }
  .sec .txt-16 {
    font-size: 14px;
  }
  .sec .txt-18 {
    font-size: 18px;
  }
  .sec .txt-20 {
    font-size: 20px;
  }
  .sec .txt-26 {
    font-size: 26px;
  }
  .sec .txt-27 {
    font-size: 27px;
  }
  .sec .txt-28 {
    font-size: 28px;
  }
  .sec .txt-32 {
    font-size: 32px;
  }
  .sec .txt-34 {
    font-size: 34px;
  }
  .sec .txt-48 {
    font-size: 48px;
  }
}

.sec .txt-bold {
  font-weight: bold;
}
.sec .txt-black {
  font-weight: 900;
}

.sec .txt-left {
  text-align: left;
}
.sec .txt-center {
  text-align: center;
}
.sec .txt-right {
  text-align: right;
}
.sec .txt-indent {
  display: block;
  padding-left: 1em;
  text-indent: -1em;
}
.sec .nowrap {
  white-space: nowrap;
}
@media screen and (max-width: 768px){
}

/* .inner_xxx */
.inner_w1366 {
  width: 100%;
  max-width: 1366px;
  margin: 0 auto;
  transition: .5s;
}
.inner_w1140 {
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  transition: .5s;
}
.inner_w740 {
  width: 100%;
  max-width: 740px;
  margin: 0 auto;
  transition: .5s;
}
.inner_w644 {
  width: 100%;
  max-width: 644px;
  margin: 0 auto;
  transition: .5s;
}
@media screen and (max-width: 1366px) {
  .inner_w1366 {
    max-width: 100%;
  }
}
@media screen and (max-width: 1140px){
  .inner_w1140 {
    max-width: 100%;
  }
}
@media screen and (max-width: 768px) {
  .inner,
  .inner_w1366,
  .inner_w1140,
  .inner_w740,
  .inner_w644 {
    max-width: 100%;
  }
}

/* -----------------------------------
  .dl-guidebook
--------------------------------------------------------*/
/* -----------------------------------
  .sec.-contact
--------------------------------------*/
.sec.-contact {
}
.sec.-contact .flex {
  display: flex;
}
@media screen and (max-width: 768px){
  .sec.-contact .flex {
    display: flex;
    align-items: center;
    flex-direction: column;
  }
}

/* .contact_box
---------------------------------------- */
.sec.-contact .contact_box {
  width: 44%;
  padding: 35px 0 180px;
}
.sec.-contact .contact_box >.inner {
  max-width: 400px;
  margin: 0 7% 0 auto;
}
.sec.-contact .heading_box {
  position: relative;
  margin: 0 auto 35px;
  text-align: center;
}
.sec.-contact .heading_box .sec_heading {
  margin-bottom: 20px;
}

/* .read_box */
.sec.-contact .read_box {
  margin-bottom: 30px;
}
.sec.-contact .read_box .read {
  position: relative;
  margin: 0 6% 0 auto;
  padding: 30px 0 26px;
  font-size: 20px;
  text-align: center;
  letter-spacing: normal;
  line-height: 1.5;
}
.sec.-contact .read_box .img_box {
  margin: 0 auto 40px;
}
.sec.-contact .read_box .img_box img {
  filter: drop-shadow(5px 5px 5px rgba(0,0,0,.3));
}
.sec.-contact .read_box .txt {
  letter-spacing: normal;
}
.sec.-contact .read_box .read::before {
  position: absolute;
  top: 0;
  left: 10px;
  content: "";
  display: block;
  width: 44px;
  height: 115px;
  background: url(../img/contact_hd_01.svg) no-repeat;
  background-size: cover;
}
.sec.-contact .read_box .read::after {
  position: absolute;
  top: 10px;
  right: 10px;
  content: "";
  display: block;
  width: 59px;
  height: 104px;
  background: url(../img/contact_hd_02.svg) no-repeat;
  background-size: cover;
}

/* .tel_box */
.sec.-contact .tel_box {
  max-width: 412px;
  margin: 0 auto;
  padding: 10px 10px 15px;
  text-align: center;
  border: 4px solid var(--blue);
  border-radius: 16px;
}
.sec.-contact .tel_box .txt {
  font-size: 14px;
  font-weight: bold;
}
.sec.-contact .tel_box .num {
  display: flex;
  justify-content: center;
  margin: 10px auto 0;
  color: var(--blue);
  font-size: 27px;
  font-weight: bold;
}
.sec.-contact .tel_box .num::before {
  content: "";
  display: inline-block;
  width: 21px;
  height: 27px;
  margin: 2px 5px 0 0;
  background: url(../img/ico_tel.svg) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 1200px){
  .sec.-contact .contact_box {
    padding: 122px 1% 180px;
  }
  .sec.-contact .contact_box >.inner {
    margin: 0 1% 0 auto;
  }
}
@media screen and (max-width: 768px){
  .sec.-contact .contact_box {
    width: 100%;
    padding: 18px 0 30px;
  }
  .sec.-contact .contact_box >.inner {
    max-width: 412px;
    margin: 0 auto;
  }
  .sec.-contact .heading_box {
    width: 86%;
    margin: 0 auto 26px;
  }
  .sec.-contact .heading_box .sec_heading {
    width: 72%;
    margin: 0 auto 20px;
  }
  /* .read_box */
  .sec.-contact .read_box {
    margin-bottom: 24px;
  }
  .sec.-contact .read_box .read {
    position: relative;
    margin: 0 auto;
    padding: 18px 0 26px;
    font-size: var(--clamp_20px);
    text-align: center;
    letter-spacing: normal;
    line-height: 1.5;
  }
  .sec.-contact .read_box .img_box {
    width: 86%;
    margin: 0 auto 24px;
  }
  .sec.-contact .read_box .txt {
    width: 86%;
    margin: 0 auto;
    font-size: 16px;
    letter-spacing: normal;
    line-height: 1.75;
  }
  .sec.-contact .read_box .read::before {
    position: absolute;
    top: 7px;
    left: 20px;
    content: "";
    display: block;
    width: 39px;
    height: 104px;
    background: url(../img/contact_hd_01.svg) no-repeat;
    background-size: cover;
  }
  .sec.-contact .read_box .read::after {
    position: absolute;
    top: 10px;
    right: 14px;
    content: "";
    display: block;
    width: 53px;
    height: 94px;
    background: url(../img/contact_hd_02.svg) no-repeat;
    background-size: cover;
  }
  
  /* .tel_box */
  .sec.-contact .tel_box {
    width: 87%;
    max-width: 412px;
    margin: 0 auto;
    padding: 10px 10px 15px;
    text-align: center;
    border: 4px solid var(--blue);
    border-radius: 16px;
  }
  .sec.-contact .tel_box .txt {
    font-size: 14px;
    font-weight: bold;
  }
  .sec.-contact .tel_box .num {
    display: flex;
    justify-content: center;
    margin: 10px auto 0;
    color: var(--blue);
    font-size: 27px;
    font-weight: bold;
  }
  .sec.-contact .tel_box .num::before {
    content: "";
    display: inline-block;
    width: 21px;
    height: 27px;
    margin: 2px 5px 0 0;
    background: url(../img/ico_tel.svg) no-repeat;
    background-size: cover;
  }
}

/* .form_box
---------------------------------------- */
.sec.-contact .form_box {
  position: relative;
  width: 56.4%;
  height: auto;
  padding: 68px 0;
}
.sec.-contact .form_box::before {
  position: absolute;
  top: 0;
  right: 0;
  content: "";
  display: block;
  width: 100%;
  height: 100dvh;
  background: #EFEEE8;
}
.sec.-contact .form_box >.inner {
  max-width: 557px;
  margin: 0 auto 0 12%;
}
@media screen and (max-width: 1200px){
  .sec.-contact .form_box {
    padding: 107px 2% 180px;
  }
  .sec.-contact .form_box >.inner {
    margin: 0 auto 0 2%;
  }
}
/* .form
---------------------------------------- */
.form_box .form dl {
  padding: 1px 0;
}
.form_box .form dt,
.form_box .form dd {
  margin-top: 14px;
  font-size: 16px;
  line-height: 1.75;
  letter-spacing: .8px;
}
.form_box .form dt {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: space-between;
  -ms-flex-preferred-size: 240px;
  width: 190px;
  margin-right: 20px;
  margin-top: 14px;
}
.form_box .form dt .txt {
  display: flex;
  justify-content: space-between;
  width: 100%;
  color: #000;
  font-weight: bold;
}
.form_box .form dd {
  width: 100%;
  height: 100%;
  max-width: 358px;
}
.form_box .form .required {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 20px;
  margin: 5px 0 0 auto;
  font-size: 12px;
  font-weight: bold;
  color: #fff;
  background: var(--pink);
  border-radius: 6px;
}
.form_box .form .dl-check.check_01 dt {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.form_box .form .dl-check.check_01 dt .note {
  text-align: left;
  font-size: 12px;
  font-weight: var(--regular);
  line-height: 1.5;
}
.form_box .form .dl-check.check_02 .wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required {
  display: flex;
  flex-wrap: wrap;
}
.form_box .form .dl-check.check_02 .wpcf7-list-item {
  width: 50%;
}

.form_box .form input:focus,
.form_box .form select:focus,
.form_box .form textarea:focus {
  outline: 0;
  background: #fff;
}
.form_box .form label {
  display: flex;
  line-height: 1.5;
  transition: .25s;
}
.form_box .form label:hover {
  cursor: pointer;
  color: var(--blue);
}

.form_box .form dl {
  display: flex;
  align-items: flex-start;
  max-width: 100%;
}
.form_box .form dl.dl-checkbox {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.form_box .form dl.dl-textarea {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.form_box .form textarea {
  height: 92px;
}

.form_box .form .wpcf7-form input[type="text"],
.form_box .form .wpcf7-form input[type="password"],
.form_box .form .wpcf7-form input[type="datetime"],
.form_box .form .wpcf7-form input[type="datetime-local"],
.form_box .form .wpcf7-form input[type="date"],
.form_box .form .wpcf7-form input[type="month"],
.form_box .form .wpcf7-form input[type="time"],
.form_box .form .wpcf7-form input[type="week"],
.form_box .form .wpcf7-form input[type="number"],
.form_box .form .wpcf7-form input[type="email"],
.form_box .form .wpcf7-form input[type="url"],
.form_box .form .wpcf7-form input[type="search"],
.form_box .form .wpcf7-form input[type="tel"],
.form_box .form .wpcf7-form input[type="color"],
.form_box .form .wpcf7-form .uneditable-input {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: .25em .5em;
  font-family: var(--font-family);
  font-size: inherit;
  line-height: inherit;
  border: 1px solid #B9B9BA;
  border-radius: 4px;
}
.form_box .form .wpcf7-form textarea {
  max-width: 100%;
  padding: .5em .75em;
  margin: 0;
  font-family: var(--font-family);
  font-size: inherit;
  line-height: inherit;
  border: 1px solid #B9B9BA;
}
.form_box .form .wpcf7-form .wpcf7-form-control-wrap {
  display: inline-block;
  width: 100%;
  height: 100%;
  margin: 0;
}
.form_box .form .wpcf7-form .wpcf7-list-item {
  margin: 0 0 3px;
  line-height: 1;
}
.wpcf7-form .wpcf7-form-control-wrap {
  display: block;
  text-align: left;
  margin: 0 auto 10px auto
}
.form_box .form .wpcf7-form input::-webkit-input-placeholder, .form_box .form .wpcf7-form textarea::-webkit-input-placeholder {
  font-weight: bold;
  color: #aaa;
}
.form_box .form .wpcf7-form input::-moz-placeholder, .form_box .form .wpcf7-form textarea::-moz-placeholder {
  font-weight: bold;
  color: #aaa;
}
.form_box .form .wpcf7-form input:-ms-input-placeholder, .form_box .form .wpcf7-form textarea:-ms-input-placeholder {
  font-weight: bold;
  color: #aaa;
}
.form_box .form .wpcf7-form input::-ms-input-placeholder, .form_box .form .wpcf7-form textarea::-ms-input-placeholder {
  font-weight: bold;
  color: #aaa;
}
.form_box .form .wpcf7-form input::placeholder,
.form_box .form .wpcf7-form textarea::placeholder {
  font-weight: bold;
  color: #aaa;
}
.form_box .form .submit_btn {
  position: relative;
  width: 228px;
  height: 45px;
  margin: 40px auto;
}
.form_box .form .submit_btn input[type="submit"] {
  display: flex;
  width: 100%;
  height: 100%;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  line-height: 1;
  border: 0;
  border-radius: 7.5px;
  background-color: var(--blue);
  background-image: url(../img/ico_dl.svg);
  background-repeat: no-repeat;
  background-size: 19px;
  background-position: center right 16px;
}

.form_box .form .submit_btn input[type="submit"]:hover {
  opacity: .7;
  -webkit-box-shadow: none;
          box-shadow: none;
}
.form_box .form input[type="checkbox"],
.form_box .form input[type="radio"] {
  flex-shrink: 0;
  position: relative;
  margin-right: 5px;
  top: 2px;
  border: 0;
  border-radius: 0;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  background-color: #fff;;
  border: 1px solid #B9B9BA;
  border-radius: 4px;
}
.form_box .form input[type="checkbox"]:checked {
  background: var(--blue);
}
.form_box .form input[type="checkbox"]:checked:before,
.form_box .form input[type="checkbox"]:checked:after,
.form_box .form input[type="radio"]:checked:before,
.form_box .form input[type="radio"]:checked:after {
  display: block;
  position: absolute;
  content: "";
  background-color: #fff;
}
.form_box .form input[type="checkbox"]:checked:before {
  left: 1px;
  top: 11px;
  width: 8px;
  height: 3px;
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: right center;
  transform-origin: right center;
}
.form_box .form input[type="checkbox"]:checked:after {
  left: 8px;
  top: 11px;
  width: 10px;
  height: 3px;
  -webkit-transform: rotate(-53deg);
  transform: rotate(-45deg);
  -webkit-transform-origin: left center;
  transform-origin: left center;
}
.form_box .form input[type="radio"] {
  border-radius: 50%
}
.form_box .form input[type="radio"]:checked:before {
  left: 50%;
  top: 50%;
  width: 8px;
  height: 8px;
  margin-top: -4px;
  margin-left: -4px;
  border-radius: 50%
}
.form_box .form input[type="radio"]:checked:after {
  display: none;
  width: 0;
  height: 0
}

.form_box .form div.wpcf7-mail-sent-ok {
  max-width: 80%;
  margin: 40px auto 0;
  padding: 10px;
  text-align: center;
}
.form_box .form div.wpcf7-validation-errors,
.form_box .form div.wpcf7-acceptance-missing {
  max-width: 80%;
  margin: 40px auto 0;
  padding: 10px;
  text-align: center;
  border: 2px solid #dd3333;
}
.form_box .form .wpcf7 form.invalid .wpcf7-response-output,
.form_box .form .wpcf7 form .wpcf7-response-output {
  max-width: 80%;
  text-align: center;
  margin: 30px auto;
  padding: 1em 0;
  border-color: #dd3333;
}
.form_box .form .wpcf7 form.sent .wpcf7-response-output {
  display: none;
}
@media screen and (max-width: 768px){
  .sec.-contact .form_box {
    width: 100%;
    padding: 56px 0 100px;
    background: #EFEEE8;
  }
  .sec.-contact .form_box >.inner {
    width: 85%;
    max-width: 555px;
    margin: 0 auto;
  }
  
  /* .form
  ---------------------------------------- */
  .form_box .form dl {
    padding: 1px 0;
  }
  .form_box .form dt,
  .form_box .form dd {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: .8px;
  }
  .form_box .form dt {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: end;
    -ms-flex-pack: end;
    justify-content: flex-start;
    -ms-flex-preferred-size: 240px;
    width: 100%;
    margin: 4px 0;
  }
  .form_box .form dt .txt {
    display: flex;
    justify-content: flex-start;
    width: 100%;
    color: #000;
    font-size: 16px;
    font-weight: bold;
    line-height: 1.75;
  }
  .form_box .form dd {
    width: 100%;
    height: 100%;
    max-width: 100%;
    margin-top: 0;
  }
  .form_box .form .required {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 20px;
    margin: 3px 0 0 8px;
    font-size: 12px;
    font-weight: bold;
    color: #fff;
    background: var(--pink);
    border-radius: 6px;
  }
  .form_box .form .dl-check.check_01 dt {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  }
  .form_box .form .dl-check.check_01 dt .note {
    margin-bottom: 5px;
    text-align: left;
    font-size: 12px;
    font-weight: var(--regular);
    line-height: 1.5;
  }
  .form_box .form .dl-check.check_02 .wpcf7-form-control.wpcf7-checkbox.wpcf7-validates-as-required {
    display: flex;
    flex-wrap: wrap;
  }
  .form_box .form .dl-check.check_02 .wpcf7-list-item {
    width: 50%;
  }
  .form_box .form input:focus,
  .form_box .form select:focus,
  .form_box .form textarea:focus {
    outline: 0;
    background: #fff;
  }
  .form_box .form label {
    display: flex;
    line-height: 1.5;
    transition: .25s;
  }
  .form_box .form label:hover {
    cursor: pointer;
    color: var(--blue);
  }
  
  .form_box .form dl {
    display: flex;
    align-items: flex-start;
    max-width: 100%;
    flex-direction: column;
  }
  .form_box .form dl.dl-checkbox {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .form_box .form dl.dl-textarea {
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: flex-start;
  }
  .form_box .form textarea {
    height: 92px;
  }
  
  .form_box .form .wpcf7-form input[type="text"],
  .form_box .form .wpcf7-form input[type="password"],
  .form_box .form .wpcf7-form input[type="datetime"],
  .form_box .form .wpcf7-form input[type="datetime-local"],
  .form_box .form .wpcf7-form input[type="date"],
  .form_box .form .wpcf7-form input[type="month"],
  .form_box .form .wpcf7-form input[type="time"],
  .form_box .form .wpcf7-form input[type="week"],
  .form_box .form .wpcf7-form input[type="number"],
  .form_box .form .wpcf7-form input[type="email"],
  .form_box .form .wpcf7-form input[type="url"],
  .form_box .form .wpcf7-form input[type="search"],
  .form_box .form .wpcf7-form input[type="tel"],
  .form_box .form .wpcf7-form input[type="color"],
  .form_box .form .wpcf7-form .uneditable-input {
    width: 100%;
    margin: 0;
    padding: .25em .25em;
    font-size: inherit;
    line-height: inherit;
    border: 1px solid #B9B9BA;
    border-radius: 4px;
  }
  .form_box .form .wpcf7-form textarea {
    max-width: 100%;
    padding: .5em .75em;
    margin: 0;
    font-size: inherit;
    line-height: inherit;
    border: 1px solid #B9B9BA;
  }
  .form_box .form .wpcf7-form .wpcf7-form-control-wrap {
    display: inline-block;
    width: 100%;
    height: 100%;
    margin: 0;
  }
  .form_box .form .wpcf7-form .wpcf7-list-item {
    margin: 0 0 4px;
    line-height: 1;
  }
  .wpcf7-form .wpcf7-form-control-wrap {
    display: block;
    text-align: left;
    margin: 0 auto 10px auto
  }
  .form_box .form .wpcf7-form input::-webkit-input-placeholder, .form_box .form .wpcf7-form textarea::-webkit-input-placeholder {
    font-weight: bold;
    color: #aaa;
  }
  .form_box .form .wpcf7-form input::-moz-placeholder, .form_box .form .wpcf7-form textarea::-moz-placeholder {
    font-weight: bold;
    color: #aaa;
  }
  .form_box .form .wpcf7-form input:-ms-input-placeholder, .form_box .form .wpcf7-form textarea:-ms-input-placeholder {
    font-weight: bold;
    color: #aaa;
  }
  .form_box .form .wpcf7-form input::-ms-input-placeholder, .form_box .form .wpcf7-form textarea::-ms-input-placeholder {
    font-weight: bold;
    color: #aaa;
  }
  .form_box .form .wpcf7-form input::placeholder,
  .form_box .form .wpcf7-form textarea::placeholder {
    font-weight: bold;
    color: #aaa;
  }
  .form_box .form .submit_btn {
    position: relative;
    width: 228px;
    height: 45px;
    margin: 36px auto;
  }
  .form_box .form .submit_btn input[type="submit"] {
    display: flex;
    width: 100%;
    height: 100%;
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    line-height: 1;
    border: 0;
    border-radius: 7.5px;
    background-color: var(--blue);
    background-image: url(.../img/ico_dl.svg);
    background-repeat: no-repeat;
    background-size: 19px;
    background-position: center right 11px;
  }
  
  .form_box .form .submit_btn input[type="submit"]:hover {
    opacity: .7;
    box-shadow: none;
  }
  .form_box .form input[type="checkbox"],
  .form_box .form input[type="radio"] {
    flex-shrink: 0;
    position: relative;
    margin-right: 12px;
    top: 2px;
    border: 0;
    border-radius: 0;
    width: 20px;
    height: 20px;
    vertical-align: middle;
    background-color: #fff;
    border: 1px solid #B9B9BA;
    border-radius: 4px;
  }
  .form_box .form input[type="checkbox"]:checked {
    background: var(--blue);
  }
  .form_box .form input[type="checkbox"]:checked:before,
  .form_box .form input[type="checkbox"]:checked:after,
  .form_box .form input[type="radio"]:checked:before,
  .form_box .form input[type="radio"]:checked:after {
    display: block;
    position: absolute;
    content: "";
    background-color: #fff;
  }
  .form_box .form input[type="checkbox"]:checked:before {
    left: 1px;
    top: 11px;
    width: 8px;
    height: 3px;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
    -webkit-transform-origin: right center;
    transform-origin: right center;
  }
  .form_box .form input[type="checkbox"]:checked:after {
    left: 8px;
    top: 11px;
    width: 10px;
    height: 3px;
    -webkit-transform: rotate(-53deg);
    transform: rotate(-45deg);
    -webkit-transform-origin: left center;
    transform-origin: left center;
  }
  .form_box .form input[type="radio"] {
    border-radius: 50%
  }
  .form_box .form input[type="radio"]:checked:before {
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    margin-top: -4px;
    margin-left: -4px;
    border-radius: 50%
  }
  .form_box .form input[type="radio"]:checked:after {
    display: none;
    width: 0;
    height: 0
  }
  
  .form_box .form div.wpcf7-mail-sent-ok {
    max-width: 80%;
    margin: 40px auto 0;
    padding: 10px;
    text-align: center;
  }
  .form_box .form div.wpcf7-validation-errors,
  .form_box .form div.wpcf7-acceptance-missing {
    max-width: 80%;
    margin: 40px auto 0;
    padding: 10px;
    text-align: center;
    border: 2px solid #dd3333;
  }
  .form_box .form .wpcf7 form.invalid .wpcf7-response-output,
  .form_box .form .wpcf7 form .wpcf7-response-output {
    max-width: 80%;
    text-align: center;
    margin: 30px auto;
    padding: 1em 0;
    border-color: #dd3333;
  }
}

/* -----------------------------------
  footer
--------------------------------------*/
#footer {
	width: 100%;
	padding: 0;
}
@media screen and (max-width: 768px){
}

/* -----------------------------------
  /// add style ///
--------------------------------------*/
.grecaptcha-badge {
  bottom: 160px!important;
  z-index: 9999;
}
@media screen and (max-width: 768px){
  .grecaptcha-badge {
    bottom: 54px!important;
  }
}
.page.dl-guidebook .pink {
  color: #ED7980;
}

/* CF7 ラベル文字の復旧 */
.page.dl-guidebook .form_box .form dt {
  margin: 0;
  font-weight: 700;
}
.page.dl-guidebook .form_box .form dl {
  display: flex;
  align-items: center;
  min-height: 56px;
  margin: 0 !important;
  padding: 0;
}

.page.dl-guidebook .form_box .form dt,
.page.dl-guidebook .form_box .form dd {
  margin-top: 0;
  margin-bottom: 0;
}

.page.dl-guidebook .form_box .form dt {
  align-items: center;
}

.page.dl-guidebook .form_box .form .required {
  margin-top: 0;
}

/* ========================================
   form_box 背景レイヤー修正
======================================== */

.page.dl-guidebook .sec.-contact .form_box {
  position: relative;
  isolation: isolate;
}

.page.dl-guidebook .sec.-contact .form_box::before {
  z-index: 0;
  pointer-events: none;
}

.page.dl-guidebook .sec.-contact .form_box > .inner {
  position: relative;
  z-index: 1;
}