@charset "UTF-8";
/*==========================================================================
# reset - ブラウザの差異や不要なスタイルを無くすためのスタイル
========================================================================== */
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
ul,
ol,
dl,
li,
dt,
dd,
p,
div,
span,
img,
a,
table,
tr,
th,
td,
small,
button,
time,
figure {
  border: 0;
  font: inherit;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

html {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

li,
dd {
  list-style-type: none;
}

header,
footer,
nav,
section,
article,
aside,
figure,
figcaption {
  display: block;
}

img {
  border: none;
  vertical-align: bottom;
}

a {
  cursor: pointer;
  text-decoration: none;
}

.pc {
  display: none;
}
@media (min-width: 992px) {
  .pc {
    display: block;
  }
}

.sp {
  display: block;
}
@media (min-width: 992px) {
  .sp {
    display: none;
  }
}

/*1.0rem=10px*/
html {
  font-size: 62.5%;
}

body {
  background-color: #ffffff;
  color: #000;
  font-weight: 500;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  overflow-x: hidden;
  font-size: 1.7em;
  line-height: 1.3;
}

img {
  width: 100%;
}

button {
  background-color: transparent;
  cursor: pointer;
}

em {
  font-style: normal;
}

input,
label,
a {
  cursor: pointer;
}

a {
  transition: all 0.2s linear 0s;
}
a:hover {
  opacity: 0.7;
}

/***********************************************
header
************************************************/
.l-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 900;
  color: #000;
  background: #fff;
  filter: drop-shadow(1px 1px 4px #585858);
}
@media (min-width: 700px) {
  .l-header {
    background-color: rgba(255, 255, 255, 0.8);
    filter: none;
  }
}

.l-header__items {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 15vw;
  max-height: 60px;
}
@media (min-width: 700px) {
  .l-header__items {
    height: 12vw;
    max-height: none;
  }
}
@media (min-width: 992px) {
  .l-header__items {
    height: auto;
    height: 5vw;
    padding-left: 10px;
    max-width: 1200px;
    margin: 0 auto;
  }
}

/***********************************************
header              左               ロゴ*****/
.l-header__left {
  margin-left: 10px;
  margin-right: auto;
}

a.l-header__logo {
  transition: all 0.2s linear 0s;
  display: block;
  width: 45px;
  margin-left: 20px;
}
a.l-header__logo:hover {
  opacity: 0.7;
}
@media (min-width: 700px) {
  a.l-header__logo {
    width: 6vw;
  }
}
@media (min-width: 992px) {
  a.l-header__logo {
    width: 5vw;
    margin-left: 30px;
  }
}

/***********************************************
header       右            *****/
.l-header__nav-items {
  display: none;
}
@media (min-width: 700px) {
  .l-header__nav-items ul {
    display: flex;
    align-items: center;
  }
}
@media (min-width: 700px) {
  .l-header__nav-items {
    display: flex;
  }
}

.l-header__insta-icon {
  display: block;
  width: 34px;
  padding: 0;
  margin: 23px 14px 0 0;
}
.l-header__insta-icon.--sp {
  margin-top: 0px;
  position: absolute;
  top: 17px;
  right: 70px;
}
@media (min-width: 700px) {
  .l-header__insta-icon.--sp {
    display: none;
  }
}

.l-header__nav-items ul > li {
  font-weight: 700;
  letter-spacing: 0.08em;
  position: relative;
}
@media (min-width: 992px) {
  .l-header__nav-items ul > li {
    font-size: 18px;
  }
}
.l-header__nav-items ul > li a {
  display: block;
  height: 40px;
  margin: 5px 5px 0;
}
.l-header__nav-items ul > li a img {
  height: 100%;
}
.l-header__nav-items ul > li a:hover {
  opacity: 0.7;
}

/*
.l-header__nav-items ul>li {

    font-weight: 700;
    letter-spacing: .08em;

    position: relative;
    z-index: 1;
height: 45px;



    @include f.mq('pc') {
        font-size: 18px;
    }



    a {
        transition: all 0.2s linear 0s;
        padding: 15px 30px;
        border-radius: 5px;
        background: #01d101;

        &:hover {
            opacity: 0.7;
        }
        ::before {
            content: "";
            position: absolute;
            z-index: -1;
            border-radius: 5px;
            padding: 0px 30px;
            width: 100%;
            height: 10px;
           bottom: -15px;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0.5;
            background-image: linear-gradient(rgba(255, 255, 255, 0) 0%, rgba(65, 65, 65, 1) 100%);
        }

        ::after {
            content: "";
            position: absolute;
            z-index: -1;
            border-radius: 5px;
            padding: 0px 30px;
            width: 100%;
            height: 10px;
            top: -15px;
            left: 50%;
            transform: translateX(-50%);
            opacity: 0.5;
            background-image: linear-gradient(rgba(255, 254, 254, 1) 0%, rgba(255, 255, 255, 0) 100%);
        }
    }

    a>span {
        position: relative;
        z-index: 3;
        color: #fff;
        text-shadow: 1px 1px 1px rgb(0, 0, 0, 0.8), -1px -1px 1px rgb(0, 0, 0, 0.8),
            -1px 1px 1px rgb(0, 0, 0, 0.8), 1px -1px 1px rgb(0, 0, 0, 0.8),
            1px 0 1px rgb(0, 0, 0, 0.8), -1px 0 1px rgb(0, 0, 0, 0.8),
            0 1px 1px rgb(0, 0, 0, 0.8), 0 -1px 1px rgb(0, 0, 0, 0.8);

    }



}*/
/***********************************************
ハンバーガーメニュー
************************************************/
.drawer-icon {
  width: 70px;
  height: 70px;
  position: fixed;
  top: -20px;
  right: 0;
  z-index: 1000;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s ease 0s;
  display: block;
  position: absolute;
  width: auto;
  height: auto;
  top: 35%;
  left: auto;
  right: 20px;
  transform: translateY(-50%);
}
@media (min-width: 700px) {
  .drawer-icon {
    display: none;
  }
}

.drawer-bars {
  display: inline-block;
  width: 54px;
  height: 32.75px;
  position: relative;
  vertical-align: bottom;
  width: 33px;
  height: 12.75px;
}

.drawer-bar {
  position: absolute;
  right: 0;
  left: 0;
  display: block;
  background: #000000;
  width: 100%;
  height: 2.25px;
  border-radius: 20px;
  transition: all 0.5s linear 0s;
}
.drawer-bar:nth-of-type(1) {
  top: 0;
}
.drawer-bar:nth-of-type(2) {
  top: 10.25px;
}
.drawer-bar:nth-of-type(3) {
  top: 20.5px;
}
.is-checked .drawer-bar:nth-of-type(1) {
  top: 10px;
  transform: rotate(-45deg);
  background: #000000;
}
.is-checked .drawer-bar:nth-of-type(2) {
  background: transparent;
}
.is-checked .drawer-bar:nth-of-type(3) {
  top: 10px;
  transform: rotate(45deg);
  background: #000000;
}

.drawer-content-cover {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  transform: translateX(0);
  top: 0;
  left: 0;
  bottom: auto;
  width: 100%;
  height: 100%;
  max-width: 100%;
  transition: all 0.5s linear 0s;
  background: #ffffff;
  z-index: 999;
  padding-top: 5px;
}
.drawer-content-cover.is-checked {
  visibility: visible;
  opacity: 1;
}
.drawer-content-cover p {
  color: #3C3C3C;
}

.l-header__hamburger-menu ul {
  list-style: none;
  margin: 0 auto;
  padding: 0;
  width: 100%;
  z-index: 1;
}
@media (min-width: 992px) {
  .l-header__hamburger-menu ul {
    width: 300px;
    max-width: 100%;
  }
}
.l-header__hamburger-menu ul li a {
  text-align: center;
  text-decoration: none;
  display: block;
  position: relative;
  padding: 26px 17px;
  color: #333;
  transition: all 0.2s linear 0s;
  z-index: 1;
  font-family: "Noto Sans JP", sans-serif;
  font-size: 20px;
}
.l-header__hamburger-menu ul li a:hover {
  opacity: 0.7;
}

.menu-dorawer-container li:last-child {
  border: solid 2px #fff;
  background-color: #fff;
  margin: 10px 0;
}
.menu-dorawer-container li:last-child a {
  font-weight: bold;
  color: #002a52;
}
.menu-dorawer-container li:nth-last-child(2) {
  border: solid 1px #fff;
  margin: 10px 0 30px 0;
}

.l-header__hamburger-menu ul li {
  font-size: 18px;
}

.l-header__foot-flex ul {
  display: flex;
  justify-content: center;
  margin: 0 auto;
  font-weight: 600;
}
.l-header__foot-flex ul li a {
  display: block;
  padding: 30px 8px;
  color: #cbcbcb;
  font-size: 11px;
}

.l-header__drawer-copyright {
  background-color: #FFD200;
  text-align: center;
  font-size: 12px;
  padding: 6px 0;
}

.l-header__drawer-btns {
  padding: 40px 0 0;
  text-align: center;
  font-size: 17px;
}
.l-header__drawer-btns span {
  font-size: 20px;
}

.l-header__drawer-btns a {
  display: block;
  margin: 5px auto;
  min-width: 340px;
  width: 50%;
}

/**************?
footer
/*************/
.l-footer a {
  font-family: "Noto Sans JP", sans-serif;
  transition: all 0.2s linear 0s;
  color: #fff;
  padding: 10px 0 20px;
  display: block;
  font-weight: 400;
}
.l-footer a:hover {
  opacity: 0.7;
}
@media (min-width: 576px) {
  .l-footer {
    display: block;
    width: 100%;
    color: #ffffff;
    z-index: 900;
    font-size: 16px;
  }
}

.l-footer__nav-items {
  width: 75%;
}
.l-footer__nav-items ul {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  margin: 10px auto 0;
}
@media (min-width: 576px) {
  .l-footer__nav-items ul {
    margin: 0 auto 0px;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}
.l-footer__nav-items ul > li {
  display: block;
}
@media (min-width: 576px) {
  .l-footer__nav-items ul > li {
    padding: 10px 40px;
  }
}

.l-footer__copyright {
  font-size: 10px;
  color: #000000;
  display: block;
  font-weight: 400;
  padding: 7px 0;
  background-color: #FFD200;
  text-align: center;
  font-size: 12px;
  letter-spacing: 0.6px;
}
@media (min-width: 700px) {
  .l-footer__copyright {
    font-size: 15px;
    padding: 10px 70px 10px 0;
  }
}
.l-footer__copyright.--top {
  padding: 7px 0 40%;
}
@media (min-width: 700px) {
  .l-footer__copyright.--top {
    padding: 10px 70px 10px 0;
  }
}

.l-footer__vertical-line {
  width: 1px;
  height: 110px;
  background-color: #b2b2b2;
}

/***********************************************
    cv ボタン　最下部固定
    ************************************************/
.l-footer-cv {
  position: relative;
  z-index: 890;
  position: fixed;
  bottom: 0px;
  right: 0;
  display: block;
  filter: drop-shadow(1px 1px 2px #585858);
}

.l-footer-cv > ul {
  display: flex;
  justify-content: space-between;
  font-size: 13px;
  text-align: center;
  font-weight: 700;
  background-color: #ffffff;
  width: 100%;
  border-radius: 7px;
  margin: 0 0 0px;
}
.l-footer-cv > ul li span {
  display: block;
  margin: 10px 0 0;
  color: #000;
}
@media (min-width: 700px) {
  .l-footer-cv > ul {
    display: none;
  }
}

a.l-footer-cv__btn {
  text-align: center;
  border-right: solid 1px #fff;
  line-height: 1.5;
  color: #000000 !important;
  display: block;
  font-size: 10px;
  background-color: #ffffff;
}
a.l-footer-cv__btn:hover {
  opacity: 0.7;
}
@media (min-width: 700px) {
  a.l-footer-cv__btn {
    width: 320px;
    height: 75px;
    right: 0;
    color: #333;
    font-size: 16px;
    padding: 25px;
  }
  a.l-footer-cv__btn::after {
    right: 20px;
  }
  a.l-footer-cv__btn.--pc {
    padding: 25px;
    background-color: #f06600;
    color: #fff;
  }
  a.l-footer-cv__btn.--pc::after {
    border-color: #fff;
  }
}

@media (min-width: 700px) {
  .l-footer__text-small {
    font-size: 11px;
  }
}

.l-footer-cv__sp {
  display: inline;
}
@media (min-width: 700px) {
  .l-footer-cv__sp {
    display: none;
  }
}

.l-footer__wrapper {
  margin-top: 40px;
  color: #fff;
}

.l-footer__logo-nav-flex {
  display: block;
  padding: 30px 0;
  line-height: 1.5;
}
.l-footer__logo-nav-flex h2 {
  width: 130px;
  display: block;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .l-footer__logo-nav-flex {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    padding: 40px 0;
  }
  .l-footer__logo-nav-flex h2 {
    margin: 0 0 0 auto;
  }
}

.l-footer__nav {
  margin-top: 30px;
  padding: 20px 0 0;
}
.l-footer__nav ul {
  display: none;
}
@media (min-width: 700px) {
  .l-footer__nav ul {
    display: flex;
    justify-content: center;
  }
}

.l-footer__nav ul > li {
  font-weight: 700;
}
@media (min-width: 992px) {
  .l-footer__nav ul > li {
    padding: 30px 15px;
    font-size: 18px;
  }
}
@media (min-width: 1300px) {
  .l-footer__nav ul > li {
    padding: 30px 30px;
    font-size: 22px;
  }
}
.l-footer__nav ul > li a {
  transition: all 0.2s linear 0s;
  /*********フッターナビゲーション文字の色********/
  color: #fff;
}
.l-footer__nav ul > li a:hover {
  opacity: 0.7;
}

.l-footer__logo {
  transition: all 0.2s linear 0s;
  display: block;
}
@media (min-width: 992px) {
  .l-footer__logo {
    width: 99px;
    margin-right: 0;
  }
}

.l-footer__info {
  margin: 16px 0 9px 0;
  font-size: 16px;
  font-weight: normal;
  line-height: 1.65;
  letter-spacing: normal;
  text-align: left;
  color: #333;
}

.l-footer__contact-bg {
  padding: 30px 0 20px;
  margin: 30px 0 0 0;
  background-color: #fafafa;
}
@media (min-width: 992px) {
  .l-footer__contact-bg {
    padding: 80px 0;
    margin: 0;
  }
}

.l-footer__illust img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.l-footer__address {
  width: 230px;
  display: block;
  color: #333;
  margin: 20px auto 0;
  text-align: center;
}
@media (min-width: 992px) {
  .l-footer__address {
    margin-left: 30px;
    margin-right: auto;
    text-align: left;
  }
}

/**************
CTA
/*************/
.l-cta__section {
  padding: 1px 0;
}

.l-cta__bg {
  background-image: url(../img/bg_stripe.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  padding: 1px 0;
}

.p-cta__container {
  padding: 20px 20px 35px;
  background-color: #fff;
  border: 2px solid #FF3131;
  margin: 50px 0;
  border-radius: 6px;
  position: relative;
  text-align: center;
}
.p-cta__container::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #ff3131 transparent transparent transparent;
  border-width: 40px 40px 0px 0px;
  position: absolute;
  top: 10px;
  left: 10px;
}
@media (min-width: 700px) {
  .p-cta__container::before {
    border-width: 64px 64px 0px 0px;
  }
}
.p-cta__container::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent transparent #ffd200 transparent;
  border-width: 40px 40px 0px 0px;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
@media (min-width: 700px) {
  .p-cta__container::after {
    border-width: 64px 64px 0px 0px;
  }
}
.p-cta__container em {
  color: #FF3131;
}
.p-cta__container h2 {
  display: inline-block;
  padding-top: 26px;
  padding-bottom: 5px;
  font-size: 24px;
  color: #FF3131;
  background-image: linear-gradient(to right, #333, #333 2px, transparent 2px, transparent 8px);
  /* 幅2の線を作る */
  background-size: 7px 1px;
  /* グラデーションの幅・高さを指定 */
  background-position: left bottom;
  /* 背景の開始位置を指定 */
  background-repeat: repeat-x;
  /* 横向きにのみ繰り返す */
}
@media (min-width: 992px) {
  .p-cta__container h2 {
    font-size: 1.5em;
  }
}

.p-cta__container-lead {
  padding: 20px 0;
  line-height: 1.5;
  font-size: 14px;
}
@media (min-width: 992px) {
  .p-cta__container-lead {
    font-size: 19px !important;
  }
}

.p-cta__btns {
  display: block;
}
.p-cta__btns a {
  display: block;
  margin: 5px auto;
  min-width: 250px;
  width: 50%;
}
@media (min-width: 992px) {
  .p-cta__btns {
    display: flex;
  }
  .p-cta__btns a {
    width: auto;
    margin: 5px 0 0;
  }
  .p-cta__btns li {
    flex: 0.93; 
  }
  .p-cta__btns li:last-child {
    flex: 1; 
  }
}

.l-cta__icons {
  display: flex;
  justify-content: center;
}
.l-cta__icons div {
  width: 50px;
  position: absolute;
  top: -40px;
  left: 45%;
  transform: translateX(-50%);
}
.l-cta__icons .l-cta__car {
  top: -10px;
  left: 60%;
}

@media (min-width: 992px) {
  .l-cta__icons div {
    left: 50%;
  }
  .l-cta__icons .l-cta__car {
    left: 54%;
  }
}
.l-cta__yellow {
  color: #FFD200;
}

.l-cta__red {
  font-size: 20px;
  text-align: center;
  background-color: #FF3131;
  display: flex;
  width: 100%;
  align-items: flex-end;
  justify-content: center;
  margin-top: 30px;
  padding: 15px 0 0;
}
.l-cta__red p {
  flex-shrink: 0;
  padding-bottom: 15px;
  color: #fff !important;
}
.l-cta__red em {
  color: #FFD200;
  font-weight: 700;
  font-size: 1.3em;
  padding-right: 14px;
}
@media (min-width: 992px) {
  .l-cta__red em {
    font-size: 1.4em;
  }
}
.l-cta__red img {
  width: auto;
  min-height: 80px;
  height: 5vw;
  margin: 0 10px;
}

.c-inner__center {
  min-width: 330px;
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: center;
  line-height: 1.3;
}
@media (min-width: 992px) {
  .c-inner__center {
    width: 80%;
  }
}

.c-inner__left {
  width: 85%;
  max-width: 1200px;
  margin: 0 auto;
  text-align: left;
}
@media (min-width: 992px) {
  .c-inner__left {
    width: 80%;
  }
}

.c-inner__flex {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.c-inner__flex.--sp_block {
  display: block;
}
@media (min-width: 992px) {
  .c-inner__flex.--sp_block {
    display: flex;
  }
}
.c-inner__flex.--center {
  justify-content: center;
}
.c-inner__flex.--center2 {
  justify-content: center;
}
@media (min-width: 992px) {
  .c-inner__flex.--center2 {
    justify-content: flex-start;
  }
}

.c-heading {
  text-align: center;
  margin: 65px 0 20px;
}

.c-heading__jp {
  font-size: 48px;
  font-weight: 700;
  text-align: center;
  color: #D9D9D9;
  background-color: transparent;
  position: relative;
  font-family: "Montserrat", serif;
}
.c-heading__jp::before {
  content: "";
  background-image: url(../img/logo-heading.png);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  width: 50px;
  height: 50px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}
@media (min-width: 992px) {
  .c-heading__jp::before {
    width: 74px;
    height: 74px;
  }
}
.c-heading__jp.--contact {
  letter-spacing: 0em;
  color: #fff;
}
.c-heading__jp.--contact::before {
  background-image: none;
}
.c-heading__jp.--contact + .c-heading__en {
  letter-spacing: 0em;
  color: #fff;
  padding: 5px 0;
}

.c-heading__en {
  display: inline-block;
  margin-top: -10px;
  font-size: 18px;
  font-weight: 700;
  font-stretch: normal;
  font-style: normal;
  line-height: normal;
  letter-spacing: -1px;
  text-align: center;
  color: #000;
}

.c-heading__sub-title {
  width: 80%;
  max-width: 400px;
  margin: 40px auto 0;
  border-top: 1px solid #565656;
  border-bottom: 1px solid #565656;
  padding: 30px 0;
  text-align: center;
  position: relative;
}
.c-heading__sub-title::before {
  content: "";
  width: 70px;
  height: 50px;
  background-image: url(../img/logo.png);
  background-color: #fff;
  background-repeat: no-repeat;
  background-size: 50%;
  position: absolute;
  background-position: center center;
  padding: 20px 40px 0;
  top: -45px;
  left: 50%;
  transform: translateX(-50%);
}
.c-heading__sub-title::after {
  position: absolute;
  content: "";
  width: 30px;
  height: 30px;
  background-color: #565656;
  clip-path: polygon(100% 1%, 0 0, 49% 47%);
  bottom: -30px;
  left: 50%;
  transform: translateX(-50%);
}

.c-icon {
  position: relative;
}
.c-icon::before {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}
.c-icon::after {
  content: "";
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
}

/***********************************************
左から右へグイっと登場
************************************************/
.c-icon__from-left {
  animation: fadeIn 1s cubic-bezier(0.9, 0, 0.2, 1) 0.5s 1 normal backwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}
.c-icon__keyword {
  position: absolute;
  color: transparent;
}

/***********************************************
文字の両サイドに画像配置
************************************************/
.c-icon__both-side {
  position: relative;
}
.c-icon__both-side::before, .c-icon__both-side::after {
  content: "";
  display: inline-block;
  width: 10%;
  aspect-ratio: 100/133;
  background-image: url();
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
}
.c-icon__both-side::after {
  background-image: url();
}

/***********************************************
アンダーライン
************************************************/
.c-icon__marker {
  background: linear-gradient(transparent 60%, yellow 30%);
  display: inline-block;
}

.c-icon__under-line {
  border-bottom: 10px solid #000;
  display: inline-block;
  padding-bottom: 10px;
}

/***********************************************
　ハンバーガーメニュー　細いスクロールバー
************************************************/
.c-icon__scroll-bar {
  overflow-x: auto;
  width: 100%;
  max-width: 100%;
  height: 100vh;
  overflow-y: auto;
}
.c-icon__scroll-bar::-webkit-scrollbar {
  width: 5px;
  height: 2px;
  border-radius: 10px;
}
.c-icon__scroll-bar::-webkit-scrollbar-track {
  border-radius: 10px;
  background-color: #D5D5D5;
}
.c-icon__scroll-bar::-webkit-scrollbar-thumb {
  background-color: #969696;
}

/***********************************************
　MV　SCROLL DOWN のモーション
************************************************/
.c-icon__scrolldown1 {
  position: absolute;
  left: 30px;
  bottom: -50px;
  height: 50px;
}

/*====== 9-1-1 縦線が動いてスクロールを促す =======*/
/*スクロールダウン全体の場所*/
.c-icon__scrolldown1 {
  /*描画位置※位置は適宜調整してください*/
  position: absolute;
  left: 58px;
  bottom: 69px;
  /*全体の高さ*/
  height: 50px;
}

/*Scrollテキストの描写*/
.c-icon__scrolldown1 span {
  /*描画位置*/
  position: absolute;
  left: -32px;
  bottom: 59px;
  /*テキストの形状*/
  color: #D5C1A1;
  width: 70px;
  font-size: 14px;
  font-weight: 400;
  transform: rotate(90deg);
}

/* 線の描写 */
.c-icon__scrolldown1::after {
  content: "";
  /*描画位置*/
  position: absolute;
  top: 0;
  /*線の形状*/
  width: 2px;
  height: 30px;
  background: #D5C1A1;
  /*線の動き1.4秒かけて動く。永遠にループ*/
  animation: pathmove 1.4s ease-in-out infinite;
  opacity: 0;
}

/*高さ・位置・透過が変化して線が上から下に動く*/
@keyframes pathmove {
  0% {
    height: 0;
    top: 10px;
    opacity: 0;
  }
  30% {
    height: 30px;
    opacity: 1;
  }
  100% {
    height: 0;
    top: 55px;
    opacity: 0;
  }
}
/***********************************************
read more　線の色が変わる
************************************************/
/*== 線の上を別の線が伸びる */
.c-button__more {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  /*リンクの形状*/
  color: #fff;
  padding: 10px 10px 10px 10px;
  display: inline-block;
  text-decoration: none;
  outline: none;
}

/*線の設定*/
.c-button__more::before,
.c-button__more::after {
  content: "";
  /*絶対配置で線の位置を決める*/
  position: absolute;
  z-index: 1;
  bottom: 0;
  left: 0;
  /*線の形状*/
  background: #333;
  width: 50%;
  height: 2px;
  /*アニメーションの指定*/
  transition: all 0.3s ease-in-out;
}

.c-button__more.--white::before,
.c-button__more.--white::after {
  /*線の形状*/
  background: #fff;
}

/*hover時に伸びる線の形状*/
.c-button__more::after {
  width: 0;
  background: #ffffff;
}

.c-button__more.--white::after {
  background: #333;
}

/*hover時に100%に伸びる*/
.c-button__more:hover::after {
  width: 50%;
}

/*矢印の設定*/
.c-button__more span {
  position: relative;
}

.c-button__more span::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 0.6em;
  right: -36px;
  /*矢印の形状*/
  width: 5px;
  height: 5px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all 0.3s;
}

.c-button__more.--white span::after {
  border-color: #fff;
}

/*hover時に矢印が移動*/
.c-button__more:hover span::after {
  right: -41px;
}

.--side {
  /*== 線の上を別の線が伸びる */
  /*線の設定*/
  /*hover時に伸びる線の形状*/
  /*hover時に100%に伸びる*/
  /*矢印の設定*/
  /*hover時に矢印が移動*/
}
.--side .c-button__more {
  /*線の基点とするためrelativeを指定*/
  position: relative;
  /*リンクの形状*/
  color: #fff;
  padding: 10px 80px 10px 20px;
  display: inline-block;
  text-decoration: none;
  outline: none;
}
@media (min-width: 992px) {
  .--side .c-button__more {
    padding-right: 137px;
  }
}
.--side .c-button__more::before,
.--side .c-button__more::after {
  content: "";
  position: absolute;
  z-index: 1;
  bottom: 20px;
  left: 105px;
  background: #5d595a;
  width: 24%;
  height: 1px;
  transition: all 0.3s ease-in-out;
}
@media (min-width: 992px) {
  .--side .c-button__more::before,
  .--side .c-button__more::after {
    bottom: 23px;
    left: 129px;
  }
}
.--side .c-button__more.--white::before,
.--side .c-button__more.--white::after {
  /*線の形状*/
  background: #fff;
}
.--side .c-button__more::after {
  width: 0;
  background: #ffffff;
}
.--side .c-button__more.--white::after {
  background: #000000;
}
.--side .c-button__more:hover::after {
  width: 24%;
}
.--side .c-button__more span {
  position: relative;
}
.--side .c-button__more span::after {
  content: "";
  /*絶対配置で矢印の位置を決める*/
  position: absolute;
  top: 0.6em;
  right: -36px;
  /*矢印の形状*/
  width: 5px;
  height: 5px;
  border-top: 1px solid #333;
  border-right: 1px solid #333;
  transform: rotate(45deg);
  /*アニメーションの指定*/
  transition: all 0.3s;
}
.--side .c-button__more.--white span::after {
  border-color: #fff;
}
.--side .c-button__more:hover span::after {
  right: -41px;
}

/***************
*トップページ「　　」セクション
****************/
.p-top__mv {
  padding: 0px 0 155%;
  background-image: url(../img/mv-sp-001.jpg);
  background-size: cover;
}
@media (min-width: 992px) {
  .p-top__mv {
    padding: 0px 0 42.5%;
    max-width: none;
    background-image: url(../img/mv-001.jpg);
  }
}

/***************
*トップページ「　worry　」セクション
****************/
.p-top__worry-bg {
  background-image: url(../img/worry-bg.jpg);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: top left;
  padding: 1px 0;
}

.p-top__s2-container {
  padding: 20px;
  background-color: #fff;
  border: 1px solid #E1E1E1;
  margin: 50px 0;
  border-radius: 6px;
  position: relative;
}
@media (min-width: 992px) {
  .p-top__s2-container {
    display: flex;
  }
}
.p-top__s2-container::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #ff3131 transparent transparent transparent;
  border-width: 40px 40px 0px 0px;
  position: absolute;
  top: 10px;
  left: 10px;
}
@media (min-width: 700px) {
  .p-top__s2-container::before {
    border-width: 64px 64px 0px 0px;
  }
}
.p-top__s2-container::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #ffd200 #ffd200 transparent;
  border-width: 40px 40px 0px 0px;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
@media (min-width: 700px) {
  .p-top__s2-container::after {
    border-width: 64px 64px 0px 0px;
  }
}
.p-top__s2-container em {
  color: #FF3131;
}

.p-top__s2-container-left {
  padding: 30px 0;
}
.p-top__s2-container-left h2 {
  text-align: center;
  padding-bottom: 20px;
  font-size: 1.3em;
  font-weight: 700;
}
.p-top__s2-container-left h2 em {
  position: relative;
}
.p-top__s2-container-left h2 em::before {
  content: "";
  width: 12px;
  height: 12px;
  background-image: url(../img/worry-line.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0;
  right: -3px;
}
@media (min-width: 992px) {
  .p-top__s2-container-left h2 em::before {
    width: 20px;
    height: 20px;
  }
}
.p-top__s2-container-left ul {
  border: #440000 2px solid;
  padding: 30px 20px 20px;
  margin: 20px 0;
  border-radius: 10px;
}
@media (min-width: 992px) {
  .p-top__s2-container-left ul {
    padding: 30px 40px 20px;
    margin: 20px;
  }
}
.p-top__s2-container-left li {
  padding: 0 0 15px 20px;
  position: relative;
}
.p-top__s2-container-left li::before {
  content: "";
  width: 15px;
  height: 15px;
  background-image: url(../img/icon-check.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 4px;
  left: 0;
}
@media (min-width: 992px) {
  .p-top__s2-container-left {
    width: 70%;
  }
  .p-top__s2-container-left h2 {
    font-size: 2.5em;
  }
  .p-top__s2-container-left li {
    padding: 0 0 15px 40px;
    position: relative;
    font-size: 1.6em;
  }
  .p-top__s2-container-left li::before {
    content: "";
    width: 25px;
    height: 25px;
    background-image: url(../img/icon-check.png);
    background-repeat: no-repeat;
    background-size: contain;
    position: absolute;
    top: 8px;
    left: 0;
  }
}

.p-top__s2-container-right {
  width: 70%;
  margin: 0 auto;
}
@media (min-width: 700px) {
  .p-top__s2-container-right {
    width: 350px;
  }
}

.p-top__s2-down-arrow {
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #bf0000 transparent transparent transparent;
  border-width: 68px 115px 0px 115px;
  position: relative;
  margin: 0 auto;
}
.p-top__s2-down-arrow::before {
  content: "それなら！";
  width: 150px;
  color: #fff;
  position: absolute;
  top: -60px;
  left: -60px;
  font-size: 1.4em;
}

.p-top__s2-cta-yellow {
  font-size: 20px;
  text-align: center;
  background-color: #FFD200;
  display: flex;
  width: 100%;
  align-items: flex-end;
  justify-content: center;
  margin-top: 30px;
  padding: 15px 0 0;
}
.p-top__s2-cta-yellow p {
  flex-shrink: 0;
  padding-bottom: 15px;
}
.p-top__s2-cta-yellow em {
  font-size: 1.4em;
  color: #FF3131;
  font-weight: 700;
}
.p-top__s2-cta-yellow img {
  width: auto;
  min-height: 80px;
  height: 5vw;
  margin: 0 10px;
}

.tb {
  display: block;
}

@media (min-width: 700px) {
  .p-top__s2-cta-yellow {
    font-size: 30px;
  }
  .p-top__s2-cta-yellow em {
    font-size: 1.4em;
  }
}
@media (min-width: 992px) {
  .tb {
    display: none;
  }
  .p-top__s2-cta-yellow {
    align-items: center;
  }
  .p-top__s2-cta-yellow img {
    width: auto;
    height: 200px;
    margin: -70px 10px 0;
  }
}
/***************
*トップページ「　　」セクション
****************/
.p-top__s3-color1 {
  color: #FF3131;
  font-size: 32px;
  font-weight: 700;
}

.p-top__s3-color2 {
  color: #FFD200;
  font-size: 32px;
  font-weight: 700;
}

.p-s3__about-bg {
  margin: 50px 0 0 0;
  background-color: #FFFAEB;
  position: relative;
  padding: 30px 8px 50px;
  border-radius: 8px;
  filter: drop-shadow(2px 2px 2px #a2a2a2);
  /**
  &.--4{
      height: 300px;

          @include f.mq('pc') {
              height: 200px;
          }
  }
          **/
}
.p-s3__about-bg::before {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: #ff3131 transparent transparent transparent;
  border-width: 25px 25px 0px 0px;
  position: absolute;
  top: 10px;
  left: 10px;
}
@media (min-width: 700px) {
  .p-s3__about-bg::before {
    border-width: 40px 40px 0px 0px;
  }
}
.p-s3__about-bg::after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent #ffd200 #ffd200 transparent;
  border-width: 25px 25px 0px 0px;
  position: absolute;
  bottom: 10px;
  right: 10px;
}
@media (min-width: 700px) {
  .p-s3__about-bg::after {
    border-width: 40px 40px 0px 0px;
  }
}

.p-s3__balloon {
  background-color: #CEAB09;
  padding: 20px;
  border-radius: 10px;
  position: relative;
  margin: 10px 20px 0 0px;
  color: #fff;
  line-height: 1.4;
}
@media (min-width: 992px) {
  .p-s3__balloon {
    margin: 10px 20px 0 70px;
  }
}
.p-s3__balloon::before {
  content: "";
  width: 30px;
  height: 20px;
  clip-path: polygon(0 0, 0% 100%, 100% 50%);
  background-color: #CEAB09;
  position: absolute;
  right: -20px;
  top: 50%;
  transform: translateY(-50%);
}
.p-s3__balloon.--left {
  margin: 10px 0px 0 20px;
  background-color: #630000;
}
.p-s3__balloon.--left::before {
  clip-path: polygon(100% 0, 100% 100%, 0 50%);
  right: auto;
  left: -20px;
  background-color: #630000;
}
@media (min-width: 992px) {
  .p-s3__balloon.--left {
    width: 59%;
  }
}

.p-s3__balloon-items {
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .p-s3__balloon-items {
    width: 700px;
  }
}

.p-s3__balloon-item {
  display: flex;
  align-items: center;
}
.p-s3__balloon-item img {
  width: 80px;
  height: auto;
}

.p-s3__dotted-items {
  width: 10px;
  margin: 50px auto;
}

.p-s3__dotted {
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin: 10px 0 0;
  background-color: #333;
}

.p-s3__bg2-inner {
  width: 90%;
  text-align: center;
  margin: 0 auto;
}

.p-s3__about-text {
  line-height: 1.75;
}

strong.p-s3__about-text {
  font-size: 18px;
  color: #FF3131;
}

@media (min-width: 992px) {
  .p-s3__balloon {
    width: 500px;
  }
  .p-s3__bg2-inner {
    width: 80%;
    margin: 20px auto 0;
  }
  strong.p-s3__about-text {
    font-size: 22px;
    color: #FF3131;
  }
}
/***************
*トップページ「　　」セクション
****************/
.p-s4__heading {
  margin: 120px auto 40px;
}
.p-s4__heading strong {
  font-size: 25px;
}

.p-s4__flex {
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  text-align: left;
  width: 87%;
  height: 220px;
  margin: 10px auto -30px;
}
@media (min-width: 992px) {
  .p-s4__flex {
    height: 150px;
    width: 80%;
    height: 150px;
    margin: 10px auto -20px;
  }
}
.p-s4__flex li {
  font-size: 15px;
  padding: 10px 5px 10px 13px;
  position: relative;
}
@media (min-width: 992px) {
  .p-s4__flex li {
    font-size: 20px;
    padding: 10px 5px 10px 25px;
  }
}
.p-s4__flex li::before {
  content: "";
  width: 10px;
  height: 10px;
  background-image: url(../img/icon-check.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}
@media (min-width: 992px) {
  .p-s4__flex li::before {
    width: 30px;
    height: 20px;
  }
}

.p-s4__note {
  position: absolute;
  bottom: 10px;
  right: 60px;
  font-size: 12px;
}
@media (min-width: 992px) {
  .p-s4__note {
    font-size: 15px;
    bottom: 10px;
    right: 60px;
  }
}

.p-s4__arrow {
  margin: 50px auto;
}
.p-s4__arrow::before {
  content: "さらに";
  width: 122px;
}

/***************
*トップページ「短期リース6ヶ月合格で自社ローンの変更が可能に！」セクション
****************/
.p-s5__texts {
  position: relative;
  display: flex;
  text-align: center;
  justify-content: center;
  font-size: 18px;
}
.p-s5__texts span {
  width: 20px;
  height: auto;
  border: 3px solid #333;
}
.p-s5__texts span.left {
  border-right: none;
}
.p-s5__texts span.right {
  border-left: none;
}
.p-s5__texts .text {
  margin: 3px 10px;
  font-size: 26px;
  line-height: 1.5;
}
.p-s5__texts strong {
  color: #FF3131;
}

.p-s5__icons {
  display: block;
}
@media (min-width: 992px) {
  .p-s5__icons {
    display: flex;
    justify-content: center;
    margin: 40px 0;
  }
}

.p-s5__circle {
  width: 200px;
  height: 200px;
  border-radius: 50%;
  border: 10px solid #FFD200;
  background-color: #fff;
  margin: 30px auto;
  text-align: center;
  padding: 30px 0;
  font-size: 20px;
  filter: drop-shadow(2px 2px 6px #585858);
}
.p-s5__circle img {
  width: 60px;
  display: block;
  margin: 0 auto;
}
@media (min-width: 992px) {
  .p-s5__circle {
    margin: 20px;
  }
}

.p-s5__down-arrow {
  width: 70px;
  margin: 0 auto 30px;
}

.p-s5__carlease-bannar {
  position: relative;
  text-align: center;
}
.p-s5__carlease-bannar .p-s5__carlease-bannar-text {
  color: #FF3131;
  position: absolute;
  bottom: 10px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 10px;
}
@media (min-width: 700px) {
  .p-s5__carlease-bannar .p-s5__carlease-bannar-text {
    font-size: 18px;
  }
}
@media (min-width: 992px) {
  .p-s5__carlease-bannar .p-s5__carlease-bannar-text {
    bottom: 50px;
    font-size: 25px;
    font-size: 700;
  }
}

/***************
*トップページ「　　」セクション
****************/
.p-s6__red {
  background-color: #FF3131;
  padding: 10px;
  border-radius: 30px 0 0 30px;
  position: relative;
  color: #fff;
}
.p-s6__red::before {
  content: "";
  width: 20px;
  height: 100%;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
  background-color: #FF3131;
  position: absolute;
  top: 0;
  right: -20px;
}

.p-s6__gray {
  background-color: #E6E6E6;
  padding: 10px 10px 10px 20px;
  border-radius: 0 30px 30px 0;
  color: #FF3131;
}

.p-s6__top-text {
  margin: 0 auto;
  font-size: 15px;
  text-align: center;
}
@media (min-width: 992px) {
  .p-s6__top-text {
    font-size: 20px;
  }
}

.p-s6__lead {
  font-size: 24px;
  text-align: center;
  margin: 20px 0;
}

.p-top__s6-merit-section {
  background-color: #FFFAEB;
  padding: 1px 0 24px;
  margin: 80px 0 0;
}
@media (min-width: 992px) {
  .p-top__s6-merit-section {
    padding: 30px 0 1px;
  }
}

.p-s6__item {
  background-color: #fff;
  padding: 30px;
  display: block;
  margin: 0 0 20px 0;
}
@media (min-width: 992px) {
  .p-s6__item {
    display: flex;
    margin: 0 0 50px 0;
  }
}

.p-s6__left-img {
  width: 100%;
}
@media (min-width: 992px) {
  .p-s6__left-img {
    width: 45%;
  }
}

.p-s6__right {
  width: 100%;
  padding: 3%;
}
@media (min-width: 992px) {
  .p-s6__right {
    width: 55%;
  }
}

.p-s6__label {
  width: 30%;
}
@media (min-width: 992px) {
  .p-s6__label {
    width: 24%;
  }
}

.p-s6__title-text {
  font-size: 17px;
  color: #FF3131;
  display: block;
  width: 100%;
  padding: 10px 0 14px 0;
  border-bottom: solid 1px #333;
  position: relative;
}
.p-s6__title-text::before {
  content: "";
  width: 40px;
  height: 40px;
  background-image: url(../img/icon-merit1.png);
  background-repeat: no-repeat;
  background-size: contain;
  position: absolute;
  top: 0px;
  right: 0;
}
@media (min-width: 992px) {
  .p-s6__title-text {
    padding: 0 0 20px 0;
    font-size: 24px;
  }
  .p-s6__title-text::before {
    width: 50px;
    height: 50px;
  }
}
.p-s6__title-text.--2::before {
  background-image: url(../img/icon-merit2.png);
  top: 16px;
}
.p-s6__title-text.--3::before {
  background-image: url(../img/icon-merit3.png);
}

.p-s6__merit-small-text {
  padding: 20px 0 0;
  font-size: 15px;
}
@media (min-width: 992px) {
  .p-s6__merit-small-text {
    font-size: 18px;
  }
}

/***************
*トップページ「 　」セクション
****************/
.p-top__s7-lineup-section {
  background-color: #FFFAEB;
  padding: 1px 0 60px;
}
@media (min-width: 992px) {
  .p-top__s7-lineup-section {
    padding: 30px 0 130px;
  }
}

.p-s7__item {
  margin: 30px 0 0px;
}
.p-s7__item h3 {
  background-color: #FF3131;
  color: #fff;
  padding: 15px 0;
  font-size: 16px;
  border-radius: 5px 5px 0 0;
}
@media (min-width: 992px) {
  .p-s7__item h3 {
    font-size: 18px;
  }
}

.p-s7__cars {
  padding: 10px 0;
  background-color: #fff;
  display: flex;
  justify-content: space-around;
  border-radius: 0 0 5px 5px;
  filter: drop-shadow(2px 2px 2px #c2c2c2);
}

.p-s7__car {
  width: 30%;
  font-size: 13px;
}
.p-s7__car span {
  display: block;
  padding: 5px 0;
}
@media (min-width: 992px) {
  .p-s7__car {
    font-size: 16px;
    font-weight: 700;
  }
}

.p-s7__cta {
  margin: -30px 0 0;
  color: #fff;
  background-color: #FF3131;
  font-weight: 700;
}
.p-s7__cta em {
  font-size: 1em;
  padding-right: 16px;
  color: #ffd200;
}
@media (min-width: 992px) {
  .p-s7__cta em {
    font-size: 1em;
    padding-right: 0;
  }
}

.p-s7__padding {
  margin-top: 80px;
}

/***************
*トップページ「 お問い合わせ」セクション
****************/
.p-s7__top-text {
  padding: 50px 0 0;
  font-size: 17px;
  line-height: 1.4;
}
@media (min-width: 992px) {
  .p-s7__top-text {
    font-size: 19px;
    padding: 50px 0 0px;
  }
}

.p-s7__top-text2 {
  padding: 15px 0 20px;
}
.p-s7__top-text2 em {
  color: #FF0000;
}
@media (min-width: 992px) {
  .p-s7__top-text2 {
    padding: 7px 0 40px;
  }
}

#myForm .c-inner__flex {
  padding-bottom: 20px;
}

input,
textarea,
select {
  width: 60%;
  font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
  font-size: 18px;
  background-color: #F6F6FE;
  padding: 20px 19px;
  margin: 12px 0;
  border: 1px solid #cbcbcb;
  font-size: 14px;
  width: 100%;
  margin: 0;
}
input:focus,
textarea:focus,
select:focus {
  border: 1px solid #4877B0;
  outline: 0;
}
@media (min-width: 992px) {
  input,
  textarea,
  select {
    width: 60%;
    font-family: "Noto Sans JP", "Helvetica Neue", "Helvetica", "Hiragino Sans", "ヒラギノ角ゴシック", YuGothic, "Yu Gothic", "メイリオ", Meiryo, "Arial", "ＭＳ Ｐゴシック", "MS PGothic", sans-serif !important;
    font-size: 18px;
    padding: 20px 19px;
    margin: 12px 0 0;
  }
}

textarea {
  width: 100%;
  height: 230px;
}

label {
  font-size: 18px;
  font-weight: 700;
}
@media (min-width: 992px) {
  label {
    font-size: 20px;
  }
}

label.required {
  position: relative;
}
label.required::after {
  content: "＊";
  padding-left: 10px;
  color: #FF0202;
  position: relative;
}

dt {
  width: 300px;
  flex-shrink: 0;
}

dd {
  width: 100%;
  margin-top: 10px;
}
@media (min-width: 992px) {
  dd {
    width: calc(100% - 300px);
    margin-top: 0;
  }
}
dd input {
  width: 100%;
}

.p-top__s8-contact-section {
  background-color: #F2F2F2;
  padding: 30px 0 30px;
}
@media (min-width: 992px) {
  .p-top__s8-contact-section {
    padding: 50px 0 70px;
  }
}
.p-top__s8-contact-section dt,
.p-top__s8-contact-section dd {
  font-size: 19px;
}
@media (min-width: 992px) {
  .p-top__s8-contact-section dt,
  .p-top__s8-contact-section dd {
    font-size: 22px;
  }
}

input[type=submit] {
  border: none;
  background-color: #013FC6;
  width: 300px;
  border-radius: 40px;
  margin: 50px auto;
  display: block;
  color: #fff;
  font-weight: 900;
  transition: all 0.2s linear 0s;
}
input[type=submit]:hover {
  transform: scale(1.05, 1.05);
}
@media (min-width: 992px) {
  input[type=submit] {
    margin: 0px auto;
  }
}

/***********************************************
  privacy-porixy-box
  ************************************************/
/**********/
form .privacy {
  background: #ffffff;
  height: min(16.09375vw, 309px);
  overflow: auto;
  margin-bottom: min(1.45833vw, 28px);
  text-align: left;
  line-height: 1.5;
  margin: 40px auto;
  font-size: 16px;
  border: 1px solid #cbcbcb;
}
form .privacy.--contact {
  background: #ffe6bf;
}
@media (min-width: 992px) {
  form .privacy {
    margin: 0px auto;
  }
}

form .privacy .inner {
  padding: min(1.2vw, 30px);
}

form .privacy p {
  letter-spacing: 0;
  line-height: 1.875;
}

@media screen and (max-width: 768px) {
  form .privacy {
    position: relative;
    height: min(41.06667vw, 154px);
    width: 100%;
    margin: -10px auto 50px;
  }
  form .privacy .inner {
    padding: min(2.66667vw, 10px);
  }
  form .privacy p {
    font-size: min(0.83333vw, 16px);
  }
}
@media screen and (max-width: 768px) and (max-width: 768px) {
  form .privacy p {
    font-size: 4.26667vw;
  }
}
.privacy_address {
  border: 1px solid #000;
  text-align: center;
  padding: 20px;
  margin: 10px;
  line-height: 1.75;
}

/***************************プライバシーポリシーに同意します*****************/
/******【注意！！】チェックボックスはinputとlabel逆に書いてはだめです！「checked」に続く＋プラス記号は後のタグだけ表せます-**
  <div class="s11__acceptance">
   <input type="checkbox">★
    <label>★
    <span>
  </div>

  この順番でよろしくです…
  *****************************************************************************************/
.wpcf7-form-control-wrap {
  display: block;
}

span.c-form__acceptance-input {
  margin: 0 30px 0 0;
  /* 項目右側の余白設定と、デフォルトの左側の余白を打ち消す */
  position: relative;
}

.c-form__acceptance-label {
  cursor: pointer;
  /* labelにhoverした時にカーソルを表示させる */
  font-size: 16px;
  /* 項目のフォントサイズ */
}

input[type=checkbox] {
  opacity: 0;
  /* デフォルトのチェックボックスを見えなくする */
  position: absolute;
  width: 60%;
}
@media (min-width: 992px) {
  input[type=checkbox] {
    width: 60%;
    display: block;
  }
}

.accept-wrap {
  width: 290px;
  height: 20px;
  margin: 0 auto;
}

.c-form__acceptance-label {
  display: inline;
  position: relative;
  text-align: center;
  font-size: 18px;
}
.c-form__acceptance-label a {
  border-bottom: 1px solid #1A1A1A;
}
.c-form__acceptance-label::before {
  /* チェックボックスのデザイン */
  border: 1px solid #b2b2b2;
  content: "";
  display: inline-block;
  height: 20px;
  width: 20px;
  border-radius: 4px;
  margin-right: 15px;
  top: -1px;
  vertical-align: middle;
  transition: all 0.2s linear 0s;
}

input[type=checkbox]:checked + .c-form__acceptance-label::after {
  /* チェックアイコン */
  border-bottom: 2px solid #ffffff;
  border-left: 2px solid #ffffff;
  content: "";
  display: block;
  width: 10px;
  height: 5px;
  opacity: 1;
  position: absolute;
  top: 11px;
  left: 5px;
  transform: rotate(-45deg);
  transition: opacity 0.3s ease 0s;
}
@media (min-width: 992px) {
  input[type=checkbox]:checked + .c-form__acceptance-label::after {
    top: 10px;
    left: 5px;
  }
}

input[type=checkbox]:checked + .c-form__acceptance-label::before {
  /* チェックしたボックスの背景色を設定 */
  background-color: #4b78ff;
  transition: all 0.2s linear 0s;
}

/******************  *************************プライバシーポリシーに同意します*******************************************/
.p-s7__thanks-text {
  line-height: 2.5;
  padding: 40px 0;
  font-size: 15px;
}
@media (min-width: 992px) {
  .p-s7__thanks-text {
    padding: 60px 0;
    font-size: 20px;
  }
}

.p-s8__title-jp {
  font-size: 24px;
  margin-top: -25px;
  font-weight: 700;
}
@media (min-width: 992px) {
  .p-s8__title-jp {
    font-size: 36px;
    margin-top: -40px;
  }
}

.p-s8__title-en {
  font-size: 50px;
  color: #FFD200;
  font-weight: 900;
}
@media (min-width: 992px) {
  .p-s8__title-en {
    font-size: 70px;
  }
}

.p-s8__center {
  align-items: flex-start;
  padding: 20px 0 0;
}

textarea {
  margin: 0;
}

.p-s8__paddingtop {
  text-align: center;
}
@media (min-width: 992px) {
  .p-s8__paddingtop {
    padding: 60px 0 0px;
    text-align: left;
    justify-content: flex-start;
  }
}

/* inputのすぐ隣に配置するメッセージ要素 */
.error-message {
  font-size: 12px;
  color: #ff7676;
  display: none;
  /* 非表示に */
}

/* :invalid時だけ隣の要素を表示 */
input:invalid + .error-message,
textarea:invalid + .error-message,
input[type=checkbox]:invalid ~ .error-message {
  display: block;
}

.p-s8__top-btn {
  background-color: #cbcbcb;
  border-radius: 3px;
  filter: drop-shadow(2px 2px 2px #585858);
  padding: 10px 20px;
  color: #333;
}

/***************
*トップページ「　　」セクション
****************/
/***************
*トップページ「　　」セクション
****************/
