@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+JP:wght@100..900&display=swap");
/*---------------------------------------
# グーグルフォント
----------------------------------------*/
/*------------------------------
# colors
-------------------------------*/
/*---------------------------------------
# ブレークポイント
----------------------------------------*/
/*---------------------------------------
# ベース
----------------------------------------*/
body {
  font-size: 20px;
  line-height: 1.5;
  color: #333;
  font-family: "Noto Sans JP", sans-serif;
  letter-spacing: 2px;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  body {
    font-size: 16px;
  }
}

img {
  width: 100%;
  max-width: 100%;
  vertical-align: bottom;
}

section {
  padding: 100px 0;
}
@media screen and (max-width: 767px) {
  section {
    padding: 80px 0;
  }
}

.section__title {
  text-align: center;
  font-size: 36px;
  font-weight: bold;
  position: relative;
  letter-spacing: 6px;
}
@media screen and (max-width: 767px) {
  .section__title {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .section__title {
    font-size: 28px;
  }
}

.inner {
  max-width: 1000px;
  margin: 0 auto;
  box-sizing: content-box;
  padding: 0 70px;
}
@media screen and (max-width: 767px) {
  .inner {
    padding: 0 20px;
  }
}

.btn {
  max-width: 507px;
  width: 100%;
  background-color: #FF0000;
  letter-spacing: 0.1em;
  text-align: center;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
  transition: 0.3s ease-in-out;
  margin: 0 auto;
  margin: 15px auto 0;
  border-radius: 60px;
  position: relative;
  box-shadow: 0 5px #9f000c;
}
@media screen and (max-width: 767px) {
  .btn {
    max-width: 335px;
  }
}
.btn::after {
  content: "";
  background-image: url(../img/arrow-button/arrow-button.svg);
  height: 27px;
  width: 27px;
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
}
@media screen and (max-width: 767px) {
  .btn::after {
    width: 20px;
    height: 20px;
    background-size: contain;
    right: 15px;
  }
}
.btn a {
  color: #fff;
  text-align: left;
  padding-left: 35px;
}
@media screen and (max-width: 767px) {
  .btn a {
    font-size: 16px;
    padding: 17px 35px;
  }
}

.btn__link {
  padding: 24px 10px;
  display: block;
  border-radius: 5px;
  font-size: 26px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .btn__link {
    padding: 7.5px 12px;
  }
}

._shiny {
  display: block;
  position: relative;
  overflow: hidden;
}
._shiny::before {
  position: absolute;
  content: "";
  display: inline-block;
  top: -180px;
  left: 0;
  width: 30px;
  height: 100%;
  background-color: #fff;
  transition: 300ms;
  -webkit-animation: shinyshiny 2.5s ease-in-out infinite;
  animation: shinyshiny 2.5s ease-in-out infinite;
}

@-webkit-keyframes shinyshiny {
  0% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0;
  }
  80% {
    -webkit-transform: scale(0) rotate(45deg);
    opacity: 0.5;
  }
  81% {
    -webkit-transform: scale(4) rotate(45deg);
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(50) rotate(45deg);
    opacity: 0;
  }
}
/* 下からふわっと現れる */
.fadeUp {
  -webkit-animation-name: fadeUpAnime;
  animation-name: fadeUpAnime; /*アニメーションの名前*/
  -webkit-animation-duration: 1s;
  animation-duration: 1s; /*アニメーションの実行時間*/
  -webkit-animation-fill-mode: forwards;
  animation-fill-mode: forwards; /*アニメーション後、要素が表示されたままにする*/
}

@-webkit-keyframes fadeUpAnime {
  0% {
    opacity: 0; /*非表示*/
    transform: translateY(100px); /*縦方向に100pxずらす*/
  }
  100% {
    opacity: 1; /*表示*/
    transform: translateY(0); /*元の位置*/
  }
}
@keyframes fadeUpAnime {
  0% {
    opacity: 0; /*非表示*/
    transform: translateY(100px); /*縦方向に100pxずらす*/
  }
  100% {
    opacity: 1; /*表示*/
    transform: translateY(0); /*元の位置*/
  }
}
.fadeUpTrigger {
  opacity: 0; /*非表示*/
}

/* アニメーションスタートの遅延時間を決めるCSS*/
.delay-time03 {
  -webkit-animation-delay: 0.3s;
          animation-delay: 0.3s;
}

.delay-time05 {
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}

.delay-time07 {
  -webkit-animation-delay: 0.7s;
          animation-delay: 0.7s;
}

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

@media screen and (min-width: 1200px) {
  .sp {
    display: none;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .tab_none {
    display: none;
  }
}

/*---------------------------------------
# fv__style
----------------------------------------*/
.fv {
  position: relative;
  background: url(../img/fv_bg/fv-img-bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  height: 100vh;
  margin-top: 0;
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .fv {
    background-image: url(../img/fv_bg/fv-img-sp-bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    margin-top: 0;
    background-size: cover;
    padding: 0;
    height: 571px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .fv {
    background-image: url(../img/fv_bg/fv-img-sp-bg.png);
    background-repeat: no-repeat;
    background-position: center center;
    margin-top: 0;
    background-size: cover;
    padding: 0;
  }
}

.fv__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
@media screen and (max-width: 767px) {
  .fv__inner {
    padding: 0 20px;
    box-sizing: border-box;
    top: 54%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .fv__inner {
    padding: 0;
    padding: 0 40px;
    box-sizing: border-box;
    max-width: 628px;
  }
}

.fv__catch {
  max-width: 100%;
}
@media screen and (max-width: 767px) {
  .fv__catch {
    width: 335px;
    margin: 0 auto;
  }
}

/*---------------------------------------
# about
----------------------------------------*/
@media screen and (max-width: 767px) {
  .about {
    padding: 114px 20px 80px;
  }
}

.about__inner {
  width: 100%;
  max-width: 100%;
  padding: 0;
}

.about__section__title {
  max-width: 370px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .about__section__title {
    width: 79.4666%;
  }
}

.about__items {
  display: flex;
  align-items: center;
  justify-content: right;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .about__items {
    display: block;
    width: 100%;
  }
}

.item__left {
  width: 46.94444%;
  margin-right: 41px;
}
.item__left p {
  line-height: 1.75;
}
@media screen and (max-width: 767px) {
  .item__left {
    width: 100%;
    margin: 0;
  }
}
.item__left h3 {
  font-size: 24px;
  color: #FC7900;
  font-weight: bold;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .item__left h3 {
    font-size: 20px;
  }
}
.item__left p {
  margin-top: 20px;
  letter-spacing: 0.1px;
}

.item__right {
  width: 40.3333%;
}
@media screen and (max-width: 767px) {
  .item__right {
    width: 100%;
    margin-top: 20px;
  }
}
.item__right img {
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.marker {
  font-weight: bold;
  background-color: #FFE6A8;
  color: #091D70;
}

.color__red {
  color: #FF0000;
}

/*---------------------------------------
# reason
----------------------------------------*/
.reason {
  background-color: #F6F8FF;
}

.reason__section__title {
  max-width: 504px;
  margin: 0 auto;
}

.reason__items {
  display: flex;
  flex-wrap: wrap;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .reason__items {
    display: block;
  }
}

.reason__item-img {
  position: relative;
}

.reason__label {
  position: absolute;
  top: 0;
  left: 0;
  width: 27.15789%;
}

.reason__item {
  width: 47.5%;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .reason__item {
    width: 100%;
    margin-top: 30px;
  }
  .reason__item:first-child {
    margin-top: 0;
  }
}
.reason__item:nth-child(n+3) {
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .reason__item:nth-child(n+3) {
    margin-top: 30px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .reason__item:nth-child(n+3) {
    margin-top: 30px;
  }
}
.reason__item:not(:nth-child(2n+1)) {
  margin-left: 50px;
}
@media screen and (max-width: 767px) {
  .reason__item:not(:nth-child(2n+1)) {
    margin-left: 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .reason__item:not(:nth-child(2n+1)) {
    margin-left: 30px;
  }
}

.reason__item-text {
  padding: 20px;
  line-height: 1.5;
  font-size: 20px;
}
.reason__item-text p {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .reason__item-text {
    font-size: 16px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .reason__item-text {
    font-size: 16px;
  }
}

.cta__text-img {
  width: 65%;
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  .cta__text-img {
    max-width: 335px;
    width: 100%;
  }
}

/*---------------------------------------
# message
----------------------------------------*/
.message {
  background-image: url(../img/message/message__bg.jpg);
  height: 100%;
  width: 100%;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  position: relative;
  padding-bottom: 170px;
}
@media screen and (max-width: 767px) {
  .message {
    padding-bottom: 120px;
  }
}
.message::after {
  content: "";
  position: absolute;
  display: block;
  left: 0;
  border-style: solid;
  bottom: 0;
  border-color: transparent #fff transparent;
  border-width: 8vw 50vw 0;
}
@media screen and (max-width: 767px) {
  .message::after {
    border-width: 15vw 50vw 0;
  }
}

.message__section__title {
  max-width: 370px;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .message__section__title {
    width: 74.46%;
  }
}

.message__items {
  margin-top: 60px;
}

.message__item {
  display: flex;
  align-items: center;
  line-height: 1.5;
}
@media screen and (max-width: 767px) {
  .message__item {
    flex-direction: column;
  }
}
.message__item:last-child {
  margin-top: 80px;
}
@media screen and (max-width: 767px) {
  .message__item:last-child {
    margin-top: 60px;
  }
}

.ceo__text {
  margin-top: 30px;
  font-weight: bold;
}
@media screen and (min-width: 1200px) {
  .ceo__text {
    font-size: 18px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .ceo__text {
    font-size: 16px;
  }
}

.row-reverse {
  flex-direction: row-reverse;
}
@media screen and (max-width: 767px) {
  .row-reverse {
    flex-direction: column;
  }
}

.message__item-left {
  width: 38.4%;
  margin-right: 30px;
}
@media screen and (max-width: 767px) {
  .message__item-left {
    width: 100%;
    margin-right: 0;
  }
}

.message__img {
  box-shadow: 0px 0px 32px rgba(255, 255, 255, 0.7);
}

.message__item-right {
  color: #fff;
  width: 58.6%;
  font-size: 18px;
}
@media screen and (max-width: 767px) {
  .message__item-right {
    width: 100%;
    font-size: 16px;
    letter-spacing: 0;
    margin-top: 30px;
  }
}
.message__item-right h3 {
  font-size: 24px;
  color: #FFE500;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .message__item-right h3 {
    font-size: 20px;
  }
}
.message__item-right h4 {
  font-size: 28px;
  font-weight: bold;
  color: #FFE500;
  padding-left: 10px;
  margin-top: 30px;
  position: relative;
}
@media screen and (max-width: 767px) {
  .message__item-right h4 {
    font-size: 24px;
  }
}
.message__item-right h4::before {
  content: "";
  width: 5px;
  height: 32px;
  background-color: #FC7900;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}

.row-reverse-message__item-left {
  margin: 0;
  margin-left: 30px;
}
@media screen and (max-width: 767px) {
  .row-reverse-message__item-left {
    margin-left: 0;
  }
}

.row-reverse-text1 {
  font-size: 36px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .row-reverse-text1 {
    font-size: 20px;
  }
}

#row-reverse-name {
  font-size: 44px;
  font-weight: bold;
  color: #FFE500;
  margin-top: 10px;
  line-height: 1;
}
@media screen and (max-width: 767px) {
  #row-reverse-name {
    font-size: 28px;
  }
}

.row-reverse-text2 {
  margin-top: 20px;
  font-size: 16px;
  letter-spacing: 0.9px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .row-reverse-text2 {
    font-size: 15px;
  }
}

.row-reverse-text3 {
  color: #FFE500;
  font-size: 24px;
  margin-top: 20px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .row-reverse-text3 {
    font-size: 20px;
  }
}

.row-reverse-text4 {
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .row-reverse-text4 {
    margin-top: 10px;
  }
}
@media screen and (max-width: 767px) {
  .row-reverse-text4 {
    font-size: 16px;
  }
}

.message__bottom-right {
  max-width: 100%;
  width: 100%;
  margin-top: 30px;
  color: #fff;
}

.message__title {
  font-weight: bold;
  font-size: 24px;
  color: #FFE500;
  line-height: 1.4;
}
@media screen and (max-width: 767px) {
  .message__title {
    font-size: 20px;
    letter-spacing: 0px;
  }
}

/*---------------------------------------
# voice01
----------------------------------------*/
@media screen and (max-width: 767px) {
  .voice01 {
    padding-bottom: 0;
  }
}

.voice01__section__title h2 {
  text-align: center;
}
.voice01__section__title h2 img {
  max-width: 420px;
}

.voice01__item {
  display: flex;
  padding: 30px 50px;
  background-color: #FFF6DE;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
  align-items: center;
  margin-top: 50px;
}
@media screen and (max-width: 767px) {
  .voice01__item {
    flex-direction: column;
    padding: 20px 15px;
  }
}
.voice01__item:first-child {
  margin-top: 60px;
}
.voice01__item h3 {
  color: #FC7900;
  font-size: 28px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .voice01__item h3 {
    font-size: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .voice01__item h3 {
    font-size: 24px;
  }
}

.voice01__right {
  margin-left: 50px;
  width: 66.88%;
}
@media screen and (max-width: 767px) {
  .voice01__right {
    margin: 0;
    width: 100%;
    text-align: center;
    margin-top: 20px;
  }
}

.voice01__right_name {
  color: #091D70;
  font-weight: bold;
  margin-top: 20px;
  display: inline-block;
  position: relative;
}
@media screen and (max-width: 767px) {
  .voice01__right_name {
    margin-top: 20px;
  }
}
.voice01__right_name::after {
  content: "";
  width: 100%;
  height: 1.5px;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  background-color: #091D70;
  bottom: -2px;
}

.voice01__right-text {
  margin-top: 30px;
  font-weight: bold;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .voice01__right-text {
    text-align: left;
    letter-spacing: 0;
    margin-top: 20px;
  }
}

.voice01__img {
  width: 27.55%;
}
@media screen and (max-width: 767px) {
  .voice01__img {
    width: 83.7%;
  }
}

/*---------------------------------------
# voice
----------------------------------------*/
@media screen and (max-width: 767px) {
  .voice {
    padding-top: 80px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .voice__inner {
    padding: 0 20px;
  }
}

.voice__section__title {
  width: 25.6%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .voice__section__title {
    width: 50.66%;
  }
}

.voice__items {
  margin-top: 60px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .voice__items {
    display: block;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .voice__items {
    justify-content: center;
  }
}

.voice__item {
  background-color: #648CC8;
  padding: 30px;
  width: 47.9%;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
}
@media (min-width: 768px) and (max-width: 1199px) {
  .voice__item {
    padding: 20px;
  }
}
@media screen and (max-width: 767px) {
  .voice__item {
    width: 100%;
    padding: 18px;
  }
  .voice__item:last-child {
    margin-top: 30px;
  }
}
.voice__item:first-child {
  margin-right: 42px;
}
@media screen and (max-width: 767px) {
  .voice__item:first-child {
    margin-right: 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .voice__item:first-child {
    margin-right: 25px;
  }
}

.voice__text {
  margin-top: 30px;
  font-size: 16px;
  color: #fff;
}
@media screen and (max-width: 767px) {
  .voice__text {
    margin-top: 20px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .voice__text {
    line-height: 1.4;
    margin-top: 20px;
  }
}
.voice__text p {
  letter-spacing: 1px;
  line-height: 1.5;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .voice__text p {
    font-size: 16px;
    letter-spacing: 0;
  }
}

/*---------------------------------------
# model__case
----------------------------------------*/
.model__case {
  background-color: #F6F8FF;
  position: relative;
  padding-bottom: 135px;
}
@media screen and (max-width: 767px) {
  .model__case {
    padding-bottom: 80px;
  }
}
.model__case .model__case-arrow__img {
  position: absolute;
  width: 540px;
  bottom: -110px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .model__case .model__case-arrow__img {
    width: 267px;
    bottom: -90px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .model__case .model__case-arrow__img {
    width: 384px;
    bottom: -80px;
  }
}

.model__case__section__title {
  width: 39.6%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  .model__case__section__title {
    width: 73.933%;
  }
}

.model__case__items {
  margin-top: 60px;
  display: flex;
}
@media screen and (max-width: 767px) {
  .model__case__items {
    display: block;
  }
}

.model__case-item {
  width: 47.5%;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
}
@media screen and (max-width: 767px) {
  .model__case-item {
    width: 100%;
  }
  .model__case-item:last-child {
    margin-top: 30px;
  }
}
.model__case-item:first-child {
  margin-right: 50px;
}
@media screen and (max-width: 767px) {
  .model__case-item:first-child {
    margin-right: 0;
  }
}

.model__case-cta-bottom {
  padding-bottom: 0;
}

/*---------------------------------------
# flow
----------------------------------------*/
.flow {
  position: relative;
  padding-bottom: 190px;
}
@media screen and (max-width: 767px) {
  .flow {
    padding-bottom: 94px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .flow {
    padding-bottom: 140px;
  }
}

.flow__title-img {
  width: 100%;
  margin: 0 auto;
}

.flow__img {
  width: 75%;
  margin: 60px auto 0;
}
@media screen and (max-width: 767px) {
  .flow__img {
    width: 100%;
  }
}

.flow__bg {
  max-width: 224px;
  width: 100%;
  margin: 60px auto 0;
  font-weight: bold;
}

.flow_bottom-text-box {
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .flow_bottom-text-box {
    margin-top: 28px;
  }
}

.flow_bottom-text {
  font-size: 52px;
  display: inline-block;
  color: #091D70;
  font-weight: bold;
  position: relative;
}
@media screen and (max-width: 767px) {
  .flow_bottom-text {
    font-size: 32px;
  }
}
.flow_bottom-text::before {
  content: "";
  position: absolute;
  bottom: 5px;
  height: 14px;
  width: 103%;
  left: 50%;
  transform: translateX(-50%);
  background-color: #FFE500;
  z-index: -1;
}

.flow_bottom-text-color {
  color: #FF0000;
  font-weight: bold;
}

.flow__case-bottom {
  position: absolute;
  bottom: -120px;
  left: 50%;
  transform: translateX(-50%);
  width: 750px;
}
@media screen and (max-width: 767px) {
  .flow__case-bottom {
    width: 290px;
    bottom: -70px;
    left: 51%;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .flow__case-bottom {
    width: 478px;
    bottom: -75px;
  }
}

/*---------------------------------------
# contact-form
----------------------------------------*/
.section__contact-form {
  background-color: #F6F8FF;
  padding-top: 190px;
}
@media screen and (max-width: 767px) {
  .section__contact-form {
    padding-top: 0;
    padding-bottom: 60px;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .section__contact-form {
    padding: 140px 70px;
  }
}

.contact__form_inner {
  max-width: 750px;
  margin: 0 auto;
  font-family: "Noto Sans JP", sans-serif;
}

.contact__item {
  margin-top: 40px;
}
.contact__item:first-child {
  margin-top: 0;
}

.contact__item-title {
  padding-bottom: 10px;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  .contact__item-title {
    padding-bottom: 3px;
  }
}

.contact__list {
  margin-top: 70px;
}
@media screen and (max-width: 767px) {
  .contact__list {
    margin-top: 60px;
  }
}

input[type=text],
input[type=radio],
input[type=checkbox],
input[type=submit],
input[type=tel],
input[type=email],
textarea,
select:focus {
  border: 1px solid #375187;
}

input[type=text],
input[type=radio],
input[type=checkbox],
input[type=submit],
input[type=tel],
input[type=email],
textarea,
select {
  border: 1px solid #375187;
  padding: 12px 16px;
  background-color: #fff;
}

input[type=radio] + span::before {
  height: 24px;
  width: 24px;
  border: 1px solid #375187;
}
@media screen and (max-width: 767px) {
  input[type=radio] + span::before {
    height: 15px;
    width: 15px;
  }
}

input[type=radio] + span {
  padding: 0 0 0 38px;
}
@media screen and (max-width: 767px) {
  input[type=radio] + span {
    padding: 0 0 0 23px;
  }
}

input[type=radio] + span::after {
  content: "";
  height: 11px;
  left: 4.5px;
  width: 11px;
  background: #333;
}
@media screen and (max-width: 767px) {
  input[type=radio] + span::after {
    height: 5px;
    width: 5px;
    left: 3px;
  }
}

.contact__radio {
  margin-left: 45px;
}
@media screen and (max-width: 767px) {
  .contact__radio {
    margin-left: 5px;
  }
}
.contact__radio:first-child {
  margin-left: 0;
}

.checkbox-wrapr {
  display: flex;
  position: relative;
  margin-top: 15px;
  margin-top: 0;
}
.checkbox-wrapr:last-child {
  margin-left: 20px;
}
@media screen and (max-width: 767px) {
  .checkbox-wrapr {
    margin-left: 0;
    margin-top: 10px;
  }
}

.contact__item-inline {
  width: 46px;
  display: inline-block;
  text-align: center;
  background-color: #E44141;
  color: #fff;
  padding-bottom: 2px;
  margin-left: 20px;
  font-size: 14px;
}

.contact-privacy {
  position: absolute;
  top: -6px;
}

.check-box-text {
  padding-left: 44px;
}

input[type=checkbox] + span::before {
  -webkit-transform: translateY(-50%);
  background: #fff;
  border: 1px solid #333;
  content: "";
  display: block;
  height: 24px;
  left: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 24px;
  border-radius: 0;
}

input[type=checkbox] + span::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
  border-bottom: 3px solid #333;
  border-left: 3px solid #333;
  content: "";
  display: block;
  height: 9px;
  left: 3px;
  margin-top: -0.2em;
  opacity: 0;
  position: absolute;
  top: 50%;
  transform: translateY(-50%) rotate(-45deg);
  transition: all 0.3s ease 0s;
  width: 18px;
}

textarea {
  height: 180px;
}

.contact-form__inner {
  max-width: 1000px;
  margin: 0 auto;
  background-color: #fff;
  padding-top: 60px;
  box-shadow: 4px 4px 4px rgba(0, 0, 0, 0.15);
  font-family: "Noto Sans JP", sans-serif;
  padding-bottom: 60px;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .contact-form__inner {
    background-color: #F6F8FF;
    box-shadow: initial;
    padding-bottom: 0;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .contact-form__inner {
    padding: 60px;
    padding-bottom: 60px;
  }
}

.sub__contact-text {
  padding: 0 20px;
}

.sub__contact-text-inner {
  max-width: 955px;
  margin: 0 auto;
  text-align: center;
  margin-top: 160px;
  font-family: "Noto Sans JP", sans-serif;
}
@media screen and (max-width: 767px) {
  .sub__contact-text-inner {
    text-align: left;
  }
}

.contact-form {
  padding-bottom: 60px;
  max-width: 750px;
  margin: 0 auto;
  font-size: 16px;
}
@media screen and (max-width: 767px) {
  .contact-form {
    padding-bottom: 0;
  }
}

.contact__item {
  margin-top: 40px;
}
.contact__item:first-child {
  margin-top: 70px;
}

.form__title {
  font-size: 28px;
  border: none;
  color: #333;
}
@media screen and (max-width: 767px) {
  .form__title {
    font-size: 20px;
  }
}
.form__title::before {
  content: "";
  display: none;
}
.form__title::after {
  content: "";
  display: none;
}

@media screen and (min-width: 1200px) {
  .sp__form__title {
    display: none;
  }
}
@media (min-width: 768px) and (max-width: 1199px) {
  .sp__form__title {
    display: none;
  }
}

.contact__item-inline {
  background-color: #FF0000;
  color: #fff;
  padding: 2px 6px 2px 6px;
  margin-left: 20px;
}

.contact__item-input {
  margin-top: 7px;
  margin-left: 0;
  display: flex;
}
@media screen and (max-width: 767px) {
  .contact__item-input {
    line-height: 1;
  }
}

input,
textarea {
  width: 100%;
  font-size: 16px;
  padding: 11px 16px;
  border: solid 1px #333;
}

textarea {
  height: 176px;
  resize: vertical;
}

input[type=text],
input[type=radio],
input[type=checkbox],
input[type=submit],
input[type=tel],
input[type=email],
textarea,
select:focus {
  border: solid 1px #333;
  background-color: #fff;
  box-sizing: border-box;
}

.submit__btn {
  text-align: center;
  margin: 60px auto 0;
  max-width: 290px;
  position: relative;
}
.submit__btn::after {
  content: "";
  background-image: url(../img/arrow-button/arrow-button.svg);
  height: 22px;
  width: 22px;
  position: absolute;
  right: 35px;
  top: 50%;
  transform: translateY(-50%);
  background-size: cover;
}
@media screen and (max-width: 767px) {
  .submit__btn {
    margin-top: 60px;
  }
}

.-submit {
  cursor: pointer;
}

.contact__btn {
  width: 100%;
  background-color: #091D70;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  padding: 20px 10px;
  border-radius: 50px;
  border: none;
  box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
}

.footer {
  background-color: #091D70;
  padding: 35px 0;
}
@media screen and (max-width: 767px) {
  .footer {
    padding: 11px 0;
  }
}

.Copyright {
  color: #fff;
  text-align: center;
  font-size: 20px;
}
@media screen and (max-width: 767px) {
  .Copyright {
    font-size: 12px;
  }
}

.wpcf7-form-control-wrap {
  width: 100%;
  max-width: 100%;
}

input[type=checkbox] + span {
  padding-left: 44px;
}

.wpcf7-list-item {
  margin: 0;
}

/*---------------------------------------
# thanks
----------------------------------------*/
.thanks_fv {
  background-image: url(../img/thanks/thanks_fv.jpg);
  background-repeat: no-repeat;
  background-position: left;
  background-size: cover;
  height: 300px;
  width: 100%;
  position: relative;
}

.thanks_fv_inner {
  max-width: 500px;
  width: 100%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (max-width: 767px) {
  .thanks_fv_inner {
    padding: 0;
  }
}
@media screen and (max-width: 767px) {
  .thanks_fv_inner img {
    padding: 0 20px;
  }
}

.download__inner {
  max-width: 1170px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .download__inner {
    padding: 0 40px;
  }
}

.download__section__title h2 {
  font-size: 32px;
  color: #091D70;
  font-weight: bold;
  text-align: center;
}
@media screen and (max-width: 767px) {
  .download__section__title h2 {
    font-size: 24px;
  }
}
.download__section__title h3 {
  font-size: 28px;
  color: #091D70;
  text-align: center;
  font-weight: bold;
  margin-top: 80px;
}
@media (min-width: 768px) and (max-width: 1199px) {
  .download__section__title h3 {
    font-size: 24px;
  }
}
@media screen and (max-width: 767px) {
  .download__section__title h3 {
    font-size: 20px;
    margin-top: 60px;
  }
}

.download_btn-link {
  font-size: 32px;
  font-weight: bold;
  color: #FF0000;
  text-align: center;
  margin-top: 60px;
}
@media screen and (max-width: 767px) {
  .download_btn-link {
    font-size: 20px;
  }
}

.download_text {
  text-align: center;
  font-size: 16px;
  margin-top: 60px;
}

.download_marker {
  background-color: initial;
}

.download_link {
  text-align: center !important;
}

.top_btn {
  background-color: #091D70;
  margin-top: 60px;
  box-shadow: 0 5px #090c15;
}
@media screen and (max-width: 767px) {
  .top_btn {
    margin-top: 30px;
  }
}