@charset "UTF-8";
:root {
  --f13:clamp(0.75rem, 0.728rem + 0.099vw, 0.813rem);
  --f14:clamp(0.813rem, 0.790rem + 0.099vw, 0.875rem);
  --f16:clamp(0.875rem, 0.830rem + 0.199vw, 1rem);
  --f17:clamp(0.938rem, 0.886rem + 0.235vw, 1.063rem);
  --f20:clamp(1.063rem, 0.995rem + 0.298vw, 1.25rem);
  --f22:clamp(1.063rem, 0.951rem + 0.497vw, 1.375rem);
  --f24:clamp(1.313rem, 1.245rem + 0.298vw, 1.5rem);
  --f28:clamp(1.5rem, 1.411rem + 0.398vw, 1.75rem);
  --f32:clamp(1.5rem, 1.321rem + 0.795vw, 2rem);
  --f36:clamp(1rem, 0.75rem + 1.25vw, 2.25rem);
  --f40:clamp(1.5rem, 1.148rem + 1.502vw, 2.5rem);
  --f42:clamp(1.5rem, 1.097rem + 1.789vw, 2.625rem);
  --f48:clamp(2rem, 1.642rem + 1.59vw, 3rem);
  --f54:clamp(2.25rem, 1.847rem + 1.789vw, 3.375rem);
  --f64:clamp(2.625rem, 2.133rem + 2.187vw, 4rem);
  --f72:clamp(2.7rem, 2.263rem + 2.386vw, 4.5rem);
  --f106:clamp(3rem, 1.703rem + 5.765vw, 6.625rem);
  --f160:clamp(3.25rem, 0.873rem + 10.141vw, 10rem);
}

#global-header {
  width: 90%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 auto;
}
#global-header .logo {
  transition: all ease 0.5s;
  width: 210px;
  margin: 8px 0;
}
@media screen and (min-width: 1500px) {
  #global-header .logo {
    width: 260px;
  }
}
@media screen and (max-width: 1500px) {
  #global-header .logo {
    width: 14vw;
  }
}
@media screen and (max-width: 1024px) {
  #global-header .logo {
    width: 280px;
    padding: 0.4em 0;
  }
}
@media screen and (max-width: 480px) {
  #global-header .logo {
    width: 220px;
    padding: 0.65em 0;
  }
}
#global-header .logo:hover {
  opacity: 0.5;
}
@media screen and (max-width: 1024px) {
  #global-header .header-right {
    display: none;
  }
}
#global-header .header-right #global-navi ul {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
#global-header .header-right #global-navi ul li {
  display: block;
  position: relative;
  text-align: center;
  box-sizing: border-box;
  transition: all ease 0.3s;
  height: -moz-fit-content;
  height: fit-content;
}
#global-header .header-right #global-navi ul li:hover a {
  color: #F2A4C6;
}
#global-header .header-right #global-navi ul li a {
  font-size: var(--f17);
  padding: 1.5em 1em;
  display: block;
  transition: all ease 0.5s;
  letter-spacing: 0.05rem;
}
@media screen and (max-width: 1500px) {
  #global-header .header-right #global-navi ul li a {
    font-size: var(--f14);
    padding: 0.1em 0.5em;
  }
}
#global-header .header-right #global-navi ul li:nth-child(3) .g-menu__dropdown-menu {
  left: -85px;
}
#global-header .header-right #global-navi ul li:nth-child(4) .g-menu__dropdown-menu {
  left: -66px;
}
#global-header .header-right #global-navi ul li:nth-child(6) a, #global-header .header-right #global-navi ul li:nth-child(7) a {
  padding: 1.5em 0.5em;
}
#global-header .header-right #global-navi ul li:nth-child(6) a img, #global-header .header-right #global-navi ul li:nth-child(7) a img {
  width: min(2vw, 38px);
}
#global-header .header-right #global-navi ul .tel-area:hover a {
  color: #0C3825 !important;
}
#global-header .header-right #global-navi ul .tel-area a {
  font-size: var(--f22);
  position: relative;
  border: 1px solid #5B5B5B;
  padding: 0.1em 0.6em;
  display: flex;
  align-items: center;
  margin-left: 1em;
  pointer-events: none;
}
@media screen and (max-width: 1500px) {
  #global-header .header-right #global-navi ul .tel-area a {
    font-size: var(--f16);
    margin-left: 0.5em;
  }
}
@media screen and (max-width: 480px) {
  #global-header .header-right #global-navi ul .tel-area a {
    pointer-events: all;
  }
}
#global-header .header-right #global-navi ul .tel-area a::before {
  content: "";
  background: url(../images/tel.svg) no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  margin-right: 4px;
  display: block;
}
@media screen and (max-width: 1500px) {
  #global-header .header-right #global-navi ul .tel-area a::before {
    width: 12px;
    height: 12px;
  }
}

/* メイン部分 */
.g-menu {
  display: flex;
}

.g-menu__link {
  display: block;
  padding: 50px 20px;
  font-size: 16px;
  line-height: 1.5;
  color: #000;
}

.g-menu__dropdown-menu {
  opacity: 0;
  pointer-events: none;
  position: absolute;
  width: 278px;
  top: 100%;
  flex-direction: column;
  justify-content: start;
  align-items: start;
  z-index: 999;
  background: #fff;
  border-radius: 8px;
}
.g-menu__dropdown-menu::before {
  content: "";
  width: 30px;
  height: 15px;
  border-radius: 50% 50% 0 0/100% 100% 0 0;
  background: #fff;
  position: absolute;
  top: -15px;
  left: 0;
  right: 0;
  margin: auto;
}

.g-menu__dropdown-menu-item {
  margin-right: 0 !important;
  text-align: left !important;
  width: 100%;
}
.g-menu__dropdown-menu-item:last-child a {
  background: none !important;
  color: #4B360B !important;
  padding: 10px 0 10px 0 !important;
  border-radius: 0 !important;
  border-bottom: none !important;
}
.g-menu__dropdown-menu-item:last-child a::before {
  display: none;
}
.g-menu__dropdown-menu-item a {
  padding: 10px 0 10px 0 !important;
  font-size: var(--f17) !important;
  text-align: center;
  position: relative;
  color: #4B360B !important;
  border-bottom: 1px dashed #F2A4C6 !important;
  margin: 0 6px;
}
.g-menu__dropdown-menu-item a:hover {
  color: #F2A4C6 !important;
}

.g-menu__dropdown-menu-item:last-child {
  border-width: 0;
}

.g-menu__dropdown-menu-link {
  display: block;
  padding: 10px;
  font-size: 14px;
  line-height: 1.5;
}

.g-menu__item:hover .g-menu__link {
  transition: 0.5s;
}

.g-menu__item:hover .g-menu__dropdown-menu {
  opacity: 1;
  pointer-events: auto;
  transition: 0.5s;
}

*,
::before,
::after {
  box-sizing: border-box;
  border-style: solid;
  border-width: 0;
}

.ab-icon:before {
  font-family: inherit;
}

html {
  scroll-behavior: smooth;
  line-height: 1.7;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: transparent;
}

body {
  margin: 0;
  font-size: var(--f20);
  font-family: "Noto Serif JP";
  color: #5B5B5B;
  font-weight: 400;
  background: #F9F4EF;
}

main {
  display: block;
}

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

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

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-top-width: 1px;
  margin: 0;
  clear: both;
  color: inherit;
}

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

address {
  font-style: inherit;
}

a {
  background-color: transparent;
  text-decoration: underline;
  color: #0C3825;
  text-decoration: none;
  transition: all ease 0.5s;
}

a:hover {
  opacity: 0.85;
  text-decoration: none;
}

img {
  max-width: 100%;
}

abbr[title] {
  -webkit-text-decoration: underline dotted;
          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;
}

svg,
img,
embed,
object,
iframe {
  vertical-align: bottom;
}

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

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

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

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

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

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

:-moz-focusring {
  outline: auto;
}

select:disabled {
  opacity: inherit;
}

option {
  padding: 0;
}

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

legend {
  padding: 0;
}

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]:focus {
  outline: auto;
}

table {
  border-color: inherit;
  border-collapse: collapse;
}

caption {
  text-align: left;
}

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

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

#global-footer {
  margin: max(80px, 10vw) auto 0 auto;
  background: url(../images/footer-bg.svg) no-repeat top;
  background-size: cover;
}
#global-footer .footer-inner {
  padding: 80px 0 0 0;
}
#global-footer .footer-inner .logo {
  display: block;
  width: 250px;
  margin: 0 auto;
}
#global-footer .footer-inner .address {
  text-align: center;
  font-size: var(--f17);
  line-height: 1.4;
  margin: 1em 0;
}
#global-footer .footer-inner .tel {
  background: #fff;
  border-radius: 50px;
  border: 1px solid #AEA38C;
  width: 300px;
  margin: 0 auto;
  display: block;
  pointer-events: none;
}
@media screen and (max-width: 480px) {
  #global-footer .footer-inner .tel {
    pointer-events: all;
    width: 250px;
  }
}
#global-footer .footer-inner .tel p {
  font-size: var(--f28);
  color: #AEA38C;
  display: flex;
  align-items: center;
  justify-content: center;
}
#global-footer .footer-inner .tel p::before {
  content: "";
  background: url(../images/tel-gold.svg) no-repeat;
  background-size: contain;
  width: 22px;
  height: 22px;
  display: block;
  margin: 2px 4px 0 0;
}
#global-footer .footer-inner h4 {
  font-size: var(--f20);
  display: flex;
  align-items: center;
}
#global-footer .footer-inner h4::before {
  content: "";
  background: url(../images/subtitle-icon.svg) no-repeat;
  background-size: contain;
  width: 26px;
  height: 22px;
  margin-right: 4px;
}
#global-footer .footer-inner .footer-menu + h4 {
  margin-top: 2em;
}
#global-footer .footer-inner .info {
  width: min(1240px, 90%);
  margin: 2em auto 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2em;
}
@media screen and (max-width: 768px) {
  #global-footer .footer-inner .info {
    grid-template-columns: 1fr;
  }
}
#global-footer .footer-inner .info h3 {
  background: #AEA38C;
  padding: 0.3em 0;
  text-align: center;
  font-size: var(--f24);
  color: #fff;
  margin-bottom: 1em;
}
#global-footer .footer-inner .info p {
  font-size: var(--f17);
  font-family: "Noto Sans JP";
  line-height: 1.4;
}
#global-footer .footer-inner .info .carender {
  margin-bottom: 1em;
}
#global-footer .footer-inner .info .carender a {
  pointer-events: none;
}
#global-footer .footer-inner .info .access-list {
  display: grid;
  gap: 1em;
}
#global-footer .footer-inner .info .access-item {
  display: flex;
  justify-content: space-between;
}
#global-footer .footer-inner .info .access-item .access-img {
  width: 30%;
}
#global-footer .footer-inner .info .access-item .access-txt {
  width: 65%;
}
#global-footer .footer-inner #footer-navi {
  width: min(1240px, 90%);
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  border-top: 1px solid #BFB49C;
  padding: 1em 0 4em 0;
  margin-top: 3em;
}
@media screen and (max-width: 1024px) {
  #global-footer .footer-inner #footer-navi {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1em;
    padding: 1em 0 2em 0;
  }
}
#global-footer .footer-inner #footer-navi .footer-box:last-child {
  padding-top: 1.3em;
}
#global-footer .footer-inner #footer-navi .footer-menu {
  display: grid;
  gap: 0.5em;
}
#global-footer .footer-inner #footer-navi a {
  font-size: var(--f17);
  line-height: 1.4;
  display: block;
}
#global-footer .footer-inner #footer-navi a:hover {
  color: #AEA38C;
}
#global-footer .footer-inner #footer-navi .footer-box:nth-child(n+2) .footer-menu {
  padding-left: 0.7em;
  border-left: 1px solid #AEA38C;
  margin-top: 0.5em;
}
#global-footer p.copy_small {
  font-size: var(--f13);
  text-align: center;
  color: #AEA38C;
  padding: 3em 0 2em 0;
}
@media screen and (max-width: 768px) {
  #global-footer p.copy_small {
    padding: 3em 0 7em 0;
  }
}

.dw-header {
  position: fixed;
  z-index: 9999 !important;
  top: 0;
  right: 0;
}

.hamburger {
  display: block;
  margin-left: auto;
  position: relative;
  z-index: 9997 !important;
  border: none;
  width: 62px;
  height: 62px;
  background: #E6247D;
}
@media screen and (min-width: 1025px) {
  .hamburger {
    display: none;
  }
}
.hamburger .hamburger__line {
  display: block;
  height: 2px;
  position: absolute;
  top: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  background-color: #fff;
  transition: 0.4s;
  z-index: 99;
}
.hamburger .hamburger__text {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  z-index: 99;
}

.hamburger.-active .hamburger__line {
  background-color: transparent;
}

.hamburger.-active .hamburger__line::before {
  top: 0;
  transform: rotate(45deg);
}

.hamburger.-active .hamburger__line::after {
  top: 0;
  transform: rotate(-45deg);
}

.hamburger__line:before,
.hamburger__line:after {
  content: "";
  display: block;
  height: 100%;
  position: absolute;
  width: 100%;
  background-color: #fff;
  transition: inherit;
  z-index: 99;
}

.hamburger__line:before {
  top: -6px;
}

.hamburger__line:after {
  top: 6px;
}

.header__nav-area {
  position: fixed;
  top: 0;
  right: -100%;
  z-index: 9996 !important;
  height: 100vh;
  max-width: 480px;
  width: 100%;
  visibility: hidden;
  padding-top: 60px;
  background-color: #fff;
  transition: 0.4s;
  overflow: auto;
}

.header__nav-area.-active {
  right: 0;
  visibility: visible;
  z-index: 999;
}

.global-navigation {
  padding: 0 1em 1em 1em;
}
@media screen and (max-width: 480px) {
  .global-navigation {
    padding: 0 1em 6em 1em;
  }
}

.drawer-logo {
  width: 280px;
  margin: 8px auto 0 auto;
}
@media screen and (max-width: 768px) {
  .drawer-logo {
    width: 70%;
  }
}
.drawer-logo img {
  width: 100%;
  margin: 0 auto 16px auto;
  display: block;
}

.global-navigation__link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #172e59;
  font-weight: 900;
  transition: color 0.4s;
  font-size: 0.875rem;
}

.global-navigation__link.-accordion {
  position: relative;
  background: none;
  border: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
  padding: 0;
  z-index: 999;
}

.global-navigation__link.-accordion::after {
  content: "";
  display: block;
  height: 12px;
  position: absolute;
  top: 50%;
  right: 5px;
  width: 2px;
  background-color: #ed3242;
  transform: translateY(-50%);
  transition: transform 0.4s;
  z-index: 999;
}

.global-navigation__link.-accordion::before {
  content: "";
  display: block;
  height: 2px;
  position: absolute;
  top: 50%;
  right: 0;
  width: 12px;
  background-color: #ed3242;
  transform: translateY(-50%);
  z-index: 999;
}

.global-navigation__link.-active::after {
  transform: translateY(-50%) rotate(-90deg);
}

.accordion {
  height: 0;
  overflow: hidden;
  visibility: hidden;
  transition: 0.4s;
}

.accordion.-active {
  height: auto;
  padding-top: 30px;
  visibility: visible;
}

.accordion__link {
  color: #172e59;
}

.dw-wrap {
  width: 90%;
  margin: 0 auto;
  height: -moz-fit-content;
  height: fit-content;
}
@media screen and (max-width: 480px) {
  .dw-wrap {
    width: 100%;
  }
}
.dw-wrap .d-main {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0 12px;
}
@media screen and (max-width: 480px) {
  .dw-wrap .d-main {
    gap: 0 8px;
  }
}
.dw-wrap .d-main .menu {
  border-bottom: solid 1px #DFDFDF;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
}
.dw-wrap .d-main .menu:nth-child(3), .dw-wrap .d-main .menu:nth-child(5), .dw-wrap .d-main .menu:nth-child(7) {
  border-bottom: none;
}
.dw-wrap .d-main .menu a {
  font-size: var(--f18);
  line-height: 1.3;
  color: #2E2E2E;
  font-weight: 500;
  display: block;
  text-align: center;
  padding: 16px 0;
  width: 100%;
}
@media screen and (max-width: 480px) {
  .dw-wrap .d-main .menu a {
    padding: 12px 0;
  }
}
.dw-wrap .d-main .menu a img {
  width: 100%;
  display: block;
}
.dw-wrap .d-main .sub-menu {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6px;
  border-bottom: solid 1px #DFDFDF;
  padding-bottom: 1em;
}
.dw-wrap .d-main .sub-menu a {
  font-size: var(--f16);
  text-align: center;
  height: 100%;
  line-height: 1.4;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.3em 0;
  background: #EFE7DF;
}
.dw-wrap .sns-list {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 1em 0 0 0;
}
.dw-wrap .sns-list li img {
  width: 32px;
  -o-object-fit: contain;
     object-fit: contain;
}
.dw-wrap .sns-list li:first-child {
  margin-right: 1em;
}
.dw-wrap .tel {
  font-size: var(--f22);
  border: 1px solid #5B5B5B;
  padding: 0.1em 0.6em;
  display: flex;
  align-items: center;
  margin: 1em auto;
  width: -moz-fit-content;
  width: fit-content;
  pointer-events: none;
}
@media screen and (max-width: 480px) {
  .dw-wrap .tel {
    font-size: var(--f16);
    pointer-events: all;
  }
}
.dw-wrap .tel::before {
  content: "";
  background: url(../images/tel.svg) no-repeat;
  background-size: contain;
  width: 16px;
  height: 16px;
  margin-right: 4px;
  display: block;
}
@media screen and (max-width: 480px) {
  .dw-wrap .tel::before {
    width: 12px;
    height: 12px;
  }
}

.___mt5 {
  margin-top: 4px;
}

.___mt10 {
  margin-top: 12px;
}

.___mt15 {
  margin-top: 16px;
}

.___mt20 {
  margin-top: clamp(10px, 2vw, 20px);
}

.___mt30 {
  margin-top: clamp(20px, 3vw, 30px);
}

.___mt40 {
  margin-top: clamp(25px, 4vw, 40px);
}

.___mt50 {
  margin-top: clamp(30px, 5vw, 50px);
}

.___mt60 {
  margin-top: clamp(35px, 6vw, 60px);
}

.___mt70 {
  margin-top: clamp(40px, 7vw, 70px);
}

.___mt80 {
  margin-top: clamp(45px, 8vw, 80px);
}

.___mt90 {
  margin-top: clamp(50px, 9vw, 90px);
}

.___mt100 {
  margin-top: clamp(55px, 10vw, 100px);
}

.___mt110 {
  margin-top: clamp(60px, 11vw, 110px);
}

.___mt120 {
  margin-top: clamp(65px, 11vw, 120px);
}

.___pb5 {
  padding-bottom: 4px;
}

.___pb10 {
  padding-bottom: 12px;
}

.___pb15 {
  padding-bottom: 16px;
}

.___pb20 {
  padding-bottom: clamp(10px, 2vw, 20px);
}

.___pb30 {
  padding-bottom: clamp(20px, 3vw, 30px);
}

.___pb40 {
  padding-bottom: clamp(25px, 4vw, 40px);
}

.___pb50 {
  padding-bottom: clamp(30px, 5vw, 50px);
}

.___pb60 {
  padding-bottom: clamp(35px, 6vw, 60px);
}

.___pb70 {
  padding-bottom: clamp(40px, 7vw, 70px);
}

.___pb80 {
  padding-bottom: clamp(45px, 8vw, 80px);
}

.___pb90 {
  padding-bottom: clamp(50px, 9vw, 90px);
}

.___pb100 {
  padding-bottom: clamp(55px, 10vw, 100px);
}

.___pb110 {
  padding-bottom: clamp(60px, 11vw, 110px);
}

.___pb120 {
  padding-bottom: clamp(65px, 11vw, 120px);
}

body {
  letter-spacing: 0.1em;
}

picture {
  display: block;
}

p a {
  display: inline-block;
  text-decoration: underline;
}

p + p {
  margin-top: 1.5rem;
}

a img {
  transition: 0.3s;
}

a:hover img {
  opacity: 0.8;
}

.sp_none {
  display: none;
}

@media screen and (min-width: 768px) {
  .sp_none {
    display: inherit;
  }
}
.l-section {
  padding-bottom: clamp(4rem, 2.8645833333vw, 3.4375rem);
}

#wrap {
  overflow: hidden;
}

#pagetop {
  position: fixed;
  bottom: -190px;
  right: -1px;
  z-index: 1;
  transition: all ease 0.3s;
}
#pagetop a {
  display: block;
}
#pagetop .cta-bnr {
  width: 210px;
}
@media screen and (max-width: 1024px) {
  #pagetop .cta-bnr {
    width: 160px;
  }
}
@media screen and (max-width: 480px) {
  #pagetop .cta-bnr {
    width: 140px;
  }
}
#pagetop .pagetop {
  width: 60px;
  height: 60px;
  margin: 0 1.5em 0.7em auto;
}
@media screen and (max-width: 1024px) {
  #pagetop .pagetop {
    width: 50px;
    height: 50px;
  }
}
@media screen and (max-width: 480px) {
  #pagetop .pagetop {
    width: 45px;
    height: 45px;
    margin: 0 1em 0.5em auto;
  }
}

.is-show {
  bottom: 0 !important;
}

.page-title-center .title {
  font-size: var(--f24);
  text-align: center;
  line-height: 1.4;
}
@media screen and (max-width: 480px) {
  .page-title-center .title {
    font-size: var(--f20);
  }
}
.page-title-center .title span {
  font-family: "Lora";
  letter-spacing: 0.1rem;
  font-size: var(--f72);
  color: #E6247D;
  line-height: 1;
  letter-spacing: 0.001rem;
}
@media screen and (max-width: 480px) {
  .page-title-center .title span {
    font-size: var(--f54);
  }
}

.page-title-left .title {
  font-size: var(--f24);
  line-height: 1.4;
}
@media screen and (max-width: 480px) {
  .page-title-left .title {
    font-size: var(--f20);
  }
}
.page-title-left .title span {
  font-family: "Lora";
  letter-spacing: 0.1rem;
  font-size: var(--f42);
  color: #AEA38C;
  line-height: 1;
  letter-spacing: 0.001rem;
}

.sub-title {
  font-size: var(--f28);
  padding-bottom: 0.2em;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #E6247D;
  margin-bottom: 0.5em;
}
@media screen and (max-width: 1024px) {
  .sub-title {
    font-size: var(--f22);
  }
}
.sub-title::before {
  content: "";
  background: url(../images/subtitle-icon.svg) no-repeat;
  background-size: contain;
  width: 35px;
  height: 29px;
  display: block;
  margin-right: 4px;
}
@media screen and (max-width: 1024px) {
  .sub-title::before {
    width: 30px;
    height: 24px;
  }
}

.btn {
  font-family: "Lora";
  width: -moz-fit-content;
  width: fit-content;
  font-size: var(--17);
  display: block;
  transition: all ease 0.5s;
  display: flex;
  align-items: center;
  text-decoration: underline;
}
@media screen and (max-width: 1024px) {
  .btn {
    font-size: var(--f16);
  }
}
.btn::after {
  content: "";
  background: url(../images/arrow.svg) no-repeat;
  background-size: contain;
  width: 23px;
  height: 23px;
  display: block;
  margin-left: 8px;
  transition: all ease 0.5s;
}
@media screen and (max-width: 1024px) {
  .btn::after {
    width: 20px;
    height: 20px;
  }
}
.btn:hover {
  text-decoration: underline;
}
.btn:hover::after {
  margin-left: 12px;
}

#subkey-visual {
  height: 275px;
  width: 90%;
  position: relative;
  overflow: hidden;
  margin: 0 auto;
  border-radius: 24px;
  background: url(../images/key-bg.webp) no-repeat;
  background-size: cover;
}
@media screen and (max-width: 768px) {
  #subkey-visual {
    height: 220px;
    width: 100%;
    border-radius: 0;
  }
}
@media screen and (max-width: 480px) {
  #subkey-visual {
    height: 180px;
  }
}
#subkey-visual .subkey-title {
  font-size: var(--f42);
  width: -moz-fit-content;
  width: fit-content;
  height: -moz-fit-content;
  height: fit-content;
  position: absolute;
  text-align: center;
  top: -12px;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  line-height: 1.2;
}
#subkey-visual .subkey-title .sp {
  display: none;
}
@media screen and (max-width: 768px) {
  #subkey-visual .subkey-title {
    font-size: var(--f28);
  }
  #subkey-visual .subkey-title .sp {
    display: block;
  }
}
#subkey-visual .subkey-title span {
  font-size: var(--f28);
  color: #E6247D;
  font-family: "Lora";
  line-height: 1.2;
}
@media screen and (max-width: 768px) {
  #subkey-visual .subkey-title span {
    font-size: var(--f20);
  }
}

.pankuzu {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 90%;
  margin: 0.3em auto 0 auto;
}
@media screen and (max-width: 768px) {
  .pankuzu {
    flex-wrap: wrap;
    width: 95%;
  }
}
.pankuzu li {
  padding-right: 2em;
  position: relative;
}
.pankuzu li::after {
  content: ">";
  font-size: var(--f15);
  height: -moz-fit-content;
  height: fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: absolute;
  right: 0.7em;
  top: 3px;
  bottom: 0;
  margin: auto;
}
.pankuzu li:last-child {
  padding-right: 0;
}
.pankuzu li:last-child::after {
  display: none;
}
.pankuzu li a {
  font-size: var(--f16);
  font-weight: 400;
}

/*---スクロール時遅れて表示、順番に表示---*/
.fadein {
  opacity: 0;
  transition: all 1.3s;
  transform: translate(0, 45px);
}

/*---TOP遅れて表示---*/
#post {
  opacity: 0;
}

.anchor {
  padding-top: 100px;
  margin-top: -100px !important;
}/*# sourceMappingURL=common.css.map */