@charset "UTF-8";
/* ---------------------------------------------------------
A Modern CSS Reset
--------------------------------------------------------- */
@import url("https://fonts.googleapis.com/css2?family=Zen+Kaku+Gothic+New:wght@300;400;500;700;900&display=swap");
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
dl,
dt,
dd,
ol,
ul,
li,
td,
th,
figure,
input,
select,
button,
optgroup,
textarea {
  margin: 0;
  padding: 0;
}

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

ul[role=list],
ol[role=list] {
  list-style: none;
}

li {
  list-style: none;
}

html:focus-within {
  scroll-behavior: smooth;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

a:not([class]) {
  -webkit-text-decoration-skip: ink;
  text-decoration-skip-ink: auto;
}

img,
picture {
  max-width: 100%;
  display: block;
}

input,
button,
textarea,
select {
  font: inherit;
}

@media (prefers-reduced-motion: reduce) {
  html:focus-within {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    -webkit-animation-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    -webkit-animation-iteration-count: 1 !important;
    animation-iteration-count: 1 !important;
    -webkit-transition-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
/* ---------------------------------------------------------
ここまでリセット
--------------------------------------------------------- */
/* ---------------------------------------------------------
config
--------------------------------------------------------- */
@media screen and (max-width: 749px) {
  [data-sc-pc] {
    display: none !important;
  }
}

@media print, screen and (min-width: 750px) {
  [data-sc-sp] {
    display: none !important;
  }
}

/* ---------------------------------------------------------
config
--------------------------------------------------------- */
html {
  font-size: 0.86vh;
}
@media (max-width: 750px) {
  html {
    font-size: 1.792vw;
  }
}
body {
  font-family: "Zen Kaku Gothic New", sans-serif;
  line-height: 2;
  color: #754C24;
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  word-break: break-all;
}

img {
  border-style: none;
  width: 100%;
  max-width: 100%;
  height: auto;
  vertical-align: bottom;
  -o-object-fit: cover;
  object-fit: cover;
}

a,
button {
  outline: 0;
  text-decoration: none;
  color: inherit;
  background-color: transparent;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  opacity: 1;
}

a:hover,
button:hover {
  cursor: pointer;
  opacity: 0.7;
}

a img,
button img {
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

a img:hover,
button img:hover {
  -webkit-filter: brightness(110%);
  filter: brightness(110%);
}

/* ---------------------------------------------------------
フレックス
--------------------------------------------------------- */
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  /* align-items: center; */
}

@media screen and (max-width: 749px) {
  .row {
    display: block;
  }
}
.row > * {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

/* ---------------------------------------------------------
ヘッダー
--------------------------------------------------------- */
header.pcHeader {
  position: fixed;
  height: 4em;
  width: 100%;
  z-index: 1000;
}

.logo {
  position: absolute;
  top: 2rem;
  left: 1rem;
  width: 10rem;
}

@media screen and (max-width: 749px) {
  .logo {
    /* opacity: 0;  */
    -webkit-transition: opacity 0.5s ease-in-out;
    transition: opacity 0.5s ease-in-out;
    width: 8rem;
  }
  .logo.visible {
    opacity: 1;
  }
}
/* ---------------------------------------------------------
ナビ
--------------------------------------------------------- */
.navToggle {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1000;
  width: 6.6rem;
  height: 6.6rem;
  cursor: pointer;
  background-color: #FDD300;
  border-radius: 0 0 0 10px;
}

.navToggle span {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 50%;
  height: 3px;
  background: #fff;
  -webkit-transition: 0.3Ns;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  border-radius: 5px;
}

.navToggle span.bar01 {
  top: 30%;
}

.navToggle span.bar02 {
  top: 50%;
}

.navToggle span.bar03 {
  top: 70%;
}

.navToggle.active .bar01 {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.navToggle.active .bar02 {
  opacity: 0;
}

.navToggle.active .bar03 {
  top: 50%;
  -webkit-transform: translate(-50%, -50%) rotate(135deg);
  transform: translate(-50%, -50%) rotate(135deg);
}

.navWrap {
  font-size: 2.5rem;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  font-weight: 500;
  line-height: 3;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: fixed;
  top: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background: #FFFFDE;
  z-index: 999;
}

.navWrap {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}
.navWrap.is-open {
  height: 100vh;
}

@media print, screen and (min-width: 750px) {
  .navWrap {
    font-size: 2rem;
    width: 33.3%;
  }
}
.navWrap nav {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  width: 100%;
}

.navWrap .inul {
  padding-left: 0.7em;
  margin-bottom: 0.7em;
  margin-top: 0.7em;
}
.navWrap .inul li {
  line-height: 1.6;
}

.navWrap li {
  list-style: none;
  text-align: left;
  line-height: 2.5;
  font-size: 1.5rem;
  margin-bottom: 0.5em;
}

.navWrap .webyoyaku {
  width: 80%;
  margin-top: 2em;
}

@media print, screen and (min-width: 750px) {
  .navWrap .webyoyaku {
    font-size: 2rem;
    width: 20em;
  }
}
/* ---------------------------------------------------------
トップへ戻る
--------------------------------------------------------- */
#page_top {
  width: 4rem;
  height: 4rem;
  position: fixed;
  right: 2rem;
  bottom: 2rem;
  /* background: #e1e1e1; */
  opacity: 0.6;
}

#page_top a {
  /* position: relative; */
  display: block;
  width: 5rem;
  height: 5rem;
  text-decoration: none;
}

/* #page_top a::before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  content: "\f106";
  font-size: 2.8rem;
  color: #fff;
  position: absolute;
  width: 2.5rem;
  height: 2.5rem;
  top: -2.5rem;
  bottom: 0;
  right: 0;
  left: 0;
  margin: auto;
  text-align: center;
} */
/* ---------------------------------------------------------
PCでの本に関するレイアウト
--------------------------------------------------------- */
@media screen and (min-width: 751px) {
  body {
    position: relative;
  }
  body:before {
    position: fixed;
    content: "";
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background-image: url(../images/main_bg_big.webp);
    background-size: contain;
    background-repeat: repeat;
    z-index: -1;
    background-position: center;
  }
  main {
    width: 100%;
    height: 100vh;
    position: relative;
  }
  main:before {
    position: fixed;
    content: "";
    top: 0;
    left: calc(50% - 87rem);
    width: 174rem;
    height: 100vh;
    background: url(../images/book.webp) no-repeat top center/cover;
    z-index: -1;
    /* background: red; */
  }
  main:after {
    position: fixed;
    content: "";
    top: 0;
    left: calc(50% - 87rem);
    width: 174rem;
    height: 100vh;
    background: url(../images/book_cov.webp) no-repeat top center/cover;
    z-index: 1;
    pointer-events: none;
  }
  .scroll {
    scroll-behavior: smooth;
  }
  .scroll {
    width: 55.8rem;
    position: absolute;
    right: calc(50% + 5.4rem);
    top: calc(50% - 48.9rem);
  }
}
#top-anchor {
  padding-top: 10rem;
}

/* ---------------------------------------------------------
PCでの本に関するレイアウト　ここまで
--------------------------------------------------------- */
a.btndown {
  transition: transform 0.2s ease;
}
a.btndown:hover {
  opacity: 1;
  transform: translateY(-1rem);
}
a.btndown img:hover {
  -webkit-filter: brightness(100%);
  filter: brightness(100%);
}

a.btndown_new .imgWrap {
  transition: all 0.15s cubic-bezier(0.55, 0.05, 0.22, 0.99) 0s;
  transition-property: transform, background, box-shadow;
  border-radius: 2.5rem;
  box-shadow: 0 1rem 0 #754c24;
  background: #fff;
  border: 0.4rem solid #754c24;
  padding: 2rem 1rem 1.3rem 2rem;
}
a.btndown_new:hover {
  opacity: 1;
  transform: translateY(1rem);
}
a.btndown_new:hover .imgWrap {
  box-shadow: 0 0rem 0 #000;
}
a.btndown_new:hover img {
  -webkit-filter: brightness(100%);
  filter: brightness(100%);
}

nav.PCnav {
  position: fixed;
  left: calc(50% + 7.6rem);
  width: 55rem;
  top: calc(50% - 32rem);
}
@media screen and (max-width: 749px) {
  nav.PCnav {
    display: none;
  }
}
nav.PCnav li {
  position: relative;
}
nav.PCnav li::after {
  position: absolute;
  content: "";
  top: 0;
  left: -1.6rem;
  width: 100%;
  height: 6.8rem;
  z-index: -1;
}
nav.PCnav li:nth-child(1):after {
  background: url(../images/navBG01.webp) no-repeat center/contain;
}
nav.PCnav li:nth-child(2):after {
  background: url(../images/navBG02.webp) no-repeat center/contain;
}
nav.PCnav li:nth-child(3):after {
  background: url(../images/navBG03.webp) no-repeat center/contain;
}
nav.PCnav li:nth-child(4):after {
  background: url(../images/navBG04.webp) no-repeat center/contain;
}
nav.PCnav li:nth-child(5):after {
  background: url(../images/navBG05.webp) no-repeat center/contain;
}
nav.PCnav li:nth-child(6):after {
  background: url(../images/navBG06.webp) no-repeat center/contain;
}
nav.PCnav li:nth-child(7):after {
  background: url(../images/navBG07.webp) no-repeat center/contain;
}
nav.PCnav a {
  position: relative;
  display: block;
  text-align: left;
  height: 7rem;
  margin-bottom: 3.1rem;
}
nav.PCnav a:hover {
  opacity: 1;
  transform: translateY(-1rem);
}
nav.PCnav a:hover::after {
  transform: translateY(1rem);
}
nav.PCnav a img:hover {
  -webkit-filter: brightness(100%);
  filter: brightness(100%);
}
nav.PCnav img {
  display: inline;
  height: 100%;
  object-fit: contain;
  width: auto;
}

@media print, screen and (min-width: 750px) {
  nav.SPnav {
    display: none;
  }
}
nav.SPnav a {
  position: relative;
  display: block;
  text-align: left;
  height: 6rem;
  margin-bottom: 3.1rem;
}
nav.SPnav a::after {
  position: absolute;
  content: "";
  top: 0;
  left: -1.6rem;
  width: 108%;
  height: 6.8rem;
  background: url(../images/nav_bg.webp) no-repeat center/contain;
  z-index: -1;
}
nav.SPnav li:nth-child(1) a::after {
  background: url(../images/navBG01_sp.webp) no-repeat center/contain;
}
nav.SPnav li:nth-child(2) a::after {
  background: url(../images/navBG02_sp.webp) no-repeat center/contain;
}
nav.SPnav li:nth-child(3) a::after {
  background: url(../images/navBG03_sp.webp) no-repeat center/contain;
}
nav.SPnav li:nth-child(4) a::after {
  background: url(../images/navBG04_sp.webp) no-repeat center/contain;
}
nav.SPnav li:nth-child(5) a::after {
  background: url(../images/navBG05_sp.webp) no-repeat center/contain;
}
nav.SPnav li:nth-child(6) a::after {
  background: url(../images/navBG06_sp.webp) no-repeat center/contain;
}
nav.SPnav li:nth-child(7) a::after {
  background: url(../images/navBG07_sp.webp) no-repeat center/contain;
}
nav.SPnav img {
  display: inline;
  height: 100%;
  object-fit: contain;
  width: auto;
}

footer {
  padding-top: 14rem;
}
@media print, screen and (min-width: 750px) {
  footer {
    padding-bottom: 4rem;
  }
}
footer .ftlogo {
  width: 81%;
  margin: 0 auto;
  margin-bottom: 4.5rem;
}
footer .snsrow {
  display: flex;
  align-items: center;
  justify-content: center;
}
footer .sns_btn {
  width: 3.5rem;
  margin: 0 1.8rem;
}
footer p.p1 {
  text-align: center;
  font-size: 1.9rem;
  margin-top: 3.5rem;
}
footer p.p2 {
  text-align: center;
  font-size: 1.9rem;
}
footer .tatesen {
  width: 0.3rem;
  display: inline;
  vertical-align: middle;
  margin-top: -0.5rem;
}
footer .naname {
  width: 2.5rem;
  display: inline;
  vertical-align: middle;
  margin-top: -0.5rem;
}
footer a.totop {
  width: 56%;
  display: block;
  margin: 0 auto;
  margin-top: 8rem;
  margin-bottom: 5rem;
  transform-origin: center center;
  animation: tiltSteps 0.6s steps(2) infinite alternate;
}
footer small {
  text-align: center;
  width: 100%;
  display: block;
  font-size: 1.4rem;
  padding-bottom: 7em;
}
@media print, screen and (min-width: 750px) {
  footer small {
    padding-bottom: 10em;
  }
}

@keyframes tiltSteps {
  0% {
    transform: rotate(-3deg);
  }
  100% {
    transform: rotate(7deg);
  }
}
@keyframes tiltStepsRe {
  0% {
    transform: rotate(7deg);
  }
  100% {
    transform: rotate(-3deg);
  }
}
picture.mv {
  width: 53.5rem;
  margin: 0 auto;
}
@media screen and (max-width: 749px) {
  picture.mv {
    width: auto;
    margin: 0 auto;
    height: 100svh;
    /* aspect-ratio: 2/4; */
    margin-top: -5rem;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 2rem;
  }
}

.sec01 {
  background: url(../images/sec01_bg.webp) no-repeat top center/cover;
  padding-bottom: 5rem;
  position: relative;
}
.sec01 img.ttl {
  width: 28rem;
  margin: 0 0 auto 12.5rem;
  padding-top: 14.4rem;
}
.sec01 img.txt {
  width: 30rem;
  margin: 0 auto;
  margin-top: 5.3rem;
}
.sec01 h1 {
  text-align: center;
  margin-top: 75rem;
  color: #fff;
  line-height: 1.9;
  font-size: 2.1rem;
}
.sec01 .check {
  margin: 0 auto;
  margin-top: 20rem;
  margin-bottom: 2rem;
  max-width: 16rem;
}
.sec01 .otamesi {
  margin: 0 auto;
  display: block;
  width: 81%;
}
.sec01 .sec01_abImg {
  position: absolute;
  transform-origin: center center;
  animation: tiltSteps 0.6s steps(2) infinite alternate;
}
.sec01 .ab01 {
  top: 73.7rem;
  left: 4.4rem;
  width: 23rem;
  height: 31rem;
  background: url(../images/sec01_abImg01.webp) no-repeat center/contain;
}
.sec01 .ab02 {
  top: 80.7rem;
  right: 2rem;
  width: 28rem;
  height: 32rem;
  background: url(../images/sec01_abImg02.webp) no-repeat center/contain;
  animation: tiltStepsRe 0.6s steps(2) infinite alternate;
}
.sec01 .ab03 {
  top: 105.7rem;
  right: 20.4rem;
  width: 25rem;
  height: 23rem;
  background: url(../images/sec01_abImg03.webp) no-repeat center/contain;
}

section.sec02 {
  padding-bottom: 9.4rem;
  margin-top: -1px;
}
section.sec02 h2.h2ttl {
  position: relative;
}
section.sec02 h2.h2ttl:before {
  content: "";
  position: absolute;
  top: 10.7rem;
  left: 37.4rem;
  width: 14rem;
  height: 19rem;
  background: url(../images/sec02_img01_ab.webp) no-repeat center/contain;
  transform-origin: center center;
  animation: tiltSteps 0.6s steps(2) infinite alternate;
}

.sec03 {
  background: #FCFCE0;
  padding: 0 3.5rem;
  padding-bottom: 1px;
  padding-top: 3.3rem;
}
@media print, screen and (min-width: 750px) {
  .sec03 {
    background: #FFF8A4;
  }
}
.sec03 .h2ttl {
  width: 36rem;
  margin: 0 auto;
  padding-top: 4.8rem;
  margin-bottom: 4rem;
}

.sec03_topImg {
  margin-top: 12rem;
  position: relative;
}
.sec03_topImg:before {
  content: "";
  position: absolute;
  top: -12.3rem;
  left: 14.4rem;
  width: 26rem;
  height: 31rem;
  background: url(../images/sec03_topimg.webp) no-repeat center/contain;
  transform-origin: center center;
  animation: tiltSteps 0.6s steps(2) infinite alternate;
}

.news-filter {
  margin-bottom: 3.5rem;
}
.news-filter button {
  background: #D0D0D0;
  color: #fff;
  border: none;
  font-size: 2.5rem;
  padding: 0.25rem 2.8rem 0.6rem;
  margin-right: 0.8rem;
  border-radius: 2em;
}
.news-filter button.active {
  background: #EC6C00;
}

.news-list {
  margin-bottom: 5rem;
}

.news-item {
  background: #fff;
  border-radius: 4.5rem;
  margin-bottom: 2.4rem;
  padding: 3.4rem 5rem;
}
.news-item .news-date {
  font-size: 2.2rem;
  line-height: 1.5;
  letter-spacing: 0.28rem;
  font-weight: 600;
}
.news-item h3 {
  font-size: 3rem;
  line-height: 1.5;
  letter-spacing: 0.03em;
  font-weight: 600;
}

.ichiran {
  background: #EC6C00;
  color: #fff;
  font-size: 3rem;
  text-align: center;
  display: block;
  width: 80%;
  margin: 0 auto;
  padding: 2rem 0;
  border-radius: 2em;
}

.dli-chevron-right {
  display: inline-block;
  vertical-align: middle;
  color: #ffffff;
  line-height: 1;
  width: 1.5rem;
  height: 1.5rem;
  border: 0.1em solid currentColor;
  border-left: 0;
  border-bottom: 0;
  box-sizing: border-box;
  transform: translateX(-25%) rotate(45deg);
  margin-top: -0.7rem;
  margin-left: 2.5rem;
}

section.sec04 {
  padding-top: 4.8rem;
}
section.sec04 .h2ttl {
  width: 43rem;
  margin: 0 auto;
  margin-bottom: 4.5rem;
  margin-top: 24rem;
  position: relative;
}
section.sec04 .h2ttl:before {
  content: "";
  position: absolute;
  top: -21.3rem;
  left: 12.4rem;
  width: 21rem;
  height: 19rem;
  background: url(../images/ttl_lesson_ab.webp) no-repeat center/contain;
  transform-origin: center center;
  animation: tiltSteps 0.6s steps(2) infinite alternate;
}
section.sec04 .txt {
  margin: 0 auto;
  width: 38.8rem;
  margin-bottom: 5.6rem;
}

.sec04__accordion {
  list-style: none;
  padding: 0 3.5rem;
  margin: 0;
}
.sec04__accordion > li {
  margin-bottom: 2.3rem;
  overflow: hidden;
  background-color: var(--color);
}
.sec04__accordion dt {
  padding: 1rem 0 2.8rem 5rem;
  cursor: pointer;
  font-weight: bold;
}
.sec04__accordion dt span {
  font-size: 2.3rem;
  letter-spacing: -0.04em;
  color: #fff;
  font-weight: 500;
}
.sec04__accordion dt p {
  font-size: 3.4rem;
  color: #fff;
  line-height: 1;
  font-weight: 500;
}
.sec04__accordion dd {
  padding: 2.4rem;
  padding-top: 0;
  display: none;
  margin: 0;
}
.sec04__accordion .ddWrap {
  background: #fff;
  padding: 5rem 4rem;
  border-radius: 1.2rem;
  padding-bottom: 1.5rem;
}
.sec04__accordion .dd__ttl {
  font-size: 2rem;
  letter-spacing: 0.2rem;
  line-height: 2;
  font-weight: bold;
  color: var(--color);
}
.sec04__accordion .dd__span {
  color: var(--color);
  font-size: 1.8rem;
  font-weight: 600;
  margin-left: -0.3em;
  display: block;
  margin-bottom: 3.7rem;
}
.sec04__accordion .custom-dotted-border {
  border-top: none;
  height: 4px;
  background-image: radial-gradient(circle, #754C24 1px, transparent 1px);
  background-size: 6px 2px;
  background-repeat: repeat-x;
}
.sec04__accordion .dd__ul > li {
  display: flex;
  align-items: center;
}
.sec04__accordion .dd__l {
  font-size: 2.6rem;
  letter-spacing: 0;
  color: var(--color);
  width: 26%;
}
.sec04__accordion .dd__r {
  flex: 1;
}
.sec04__accordion .dd_rp01 {
  background: var(--color);
  display: inline-block;
  font-size: 2rem;
  line-height: 1;
  padding: 0.8rem 1.3rem;
  color: #fff;
}
.sec04__accordion .dd_rp02 {
  color: var(--color);
  font-size: 2rem;
  letter-spacing: 0;
  margin-top: 1rem;
  line-height: 1.6;
}
.sec04__accordion .dd_rp03 {
  font-size: 2.2rem;
  letter-spacing: 0;
}
.sec04__accordion .dd_rp03 .gesya {
  font-size: 2.6rem;
  margin-left: 2.5rem;
}
.sec04__accordion .dd_rp03 .zei {
  font-size: 1.8rem;
  margin-left: -0.6rem;
}
.sec04__accordion .pun {
  font-size: 2.3rem;
}

.sec04__accordion .first .dd__ul {
  padding-top: 3rem;
}
.sec04__accordion .first .dd_rp03 {
  margin-top: 1rem;
  margin-bottom: 3rem;
}

.sec04__accordion dt {
  position: relative;
  cursor: pointer;
}
.sec04__accordion dt .icon {
  position: absolute;
  top: 50%;
  right: 5rem;
  width: 0.6rem;
  height: 3.4rem;
  transform: translateY(-50%);
  transition: transform 0.3s ease;
  transform-origin: center center;
}
.sec04__accordion dt .icon::before, .sec04__accordion dt .icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  width: 0.6rem;
  height: 100%;
  background: #fff;
  transform: translateX(-50%);
  border-radius: 1px;
}
.sec04__accordion dt .icon::after {
  transform: translateX(-50%) rotate(90deg);
}
.sec04__accordion dt.open .icon {
  transform: translateY(-50%) rotate(-45deg);
}

.sec04__btmTxt {
  text-align: center;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  margin-top: -0.5rem;
  line-height: 1.8;
}

.sec05 {
  position: relative;
  margin-top: 17rem;
  padding: 22rem 5rem;
  background: url(../images/sec05_bg_sp.webp) no-repeat top center/contain;
}
@media print, screen and (min-width: 750px) {
  .sec05 {
    background: url(../images/sec05_bg_pc.webp) no-repeat top center/contain;
  }
}
.sec05:before {
  position: absolute;
  content: "";
  top: -8rem;
  left: 18rem;
  width: 20rem;
  height: 25rem;
  background: url(../images/sec05_topimg.webp) no-repeat center/contain;
  transform-origin: center center;
  animation: tiltSteps 0.6s steps(2) infinite alternate;
}
.sec05 p.sec5P {
  text-align: center;
  font-size: 2.4rem;
  margin-top: 1.4rem;
  letter-spacing: 0;
}

.sec06 {
  padding-top: 6.3rem;
  padding-bottom: 8rem;
}
.sec06 .h2ttl {
  width: 37rem;
  margin: 0 auto;
  margin-bottom: 6rem;
}

.slick-slide {
  margin: 0 2rem;
}

button.slick-prev.slick-arrow {
  bottom: -1rem;
  position: absolute;
  left: 10rem;
  background: url(../images/arrow.webp) no-repeat top center/cover;
  height: 3.8rem;
  width: 3.8rem;
  border: none;
  font-size: 0;
}

button.slick-next.slick-arrow {
  bottom: -1rem;
  position: absolute;
  right: 10rem;
  background: url(../images/arrow.webp) no-repeat top center/cover;
  height: 3.8rem;
  width: 3.8rem;
  border: none;
  font-size: 0;
  transform: rotate(180deg);
}

.slick-dots {
  text-align: center;
  margin-top: 20px;
}
.slick-dots li {
  display: inline-block;
  margin: 0 5px;
}
.slick-dots button {
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: #ffffff;
  border: 2px solid #EC6C00;
  font-size: 0;
}
.slick-dots .slick-active button {
  background: #EC6C00;
}

.sec07 {
  background-color: #FCFCE0;
  padding-top: 7rem;
  padding-bottom: 7rem;
}
@media print, screen and (min-width: 750px) {
  .sec07 {
    background: #FFF8A4;
  }
}
.sec07 .h2ttl {
  width: 43rem;
  margin: 0 auto;
}
.sec07 .tuchiya {
  width: 45rem;
  margin: 0 auto;
  margin-top: 5rem;
  margin-bottom: 5rem;
}
.sec07 .keireki_ttl {
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  line-height: 1;
}
.sec07 .keireki_txt {
  text-align: center;
  font-weight: 600;
  font-size: 2.2rem;
  letter-spacing: 0;
  margin-top: 2.2rem;
}
.sec07 hr {
  border: 0.1rem solid;
  width: 80%;
  margin-top: 6.8rem;
  margin-bottom: 6rem;
}
.sec07 .aisatu_ttl {
  text-align: center;
  font-size: 3rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1;
  margin-bottom: 3rem;
}
.sec07 .aisatu_txt {
  width: 80%;
  margin: 0 auto;
  font-size: 2.2rem;
  font-weight: 600;
  letter-spacing: 0;
  line-height: 1.75;
}

.sec07_slick-slider {
  overflow: hidden;
  margin-top: 6rem;
}
.sec07_slick-slider .slick-slide {
  margin: 0;
}

.sec07_slick-slider li {
  text-align: center;
}

.sec07_slick-slider img {
  width: 100%;
  height: auto;
  display: inline-block;
}

.sec08 {
  padding-top: 11rem;
  padding-bottom: 15rem;
}
.sec08 .h2ttl {
  margin: 0 auto;
  width: 41rem;
  margin-bottom: 7rem;
}
.sec08 iframe {
  width: 80%;
  aspect-ratio: 1/1;
  margin: 0 auto;
  display: block;
  border-radius: 2rem;
}
.sec08 .akusesup {
  text-align: center;
  font-size: 2.35rem;
  margin-top: 4.5rem;
}
.sec08 .ikikata {
  font-size: 1.8rem;
  padding-left: 13rem;
  line-height: 1.6;
  margin-top: 1.8rem;
}
.sec08 .ikikata li {
  margin-bottom: 1rem;
  position: relative;
}
.sec08 .ikikata li:before {
  position: absolute;
  content: "";
  top: 0.45em;
  left: -2.3rem;
  width: 1.3rem;
  height: 1.3rem;
  background: #FF7734;
  border-radius: 1rem;
}

.sec09 {
  padding-top: 9.6rem;
  background: #FFD300;
  padding-bottom: 4.5rem;
}
.sec09 .h2ttl {
  width: 44rem;
  margin: 0 auto;
  margin-bottom: 3rem;
}
.sec09 .con_txt {
  text-align: center;
  font-size: 2.2rem;
  letter-spacing: 0;
  font-weight: 700;
  line-height: 1.8;
  margin-bottom: 5.5rem;
}
.sec09 .con_btn {
  display: block;
  width: 42rem;
  margin: 0 auto;
}
.sec09 .con_btn .imgWrap {
  height: 27rem;
  border-radius: 15rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.sec09 .con_btn img {
  width: 60%;
}
.sec09 .con_btn.mail {
  margin-top: 7rem;
  margin-bottom: 5rem;
}
.sec09 .con_btn.mail img {
  width: 50%;
}

/* ---------------------------------------------------------
フォーム
--------------------------------------------------------- */
.formWrap dl.contact-form {
  padding: 0 5rem;
}
.formWrap dt {
  font-size: 2rem;
  font-weight: 600;
}
.formWrap dt span {
  background: #ec6c00;
  color: #fff;
  padding: 0 10px;
  font-size: 0.8em;
}
.formWrap dd {
  margin-bottom: 2rem;
}
.formWrap select {
  width: 100%;
  font-size: 2rem;
  padding: 0.5em;
  border: none;
}
.formWrap input {
  width: 100%;
  font-size: 2rem;
  padding: 0.5em;
  border: none;
}
.formWrap textarea {
  width: 100%;
  font-size: 2rem;
  padding: 0.5em;
  border: none;
}
.formWrap input.wpcf7-form-control.wpcf7-submit.has-spinner {
  background: #EC6C00;
  color: #fff;
  font-size: 3rem;
  text-align: center;
  display: block;
  width: 80%;
  margin: 0 auto;
  padding: 2rem 0;
  border-radius: 2em;
}

/* ---------------------------------------------------------
問い合わせボタン
--------------------------------------------------------- */
.con_btn_onpu {
  position: fixed;
  z-index: 2;
  width: 27rem;
  bottom: calc(50% - 52rem);
  right: calc(50% - 84.5rem);
}

/* ---------------------------------------------------------
投稿ページ
--------------------------------------------------------- */
.single h3 {
  margin-bottom: 2em;
}
.single p {
  margin-bottom: 2em;
  font-size: 2.2rem;
}/*# sourceMappingURL=style.css.map */