/* ========================================

common

======================================== */
.en_r {
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
}

.is-fade > *:not(.is-not) {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
}
.is-fade > .is-not {
  opacity: 0;
  -webkit-transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
}
.is-fade.fadeIn > * {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.box-fade {
  opacity: 0;
  -webkit-transform: translateY(30px);
          transform: translateY(30px);
  -webkit-transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
  transition: all 0.6s cubic-bezier(0.37, 0, 0.63, 1);
}
.box-fade.fadeIn {
  opacity: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
}

.p_hover a:hover {
  opacity: 0.7;
}

.svg.c_white svg {
  fill: #fff;
}
.svg.c_black svg {
  fill: #000;
}

.img-fit {
  position: relative;
  overflow: hidden;
  z-index: 1;
}
.img-fit::before {
  width: 100%;
  height: 0;
  content: '';
  display: block;
  padding-top: 100%;
  position: relative;
}
.img-fit img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  -o-object-position: 50% 50%;
     object-position: 50% 50%;
  -o-object-fit: cover;
     object-fit: cover;
  z-index: 1;
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}

.replace_img {
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  text-indent: 100%;
  white-space: nowrap;
  background-repeat: no-repeat;
  background-size: contain;
  background-position: 50% 50%;
}

.l_tel {
  pointer-events: none;
}

@media screen and (max-width: 800px) {
  .l_tel {
    pointer-events: auto;
  }
}
/* ========================================

link

======================================== */
.link_arrow a::after {
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
@media screen and (min-width: 800px) {
  .link_arrow a:hover {
    opacity: 0.7;
  }
  .link_arrow a:hover::after {
    translate: 4px 0px;
  }
}

.cmn_link {
  position: relative;
  padding: 120px 0;
  z-index: 10;
}
.cmn_link_inner {
  max-width: 1200px;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.cmn_link .link {
  width: 48.3334%;
}
.cmn_link .link a {
  color: #fff;
  font-size: 22px;
  letter-spacing: 0.06em;
  width: 100%;
  height: 150px;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  border-radius: 100px;
}
.cmn_link .link a::after {
  width: 116px;
  height: 122px;
  display: block;
  position: absolute;
  right: 48px;
  bottom: 0;
  content: '';
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: contain;
}
@media screen and (min-width: 800px) {
  .cmn_link .link a:hover {
    opacity: 0.6;
  }
}
.cmn_link .link._about a {
  background-color: var(--c_blue);
}
.cmn_link .link._about a::after {
  background-image: url(../img/common/cmn_link_illust01.png);
}
.cmn_link .link._initiative a {
  background-color: var(--c_orange);
}
.cmn_link .link._initiative a::after {
  background-image: url(../img/common/cmn_link_illust02.png);
}

@media screen and (max-width: 800px) {
  .cmn_link {
    padding: 0;
  }
  .cmn_link .link {
    width: 50%;
  }
  .cmn_link .link a {
    font-size: 13px;
    height: 110px;
    border-radius: 0;
  }
  .cmn_link .link a::after {
    width: 100%;
    height: 58px;
    right: 0;
    position: absolute;
    bottom: 50%;
    translate: 0% -29px;
  }
  .cmn_link .link a span {
    width: 83.7334%;
    height: 58px;
    display: block;
    background-color: #fff;
    border-radius: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
  .cmn_link .link._about a {
    color: var(--c_blue);
    background-color: var(--c_blue);
  }
  .cmn_link .link._about a::after {
    background-image: url(../img/common/cmn_link_illust01_sp.png);
  }
  .cmn_link .link._initiative a {
    color: var(--c_orange);
    background-color: var(--c_orange);
  }
  .cmn_link .link._initiative a::after {
    background-image: url(../img/common/cmn_link_illust02_sp.png);
  }
}
/* ========================================

column

======================================== */
.column_list_item a, .cmn_column_list_item a {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 800px) {
  .column_list_item a:hover .img img, .cmn_column_list_item a:hover .img img {
    opacity: 0.7;
  }
  .column_list_item a:hover h3, .cmn_column_list_item a:hover h3,
  .column_list_item a:hover .date,
  .cmn_column_list_item a:hover .date,
  .column_list_item a:hover .txt,
  .cmn_column_list_item a:hover .txt {
    color: var(--c_blue);
  }
}
.column_list_item .img, .cmn_column_list_item .img {
  aspect-ratio: 335 / 216;
  overflow: hidden;
  margin-bottom: 22px;
  background-color: #fff;
  border-radius: 15px;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}
.column_list_item .img img, .cmn_column_list_item .img img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.column_list_item h3, .cmn_column_list_item h3 {
  font-size: 17px;
  font-weight: 500;
  line-height: 1.88;
  letter-spacing: 0.1em;
  margin-bottom: 15px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.column_list_item .cat, .cmn_column_list_item .cat {
  margin-bottom: 16px;
}
.column_list_item .cat span, .cmn_column_list_item .cat span {
  color: var(--c_blue);
  font-size: 13px;
  display: inline-block;
  padding: 5.5px 13px;
  border: 1px solid var(--c_blue);
  border-radius: 50px;
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.column_list_item .date, .cmn_column_list_item .date {
  color: #666;
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-size: 12px;
  letter-spacing: 0.08em;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.column_list_item .txt, .cmn_column_list_item .txt {
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

@media screen and (max-width: 800px) {
  .column_list_item .img, .cmn_column_list_item .img {
    margin-bottom: 6px;
    background-color: transparent;
    border-radius: 7px;
  }
  .column_list_item h3, .cmn_column_list_item h3 {
    font-size: 12px;
    line-height: 1.5;
    margin-bottom: 10px;
  }
  .column_list_item .cat, .cmn_column_list_item .cat {
    margin-bottom: 3px;
    scale: 0.8;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
  .column_list_item .cat span, .cmn_column_list_item .cat span {
    font-size: 10px;
  }
  .column_list_item .date, .cmn_column_list_item .date {
    font-size: 10px;
    -webkit-transform-origin: 0 0;
            transform-origin: 0 0;
  }
}
/* ========================================

column

======================================== */
.cmn_column {
  padding: 85px 0;
  background-image: url(../img/common/cmn_column_bg.jpg);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: cover;
}
.cmn_column_title {
  max-width: 1086px;
  margin: 0 auto 65px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.cmn_column_title .illust {
  width: 157px;
  margin-right: 48px;
}
.cmn_column_title h2 {
  width: 194px;
  margin-bottom: 15px;
}
.cmn_column_title .desc {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.08em;
}
.cmn_column_list {
  width: 100%;
}
.cmn_column_list_inner {
  margin-bottom: 68px;
}
.cmn_column_list_inner .slick-arrow {
  width: 48px;
  height: 48px;
  top: 108px;
  background-color: rgba(255, 255, 255, 0.8);
  border-radius: 50%;
  z-index: 2;
  -webkit-transform: translate(0, -50%);
          transform: translate(0, -50%);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
  transition: all 0.4s cubic-bezier(0.33, 1, 0.68, 1);
}
.cmn_column_list_inner .slick-arrow::before {
  width: 12px;
  height: 8.5px;
  display: block;
  content: '';
  background-color: #000;
  opacity: 1;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}
.cmn_column_list_inner .slick-arrow.slick-prev {
  left: 40px;
}
.cmn_column_list_inner .slick-arrow.slick-prev::before {
  margin-right: 2px;
  scale: -1 1;
}
.cmn_column_list_inner .slick-arrow.slick-next {
  right: 40px;
}
.cmn_column_list_inner .slick-arrow.slick-next::before {
  margin-left: 2px;
}
.cmn_column_list_inner .slick-arrow:hover {
  opacity: 0.4;
}
.cmn_column_list_item {
  width: 335px;
  margin-left: 46px;
}
.cmn_column .link {
  position: relative;
  z-index: 2;
}
.cmn_column .link a {
  color: #fff;
  font-size: 15px;
  letter-spacing: 0.06em;
  width: 300px;
  height: 50px;
  display: block;
  position: relative;
  margin: 0 auto;
  padding: 0 20px 2px;
  background-color: var(--c_blue);
  border-radius: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.cmn_column .link a::after {
  width: 9px;
  height: 5.8px;
  display: block;
  content: '';
  position: absolute;
  top: calc(50% - 2.4px);
  right: 18px;
  background-color: #fff;
  -webkit-clip-path: polygon(0 0, 0% 100%, 100% 50%);
          clip-path: polygon(0 0, 0% 100%, 100% 50%);
}

@media screen and (max-width: 800px) {
  .cmn_column {
    padding: 28px 0 48px;
  }
  .cmn_column_title {
    display: block;
    margin-bottom: 32px;
  }
  .cmn_column_title .illust {
    width: 141px;
    margin: 0 auto 24px;
  }
  .cmn_column_title h2 {
    width: 187px;
    margin: 0 auto 10px;
  }
  .cmn_column_title .desc {
    font-size: 17px;
    line-height: 1.76;
    letter-spacing: 0;
    width: 82.1334%;
    margin: 0 auto;
  }
  .cmn_column_list {
    width: 89.3334%;
    margin: 0 auto 40px;
  }
  .cmn_column_list_inner {
    margin-bottom: 38px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  .cmn_column_list_item {
    width: 45.7972%;
    margin: 0 0 15px;
  }
}
/* ========================================

page_title

======================================== */
.page_title {
  color: var(--c_orange);
  max-width: 1100px;
  position: relative;
  margin: 0 auto 82px;
  padding-top: 82px;
  padding-bottom: 18px;
  border-bottom: 2px solid #c4c4c4;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
.page_title::before {
  width: 136px;
  height: 2px;
  display: block;
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  background-color: var(--c_orange);
  z-index: 2;
}
.page_title::after {
  width: 82px;
  height: 90px;
  display: block;
  content: '';
  position: absolute;
  right: 10px;
  bottom: 0;
  background-repeat: no-repeat;
  background-position: 50% 100%;
  background-size: contain;
  z-index: 2;
}
.page_title h1 {
  font-size: 30px;
  letter-spacing: 0.1em;
}
.page_title .en {
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  font-size: 15px;
  letter-spacing: 0.1em;
  margin-bottom: 10px;
  -webkit-box-ordinal-group: 0;
      -ms-flex-order: -1;
          order: -1;
}

@media screen and (max-width: 800px) {
  .page_title {
    width: 86.4307%;
    margin-bottom: 30px;
    padding: 0 0 12px;
  }
  .page_title h1 {
    font-size: 18px;
  }
  .page_title .en {
    font-size: 10px;
    scale: 0.8;
    margin-bottom: 6px;
    -webkit-transform-origin: left bottom;
            transform-origin: left bottom;
  }
}
/* ========================================

hl01

======================================== */
.hl01 {
  color: var(--c_orange);
  font-size: 24px;
  margin-bottom: 40px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.hl01::before {
  width: 4px;
  height: 22px;
  display: block;
  content: '';
  margin-right: 24px;
  background-color: var(--c_orange);
  translate: 0 2px;
}

@media screen and (max-width: 800px) {
  .hl01 {
    font-size: 15px;
  }
  .hl01::before {
    width: 3px;
    height: 14px;
    margin-right: 15px;
    translate: 0 1px;
  }
}
body {
  background-color: #ebdfcb;
}

@media screen and (min-width: 801px) {
  main {
    min-height: calc(100vh - 100px - 775px);
  }
}
.footer {
  padding-top: 0;
}
.footer_slide {
  display: none;
}

.page_title {
  margin-bottom: 114px;
}
.page_title::before {
  width: 203px;
}
.page_title::after {
  width: 82px;
  height: 90px;
  right: 20px;
  bottom: -20px;
  background-image: url(../img/contact/page_title_illust.png);
}

@media screen and (max-width: 800px) {
  .page_title {
    margin-bottom: 26px;
  }
  .page_title::after {
    width: 50px;
    height: 55px;
    right: 10px;
    bottom: -10px;
  }

  .hl01 {
    font-size: 18px;
  }
  .hl01::before {
    height: 14px;
  }
}
/* ========================================

contact

======================================== */
.contact {
  width: 900px;
  margin: 0 auto 100px;
}
.contact_wrap {
  max-width: 1282px;
  margin: 0 auto 120px;
  padding-bottom: 110px;
  background-color: #fff;
  border-radius: 40px;
}
.contact .hl01 {
  margin-bottom: 34px;
}
.contact .desc {
  font-size: 18px;
  line-height: 1.77;
  letter-spacing: 0.04em;
  margin-bottom: 63px;
}
.contact_form {
  max-width: 790px;
  margin: 0 auto;
}
.contact_form dl {
  font-size: 16px;
  margin-bottom: 55px;
}
.contact_form dl div {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}
.contact_form dl div:not(:last-of-type) {
  margin-bottom: 30px;
}
.contact_form dl dt {
  width: 220px;
  letter-spacing: 0.04em;
  padding-top: 12px;
}
.contact_form dl dt span {
  color: #f00;
  margin-left: 0.3em;
}
.contact_form dl dd {
  width: calc(100% - 220px);
}
.contact_form dl dd input,
.contact_form dl dd textarea {
  width: 100%;
  height: 50px;
  padding: 10px 13px;
  background-color: #f1f1f1;
}
.contact_form dl dd textarea {
  height: 230px;
}
.contact_form .att {
  font-size: 16px;
  text-align: center;
  letter-spacing: 0.1em;
  margin-bottom: 20px;
}
.contact_form .att._check {
  margin-bottom: 45px;
}
.contact_form .att a {
  color: #50a5fd;
  border-bottom: 1px solid #50a5fd;
}
.contact_form .att a:hover {
  opacity: 0.6;
}
.contact_form .btn {
  width: 255px;
}
.contact_form .btn_wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.contact_form .btn input {
  color: var(--c_orange);
  font-size: 16px;
  letter-spacing: 0.1em;
  width: 100%;
  height: 46px;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid var(--c_orange);
  border-radius: 50px;
  -webkit-transition: all .2s;
  transition: all .2s;
}
@media screen and (min-width: 800px) {
  .contact_form .btn input:hover {
    color: #fff;
    background-color: var(--c_orange);
  }
}
.contact_form .btn.back {
  width: 150px;
  margin-left: 20px;
}
.contact_form .btn.back input {
  color: #999;
  border-color: #999;
}
@media screen and (min-width: 800px) {
  .contact_form .btn.back input:hover {
    color: #fff;
    background-color: #999;
  }
}
.contact_form.confirm dl div {
  border-bottom: 1px solid #c4c4c4;
}
.contact_form.confirm dl dd input,
.contact_form.confirm dl dd textarea {
  background-color: #fff;
}
.contact_form.confirm dl dd textarea {
  height: auto;
}
.contact:has(> .confirm) {
  margin-bottom: 0;
}
.contact:has(> .thanks) {
  margin-bottom: 0;
}
.contact:has(> .thanks) .desc {
  margin-bottom: 0;
}

@media screen and (max-width: 800px) {
  .contact {
    width: 86.4307%;
    margin-bottom: 75px;
  }
  .contact_wrap {
    width: calc(100% - 36px);
    margin-bottom: 50px;
    padding: 30px 0 62px;
    border-radius: 20px;
  }
  .contact .hl01 {
    margin-bottom: 20px;
  }
  .contact .desc {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.04em;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    margin-bottom: 35px;
  }
  .contact_form {
    width: 100%;
  }
  .contact_form dl {
    margin-bottom: 20px;
  }
  .contact_form dl div {
    display: block;
  }
  .contact_form dl div:not(:last-of-type) {
    margin-bottom: 16px;
  }
  .contact_form dl dt {
    width: 100%;
    margin-bottom: 12px;
    padding-top: 0;
  }
  .contact_form dl dd {
    width: 100%;
  }
  .contact_form dl dd textarea {
    height: 192px;
  }
  .contact_form .att {
    font-size: 15px;
    text-align: left;
    line-height: 1.4;
  }
  .contact_form .att._check {
    font-size: 16px;
    text-align: center;
    margin-bottom: 35px;
  }
  .contact_form .btn {
    width: 70%;
  }
  .contact_form .btn input {
    width: 100%;
    height: 50px;
  }
  .contact_form .btn.back {
    width: 27%;
    margin-left: 3%;
  }
  .contact_form.confirm dl dd input,
  .contact_form.confirm dl dd textarea {
    padding-left: 0;
  }
}
/* ========================================

faq

======================================== */
.faq {
  width: 900px;
  margin: 0 auto;
}
.faq .hl01 {
  margin-bottom: 30px;
}
.faq .desc {
  font-size: 18px;
  line-height: 1.77;
  letter-spacing: 0.04em;
  margin-bottom: 40px;
}
.faq h3 {
  color: var(--c_orange);
  font-size: 23px;
  font-weight: 500;
  letter-spacing: 0.06em;
  margin-top: -40px;
  padding-bottom: 35px;
  padding-top: 40px;
  border-bottom: 1px solid var(--c_orange);
}
.faq_nav {
  margin-bottom: 65px;
}
.faq_nav ul {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.faq_nav ul li {
  width: 172px;
  margin-bottom: 10px;
}
.faq_nav ul li:not(:nth-child(5n)) {
  margin-right: 10px;
}
.faq_nav ul li a {
  color: var(--c_orange);
  font-size: 13px;
  text-align: center;
  line-height: 1.23;
  -webkit-font-feature-settings: "palt";
          font-feature-settings: "palt";
  width: 100%;
  height: 39px;
  display: block;
  padding-bottom: 1px;
  border: 1px solid var(--c_orange);
  border-radius: 3px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (min-width: 800px) {
  .faq_nav ul li a:hover {
    color: #fff;
    background-color: var(--c_orange);
  }
}
.faq_nav .select {
  display: none;
}
.faq dl {
  counter-reset: number 0;
}
.faq dl:not(:last-of-type) {
  margin-bottom: 60px;
}
.faq dl > div {
  position: relative;
  border-bottom: 1px solid var(--c_orange);
}
.faq dl > div::before {
  font-family: "Shippori Antique", sans-serif;
  font-weight: 400;
  color: var(--c_orange);
  font-size: 18px;
  letter-spacing: 0.04em;
  counter-increment: number 1;
  content: "Q " counter(number,decimal-leading-zero);
  position: absolute;
  top: 33px;
  left: 0;
}
.faq dl dt {
  font-size: 18px;
  line-height: 2;
  letter-spacing: 0.04em;
  cursor: pointer;
  position: relative;
  padding: 24px 116px 26px 84px;
  z-index: 1;
}
.faq dl dt::before {
  width: 25px;
  height: 25px;
  display: block;
  content: '';
  position: absolute;
  top: 30px;
  right: 20px;
  border: 1px solid var(--c_orange);
  border-radius: 50%;
  background-image: url(../img/contact/faq_ico_off.png);
  background-repeat: no-repeat;
  background-position: 50% 50%;
  background-size: 40%;
}
.faq dl dt.open::before {
  background-image: url(../img/contact/faq_ico_on.png);
}
.faq dl dd {
  font-size: 16px;
  line-height: 2;
  letter-spacing: 0.04em;
  padding: 0 116px 0 84px;
}
.faq dl dd > p,
.faq dl dd > div {
  padding-bottom: 40px;
}
.faq dl dd span {
  display: block;
  text-indent: -1em;
  padding-left: 1em;
}
.faq dl dd a:hover {
  text-decoration: underline;
}
.faq dl dd table {
  font-size: 18px;
  line-height: 1;
  width: 700px;
  margin: 25px 0 10px;
  border-top: 1px solid var(--c_orange);
}
.faq dl dd table th {
  color: var(--c_orange);
  text-align: center;
  vertical-align: middle;
  padding: 4px 0 5px;
  border: 1px solid var(--c_orange);
  border-left: none;
}
.faq dl dd table th:last-child {
  border-right: none;
}
.faq dl dd table td {
  text-align: center;
  padding: 4px 0 5px;
  border: 1px solid var(--c_orange);
  border-left: none;
}
.faq dl dd table td:last-child {
  border-right: none;
}

@media screen and (max-width: 800px) {
  .faq {
    width: 86.4307%;
  }
  .faq .hl01 {
    margin-bottom: 20px;
  }
  .faq .desc {
    font-size: 16px;
    line-height: 1.75;
    letter-spacing: 0.04em;
    margin-bottom: 35px;
  }
  .faq h3 {
    font-size: 16px;
    line-height: 1.75;
    margin-top: -75px;
    padding-top: 85px;
    padding-bottom: 15px;
  }
  .faq_nav {
    margin-bottom: 48px;
  }
  .faq_nav ul {
    display: none;
  }
  .faq_nav .select {
    display: block;
    position: relative;
  }
  .faq_nav .select::before {
    width: 5.8px;
    height: 9px;
    display: block;
    content: '';
    position: absolute;
    top: calc(50% - 4px);
    right: 18px;
    background-color: var(--c_orange);
    -webkit-clip-path: polygon(0 0, 100% 0%, 50% 100%);
            clip-path: polygon(0 0, 100% 0%, 50% 100%);
    z-index: 2;
  }
  .faq_nav .select select {
    color: var(--c_orange);
    font-size: 14px;
    width: 100%;
    height: 38px;
    position: relative;
    padding-left: 10px;
    border: 1px solid var(--c_orange);
    border-radius: 3px;
    z-index: 1;
  }
  .faq dl > div::before {
    font-size: 14px;
    display: block;
    top: 16px;
    margin-bottom: 5px;
  }
  .faq dl dt {
    font-size: 15px;
    line-height: 1.75;
    padding: 34px 0 18px;
    padding-right: 55px;
  }
  .faq dl dt::before {
    width: 20px;
    height: 20px;
    right: 0;
  }
  .faq dl dd {
    font-size: 14px;
    letter-spacing: 0.06em;
    -webkit-font-feature-settings: none;
            font-feature-settings: none;
    padding: 0;
  }
  .faq dl dd > p,
  .faq dl dd > div {
    padding: 0 0 16px;
  }
  .faq dl dd table {
    font-size: 10px;
    -webkit-font-feature-settings: "palt";
            font-feature-settings: "palt";
    width: 100%;
  }
}

/*# sourceMappingURL=contact.css.map */