@charset "UTF-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  color: #222;
  background: #fff;
  font-size: 16px;
  font-family: "Noto Sans JP", sans-serif;
  font-feature-settings: "palt";
  letter-spacing: 0.07em;
  line-height: 1.8;
  word-wrap: break-word;
}

@font-face {
  font-family: DINPro-Bold;
  src: url("../fonts/DINPro-Bold.woff") format("woff"), url("../fonts/DINPro-Bold.ttf") format("truetype");
}
@font-face {
  font-family: DINPro-Regular;
  src: url("../fonts/DINPro-Regular.woff") format("woff"), url("../fonts/DINPro-Regular.ttf") format("truetype");
}
.sp {
  display: block;
}
@media only screen and (min-width: 768px) {
  .sp {
    display: none;
  }
}

.pc {
  display: none;
}
@media only screen and (min-width: 768px) {
  .pc {
    display: block;
  }
}

a {
  color: #222;
  text-decoration: none;
  transition: 0.4s;
}
a:hover {
  color: #dc650f;
}
a:hover img {
  opacity: 0.8;
}

.heading01 {
  font-family: DINPro-Bold, sans-serif;
  font-size: 12px;
  letter-spacing: 0.2em;
}
@media only screen and (min-width: 768px) {
  .heading01 {
    font-size: 16px;
  }
}
.heading01 .logo {
  height: auto;
  padding-top: 0.3em;
  width: 80px;
}
@media only screen and (min-width: 768px) {
  .heading01 .logo {
    padding-top: 0;
    width: auto;
  }
}

.heading02 {
  font-size: 22px;
  line-height: 1.7;
  margin-bottom: 1.1em;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .heading02 {
    font-size: 36px;
  }
}
.heading02 span.size-s {
  font-size: 18px;
}
@media only screen and (min-width: 768px) {
  .heading02 span.size-s {
    font-size: 28px;
  }
}

.heading03 {
  font-size: 20px;
  margin-bottom: 0.9em;
}
@media only screen and (min-width: 768px) {
  .heading03 {
    font-size: 28px;
  }
}

.heading04 {
  margin-bottom: 0.7em;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .heading04 {
    font-size: 20px;
  }
}

.main-cont {
  /* slide */
}
.main-cont img {
  height: auto;
  max-width: 100%;
}
.main-cont figure {
  padding: 0;
  margin: 0 0 1.5em 0;
}
.main-cont figure img {
  margin: 0 auto;
}
.main-cont p {
  margin-top: 1.5em;
}
.main-cont ul {
  list-style: disc;
  margin: 1.5em 0 0 1.5em;
}
.main-cont ul ::marker {
  color: #ff7326;
}
.main-cont ul.check-list {
  font-weight: bold;
  font-size: 18px;
  list-style: none;
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .main-cont ul.check-list {
    font-size: 24px;
  }
}
.main-cont ul.check-list .check-list-item {
  background: url("../images/icon_check02.svg") left 0.8em no-repeat;
  background-size: 18px;
  padding: 0.35em 0 0.35em 1.5em;
}
@media only screen and (min-width: 768px) {
  .main-cont ul.check-list .check-list-item {
    background-size: 22px;
  }
}
.main-cont ol {
  position: relative;
  margin: 0;
  padding: 0;
}
.main-cont ol li {
  list-style: none;
  list-style-position: outside;
  margin: 0;
  padding-left: 1.25em;
}
.main-cont ol li span {
  position: absolute;
  left: 0;
  margin: 0;
}
.main-cont .slick-slider {
  padding-top: 20px;
}
.main-cont .slick-dots {
  top: -25px;
  bottom: auto;
}
.main-cont .slick-dots li {
  width: 10px;
}
.main-cont .slick-dots li button:before {
  font-size: 11px;
  content: "■";
  opacity: 1;
  color: #fff;
  text-shadow: 1px 1px 0 #ccc, -1px 1px 0 #ccc, 1px -1px 0 #ccc, -1px -1px 0 #ccc;
  width: 10px;
  margin-left: 5px;
}
.main-cont .slick-dots li.slick-active button:before {
  content: "■";
  opacity: 1;
  color: #ff7326;
}
.main-cont .slick-prev, .main-cont .slick-next {
  width: 30px;
  height: 30px;
  top: -7px;
  z-index: 100;
}
.main-cont .slick-prev {
  left: -10px;
}
.main-cont .slick-prev::before {
  content: url("../images/arrow_left30.png");
  opacity: 1;
}
.main-cont .slick-next {
  right: -10px;
}
.main-cont .slick-next::before {
  content: url("../images/arrow_right30.png");
  opacity: 1;
}
.main-cont .slick-dots {
  margin: 0;
}
.main-cont .no-margin {
  margin: 0;
}

.container {
  padding: 2em 1em;
  width: 100%;
}
@media only screen and (min-width: 768px) {
  .container {
    padding: 5.9em 3em;
  }
}
.header .container {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0;
}

.flexbox {
  display: -webkit-box;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5em;
  margin: 0 auto;
  width: 100%;
}
@media only screen and (min-width: 1024px) {
  .flexbox {
    gap: 3.2em;
  }
}
@media only screen and (max-width: 767px) {
  .flexbox.sp-one {
    flex-direction: column;
  }
}
@media only screen and (max-width: 1023px) {
  .flexbox.sp-tab-one {
    flex-direction: column;
  }
}
@media only screen and (max-width: 767px) {
  .flexbox.sp-reverce {
    flex-direction: column-reverse;
  }
}
.flexbox .flex-item {
  flex: 1;
}
.flexbox.two-col .flex-item {
  flex: auto;
  width: 42%;
}
.flexbox.point {
  gap: 0.4em;
  margin: 0;
  max-width: 416px;
}
.flexbox.point .flex-item {
  align-items: center;
  background: #fff;
  border: 2px solid;
  display: flex;
  justify-content: center;
  letter-spacing: 0;
  line-height: 1.1;
  padding: 0.5em;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .flexbox.point .flex-item {
    border: 3px solid;
  }
}
.flexbox.point .flex-item .header-txt {
  margin: 0;
}
.flexbox.point .flex-item .size-s {
  font-size: 10px;
}
.flexbox.point .flex-item .size-l {
  font-size: 16px;
}
@media only screen and (min-width: 768px) {
  .flexbox.point .flex-item .size-l {
    font-size: 24px;
  }
}
.flexbox.point .flex-item .txt-orange {
  display: inline-block;
  font-family: DINPro-Bold, sans-serif;
  font-size: 25px;
  margin-top: 0.1em;
}
@media only screen and (min-width: 768px) {
  .flexbox.point .flex-item .txt-orange {
    font-size: 40px;
  }
}
.flexbox.point .flex-item:last-child {
  padding-bottom: 0.4em;
}
.flexbox.point .flex-item:last-child .txt-orange {
  margin-top: 0;
}
.flexbox.ai-c {
  align-items: center;
}

.bg-orange {
  background: #ff7326;
  color: #fff;
  display: inline-block;
  font-size: 0.95em;
  line-height: 1;
  padding: 0.1em 0.2em 0.15em;
}

.txt-orange {
  color: #ff7326;
}

/* header */
.header {
  background: #fff url(../images/bg_main_sp.jpg) center 0 no-repeat;
  background-size: 100%;
}
@media only screen and (min-width: 768px) {
  .header {
    background: url(../images/bg_main.jpg) center 0 no-repeat;
    background-size: cover;
  }
}
.header.container {
  padding-bottom: 2.2em;
  padding-top: 1.5em;
}
@media only screen and (min-width: 768px) {
  .header.container {
    padding: 1.5em 1.5em 4em;
  }
}
@media only screen and (min-width: 1024px) {
  .header.container {
    padding-bottom: 3em;
    padding-top: 3em;
  }
}
.header .sp-tab-one {
  gap: 1em;
}
@media only screen and (min-width: 1024px) {
  .header .sp-tab-one {
    align-items: flex-end;
  }
}
.header .header-copy {
  margin: 0.3em 0 0.4em;
  font-weight: bold;
  font-size: 18px;
}
@media only screen and (min-width: 768px) {
  .header .header-copy {
    font-size: 30px;
  }
}
@media only screen and (min-width: 1024px) {
  .header .header-copy {
    font-size: 34px;
  }
}
.header .header-copy span {
  line-height: 1.2;
}
.header .header-copy span.txt-orange {
  font-size: 26px;
}
@media only screen and (min-width: 768px) {
  .header .header-copy span.txt-orange {
    font-size: 50px;
  }
}
.header .header-copy span.size-l {
  font-size: 22px;
}
@media only screen and (min-width: 768px) {
  .header .header-copy span.size-l {
    font-size: 40px;
  }
}
@media only screen and (min-width: 1024px) {
  .header .header-copy span.size-l {
    font-size: 48px;
  }
}
.header .header-copy span.size-xl {
  font-size: 26px;
  display: inline-block;
  vertical-align: middle;
  padding-bottom: 0.2em;
}
@media only screen and (min-width: 768px) {
  .header .header-copy span.size-xl {
    font-size: 50px;
  }
}
@media only screen and (min-width: 1024px) {
  .header .header-copy span.size-xl {
    font-size: 60px;
  }
}
.header .heading02 {
  font-weight: bold;
  font-size: 22px;
  line-height: 1.3;
  margin-bottom: 10px;
  text-align: left;
}
@media only screen and (min-width: 768px) {
  .header .heading02 {
    font-size: 50px;
  }
}
@media only screen and (min-width: 1220px) {
  .header .heading02 {
    font-size: 50px;
    margin-bottom: 30px;
  }
}
.header .heading02 .size-l {
  font-size: 30px;
}
@media only screen and (min-width: 768px) {
  .header .heading02 .size-l {
    font-size: 64px;
  }
}
.header .heading02 .type01 {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0) 70%, #eaa063 70%, #eaa063 100%);
  font-size: 40px;
  display: inline-block;
  line-height: 1;
  margin: 0.08em 0 0.3em;
  padding-bottom: 5px;
}
@media only screen and (min-width: 768px) {
  .header .heading02 .type01 {
    font-size: 70px;
  }
}
@media only screen and (min-width: 1220px) {
  .header .heading02 .type01 {
    font-size: 84px;
  }
}
.header .heading02 .type01 .size-s {
  font-size: 34px;
}
@media only screen and (min-width: 768px) {
  .header .heading02 .type01 .size-s {
    font-size: 60px;
  }
}
@media only screen and (min-width: 1220px) {
  .header .heading02 .type01 .size-s {
    font-size: 70px;
  }
}
.header .heading02 .type02 {
  color: #ff7326;
  font-size: 30px;
  font-weight: bold;
}
@media only screen and (min-width: 768px) {
  .header .heading02 .type02 {
    font-size: 70px;
  }
}
.header .heading02 .type03 {
  font-size: 18px;
  padding: 0 1.3em;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .header .heading02 .type03 {
    font-size: 30px;
  }
}
@media only screen and (min-width: 1220px) {
  .header .heading02 .type03 {
    font-size: 40px;
    padding: 0 1.3em 0 0.8em;
  }
}
.header .heading02 .type03::before, .header .heading02 .type03::after {
  content: "";
  display: inline-block;
  height: 57px;
  position: absolute;
  top: -0.3em;
  width: 18px;
}
@media only screen and (min-width: 768px) {
  .header .heading02 .type03::before, .header .heading02 .type03::after {
    width: 25px;
  }
}
@media only screen and (min-width: 1220px) {
  .header .heading02 .type03::before, .header .heading02 .type03::after {
    width: 36px;
  }
}
.header .heading02 .type03::before {
  background: url(../images/icon_maincopy-l.svg) no-repeat;
  background-size: 100%;
  left: 0;
}
@media only screen and (min-width: 1220px) {
  .header .heading02 .type03::before {
    left: -0.5em;
  }
}
.header .heading02 .type03::after {
  background: url(../images/icon_maincopy-r.svg) no-repeat;
  background-size: 100%;
  right: 0;
}
.header .heading02 .type03 .size-l {
  font-size: 24px;
}
@media only screen and (min-width: 768px) {
  .header .heading02 .type03 .size-l {
    font-size: 40px;
  }
}
@media only screen and (min-width: 1220px) {
  .header .heading02 .type03 .size-l {
    font-size: 50px;
  }
}
.header .bg-orange:first-child {
  margin-right: 0.1em;
}
.header-txt {
  font-weight: bold;
  font-size: 15px;
  margin: 0.5em 0 1.5em;
  max-width: 250px;
}
@media only screen and (min-width: 768px) {
  .header-txt {
    font-size: 20px;
    max-width: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .header-txt {
    margin: 1.4em 0 2.8em;
  }
}
.header .period {
  font-weight: normal;
  font-size: 10px;
  letter-spacing: 0.07em;
  margin-top: 0.5em;
}
@media only screen and (min-width: 768px) {
  .header .period {
    font-size: 12px;
    letter-spacing: auto;
    margin: 2em 0 0;
  }
}

.cont01 {
  background: url("../images/bg_cont01.png") center no-repeat;
  background-size: 200%;
  padding-bottom: 0;
}
@media only screen and (min-width: 768px) {
  .cont01 {
    background: url("../images/bg_cont01.png") center 5em no-repeat;
    background-size: 100%;
  }
}
@media only screen and (min-width: 1024px) {
  .cont01 {
    padding-top: 11.8em;
  }
}
.cont01 .heading02 {
  margin-bottom: 1em;
}
@media only screen and (min-width: 768px) {
  .cont01 .heading02 {
    letter-spacing: 0.16em;
  }
}
.cont01 .check-list {
  gap: 1em;
  justify-content: center;
  max-width: 1000px;
}
@media only screen and (min-width: 1024px) {
  .cont01 .check-list {
    gap: 1em 3em;
  }
}
.cont01 .check-list-item {
  text-align: center;
  width: 220px;
}
@media only screen and (min-width: 768px) {
  .cont01 .check-list-item {
    width: 30%;
  }
}
.cont01 .check-list-txt {
  background: #ff7325;
  border-radius: 50px;
  color: #fff;
  font-weight: bold;
  line-height: 1.5;
  margin: -3.4em auto 0;
  padding: 0.5em;
  position: relative;
}
@media only screen and (min-width: 1024px) {
  .cont01 .check-list-txt {
    font-size: 24px;
    max-width: 283px;
    padding: 0.2em;
  }
}

.cont02 {
  background: #f4f3ef;
}
.cont02 .flexbox {
  max-width: 1000px;
}
.cont02 .flex-item {
  background: #fff;
  flex: auto;
  width: 46%;
}
.cont02 .ttl-box {
  height: 200px;
  position: relative;
}
.cont02 .ttl-box.bg01 {
  background: url("../images/img_cont02-01.webp") center;
  background-size: cover;
}
.cont02 .ttl-box.bg02 {
  background: url("../images/img_cont02-02.webp") center;
  background-size: cover;
}
.cont02 .ttl-box.bg03 {
  background: url("../images/img_cont02-03.webp") center;
  background-size: cover;
}
.cont02 .ttl-box.bg04 {
  background: url("../images/img_cont02-04.webp") center;
  background-size: cover;
}
.cont02 .ttl-txt {
  bottom: 0;
  color: #fff;
  font-weight: bold;
  line-height: 1.7;
  margin: 0.8em 1.2em;
  position: absolute;
  text-shadow: #000 0 0 7px;
}
@media only screen and (min-width: 768px) {
  .cont02 .ttl-txt {
    font-size: 18px;
  }
}
.cont02 .txt-name {
  top: 0.7em;
  color: #fff;
  font-weight: bold;
  margin: 0;
  position: absolute;
  right: 1em;
  text-shadow: #000 0 0 7px;
}
@media only screen and (min-width: 768px) {
  .cont02 .txt-name {
    font-size: 18px;
  }
}
.cont02 .annotation {
  font-size: 10px;
  margin: 0;
  padding: 0.5em 0.8em;
}
.cont02 .txt-box {
  padding: 1.8em 1.2em;
}
.cont02 .cont02-fig {
  text-align: center;
  margin: 0;
}
.cont02 .cont02-fig img {
  display: block;
}
.cont02-b.flexbox {
  justify-content: center;
  margin-top: 0.4em;
}
@media only screen and (max-width: 767px) {
  .cont02-b .cont02-b-inner p:first-child {
    margin: 0;
  }
}
.cont02-b p, .cont02-b ul {
  font-weight: bold;
  font-size: 18px;
}
@media only screen and (min-width: 768px) {
  .cont02-b p, .cont02-b ul {
    font-size: 24px;
  }
}
.cont02-b .bottom-txt {
  line-height: 1.4;
  margin-top: 1.4em;
}
@media only screen and (min-width: 768px) {
  .cont02-b .bottom-txt {
    font-size: 28px;
  }
}
.cont02-b .size-l {
  font-size: 22px;
}
@media only screen and (min-width: 768px) {
  .cont02-b .size-l {
    font-size: 36px;
  }
}

.cont03 {
  background: #f4f3ef;
}
@media only screen and (min-width: 768px) {
  .cont03.container {
    padding-bottom: 3em;
  }
}
.cont03-inner {
  background: #fff;
  margin: 0 auto 1em;
  max-width: 998px;
  padding: 0 1em 2em;
}
@media only screen and (min-width: 768px) {
  .cont03-inner {
    margin: 0 auto 3.5em;
    padding: 0.6em 3em 2.7em;
  }
}
.cont03 .ttl-box {
  text-align: center;
}
.cont03 .ttl-sub {
  border-bottom: #ff7326 2px solid;
  display: inline-block;
  font-weight: bold;
  line-height: 1.4;
  margin-bottom: 0.8em;
}
@media only screen and (min-width: 768px) {
  .cont03 .ttl-sub {
    font-size: 24px;
    margin-bottom: 1.4em;
  }
}
@media only screen and (min-width: 768px) {
  .cont03 .heading03 {
    margin-bottom: 1.5em;
  }
  .cont03 .heading03.txt-orange {
    margin-bottom: 1em;
  }
}
.cont03 .heading04 {
  margin: 2em 0 0.9em;
  text-align: left;
}
.cont03 .heading04.type02 {
  margin: 1.6em 0 1.9em;
  text-align: center;
}
.cont03 .heading04.type02 .txt-orange {
  font-size: 1.2em;
}
.cont03 .reason01 {
  gap: 1em;
}
@media only screen and (min-width: 1024px) {
  .cont03 .reason01 {
    gap: 1.5em;
  }
}
.cont03 .reason01-item {
  background-size: cover;
  display: grid;
  font-weight: bold;
  height: 150px;
  line-height: 2;
  place-items: center;
  text-align: center;
  width: 150px;
}
@media only screen and (min-width: 1024px) {
  .cont03 .reason01-item {
    font-size: 20px;
    height: 200px;
    width: 200px;
  }
}
.cont03 .reason01-item.bg01 {
  background-image: url(../images/img_cont03-06.png);
}
.cont03 .reason01-item.bg02 {
  background-image: url(../images/img_cont03-07.png);
}
.cont03 .reason01-item.bg03 {
  background-image: url(../images/img_cont03-08.png);
}
.cont03 .reason01-item.bg04 {
  background-image: url(../images/img_cont03-09.png);
}
.cont03 .occupation {
  gap: 0;
  justify-content: space-between;
  font-size: 3.4vw;
}
@media only screen and (min-width: 768px) {
  .cont03 .occupation {
    display: none;
  }
}
.cont03 .occupation-item {
  margin-right: 0.3em;
}
.cont03 .occupation-item.color01 {
  color: #ff7324;
}
.cont03 .occupation-item.color02 {
  color: #fc884f;
}
.cont03 .occupation-item.color03 {
  color: #f8a079;
}
.cont03 .occupation-item.color04 {
  color: #ffb294;
}
.cont03 .occupation-item.color05 {
  color: #ffc192;
}
.cont03 .occupation-item.color06 {
  color: #ffd693;
}
.cont03 .introduction {
  gap: 1.5em 1em;
}
@media only screen and (min-width: 1024px) {
  .cont03 .introduction {
    gap: 2em;
    margin-bottom: 1.8em;
  }
}
@media only screen and (max-width: 767px) {
  .cont03 .introduction .flex-item {
    flex: auto;
    width: 42%;
  }
}
.cont03 .introduction figure {
  margin: 0;
}
.cont03 .introduction figure img {
  display: block;
  margin: 0 auto;
}
.cont03 .introduction figcaption {
  font-weight: bold;
  margin-top: 0.9em;
}
@media only screen and (max-width: 767px) {
  .cont03 .cont-b .flexbox,
  .cont03 .cont-c .flexbox {
    gap: 0.8em;
  }
}
.cont03 .cont-b figure,
.cont03 .cont-c figure {
  margin: 0;
}
@media only screen and (max-width: 1023px) {
  .cont03 .cont-b figure,
  .cont03 .cont-c figure {
    max-width: 300px;
  }
}
.cont03 .cont-b .heading04,
.cont03 .cont-c .heading04 {
  margin: 0 0 1em;
}
@media only screen and (min-width: 768px) {
  .cont03 .cont-b .heading04,
  .cont03 .cont-c .heading04 {
    margin: 0 0 1.7em;
  }
}
.cont03 .cont-c .heading03 {
  text-align: center;
}
.cont03 .cont-c .flexbox {
  margin-bottom: 2em;
}
.cont03 .cont-c .flexbox.support {
  margin-bottom: 0;
  max-width: 656px;
}

.cont04-inner {
  margin: 0 auto;
  max-width: 998px;
}
.cont04 .flexbox {
  background: url(../images/bg_line.png) 40px 60px repeat-y;
  background-size: 3px;
  gap: 1em;
  position: relative;
  z-index: 0;
}
@media only screen and (min-width: 768px) {
  .cont04 .flexbox {
    background: url(../images/bg_cont04.svg) center 0 no-repeat;
    background-size: 100%;
    gap: 1.5em;
  }
}
.cont04 .flexbox::before {
  background: #f4f3ef;
  content: "";
  left: 0;
  position: absolute;
  height: 30px;
  top: 0;
  width: 80px;
}
@media only screen and (min-width: 768px) {
  .cont04 .flexbox::before {
    display: none;
  }
}
.cont04 .flexbox::after {
  background: #f4f3ef;
  bottom: 0;
  content: "";
  left: 0;
  position: absolute;
  height: 80px;
  width: 80px;
  z-index: -1;
}
@media only screen and (min-width: 768px) {
  .cont04 .flexbox::after {
    display: none;
  }
}
.cont04 .flex-item {
  padding-left: 90px;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .cont04 .flex-item {
    padding-left: 0;
  }
}
.cont04 .heading03 {
  font-size: 16px;
  margin: 0;
  padding-left: 0.8em;
}
@media only screen and (min-width: 768px) {
  .cont04 .heading03 {
    align-items: center;
    color: #fff;
    display: flex;
    font-size: 14px;
    justify-content: center;
    height: 5.4vw;
    margin: 0 0 0 1em;
    padding: 0;
  }
}
@media only screen and (min-width: 820px) {
  .cont04 .heading03 {
    font-size: 15px;
    height: 5.8vw;
  }
}
@media only screen and (min-width: 1024px) {
  .cont04 .heading03 {
    font-size: 18px;
  }
}
@media only screen and (min-width: 1108px) {
  .cont04 .heading03 {
    height: auto;
    margin: 0.8em 0 1em 0.8em;
  }
}
.cont04 .cont04-fig {
  align-items: center;
  display: flex;
  justify-content: center;
  left: 0;
  margin: 0;
  position: absolute;
  top: 0.7em;
}
@media only screen and (min-width: 768px) {
  .cont04 .cont04-fig {
    height: 140px;
    position: static;
  }
}
.cont04 p {
  border-bottom: #d0cdbf 1px solid;
  margin-top: 0.4em;
  padding: 0 0 1em 0.8em;
}
@media only screen and (min-width: 768px) {
  .cont04 p {
    border: none;
    padding: 0;
  }
}
.cont04 p.no-border {
  border: none;
  padding-bottom: 0;
}

.cont05 {
  background: #f4f3ef;
}
.cont05 .heading02 {
  margin-bottom: 0.2em;
}
.cont05 .accordion-item {
  border-bottom: 2px solid #d0cdbf;
  margin: 0 auto;
  max-width: 998px;
}
.cont05 .accordion-item .accordion-header {
  align-items: center;
  cursor: pointer;
  display: flex;
  font-weight: bold;
  justify-content: space-between;
  line-height: 1.6;
  padding: 1em 0 1em 2em;
  position: relative;
}
@media only screen and (min-width: 768px) {
  .cont05 .accordion-item .accordion-header {
    font-size: 18px;
    padding: 1.5em 0 1.5em 2.8em;
  }
}
.cont05 .accordion-item .accordion-header::before {
  content: "Q.";
  font-family: DINPro-Bold, sans-serif;
  font-size: 24px;
  left: 0;
  position: absolute;
  top: 0.4em;
}
@media only screen and (min-width: 768px) {
  .cont05 .accordion-item .accordion-header::before {
    font-size: 30px;
    top: 0.6em;
  }
}
.cont05 .accordion-item .accordion-header::after {
  transform: translateY(-25%) rotate(45deg);
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-bottom: 2px solid #b4ad8a;
  border-right: 2px solid #b4ad8a;
  content: "";
  transition: transform 0.3s;
}
.cont05 .accordion-item .accordion-content {
  height: 0;
  overflow: hidden;
  padding-left: 2em;
  position: relative;
  opacity: 0;
  transform: translateY(-10px);
  transition: height 0.2s ease, opacity 0.2s ease, transform 0.2s ease;
}
@media only screen and (min-width: 768px) {
  .cont05 .accordion-item .accordion-content {
    padding-left: 3.2em;
  }
}
.cont05 .accordion-item .accordion-content::before {
  color: #ff7326;
  content: "A.";
  font-family: DINPro-Bold, sans-serif;
  font-size: 24px;
  left: 0;
  position: absolute;
  top: -0.3em;
}
@media only screen and (min-width: 768px) {
  .cont05 .accordion-item .accordion-content::before {
    font-size: 30px;
    top: -0.5em;
  }
}
.cont05 .accordion-item .accordion-content-txt {
  margin: 0 0 1.5em;
}
.cont05 .accordion-item.active .accordion-header::after {
  transform: rotate(225deg);
}
.cont05 .accordion-item.active .accordion-content {
  opacity: 1;
  transform: translateY(0);
}

.cont06 {
  margin: 0 auto;
  max-width: 1140px;
}
@media only screen and (min-width: 768px) {
  .cont06 {
    padding-bottom: 90px;
  }
}
.cont06 .cont06-img, .cont06 .cont06-ttl {
  margin: 0;
  text-align: center;
}
.cont06 .cont06-ttl {
  color: #ff7326;
  font-size: 16px;
  margin: 12px 0;
}
.cont06 .cont06-txt {
  background: #fff;
  border-radius: 10px;
  font-size: 14px;
  margin: 0;
  padding: 1em;
}
@media only screen and (min-width: 768px) {
  .cont06 .cont06-txt {
    min-height: 360px;
  }
}
@media only screen and (min-width: 900px) {
  .cont06 .cont06-txt {
    min-height: 310px;
  }
}
@media only screen and (min-width: 1000px) {
  .cont06 .cont06-txt {
    min-height: 260px;
  }
}
@media only screen and (min-width: 1100px) {
  .cont06 .cont06-txt {
    min-height: 210px;
  }
}
.cont06 ul {
  margin: 0;
}
@media only screen and (min-width: 768px) {
  .cont06 ul.all-slide {
    padding: 0;
  }
}
.cont06 ul.all-slide li {
  padding-bottom: 10px;
}
.cont06 ul.all-slide li div {
  background: #ffedcf;
  border-radius: 10px;
  box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.2);
  margin: 0 25px;
  overflow: hidden;
  padding: 10px;
}

.cta-box {
  background: rgba(0, 0, 0, 0.1);
  bottom: 0;
  position: fixed;
  width: 100%;
}

.cta-box-bt {
  align-items: center;
  background: #ff7326;
  border: #fff 2px solid;
  border-radius: 35px;
  box-shadow: 0px 0px 4.1px 0.9px rgba(0, 0, 0, 0.3);
  color: #fff;
  display: flex;
  font-weight: bold;
  font-size: 18px;
  justify-content: center;
  margin: 0.5em auto;
  max-width: 480px;
  padding: 0.4em;
  width: 90%;
}
@media only screen and (min-width: 768px) {
  .cta-box-bt {
    background: #ff7326;
    font-size: 24px;
  }
}
.cta-box-bt:hover {
  background: #e66700;
  color: #fff;
}
.cta-box-bt::after {
  background: url(../images/icon_arrow.png) no-repeat;
  background-size: cover;
  content: "";
  display: block;
  height: 20px;
  margin-left: 1.2em;
  width: 20px;
}
@media only screen and (min-width: 768px) {
  .cta-box-bt::after {
    height: 24px;
    width: 24px;
  }
}

/* footer */
.footer {
  background: #222;
  color: #fff;
  overflow: hidden;
}
.footer-txt {
  text-align: center;
  color: #fff;
  font-size: 14px;
  letter-spacing: 0.1em;
  margin: 1.2em 1em;
}
@media only screen and (min-width: 768px) {
  .footer-txt {
    font-size: 16px;
    margin: 45px 1em;
  }
}
.footer .copyright {
  font-weight: bold;
  font-size: 12px;
}
@media only screen and (min-width: 768px) {
  .footer .copyright {
    font-size: 14px;
  }
}
.footer a {
  color: #fff;
}
.footer a:hover {
  color: #ff7326;
}

.form-background {
  background-color: #ffe1ab;
  border-radius: 1.5em;
  margin-top: 4em;
  padding: 3em 1.5em 1.5em;
}
@media only screen and (min-width: 1024px) {
  .form-background {
    margin: 0 0 0 auto;
    max-width: 475px;
  }
}

.form-box {
  border: #f2a000 10px solid;
  max-width: 1100px;
  margin: 80px auto 0;
  padding: 0;
  position: relative;
  text-align: center;
}
@media only screen and (min-width: 768px) {
  .form-box {
    margin: 70px auto 0;
    padding: 20px 0;
  }
}

.form-bubble {
  background: #e66700;
  border: 2px solid #fff;
  box-shadow: 0 0 9px rgba(0, 0, 0, 0.4);
  color: #FFFFFF;
  font-size: 14px;
  font-weight: bold;
  left: 0;
  letter-spacing: 0.05em;
  margin: 0 auto;
  padding: 0.6em;
  position: absolute;
  right: 0;
  text-align: center;
  top: -68px;
  width: max-content;
}
@media only screen and (min-width: 768px) {
  .form-bubble {
    font-size: 19px;
    letter-spacing: 0.12em;
    top: -76px;
  }
}

.weight-normal {
  font-weight: normal;
}

.form-bubble:after, .form-bubble:before {
  border: solid transparent;
  content: "";
  height: 0;
  left: 50%;
  pointer-events: none;
  position: absolute;
  top: 100%;
  width: 0;
}

.form-bubble:after {
  border-bottom-width: 8px;
  border-color: rgba(242, 160, 2, 0);
  border-left-width: 8px;
  border-right-width: 8px;
  border-top-color: #e66700;
  border-top-width: 8px;
  margin-left: -8px;
}

.form-bubble:before {
  border-bottom-width: 10px;
  border-color: rgba(255, 15, 0, 0);
  border-left-width: 10px;
  border-right-width: 10px;
  border-top-color: #fff;
  border-top-width: 10px;
  margin-left: -10px;
  margin-top: 2px;
}

iframe {
  width: 100%;
  max-width: 92%;
}
