@charset "utf-8";
/* CSS Document */
/* 基本 */

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
root設定
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

*:root {
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 400;
  line-height: 1;
  /*自動カーニング*/
  font-feature-settings: "palt";
  /*両端揃え*/
  text-align: justify;
}

@media screen and (min-width: 1281px) {
  *:root {
    font-size: 62.5%;
  }
}

@media screen and (max-width: 1280px) {
  *:root {
    font-size: 50%;
  }
}

@media screen and (max-width: 480px) {
  /*幅375pxの時に1文字10pxとなる値*/
  *:root {
    font-size: 2.6667vw;
  }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
管理画面
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
/* 注意書き */
div.postpage {
  font-size: 1rem;
  border: 1px solid #f00;
  background-color: #fff;
  padding: 2em;
}

div.postpage.caution {
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
noscript
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

noscript {
  display: block;
  font-size: 16px;
  padding: 1.5em;
  background-color: #65a9dc;
  text-align: center;
  line-height: 1.75em;
  position: relative;
  z-index: 100000;
  width: auto;
  color: #fff;
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
font設定
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

.font_mintyo {
  font-family: "Noto Serif JP", serif;
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
リンク設定
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

/*リンク*/

a {
  color: #00238c;
  text-decoration: underline;
  transition: all 0.2s ease;
}

a:visited {
  color: #aa3300;
}

a:hover {
  opacity: 0.6;
}

a:active {
  color: #ffcc00;
  opacity: 1;
}

/*PCでリンクを殺す*/

@media screen and (min-width: 481px) {
  a.disabled {
    pointer-events: none;
  }

  a.disabled:hover,
  a.disabled:active {
    opacity: 1 !important;
  }
}

/*SPでリンクを殺す*/

@media screen and (max-width: 480px) {
  a.sp_disabled {
    pointer-events: none;
  }

  a.sp_disabled:hover,
  a.sp_disabled:active {
    opacity: 1 !important;
  }
}

/*--------------------
矢印
--------------------*/
a.yajirushi {
  display: inline-block;
  position: relative;
  color: #000;
  text-decoration: none;
}

a.yajirushi.underline {
  text-decoration: underline;
}

a.yajirushi::after {
  content: "";
  display: block;
  position: absolute;
  top: 50%;
  margin: auto;
  width: 0.3em;
  height: 0.3em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

a.yajirushi.left {
  padding-left: 1.25em;
}

a.yajirushi.right {
  padding-right: 1.25em;
}

a.yajirushi.left::after {
  left: 0;
  transform: translateY(-30%) translateX(70%) rotate(45deg);
}

a.yajirushi.right::after {
  right: 0;
  transform: translateY(-30%) translateX(-120%) rotate(45deg);
}

/* 色 */

a.yajirushi.gray::after {
  border-color: #808080;
}

/*--------------------
丸矢印
--------------------*/
.maru_yajirushi {
  display: inline-block;
  position: relative;
  color: #000;
  text-decoration: none;
}

.maru_yajirushi.underline {
  text-decoration: underline;
}

.maru_yajirushi::before,
.maru_yajirushi::after {
  content: "";
  display: block;
  position: absolute;
  top: 0.75em;
  margin: auto;
}

.maru_yajirushi::before {
  width: 1.154em;
  height: 1.154em;
  border-radius: 50%;
  background-color: #999;
}

.maru_yajirushi::after {
  width: 0.3em;
  height: 0.3em;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
}

.maru_yajirushi.left {
  padding-left: 1.75em;
}

.maru_yajirushi.right {
  padding-right: 1.75em;
}

.maru_yajirushi.left::before {
  left: 0;
  transform: translateY(-45%) translateX(0);
}

.maru_yajirushi.right::before {
  right: 0;
  transform: translateY(-45%) translateX(0);
}

.maru_yajirushi.left::after {
  left: 0;
  transform: translateY(-30%) translateX(70%) rotate(45deg);
}

.maru_yajirushi.right::after {
  right: 0;
  transform: translateY(-30%) translateX(-120%) rotate(45deg);
}

/* size-l */
.maru_yajirushi.size-l {
  padding-right: 2em;
}

.maru_yajirushi.size-l::before {
  width: 1.615em;
  height: 1.615em;
  border-radius: 50%;
}

.maru_yajirushi.right.size-l::after {
  right: 0;
  transform: translateY(-30%) translateX(-180%) rotate(45deg);
}

/* size-s */
.maru_yajirushi.size-s {
  padding-right: 1.5em;
}

.maru_yajirushi.size-s::before {
  width: 1em;
  height: 1em;
  border-radius: 50%;
}

.maru_yajirushi.right.size-s::after {
  width: 0.24em;
  height: 0.24em;
  transform: translateY(-30%) translateX(-140%) rotate(45deg);
}

/* 色 */
.maru_yajirushi.red::before {
  background-color: #c80032;
}

.maru_yajirushi.gray::before {
  background-color: #808080;
}

.maru_yajirushi.dark_gray::before {
  background-color: #323232;
}

.maru_yajirushi.orange::before {
  background-color: #fa7d00;
}

.maru_yajirushi.white::before {
  background-color: #fff;
}

.maru_yajirushi.white::after {
  border-color: #000;
}

.maru_yajirushi.pink::before {
  background-color: #eb809f;
}

/*--------------------
角丸ボタン
--------------------*/
a.round_button {
  display: block;
  border-radius: 20rem;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-align: center;
  line-height: 1.5;
  text-decoration: none;
  padding: 0.6em 1em 0.7em;
  /* max-width: 5.2rem; */
  margin: auto;
}

a.round_button span {
  display: inline-block;
  padding-right: 3em;
  position: relative;
}

a.round_button span::before {
  content: "";
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 1.8em;
  height: 1.8em;
  border-radius: 50%;
}

a.round_button span::after {
  content: "";
  display: block;
  position: absolute;
  width: 0.3em;
  height: 0.3em;
  right: 0.9em;
  top: 50%;
  transform: rotate(45deg) translateY(-50%);
  border-top: 2px solid #000;
  border-right: 2px solid #000;
}

/* 赤 */
a.round_button.button_red {
  background-color: #c80032;
  color: #fff;
}

a.round_button.button_red span {
  color: #fff;
}

a.round_button.button_red span::before {
  background-color: #fff;
}

a.round_button.button_red span::after {
  border-color: #c80032;
}

/* オレンジ */
a.round_button.button_orange {
  background-color: #fa7d00;
}

a.round_button.button_orange span {
  color: #fff;
}

a.round_button.button_orange span::before {
  background-color: #fff;
}

a.round_button.button_orange span::after {
  border-color: #fa7d00;
}

/* グレー */
a.round_button.button_gray {
  background-color: #666;
  color: #fff;
}

/* web申し込み */

a.round_button.webmoushikomi {
  width: 82%;
  height: 14rem;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  position: relative;
  box-shadow: 0 4px 4px rgba(0, 0, 0, 0.2);
}

a.round_button.webmoushikomi::before {
  content: "";
  display: block;
  position: absolute;
  aspect-ratio: 390/450;
  background-image: url(../img/private/loan/carloan/button_illust.webp);
  background-repeat: no-repeat;
  background-size: cover;
  width: 25%;
  left: 6.8rem;
  top: 1.4rem;
}

a.round_button.webmoushikomi span.maru_yajirushi {
  font-size: 3rem;
  padding-right: 2em;
  margin-right: 2.5em;
  letter-spacing: 0.1em;
}

a.round_button.webmoushikomi span.maru_yajirushi::before {
  width: 1.2em;
  height: 1.2em;
}

a.round_button.webmoushikomi span.maru_yajirushi::after {
  right: 0.5875em;
}

/* 紫 */
a.round_button.button_purple {
  background-color: #6e74b0;

  span {
    color: #fff;
    width: calc(100% - 2rem);
    padding-right: 2em;

    &::before {
      background-color: #fff;
    }

    &::after {
      border-color: #6e74b0;
    }
  }
}

/* ピンク */
a.round_button.button_pink {
  background-color: #eb809f;

  span {
    color: #fff;
    width: calc(100% - 2rem);
    padding-right: 2em;

    &::before {
      background-color: #fff;
    }

    &::after {
      border-color: #eb809f;
    }
  }
}

@media screen and (max-width: 480px) {
  a.round_button.webmoushikomi {
    width: 80%;
    height: 6rem;
  }

  a.round_button.webmoushikomi::before {
    width: 11rem;
    left: 3rem;
    top: 1.4rem;
  }

  a.round_button.webmoushikomi span.maru_yajirushi {
    font-size: 1.8rem;
    margin-right: 0;
    text-align: left;
  }
}

/*--------------------
アイコン付き
--------------------*/

a.icon {
  display: inline-block;
  position: relative;
  line-height: 3;
  padding-left: 2.75em;
}

a.icon::before {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
}

/* pdf */
a.icon.pdf {
  line-height: 1.5;
  margin: 0.75em 0;
}

a.icon.pdf::before {
  background-image: url(../img/common/icon_file_pdf.webp);
  width: 2.083em;
  height: 2.208em;
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
汎用アコーディオン
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
.aco_trigger {
  cursor: pointer;
}

.aco_trigger:hover {
  opacity: 0.6;
  transition: all 0.2s ease;
}

.aco_trigger + .aco_box {
  display: none;
}

.aco_trigger.icon_plus::after {
  content: "";
  display: block;
  background-image: url(../img/common/icon_plus.svg);
  background-repeat: no-repeat;
  background-size: contain;
  width: 1em;
  height: 1em;
  position: absolute;
  right: 1.5em;
  bottom: 0;
  top: 0;
  margin: auto;
}

/* メニューが開いた状態 */
.aco_trigger.icon_plus.open::after {
  transform: rotate(45deg);
  transition: all 0.2s ease;
}

/* メニューが閉じた状態 */
.aco_trigger.icon_plus.close::after {
  transform: rotate(0);
  transition: all 0.2s ease;
}

@media screen and (max-width: 480px) {
  .aco_trigger.icon_plus::after {
    right: 1em;
  }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
表示設定
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

/*PCで消す*/

.pc_hide {
  display: none;
}

/*タブで表示*/
@media screen and (min-width: 481px) and (max-width: 768px) {
  .tab_hide {
    display: none;
  }
}

/*SPで表示*/
@media screen and (max-width: 480px) {
  .pc_hide {
    display: block;
  }

  .sp_hide {
    display: none;
  }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
画像
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

img {
  width: 100%;
  height: auto;
}

.ofi_contain img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.ofi_cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
ページ設定
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

#page_wrap {
}

@media screen and (max-width: 480px) {
  #page_wrap {
  }
}

#content_wrap {
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
ブロック要素
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

/*div　general*/

div.gen {
  font-size: 1.6rem;
  line-height: 2em;
}

@media screen and (max-width: 480px) {
  div.gen {
    font-size: 1.4rem;
    line-height: 1.75em;
  }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
パン屑設定
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

/*パン屑*/

.pankuzu {
  margin: 1rem auto;
}

.pankuzu li {
  display: inline-block;
  color: #333;
}

.pankuzu li::after {
  content: "/";
  display: inline-block;
  margin: 0 0.25em;
}

.pankuzu li:last-child::after {
  content: "";
}

.pankuzu a {
  color: #000;
}

.pankuzu a:visited {
  color: #666;
}

@media screen and (max-width: 480px) {
  .pankuzu {
    display: none;
  }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
ページトップボタン設定
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

.pagetop {
  position: fixed;
  right: 0.5rem;
  bottom: 0.5rem;
  visibility: hidden;
  opacity: 0;
  transition: 0.5s;
  z-index: 20;
  width: 5rem;
  height: 5rem;
}

.pagetop a {
  display: block;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  position: relative;
}

.pagetop a span {
  display: none;
}

.pagetop.on {
  visibility: visible;
  opacity: 1;
}

.pagetop a::after {
  content: "";
  position: absolute;
  display: block;
  top: 2.25rem;
  left: 0;
  right: 0;
  margin: auto;
  width: 1rem;
  height: 1rem;
  border-top: 1px solid #fff;
  border-right: 1px solid #fff;
  transform: rotate(-45deg);
}

/*PC版のみhoverを付与*/

@media screen and (min-width: 769px) {
  .pagetop.on a:hover {
    opacity: 0.7;
    transition: 0.2s;
  }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
ギャラリー　.gallery
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

div.gallery {
  display: flex;
  flex-wrap: wrap;
  margin: 6rem auto;
  max-width: 1024px;
}

div.gallery dl.gallery-item {
  width: 31.33%;
  margin: 1%;
}

div.gallery dl.gallery-item dt.gallery-icon a {
  width: 100%;
  height: 0;
  padding-top: 75%;
  display: block;
  position: relative;
}

div.gallery dl.gallery-item dt.gallery-icon a img {
  object-fit: cover;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

div.gallery dl.gallery-item dd.gallery-caption {
  margin-top: 0.75em;
  font-size: 1.4rem;
  line-height: 1.5;
  padding: 0;
}

/*-*/

div.gallery.gallery-columns-1 dl.gallery-item {
  width: 100%;
  margin: 2% 1%;
}

div.gallery.gallery-columns-2 dl.gallery-item {
  width: 48%;
  margin: 1%;
}

div.gallery.gallery-columns-3 dl.gallery-item {
  width: 31.33%;
  margin: 1%;
}

div.gallery.gallery-columns-4 dl.gallery-item {
  width: 23%;
  margin: 1%;
}

div.gallery.gallery-columns-5 dl.gallery-item {
  width: 18%;
  margin: 1%;
}

div.gallery.gallery-columns-5 dl.gallery-item dd.gallery-caption {
  margin-top: 0.6em;
}

/*1行9列*/

div.gallery.gallery-columns-9 dl.gallery-item dt.gallery-icon a {
  width: 100%;
  height: 0;
  padding-top: 100%;
  display: block;
  position: relative;
  border-radius: 50%;
  overflow: hidden;
}

div.gallery.gallery-columns-9 dl.gallery-item {
  width: 9.111%;
  margin: 1%;
}

div.gallery.gallery-columns-9 dl.gallery-item dd.gallery-caption {
  display: none;
}

@media screen and (max-width: 480px) {
  div.gallery {
    margin: 3rem auto;
  }

  div.gallery dl.gallery-item dd.gallery-caption {
    font-size: 1rem;
  }

  div.gallery.gallery-columns-2 dl.gallery-item,
  div.gallery.gallery-columns-3 dl.gallery-item,
  div.gallery.gallery-columns-4 dl.gallery-item,
  div.gallery.gallery-columns-5 dl.gallery-item {
    width: 48%;
    margin: 1%;
  }

  div.gallery dl.gallery-item dd.gallery-caption,
  div.gallery.gallery-columns-2 dl.gallery-item dd.gallery-caption,
  div.gallery.gallery-columns-3 dl.gallery-item dd.gallery-caption,
  div.gallery.gallery-columns-4 dl.gallery-item dd.gallery-caption,
  div.gallery.gallery-columns-5 dl.gallery-item dd.gallery-caption {
    margin-top: 0.45em;
    line-height: 1.25em;
  }

  /*1行9列*/
  div.gallery.gallery-columns-9 dl.gallery-item {
    width: 18%;
    margin: 1%;
  }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
fade
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/

.fade {
  opacity: 0;
  transform: translate(0, 2rem);
  /* ぼかし */
  /* filter: blur(0.5rem); */
}

.fade_left {
  transform: translateX(-2rem);
}

.fade_right {
  transform: translateX(2rem);
}

.fade.fade_in {
  opacity: 1;
  filter: blur(0);
  transform: translate(0, 0);
  transition: ease-in-out 700ms;
}

/*fade_delay_wrap 横並びを順番にディレイ*/

.fade_delay_wrap .fade_delay_child {
  opacity: 0;
  transform: translate(0, 2rem);
  /* ぼかし */
  /* filter: blur(0.5rem); */
}

.fade_delay_wrap.fade_in .fade_delay_child {
  opacity: 1;
  transform: translate(0, 0);
  transition: ease-in-out 700ms;
  /* ぼかし */
  /* filter: blur(0); */
}

.fade_delay_wrap.fade_in .fade_delay_child:nth-of-type(2) {
  transition-delay: 0.1s;
}

.fade_delay_wrap.fade_in .fade_delay_child:nth-of-type(3) {
  transition-delay: 0.2s;
}

.fade_delay_wrap.fade_in .fade_delay_child:nth-of-type(4) {
  transition-delay: 0.3s;
}

.fade_delay_wrap.fade_in .fade_delay_child:nth-of-type(5) {
  transition-delay: 0.4s;
}

.fade_delay_wrap.fade_in .fade_delay_child:nth-of-type(6) {
  transition-delay: 0.5s;
}

.fade_delay_wrap.fade_in .fade_delay_child:nth-of-type(7) {
  transition-delay: 0.6s;
}

.fade_delay_wrap.fade_in .fade_delay_child:nth-of-type(8) {
  transition-delay: 0.7s;
}

.fade_delay_wrap.fade_in .fade_delay_child:nth-of-type(9) {
  transition-delay: 0.8s;
}

.fade_delay_wrap.fade_in .fade_delay_child:nth-of-type(10) {
  transition-delay: 0.9s;
}

.fade_delay_wrap.fade_in .fade_delay_child:nth-of-type(11) {
  transition-delay: 1s;
}

.fade_delay_wrap.fade_in .fade_delay_child:nth-of-type(12) {
  transition-delay: 1.1s;
}

/*fade_block　囲った要素の中で任意にディレイ*/

.fade_block .fade_blocl_child {
  opacity: 0;
  transform: translate(0, 2rem);
  /* ぼかし */
  /* filter: blur(0.5rem); */
}

.fade_block .fade_blocl_child.fade_left {
  transform: translateX(-2rem);
}

.fade_block .fade_blocl_child.fade_right {
  transform: translateX(2rem);
}

.fade_block.fade_in .fade_blocl_child {
  opacity: 1;
  transform: translate(0, 0);
  transition: ease-in-out 700ms;
  /* ぼかし */
  /* filter: blur(0); */
}

.fade_block.fade_in .fade_child_02 {
  transition-delay: 0.1s;
}

.fade_block.fade_in .fade_child_03 {
  transition-delay: 0.2s;
}

.fade_block.fade_in .fade_child_04 {
  transition-delay: 0.3s;
}

.fade_block.fade_in .fade_child_05 {
  transition-delay: 0.4s;
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
メールフォーム
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
/* --------------------------------- */
/* 共通 */
/* --------------------------------- */
#mailform input[type="text"],
#mailform input[type="email"],
#mailform textarea,
#mailform select {
  -webkit-appearance: none;
  appearance: none;
  border: 2px solid #808080;
  width: 100%;
  font-size: 2.2rem;
  line-height: 1.5;
  padding: 0.5em 1em;
  border-radius: 0.5em;
  box-sizing: border-box;
  margin: 0.25em 0;
}

#mailform ::placeholder {
  color: #ccc;
}

#mailform select {
  background-color: #c8c8c8;
}

#mailform input[type="checkbox"] {
  width: 2rem;
  height: 2rem;
}

/* エラーメッセージ */
#mailform .mw_wp_form_direct_access_error,
#mailform .mw_wp_form_send_error {
  font-size: 2rem;
  line-height: 2;
  text-align: center;
}

#mailform span.error {
  background: #bbb;
  padding: 0.25em 0.5em;
  border-radius: 0.25em;
  font-size: 0.75em;
  margin: 0.25em 0;
  background-color: #ffbbcc;
}

/* 郵便番号 */

#mailform input.zipcode {
  width: 4em !important;
  box-sizing: content-box;
}

/* チェックボックス */
#mailform .checkbox_wrap {
  padding: 1em;
  background-color: #ddd;
  border-radius: 0.5em;
  margin-top: 0.5em;
}

#mailform .checkbox_wrap span.horizontal-item {
  display: inline-block;
  margin-left: 0em;
  margin-right: 0.5em;
}

/* セレクトの矢印 */
#mailform .select_wrap {
  position: relative;
}

#mailform .select_wrap::after {
  content: "";
  width: 0.6rem;
  height: 0.6rem;
  border-right: 2px solid #000;
  border-bottom: 2px solid #000;
  display: block;
  position: absolute;
  top: 3rem;
  right: 2rem;
  z-index: 10;
  transform: rotate(45deg);
}

#mailform .form_button_wrap {
  text-align: center;
}

#mailform .form_button_wrap input {
  cursor: pointer;
  margin: 1rem;
}

#mailform .form_button_wrap input:hover {
  opacity: 0.7;
}

/* 確認画面 */

#mailform .mw_wp_form_preview {
}

#mailform .mw_wp_form_preview .checkbox_wrap {
  background-color: transparent;
  padding: 0;
  margin: 0;
}

#mailform .mw_wp_form_preview .select_wrap::after,
#mailform .mw_wp_form_preview .preview_hide {
  display: none;
}

#mailform .mw_wp_form_preview .kinyunaiyou {
  display: block;
  padding: 1em;
  margin: 0.25em 0;
  background-color: #ddd;
}

/* 完了画面 */
#mailform .mw_wp_form_complete {
  padding-top: 4rem;
  /* 同一画面で完了画面を出す場合上に少し空きを作るよう */
}

div.send_completely {
  max-width: 800px;
  margin: 2rem auto 0;
}

div.send_completely .mirakko {
  max-width: 160px;
  width: 40%;
  margin: 0 auto 4rem;
}

div.send_completely h2 {
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.5;
  margin-bottom: 1em;
  text-align: center;
  color: #c80032;
}

@media screen and (max-width: 480px) {
  #mailform input[type="text"],
  #mailform input[type="email"],
  #mailform textarea,
  #mailform select {
    font-size: 1.6rem;
    border-radius: 0.3em;
  }

  #mailform.form_wrap input[type="submit"] {
    font-size: 1.8rem;
    width: 80%;
    height: 5rem;
    border-radius: 4rem;
  }

  #mailform .select_wrap::after {
    top: 2rem;
  }

  /* 完了画面 */

  div.send_completely h2 {
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1.5;
    margin-bottom: 1em;
    text-align: center;
    color: #c80032;
  }
}

/* --------------------------------- */
#mailform.form_wrap {
  background-color: #eee;
  padding: 6rem 2rem;
}

#mailform.form_wrap h2 {
  text-align: center;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 1em;
}

#mailform.form_wrap h2 + p {
  font-size: 2rem;
  text-align: center;
  margin-bottom: 2em;
}

#mailform.form_wrap ul.form {
  max-width: 916px;
  margin: auto;
  list-style: none;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}

#mailform.form_wrap ul.form li {
  width: 100%;
  font-size: 2.2rem;
  line-height: 1.75;
  padding: 0.8rem 0;
}

#mailform.form_wrap ul.form li span.hissu {
  color: #c80032;
}

#mailform.form_wrap ul.form li.w50 {
  width: 47%;
}

#mailform.form_wrap ul.form li p {
  font-size: 1.6rem;
  margin-bottom: 1em;
}

#mailform.form_wrap p.link {
  text-align: center;
}

#mailform.form_wrap ul.form li p.strong {
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
}

#mailform.form_wrap ul.form li.privacy {
  text-align: center;
}

#mailform.form_wrap input[type="submit"] {
  -webkit-appearance: none;
  appearance: none;
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  background-color: #c80032;
  border: none;
  width: 90%;
  max-width: 35rem;
  height: 2.5em;
  border-radius: 4rem;
}

#mailform.form_wrap input[name="submitBack"] {
  background-color: #323232;
}

@media screen and (max-width: 480px) {
  #mailform.form_wrap {
    padding: 3em 1rem 6rem;
  }

  #mailform.form_wrap h2 {
    font-size: 2rem;
  }

  #mailform.form_wrap h2 + p {
    font-size: 1.6rem;
  }

  #mailform.form_wrap ul.form li {
    width: 100%;
    font-size: 1.4rem;
  }

  #mailform.form_wrap ul.form li span.hissu {
    color: #c80032;
  }

  #mailform.form_wrap ul.form li.w50 {
    width: 100%;
  }

  #mailform.form_wrap ul.form li p {
    font-size: 1.4rem;
  }

  #mailform.form_wrap ul.form li p.strong {
    font-size: 1.6rem;
  }
}

/*〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓
reCAPTCHA v3　表示位置 
〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓〓*/
.grecaptcha-badge {
}

@media screen and (max-width: 1024px) {
  .grecaptcha-badge {
    bottom: 8rem !important;
  }
}

@media screen and (max-width: 480px) {
  .grecaptcha-badge {
    bottom: 7rem !important;
  }
}
