@charset "UTF-8";
/* reset */
/* ============================================ */
* {
  box-sizing: border-box;
}

::before,
::after {
  box-sizing: inherit;
}

html {
  line-height: 1.15;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
}

main {
  display: block;
}

p,
table,
blockquote,
address,
pre,
iframe,
form,
figure,
dl {
  margin: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: inherit;
  line-height: inherit;
  font-weight: inherit;
  margin: 0;
}

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

dt {
  font-weight: bold;
}

dd {
  margin-left: 0;
}

hr {
  box-sizing: content-box;
  height: 0;
  overflow: visible;
  border: 0;
  border-top: 1px solid;
  margin: 0;
  clear: both;
  color: inherit;
}

pre {
  font-family: monospace, monospace;
  font-size: inherit;
}

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: none;
  color: inherit;
}

abbr[title] {
  border-bottom: none;
  text-decoration: underline;
  text-decoration: underline dotted;
}

b,
strong {
  font-weight: bolder;
}

code,
kbd,
samp {
  font-family: monospace, monospace;
  font-size: inherit;
}

small {
  font-size: 80%;
}

sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}

sub {
  bottom: -0.25em;
}

sup {
  top: -0.5em;
}

img {
  border-style: none;
  vertical-align: bottom;
}

embed,
object,
iframe {
  border: 0;
  vertical-align: bottom;
}

button,
input,
optgroup,
select,
textarea {
  -webkit-appearance: none;
  appearance: none;
  vertical-align: middle;
  color: inherit;
  font: inherit;
  border: 0;
  background: transparent;
  padding: 0;
  margin: 0;
  outline: 0;
  border-radius: 0;
  text-align: inherit;
}

[type=checkbox] {
  -webkit-appearance: checkbox;
}

[type=radio] {
  -webkit-appearance: radio;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

button,
[type=button],
[type=reset],
[type=submit] {
  cursor: pointer;
  -webkit-appearance: none;
  appearance: none;
}

button[disabled],
[type=button][disabled],
[type=reset][disabled],
[type=submit][disabled] {
  cursor: default;
}

button::-moz-focus-inner,
[type=button]::-moz-focus-inner,
[type=reset]::-moz-focus-inner,
[type=submit]::-moz-focus-inner {
  border-style: none;
  padding: 0;
}

button:-moz-focusring,
[type=button]:-moz-focusring,
[type=reset]:-moz-focusring,
[type=submit]:-moz-focusring {
  outline: 1px dotted ButtonText;
}

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

option {
  padding: 0;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
  min-width: 0;
}

legend {
  color: inherit;
  display: table;
  max-width: 100%;
  padding: 0;
  white-space: normal;
}

progress {
  vertical-align: baseline;
}

textarea {
  overflow: auto;
}

[type=number]::-webkit-inner-spin-button,
[type=number]::-webkit-outer-spin-button {
  height: auto;
}

[type=search] {
  outline-offset: -2px;
}

[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

::-webkit-file-upload-button {
  -webkit-appearance: button;
  font: inherit;
}

label[for] {
  cursor: pointer;
}

details {
  display: block;
}

summary {
  display: list-item;
}

[contenteditable] {
  outline: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

caption {
  text-align: left;
}

td,
th {
  vertical-align: top;
  padding: 0;
}

th {
  text-align: left;
  font-weight: bold;
}

template {
  display: none;
}

[hidden] {
  display: none;
}

/* サイト全体の基本設定 */
/* ============================================ */
html {
  font-size: 62.5%;
}

body {
  color: #000;
  font-family: "Noto Sans JP", sans-serif;
  font-weight: 500;
  font-size: 1.6rem;
  line-height: 1.92;
  background: #fff;
  font-feature-settings: "palt";
  letter-spacing: 0.05em;
}

a {
  text-decoration: none;
  transition: 0.4s;
}

img {
  max-width: 100%;
}

/* mixin */
/* ============================================ */
/* l-wrap */
/* ============================================ */
.l-wrap {
  overflow: hidden;
}

/* l-main */
/* ============================================ */
.l-main {
  overflow: hidden;
  position: relative;
  z-index: 0;
}

/* l-inner */
/* ============================================ */
@media screen and (max-width: 1000px) {
  .l-inner {
    padding: 0 5vw;
  }
}
@media screen and (max-width: 768px) {
  .l-inner {
    padding: 0 6vw;
  }
}

body {
  width: 100%;
}
body.is-fixed {
  overflow: hidden;
  height: 100%;
}

/* l-header */
/* ============================================ */
.l-header__pc {
  z-index: 9999;
  position: fixed;
  width: 960px;
  margin: 0 auto;
  top: 12px;
  left: calc(50% - 480px);
  background: #FFFFFF;
  background: linear-gradient(180deg, rgb(255, 255, 255) 75%, rgb(233, 249, 255) 97%, rgb(207, 229, 255) 100%);
  border-radius: 9999px;
  box-shadow: 0 0 10px rgba(35, 24, 21, 0.06);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 22px;
}
.l-header__pc__logo {
  margin-top: -5px;
}
.l-header__pc__logo a:hover {
  opacity: 0.7;
}
.l-header__pc__other {
  display: flex;
}
.l-header__pc__tel {
  margin: 2px 0;
}
.l-header__pc__btn {
  margin-left: 30px;
  background: #ED6D1F;
  background: linear-gradient(90deg, rgb(237, 109, 31) 30%, rgb(255, 177, 31) 100%);
  border-radius: 9999px;
  overflow: hidden;
  position: relative;
  transition: 0.4s;
}
.l-header__pc__btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #00C3B4;
  background: linear-gradient(90deg, rgb(0, 195, 180) 30%, rgb(91, 218, 121) 100%);
  transition: 0.4s;
}
.l-header__pc__btn:hover::before {
  opacity: 0;
}
.l-header__pc__btn a {
  display: flex;
  align-items: center;
  height: 100%;
  color: #fff;
  padding: 0 16px 0 22px;
  font-size: 15px;
  position: relative;
}
.l-header__pc__btn a span {
  color: #ffff75;
}
.l-header__pc__btn a i {
  font-size: 0;
  margin-left: 5px;
}
@media screen and (max-width: 1000px) {
  .l-header__pc {
    display: none;
  }
}
.l-header__sp {
  display: none;
}
@media screen and (max-width: 1000px) {
  .l-header__sp {
    display: block;
  }
}
.l-header__sp__static {
  z-index: 9999;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.l-header__sp__static__logo {
  margin-top: -4px;
  margin-left: 10px;
}
.l-header__sp__static .l-header__menu__trigger {
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
}
.l-header__sp__static .l-header__menu__trigger.is-active .l-header__menu__trigger__menu span:nth-child(2) {
  opacity: 0;
}
.l-header__sp__static .l-header__menu__trigger.is-active .l-header__menu__trigger__menu span:nth-child(1) {
  transform: rotate(25deg);
  top: 8px;
}
.l-header__sp__static .l-header__menu__trigger.is-active .l-header__menu__trigger__menu span:nth-child(3) {
  width: 30px;
  transform: rotate(-25deg);
  top: 8px;
}
.l-header__sp__static .l-header__menu__trigger.is-active p {
  letter-spacing: -0.3px;
}
.l-header__sp__static .l-header__menu__trigger__menu {
  width: 30px;
  height: 16px;
  position: relative;
}
.l-header__sp__static .l-header__menu__trigger__menu span {
  opacity: 0.6;
  width: 30px;
  height: 1px;
  background: #fff;
  display: block;
  transition: 0.4s;
  position: absolute;
}
.l-header__sp__static .l-header__menu__trigger__menu span:nth-child(2) {
  position: absolute;
  top: 8px;
}
.l-header__sp__static .l-header__menu__trigger__menu span:nth-child(3) {
  width: 20px;
  position: absolute;
  top: 16px;
}
.l-header__sp__static .l-header__menu__trigger p {
  color: #fff;
  opacity: 0.6;
  font-size: 10.6px;
  letter-spacing: 0;
  margin-top: 4px;
}
.l-header__sp__fixed {
  position: fixed;
  top: -60px;
  left: 0;
  width: 100%;
  background: #FFFFFF;
  background: linear-gradient(180deg, rgb(255, 255, 255) 75%, rgb(233, 249, 255) 97%, rgb(207, 229, 255) 100%);
  box-shadow: 0 0 5px rgba(35, 24, 21, 0.06);
  display: flex;
  justify-content: space-between;
  z-index: 9999;
  transition: all 0.3s ease-in-out;
  visibility: hidden;
}
.l-header__sp__fixed.is-show {
  top: 0;
  visibility: visible;
}
.l-header__sp__fixed__logo {
  display: flex;
  align-items: center;
  margin-left: 10px;
  margin-top: -4px;
}
.l-header__sp__fixed .l-header__menu__trigger {
  background: #ffb11f;
  width: 60px;
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding-top: 10px;
}
.l-header__sp__fixed .l-header__menu__trigger.is-active .l-header__menu__trigger__menu span:nth-child(2) {
  opacity: 0;
}
.l-header__sp__fixed .l-header__menu__trigger.is-active .l-header__menu__trigger__menu span:nth-child(1) {
  transform: rotate(25deg);
  top: 8px;
}
.l-header__sp__fixed .l-header__menu__trigger.is-active .l-header__menu__trigger__menu span:nth-child(3) {
  width: 30px;
  transform: rotate(-25deg);
  top: 8px;
}
.l-header__sp__fixed .l-header__menu__trigger.is-active p {
  letter-spacing: -0.3px;
}
.l-header__sp__fixed .l-header__menu__trigger__menu {
  width: 30px;
  height: 16px;
  position: relative;
}
.l-header__sp__fixed .l-header__menu__trigger__menu span {
  width: 30px;
  height: 1px;
  background: #fff;
  display: block;
  transition: 0.4s;
  position: absolute;
}
.l-header__sp__fixed .l-header__menu__trigger__menu span:nth-child(2) {
  position: absolute;
  top: 8px;
}
.l-header__sp__fixed .l-header__menu__trigger__menu span:nth-child(3) {
  width: 20px;
  position: absolute;
  top: 16px;
}
.l-header__sp__fixed .l-header__menu__trigger p {
  color: #fff;
  font-size: 10.6px;
  letter-spacing: 0;
  margin-top: 4px;
}
.l-header__sp__menu {
  position: fixed;
  top: 60px;
  left: 0;
  z-index: 20;
  width: 100%;
  visibility: hidden;
  opacity: 0;
  transition: 0.6s;
  background: #00b5a7;
  height: 100vh;
}
.l-header__sp__menu.is-open {
  visibility: visible;
  opacity: 1;
}
.l-header__sp__menu__pagelist {
  background: #fcf6e9;
  padding: 18px 18px;
}
.l-header__sp__menu__pagelist li a {
  color: #573c1d;
  font-size: 17px;
  font-weight: 700;
  display: block;
  padding: 12px 0;
  position: relative;
  border-bottom: 1px solid #f0e7c5;
  box-shadow: 0 1px 0 #fff;
}
.l-header__sp__menu__pagelist li a::after {
  position: absolute;
  top: calc(50% - 6px);
  right: 12px;
  content: "";
  background: url("../img/ico_sp_header_menu_page@2x.png") center center;
  background-size: 100%;
  width: 12px;
  height: 12px;
}
.l-header__sp__menu__pagelist li:last-child a {
  border: none;
  box-shadow: none;
}
.l-header__sp__menu__entry {
  background: #00b5a7;
  position: relative;
  padding: 25px 32px 20px;
}
.l-header__sp__menu__entry::before {
  content: "";
  background: url("../img/ico_sp_header_menu_mazuwa@2x.png") center center;
  background-size: 100%;
  width: 68px;
  height: 25px;
  position: absolute;
  top: -15px;
  left: calc(50% - 34px);
}
.l-header__sp__menu__entry ul li a {
  color: #44311a;
  font-size: 17px;
  font-weight: 700;
  text-align: center;
  border-radius: 999px;
  display: block;
  padding: 12px 0;
  background: #FFF49C;
  background: linear-gradient(0deg, rgb(255, 244, 156) 30%, rgb(254, 246, 228) 100%);
  box-shadow: 0 4px 0 #decf7f;
  position: relative;
  overflow: hidden;
}
.l-header__sp__menu__entry ul li a span {
  color: #ff8c1e;
}
.l-header__sp__menu__entry ul li a::after {
  content: "";
  background: url("../img/ico_sp_header_menu_entry@2x.png") center center;
  background-size: 100%;
  width: 24px;
  height: 24px;
  position: absolute;
  top: calc(50% - 12px);
  right: 12px;
}
.l-header__sp__menu__entry ul li a::before {
  animation: 4s 0s btn_shine linear infinite;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 75%);
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transform: skewX(-15deg);
  width: 100%;
}
.l-header__sp__menu__entry ul li:nth-child(2) {
  margin-top: 12px;
}
.l-header__sp__menu__entry ul li:nth-child(2) a {
  background: #CFE5FF;
  background: linear-gradient(0deg, rgb(207, 229, 255) 0%, rgb(233, 249, 255) 15%, rgb(255, 255, 255) 100%);
  box-shadow: 0 4px 0 #64cacb;
}
.l-header__sp__menu__entry ul li:nth-child(2) a::after {
  background: url("../img/ico_sp_header_menu_search@2x.png") center center;
  background-size: 100%;
}
.l-header__sp__menu__entry ul li:nth-child(2) a::before {
  display: none;
}
.l-header__sp__menu__entry .tel {
  margin-top: 14px;
  text-align: center;
}

/* l-footer */
/* ============================================ */
@media screen and (max-width: 1000px) {
  .l-footer {
    padding-bottom: 60px;
  }
}
.l-footer__inner {
  max-width: 960px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0 25px;
}
@media screen and (max-width: 1000px) {
  .l-footer__inner {
    flex-wrap: wrap;
    justify-content: center;
    padding: 25px 0 15px;
  }
}
@media screen and (max-width: 1000px) {
  .l-footer__logo {
    width: 100%;
    text-align: center;
    margin-bottom: 15px;
  }
}
.l-footer__logo a:hover {
  opacity: 0.7;
}
.l-footer__copy {
  font-size: 13px;
  color: #b7b7b7;
}
.l-footer__sp-fixed-menu {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  background: #fff;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.2);
  padding: 8px;
  z-index: 10;
}
@media screen and (max-width: 1000px) {
  .l-footer__sp-fixed-menu {
    display: block;
  }
}
.l-footer__sp-fixed-menu ul {
  display: flex;
}
.l-footer__sp-fixed-menu ul li a {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  color: #fff;
  height: 100%;
  padding: 10px 0;
  border-radius: 5px;
}
.l-footer__sp-fixed-menu ul li a span {
  color: #ffff75;
}
.l-footer__sp-fixed-menu ul li:nth-child(1) {
  width: 51%;
}
.l-footer__sp-fixed-menu ul li:nth-child(1) a {
  background: #00C3B4;
  background: linear-gradient(0deg, rgb(0, 195, 180) 30%, rgb(91, 218, 121) 100%);
  box-shadow: 0 3px 0 #00A7B4;
}
.l-footer__sp-fixed-menu ul li:nth-child(1) a i {
  margin-right: 3px;
}
.l-footer__sp-fixed-menu ul li:nth-child(2) {
  width: 38%;
  margin-left: 1%;
}
.l-footer__sp-fixed-menu ul li:nth-child(2) a {
  background: #FFA333;
  background: linear-gradient(0deg, rgb(255, 163, 51) 30%, rgb(254, 199, 95) 100%);
  box-shadow: 0 3px 0 #ff8900;
}
.l-footer__sp-fixed-menu ul li:nth-child(2) a i {
  margin-right: 3px;
}
.l-footer__sp-fixed-menu ul li:nth-child(3) {
  width: 13%;
  margin-left: 1%;
}
.l-footer__sp-fixed-menu ul li:nth-child(3) a {
  background: #ff8c1e;
  box-shadow: 0 3px 0 #f76f00;
}
.l-footer__sp-fixed-menu ul li i {
  font-size: 0;
}

/* icon */
/* ============================================ */
.c-svg {
  display: flex;
}

/* text */
/* ============================================ */
.c-text {
  font-size: 16px;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 1000px) {
  .c-text {
    font-size: 15px;
  }
}
@media screen and (max-width: 768px) {
  .c-text {
    font-size: 13px;
  }
}

/* img */
/* ============================================ */
.c-underlayer-img {
  height: 550px;
  position: relative;
  margin-bottom: 22px;
}
@media screen and (max-width: 1000px) {
  .c-underlayer-img {
    height: 450px;
  }
}
@media screen and (max-width: 768px) {
  .c-underlayer-img {
    height: 360px;
  }
}
.c-underlayer-img .canvas-wave-underlayer {
  position: absolute;
  left: 50%;
  bottom: -22px;
  transform: translate(-50%, 0);
}

/* title */
/* ============================================ */
.c-title01 {
  text-align: center;
  margin-top: 38px;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .c-title01 {
    margin-top: 48px;
    margin-bottom: 40px;
  }
}
.c-title01 .obj {
  margin-bottom: 22px;
}
.c-title01 .main {
  color: #005aaa;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 768px) {
  .c-title01 .main {
    font-size: 18px;
    letter-spacing: 0.15em;
  }
}
.c-title01 .main span {
  display: inline-block;
  position: relative;
  padding-bottom: 18px;
}
.c-title01 .main span::before {
  content: "";
  background: #fed600;
  border-radius: 2rem;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
}
.c-title01 .sub {
  font-size: 12px;
  font-weight: 500;
  margin-top: 16px;
}
@media screen and (max-width: 768px) {
  .c-title01 .sub {
    font-size: 11px;
    margin-top: 18px;
  }
}
.c-title01.c-title01--underlayer {
  background: #f5f5ee;
  margin: 0;
  padding: 142px 20px 108px;
}
@media screen and (max-width: 768px) {
  .c-title01.c-title01--underlayer {
    padding: 90px 20px 55px;
  }
}
@media screen and (max-width: 768px) {
  .c-title01.c-title01--underlayer .main span {
    padding-bottom: 11px;
  }
}
@media screen and (max-width: 768px) {
  .c-title01.c-title01--underlayer .sub {
    margin-top: 10px;
  }
}

.c-title02 {
  text-align: center;
  margin-top: 38px;
  margin-bottom: 45px;
}
@media screen and (max-width: 768px) {
  .c-title02 {
    margin-top: 48px;
    margin-bottom: 40px;
  }
}
.c-title02 .main {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 768px) {
  .c-title02 .main {
    font-size: 13px;
    letter-spacing: 0.15em;
  }
}
.c-title02 .main span {
  display: inline-block;
  position: relative;
  padding-bottom: 10px;
}
@media screen and (max-width: 768px) {
  .c-title02 .main span {
    padding-bottom: 8px;
  }
}
.c-title02 .main span::before {
  content: "";
  background: #fed600;
  border-radius: 2rem;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
}

.c-title03 {
  display: flex;
  align-items: center;
}
@media screen and (max-width: 768px) {
  .c-title03 {
    flex-direction: column;
  }
}
.c-title03 .main {
  background: #fed600;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.79;
  padding: 44px 20px;
  text-align: center;
  width: 168px;
  z-index: 100;
}
@media screen and (max-width: 768px) {
  .c-title03 .main {
    border-radius: 6px;
    font-size: 13px;
    line-height: 1.84;
    padding: 32px 10px;
    margin: 0 auto;
    width: 123px;
  }
}
.c-title03 .main span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
  text-align: left;
}
@media screen and (max-width: 768px) {
  .c-title03 .main span {
    min-height: 46px;
  }
}
.c-title03 .sub {
  font-size: 12px;
  padding: 0 0 5px 30px;
}
@media screen and (max-width: 768px) {
  .c-title03 .sub {
    font-size: 10px;
    padding: 0;
    margin-top: 25px;
  }
}

.c-title04 {
  display: flex;
}
@media screen and (max-width: 768px) {
  .c-title04 {
    flex-direction: column;
    text-align: center;
  }
}
.c-title04 .main {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.18em;
}
@media screen and (max-width: 768px) {
  .c-title04 .main {
    font-size: 13px;
    letter-spacing: 0.15em;
  }
}
.c-title04 .main span {
  display: inline-block;
  position: relative;
  padding-bottom: 8px;
}
@media screen and (max-width: 768px) {
  .c-title04 .main span {
    padding-bottom: 6px;
  }
}
.c-title04 .main span::before {
  content: "";
  background: #fed600;
  border-radius: 2rem;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 100%;
}
.c-title04 .sub {
  font-size: 12px;
  margin: 5px 0 0 30px;
}
@media screen and (max-width: 768px) {
  .c-title04 .sub {
    font-size: 10px;
    margin: 13px 0 0;
  }
}
.c-title04.u-text-center {
  justify-content: center;
}

.c-title05 {
  text-align: center;
}
.c-title05 .inner {
  background: #fed600;
  border-radius: 8px;
  font-size: 18px;
  font-weight: 700;
  display: inline-block;
  line-height: 1.79;
  padding: 20px 30px 18px;
  min-width: 205px;
}
@media screen and (max-width: 768px) {
  .c-title05 .inner {
    border-radius: 6px;
    font-size: 13px;
    padding: 13px 22px 12px;
    min-width: 166px;
  }
}
.c-title05 .inner .main {
  margin-top: 6px;
}

/* btn */
/* ============================================ */
.c-btn01 {
  margin-top: 45px;
}
@media screen and (max-width: 768px) {
  .c-btn01 {
    margin-top: 38px;
  }
}
.c-btn01 a {
  background: #005aaa;
  border-radius: 5px;
  display: inline-block;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  padding: 14px 10px;
  width: 158px;
}
@media screen and (max-width: 768px) {
  .c-btn01 a {
    font-size: 10px;
    padding: 10px 5px;
    width: 110px;
  }
}
.c-btn01 a:hover {
  background: rgba(0, 90, 170, 0.4);
}

.c-btn02 {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .c-btn02 {
    margin-top: 40px;
  }
}
.c-btn02 a {
  border-radius: 10px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 27px 50px 27px 28px;
  margin: 0 auto;
  line-height: 1.6;
  width: 310px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .c-btn02 a {
    font-size: 15px;
    border-radius: 8px;
    padding: 16px 40px 16px 20px;
    width: 232px;
  }
}
.c-btn02 a:hover::before {
  background: rgba(41, 171, 226, 0.5);
  top: 0;
  left: 0;
  transition: 0.4s;
}
.c-btn02 a:hover .text {
  color: #005aaa;
  transition: 0.4s;
}
.c-btn02 a:hover .arrow {
  right: 26px;
  transition: 0.4s;
}
.c-btn02 a::before {
  content: "";
  background: rgba(41, 171, 226, 0.3);
  border-radius: 9px;
  position: absolute;
  left: 6px;
  top: 6px;
  height: calc(100% - 2px);
  width: calc(100% - 2px);
  z-index: -1;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .c-btn02 a::before {
    border-radius: 7px;
    left: 5px;
    top: 5px;
  }
}
.c-btn02 a::after {
  content: "";
  border: 3px solid #000;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .c-btn02 a::after {
    border-radius: 8px;
    border-width: 2px;
  }
}
.c-btn02 a .icon {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .c-btn02 a .icon {
    line-height: 1;
  }
}
.c-btn02 a .icon img {
  width: 28px;
}
@media screen and (max-width: 768px) {
  .c-btn02 a .icon img {
    width: 20px;
  }
}
.c-btn02 a .text {
  font-size: 18px;
  font-weight: 700;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .c-btn02 a .text {
    font-size: 15px;
  }
}
.c-btn02 a .arrow {
  position: absolute;
  right: 30px;
  top: 50%;
  transform: translate(0, -50%);
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .c-btn02 a .arrow {
    right: 20px;
  }
}
.c-btn02 a .arrow svg {
  color: #fed600;
  height: 20px;
  width: 20px;
}
@media screen and (max-width: 768px) {
  .c-btn02 a .arrow svg {
    height: 16px;
    width: 16px;
  }
}
.c-btn02.c-btn02--auto {
  max-inline-size: max-content;
  margin-inline: auto;
}
.c-btn02.c-btn02--auto a {
  display: inline-block;
  padding-right: 60px;
  letter-spacing: 0.1em;
  width: auto;
}
@media screen and (max-width: 768px) {
  .c-btn02.c-btn02--auto a {
    padding: 16px 54px 16px 20px;
  }
}
@media screen and (max-width: 768px) {
  .c-btn02.c-btn02--auto a .text {
    font-size: 14px;
  }
}
.c-btn02.c-btn02--auto a .arrow {
  right: 28px;
}
@media screen and (max-width: 768px) {
  .c-btn02.c-btn02--auto a .arrow {
    right: 22px;
  }
}

/* icon */
/* ============================================ */
.c-cat-icon span {
  border: 1px solid #005aaa;
  border-radius: 3px;
  font-size: 11px;
  display: inline-block;
  padding: 1px 18px;
  margin-top: 18px;
}

/* pankuzu */
/* ============================================ */
.c-pankuzu {
  margin: 30px 0 20px;
}
@media screen and (max-width: 768px) {
  .c-pankuzu {
    display: none;
  }
}
.c-pankuzu .l-inner {
  max-width: 1100px;
}
.c-pankuzu .l-inner ul {
  display: flex;
  flex-wrap: wrap;
}
.c-pankuzu .l-inner ul li {
  font-size: 11px;
}
.c-pankuzu .l-inner ul li a {
  position: relative;
}
.c-pankuzu .l-inner ul li a::after {
  content: ">";
  margin: 0 8px;
}

/* pagenavi */
/* ============================================ */
.c-pagenavi {
  margin-top: 85px;
  font-size: 14px;
  font-weight: 700;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .c-pagenavi {
    margin-top: 55px;
  }
}
.c-pagenavi .wp-pagenavi {
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
.c-pagenavi .wp-pagenavi .previouspostslink {
  border: 2px solid #fed600;
  border-radius: 50%;
  display: inline-block;
  height: 17px;
  width: 17px;
  margin: 0 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-pagenavi .wp-pagenavi .previouspostslink {
    margin: 0 4px;
  }
}
.c-pagenavi .wp-pagenavi .previouspostslink::before {
  content: "";
  position: absolute;
  left: 5px;
  top: 50%;
  margin-top: -2px;
  border-top: 2px solid #fed600;
  border-right: 2px solid #fed600;
  height: 5px;
  width: 5px;
  transform: rotate(-135deg);
}
.c-pagenavi .wp-pagenavi .nextpostslink {
  border: 2px solid #fed600;
  border-radius: 50%;
  display: inline-block;
  height: 17px;
  width: 17px;
  margin: 0 10px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .c-pagenavi .wp-pagenavi .nextpostslink {
    margin: 0 4px;
  }
}
.c-pagenavi .wp-pagenavi .nextpostslink::before {
  content: "";
  position: absolute;
  right: 5px;
  top: 50%;
  margin-top: -2px;
  border-top: 2px solid #fed600;
  border-right: 2px solid #fed600;
  height: 5px;
  width: 5px;
  transform: rotate(45deg);
}
.c-pagenavi .wp-pagenavi .page,
.c-pagenavi .wp-pagenavi .current {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 20px;
  width: 20px;
  margin: 0 5px;
}
.c-pagenavi .wp-pagenavi .current {
  color: #005aaa;
}
.c-pagenavi .wp-pagenavi .extend {
  margin: 0 6px;
  letter-spacing: 0;
}
@media screen and (max-width: 768px) {
  .c-pagenavi .wp-pagenavi .extend {
    margin: 0 5px;
  }
}

/* 調整用パーツ */
/* ============================================ */
/* media */
@media screen and (max-width: 768px) {
  .u-only-pc {
    display: none;
  }
}

.u-only-middle {
  display: none;
}
@media screen and (max-width: 1000px) {
  .u-only-middle {
    display: block;
  }
}

.u-only-sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .u-only-sp {
    display: block;
  }
}

/* margin */
.u-mt0 {
  margin-top: 0 !important;
}

.u-mt5 {
  margin-top: 5px !important;
}

.u-mt10 {
  margin-top: 10px !important;
}

.u-mt15 {
  margin-top: 15px !important;
}

.u-mt20 {
  margin-top: 20px !important;
}

.u-mt25 {
  margin-top: 25px !important;
}

.u-mt30 {
  margin-top: 30px !important;
}

.u-mt35 {
  margin-top: 35px !important;
}

.u-mt40 {
  margin-top: 40px !important;
}

.u-mt45 {
  margin-top: 45px !important;
}

.u-mt50 {
  margin-top: 50px !important;
}

.u-mt55 {
  margin-top: 55px !important;
}

.u-mt60 {
  margin-top: 60px !important;
}

.u-mt65 {
  margin-top: 65px !important;
}

.u-mt70 {
  margin-top: 70px !important;
}

.u-mt75 {
  margin-top: 75px !important;
}

.u-mt80 {
  margin-top: 80px !important;
}

.u-mt85 {
  margin-top: 85px !important;
}

.u-mt90 {
  margin-top: 90px !important;
}

.u-mt95 {
  margin-top: 95px !important;
}

.u-mt100 {
  margin-top: 100px !important;
}

.u-mt110 {
  margin-top: 110px !important;
}

.u-mt120 {
  margin-top: 120px !important;
}

.u-mt130 {
  margin-top: 130px !important;
}

.u-mt135 {
  margin-top: 135px !important;
}

.u-mt140 {
  margin-top: 140px !important;
}

.u-mt145 {
  margin-top: 145px !important;
}

.u-mt150 {
  margin-top: 150px !important;
}

.u-mt160 {
  margin-top: 160px !important;
}

.u-mt170 {
  margin-top: 170px !important;
}

.u-mt180 {
  margin-top: 180px !important;
}

.u-mt190 {
  margin-top: 190px !important;
}

.u-mt195 {
  margin-top: 195px !important;
}

.u-mt200 {
  margin-top: 200px !important;
}

@media screen and (max-width: 1000px) {
  .u-mt0-middle {
    margin-top: 0 !important;
  }
  .u-mt5-middle {
    margin-top: 5px !important;
  }
  .u-mt10-middle {
    margin-top: 10px !important;
  }
  .u-mt15-middle {
    margin-top: 15px !important;
  }
  .u-mt20-middle {
    margin-top: 20px !important;
  }
  .u-mt25-middle {
    margin-top: 25px !important;
  }
  .u-mt30-middle {
    margin-top: 30px !important;
  }
  .u-mt35-middle {
    margin-top: 35px !important;
  }
  .u-mt40-middle {
    margin-top: 40px !important;
  }
  .u-mt45-middle {
    margin-top: 45px !important;
  }
  .u-mt50-middle {
    margin-top: 50px !important;
  }
  .u-mt55-middle {
    margin-top: 55px !important;
  }
  .u-mt60-middle {
    margin-top: 60px !important;
  }
  .u-mt65-middle {
    margin-top: 65px !important;
  }
  .u-mt70-middle {
    margin-top: 70px !important;
  }
  .u-mt75-middle {
    margin-top: 75px !important;
  }
  .u-mt80-middle {
    margin-top: 80px !important;
  }
  .u-mt85-middle {
    margin-top: 85px !important;
  }
  .u-mt90-middle {
    margin-top: 90px !important;
  }
  .u-mt95-middle {
    margin-top: 95px !important;
  }
  .u-mt100-middle {
    margin-top: 100px !important;
  }
  .u-mt110-middle {
    margin-top: 110px !important;
  }
  .u-mt120-middle {
    margin-top: 120px !important;
  }
  .u-mt130-middle {
    margin-top: 130px !important;
  }
  .u-mt140-middle {
    margin-top: 140px !important;
  }
  .u-mt150-middle {
    margin-top: 150px !important;
  }
  .u-mt160-middle {
    margin-top: 160px !important;
  }
  .u-mt170-middle {
    margin-top: 170px !important;
  }
  .u-mt180-middle {
    margin-top: 180px !important;
  }
  .u-mt190-middle {
    margin-top: 190px !important;
  }
  .u-mt200-middle {
    margin-top: 200px !important;
  }
}
@media screen and (max-width: 768px) {
  .u-mt0-sp {
    margin-top: 0 !important;
  }
  .u-mt5-sp {
    margin-top: 5px !important;
  }
  .u-mt10-sp {
    margin-top: 10px !important;
  }
  .u-mt15-sp {
    margin-top: 15px !important;
  }
  .u-mt20-sp {
    margin-top: 20px !important;
  }
  .u-mt25-sp {
    margin-top: 25px !important;
  }
  .u-mt30-sp {
    margin-top: 30px !important;
  }
  .u-mt35-sp {
    margin-top: 35px !important;
  }
  .u-mt40-sp {
    margin-top: 40px !important;
  }
  .u-mt45-sp {
    margin-top: 45px !important;
  }
  .u-mt50-sp {
    margin-top: 50px !important;
  }
  .u-mt55-sp {
    margin-top: 55px !important;
  }
  .u-mt60-sp {
    margin-top: 60px !important;
  }
  .u-mt65-sp {
    margin-top: 65px !important;
  }
  .u-mt70-sp {
    margin-top: 70px !important;
  }
  .u-mt75-sp {
    margin-top: 75px !important;
  }
  .u-mt80-sp {
    margin-top: 80px !important;
  }
  .u-mt85-sp {
    margin-top: 85px !important;
  }
  .u-mt90-sp {
    margin-top: 90px !important;
  }
  .u-mt95-sp {
    margin-top: 95px !important;
  }
  .u-mt100-sp {
    margin-top: 100px !important;
  }
  .u-mt110-sp {
    margin-top: 110px !important;
  }
  .u-mt120-sp {
    margin-top: 120px !important;
  }
  .u-mt130-sp {
    margin-top: 130px !important;
  }
  .u-mt140-sp {
    margin-top: 140px !important;
  }
  .u-mt150-sp {
    margin-top: 150px !important;
  }
  .u-mt160-sp {
    margin-top: 160px !important;
  }
  .u-mt170-sp {
    margin-top: 170px !important;
  }
  .u-mt180-sp {
    margin-top: 180px !important;
  }
  .u-mt190-sp {
    margin-top: 190px !important;
  }
  .u-mt200-sp {
    margin-top: 200px !important;
  }
}
/* text */
.u-text-left {
  text-align: left;
}

.u-text-right {
  text-align: right;
}

.u-text-center {
  text-align: center;
}

.u-text-color-red {
  color: #D51A19;
}

/* maxwidth */
.u-max-width1000 {
  max-width: 1000px;
  margin: 0 auto;
}

.u-max-width800 {
  max-width: 800px;
  margin: 0 auto;
}

/* bg */
.u-bg-color01 {
  background: #bedceb !important;
}

/* 共通パーツ */
/* ============================================ */
.p-reservebox {
  padding: 200px 0;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-reservebox {
    padding: 180px 0 140px;
  }
}
.p-reservebox .l-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .p-reservebox .l-inner {
    flex-direction: column;
  }
}
.p-reservebox .l-inner .textarea {
  margin-right: 115px;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .p-reservebox .l-inner .textarea {
    margin-right: 0;
  }
}
.p-reservebox .l-inner .textarea .tel {
  line-height: 1;
  width: 340px;
}
@media screen and (max-width: 768px) {
  .p-reservebox .l-inner .textarea .tel {
    text-align: center;
    width: auto;
  }
}
.p-reservebox .l-inner .textarea .tel .title {
  text-align: center;
  margin: 0 auto;
  height: 100px;
  width: 230px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .p-reservebox .l-inner .textarea .tel .title {
    height: 80px;
    width: 185px;
  }
}
.p-reservebox .l-inner .textarea .tel .title::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  background: url(../img/footer_tel_bg.png) no-repeat center;
  background-size: 100% auto;
  height: 100%;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-reservebox .l-inner .textarea .tel .title::before {
    left: 4px;
  }
}
.p-reservebox .l-inner .textarea .tel .title span {
  font-size: 24px;
  font-weight: 700;
  display: inline-block;
  padding: 29px 20px 29px 10px;
}
@media screen and (max-width: 768px) {
  .p-reservebox .l-inner .textarea .tel .title span {
    font-size: 19px;
    padding: 20px 10px 20px 10px;
  }
}
.p-reservebox .l-inner .textarea .tel .num {
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 0 6px 0 8px;
  margin-top: 38px;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .p-reservebox .l-inner .textarea .tel .num {
    margin-top: 30px;
  }
}
.p-reservebox .l-inner .textarea .tel .num::before {
  content: "";
  background: #fff000;
  border-radius: 2rem;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translate(0, -50%);
  height: 7px;
  width: 100%;
  z-index: -1;
}
.p-reservebox .l-inner .textarea .tel .num .c-svg {
  margin-right: 15px;
}
.p-reservebox .l-inner .textarea .tel .num .c-svg svg {
  height: 35px;
  width: 35px;
}
@media screen and (max-width: 768px) {
  .p-reservebox .l-inner .textarea .tel .num .c-svg svg {
    height: 28px;
    width: 28px;
  }
}
.p-reservebox .l-inner .textarea .tel .num span {
  display: inline-block;
  font-size: 38px;
  font-weight: 700;
  margin-top: -5px;
  letter-spacing: 0.08em;
}
@media screen and (max-width: 768px) {
  .p-reservebox .l-inner .textarea .tel .num span {
    font-size: 30px;
    margin-top: -4px;
  }
}
.p-reservebox .l-inner .textarea .time {
  font-size: 16px;
  font-weight: 500;
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .p-reservebox .l-inner .textarea .time {
    font-size: 12px;
    margin-top: 28px;
  }
}
.p-reservebox .l-inner .textarea .time span {
  display: inline-block;
  margin-left: 15px;
}
@media screen and (max-width: 1000px) {
  .p-reservebox .l-inner .textarea .time span {
    display: block;
    margin: 1px 0 0;
  }
}
.p-reservebox .l-inner .textarea .time .att {
  font-size: 12px;
}
@media screen and (max-width: 768px) {
  .p-reservebox .l-inner .textarea .time .att {
    font-size: 10px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 1000px) {
  .p-reservebox .l-inner .link {
    margin-top: 155px;
  }
}
.p-reservebox .l-inner .link ul li {
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .p-reservebox .l-inner .link ul li {
    margin-top: 26px;
  }
}
.p-reservebox .l-inner .link ul li:first-child {
  margin-top: 0;
}
.p-reservebox .l-inner .link ul li a {
  background: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  position: relative;
  padding: 21px 50px 21px 28px;
  width: 310px;
  z-index: 1;
}
@media screen and (max-width: 768px) {
  .p-reservebox .l-inner .link ul li a {
    border-radius: 8px;
    padding: 16px 40px 16px 20px;
    width: 232px;
  }
}
.p-reservebox .l-inner .link ul li a:hover::before {
  background: rgba(41, 171, 226, 0.5);
  top: 0;
  left: 0;
  transition: 0.4s;
}
.p-reservebox .l-inner .link ul li a:hover .text {
  color: #005aaa;
  transition: 0.4s;
}
.p-reservebox .l-inner .link ul li a:hover .arrow {
  right: 20px;
  transition: 0.4s;
}
.p-reservebox .l-inner .link ul li a::before {
  content: "";
  background: rgba(41, 171, 226, 0.3);
  border-radius: 9px;
  position: absolute;
  left: 6px;
  top: 6px;
  height: calc(100% - 2px);
  width: calc(100% - 2px);
  z-index: -1;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .p-reservebox .l-inner .link ul li a::before {
    border-radius: 7px;
    left: 5px;
    top: 5px;
  }
}
.p-reservebox .l-inner .link ul li a::after {
  content: "";
  border: 3px solid #000;
  border-radius: 10px;
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-reservebox .l-inner .link ul li a::after {
    border-radius: 8px;
    border-width: 2px;
  }
}
.p-reservebox .l-inner .link ul li a .icon {
  margin-right: 10px;
}
@media screen and (max-width: 768px) {
  .p-reservebox .l-inner .link ul li a .icon {
    line-height: 1;
  }
}
.p-reservebox .l-inner .link ul li a .icon img {
  width: 28px;
}
@media screen and (max-width: 768px) {
  .p-reservebox .l-inner .link ul li a .icon img {
    width: 22px;
  }
}
.p-reservebox .l-inner .link ul li a .text {
  font-size: 20px;
  font-weight: 700;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .p-reservebox .l-inner .link ul li a .text {
    font-size: 15px;
  }
}
.p-reservebox .l-inner .link ul li a .arrow {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translate(0, -50%);
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .p-reservebox .l-inner .link ul li a .arrow {
    right: 20px;
  }
}
.p-reservebox .l-inner .link ul li a .arrow svg {
  color: #fed600;
  height: 20px;
  width: 20px;
}
@media screen and (max-width: 768px) {
  .p-reservebox .l-inner .link ul li a .arrow svg {
    height: 16px;
    width: 16px;
  }
}
.p-reservebox .l-inner .reserve_objbox > div {
  position: absolute;
  line-height: 1;
}
.p-reservebox .l-inner .reserve_objbox .obj01 {
  top: -110px;
  left: -15px;
  animation: 2.4s fuwafuwa1 infinite;
}
@media screen and (max-width: 1000px) {
  .p-reservebox .l-inner .reserve_objbox .obj01 {
    top: -145px;
    left: 55px;
    width: 35px;
  }
}
.p-reservebox .l-inner .reserve_objbox .obj02 {
  top: -85px;
  left: 30px;
  animation: 2s fuwafuwa1 infinite;
}
@media screen and (max-width: 1000px) {
  .p-reservebox .l-inner .reserve_objbox .obj02 {
    top: -120px;
    left: 95px;
    width: 21px;
  }
}
.p-reservebox .l-inner .reserve_objbox .obj03 {
  top: -45px;
  left: 0;
  animation: 2.2s fuwafuwa1 infinite;
}
@media screen and (max-width: 1000px) {
  .p-reservebox .l-inner .reserve_objbox .obj03 {
    top: -90px;
    left: 35px;
    width: 22px;
  }
}
.p-reservebox .l-inner .reserve_objbox .obj04 {
  top: -70px;
  right: -30px;
  animation: 2.2s fuwafuwa1 infinite;
}
@media screen and (max-width: 1000px) {
  .p-reservebox .l-inner .reserve_objbox .obj04 {
    display: none;
  }
}
.p-reservebox .l-inner .reserve_objbox .obj05 {
  top: -25px;
  right: 20px;
  animation: 2.5s fuwafuwa1 infinite;
}
@media screen and (max-width: 1000px) {
  .p-reservebox .l-inner .reserve_objbox .obj05 {
    display: none;
  }
}
.p-reservebox .l-inner .reserve_objbox .obj06 {
  bottom: -45px;
  left: -55px;
  animation: 2.2s yurayura1 infinite;
}
@media screen and (max-width: 1000px) {
  .p-reservebox .l-inner .reserve_objbox .obj06 {
    top: 275px;
    bottom: auto;
    left: 15px;
  }
  .p-reservebox .l-inner .reserve_objbox .obj06 img {
    width: 18px;
  }
}
.p-reservebox .l-inner .reserve_objbox .obj07 {
  bottom: -60px;
  left: 65px;
  animation: 2.1s yurayura1 infinite;
}
@media screen and (max-width: 1000px) {
  .p-reservebox .l-inner .reserve_objbox .obj07 {
    top: 290px;
    left: 45px;
    bottom: auto;
  }
  .p-reservebox .l-inner .reserve_objbox .obj07 img {
    width: 29px;
  }
}
.p-reservebox .l-inner .reserve_objbox .obj08 {
  bottom: -80px;
  left: 0;
  animation: 2.4s yurayura1 infinite;
}
@media screen and (max-width: 1000px) {
  .p-reservebox .l-inner .reserve_objbox .obj08 {
    top: 320px;
    left: 22px;
    bottom: auto;
  }
  .p-reservebox .l-inner .reserve_objbox .obj08 img {
    width: 24px;
  }
}
.p-reservebox .l-inner .reserve_objbox .obj09 {
  bottom: -125px;
  left: -40px;
  animation: 2.3s yurayura1 infinite;
}
@media screen and (max-width: 1000px) {
  .p-reservebox .l-inner .reserve_objbox .obj09 {
    top: 290px;
    right: 25px;
    left: auto;
    bottom: auto;
  }
  .p-reservebox .l-inner .reserve_objbox .obj09 img {
    width: 20px;
  }
}
.p-reservebox .l-inner .reserve_objbox .obj10 {
  bottom: -125px;
  left: 70px;
  animation: 2s yurayura1 infinite;
}
@media screen and (max-width: 1000px) {
  .p-reservebox .l-inner .reserve_objbox .obj10 {
    top: 325px;
    right: 5px;
    bottom: auto;
    left: auto;
  }
  .p-reservebox .l-inner .reserve_objbox .obj10 img {
    width: 30px;
  }
}
.p-reservebox .l-inner .reserve_objbox .obj11 {
  bottom: -140px;
  right: 240px;
  animation: 1.9s yurayura1 infinite;
}
@media screen and (max-width: 1000px) {
  .p-reservebox .l-inner .reserve_objbox .obj11 {
    right: 175px;
    bottom: -115px;
    width: 19px;
  }
}
.p-reservebox .l-inner .reserve_objbox .obj12 {
  bottom: -120px;
  right: 140px;
  animation: 2.2s yurayura1 infinite;
}
@media screen and (max-width: 1000px) {
  .p-reservebox .l-inner .reserve_objbox .obj12 {
    right: 120px;
    bottom: -95px;
    width: 33px;
  }
}
.p-reservebox .l-inner .reserve_objbox .obj13 {
  bottom: -155px;
  right: 70px;
  animation: 2s yurayura1 infinite;
}
@media screen and (max-width: 1000px) {
  .p-reservebox .l-inner .reserve_objbox .obj13 {
    right: 90px;
    bottom: -130px;
    width: 19px;
  }
}
.p-reservebox .l-inner .reserve_objbox .obj14 {
  bottom: -120px;
  right: 15px;
  animation: 2.1s yurayura1 infinite;
}
@media screen and (max-width: 1000px) {
  .p-reservebox .l-inner .reserve_objbox .obj14 {
    right: 55px;
    bottom: -95px;
    width: 22px;
  }
}
.p-reservebox .l-inner .reserve_objbox .obj15 {
  bottom: -80px;
  right: -60px;
  animation: 2.4s yurayura1 infinite;
}
@media screen and (max-width: 1000px) {
  .p-reservebox .l-inner .reserve_objbox .obj15 {
    right: 20px;
    bottom: -55px;
    width: 25px;
  }
}
.p-reservebox .l-inner .reserve_objbox .obj16 {
  bottom: -185px;
  right: -40px;
  animation: 2.2s yurayura1 infinite;
}
@media screen and (max-width: 1000px) {
  .p-reservebox .l-inner .reserve_objbox .obj16 {
    right: 28px;
    bottom: -150px;
    width: 29px;
  }
}
.p-reservebox .l-inner .reserve_objbox .obj17 {
  display: none;
}
@media screen and (max-width: 1000px) {
  .p-reservebox .l-inner .reserve_objbox .obj17 {
    display: block;
    top: -118px;
    right: 35px;
    animation: 2s fuwafuwa1 infinite;
  }
}
.p-reservebox .l-inner .reserve_objbox .obj18 {
  display: none;
}
@media screen and (max-width: 1000px) {
  .p-reservebox .l-inner .reserve_objbox .obj18 {
    display: block;
    top: -105px;
    right: 25px;
    animation: 1.8s fuwafuwa1 infinite;
  }
}
.p-reservebox .l-inner .reserve_objbox .obj19 {
  display: none;
}
@media screen and (max-width: 1000px) {
  .p-reservebox .l-inner .reserve_objbox .obj19 {
    display: block;
    top: -75px;
    right: 55px;
  }
}

.p-othermenu {
  margin-top: 180px;
}
@media screen and (max-width: 768px) {
  .p-othermenu {
    margin-top: 140px;
  }
}
.p-othermenu .l-inner .othermenu_title {
  text-align: center;
}
.p-othermenu .l-inner .othermenu_title span {
  border: 2px solid #fed600;
  border-radius: 6px;
  display: inline-block;
  font-size: 16px;
  font-weight: 700;
  padding: 9px 26px;
}
.p-othermenu .l-inner .p-othermenu__column {
  display: flex;
  justify-content: center;
  margin-top: 42px;
}
@media screen and (max-width: 768px) {
  .p-othermenu .l-inner .p-othermenu__column {
    flex-wrap: wrap;
  }
}
.p-othermenu .l-inner .p-othermenu__column .p-othermenu__item {
  margin-right: 12px;
  max-width: 240px;
}
@media screen and (max-width: 768px) {
  .p-othermenu .l-inner .p-othermenu__column .p-othermenu__item {
    margin-right: 0;
    margin-top: 10px;
    max-width: none;
    width: 100%;
  }
  .p-othermenu .l-inner .p-othermenu__column .p-othermenu__item:first-child {
    margin-top: 8px;
  }
}
.p-othermenu .l-inner .p-othermenu__column .p-othermenu__item a {
  display: inline-block;
}
@media screen and (max-width: 768px) {
  .p-othermenu .l-inner .p-othermenu__column .p-othermenu__item a {
    display: flex;
    align-items: center;
  }
}
.p-othermenu .l-inner .p-othermenu__column .p-othermenu__item a:hover {
  opacity: 0.8;
}
.p-othermenu .l-inner .p-othermenu__column .p-othermenu__item a:hover .title .c-svg {
  transform: translate(5px, 0);
}
@media screen and (max-width: 768px) {
  .p-othermenu .l-inner .p-othermenu__column .p-othermenu__item a .img {
    width: 54.6%;
  }
}
.p-othermenu .l-inner .p-othermenu__column .p-othermenu__item a .img img {
  width: 100%;
}
.p-othermenu .l-inner .p-othermenu__column .p-othermenu__item a .title {
  color: #005aaa;
  font-size: 13px;
  font-weight: 500;
  text-align: center;
  margin-top: 26px;
}
@media screen and (max-width: 768px) {
  .p-othermenu .l-inner .p-othermenu__column .p-othermenu__item a .title {
    font-size: 12px;
    text-align: left;
    margin-top: 0;
    padding: 0 0 5px 22px;
    width: 45.4%;
  }
}
.p-othermenu .l-inner .p-othermenu__column .p-othermenu__item a .title span {
  color: #000;
  display: block;
  font-size: 10px;
  margin-top: 3px;
}
@media screen and (max-width: 768px) {
  .p-othermenu .l-inner .p-othermenu__column .p-othermenu__item a .title span {
    font-size: 9px;
  }
}
.p-othermenu .l-inner .p-othermenu__column .p-othermenu__item a .title .c-svg {
  color: #fed600;
  margin-top: 18px;
  transition: 0.4s;
}
@media screen and (max-width: 768px) {
  .p-othermenu .l-inner .p-othermenu__column .p-othermenu__item a .title .c-svg {
    margin-top: 10px;
  }
}
.p-othermenu .l-inner .p-othermenu__column .p-othermenu__item a .title .c-svg svg {
  margin: 0 auto;
  height: 30px;
  width: 30px;
}
@media screen and (max-width: 768px) {
  .p-othermenu .l-inner .p-othermenu__column .p-othermenu__item a .title .c-svg svg {
    margin: 0;
  }
}

.p-photostudio {
  padding: 110px 0 0;
}
@media screen and (max-width: 1000px) {
  .p-photostudio {
    padding: 90px 0 0;
  }
}
.p-photostudio .l-inner .photostudio_inner {
  display: flex;
  margin: 0 auto;
  max-width: 915px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .p-photostudio .l-inner .photostudio_inner {
    flex-direction: column;
  }
}
.p-photostudio .l-inner .photostudio_inner .textarea {
  padding-top: 60px;
  margin-right: auto;
  width: 35%;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .p-photostudio .l-inner .photostudio_inner .textarea {
    margin: 0 auto;
    padding-top: 65px;
    width: 78%;
  }
}
@keyframes ani_photostudio1 {
  0%, 100% {
    transform: scale(0.8);
    opacity: 1;
  }
  50% {
    transform: scale(1.3);
    opacity: 0.7;
  }
}
.p-photostudio .l-inner .photostudio_inner .textarea .objbox {
  position: absolute;
  left: -25px;
  top: 0;
  height: 46px;
  width: 58px;
}
@media screen and (max-width: 1000px) {
  .p-photostudio .l-inner .photostudio_inner .textarea .objbox {
    left: 50%;
    transform: translate(-50%, 0);
  }
}
.p-photostudio .l-inner .photostudio_inner .textarea .objbox > div {
  position: absolute;
  line-height: 1;
}
.p-photostudio .l-inner .photostudio_inner .textarea .objbox .obj1 {
  right: 0;
  bottom: 0;
}
.p-photostudio .l-inner .photostudio_inner .textarea .objbox .obj2 {
  left: 0;
  top: 12px;
  animation: 3s ani_photostudio1 infinite;
  animation-delay: 1.4s;
}
.p-photostudio .l-inner .photostudio_inner .textarea .objbox .obj3 {
  left: 12px;
  top: 0;
  animation: 3s ani_photostudio1 infinite;
}
.p-photostudio .l-inner .photostudio_inner .textarea .title {
  color: #005aaa;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0.11em;
}
@media screen and (max-width: 1000px) {
  .p-photostudio .l-inner .photostudio_inner .textarea .title {
    font-size: 23px;
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .p-photostudio .l-inner .photostudio_inner .textarea .title {
    font-size: 19px;
  }
}
.p-photostudio .l-inner .photostudio_inner .textarea .title span {
  display: inline-block;
  position: relative;
  padding-bottom: 20px;
}
@media screen and (max-width: 768px) {
  .p-photostudio .l-inner .photostudio_inner .textarea .title span {
    padding-bottom: 30px;
  }
}
.p-photostudio .l-inner .photostudio_inner .textarea .title span::before {
  content: "";
  border-radius: 2rem;
  background: #fed600;
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
}
.p-photostudio .l-inner .photostudio_inner .textarea .text {
  font-size: 14px;
  font-weight: 500;
  margin-top: 32px;
}
@media screen and (max-width: 1000px) {
  .p-photostudio .l-inner .photostudio_inner .textarea .text {
    font-size: 13px;
  }
}
@media screen and (max-width: 768px) {
  .p-photostudio .l-inner .photostudio_inner .textarea .text {
    font-size: 12px;
    line-height: 2.25;
    margin-top: 30px;
  }
}
@media screen and (max-width: 1000px) {
  .p-photostudio .l-inner .photostudio_inner .textarea .c-btn01 {
    display: none;
  }
}
.p-photostudio .l-inner .photostudio_inner .article_wrap {
  display: flex;
  flex-wrap: wrap;
  width: 54.5%;
}
@media screen and (max-width: 1000px) {
  .p-photostudio .l-inner .photostudio_inner .article_wrap {
    margin: 38px auto 0;
    width: 78%;
  }
}
@media screen and (max-width: 768px) {
  .p-photostudio .l-inner .photostudio_inner .article_wrap {
    width: 100%;
  }
}
.p-photostudio .l-inner .photostudio_inner .article_wrap .article {
  margin-right: 3.6%;
  width: 48.2%;
}
@media screen and (max-width: 768px) {
  .p-photostudio .l-inner .photostudio_inner .article_wrap .article {
    margin-right: 4%;
    width: 48%;
  }
}
.p-photostudio .l-inner .photostudio_inner .article_wrap .article:nth-child(even) {
  margin-right: 0;
}
.p-photostudio .l-inner .photostudio_inner .article_wrap .article:nth-child(n+3) {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  .p-photostudio .l-inner .photostudio_inner .article_wrap .article:nth-child(n+3) {
    margin-top: 20px;
  }
}

.p-instagram {
  padding: 200px 0 0;
}
@media screen and (max-width: 768px) {
  .p-instagram {
    padding: 280px 0 0;
  }
}
.p-instagram .l-inner .instagram_inner {
  position: relative;
  padding: 0 15px;
}
@media screen and (max-width: 768px) {
  .p-instagram .l-inner .instagram_inner {
    padding: 0;
  }
}
.p-instagram .l-inner .instagram_inner .title {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  font-weight: 700;
  letter-spacing: 0.1em;
}
.p-instagram .l-inner .instagram_inner .title .c-svg {
  margin-right: 15px;
}
@media screen and (max-width: 768px) {
  .p-instagram .l-inner .instagram_inner .title .c-svg {
    margin-top: 3px;
  }
}
.p-instagram .l-inner .instagram_inner .title .c-svg svg {
  height: 26px;
  width: 26px;
}
@media screen and (max-width: 768px) {
  .p-instagram .l-inner .instagram_inner .title .c-svg svg {
    height: 19px;
    width: 19px;
  }
}
.p-instagram .l-inner .instagram_inner .list {
  margin-top: 48px;
}
@media screen and (max-width: 768px) {
  .p-instagram .l-inner .instagram_inner .list {
    margin-top: 38px;
  }
}
.p-instagram .l-inner .instagram_inner .list #sb_instagram #sbi_images {
  display: flex;
  flex-wrap: wrap;
}
.p-instagram .l-inner .instagram_inner .list #sb_instagram #sbi_images .sbi_item {
  margin-right: 1.25% !important;
  width: 19%;
}
@media screen and (max-width: 768px) {
  .p-instagram .l-inner .instagram_inner .list #sb_instagram #sbi_images .sbi_item {
    margin-right: 4% !important;
    margin-top: 4% !important;
    width: 48%;
  }
  .p-instagram .l-inner .instagram_inner .list #sb_instagram #sbi_images .sbi_item:nth-child(even) {
    margin-right: 0 !important;
  }
}
.p-instagram .l-inner .instagram_inner .list #sb_instagram #sbi_images .sbi_item:last-child {
  margin-right: 0 !important;
}
@media screen and (max-width: 768px) {
  .p-instagram .l-inner .instagram_inner .list #sb_instagram #sbi_images .sbi_item:last-child {
    display: none;
  }
}
.p-instagram .l-inner .instagram_inner .list #sb_instagram .sbi_photo {
  background-size: cover !important;
  background-position: center !important;
}
.p-instagram .l-inner .instagram_inner .list #sb_instagram .sbi_photo img {
  display: none;
}
.p-instagram .l-inner .instagram_inner .more {
  position: absolute;
  right: 30px;
  top: 0;
}
@media screen and (max-width: 768px) {
  .p-instagram .l-inner .instagram_inner .more {
    position: static;
    text-align: center;
    margin-top: 38px;
  }
}
.p-instagram .l-inner .instagram_inner .more a {
  border-bottom: 2px solid #fed600;
  display: inline-block;
  font-size: 13px;
  font-weight: 500;
  padding: 0 24px 6px 2px;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-instagram .l-inner .instagram_inner .more a {
    padding: 0 24px 4px 2px;
  }
}
.p-instagram .l-inner .instagram_inner .more a:hover {
  opacity: 0.8;
}
.p-instagram .l-inner .instagram_inner .more a .c-svg {
  position: absolute;
  right: 0;
  top: 3px;
}
.p-instagram .l-inner .instagram_inner .more a .c-svg svg {
  color: #fed600;
  height: 16px;
  width: 16px;
}

.objbox > div {
  position: absolute;
  line-height: 1;
  transition: 0.8s ease-out;
  z-index: -1;
}
.objbox .reserve01 {
  left: -10px;
  top: -120px;
}
@media screen and (max-width: 1000px) {
  .objbox .reserve01 {
    left: calc(50% - 150px);
    transform: translate(-140px, 0);
    width: 312px;
  }
}
.objbox .reserve02 {
  left: -50px;
  bottom: -130px;
}
@media screen and (max-width: 1000px) {
  .objbox .reserve02 {
    left: calc(50% - 170px);
    top: 280px;
    width: 355px;
    transform: translate(-170px, 0);
  }
}
.objbox .reserve03 {
  right: -45px;
  bottom: -160px;
}
@media screen and (max-width: 1000px) {
  .objbox .reserve03 {
    right: 25px;
  }
}
.objbox .instagram01 {
  left: -110px;
  bottom: -20px;
}
@media screen and (max-width: 1000px) {
  .objbox .instagram01 {
    left: -5px;
    bottom: -180px;
  }
}
.objbox .reserve01_s {
  left: -10px;
}
@media screen and (max-width: 1000px) {
  .objbox .reserve01_s {
    left: 50%;
    transform: translate(-140px, 0);
    width: 312px;
  }
}
.objbox .reserve02_s {
  left: -50px;
}
@media screen and (max-width: 1000px) {
  .objbox .reserve02_s {
    left: 50%;
    transform: translate(-170px, 0);
    width: 355px;
  }
}
.objbox .reserve03_s {
  right: -45px;
}
@media screen and (max-width: 1000px) {
  .objbox .reserve03_s {
    right: 25px;
  }
}
.objbox .instagram01_s {
  left: -110px;
}
@media screen and (max-width: 1000px) {
  .objbox .instagram01_s {
    left: -5px;
  }
}

/* アニメーション */
/* ============================================ */
#js-kv01 {
  transform: scale(0.5);
  animation: kv01 0.5s forwards ease-in-out, kv01-float 3s 0.45s infinite ease-in-out;
}

@keyframes kv01 {
  0% {
    transform: scale(0.2);
  }
  70% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes kv01-float {
  0% {
    transform: translateY(0) scale(1);
  }
  50% {
    transform: translateY(-2.5%) scale(1);
  }
  100% {
    transform: translateY(0) scale(1);
  }
}
#js-kv02 {
  transform: translate(0, 0);
  animation: kv02 3s forwards ease-in-out infinite;
}

#js-kv03 {
  transform: translate(0, 12px);
  animation: kv03 2.8s forwards ease-in-out infinite;
}

#js-kv04 {
  transform: translate(0, 0);
  animation: kv02 3.1s forwards ease-in-out infinite;
}

#js-kv05 {
  transform: translate(0, 12px);
  animation: kv03 2.6s forwards ease-in-out infinite;
}

#js-kv06 {
  transform: translate(0, 0);
  animation: kv02 3.2s forwards ease-in-out infinite;
}

@keyframes kv02 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -12px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@keyframes kv03 {
  0% {
    transform: translate(0, 12px);
  }
  50% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 12px);
  }
}
#js-intro01 {
  transform: scale(0);
}
#js-intro01.is-shown {
  animation: intro01 0.5s forwards ease-in-out;
}

@keyframes intro01 {
  0% {
    transform: scale(0);
  }
  95% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}
#js-intro02 {
  transform: translate(100px, -100px);
  opacity: 0;
}
#js-intro02.is-shown {
  animation: intro02 0.5s forwards ease-in-out;
}

@keyframes intro02 {
  0% {
    transform: translate(60px, -80px);
    opacity: 0;
  }
  95% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
#js-voice01 {
  animation: voice01 3s forwards ease-in-out infinite;
}

#js-voice02 {
  animation: voice01 3s forwards ease-in-out infinite;
  animation-delay: 0.8s;
}

@keyframes voice01 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(0, -15px);
  }
  100% {
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 768px) {
  @keyframes voice01 {
    0% {
      transform: translate(0, 0);
    }
    50% {
      transform: translate(0, -10px);
    }
    100% {
      transform: translate(0, 0);
    }
  }
}
#js-voice03 {
  opacity: 0;
}
#js-voice03.is-shown {
  animation: voice03 1s ease-in-out forwards;
}

@keyframes voice03 {
  0% {
    transform: translate(0, 15px);
    opacity: 0;
  }
  100% {
    transform: translate(0, 0);
    opacity: 1;
  }
}
.js-course01 {
  animation: course01 1.5s steps(1, end) infinite;
}

@keyframes course01 {
  0% {
    transform: rotate(0);
  }
  40% {
    transform: rotate(5deg);
  }
  100% {
    transform: rotate(0);
  }
}
.js-course02 {
  animation: course02 1.5s steps(1, end) infinite;
}

@keyframes course02 {
  0% {
    transform: rotate(0);
  }
  40% {
    transform: rotate(-5deg);
  }
  100% {
    transform: rotate(0);
  }
}
.js-large {
  transform: scale(0.3);
  opacity: 0;
}
.js-large.is-shown {
  animation: large 0.5s forwards ease-in-out;
}

@keyframes large {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }
  70% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
/* keyframe */
/* ============================================ */
@keyframes btn_shine {
  20% {
    left: 100%;
  }
  100% {
    left: 100%;
  }
}
@keyframes floating-y01 {
  0% {
    transform: translateY(-5%);
  }
  100% {
    transform: translateY(5%);
  }
}
@keyframes floating-y02 {
  0% {
    transform: translateY(5%);
  }
  100% {
    transform: translateY(-5%);
  }
}
/* index */
/* ============================================ */
.p-kv {
  position: relative;
}
.p-kv__bg img {
  width: 100%;
}
.p-kv__txt {
  position: absolute;
  top: 9vw;
  right: 9.5vw;
}
@media screen and (max-width: 768px) {
  .p-kv__txt {
    top: 12vw;
    right: -13.7vw;
    width: 127.4vw;
  }
}
.p-kv__txt img {
  width: 56.0833vw;
}
@media screen and (max-width: 768px) {
  .p-kv__txt img {
    width: 100%;
  }
}
.p-kv__gallery.pc {
  display: flex;
  position: absolute;
  left: 50%;
  bottom: -90px;
  transform: translate(-50%, 0);
  margin-left: 40px;
  width: 1035px;
}
@media screen and (max-width: 1000px) {
  .p-kv__gallery.pc {
    bottom: -95px;
  }
}
@media screen and (max-width: 768px) {
  .p-kv__gallery.pc {
    display: none;
  }
}
.p-kv__gallery.pc li {
  box-shadow: 10px 10px 15px rgba(0, 0, 0, 0.2);
  border-radius: 20px;
  margin-right: -20px;
  position: relative;
}
.p-kv__gallery.pc li:nth-of-type(3) {
  z-index: 5;
}
.p-kv__gallery.pc li:nth-of-type(4) {
  z-index: 4;
}
.p-kv__gallery.sp {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-kv__gallery.sp {
    display: block;
    position: absolute;
    bottom: -135px;
    left: 0;
  }
}
.p-kv__gallery.sp .slider {
  overflow: hidden;
  width: 100%;
}
.p-kv__gallery.sp .slider__track {
  display: flex;
  width: max-content;
}
.p-kv__gallery.sp .slider__track img {
  width: 1000px;
  height: auto;
  margin-left: -80px;
}

.p-intro {
  background: #ff8c1f;
  padding-top: 130px;
  padding-bottom: 100px;
}
@media screen and (max-width: 1000px) {
  .p-intro {
    padding-top: 72px;
    padding-bottom: 135px;
  }
}
.p-intro__inner {
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .p-intro__inner {
    max-width: 375px;
  }
}
.p-intro__column {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .p-intro__column {
    flex-direction: column;
  }
}
.p-intro__catch {
  padding-left: 25px;
  width: 46%;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .p-intro__catch {
    text-align: center;
    padding: 0;
    width: 100%;
    position: relative;
    z-index: 10;
  }
}
@media screen and (max-width: 768px) {
  .p-intro__catch img {
    width: 330px;
  }
}
.p-intro__catch .img01 {
  position: absolute;
  right: 0;
  top: 0;
}
.p-intro__txtbox {
  margin-top: 35px;
  position: relative;
  width: 52.5%;
}
@media screen and (max-width: 1000px) {
  .p-intro__txtbox {
    text-align: center;
    margin-top: 25px;
    width: 100%;
  }
}
.p-intro__txtbox-tit {
  color: #ffff6e;
  font-size: 32px;
  font-weight: bold;
  line-height: 1.6;
}
@media screen and (max-width: 1000px) {
  .p-intro__txtbox-tit {
    font-size: 30px;
    line-height: 1.3667;
  }
}
.p-intro__txtbox-tit br {
  display: none;
}
@media screen and (max-width: 1000px) {
  .p-intro__txtbox-tit br {
    display: block;
  }
}
.p-intro__txtbox-txt1 {
  color: #fff;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.6;
}
@media screen and (max-width: 1000px) {
  .p-intro__txtbox-txt1 {
    font-size: 17px;
    line-height: 1.5882;
    margin-top: 8px;
  }
}
.p-intro__txtbox-txt2 {
  margin-top: 30px;
}
@media screen and (max-width: 1000px) {
  .p-intro__txtbox-txt2 {
    text-align: left;
    padding-left: 35px;
    margin-top: 25px;
  }
}
.p-intro__txtbox-img {
  position: absolute;
  left: 310px;
  bottom: -100px;
  width: 247px;
  z-index: 10;
}
@media screen and (max-width: 1000px) {
  .p-intro__txtbox-img {
    left: 210px;
    bottom: 0;
    width: 213px;
  }
}

.p-voice {
  background: #fcf6e9 url(../img/voice_bg.png) no-repeat center top;
  position: relative;
  z-index: 0;
  padding-top: 55px;
}
@media screen and (max-width: 768px) {
  .p-voice {
    background: #fcf6e9 url(../img/voice_bg_sp.png) no-repeat center top;
    padding-top: 50px;
  }
}
.p-voice::before {
  content: "";
  position: absolute;
  left: 0;
  top: -72px;
  background: url(../img/voice_bg_top.png) no-repeat center top;
  background-size: 100% 175px;
  height: 175px;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 1200px) {
  .p-voice::before {
    background-size: 1200px 175px;
    left: 50%;
    transform: translate(-50%, 0);
    width: 1200px;
  }
}
@media screen and (max-width: 768px) {
  .p-voice::before {
    background: url(../img/voice_bg_top_sp.png) no-repeat center top;
    background-size: 815px 110px;
    height: 110px;
    width: 815px;
  }
}
.p-voice__bg {
  position: absolute;
  left: 50%;
  top: -45px;
  transform: translate(-50%, 0);
  width: 985px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-voice__bg {
    top: -140px;
    width: 448px;
  }
}
.p-voice__bg .img01 {
  position: absolute;
  left: 0;
  top: 0;
}
.p-voice__inner {
  margin: 0 auto;
  max-width: 1170px;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .p-voice__inner {
    padding: 0 20px;
  }
}
.p-voice__tit {
  font-weight: bold;
  text-align: center;
}
.p-voice__tit br {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-voice__tit br {
    display: block;
  }
}
.p-voice__tit-sub {
  color: #44311a;
  font-size: 15px;
  line-height: 2.0667;
}
@media screen and (max-width: 768px) {
  .p-voice__tit-sub {
    line-height: 1.4667;
  }
}
.p-voice__tit-main {
  margin-top: 2px;
}
.p-voice__tit-main > span {
  display: block;
}
.p-voice__tit-main > span:nth-of-type(1) {
  color: #ff8c1f;
  font-size: 30px;
  line-height: 1.3333;
}
@media screen and (max-width: 768px) {
  .p-voice__tit-main > span:nth-of-type(1) {
    font-size: 25px;
    line-height: 1.6;
  }
}
.p-voice__tit-main > span:nth-of-type(2) {
  color: #ffa11f;
  font-size: 59px;
  line-height: 1.3013;
}
@media screen and (max-width: 768px) {
  .p-voice__tit-main > span:nth-of-type(2) {
    font-size: 50px;
    line-height: 1;
  }
}
.p-voice__tit-main > span:nth-of-type(2) span {
  color: #ff8c1f;
}
.p-voice__list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 35px;
}
@media screen and (max-width: 768px) {
  .p-voice__list {
    margin-top: 30px;
  }
}
.p-voice__item {
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 0 10px rgba(35, 24, 21, 0.1);
  padding: 8px 20px 20px;
  max-width: 472px;
  width: 100%;
}
@media screen and (max-width: 1140px) {
  .p-voice__item {
    max-width: calc((100% - 20px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .p-voice__item {
    max-width: 100%;
  }
}
.p-voice__item:nth-of-type(1), .p-voice__item:nth-of-type(5) {
  margin-left: 65px;
}
@media screen and (max-width: 1140px) {
  .p-voice__item:nth-of-type(1), .p-voice__item:nth-of-type(5) {
    margin-left: 0;
  }
}
.p-voice__item:nth-of-type(3) {
  margin-left: auto;
}
@media screen and (max-width: 1140px) {
  .p-voice__item:nth-of-type(3) {
    margin-left: 0;
  }
}
.p-voice__item-prof {
  position: relative;
  display: flex;
  align-items: center;
  padding: 5px 0;
}
.p-voice__item-prof::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -33px;
  background: url(../img/voice_prof_under.png) no-repeat center top;
  background-size: 100% auto;
  height: 33px;
  width: 100%;
}
.p-voice__item-grad {
  color: #fff;
  font-size: 21px;
  font-weight: bold;
  background: url(../img/voice_prof_grad_bg.png) no-repeat center;
  background-size: 66px 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  letter-spacing: 0.4em;
  padding-left: 6px;
  height: 35px;
  width: 66px;
}
.p-voice__item-name {
  color: #b3b3b3;
  font-size: 15px;
  font-weight: bold;
  padding-left: 8px;
}
.p-voice__item-img {
  position: absolute;
  left: 130px;
  bottom: 0;
}
@media screen and (max-width: 768px) {
  .p-voice__item-img {
    left: auto;
    right: 0;
  }
}
.p-voice__item-tit {
  color: #62451a;
  font-size: 24px;
  font-weight: bold;
  margin-top: 15px;
  position: relative;
  z-index: 10;
  line-height: 1.333;
}
.p-voice__item-tit span {
  color: #ff8c1f;
}
.p-voice__item-tit br {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-voice__item-tit br {
    display: block;
  }
}
.p-voice__item-txt {
  color: #766857;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
}
@media screen and (max-width: 768px) {
  .p-voice__item-txt {
    font-size: 15px;
    margin-top: 5px;
    letter-spacing: -0.015em;
  }
}
.p-voice__item-txt br {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-voice__item-txt br {
    display: block;
  }
}
.p-voice__att {
  color: #766857;
  font-size: 14px;
  text-align: center;
  margin-top: 16px;
  font-weight: 400;
}
@media screen and (max-width: 768px) {
  .p-voice__att {
    font-size: 13px;
    line-height: 1.6154;
    margin-top: 22px;
  }
}
.p-voice__att br {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-voice__att br {
    font-size: 13px;
    display: block;
  }
}
.p-voice__btn {
  text-align: center;
  margin: 20px auto 0;
  width: 90%;
  position: relative;
}
.p-voice__btn button {
  border: 1px solid #62451a;
  border-radius: 10rem;
  color: #62451a;
  font-size: 18px;
  font-weight: bold;
  display: block;
  padding: 10px 15px 10px 10px;
  width: 100%;
  position: relative;
  z-index: 0;
}
.p-voice__btn button::before, .p-voice__btn button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 20px;
  margin-top: -1px;
  background: #fff;
  border-radius: 2rem;
  height: 1px;
  width: 13px;
  z-index: 1;
}
.p-voice__btn button::after {
  transform: rotate(90deg);
  transition: 0.4s;
}
.p-voice__btn button span {
  display: block;
  width: 100%;
}
.p-voice__btn button span::before {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  margin-top: -12px;
  background: #ff8c1f;
  border-radius: 50%;
  height: 24px;
  width: 24px;
}
.p-voice__btn button.open::after {
  transform: rotate(0deg);
  transition: 0.4s;
}
.p-voice__btn::before {
  content: "";
  position: absolute;
  left: -40px;
  top: -95px;
  background-image: linear-gradient(0deg, #fcf6e9 15%, transparent);
  height: 100px;
  width: 100vw;
  display: none;
}
@media screen and (max-width: 768px) {
  .p-voice__btn::before {
    display: block;
  }
}
.p-voice__btn.open::before {
  display: none;
}
.p-voice__result {
  background: url(../img/voice_result_bg.png) no-repeat left bottom;
  background-size: 1200px auto;
  position: relative;
  margin-top: 32px;
  height: 282px;
}
@media screen and (max-width: 1000px) {
  .p-voice__result {
    background-position: left -80px bottom;
  }
}
@media screen and (max-width: 768px) {
  .p-voice__result {
    background: none;
    height: auto;
    margin-top: 18px;
  }
}
.p-voice__result::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  background: #fff;
  height: 261px;
  width: 100%;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-voice__result::before {
    display: none;
  }
}
.p-voice__result__inner {
  padding-left: 335px;
  max-width: 1000px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .p-voice__result__inner {
    padding-left: 200px;
  }
}
@media screen and (max-width: 768px) {
  .p-voice__result__inner {
    padding: 0;
  }
}
.p-voice__result-img {
  margin-top: -18px;
}
@media screen and (max-width: 1000px) {
  .p-voice__result-img {
    text-align: center;
  }
}
@media screen and (max-width: 768px) {
  .p-voice__result-img {
    margin: 0;
  }
}
@media screen and (max-width: 768px) {
  .p-voice__result-img img {
    width: 100%;
  }
}
.p-voice__result-att {
  color: #766857;
  font-size: 13px;
  text-align: center;
  line-height: 1.5;
  padding: 0 20px;
  position: relative;
  z-index: 10;
}
@media screen and (max-width: 1000px) {
  .p-voice__result-att {
    font-size: 12px;
  }
}
@media screen and (max-width: 768px) {
  .p-voice__result-att {
    background: #fff;
    font-size: 14px;
    line-height: 1.6154;
    margin-top: -10px;
    padding-bottom: 32px;
  }
}
.p-voice__result-att br {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-voice__result-att br {
    display: block;
  }
}

.p-purpose {
  border-top: 8px solid #ffd11f;
  padding-bottom: 55px;
}
.p-purpose__tit {
  background: #ff8c1f;
  color: #fff;
  text-align: center;
  padding: 60px 20px 42px;
  border-top: 8px solid #ffaf1f;
}
@media screen and (max-width: 768px) {
  .p-purpose__tit {
    padding: 40px 20px 35px;
  }
}
.p-purpose__inve {
  background: url(../img/purpose_inve_bg.png) repeat-x top center;
  background-size: 40px 250px;
  margin-top: -23px;
  text-align: center;
  position: relative;
}
@media screen and (max-width: 768px) {
  .p-purpose__inve {
    background: url(../img/purpose_inve_bg_sp.png) repeat-x top center;
    background-size: 5px 495px;
    margin-top: 0;
  }
}
.p-purpose__inve-inner {
  margin: 0 auto;
  max-width: 900px;
  position: relative;
}
.p-purpose__inve-inner .txt {
  position: absolute;
  right: 186px;
  top: 56px;
  text-align: center;
}
@media screen and (max-width: 900px) {
  .p-purpose__inve-inner .txt {
    top: 6.2vw;
    right: 21vw;
  }
}
@media screen and (max-width: 768px) {
  .p-purpose__inve-inner .txt {
    top: 37px;
    right: 50%;
    margin-right: -146px;
  }
}
@media screen and (max-width: 900px) {
  .p-purpose__inve-inner .txt img {
    width: 32vw;
  }
}
@media screen and (max-width: 768px) {
  .p-purpose__inve-inner .txt img {
    width: 292px;
  }
}
.p-purpose__inner {
  margin: 0 auto;
  max-width: 1040px;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .p-purpose__inner {
    padding: 0 20px;
  }
}
.p-purpose__merit {
  margin-top: 30px;
}
@media screen and (max-width: 768px) {
  .p-purpose__merit {
    margin-top: 5px;
  }
}
.p-purpose__merit-tit {
  text-align: center;
}
.p-purpose__list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 60px 8%;
  margin-top: 32px;
}
@media screen and (max-width: 768px) {
  .p-purpose__list {
    gap: 50px 8%;
    margin-top: 40px;
  }
}
.p-purpose__item {
  position: relative;
  width: 28%;
}
@media screen and (max-width: 1000px) {
  .p-purpose__item {
    width: 44%;
  }
}
@media screen and (max-width: 768px) {
  .p-purpose__item {
    width: 100%;
  }
}
.p-purpose__item::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background: url(../img/purpose_merit_bg.png) no-repeat center;
  background-size: 297px auto;
  width: 297px;
  height: 297px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-purpose__item::before {
    top: -60px;
    left: -100px;
    transform: translate(0, 0);
  }
}
@media screen and (max-width: 768px) {
  .p-purpose__item:nth-of-type(even)::before {
    top: -110px;
    left: auto;
    right: -70px;
  }
}
.p-purpose__item-tit {
  display: flex;
  align-items: center;
  line-height: 1.2917;
}
.p-purpose__item-tit h3 {
  color: #62451a;
  font-size: 24px;
  font-weight: bold;
  padding-left: 12px;
}
.p-purpose__item-tit h3 span {
  color: #ff8c1e;
}
.p-purpose__item-txt {
  color: #766857;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 10px;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 768px) {
  .p-purpose__item-txt {
    letter-spacing: 0.06em;
  }
}

.p-feature {
  background: #fcf6e9;
  padding-bottom: 45px;
}
@media screen and (max-width: 1000px) {
  .p-feature {
    padding-bottom: 75px;
  }
}
.p-feature__inner {
  margin: 0 auto;
  max-width: 1060px;
  padding: 0 40px;
}
@media screen and (max-width: 768px) {
  .p-feature__inner {
    padding: 0 20px;
  }
}
.p-feature__tit {
  text-align: center;
  line-height: 1.5;
}
.p-feature__tit-sub {
  color: #62451a;
  font-size: 21px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-feature__tit-sub {
    font-size: 18px;
  }
}
.p-feature__tit-main {
  color: #ff8c1f;
  font-size: 53px;
  font-weight: bold;
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  .p-feature__tit-main {
    font-size: 40px;
  }
}
.p-feature__tit-main span {
  color: #ffa11f;
}
.p-feature__tit-main br {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-feature__tit-main br {
    display: block;
  }
}
.p-feature__tit-txt {
  color: #62451a;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 8px;
}
@media screen and (max-width: 768px) {
  .p-feature__tit-txt {
    font-size: 17px;
    margin-top: 15px;
  }
}
.p-feature__point {
  margin-top: 30px;
  padding-top: 32px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 768px) {
  .p-feature__point {
    padding-top: 35px;
  }
}
.p-feature__point::before {
  content: "";
  background: url(../img/feature_point_top.png) no-repeat center top;
  background-size: 779px auto;
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  height: 57px;
  width: 779px;
  z-index: -1;
}
@media screen and (max-width: 768px) {
  .p-feature__point::before {
    background-size: 375px auto;
    width: 375px;
  }
}
.p-feature__point-line {
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-feature__point-line img {
    width: 320px;
  }
}
.p-feature__point-column {
  display: flex;
  justify-content: space-between;
  margin-top: 45px;
}
@media screen and (max-width: 1000px) {
  .p-feature__point-column {
    flex-direction: column;
    margin-top: 40px;
  }
}
.p-feature__point-header {
  padding-left: 2%;
  width: 32%;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 1000px) {
  .p-feature__point-header {
    text-align: center;
    padding: 0;
    width: 100%;
  }
}
.p-feature__point-header::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  background: url(../img/feature_point_tit_bg.png) no-repeat center;
  background-size: 431px 414px;
  transform: translate(-50%, 0);
  height: 414px;
  width: 431px;
  z-index: -1;
}
@media screen and (max-width: 1000px) {
  .p-feature__point-tit img {
    width: 255px;
  }
}
.p-feature__point-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  width: 65%;
}
@media screen and (max-width: 1000px) {
  .p-feature__point-list {
    width: 100%;
  }
}
.p-feature__point-item {
  background: #fff;
  box-shadow: 20px 20px 12px rgba(0, 0, 0, 0.15);
  border-radius: 10rem;
  padding: 10px 60px 10px 55px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  min-height: 190px;
  width: 92%;
}
@media screen and (max-width: 1000px) {
  .p-feature__point-item {
    gap: 0;
    border-radius: 12px;
    padding: 20px 20px 28px 20px;
    width: 100%;
    flex-wrap: wrap;
  }
}
.p-feature__point-item:nth-of-type(even) {
  margin-left: auto;
}
@media screen and (max-width: 1000px) {
  .p-feature__point-item:nth-of-type(even) .p-feature__point-item-tit {
    order: 2;
  }
}
@media screen and (max-width: 1000px) {
  .p-feature__point-item:nth-of-type(even) .p-feature__point-item-img {
    order: 1;
  }
}
.p-feature__point-item-tit {
  color: #ff8c1f;
  font-size: 24px;
  font-weight: bold;
  line-height: 1.2917;
}
@media screen and (max-width: 1000px) {
  .p-feature__point-item-tit {
    font-size: 23px;
    order: 1;
    width: calc(100% - 118px);
  }
}
.p-feature__point-item-tit br {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-feature__point-item-tit br {
    display: block;
  }
}
.p-feature__point-item-txtbox {
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .p-feature__point-item-txtbox {
    display: contents;
  }
}
.p-feature__point-item-txt {
  color: #766857;
  font-size: 16px;
  font-weight: 500;
  line-height: 1.5;
  margin-top: 8px;
  letter-spacing: -0.01em;
}
@media screen and (max-width: 1000px) {
  .p-feature__point-item-txt {
    order: 3;
  }
}
.p-feature__point-item-img {
  flex-shrink: 0;
  width: 110px;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .p-feature__point-item-img {
    order: 2;
    width: 100px;
  }
}
.p-feature__point-item-img .dec {
  position: absolute;
  left: -15px;
  top: -15px;
}
@media screen and (max-width: 1000px) {
  .p-feature__point-item-img .dec {
    display: none;
  }
}
.p-feature__point-txt {
  color: #62451a;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.3889;
  letter-spacing: -0.03em;
  margin-top: 20px;
}
@media screen and (max-width: 1000px) {
  .p-feature__point-txt {
    font-size: 17px;
    margin-top: 25px;
  }
}
.p-feature__point-txt span {
  color: #ff8c1f;
  font-size: 21px;
  font-weight: bold;
  display: block;
  line-height: 1.5238;
  margin-top: 8px;
}
@media screen and (max-width: 1000px) {
  .p-feature__point-txt span {
    font-size: 20px;
    margin-top: 5px;
  }
}
.p-feature__point-img {
  padding-top: 15px;
  padding-left: 10px;
}
@media screen and (max-width: 1000px) {
  .p-feature__point-img {
    padding-left: 0;
    overflow: hidden;
    height: 208px;
  }
}

.p-course__tit {
  background: #ffbf1e;
  padding: 0 20px 100px;
  text-align: center;
}
@media screen and (max-width: 768px) {
  .p-course__tit {
    padding-bottom: 40px;
  }
}
.p-course__tit-sub {
  transform: translate(0, -20px);
}
.p-course__tit-main {
  margin-top: 8px;
}
.p-course__case {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  margin: -50px auto 0;
  max-width: 1120px;
  padding: 0 40px;
  gap: 24px 14px;
}
@media screen and (max-width: 768px) {
  .p-course__case {
    background: #ffbf1e;
    padding: 0 20px 30px;
    margin-top: 0;
  }
}
.p-course__item {
  background: #dff5fa;
  border-radius: 12px;
  width: calc((100% - 28px) / 3);
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 1000px) {
  .p-course__item {
    width: calc((100% - 14px) / 2);
  }
}
@media screen and (max-width: 768px) {
  .p-course__item {
    width: 100%;
  }
}
.p-course__item .num {
  margin-top: -8px;
  padding-left: 20px;
}
.p-course__item .tit {
  font-size: 22px;
  font-weight: bold;
  color: #62451a;
  line-height: 1.2273;
  margin-top: 5px;
  padding: 0 25px;
  text-shadow: 0 0 2px #dff5fa;
}
.p-course__item .img {
  position: absolute;
  right: 0;
  top: 0;
  z-index: -1;
}
.p-course__item.-v01 .img {
  top: 14px;
  right: 20px;
}
.p-course__item.-v02 .img {
  top: 12px;
  right: 19px;
}
.p-course__item.-v03 .img {
  top: 20px;
  right: 18px;
}
@media screen and (max-width: 768px) {
  .p-course__item.-v03 .img {
    right: 16px;
  }
}
.p-course__item.-v04 .img {
  top: -3px;
  right: 20px;
}
.p-course__item.-v05 .img {
  top: 10px;
  right: 25px;
}
.p-course__item .btn {
  text-align: center;
  margin-top: 15px;
  padding: 0 25px 20px;
}
@media screen and (max-width: 768px) {
  .p-course__item .btn {
    padding-bottom: 0;
  }
}
.p-course__item .btn-txt {
  color: #00b5a7;
  font-size: 13px;
  font-weight: 500;
}
.p-course__item .btn-list {
  display: grid;
  gap: 10px;
}
.p-course__item .btn-list li a {
  color: #62451a;
  font-size: 16px;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  background: linear-gradient(180deg, rgb(255, 255, 255) 75%, rgb(233, 249, 255) 97%, rgb(207, 229, 255) 100%);
  border-radius: 2rem;
  height: 38px;
  box-shadow: 2px 2px 10px rgba(170, 85, 0, 0.2);
  position: relative;
}
.p-course__item .btn-list li a::before {
  content: "";
  position: absolute;
  right: 10px;
  top: 50%;
  margin-top: -6px;
  background: url(../img/course_case_icon.png) no-repeat center;
  background-size: 100% auto;
  height: 12px;
  width: 12px;
}
.p-course__item .btn-list li a:hover {
  background: #00b5a7;
  color: #fff;
}
.p-course__item .morebtn {
  margin-top: 20px;
  display: none;
}
@media screen and (max-width: 768px) {
  .p-course__item .morebtn {
    display: block;
  }
}
.p-course__item .morebtn button {
  background: #fff;
  border-radius: 0 0 12px 12px;
  color: #00b5a7;
  text-align: center;
  width: 100%;
}
.p-course__item .morebtn button span {
  background: url(../img/course_case_icon_more.png) no-repeat center right;
  background-size: 25px 25px;
  font-weight: bold;
  display: inline-block;
  padding: 12px 32px 12px 0;
}
.p-course__item .morebtn button.open span {
  background: url(../img/course_case_icon_close.png) no-repeat center right;
  background-size: 25px 25px;
}
.p-course__result {
  text-align: center;
  margin-top: 25px;
}
@media screen and (max-width: 768px) {
  .p-course__result {
    margin-top: 30px;
  }
}
.p-course__result .txt {
  color: #62451a;
  font-size: 24px;
  font-weight: bold;
}
@media screen and (max-width: 768px) {
  .p-course__result .txt {
    line-height: 1.2917;
    margin-top: 15px;
  }
}
.p-course__result .txt span {
  color: #ff8c1e;
}
.p-course__result .txt br {
  display: none;
}
@media screen and (max-width: 768px) {
  .p-course__result .txt br {
    display: block;
  }
}
.p-course__result .img {
  margin-top: 2px;
}
@media screen and (max-width: 768px) {
  .p-course__result .img {
    margin-top: 20px;
  }
}
.p-course__under {
  background: #ff8c1e;
  padding: 65px 0;
  margin-top: -15px;
}
@media screen and (max-width: 1000px) {
  .p-course__under {
    padding: 55px 20px 46px;
  }
}
.p-course__under__inner {
  width: 780px;
  margin: 0 auto;
}
@media screen and (max-width: 1000px) {
  .p-course__under__inner {
    width: 100%;
  }
}
.p-course__under .anchor {
  display: flex;
  justify-content: space-between;
}
@media screen and (max-width: 1000px) {
  .p-course__under .anchor {
    flex-direction: column;
    align-items: center;
  }
}
.p-course__under .anchor li {
  width: 250px;
}
@media screen and (max-width: 1000px) {
  .p-course__under .anchor li {
    margin-bottom: 12px;
  }
  .p-course__under .anchor li:last-child {
    margin-bottom: 0;
  }
}
.p-course__under .anchor li a {
  background: #ffee81;
  border: 1px solid #ffee81;
  color: #ff8c1e;
  font-weight: 700;
  font-size: 16px;
  text-align: center;
  padding: 5px 0;
  border-radius: 999px;
  display: block;
  box-shadow: 2px 2px 5px rgba(170, 85, 0, 0.2);
  transition: 0.4s;
  position: relative;
}
@media screen and (max-width: 1000px) {
  .p-course__under .anchor li a {
    font-size: 17px;
  }
}
.p-course__under .anchor li a::after {
  content: "";
  background: url("../img/course_under_btn01@2x.png") center center;
  background-size: 100%;
  width: 12px;
  height: 12px;
  position: absolute;
  top: calc(50% - 6px);
  right: 12px;
}
.p-course__under .anchor li a:hover {
  background: #ff8c1e;
  color: #ffee81;
}
.p-course__under__contentwrap {
  margin-top: 32px;
}
.p-course__under__content {
  background: #fff;
  border-radius: 12px;
  margin-top: 18px;
  padding: 32px 30px 32px 40px;
}
@media screen and (max-width: 1000px) {
  .p-course__under__content {
    padding: 30px 20px 35px;
    max-width: 335px;
    margin: 14px auto 0;
  }
}
.p-course__under__content .ttl h2 {
  font-size: 39px;
  color: #62451a;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .p-course__under__content .ttl h2 {
    font-size: 30px;
  }
}
.p-course__under__content .ttl .ttlflex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-course__under__content .ttl .ttlflex p {
  line-height: 1.2;
  text-align: center;
  font-weight: 700;
  color: #62451a;
  margin-right: 6px;
  margin-top: 5px;
}
@media screen and (max-width: 1000px) {
  .p-course__under__content .ttl .ttlflex p {
    font-size: 14px;
  }
}
.p-course__under__content .ttl .logo {
  display: block;
  margin: 12px auto 0;
}
@media screen and (max-width: 1000px) {
  .p-course__under__content .ttl .logo.type01 {
    width: 146px;
  }
}
@media screen and (max-width: 1000px) {
  .p-course__under__content .ttl .logo.type02 {
    width: 118px;
  }
}
@media screen and (max-width: 1000px) {
  .p-course__under__content .ttl .logo.type03 {
    width: 185px;
  }
}
.p-course__under__content .flex {
  display: flex;
  justify-content: space-between;
  margin-top: 25px;
}
@media screen and (max-width: 1000px) {
  .p-course__under__content .flex {
    flex-direction: column;
  }
}
.p-course__under__content .flex .txt {
  width: 345px;
}
@media screen and (max-width: 1000px) {
  .p-course__under__content .flex .txt {
    width: 100%;
    margin-top: 15px;
  }
}
.p-course__under__content .flex .txt h3 {
  font-size: 20px;
  font-weight: 700;
  color: #62451a;
  line-height: 1.5;
}
.p-course__under__content .flex .txt .feebox {
  display: flex;
  align-items: center;
  margin-top: 5px;
}
@media screen and (max-width: 1000px) {
  .p-course__under__content .flex .txt .feebox {
    flex-direction: column;
    margin-top: 15px;
  }
}
.p-course__under__content .flex .txt .feebox .type {
  width: 145px;
  margin-right: 10px;
}
@media screen and (max-width: 1000px) {
  .p-course__under__content .flex .txt .feebox .type {
    width: 190px;
  }
}
.p-course__under__content .flex .txt .feebox .type span {
  color: #fff;
  background: #b2a48f;
  border-radius: 999px;
  text-align: center;
  font-size: 15px;
  font-weight: 700;
  display: block;
}
.p-course__under__content .flex .txt .feebox .yen {
  font-family: "Noto Serif JP", serif;
  color: #ff661e;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
  letter-spacing: -0.5px;
}
@media screen and (max-width: 1000px) {
  .p-course__under__content .flex .txt .feebox .yen {
    margin-top: 5px;
  }
}
.p-course__under__content .flex .txt .feebox .yen span {
  font-family: "Noto Sans JP", sans-serif;
  font-size: 27px;
  font-weight: 700;
}
.p-course__under__content .flex .txt .caution {
  margin-top: 5px;
}
@media screen and (max-width: 1000px) {
  .p-course__under__content .flex .txt .caution {
    text-align: center;
  }
}
.p-course__under__content .flex .txt .caution span {
  position: relative;
  padding-left: 1em;
  font-size: 14px;
  font-weight: 400;
  color: #766857;
  display: inline-block;
}
.p-course__under__content .flex .txt .caution span::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}
.p-course__under__content .flex .txt .plus {
  font-size: 18px;
  font-weight: 700;
  color: #ff661e;
  line-height: 1.2;
}
@media screen and (max-width: 1000px) {
  .p-course__under__content .flex .txt .plus {
    text-align: center;
    margin-top: 3px;
    line-height: 1.4;
  }
}
.p-course__under__content .flex .txt .plus br {
  display: none;
}
@media screen and (max-width: 1000px) {
  .p-course__under__content .flex .txt .plus br {
    display: block;
  }
}
.p-course__under .cautionlist {
  margin-top: 33px;
}
@media screen and (max-width: 1000px) {
  .p-course__under .cautionlist {
    max-width: 335px;
    margin: 15px auto 0;
  }
}
.p-course__under .cautionlist li {
  position: relative;
  padding-left: 1em;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
}
@media screen and (max-width: 1000px) {
  .p-course__under .cautionlist li {
    line-height: 1.2;
    margin-top: 8px;
  }
  .p-course__under .cautionlist li:first-child {
    margin-top: 0;
  }
}
.p-course__under .cautionlist li::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.p-cta {
  background: #00b5a7;
  position: relative;
  padding: 35px 0 65px;
}
@media screen and (max-width: 1000px) {
  .p-cta {
    padding: 35px 20px 32px;
  }
}
.p-cta.type02::after {
  content: "";
  background: #fcf6e9;
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 110px;
}
@media screen and (max-width: 1000px) {
  .p-cta.type02::after {
    height: 80px;
  }
}
.p-cta::before {
  content: "";
  background: url(../img/cta_acc@2x.png) center center;
  background-size: 26px;
  position: absolute;
  top: -10px;
  left: 0;
  width: 100%;
  height: 13px;
}
.p-cta__intro {
  text-align: center;
  font-size: 21px;
  font-weight: 700;
  color: #004f25;
}
@media screen and (max-width: 1000px) {
  .p-cta__intro {
    font-size: 18px;
  }
}
.p-cta__mazuha {
  text-align: center;
  margin-top: 6px;
}
.p-cta h2 {
  text-align: center;
  color: #ffff83;
  font-size: 53px;
  font-weight: 700;
  line-height: 1;
  margin-top: 14px;
}
@media screen and (max-width: 1000px) {
  .p-cta h2 {
    font-size: 40px;
    margin-top: 10px;
  }
}
.p-cta__whitetxt {
  color: #fff;
  text-align: center;
  font-size: 18px;
  font-weight: 700;
  margin-top: 8px;
}
@media screen and (max-width: 1000px) {
  .p-cta__whitetxt {
    line-height: 1.6;
    margin-top: 12px;
  }
}
.p-cta__whitetxt br {
  display: none;
}
@media screen and (max-width: 1000px) {
  .p-cta__whitetxt br {
    display: block;
  }
}
.p-cta__btn {
  margin-top: 25px;
  display: flex;
  justify-content: center;
}
@media screen and (max-width: 1000px) {
  .p-cta__btn {
    flex-direction: column;
    align-items: center;
  }
}
.p-cta__btn li {
  width: 310px;
  margin: 0 6px;
}
.p-cta__btn li a {
  color: #44311a;
  font-size: 18px;
  font-weight: 700;
  text-align: center;
  display: block;
  background: #FFF49C;
  background: linear-gradient(0deg, rgb(255, 244, 156) 30%, rgb(254, 246, 228) 100%);
  box-shadow: 0 6px 0 #decf7f;
  border-radius: 999px;
  padding: 16px 0;
  position: relative;
  overflow: hidden;
  transition: 0.4s;
}
.p-cta__btn li a span {
  color: #ff8c1e;
}
.p-cta__btn li a:hover {
  transform: translateY(6px);
  box-shadow: 0 0px 0 #decf7f;
}
.p-cta__btn li a::after {
  content: "";
  background: url("../img/cta_ico01@2x.png") center center;
  background-size: 100%;
  width: 28px;
  height: 28px;
  position: absolute;
  top: calc(50% - 14px);
  right: 10px;
}
.p-cta__btn li a::before {
  animation: 4s 0s btn_shine linear infinite;
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 25%, rgba(255, 255, 255, 0.6) 50%, rgba(255, 255, 255, 0) 75%);
  content: "";
  height: 100%;
  left: -100%;
  position: absolute;
  top: 0;
  transform: skewX(-15deg);
  width: 100%;
}
@media screen and (max-width: 1000px) {
  .p-cta__btn li:nth-child(2) {
    margin-top: 25px;
  }
}
.p-cta__btn li:nth-child(2) a {
  background: #CFE5FF;
  background: linear-gradient(0deg, rgb(207, 229, 255) 0%, rgb(233, 249, 255) 15%, rgb(255, 255, 255) 100%);
  box-shadow: 0 6px 0 #64cacb;
}
.p-cta__btn li:nth-child(2) a::after {
  background: url("../img/cta_ico02@2x.png") center center;
  background-size: 100%;
}
.p-cta__btn li:nth-child(2) a::before {
  display: none;
}
.p-cta__btn li:nth-child(2) a:hover {
  transform: translateY(6px);
  box-shadow: 0 0px 0 #64cacb;
}
.p-cta__tel {
  text-align: center;
  margin-top: 25px;
}
.p-cta__whitebox {
  background: #fff;
  max-width: 800px;
  margin: 25px auto 0;
  border-radius: 18px;
  padding: 30px 42px 40px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.25);
  position: relative;
  z-index: 2;
}
@media screen and (max-width: 1000px) {
  .p-cta__whitebox {
    padding: 20px 25px 25px;
  }
}
.p-cta__whitebox h3 {
  color: #00b5a7;
  font-size: 21px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 15px;
}
@media screen and (max-width: 1000px) {
  .p-cta__whitebox h3 {
    line-height: 1.2;
  }
}
.p-cta__whitebox h3 br {
  display: none;
}
@media screen and (max-width: 1000px) {
  .p-cta__whitebox h3 br {
    display: block;
  }
}
.p-cta__whitebox__flex {
  display: flex;
}
@media screen and (max-width: 1000px) {
  .p-cta__whitebox__flex {
    flex-direction: column;
  }
}
.p-cta__whitebox__flex .img {
  text-align: center;
}
@media screen and (max-width: 1000px) {
  .p-cta__whitebox__flex .img img {
    width: 320px;
  }
}
.p-cta__whitebox__flex .txt {
  margin-left: 20px;
}
@media screen and (max-width: 1000px) {
  .p-cta__whitebox__flex .txt {
    margin-left: 0;
    margin-top: 16px;
  }
}
.p-cta__whitebox__flex .txt ul li {
  font-size: 18px;
  font-weight: 700;
  color: #573c1d;
  position: relative;
  background-image: radial-gradient(circle, #ded9d2 1px, transparent 1px);
  background-position: left bottom;
  background-repeat: repeat-x;
  background-size: 6px 2px;
  padding: 10px 0 13px 25px;
  line-height: 1;
}
@media screen and (max-width: 1000px) {
  .p-cta__whitebox__flex .txt ul li {
    line-height: 1.4;
  }
}
.p-cta__whitebox__flex .txt ul li:first-child {
  padding-top: 0;
}
.p-cta__whitebox__flex .txt ul li:first-child::before {
  top: 0;
}
@media screen and (max-width: 1000px) {
  .p-cta__whitebox__flex .txt ul li:first-child::before {
    top: 3px;
  }
}
.p-cta__whitebox__flex .txt ul li:last-child {
  background: none;
}
.p-cta__whitebox__flex .txt ul li::before {
  content: "";
  background: url("../img/cta_li_ico@2x.png") center center;
  background-size: 100%;
  width: 20px;
  height: 20px;
  position: absolute;
  top: calc(50% - 10px);
  left: 0;
}
@media screen and (max-width: 1000px) {
  .p-cta__whitebox__flex .txt ul li::before {
    top: 13px;
  }
}
.p-cta__whitebox__flex .txt .caution {
  color: #8c8072;
  font-size: 15px;
  font-weight: 500;
}
@media screen and (max-width: 1000px) {
  .p-cta__whitebox__flex .txt .caution {
    text-align: center;
    line-height: 1.4;
  }
}
.p-cta__whitebox__flex .txt .caution br {
  display: none;
}
@media screen and (max-width: 1000px) {
  .p-cta__whitebox__flex .txt .caution br {
    display: block;
  }
}

.p-cheer {
  background: #fff9ba;
  padding-bottom: 80px;
  position: relative;
  z-index: 0;
}
@media screen and (max-width: 1000px) {
  .p-cheer {
    padding-bottom: 45px;
  }
}
.p-cheer::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, 0);
  background: url(../img/sect_cheer_pc_bg01@2x.png) no-repeat center top;
  background-size: 1028px 613px;
  height: 613px;
  width: 1028px;
}
@media screen and (max-width: 768px) {
  .p-cheer::before {
    background: url(../img/sect_cheer_sp_bg01@2x.png) no-repeat center top;
    background-size: 381px 384px;
    top: -40px;
    height: 384px;
    width: 381px;
  }
}
@media screen and (max-width: 768px) {
  .p-cheer::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    background: url(../img/sect_cheer_sp_bg02@2x.png) no-repeat center top;
    background-size: 493px 496px;
    height: 496px;
    width: 493px;
    z-index: -1;
  }
}
.p-cheer .txt01 {
  text-align: center;
  transform: translate(0, -25px);
}
.p-cheer .txt02 {
  text-align: center;
  position: relative;
  margin-top: -45px;
}
@media screen and (max-width: 1000px) {
  .p-cheer .txt02 {
    margin-top: -85px;
  }
}
.p-cheer .txt02 div {
  position: relative;
  text-align: right;
  margin: 0 auto;
  width: 785px;
}
@media screen and (max-width: 1000px) {
  .p-cheer .txt02 div {
    display: grid;
    gap: 30px;
    text-align: center;
    width: 100%;
  }
}
.p-cheer .txt02 div .img01 {
  position: absolute;
  left: -115px;
  top: -100px;
}
@media screen and (max-width: 1000px) {
  .p-cheer .txt02 div .img01 {
    position: static;
    margin: 0 auto;
    width: 375px;
  }
}
.p-cheer .att {
  color: #7e7161;
  font-weight: 400;
  font-size: 13px;
  text-align: center;
  margin-top: 40px;
  padding: 0 20px;
  line-height: 1.4;
}
@media screen and (max-width: 1000px) {
  .p-cheer .att {
    margin-top: 20px;
  }
}
.p-cheer .att span {
  display: inline-block;
  position: relative;
  padding-left: 13px;
}
.p-cheer .att span::before {
  content: "※";
  position: absolute;
  top: 0;
  left: 0;
}

.p-important .pc {
  padding-bottom: 55px;
}
@media screen and (max-width: 1000px) {
  .p-important .pc {
    display: none;
  }
}
.p-important .pc .p-important__ball {
  position: relative;
  width: 960px;
  margin: 0 auto;
}
.p-important .pc .p-important__ball li {
  position: absolute;
  background: #fff99b;
  opacity: 0.36;
  border-radius: 50%;
}
.p-important .pc .p-important__ball .ball01 {
  width: 136px;
  height: 136px;
  top: -30px;
  left: 35px;
  animation: floating-y01 1.8s ease-in-out infinite alternate-reverse;
}
.p-important .pc .p-important__ball .ball02 {
  width: 286px;
  height: 286px;
  top: 70px;
  left: -300px;
  animation: floating-y02 1.8s ease-in-out infinite alternate-reverse;
}
.p-important .pc .p-important__ball .ball03 {
  width: 77px;
  height: 77px;
  left: -96px;
  top: 447px;
  animation: floating-y01 1.8s ease-in-out infinite alternate-reverse;
}
.p-important .pc .p-important__ball .ball04 {
  width: 136px;
  height: 136px;
  top: 206px;
  left: 370px;
  animation: floating-y01 1.8s ease-in-out infinite alternate-reverse;
}
.p-important .pc .p-important__ball .ball05 {
  width: 98px;
  height: 98px;
  top: -25px;
  right: -150px;
  animation: floating-y01 1.8s ease-in-out infinite alternate-reverse;
}
.p-important .pc .p-important__ball .ball06 {
  width: 98px;
  height: 98px;
  top: 173px;
  right: -57px;
  animation: floating-y02 1.8s ease-in-out infinite alternate-reverse;
}
.p-important .pc .p-important__ball .ball07 {
  width: 204px;
  height: 204px;
  top: 365px;
  right: -186px;
  animation: floating-y01 1.8s ease-in-out infinite alternate-reverse;
}
.p-important .pc .p-important__bgcontent {
  background: url("../img/important_pc_bg01@2x.png") center center;
  background-size: cover;
  text-align: center;
  padding: 100px 0;
}
.p-important .pc .p-important__white .top {
  max-width: 960px;
  margin: 52px auto 0;
  position: relative;
}
.p-important .pc .p-important__white .top .img01 {
  position: relative;
  z-index: 2;
}
.p-important .pc .p-important__white .top .img02 {
  position: absolute;
  top: -85px;
  right: 0;
}
.p-important .pc .p-important__white .under {
  max-width: 960px;
  margin: 65px auto 0;
  display: flex;
  justify-content: space-between;
}
.p-important .pc .p-important__white .under .txt {
  max-width: 394px;
}
.p-important .pc .p-important__white .under .txt p {
  color: #5a4935;
  font-size: 16px;
  font-weight: 700;
}
.p-important .pc .p-important__white .under .txt h3 {
  margin: 15px 0;
}
.p-important .sp {
  display: none;
}
@media screen and (max-width: 1000px) {
  .p-important .sp {
    display: block;
  }
}
.p-important .sp .p-important__ball {
  position: relative;
  width: 375px;
  margin: 0 auto;
}
.p-important .sp .p-important__ball li {
  position: absolute;
  background: #fff99b;
  opacity: 0.36;
  border-radius: 50%;
}
.p-important .sp .p-important__ball .ball01 {
  width: 62px;
  height: 62px;
  top: -15px;
  left: 38px;
  animation: floating-y01 1.8s ease-in-out infinite alternate-reverse;
}
.p-important .sp .p-important__ball .ball02 {
  width: 28px;
  height: 28px;
  top: 40px;
  right: 40px;
  animation: floating-y02 1.8s ease-in-out infinite alternate-reverse;
}
.p-important .sp .p-important__ball .ball03 {
  width: 45px;
  height: 45px;
  right: -25px;
  top: 45px;
  animation: floating-y01 1.8s ease-in-out infinite alternate-reverse;
}
.p-important .sp .p-important__ball .ball04 {
  width: 130px;
  height: 130px;
  top: 206px;
  left: -52px;
  animation: floating-y01 1.8s ease-in-out infinite alternate-reverse;
}
.p-important .sp .p-important__ball .ball05 {
  width: 61px;
  height: 61px;
  top: 272px;
  right: 65px;
  animation: floating-y02 1.8s ease-in-out infinite alternate-reverse;
}
.p-important .sp .p-important__ball .ball06 {
  width: 77px;
  height: 77px;
  top: 536px;
  right: 4px;
  animation: floating-y02 1.8s ease-in-out infinite alternate-reverse;
}
.p-important .sp .p-important__ball .ball07 {
  width: 63px;
  height: 63px;
  top: 1060px;
  left: -3px;
  animation: floating-y02 1.8s ease-in-out infinite alternate-reverse;
  z-index: 2;
}
.p-important .sp .p-important__ball .ball08 {
  width: 77px;
  height: 77px;
  top: 1106px;
  right: 27px;
  animation: floating-y01 1.8s ease-in-out infinite alternate-reverse;
  z-index: 2;
}
.p-important .sp .p-important__ball .ball09 {
  width: 48px;
  height: 48px;
  top: 920px;
  right: 28px;
  animation: floating-y02 1.8s ease-in-out infinite alternate-reverse;
  z-index: 2;
}
.p-important .sp .p-important__bgcontent {
  background: url("../img/important_sp_bg01@2x.png") center center;
  background-size: auto;
  text-align: center;
  padding: 120px 0;
}
.p-important .sp .p-important__white {
  max-width: 375px;
  margin: 0 auto;
  padding: 60px 0 70px;
}
.p-important .sp .p-important__white .img01 {
  margin-left: 28px;
  z-index: 10;
  position: relative;
}
.p-important .sp .p-important__white .img02 {
  margin-bottom: -22px;
}
.p-important .sp .p-important__white .img02 img {
  transform: translate(-22px, -30px);
  z-index: -1;
  position: relative;
}
.p-important .sp .p-important__white .img03 {
  margin-top: 30px;
}
.p-important .sp .p-important__white .img03 img {
  transform: translateX(32px);
}
.p-important .sp .p-important__white p {
  margin: 20px 32px 0;
  font-size: 16px;
  font-weight: 700;
  color: #5a4935;
}
.p-important .sp .p-important__white h3 {
  margin: 30px 32px 0;
}/*# sourceMappingURL=style.css.map */