@charset "UTF-8";
/*====================
{{パソコンを基本設計にする}}
 - 〜479px：SP縦
 - 480px〜599px：SP横
 - 600px〜959px：タブレット
 - 960px〜1279px：小型PC
 - 1280px〜：大型PC
====================*/
.faderight {
  opacity: 0;
  transform: translateX(6vw);
}

.faderight[data-scroll] {
  transition: 1s ease-in-out;
}

.faderight[data-scroll="in"] {
  opacity: 1;
  transform: translateX(0);
}

.faderight[data-scroll="out"] {
  opacity: 0;
  transform: translateX(6vw);
}

.fadeleft {
  opacity: 0;
  transform: translateX(-6vw);
}

.fadeleft[data-scroll] {
  transition: 1s ease-in-out;
}

.fadeleft[data-scroll="in"] {
  opacity: 1;
  transform: translateX(0);
}

.fadeleft[data-scroll="out"] {
  opacity: 0;
  transform: translateX(-6vw);
}

.fadeup {
  opacity: 0;
  transform: translateY(5vh);
}

.fadeup[data-scroll] {
  transition: 0.6s ease-in;
}

.fadeup[data-scroll="in"] {
  opacity: 1;
  transform: translateY(0);
}

.fadeup[data-scroll="out"] {
  transform: translateY(5vh);
}

@keyframes updown {
  0%,
  40%,
  100% {
    transform: translateY(0);
  }
  70% {
    transform: translateY(-2vh);
  }
}

@keyframes bigsmall {
  0%,
  100%,
  20%,
  50%,
  80% {
    transform: scale(1);
  }
  40% {
    transform: scale(1.2);
  }
  60% {
    transform: scale(1.1);
  }
}

.bigsmall {
  animation: bigsmall2 2s linear 1.6s infinite normal;
}

@keyframes rotate1 {
  0%,
  50%,
  100% {
    transform: rotate(0deg) translateY(0) translateX(0);
  }
  25% {
    transform: rotate(-1deg) translateY(0.3vh) translateX(-1vw);
  }
  75% {
    transform: rotate(1deg) translateY(0.3vh) translateX(1vw);
  }
}

@keyframes open {
  30% {
    opacity: 1;
    transform: scale(1.5);
  }
  40%,
  60%,
  80% {
    opacity: 1;
    transform: scale(1);
  }
  50% {
    opacity: 1;
    transform: scale(1.4);
  }
  50% {
    opacity: 1;
    transform: scale(1.2);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}

.fade_open {
  transform: scale(0);
  opacity: 0;
  animation: open 2s cubic-bezier(0.4, 0, 0.2, 1) 0s forwards;
}

@keyframes open_opacity {
  100% {
    opacity: 1;
  }
}

.open_opacity {
  opacity: 0;
  animation: open_opacity 2s cubic-bezier(0.4, 0, 0.2, 1) 0.2s forwards;
}

@keyframes mergo {
  0% {
    transform: scale(2);
    opacity: 0;
  }
  40% {
    transform: scale(1);
  }
  55% {
    transform: scale(1.2);
  }
  70% {
    transform: scale(1);
  }
  85% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.mergo[data-scroll="in"] {
  animation: mergo 1.2s ease 0.5s 1 normal;
}

html {
  /* ルートのフォントサイズを10pxに設定 */
  font-size: 62.5%;
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media screen and (max-width: 960px) {
  html {
    font-size: 50%;
  }
}

@media screen and (max-width: 599px) {
  html {
    font-size: 40%;
  }
}

body {
  font-size: 1.6em;
  width: 100%;
  margin: 0;
  padding: 0;
  color: #000;
  font-family: "Noto Sans JP", YuGothic, "Yu Gothic", "Yu Gothic UI", "ヒラギノ角ゴシック", "Hiragino Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-feature-settings: "palt";
}

.contents_wrap {
  width: 100%;
  overflow: hidden;
}

/* ---------------------------------------- 
 - 共通
---------------------------------------- */
h1,
h2,
h3,
h4,
p {
  margin-block-start: 0;
  margin-block-end: 0;
  margin-inline-start: 0;
  margin-inline-end: 0;
}

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

.imgw {
  display: block;
  width: 100%;
  height: auto;
}

.imgh {
  display: block;
  width: auto;
  height: 100%;
}

.pc {
  display: block;
}

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

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

.tab {
  display: none;
}

@media screen and (max-width: 960px) {
  .tab {
    display: block;
  }
}

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

.sp {
  display: none !important;
}

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

@media screen and (max-width: 599px) {
  .sp {
    display: block !important;
  }
}

.no_sp {
  display: block;
}

@media screen and (max-width: 960px) {
  .no_sp {
    display: block;
  }
}

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

/* ---------------------------------------- 
 - 共通
---------------------------------------- */
.mov_wrap {
  position: relative;
  width: 90%;
  max-width: 1000px;
  margin: 30px auto 0;
  box-shadow: 0px 0px 15px RGBA(0, 0, 0, 0.3);
  z-index: 0;
}

@media screen and (max-width: 599px) {
  .mov_wrap {
    width: 92%;
    margin: 20px auto 0;
  }
}

.mov_wrap:before {
  content: "";
  display: block;
  padding-top: 56.25%;
}

.mov_wrap iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ---------------------------------------- 
 - 個別
---------------------------------------- */
@keyframes scroll_bar {
  0% {
    height: 0%;
  }
  100% {
    height: 100%;
  }
}

.header {
  height: 100px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
}

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

.header__inner {
  max-width: 1000px;
  margin: 0 auto;
  height: 100%;
  display: -webkit-flex;
  display: flex;
  vertical-align: middle;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: unset;
  justify-content: unset;
}

.header__btn1 {
  margin: 0 10px 0 auto;
}

.header__btn2 {
  margin: 0;
}

.sec1 {
  background-image: url(../image/bg1.png?b5_1);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
  padding: 110px 0 0;
}

@media screen and (max-width: 960px) {
  .sec1 {
    padding: 140px 0 0;
  }
}

@media screen and (max-width: 599px) {
  .sec1 {
    padding: 1% 0 0;
  }
}

.sec1__logo {
  width: 40%;
  margin: 0 0 0 1%;
}

.sec1__txt1 {
  max-width: 620px;
  width: 86%;
  margin: 0 auto;
}

@media screen and (max-width: 599px) {
  .sec1__txt1 {
    margin: 20px auto 0;
  }
}

.sec1__txt2 {
  max-width: 900px;
  width: 92%;
  margin: 20px auto 0;
}

@media screen and (max-width: 599px) {
  .sec1__txt2 {
    margin: 10px auto 0;
  }
}

.sec1__scrollWrap {
  display: block;
  margin: 30px auto 0;
  width: 60px;
  height: 120px;
  position: relative;
  z-index: 0;
}

@media screen and (max-width: 960px) {
  .sec1__scrollWrap {
    margin: 50px auto 0;
    height: 80px;
  }
}

@media screen and (max-width: 599px) {
  .sec1__scrollWrap {
    margin: 30px auto 0;
    height: 70px;
  }
}

.sec1__scrollBar {
  background-color: #fff;
  width: 2px;
  height: 100%;
  margin: 0 auto;
  animation: scroll_bar 2.2s linear 0s infinite normal;
}

.sec1__scrollTxt {
  position: absolute;
  left: 11px;
  top: 26px;
  transform: rotate(90deg);
  font-size: 1.8rem;
  color: #fff;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: left;
  margin: 0 auto;
  line-height: 1;
}

@media screen and (max-width: 599px) {
  .sec1__scrollTxt {
    left: 20px;
    top: 19px;
  }
}

.sec2 {
  padding: 70px 0;
}

@media screen and (max-width: 599px) {
  .sec2 {
    padding: 30px 0;
  }
}

.sec2__txt1 {
  font-size: 3.3rem;
  color: #000;
  font-weight: bold;
  letter-spacing: 4px;
  text-align: center;
  margin: 0 auto 0;
  line-height: 1.6;
}

.sec2__txt1 span {
  color: #ef2b23;
}

@media screen and (max-width: 599px) {
  .sec2__txt1 {
    letter-spacing: 1px;
    font-size: 2.8rem;
  }
}

.sec2__wrap1 {
  width: 100%;
  margin: 50px auto 0;
}

@media screen and (max-width: 960px) {
  .sec2__wrap1 {
    margin: 40px auto 0;
  }
}

@media screen and (max-width: 599px) {
  .sec2__wrap1 {
    margin: 20px auto 0;
  }
}

.sec2__wrap1Card {
  display: inline-block;
  margin: 0 10px;
  max-width: 200px;
  max-height: 131px;
}

.sec2__wrap1Card img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 131px;
  -webkit-backface-visibility: hidden;
}

@media screen and (max-width: 599px) {
  .sec2__wrap1Card {
    margin: 0 5px;
    height: 70px;
  }
  .sec2__wrap1Card img {
    width: auto;
    height: 100%;
  }
}

.sec3 {
  padding: 50px 0 70px;
  background-color: #fafafa;
}

@media screen and (max-width: 599px) {
  .sec3 {
    padding: 30px 0;
  }
}

.sec3__wrap1 {
  max-width: 1000px;
  width: 92%;
  margin: 0 auto;
  background-color: #284345;
  border-radius: 8px;
  box-shadow: 0px 0px 6px RGBA(0, 0, 0, 0.2);
  padding: 30px 0;
}

@media screen and (max-width: 599px) {
  .sec3__wrap1 {
    padding: 20px 0;
  }
}

.sec3__txt1 {
  font-size: 6.1rem;
  color: #f2a932;
  font-weight: bold;
  letter-spacing: 4px;
  text-align: center;
  margin: 0 auto 0;
  line-height: 1;
}

@media screen and (max-width: 960px) {
  .sec3__txt1 {
    font-size: 5.2rem;
  }
}

@media screen and (max-width: 599px) {
  .sec3__txt1 {
    font-size: 3rem;
    letter-spacing: 1px;
  }
}

.sec3__txt2 {
  font-size: 2rem;
  color: #fff;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
  margin: 20px auto 0;
  line-height: 1;
}

@media screen and (max-width: 599px) {
  .sec3__txt2 {
    line-height: 1.6;
    font-size: 2.2rem;
    margin: 10px auto 0;
  }
}

.sec4 {
  padding: 50px 0 70px;
  background-image: url(../image/bg2.png);
  background-repeat: no-repeat;
  background-size: cover;
  background-position: top;
}

@media screen and (max-width: 960px) {
  .sec4 {
    padding: 40px 0;
  }
}

@media screen and (max-width: 599px) {
  .sec4 {
    padding: 30px 0;
  }
}

.sec4__txt1 {
  font-size: 3.8rem;
  color: #fff;
  font-weight: bold;
  letter-spacing: 3px;
  text-align: center;
  margin: 0 auto 0;
  line-height: 1.6;
}

@media screen and (max-width: 599px) {
  .sec4__txt1 {
    letter-spacing: 1px;
    font-size: 2.4rem;
  }
}

.sec4__txt2 {
  font-size: 1.6rem;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  margin: 20px auto 0;
  line-height: 1.6;
}

@media screen and (max-width: 599px) {
  .sec4__txt2 {
    letter-spacing: 1px;
    font-size: 1.8rem;
  }
}

.form {
  display: block;
  margin: 40px auto 0;
  max-width: 600px;
  width: 92%;
}

@media screen and (max-width: 599px) {
  .form {
    margin: 20px auto 0;
  }
}

.form__inner {
  width: 100%;
  height: 60px;
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: space-between;
}

@media screen and (max-width: 599px) {
  .form__inner {
    height: 50px;
  }
}

.form__inputTxt {
  width: 65%;
  height: 100%;
  padding: 0 0 0 15px;
  border-width: 0;
  font-size: 2rem;
  color: #000;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: left;
  margin: 0 auto 0;
  line-height: 1.6;
}

.form__inputBtn {
  width: 35%;
  height: 100%;
  padding: 0;
  border-width: 0;
  background: -webkit-linear-gradient(58deg, #f2a932, #ef2b23);
  background: linear-gradient(58deg, #f2a932, #ef2b23);
  cursor: pointer;
  font-size: 2.2rem;
  color: #fff;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  margin: 0 auto 0;
  line-height: 1.6;
}

.sec5 {
  padding: 0 0 70px;
}

@media screen and (max-width: 599px) {
  .sec5 {
    padding: 30px 0;
  }
}

.sec5__wrap1 {
  padding: 120px 0 250px;
  margin: 0 auto;
  position: relative;
  z-index: 0;
  overflow: hidden;
}

@media screen and (max-width: 960px) {
  .sec5__wrap1 {
    padding: 40px 0 30px;
  }
}

@media screen and (max-width: 599px) {
  .sec5__wrap1 {
    padding: 0;
  }
}

.sec5__inner {
  width: 92%;
  max-width: 1000px;
  margin: 0 auto;
}

.sec5__txt1 {
  font-size: 6rem;
  color: #000;
  font-weight: bold;
  letter-spacing: 3px;
  text-align: left;
  margin: 0 auto;
  line-height: 1.2;
}

.sec5__txt1 span {
  color: #fb7655;
}

@media screen and (max-width: 599px) {
  .sec5__txt1 {
    font-size: 3.2rem;
    letter-spacing: 2px;
    text-align: center;
  }
}

.sec5__txt2 {
  max-width: 500px;
  width: 50%;
  font-size: 1.6rem;
  color: #000;
  font-weight: 400;
  letter-spacing: 2px;
  text-align: left;
  margin: 50px 0 0;
  line-height: 2;
}

@media screen and (max-width: 960px) {
  .sec5__txt2 {
    font-size: 2rem;
    margin: 30px 0 0;
  }
}

@media screen and (max-width: 599px) {
  .sec5__txt2 {
    width: 100%;
    letter-spacing: 0;
    font-size: 2.2rem;
    line-height: 1.8;
  }
}

.sec5__img1 {
  position: absolute;
  max-width: 740px;
  width: 60%;
  z-index: -1;
  right: 0;
  top: 0;
}

@media screen and (max-width: 960px) {
  .sec5__img1 {
    right: -12%;
  }
}

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

.sec5 .gray_border {
  background-color: #bbbbbb;
  height: 1px;
  max-width: 1000px;
  margin: 70px auto 0;
  width: 92%;
}

@media screen and (max-width: 960px) {
  .sec5 .gray_border {
    margin: 50px auto 0;
  }
}

@media screen and (max-width: 599px) {
  .sec5 .gray_border {
    margin: 30px auto 0;
  }
}

.sec5__txt3 {
  font-size: 6rem;
  color: #000;
  font-weight: bold;
  letter-spacing: 3px;
  text-align: center;
  margin: 50px auto 0;
  line-height: 1.2;
}

.sec5__txt3 span {
  color: #fb7655;
}

@media screen and (max-width: 599px) {
  .sec5__txt3 {
    font-size: 3.2rem;
    letter-spacing: 2px;
  }
}

.sec5__img2 {
  display: block;
  max-width: 1000px;
  width: 92%;
  margin: 60px auto 0;
}

@media screen and (max-width: 599px) {
  .sec5__img2 {
    margin: 30px auto 0;
  }
}

.sec5__txt4 {
  width: 92%;
  font-size: 1.6rem;
  color: #000;
  font-weight: 400;
  letter-spacing: 2px;
  text-align: center;
  margin: 50px auto 0;
  line-height: 2;
}

@media screen and (max-width: 960px) {
  .sec5__txt4 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 599px) {
  .sec5__txt4 {
    letter-spacing: 0;
    text-align: left;
    margin: 30px auto 0;
    font-size: 2.2rem;
    line-height: 1.8;
  }
}

.sec5__img3 {
  max-width: 800px;
  width: 92%;
  margin: 40px auto 0;
}

@media screen and (max-width: 599px) {
  .sec5__img3 {
    margin: 20px auto 0;
  }
}

.sec5__wrap2 {
  background-image: url(../image/bg3.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: right;
}

.sec5__txt5 {
  font-size: 5rem;
  color: #000;
  font-weight: bold;
  letter-spacing: 3px;
  text-align: center;
  margin: 100px auto 0;
  line-height: 1.4;
}

.sec5__txt5 span {
  color: #f2a932;
}

@media screen and (max-width: 960px) {
  .sec5__txt5 {
    font-size: 4rem;
    letter-spacing: 2px;
    margin: 50px auto 0;
  }
}

@media screen and (max-width: 599px) {
  .sec5__txt5 {
    font-size: 2.8rem;
    letter-spacing: 1px;
    margin: 30px auto 0;
  }
}

.sec6 {
  padding: 50px 0 70px;
}

@media screen and (max-width: 599px) {
  .sec6 {
    padding: 1px 0 30px;
  }
}

.sec6__txt1 {
  font-size: 6rem;
  color: #000;
  font-weight: bold;
  letter-spacing: 3px;
  text-align: center;
  margin: 50px auto 0;
  line-height: 1.2;
}

.sec6__txt1 span {
  color: #fb7655;
}

@media screen and (max-width: 960px) {
  .sec6__txt1 {
    font-size: 5rem;
  }
}

@media screen and (max-width: 599px) {
  .sec6__txt1 {
    font-size: 3.2rem;
    letter-spacing: 2px;
    line-height: 1.4;
    margin: 30px auto 0;
  }
}

.sec6__img1 {
  max-width: 1000px;
  width: 94%;
  margin: 50px auto 0;
  box-shadow: 0px 0px 10px RGBA(0, 0, 0, 0.2);
}

@media screen and (max-width: 599px) {
  .sec6__img1 {
    margin: 40px auto 0;
  }
}

.sec6__txt2 {
  width: 92%;
  font-size: 1.6rem;
  color: #000;
  font-weight: 400;
  letter-spacing: 2px;
  text-align: center;
  margin: 50px auto 0;
  line-height: 2;
}

.sec6__txt2 span {
  color: #fb7655;
  font-size: 2rem;
  font-weight: bold;
}

@media screen and (max-width: 960px) {
  .sec6__txt2 {
    font-size: 2rem;
  }
}

@media screen and (max-width: 599px) {
  .sec6__txt2 {
    margin: 30px auto 0;
    text-align: left;
    letter-spacing: 0px;
    font-size: 2.2rem;
    line-height: 1.8;
  }
  .sec6__txt2 span {
    font-size: 2.3rem;
  }
}

.sec6__txt3 {
  font-size: 6rem;
  color: #000;
  font-weight: bold;
  letter-spacing: 3px;
  text-align: center;
  margin: 80px auto 0;
  line-height: 1.2;
}

.sec6__txt3 span {
  color: #fb7655;
  font-size: 9rem;
}

@media screen and (max-width: 960px) {
  .sec6__txt3 {
    font-size: 5rem;
  }
  .sec6__txt3 span {
    font-size: 8rem;
  }
}

@media screen and (max-width: 599px) {
  .sec6__txt3 {
    font-size: 3.2rem;
    letter-spacing: 2px;
    margin: 40px auto 0;
  }
  .sec6__txt3 span {
    font-size: 4rem;
  }
}

.sec6 .gray_border {
  background-color: #bbbbbb;
  height: 1px;
  max-width: 1000px;
  margin: 70px auto 0;
  width: 92%;
}

@media screen and (max-width: 960px) {
  .sec6 .gray_border {
    margin: 50px auto 0;
  }
}

@media screen and (max-width: 599px) {
  .sec6 .gray_border {
    margin: 30px auto 0;
  }
}

.sec6__img2 {
  max-width: 1000px;
  width: 94%;
  margin: 50px auto 0;
}

@media screen and (max-width: 599px) {
  .sec6__img2 {
    margin: 30px auto 0;
  }
}

.sec6__wrap1 {
  margin: 70px auto 0;
  padding: 20px 0 80px;
  background-color: #fafafa;
}

@media screen and (max-width: 599px) {
  .sec6__wrap1 {
    margin: 30px auto 0;
    padding: 1px 0 30px;
  }
}

.sec6__img3 {
  max-width: 660px;
  width: 64%;
  margin: 30px auto 0;
}

@media screen and (max-width: 599px) {
  .sec6__img3 {
    margin: 15px auto 0;
    width: 68%;
  }
}

.sec6 .law_table {
  max-width: 800px;
  width: 90%;
  border-collapse: collapse;
  margin: 50px auto 0;
  border: 1px solid #cccccc;
}

@media screen and (max-width: 599px) {
  .sec6 .law_table {
    border-spacing: 0;
    font-size: 2rem;
    width: 92%;
    margin: 20px auto 0;
  }
}

.sec6 .law_table tr {
  display: table-row;
  vertical-align: inherit;
}

.sec6 .law_table th {
  width: 30%;
  text-align: right;
  font-weight: normal;
  background-color: #fb7655;
  color: #fff;
  font-weight: bold;
}

@media screen and (max-width: 599px) {
  .sec6 .law_table th {
    font-size: 2.2rem;
  }
}

.sec6 .law_table th,
.sec6 .law_table td {
  padding: 10px 20px;
  border: 1px solid #cccccc;
}

.sec6 .law_table th a,
.sec6 .law_table td a {
  color: #fb7655;
}

@media screen and (max-width: 599px) {
  .sec6 .law_table th,
  .sec6 .law_table td {
    text-align: left;
    display: block;
    padding: 5px 10px;
    width: calc(100% - 20px);
  }
}

@media screen and (max-width: 599px) and (max-width: 599px) {
  .sec6 .law_table th,
  .sec6 .law_table td {
    padding: 8px 10px;
  }
}

.sec6__wrap2 {
  margin: 100px auto 0;
}

@media screen and (max-width: 960px) {
  .sec6__wrap2 {
    margin: 50px auto 0;
  }
}

.sec6__wrap3 {
  max-width: 900px;
  width: 92%;
  margin: 30px auto 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}

@media screen and (max-width: 599px) {
  .sec6__wrap3 {
    margin: 15px auto 0;
  }
}

.sec6__card1 {
  width: 30%;
  height: 180px;
  margin: 30px auto 0;
  border-radius: 15px;
  box-shadow: 0px 0px 6px RGBA(0, 0, 0, 0.2);
  display: -webkit-flex;
  display: flex;
  vertical-align: middle;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media screen and (max-width: 599px) {
  .sec6__card1 {
    width: 48%;
    height: 130px;
    margin: 15px auto 0;
    border-radius: 8px;
  }
}

.sec6__cardTxt1 {
  font-size: 2rem;
  color: #fb7655;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  margin: 0 auto 0;
  line-height: 1.3;
}

@media screen and (max-width: 960px) {
  .sec6__cardTxt1 {
    font-size: 2.4rem;
  }
}

.sec6__cardTxt2 {
  font-size: 1.6rem;
  color: #000;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: center;
  margin: 10px auto 0;
  line-height: 1.6;
}

@media screen and (max-width: 960px) {
  .sec6__cardTxt2 {
    font-size: 2rem;
  }
}

.sec6__wrap4 {
  width: 92%;
  box-shadow: 0px 0px 4px RGBA(0, 0, 0, 0.2);
  max-width: 820px;
  background-color: #fff;
  padding: 30px 0 40px;
  border-radius: 8px;
  margin: 40px auto 0;
}

@media screen and (max-width: 599px) {
  .sec6__wrap4 {
    padding: 10px 0 20px;
    margin: 30px auto 0;
  }
}

.sec6__wrap4Txt1 {
  font-size: 2rem;
  color: #000;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  margin: 0 auto 0;
  line-height: 1.6;
}

.sec6__wrap4Txt1 span {
  color: #fb7655;
  font-size: 3rem;
}

@media screen and (max-width: 599px) {
  .sec6__wrap4Txt1 {
    font-size: 3rem;
  }
  .sec6__wrap4Txt1 span {
    font-size: 4rem;
  }
}

.sec6__wrap4Txt2 {
  font-size: 4rem;
  color: #fb7655;
  font-weight: bold;
  letter-spacing: 3px;
  text-align: center;
  margin: 0 auto 0;
  line-height: 1.6;
}

@media screen and (max-width: 599px) {
  .sec6__wrap4Txt2 {
    letter-spacing: 1px;
    font-size: 2.8rem;
  }
}

.sec6__wrap4img1 {
  margin: 20px auto 0;
  width: 80%;
}

.sec6__wrap4Txt3 {
  font-size: 1.6rem;
  color: #000;
  font-weight: bold;
  letter-spacing: 1px;
  text-align: center;
  margin: 20px auto 0;
  line-height: 2.2;
}

@media screen and (max-width: 599px) {
  .sec6__wrap4Txt3 {
    width: 92%;
    font-size: 2rem;
    line-height: 1.8;
    text-align: justify;
    margin: 10px auto 0;
    font-weight: 400;
  }
}

.sec6__wrap5 {
  width: 92%;
  max-width: 820px;
  margin: 30px auto 0;
  padding: 40px 0 50px;
  border-radius: 15px;
  box-shadow: 0px 0px 6px RGBA(0, 0, 0, 0.2);
  background-color: #fff;
}

@media screen and (max-width: 599px) {
  .sec6__wrap5 {
    border-radius: 5px;
    margin: 20px auto 0;
    padding: 20px 0;
  }
}

.sec6__wrap5Txt1 {
  background-color: #fb7655;
  color: #fff;
  max-width: 481px;
  width: 90%;
  margin: 0 auto;
  text-align: center;
  font-size: 3.2rem;
  letter-spacing: 3px;
  font-weight: bold;
  padding: 8px 0;
  box-shadow: 0px 0px 6px RGBA(0, 0, 0, 0.2);
}

@media screen and (max-width: 599px) {
  .sec6__wrap5Txt1 {
    padding: 5px 0;
  }
}

.sec6__wrap5Txt2 {
  margin: 30px auto 0;
  text-align: center;
  font-size: 1.8rem;
  letter-spacing: 1px;
  font-weight: bold;
}

@media screen and (max-width: 599px) {
  .sec6__wrap5Txt2 {
    margin: 20px auto 0;
    font-size: 2.2rem;
  }
}

.sec6__wrap5Txt3 {
  color: #fb7655;
  margin: 40px auto 0;
  text-align: center;
  font-size: 3.2rem;
  letter-spacing: 2px;
  font-weight: bold;
  line-height: 1.6;
}

@media screen and (max-width: 599px) {
  .sec6__wrap5Txt3 {
    margin: 10px auto 0;
    font-size: 2.6rem;
    letter-spacing: 1px;
  }
}

.sec6 .sp_center {
  text-align: center;
}

.sec6__wrap6 {
  max-width: 800px;
  width: 92%;
  margin: 80px auto 0;
  padding: 1px 0 40px;
  border: solid 4px #fb7655;
}

@media screen and (max-width: 599px) {
  .sec6__wrap6 {
    margin: 40px auto 0;
    padding: 1px 0 15px;
    border: solid 2px #fb7655;
  }
}

.sec6__wrap6txt1 {
  background-color: #fb7655;
  color: #fff;
  font-size: 4rem;
  font-weight: bold;
  text-align: center;
  width: fit-content;
  margin: -30px auto 0;
  padding: 0 40px;
}

@media screen and (max-width: 599px) {
  .sec6__wrap6txt1 {
    margin: -17px auto 0;
    padding: 0 16px 1px;
    font-size: 3rem;
  }
}

.sec7 {
  padding: 50px 0 70px;
  background-color: #fafafa;
}

@media screen and (max-width: 599px) {
  .sec7 {
    padding: 30px 0;
  }
}

.sec7__txt1 {
  font-size: 6rem;
  color: #000;
  font-weight: bold;
  letter-spacing: 3px;
  text-align: center;
  margin: 50px auto 0;
  line-height: 1.2;
}

.sec7__txt1 span {
  color: #fb7655;
}

@media screen and (max-width: 960px) {
  .sec7__txt1 {
    font-size: 5rem;
  }
}

@media screen and (max-width: 599px) {
  .sec7__txt1 {
    font-size: 3.2rem;
    letter-spacing: 2px;
    margin: 20px auto 0;
  }
}

.sec7__senko {
  max-width: 1080px;
  margin: 50px auto 0;
  background-color: #fff;
  padding: 30px;
}

@media screen and (max-width: 599px) {
  .sec7__senko {
    margin: 20px auto 0;
    padding: 20px 15px;
    font-size: 1.8rem;
  }
}

.sec7__senko th,
.sec7__senko td {
  padding: 10px 20px;
}

@media screen and (max-width: 599px) {
  .sec7__senko th,
  .sec7__senko td {
    display: block;
    width: 100%;
    padding: 0;
  }
}

.sec7__senko th img,
.sec7__senko td img {
  max-width: 400px;
}

@media screen and (max-width: 599px) {
  .sec7__senko th img,
  .sec7__senko td img {
    width: 92%;
    display: block;
    margin: 0 auto;
  }
}

@media screen and (max-width: 599px) {
  .sec7__senko th .img_senko,
  .sec7__senko td .img_senko {
    width: 60%;
    margin: 20px auto 0;
  }
}

.sec7 .gray_border {
  background-color: #bbbbbb;
  height: 1px;
  max-width: 1000px;
  margin: 70px auto 0;
  width: 92%;
}

@media screen and (max-width: 960px) {
  .sec7 .gray_border {
    margin: 50px auto 0;
  }
}

@media screen and (max-width: 599px) {
  .sec7 .gray_border {
    margin: 30px auto 0;
  }
}

.sec7__txt2 {
  font-size: 3rem;
  color: #000;
  font-weight: bold;
  letter-spacing: 2px;
  text-align: center;
  margin: 50px auto 0;
  line-height: 2;
}

.sec7__txt2 span {
  color: #fb7655;
}

@media screen and (max-width: 960px) {
  .sec7__txt2 {
    font-size: 2.6rem;
    letter-spacing: 1px;
    margin: 30px auto 0;
  }
}

@media screen and (max-width: 599px) {
  .sec7__txt2 {
    font-size: 2.2rem;
    letter-spacing: 1px;
    margin: 20px auto 0;
    line-height: 1.8;
  }
}

.sec7__wrap3 {
  background-color: #fff;
  max-width: 1000px;
  margin: 60px auto 0;
  width: 92%;
  padding: 30px 0;
}

@media screen and (max-width: 599px) {
  .sec7__wrap3 {
    margin: 30px auto 0;
    padding: 15px 0;
  }
}

.sec7__wrap3Inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
}

.sec7__wrap3Inner.coen {
  max-width: 800px;
}

.sec7__img1 {
  width: calc(40% - 20px);
  margin-right: 20px;
}

@media screen and (max-width: 599px) {
  .sec7__img1 {
    width: 40%;
    margin-right: 0;
  }
}

.sec7__img1.coen {
  width: 26%;
}

@media screen and (max-width: 599px) {
  .sec7__img1.coen {
    width: 40%;
  }
}

.sec7__txt3 {
  width: 60%;
  line-height: 1.5;
  display: -webkit-flex;
  display: flex;
  vertical-align: middle;
  -webkit-align-items: center;
  align-items: center;
  -webkit-justify-content: center;
  justify-content: center;
}

@media screen and (max-width: 599px) {
  .sec7__txt3 {
    width: 100%;
    font-size: 1.8rem;
  }
}

.sec7__wrap3Inner2 {
  width: 90%;
  margin: 10px auto 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}

.sec7__img2 {
  width: 55%;
}

.sec7__img3 {
  width: 41%;
}

.sec7__img3.coen {
  width: 42%;
}

.sec8 {
  padding: 50px 0 70px;
}

@media screen and (max-width: 599px) {
  .sec8 {
    padding: 30px 0;
  }
}

.sec8__txt1 {
  background: -webkit-linear-gradient(left, #f2a932, #ef2b23);
  background: linear-gradient(to right, #f2a932, #ef2b23);
  background-clip: text;
  -moz-background-clip: text;
  -webkit-background-clip: text;
  text-fill-color: transparent;
  -moz-text-fill-color: transparent;
  -webkit-text-fill-color: transparent;
  font-size: 4.8rem;
  letter-spacing: 2px;
  font-weight: bold;
  line-height: 1.4;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}

@media screen and (max-width: 960px) {
  .sec8__txt1 {
    font-size: 3.6rem;
  }
}

@media screen and (max-width: 599px) {
  .sec8__txt1 {
    font-size: 3rem;
    letter-spacing: 1px;
  }
}

.sec8__wrap1 {
  max-width: 1000px;
  margin: 60px auto 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-between;
}

@media screen and (max-width: 960px) {
  .sec8__wrap1 {
    width: 90%;
  }
}

@media screen and (max-width: 599px) {
  .sec8__wrap1 {
    margin: 20px auto 0;
  }
}

.sec8__col {
  width: 50%;
}

@media screen and (max-width: 599px) {
  .sec8__col {
    width: 100%;
  }
}

.sec8__txt2 {
  font-size: 1.6rem;
  color: #000;
  font-weight: 400;
  letter-spacing: 1px;
  text-align: left;
  margin: 0 auto 0;
  line-height: 2.2;
}

.sec8__txt2 span {
  font-weight: bold;
}

@media screen and (max-width: 599px) {
  .sec8__txt2 {
    font-size: 2rem;
    line-height: 1.6;
    margin: 15px auto 0;
  }
}

/********* footer **********/
footer {
  text-align: center;
  padding: 20px;
  background-color: #fff;
  color: #000;
}

footer a {
  color: #000;
}

@media screen and (max-width: 599px) {
  footer {
    padding: 10px 0 80px;
  }
}

.footer {
  display: none;
}

@media screen and (max-width: 599px) {
  .footer {
    position: fixed;
    height: 70px;
    width: 100%;
    bottom: 0;
    left: 0;
    display: flex;
    flex-wrap: nowrap;
    flex-direction: row;
    justify-content: space-between;
    z-index: 100;
  }
}

.footer_btn {
  position: fixed;
  display: block;
  width: 26%;
  max-width: 500px;
  bottom: 2%;
  right: 5%;
  opacity: 0;
  transition-duration: 400ms;
  box-shadow: 0px 0px 10px RGBA(0, 0, 0, 0.3);
  animation: updown 1.4s linear 0s infinite normal;
}

.footer_btn.block {
  opacity: 1;
}

@media screen and (max-width: 599px) {
  .footer_btn {
    animation: unset;
    right: 5%;
    bottom: 12px;
    width: 90%;
  }
}
