@charset "UTF-8";

/*================ reset ================*/
*,
:after,
:before {
  box-sizing: border-box;
}

* {
  padding: 0;
  margin: 0
}

body {
  min-height: 100vh;
  scroll-behavior: smooth;
  text-rendering: optimizeSpeed;
}


dd,
dt,
em,
h1,
h2,
h3,
h4,
input,
li,
p,
select,
td,
textarea,
th {
  font-size: 100%;
  font-style: inherit;
  font-weight: inherit
}

li,
ol,
ul {
  padding: 0;
  list-style: none
}

table {
  border-collapse: collapse
}

caption,
th {
  text-align: left
}

fieldset {
  border: 0
}

a {
  color: inherit;
  text-decoration: none;
  transition: 0.3s;
}

img {
  max-width: 100%;
  border: 0
}

br {
  letter-spacing: 0
}

button,
input,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  font: inherit;
  background: transparent;
  border: 0;
  border-radius: 0;
  outline: 0
}

textarea {
  resize: vertical;
}

input[type='checkbox'],
input[type='radio'] {
  display: none;
}

input[type='submit'],
input[type='button'],
label,
button,
select {
  cursor: pointer;
}

select::-ms-expand {
  display: none;
}


/*========= font loading ===============*/

html {
  visibility: hidden;
}

html.wf-active {
  visibility: visible;
}

/*================ body ================*/
body {
  font-family: "Noto Sans JP", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
  font-size: 14px;
  letter-spacing: 0.05em;
  color: #333;
  height: 100%;
  display: flex;
  flex-flow: column;
  /*text Protection*/
  -webkit-touch-callout: none;
  -moz-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -khtml-user-select: none;
  background-color:#ffe6e7;
  /*background-image: url(../img/intro/bg.png);*/
}

/*================ main ================*/
.main__wrp {
  flex: 1;
}

/*================ display ================*/
.pc {
  display: block !important;
}

.sp {
  display: none !important;
}

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

  .sp {
    display: block !important;
  }
}

/*================ button =============*/
.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 184px;
  height: 50px;
  padding: 8px 0px;
  color: #fff;
  opacity: 1;
  font-size: 14px;
  white-space: nowrap;
  border-radius: 32px;
  background: linear-gradient(150deg, #E60012, #E60012);
}

.btn:hover{
  background:#E64552;
}

/**btn:hover**/
.btn.slide {
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.btn.slide::after {
  background: rgba(232, 101, 52, 0.6);
  position: absolute;
  top: 0;
  left: 0;
  content: '';
  width: 100%;
  height: 100%;
  transform: scale(0, 1);
  transform-origin: left top;
  transition: .2s cubic-bezier(0.45, 0, 0.55, 1);
  z-index: -1;
}

.btn.slide:hover {
  color: #fff;
}

.btn__space {
  margin: 40px 0 60px 0;
}

.horizontal {
  display: flex;
  justify-content: center;
}

.horizontal .btn {
  min-width: auto;
  width: 100%;
  max-width: 180px;
  margin: 0 1vw;
}

/*================ Header =============*/
header {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 120px;
  text-align: center;
  background: #fff;
}

header .logo {
  width: 200px;
}

/*================ Lead =============*/
.lead__wrp {
  background: #fff;
}

.lead__inner {
  max-width: 660px;
  margin: auto;
  padding: 0px 4.8vw 20px 4.8vw;
  text-align: center;
  font-weight: 700;
  line-height: 2;
}

.lead__inner .btn__space {
  margin: 40px 0 30px 0;
}

/*---Card 767 or lower------*/
@media screen and (max-width: 767px) {
  .lead__wrp .btn__space {
    margin: 40px 0 30px 0;
  }
}

/*================ contents wrp =============*/
.cnt__wrp {
  margin: 0 auto;
  padding: 30px;
}



/*================ Card =============*/
.card {
  position: relative;
  max-width: 640px;
  margin: 10px auto 40px auto;
  padding: 40px;
  background: #fff;
  border-radius: 12px;
  line-height: 1.8;
}


.card__title {
  padding-bottom: 16px;
  font-size: 17px;
  font-weight: 700;
  border-bottom: 1px #EBEBEB solid;
}

/*---Card 767 or lower------*/
@media screen and (max-width: 767px) {

  .cnt__wrp {
    padding: 30px 0;
  }

  .card {
    padding: 50px 4.8vw 0 4.8vw;
    border-radius: 0;
  }
}

/*======================================*/
.unit-lavel {
  position: absolute;
  left: 0;
  right: 0;
  top: -10px;
  margin: auto;
  text-align: center;
}

.unit-lavel span {
  padding: 8px 20px;
  background: #E62E3D;
  color: #fff;
  border-radius: 6px;
  font-weight: 700;
}

.unit-inner-board {
  display: inline-block;
  width: 100%;
  background: #ffe6e7;
  border-radius: 6px;
  margin-bottom: 20px;
}

.under-line {
  border-bottom: 4px #fff solid;
}

.head {
  display: block;
  font-size: 21px;
  padding: 20px 0 10px 0;
  text-align: center;
  align-items: center;
  min-height: 56px;
  padding: 10px 20px;
  font-weight: bold;
}

.head img {
  margin-right: 8px;
}

.mt-16 {
  margin-top: 16px;
}

.pb-0 {
  padding-bottom: 0;
}

.unit-inner-board-text {
  padding: 12px 20px 20px 20px;
  font-size: 12px;
}

.unit-inner-board-text strong {
  font-weight: bold;
  font-size: 16px;
}

.center__wrp {
  text-align: center;
}

.flex {
  display: flex;
  flex-wrap: wrap;
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  justify-content: space-between;
}

.unit-inner-board.half {
  width: 48%;
}

.head.small {
  font-size: 14px;
  display: flex;
  align-items: center;
  min-height: 56px;
  padding: 10px 20px;
  font-weight: bold;
}

.border {
  margin: 10px 0;
  padding: 20px;
  text-align: center;
  font-weight: bold;
  border: 1px #ccc solid;
}

.nyukai-list {
  font-weight: bold;
}

.nyukai-list dt {
  float: left;
}

.nyukai-list dd {
  margin: 0 0 30px 40px;
}

.nyukai-list span {
  width: 32px;
  height: 32px;
  background: #E62E3D;
  color: #fff;
  font-weight: bold;
  border-radius: 50%;
  display: inline-block;
  text-align: center;
  padding: 4px 0 0 0;
  margin: 0 8px 8px 0;
}

.text {
  width: 66%;
  font-weight: bold;
  font-size: 13px;
}

.line-btn {
  margin: 10px 0 16px 0;
}

.obi {
  margin: 12px 0 8px 0;
  padding: 4px;
  background: #E7E7E7;
}

.flex-nowrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: nowrap;
}

.border__line {
  margin: 10px 0;
  padding: 6px;
  text-align: center;
  border: 1px #ccc solid;
  font-size: 10px;
  text-align: left;
  line-height: 1.4;
}

.arrow {
  display: flex;
  align-items: center;
  font-size: 10px;
  color: #999;
}

.text {
  width: 66%;
  font-weight: bold;
  font-size: 13px;
}

.image {
  width: 32%;
}

.long-text {
  font-size: 12px;
  line-height: 1.4;
  text-align: left;
}

.note {
  margin-top: 10px;
  font-size: 10px;
}

.card.space-s {
  padding: 20px;
}

/*---contents 767 or lower------*/
@media screen and (max-width: 767px) {
  .unit-inner-board.half {
    width: 100%;
  }

  .nyukai-list dt {
    float: none;
    text-align: center;
    margin-top: 20px;
  }

  .nyukai-list dd {
    margin: 0;
  }

  .text {
    width: 100%;
    margin-top: 0px;
  }

  .line-btn {
    margin: 10px auto 20px auto;
  }

  .image {
    width: 100%;
    max-width: 150px;
    margin: 20px auto 0 auto;
  }

  .btn__space {
    margin: 40px 12px 60px 12px;
  }
}

/*================ Footer =============*/

footer {
  width: 100%;
  padding: 32px;
  text-align: center;
  background: #fff;
}

.footer__nav {
  display: flex;
  justify-content: center;
}

.footer__nav li {
  margin: 0 8px 16px 8px;
  font-size: 14px;
}

.copy {
  font-size: 10px;
  color: #8D8D8D;
  margin-top: 24px;
}

footer .sns__inner{
  margin: 20px 0;
}

footer .sns__inner .sns-icon {
  display: inline-flex;
  width: 30px;
  height: 30px;
  margin: 0 6px;
  fill: #E60012;
}

/*langage*/
.lang__wrp {
  display: none;
}
/*.lang__wrp {
  position: relative;
  display: inline-block;
}*/

.lang__wrp select {
  width: auto;
  background: #fff;
  border: 1px #c5c5c5 solid;
  padding: 2px 16px 6px 26px;
  font-size: 11px !important;
  line-height: 1.6;
  color: #7d7d7d;
  border-radius: 6px;
}


.lang__wrp::before {
  content: url(../img/lang.svg);
  z-index: 1;
  position: absolute;
  left: 6px;
  top: 13%;
  vertical-align: middle;
  transform: scale(0.7);
}

.lang__wrp::after {
  content: " ";
  width: 5px;
  height: 5px;
  border-top: 1px solid #c5c5c5;
  border-right: 1px solid #c5c5c5;
  -webkit-transform: rotate(45deg);
  position: absolute;
  top: calc(50% - 4px);
  right: 8px;
  transform: rotate(135deg);
}

footer .lang__wrp {
  margin: 0 0 16px 0;
}


/*---footer 767 or lower------*/
@media screen and (max-width: 767px) {
  footer {
    height: auto;
    padding: 20px;
  }



  .footer__nav {
    display: block;
    line-height: 2;
  }

  .footer__nav li {
    display: inline;
  }

  .turn::after {
    content: "\A";
    white-space: pre;
  }
}
