@charset "UTF-8";
h1, h2, h3, h4, h5, h6, p, ul, ol, dl, dt, dd {
  padding: 0;
  margin: 0;
}

ol, ul {
  list-style-type: none;
}

/*-----------------------------------------------
 root
-----------------------------------------------*/
html {
  overflow-y: scroll;
}

body {
  overflow: hidden;
  font-family: "ヒラギノ角ゴ Pro", "Hiragino Kaku Gothic Pro", "メイリオ", Meiryo, sans-serif;
  font-weight: 400;
}

/*-----------------------------------------------
 font
-----------------------------------------------*/
html {
  overflow-x: hidden;
  font-size: medium;
}

body {
  font-size: 62.5%; /* 16px -> 10px */
}

div {
  line-height: 0;
  box-sizing: border-box;
}

dt, dd, li,
caption, th, td,
input, button, textarea, select,
h1, h2, h3, h4, h5, h6, address {
  line-height: 0;
  font-size: 140%;
  margin: 0;
  padding: 0;
}

p {
  line-height: 1.5;
  font-size: 140%;
  margin: 0;
  padding: 0;
}

h1 *, h2 *, h3 *, h4 *, h5 *, h6 *,
p input, p button, p select,
li h1, li h2, li h3, li h4, li h5, li h6, li p, li dt, li dd, li li, li th, li td, li input, li button, li textarea, li select,
dd h1, dd h2, dd h3, dd h4, dd h5, dd h6, dd p, dd dt, dd dd, dd li, dd th, dd td, dd input, dd button, dd textarea, dd select,
tr h1, tr h2, tr h3, tr h4, tr h5, tr h6, tr p, tr dt, tr dd, tr li, tr input, tr button, tr textarea, tr select {
  font-size: 100%;
}

input, button, select, option, textarea {
  font-size: 14px;
}

figure {
  margin: 0;
}

a,
a:link,
a:visited {
  color: #1d99c1;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

section {
  position: relative;
  box-sizing: border-box;
}

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

/*-----------------------------------------------
 cf 
-----------------------------------------------*/
.clearfix {
  min-height: 1px;
}
.clearfix::after {
  content: " ";
  display: block;
  clear: both;
  height: 0;
  visibility: hidden;
}

* html .clearfix {
  height: 1px;
  /*¥*/ /*/
height: auto;
overflow: hidden;
/**/
}

/*-----------------------------------------------
 hover
-----------------------------------------------*/
.hover :hover {
  opacity: 0.8;
  animation: btn 0.5s;
  -webkit-animation: btn 0.5s;
  -moz-animation: btn 0.5s;
}
@media only screen and (max-width: 768px) {
  .hover :hover {
    animation: unset;
    -webkit-animation: unset;
    -moz-animation: unset;
  }
}

@keyframes btn {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.8;
  }
}
@-webkit-keyframes btn {
  0% {
    opacity: 1;
  }
  10% {
    opacity: 0.4;
  }
  100% {
    opacity: 0.8;
  }
}
@-webkit-keyframes spinStar {
  0% {
    transform: translateY(-50%) rotateY(0deg) scale(1);
  }
  100% {
    transform: translateY(-50%) rotateY(360deg) scale(1.4);
  }
}
@keyframes spinStar {
  0% {
    transform: translateY(-50%) rotateY(0deg) scale(1);
  }
  100% {
    transform: translateY(-50%) rotateY(360deg) scale(1.4);
  }
}
@-webkit-keyframes spinStarPop {
  0% {
    transform: rotateY(0deg);
  }
  40% {
    transform: rotateY(360deg);
  }
  100% {
    transform: rotateY(720deg);
  }
}
@keyframes spinStarPop {
  0% {
    transform: rotateY(0deg);
  }
  40% {
    transform: rotateY(360deg);
  }
  100% {
    transform: rotateY(720deg);
  }
}
@-webkit-keyframes spin-right {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(360deg); /* 360度回転 */
  }
}
@keyframes spin-right {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(360deg); /* 360度回転 */
  }
}
@-webkit-keyframes spin-left {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(-360deg); /* 360度回転 */
  }
}
@keyframes spin-left {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(-360deg); /* 360度回転 */
  }
}
@-webkit-keyframes spin-right-Xcenter {
  0% {
    transform: translateX(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateX(-50%) rotate(360deg); /* 360度回転 */
  }
}
@keyframes spin-right-Xcenter {
  0% {
    transform: translateX(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateX(-50%) rotate(360deg); /* 360度回転 */
  }
}
@-webkit-keyframes spin-left-Xcenter {
  0% {
    transform: translateX(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateX(-50%) rotate(-360deg); /* 360度回転 */
  }
}
@keyframes spin-left-Xcenter {
  0% {
    transform: translateX(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateX(-50%) rotate(-360deg); /* 360度回転 */
  }
}
@-webkit-keyframes spin-right-Ycenter {
  0% {
    transform: translateY(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateY(-50%) rotate(360deg); /* 360度回転 */
  }
}
@keyframes spin-right-Ycenter {
  0% {
    transform: translateY(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateY(-50%) rotate(360deg); /* 360度回転 */
  }
}
@-webkit-keyframes spin-left-Ycenter {
  0% {
    transform: translateY(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateY(-50%) rotate(-360deg); /* 360度回転 */
  }
}
@keyframes spin-left-Ycenter {
  0% {
    transform: translateY(-50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translateY(-50%) rotate(-360deg); /* 360度回転 */
  }
}
@-webkit-keyframes spin-left-center {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(-360deg); /* 360度回転 */
  }
}
@keyframes spin-left-center {
  0% {
    transform: rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: rotate(-360deg); /* 360度回転 */
  }
}
@-webkit-keyframes spin-right-center {
  0% {
    transform: translate(-50%, -50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg); /* 360度回転 */
  }
}
@keyframes spin-right-center {
  0% {
    transform: translate(-50%, -50%) rotate(0deg); /* 初期位置 */
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg); /* 360度回転 */
  }
}
@-webkit-keyframes popFadeIn {
  0% {
    transform: scale(0); /* 初期位置 */
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes popFadeIn {
  0% {
    transform: scale(0); /* 初期位置 */
  }
  60% {
    transform: scale(1.2);
  }
  100% {
    transform: scale(1);
  }
}
/*=============================================================
 01_base
=============================================================*/
/*=============================================================
 tools
=============================================================*/
.page-con {
  padding: 95px 0 0;
}
.page-con::after {
  content: "";
  position: relative;
  left: 50%;
  transform: translateX(-50%);
  display: block;
  width: 100vw;
  height: 23.1vw;
  margin-top: 88px;
  background: url("../img/parts/foot_illust-pc.webp") no-repeat top center;
  background-size: contain;
}
@media only screen and (max-width: 2000px) {
  .page-con::after {
    width: 100vw;
    height: 23.1vw;
    margin-top: 4.4vw;
  }
}
@media only screen and (max-width: 1250px) {
  .page-con::after {
    width: 160vw;
    height: 36.96vw;
    margin-top: 7.04vw;
  }
}
@media only screen and (max-width: 768px) {
  .page-con::after {
    width: 100vw;
    height: 23.125vw;
    margin-top: 9.375vw;
    background-image: url("../img/parts/foot_illust-sp.webp");
  }
}
.page-con .ttl-box svg {
  width: 100%;
  height: auto;
}
.page-con .ttl-box .deco {
  position: relative;
  width: 140px;
  margin: 0 auto 35px;
}
@media only screen and (max-width: 1250px) {
  .page-con .ttl-box .deco {
    width: 11.2vw;
    margin-bottom: 2.8vw;
  }
}
@media only screen and (max-width: 768px) {
  .page-con .ttl-box .deco {
    width: 14.21875vw;
    margin-bottom: 2.8125vw;
  }
}
.page-con .ttl-box .deco span {
  display: block;
}
.page-con .ttl-box .deco .star {
  position: absolute;
  bottom: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 31px;
}
@media only screen and (max-width: 1250px) {
  .page-con .ttl-box .deco .star {
    bottom: -0.64vw;
    width: 2.48vw;
  }
}
@media only screen and (max-width: 768px) {
  .page-con .ttl-box .deco .star {
    width: 3.28125vw;
    bottom: -3.75vw;
    margin-bottom: 2.8125vw;
  }
}
.page-con .ttl-box h1, .page-con .ttl-box .title {
  position: relative;
  margin: 0 auto;
  margin-bottom: -30px;
  z-index: 2;
}
@media only screen and (max-width: 1250px) {
  .page-con .ttl-box h1, .page-con .ttl-box .title {
    margin-bottom: -2.4vw;
  }
}
@media only screen and (max-width: 768px) {
  .page-con .ttl-box h1, .page-con .ttl-box .title {
    margin-bottom: -1.5625vw;
  }
}
.page-con .ttl-box .line {
  width: 282px;
  margin: 0 auto;
}
@media only screen and (max-width: 1250px) {
  .page-con .ttl-box .line {
    width: 22.56vw;
  }
}
@media only screen and (max-width: 768px) {
  .page-con .ttl-box .line {
    width: 29.6875vw;
  }
}
.page-con .ttl-box.yl svg path {
  fill: #FFC529;
}
.page-con .ttl-box.bl svg path {
  fill: #3D319F;
}
.page-con .ttl-box.gl svg path {
  fill: #A37941;
}
.page-con .ttl-box .deco .star-line {
  transform: scale(0);
  opacity: 0;
  transform-origin: bottom center;
  transition: all 0.6s ease;
}
.page-con .ttl-box .deco .star {
  opacity: 0;
  transition: all 0.4s 0.4s ease;
}
.page-con .ttl-box h1, .page-con .ttl-box .title {
  transform-origin: 50% 180%;
  transform: rotate(50deg);
  opacity: 0;
  transition: all 1s 0.7s ease;
}
.page-con .ttl-box .line {
  transform-origin: 65% 180%;
  transform: rotate(-50deg);
  opacity: 0;
  transition: all 1s 0.5s ease;
}
.page-con .btn {
  opacity: 0;
  transition: all 0.6s ease;
}
.page-con .con-wrap {
  opacity: 0;
  transform: translateY(50px);
  transition: all 0.6s 1s ease;
}
.page-con.move-on .deco .star-line {
  opacity: 1;
  transform: scale(1);
}
.page-con.move-on .deco .star {
  opacity: 1;
}
.page-con.move-on .deco .star svg {
  -webkit-animation: spinStarPop 1.5s ease 0.4s forwards;
          animation: spinStarPop 1.5s ease 0.4s forwards;
}
.page-con.move-on .ttl-box h1, .page-con.move-on .ttl-box .title, .page-con.move-on .ttl-box .line {
  opacity: 1;
  transform: rotate(0deg);
}
.page-con.move-on .btn {
  opacity: 1;
}
.page-con.move-on .btn.off {
  opacity: 0.5;
}
.page-con.move-on .con-wrap {
  opacity: 1;
  transform: translateY(0px);
}
.page-con .inner {
  width: 1200px;
  padding: 154px 100px 95px;
  margin: 0 auto;
  border-radius: 50px;
  background-color: rgba(0, 0, 0, 0.2);
}
@media only screen and (max-width: 1250px) {
  .page-con .inner {
    width: 96vw;
    padding: 12.32vw 8vw 7.6vw;
  }
}
@media only screen and (max-width: 768px) {
  .page-con .inner {
    width: 93.75vw;
    padding: 16.40625vw 2.34375vw 7.5vw;
    border-radius: 7.8125vw;
  }
}
.page-con .detail-block {
  position: relative;
  padding: 50px 50px 45px;
  border: 1px solid #A37941;
  background-color: #fff;
}
@media only screen and (max-width: 1250px) {
  .page-con .detail-block {
    padding: 4vw 4vw 3.6vw;
  }
}
@media only screen and (max-width: 768px) {
  .page-con .detail-block {
    padding: 7.8125vw 5vw 4.6875vw;
  }
}
.page-con .detail-block::before {
  content: "";
  position: absolute;
  top: -23px;
  left: 50%;
  transform: translateX(-50%);
  width: 660px;
  height: 46px;
  background: url("../img/parts/block_line.svg") no-repeat top center;
  background-size: contain;
}
@media only screen and (max-width: 1250px) {
  .page-con .detail-block::before {
    top: -1.84vw;
    width: 52.8vw;
    height: 3.68vw;
  }
}
@media only screen and (max-width: 768px) {
  .page-con .detail-block::before {
    top: -2.5vw;
    width: 71.09375vw;
    height: 5vw;
  }
}
.page-con .detail-block:not(:last-of-type) {
  margin-bottom: 75px;
}
@media only screen and (max-width: 1250px) {
  .page-con .detail-block:not(:last-of-type) {
    margin-bottom: 6vw;
  }
}
@media only screen and (max-width: 768px) {
  .page-con .detail-block:not(:last-of-type) {
    margin-bottom: 10.15625vw;
  }
}
.page-con .detail-block .mb {
  margin-bottom: 2em;
}
.page-con .detail-block h3 {
  display: inline-flex;
  align-items: center;
  font-size: 24px;
  color: #fff;
  font-family: "Red Rose", serif;
  line-height: 1;
  padding: 8px 15px;
  gap: 0 15px;
  margin: 1em 0 0.7em;
  background-color: #A37941;
}
@media only screen and (max-width: 1250px) {
  .page-con .detail-block h3 {
    padding: 0.64vw 1.2vw;
    font-size: 1.92vw;
    gap: 0 1.2vw;
  }
}
@media only screen and (max-width: 768px) {
  .page-con .detail-block h3 {
    padding: 1.25vw 1.875vw 1.25vw 1.25vw;
    font-size: 4.375vw;
    gap: 0 2.34375vw;
  }
}
.page-con .detail-block h3::before {
  content: "";
  display: inline-block;
  width: 70px;
  height: 24px;
  background: url("../img/parts/h_deco01.svg") no-repeat top center;
  background-size: contain;
}
@media only screen and (max-width: 1250px) {
  .page-con .detail-block h3::before {
    width: 5.6vw;
    height: 1.92vw;
  }
}
@media only screen and (max-width: 768px) {
  .page-con .detail-block h3::before {
    width: 10.9375vw;
    height: 3.75vw;
  }
}
.page-con .detail-block h4 {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: #A37941;
  font-family: "Red Rose", serif;
  font-weight: 400;
  line-height: 1;
  padding: 8px 10px;
  margin: 1em 0 0.8em;
  gap: 0 8px;
  border: 1px solid #A37941;
}
@media only screen and (max-width: 1250px) {
  .page-con .detail-block h4 {
    font-size: 1.6vw;
    padding: 0.64vw 0.8vw;
    gap: 0 0.64vw;
  }
}
@media only screen and (max-width: 768px) {
  .page-con .detail-block h4 {
    font-size: 3.75vw;
    padding: 0.78125vw 1.5625vw;
    gap: 0 1.25vw;
  }
}
.page-con .detail-block h4::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 18px;
  background: url("../img/parts/h_deco02.svg") no-repeat top center;
  background-size: contain;
}
@media only screen and (max-width: 1250px) {
  .page-con .detail-block h4::before {
    width: 1.44vw;
    height: 1.44vw;
  }
}
@media only screen and (max-width: 768px) {
  .page-con .detail-block h4::before {
    width: 2.8125vw;
    height: 2.8125vw;
  }
}
.page-con .detail-block h5 {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 0 12px;
  line-height: 1.5;
  font-size: 14px;
  margin-bottom: 0.4em;
}
@media only screen and (max-width: 768px) {
  .page-con .detail-block h5 {
    grid-template-columns: 2.1875vw 1fr;
    gap: 0 1.875vw;
    font-size: 2.8125vw;
  }
}
.page-con .detail-block h5::before {
  content: "";
  position: relative;
  top: 3px;
  display: block;
  width: 14px;
  height: 14px;
  background: url("../img/parts/rhombus_gl.svg") no-repeat top center;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  .page-con .detail-block h5::before {
    top: 0.625vw;
    width: 2.1875vw;
    height: 2.1875vw;
  }
}
.page-con .detail-block ul {
  margin-bottom: 3em;
}
.page-con .detail-block ul li {
  display: grid;
  grid-template-columns: 14px 1fr;
  gap: 0 12px;
  line-height: 1.5;
  margin-bottom: 0.8em;
}
@media only screen and (max-width: 768px) {
  .page-con .detail-block ul li {
    grid-template-columns: 2.1875vw 1fr;
    gap: 0 1.875vw;
  }
}
.page-con .detail-block ul li::before {
  content: "";
  position: relative;
  top: 3px;
  display: block;
  width: 14px;
  height: 14px;
  background: url("../img/parts/rhombus_gl.svg") no-repeat top center;
  background-size: contain;
}
@media only screen and (max-width: 768px) {
  .page-con .detail-block ul li::before {
    top: 0.625vw;
    width: 2.1875vw;
    height: 2.1875vw;
  }
}
.page-con .detail-block iframe {
  width: 100%;
}
.page-con .detail-block p {
  font-size: 14px;
  font-weight: 500;
  margin: 0.4em 0 1em;
}
@media only screen and (max-width: 768px) {
  .page-con .detail-block p {
    font-size: 2.8125vw;
  }
}
.page-con .detail-block p a {
  font-weight: bold;
  color: #0B0B0B;
}
.page-con .detail-block p.small {
  font-size: 12px;
}
@media only screen and (max-width: 768px) {
  .page-con .detail-block p.small {
    font-size: 2.5vw;
  }
}

#footer {
  padding-top: 0;
}