/*
Theme Name: SORA
Author: SORA
Description: original theme
Version: 1.0.0
*/

/* =========================================================
   Base 
========================================================= */
:root {
  --color-text: #444;
  --color-theme: #033059;
  --font-base: font-family: font-family: "Noto Sans JP", sans-serif;
  --scroll-offset-pc: 8vh;
  --scroll-offset-sp: 4vh;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  font-family: var(--font-base);
  line-height: 2;
  font-weight: 500;
  color: var(--color-text);
  background: #fff;
}


@media (min-width: 768px) {
  html {
    scroll-padding-top: var(--scroll-offset-pc);
  }

  [id] {
    scroll-margin-top: var(--scroll-offset-pc);
  }
}

@media (max-width: 767px) {
  [id] {
    scroll-margin-top: var(--scroll-offset-sp);
  }
}

.container {
  max-width: 100%;
  margin: 0 auto;
  overflow-x: clip;
  /* hidden より安全（横スクロール抑制） */
}

.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}

.flex-wrap.sb {
  justify-content: space-between;
}

p.center {
  text-align: center;
}

p.mb {
  margin-bottom: .7em;
}

.pc_block {
  display: block;
}

.pc_inlineblock {
  display: inline-block;
}

.sp_block,
br.sp_block,
.sp_inlineblock {
  display: none !important;
}

li:last-of-type {
    margin-bottom: 0;
}

@media (max-width: 767px) {
  .pc_block {
    display: none !important;
  }

  .pc_inlineblock {
    display: none !important;
  }

  br.sp_block {
    display: block !important;
  }

  .sp_block {
    display: block !important;
  }

  .sp_inlineblock {
    display: inline-block !important;
  }

  body {
    line-height: 1.7;
  }
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 2px;
}

@media (hover: hover) and (pointer: fine) {
  a:hover {
    opacity: .7;
    transition: opacity .3s;
  }
}

#topBtn {
  opacity: 0;
  visibility: hidden;
  transition: opacity .35s, visibility .35s;
}

#topBtn.is-visible {
  opacity: 1;
  visibility: visible;
}

@media (max-width: 767px) {
  #topBtn {
    display: none !important;
  }
}

/*---------------------------------------------------------
ヘッダー
---------------------------------------------------------*/

.sora-header {
  height: 12vh;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 99;
}

.sora-header::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(255 255 255 / 100%) 0%, rgb(255 255 255 / 50%) 100%);
  pointer-events: none;
  z-index: -1;
  opacity: 0;
  transition: opacity .3s;
}

.sora-header.is-scrolled::after {
  opacity: 1;
}

.sora-header__inner {
  width: 100%;
  height: 12vh;
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
}

.sora-header__brand {
  width: 17%;
  height: 12vh;
  display: flex;
  align-items: center;
}

.sora-header__logo {
  width: 100%;
  height: 12vh;
  display: flex;
  align-items: center;
}

.sora-header__logo img {
  width: 65%;
  height: auto;
  margin: 0 auto;
}

.sora-header__nav {
  width: 80%;
  height: 12vh;
  display: flex;
  align-items: center;
  position: relative;
  z-index: 1;
}

.sora-gnav {
  width: 100%;
  height: 12vh;
  margin: 0 0 0 auto;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 2vw;
}

.sora-gnav__item {
  position: relative;
  display: flex;
  align-items: center;
}

.sora-gnav__link {
  text-decoration: none;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 1.1vw;
  letter-spacing: .2vw;
  line-height: 1.6;
  display: inline-flex;
  align-items: center;
  position: relative;
  padding: 0 .5vw;
}

.sora-gnav__link:hover {
      color: #00BCD4;
}

.sora-gnav__link::after {
  content: "";
  position: absolute;
  left: 25%;
  bottom: -0.6vw;
  width: 50%;
  height: 1px;
  background: #00BCD4;
  transform: scale(0, 1);
  transition: .3s;
  transform-origin: center;
}

.sora-gnav__link:hover::after {
  transform: scale(1, 1);
}

.sora-gnav__item--cta {
  margin-right: 1vw;
}

.sora-gnav__cta {
  text-decoration: none;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 1.1vw;
  letter-spacing: .2vw;
  line-height: 1.6;
  color: rgb(255 255 255);
  background: linear-gradient(99deg, #71f2f4 0%, #45b1e5 100%);
  padding: 1vw 2vw;
  border-radius: 10vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #fff;
  box-sizing: border-box;
}

.sora-gnav__cta:hover {
  opacity: .7;
}

.sora-gnav__item--dropdown {
  position: relative;
}

.sora-dd {
  position: absolute;
  top: calc(100% + .9vw);
  left: 50%;
  transform: translate(-50%, .6vw);
  opacity: 0;
  visibility: hidden;
  transition: .25s;
  list-style: none;
  margin: 0;
  padding: .9vw;
  background: rgb(255 255 255 / 98%);
  border-radius: 1vw;
  box-shadow: 0 1vh 2.2vh rgb(0 0 0 / 6%);
  min-width: 16vw;
  z-index: 200;
  display: flex;
  flex-direction: column;
  gap: .2vw;
}

.sora-gnav__item--dropdown:hover .sora-dd,
.sora-gnav__item--dropdown:focus-within .sora-dd {
  opacity: 1;
  visibility: visible;
  transform: translate(-50%, 0);
}

.sora-dd__item {
  width: 100%;
  display: block;
}

.sora-dd__link {
  width: 100%;
    display: block;
    box-sizing: border-box;
    text-decoration: none;
    font-weight: 500;
    font-size: 1vw;
    letter-spacing: .08vw;
    line-height: 1.7;
    padding: .75vw 1.1vw;
    border-radius: .3vw;
    white-space: nowrap;
}

.sora-dd__link:hover {
  background: #ebf8fa;
    color: #00BCD4;
}

/* =========================================================
   MV
========================================================= */
.sora-mv {
  width: 100%;
  position: relative;
  margin-top: 12vh;
  height: 100vh;
}

/* .sora-mv__inner {
    width: 92%;
    margin: 0 auto;
    position: relative;
    display: flex;
    align-items: center;
    gap: 3.2vw;
} */

/* .sora-mv__copy {
    writing-mode: vertical-rl;
    text-orientation: mixed;
    font-size: 2.1vw;
    line-height: 1.5;
    letter-spacing: 0.1vw;
    font-weight: 500;
    
    margin: 0;
    position: relative;
    right: -8vw;
    font-family: "Noto Serif JP", serif;
} */

.sora-mv_copy {
  right: -8vw;
  position: absolute;
      left: 5vw;
  z-index: 1;
  top: 39%;
  transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);

}

p.mv_main_copy {
  font-size: 3.5vw;
  line-height: 1.5;
  font-weight: 600;
  font-family: "Noto Serif JP", serif;
  /*     background: linear-gradient(60deg, #0fd2ea 24%, #17b7ff 100%); */
  /* 	background: linear-gradient(87deg, #0fd2ea 8%, #CDDC39 100%); */
  background: linear-gradient(61deg, #11e3ed 13%, #009cfd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: .5vw;
  width: fit-content;
  font-kerning: normal;
  -webkit-font-feature-settings: "kern" 1, "halt" 1, "pwid" 1;
  font-feature-settings: "kern" 1, "halt" 1, "pwid" 1;

}

p.mv_main_copy span {
  font-size: .8em;
}

p.mv_sub_copy {
  font-family: "Josefin Sans", sans-serif;
  font-size: 1.1vw;
  margin-top: 1vw;
  letter-spacing: .05vw;
  /*     background: linear-gradient(87deg, #0fd2ea 8%, #CDDC39 100%); */
  background: linear-gradient(61deg, #11e3ed 13%, #009cfd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
}

/* .sora-mv__main {
    flex: 1;
    min-width: 0;
} */

/* .sora-mv__frame {
    width: 84%;
    aspect-ratio: 16 / 9;
    position: relative;
    overflow: hidden;
    border-radius: 1.6vw;
    margin: 1vh auto;
} */

/* .sora-mv__frame {
    width: 63%;
    aspect-ratio: 1 / 1;
    position: relative;
    overflow: hidden;
    border-radius: 99vw;
    margin: 1vh auto;
} */

.sora-mv__frame {
      height: 100vh;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    border-radius: 100vw;
    position: absolute;
    top: -1vw;
    right: 4vw;
}

.sora-mv__pic {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1s ease;
  will-change: opacity;
}

.sora-mv__pic.is-active {
  opacity: 1;
}

.sora-mv__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.sora-mv__lead {
  text-align: center;
  font-size: 1.6vw;
  letter-spacing: .15vw;
  font-weight: 500;

  font-family: "Noto Serif JP", serif;
}

.sora-mv__dots {
  position: absolute;
  left: 50%;
  bottom: 1.2vw;
  transform: translateX(-50%);
  display: flex;
  gap: .8vw;
  z-index: 3;
}

.sora-mv__dot {
  width: .7vw;
  height: .7vw;
  border-radius: 999vw;
  background: rgb(166 166 166 / 50%);
  padding: 0;
  cursor: pointer;
  transition: opacity .2s ease;
}

.sora-mv__dot.is-active {
  background: #71f2f4;
}

.sora-mv__dot:hover {
  opacity: .85;
}

.fluid {
  position: absolute;
  z-index: -1;
  border-radius: 50%;
  background: linear-gradient(266deg, #72fffd 0%, #50c9ff 100%);
  filter: brightness(1);
  will-change: transform;
}

.fluid.one {
  width: 50vw;
  height: 50vw;
      top: 0;
    right: -2vw;
  animation: fluidMoveOne 18s ease-in-out 0s infinite alternate;
}

.fluid.two {
  width: 23vw;
  height: 22vw;
  bottom: 0;
  left: -5vw;
  animation: fluidMoveTwo 22s ease-in-out 0s infinite alternate;
}

.fluid.three {
  width: 25vw;
  height: 25vw;
  right: 7vw;
  animation: fluidMovethree 18s ease-in-out 0s infinite alternate;
  z-index: auto;
  top: 34%;
}

.fluid.four {
  width: 21vw;
  height: 20vw;
  left: -2vw;
  animation: fluidMovethree 18s ease-in-out 0s infinite alternate;
  top: 7vw;
  z-index: 0;
}

.fluid.five {
    width: 21vw;
    height: 20vw;
    right: 1vw;
    animation: fluidMoveOne 18s ease-in-out 0s infinite alternate;
    z-index: 0;
    top: 9vw;
}

.fluid.six {
  width: 11vw;
    height: 10vw;
    right: 0vw;
    animation: fluidMoveTwo 18s ease-in-out 0s infinite alternate;
    top: 18vw;
    z-index: 0;
}

.fluid.seven {
        width: 8vw;
    height: 8vw;
    left: 2vw;
    animation: fluidMoveTwo 18s ease-in-out 0s infinite alternate;
    z-index: 0;
    top: 35vw;
}

@keyframes fluidMoveOne {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-2vw, 2vh, 0);
  }

  100% {
    transform: translate3d(1vw, -1.5vh, 0);
  }
}

@keyframes fluidMoveTwo {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(2vw, -1.5vh, 0);
  }

  100% {
    transform: translate3d(-1.5vw, 1vh, 0);
  }
}

@keyframes fluidMovethree {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(-1vw, 1vh, 0);
  }

  100% {
    transform: translate3d(1vw, -1vh, 0);
  }
}

@keyframes fluidMovefour {
  0% {
    transform: translate3d(0, 0, 0);
  }

  50% {
    transform: translate3d(2vw, -1.5vh, 0);
  }

  100% {
    transform: translate3d(-1.5vw, 1vh, 0);
  }
}

.background-en p {
  color: transparent;
  transition: color .2s ease;
}

@media (prefers-reduced-motion: reduce) {

  .fluid.one,
  .fluid.two,
  .fluid.three,
  .fluid.four, .fluid.five {
    animation: none;
  }
}


@media (max-width: 767px) {
  .sora-mv {
    padding: 5vw 0 6vw;
  }

  .sora-mv__copy {
    font-size: 2.4vw;
    letter-spacing: .24vw;
  }

  .sora-mv__frame {
    width: 78%;
    border-radius: 2vw;
  }

  .sora-mv__lead {
    font-size: 1.9vw;
    letter-spacing: .16vw;
  }

  .sora-mv__dots {
    bottom: 1.6vw;
    gap: 1vw;
  }

  .sora-mv__dot {
    width: 1.2vw;
    height: 1.2vw;
    border-width: .16vw;
  }
}

@media (prefers-reduced-motion: reduce) {
  .sora-mv__pic {
    transition: none;
  }
}

/* =========================================================
   SORAについて　TOP
========================================================= */

.home h2::before {
  content: "－";
  padding-right: .3vw;
}

.home h2::after {
  content: "－";
  padding-left: .3vw;
}

section#intro h2::before,
section#intro h2::after {
  content: unset;
}

.sora-intro {
  width: 100%;
      padding: 8vw 0 6vw;
  background: #fff;
  position: relative;
}

.sora-intro__inner {
  width: 85%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2vw;
}

.sora-intro .h2-wrap p {
  font-size: 4vw;
  line-height: 1;
      letter-spacing: .3vw;
  font-weight: 500;
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  background: linear-gradient(99deg, #71f2f4 0%, #45b1e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
  width: fit-content;
}

.sora-intro .h2-wrap h2 {
  font-size: 1.8vw;
  line-height: 1.5;
  letter-spacing: .2vw;
  font-weight: 600;
  margin-top: 1vw;
  font-family: "Noto Serif JP", serif;
  background: linear-gradient(65deg, #38edef 0%, #45b1e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: left;
  width: fit-content;
}



.sora-intro__body {
  width: 55%;
}

.sora-intro__title {
  font-size: 2vw;
  line-height: 1.5;
  letter-spacing: .1vw;
  font-weight: 500;

  margin: 0;
}

.text-wrap {
  margin-top: 2vw;
}

.sora-intro .text-wrap p {
  font-size: 1.1vw;
  line-height: 1.9;
  letter-spacing: .1vw;
  font-weight: 500;
}

.btn a {
  text-decoration: none;
  font-family: "Noto Sans JP", serif;
  font-weight: 500;
  font-size: 1.05vw;
  letter-spacing: .2vw;
  line-height: 1.6;
  color: rgb(255 255 255);
  background: linear-gradient(99deg, #71f2f4 0%, #45b1e5 100%);
  padding: .7vw 0;
  border-radius: 10vw;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50%;
  margin-top: 2vw;
}

.sora-intro__media {
  width: 42%;
}

.sora-intro__img {
  width: 68%;
  margin: 0 auto;
  position: relative;
}

figcaption.sora-intro__cap {
  text-align: center;
  padding-left: 2vw;
}

figcaption.sora-intro__cap img {
  width: 44%;
  margin: 1.5vw auto 0;
}

@media (max-width: 767px) {
  .sora-intro .h2-wrap p {
    font-size: 11vw;
    letter-spacing: .4vw;
  }

  .sora-intro .h2-wrap h2 {
    gap: 4vw;
    font-size: 3.5vw;
    letter-spacing: .4vw;
  }

  .sora-intro .h2-wrap h2::before,
  .sora-intro .h2-wrap h2::after {
    width: 10vw;
    height: .5vw;
  }

  .sora-intro {
    padding: 10vw 0;
  }

  .sora-intro__inner {
    flex-direction: column;
    align-items: stretch;
    gap: 6vw;
  }

  .sora-intro__body {
    width: 100%;
  }

  .sora-intro__media {
    width: 100%;
  }

  .sora-intro__title {
    font-size: 5vw;
    letter-spacing: .2vw;
  }

  .sora-intro .text-wrap p {
    font-size: 3.5vw;
    letter-spacing: .2vw;
  }

  .sora-intro__img {
    border-radius: 4vw;
  }
}

/* =========================================================
   サービス一覧　TOP
========================================================= */

.svc-grid .h2-wrap {
  width: 100%;
  text-align: center;
}

.svc-grid .h2-wrap p {
  font-size: 4.5vw;
  line-height: 1;
      letter-spacing: .5vw;
  font-weight: 500;
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  background: linear-gradient(99deg, #71f2f4 0%, #45b1e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}

.svc-grid .h2-wrap h2 {
  font-size: 1.3vw;
  line-height: 1.5;
  letter-spacing: .2vw;
  font-weight: 600;
  text-align: center;
  margin-top: .5vw;
  font-family: "Noto Serif JP", serif;
}

.svc-grid {
  width: 100%;
  padding: 6vw 0 10vw;
  background: #fff;
  position: relative;
  overflow: hidden;
}

.svc-grid__inner {
  width: 92%;
  margin: 0 auto;
  position: relative;
}

.svc-grid__head {
  margin: 0 0 4vw;
  text-align: center;
}

.svc-grid__title {
  font-size: 2vw;
  line-height: 1.4;
  letter-spacing: .1vw;
  font-weight: 500;

  margin: 0;
}

.svc-grid__lead {
  font-size: 1.3vw;
  line-height: 1.9;
  letter-spacing: .1vw;
  font-weight: 500;

}

.svc-grid__top {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2vw;
  margin: 0 0 2vw;
}

.svc-grid__bottom {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2vw;
}

.svc-card {
  width: 100%;
  text-decoration: none;
  border-radius: 1.5vw;
  position: relative;
  display: block;
  background: #fff;
  box-shadow: 7px 7px 19px rgb(124 124 124 / 15%);
  transition: transform .2s ease, opacity .2s ease;
}

.svc-card.svc-card--secondary {
  border-radius: 1vw;
}

.rank-wrap {
    position: absolute;
    z-index: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 6.5vw;
    width: 6.5vw;
    border-radius: 10vw;
/*     background: rgb(255 236 61); */
    top: -1.5vw;
    left: -1vw;
	    background: linear-gradient(109deg, rgb(255 231 21 / 95%) 0%, rgb(0 223 251) 100%);
}

.svc-grid__top .rank-wrap p {
    line-height: 1.3;
    text-align: center;
    font-family: "Roboto", sans-serif;
    font-size: 1.3vw;
    font-weight: 600;
	    color: #fff;
}

.svc-grid__top .rank-wrap p span {
    display: block;
    font-size: 1.5vw;
}

.svc-card__media {
  width: 100%;
  margin: 0;
  position: relative;
}

.svc-card__media--lg {
    aspect-ratio: 16 / 9;
    border-radius: 1.5vw 1.5vw 0 0;
    overflow: hidden;
}

.svc-card__media--sm {
  aspect-ratio: 3 / 2;
}

.svc-card__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.svc-card__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgb(255 255 255 / 0%) 0%, rgb(255 255 255 / 25%) 85%);
}

.svc-card__body {
  width: 100%;
  padding: 2vw;
  position: relative;
}

.svc-grid__bottom .svc-card__body {
      padding: 1vw 1vw 2vw;
}

.svc-grid__top .svc-card__title {
  font-size: 1.8vw;
  line-height: 1;
  letter-spacing: .1vw;
  font-weight: 500;
  margin-bottom: 1vw;
}

.svc-grid__bottom .svc-card__title {
  font-size: 1.3vw;
  line-height: 1.4;
  letter-spacing: .1vw;
  font-weight: 500;
  margin-bottom: .5vw;
}

.svc-grid__top p {
  font-size: 1.2vw;
  letter-spacing: .1vw;
  line-height: 1.8;
}

.svc-grid__bottom p {
  font-size: 1.05vw;
  line-height: 1.6;
  letter-spacing: .1vw;
}

.svc-grid__top .svc-card__arrow {
  position: absolute;
  right: 2.5vw;
  bottom: 1.5vw;
  width: 1.75vw;
  height: 8px;
  border-bottom: 1.5px solid #333;
  border-right: 1.5px solid #333;
  transform: skew(45deg);
}

.svc-grid__bottom .svc-card__arrow {
  position: absolute;
  right: 1.5vw;
  bottom: 1vw;
  width: 1.75vw;
  height: 7px;
  border-bottom: 1.5px solid #333;
  border-right: 1.5px solid #333;
  transform: skew(45deg);
}

.svc-card:focus-visible {
  outline: .5vw solid rgb(113 242 244 / 70%);
  outline-offset: .5vw;
}

@media (max-width: 767px) {
  .svc-grid .h2-wrap p {
    font-size: 11vw;
    letter-spacing: .4vw;
  }

  .svc-grid .h2-wrap h2 {
    gap: 4vw;
    font-size: 3.5vw;
    letter-spacing: .4vw;
  }

  .svc-grid .h2-wrap h2::before,
  .svc-grid .h2-wrap h2::after {
    width: 10vw;
    height: .5vw;
  }

  .svc-grid {
    padding: 10vw 0;
  }

  .svc-grid::before {
    width: 60vw;
    height: 60vw;
    right: -25vw;
    top: 12vw;
  }

  .svc-grid::after {
    width: 34vw;
    height: 34vw;
    left: -6vw;
    bottom: 6vw;
  }

  .svc-grid__head {
    margin: 0 0 6vw;
  }

  .svc-grid__title {
    font-size: 5vw;
    letter-spacing: .2vw;
  }

  .svc-grid__lead {
    font-size: 3.5vw;
    letter-spacing: .2vw;
  }

  .svc-grid__top {
    grid-template-columns: 1fr;
    gap: 4vw;
    margin: 0 0 4vw;
  }

  .svc-grid__bottom {
    grid-template-columns: 1fr;
    gap: 4vw;
  }

  .svc-card {
    border-radius: 4vw;
  }

  .svc-card__body {
    padding: 5vw;
  }

  .svc-grid__top .svc-card__title {
    font-size: 5vw;
    letter-spacing: .2vw;
  }

  .svc-grid__bottom .svc-card__title {
    font-size: 4.5vw;
    letter-spacing: .2vw;
  }

  .svc-grid__top .text-wrap p {
    font-size: 3.5vw;
    letter-spacing: .2vw;
  }

  .svc-grid__bottom .text-wrap p {
    font-size: 3.5vw;
    letter-spacing: .2vw;
  }

  .svc-card__arrow {
    right: 5vw;
    bottom: 5vw;
    font-size: 5vw;
  }
}

/* =========================================================
   area
========================================================= */
section#area {
  width: 100%;
  padding: 6vw 0;
  background: linear-gradient(99deg, #71f2f4 0%, #45b1e5 100%);
  border-radius: 0 5vw 5vw 0;
}

.area__inner {
  width: 90%;
  margin: 0 auto;
}

.area__head {
  width: 100%;
  margin-bottom: 3vw;
}

section#area .h2-wrap p {
  font-size: 4.5vw;
  line-height: 1;
  letter-spacing: 0;
  font-weight: 500;
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
	letter-spacing: .5vw;
}

.area__title {
  font-size: 1.3vw;
  line-height: 1.5;
  letter-spacing: .2vw;
  font-weight: 600;
  text-align: center;
  margin-top: .5vw;
  font-family: "Noto Serif JP", serif;
  color: #fff;
}

.area__lead {
  width: 70%;
  margin: 2vw auto 0;
  font-size: 1.3vw;
  font-weight: 500;
  letter-spacing: .06vw;
  line-height: 1.9;
  color: #fff;
  text-align: center;
}

.area__pills {
  width: 100%;
}

.area__pill-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 1.5vw 1vw;
}

.area__pill {
  width: 32%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.35vw;
  font-weight: 500;
  letter-spacing: .5vw;
  background: #fff;
  border-radius: 10vw;
  padding: 1vw 0;
}

.area__note {
  width: 100%;
  margin-top: 3vw;
}

.area__note-text {
  font-size: 1.2vw;
  font-weight: 500;
  letter-spacing: .05vw;
  color: #fff;
  text-align: center;
}


@media (max-width: 767px) {
  section#area {
    padding: 10vw 0;
  }

  .area__inner {
    width: 92%;
  }

  .area__head {
    margin-bottom: 6vw;
  }

  section#area .h2-wrap p {
    font-size: 12vw;
  }

  .area__title {
    font-size: 6.4vw;
    letter-spacing: .2vw;
    margin-top: 1.5vw;
  }

  .area__lead {
    width: 100%;
    margin: 4vw auto 0;
    font-size: 3.6vw;
    letter-spacing: .12vw;
  }

  .area__pills {
    margin-top: 6vw;
  }

  .area__pill-list {
    gap: 2vw;
  }

  .area__pill {
    width: 48%;
    font-size: 3.6vw;
    letter-spacing: .12vw;
    padding: 3vw 3.5vw;
  }

  .area__note {
    margin-top: 6vw;
    padding: 4.5vw;
    border-radius: 3.5vw;
  }

  .area__note-text {
    font-size: 3.6vw;
    letter-spacing: .12vw;
  }
}

.voice {
  width: 100%;
  padding: 6vw 0;
  background: #fff;
	    position: relative;
}

.voice__head {
  width: 100%;
  margin-bottom: 3vw;
}

#voice .h2-wrap p {
  font-size: 4.5vw;
  line-height: 1;
  letter-spacing: .3vw;
  font-weight: 500;
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  background: linear-gradient(99deg, #71f2f4 0%, #45b1e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}

.voice__lead {
  font-size: 1.2vw;
  letter-spacing: .1vw;
  font-weight: 500;
  text-align: center;
}

.voice__title {
  font-size: 1.2vw;
  line-height: 1.5;
  letter-spacing: .2vw;
  font-weight: 600;
  text-align: center;
  margin-top: .5vw;
  font-family: "Noto Serif JP", serif;

}

.voice__slider {
  width: 100%;
  position: relative;
  padding-bottom: 4vw;
  margin-top: 2vw;
}

.voice__swiper {
  width: 100%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.voice__nav {
  z-index: 5;
}

.voice__swiper,
.voice__swiper * {
  user-select: none;
  -webkit-user-select: none;
}

.voice__swiper .voice__nav,
.voice__swiper .voice__nav * {
  user-select: auto;
  -webkit-user-select: auto;
}

.voice__swiper .swiper-wrapper {
  align-items: stretch;
  height: auto;
}

.voice__swiper .swiper-slide {
  width: 32vw;
  padding: 0 1vw;
  box-sizing: border-box;
  align-items: flex-start;
  height: auto;
  display: flex;
}

.voice-card {
  width: 100%;
  background: #fff;
  border-radius: 2vw;
  padding: 2vw;
  box-sizing: border-box;
  cursor: pointer;
  position: relative;
  height: 100%;
}

.voice-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 2vw;
  padding: .2vw;
  background: linear-gradient(99deg, #71f2f4 0%, #45b1e5 100%);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.voice-card__menu {
  font-size: 1vw;
  font-weight: 500;
  letter-spacing: .1vw;
  color: #ffffff;
  width: fit-content;
  padding: .5vw 1.5vw;
  border-radius: 10vw;
  background: linear-gradient(99deg, #71f2f4 0%, #45b1e5 100%);
}

.voice-card .text-wrap {
  margin-top: 1vw;
}

.voice-card__text {
  font-size: 1.2vw;
  font-weight: 500;
  letter-spacing: .1vw;
  line-height: 1.9;

}

.voice-card__name {
  font-size: 1.05vw;
  font-weight: 500;
  letter-spacing: .1vw;

  margin: 1.5vw 0 0;
  text-align: right;
}

.voice__nav {
  position: absolute;
  right: 2vw;
  bottom: 0;
  display: flex;
  gap: 1vw;
  justify-content: flex-end;
  align-items: center;
  z-index: 2;
}


.voice__nav .swiper-button-prev,
.voice__nav .swiper-button-next {
  position: relative;
  display: grid;
  place-content: center;
  width: 3vw !important;
  height: 3vw !important;
  cursor: pointer;
  transition: var(--transition);
  margin: 0;
  top: auto;
  left: auto;
  right: auto;
}

.voice__nav .swiper-button-prev::before,
.voice__nav .swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  background: rgb(3 169 244 / 21%);
}

.voice__nav .swiper-button-prev::after,
.voice__nav .swiper-button-next::after {
  width: 1vw;
  height: 1vw;
  content: "";
  border: solid #fff;
  border-width: 3px 3px 0 0;
}

.voice__nav .swiper-button-prev::after {
  margin-left: .5vw;
  transform: rotate(-135deg);
}

.voice__nav .swiper-button-next::after {
  margin-right: .5vw;
  transform: rotate(45deg);
}

.meetsmore {
  width: 70%;
  margin: 1.5vw auto 0;
  background: linear-gradient(293deg, #59b653 0%, #93d011 100%);
  padding: 2vw 3vw;
  border-radius: 1vw;
  display: flex;
  justify-content: space-between;
}

.meetsmore .flex-box.left {
  width: 30%;
}

div#meetsmore-widget {
  width: 100%;
}

.jss5 {
  max-width: 100% !important;
}

.meetsmore .flex-box.right {
  width: 65%;
}

.meetsmore .flex-box.right .h3-wrap {
  background: #fff;
  border-radius: .3vw;
  padding: .5vw 0;
}

.meetsmore .flex-box.right h3 {
  text-align: center;
  font-size: 1.2vw;
  font-weight: 500;
}

.meetsmore .flex-box.right p {
  font-size: 1.1vw;
  color: #fff;
  margin-top: .5vw;
  font-weight: 500;
}

@media (max-width: 767px) {
  .voice {
    padding: 10vw 0;
  }

  .voice__inner {
    width: 92%;
  }

  .voice__head {
    margin-bottom: 6vw;
  }

  #voice .h2-wrap p {
    font-size: 12vw;
  }

  .voice__title {
    font-size: 6.5vw;
    letter-spacing: .2vw;
    margin-top: 1.5vw;
  }

  .voice__slider {
    padding-bottom: 10vw;
  }

  .voice__swiper .swiper-slide {
    width: 86vw;
    padding: 0 2vw;
  }

  .voice-card {
    border-radius: 4vw;
    padding: 5vw;
  }

  .voice-card::before {
    border-radius: 4vw;
  }

  .voice-card__menu {
    font-size: 3.5vw;
    letter-spacing: .1vw;
    padding: 2.5vw 3.5vw;
    margin: 0 0 3vw;
  }

  .voice-card__text {
    font-size: 3.5vw;
    letter-spacing: .1vw;
  }

  .voice-card__name {
    font-size: 3.5vw;
    letter-spacing: .1vw;
    margin: 4vw 0 0;
  }

  .voice__nav {
    gap: 2vw;
  }

  .voice__nav .swiper-button-prev,
  .voice__nav .swiper-button-next {
    width: 11vw !important;
    height: 11vw !important;
  }

  .voice__nav .swiper-button-prev::after,
  .voice__nav .swiper-button-next::after {
    width: 3vw;
    height: 3vw;
    border-width: 1vw 1vw 0 0;
  }

  .voice__nav .swiper-button-prev::after {
    margin-left: 1vw;
  }

  .voice__nav .swiper-button-next::after {
    margin-right: 1vw;
  }
}

/*---------------------------------------------------------
  CTA
  ---------------------------------------------------------*/

.line-cta {
  width: 100%;
  padding: 5vw 0;
  background: linear-gradient(99deg, #71f2f4 0%, #45b1e5 100%);
  border-radius: 5vw 5vw 0 0;
}

.line-cta__inner {
  width: 90%;
  margin: 0 auto;
}

.line-cta__head {
  width: 100%;
}

#line-cta .h2-wrap p {
  font-size: 4vw;
  line-height: 1;
  letter-spacing: .3vw;
  font-weight: 500;
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  color: #fff;
  text-align: center;
  width: fit-content;
  margin: 0 auto;
}

.line-cta__title {
  font-size: 1.3vw;
  line-height: 1.5;
  letter-spacing: .2vw;
  font-weight: 600;
  text-align: center;
  margin-top: .5vw;
  font-family: "Noto Serif JP", serif;
  color: #fff;
}

.line-cta__lead {
  width: 70%;
  margin: 2vw auto 0;
  font-size: 1.2vw;
  font-weight: 500;
  letter-spacing: .06vw;
  line-height: 1.9;
  color: #fff;
  text-align: center;
}

.line-cta__action {
  width: 100%;
  margin-top: 2vw;
  display: flex;
  justify-content: center;
}

.line-cta__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  font-size: 1.25vw;
  font-weight: 500;
  letter-spacing: .06vw;

  background: #fff;
  border-radius: 10vw;
  padding: 1vw 0;
  width: 30%;
}

@media (max-width: 767px) {
  .line-cta {
    padding: 10vw 0;
  }

  .line-cta__inner {
    width: 92%;
  }

  #line-cta .h2-wrap p {
    font-size: 12vw;
  }

  .line-cta__title {
    font-size: 6.5vw;
    letter-spacing: .2vw;
    margin-top: 1.5vw;
  }

  .line-cta__lead {
    width: 100%;
    margin: 4vw auto 0;
    font-size: 3.6vw;
    letter-spacing: .12vw;
  }

  .line-cta__action {
    margin-top: 6vw;
  }

  .line-cta__btn {
    width: 100%;
    font-size: 3.8vw;
    letter-spacing: .12vw;
    padding: 3.5vw 4vw;
  }
}

/*---------------------------------------------------------
  footer
  ---------------------------------------------------------*/

footer#footer {
  position: relative;
  border-radius: 5vw 5vw 0 0;
}

.footer-inner {
    padding: 5vw 0 3vw;
}

.footer_logo img {
  width: 15%;
  margin: 0 auto;
}

.instagram {
    width: 3%;
    margin: 1.7vw auto 0;
}

.policy {
    text-align: center;
    margin-top: 1vw;
}
.policy a {
        font-size: .95vw;
    font-weight: 400;
}

.copyright p {
  text-align: left;
  font-size: 0.9vw;
  font-weight: 500;
  font-family: "Josefin Sans", sans-serif;
  letter-spacing: 0.05vw;
  padding-left: 1vw;
  position: absolute;
  -webkit-writing-mode: vertical-rl;
  writing-mode: vertical-rl;
  left: -1vw;
  bottom: 1vh;
}

button.topBtn {
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: 3.5vw;
  height: 3.5vw;
  cursor: pointer;
  position: fixed;
  bottom: 1vw;
  right: 1vw;
  z-index: 9;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
  border: 0;
  padding: 0;
  background: transparent;
  appearance: none;
  -webkit-appearance: none;
  font: inherit;
  color: inherit;
  opacity: 0;
  visibility: hidden;
}

button.topBtn.is-visible {
  opacity: 1;
  visibility: visible;
}

button.topBtn::before {
  position: absolute;
  inset: 0;
  content: "";
  background: #71f2f4;
  opacity: .5;
  border-radius: 10vw;
}

button.topBtn::after {
  width: 1vw;
  height: 1vw;
  content: "";
  border: solid #fff;
  border-width: 2.5px 2.5px 0 0;
  margin-top: 0.7vw;
  transform: rotate(-45deg);
}


/* =========================================================
   Hamburger / Scroll lock
========================================================= */
html.is-scroll-locked {
  overflow: hidden;
}

/* =========================================================
下層ページ
========================================================= */

section.page-mv {
    margin-top: 12vh;
	position: relative;
}

.h1-wrap {
    position: absolute;
    left: 50%;
    bottom: -25%;
    transform: translateX(-50%);
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    background: #ffffff;
       width: 35%;
    text-align: center;
    padding: 2vw 0;
    outline: 1.5px solid #00bcd4;
    outline-offset: -.7vw;
}

section.page-mv h1 {
    font-size: 2vw;
    line-height: 1.5;
    font-weight: 600;
    font-family: "Noto Serif JP", serif;
    background: linear-gradient(61deg, #11e3ed 13%, #009cfd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: .5vw;
    width: fit-content;
    margin: 0 auto;
}

p.en {
    font-size: 1.3vw;
    letter-spacing: .1vw;
    font-weight: 500;
    font-family: "Josefin Sans", sans-serif;
    background: linear-gradient(99deg, #71f2f4 0%, #45b1e5 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-align: left;
    width: fit-content;
    margin: 0 auto;
	    font-style: italic;
}

.breadcrumb {
    width: 90%;
    margin: .5vw auto 0;
    font-size: .9vw;
    font-weight: 400;
}

/*---------------------------------------------------------
ニューボーンフォト
---------------------------------------------------------*/
section.page-mv.service-page {
  height: 20vw;
  background-position: 0 40%;
  background-size: cover;
}

.service-intro,
.service-price,
.service-note,
.service-cta {
  width: 100%;
  padding: 6vw 0;
}

.service-intro,
.service-price {
  background: #fff;
}

.service-note {
  background: #fbfaf6;
}

.service-cta {
  background: #eefafd;
}

.service-intro__inner,
.service-price__inner {
  width: 65%;
  margin: 0 auto;
}

.service-note__inner {
  width: 55%;
  margin: 0 auto;
}

.service-cta__inner {
  width: 82%;
  margin: 0 auto;
}

.service-gallery__inner {
  width: 100%;
  margin: 0 auto;
}

.service-head {
  width: 100%;
  margin-bottom: 2vw;
  text-align: center;
}

.service-title {
  font-size: 2vw;
  line-height: 1.7;
  font-weight: 600;
  color: #333;
  font-family: "Noto Serif JP", serif;
  letter-spacing: .3vw;
  background: linear-gradient(61deg, #11e3ed 13%, #009cfd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  font-kerning: normal;
  -webkit-font-feature-settings: "kern" 1, "halt" 1, "pwid" 1;
  font-feature-settings: "kern" 1, "halt" 1, "pwid" 1;
}

.service-sub {
  font-size: 4vw;
  line-height: 1;
  letter-spacing: .3vw;
  font-weight: 500;
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  background: linear-gradient(99deg, #71f2f4 0%, #45b1e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  margin: 0 auto 1vw;
}

.service-intro .text-wrap,
.service-price .text-wrap,
.service-note .text-wrap,
.service-cta .text-wrap {
  width: 100%;
}

.service-intro .text-wrap p,
.service-price .text-wrap p,
.service-note .text-wrap p,
.service-cta .text-wrap p {
  font-size: 1.1vw;
  line-height: 2.1;
  letter-spacing: .05vw;
  font-weight: 500;
  color: #333;
}

.service-intro__photo {
  margin: 0 auto 2vw;
  border-radius: 2vw;
  overflow: hidden;
}

.service-intro__photo img {
  width: 100%;
  height: auto;
  display: block;
	    aspect-ratio: 3 / 2;
    object-fit: cover;
}

/* point */
.service-point {
  width: 100%;
  margin: 5vw auto 0;
  background: #eefafd;
  padding: 0 3vw 3vw;
  border-radius: 1vw;
}

.service-point__title {
  width: 90%;
  margin: 0 auto;
  transform: translateY(-50%);
  text-align: center;
  font-size: 1.15vw;
  letter-spacing: .2vw;
  color: #fff;
  background: linear-gradient(99deg, #71f2f4 0%, #45b1e5 100%);
  padding: .7vw 2vw;
  border-radius: 10vw;
  border: 2px solid #fff;
  box-sizing: border-box;
}

.service-point__list {
  width: 100%;
}

.service-point__item,
.service-price__item {
  position: relative;
  padding-left: 1.6vw;
  font-size: 1.1vw;
  letter-spacing: .05vw;
  font-weight: 500;
  margin-bottom: .7em;
}

.service-point__item::before,
.service-price__item::before {
  content: "";
  width: .45vw;
  height: .45vw;
  border-radius: 50%;
  background: #00bcd4;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
}

/* gallery */
.service-gallery__title {
  line-height: 1.7;
    font-weight: 500;
    font-family: "Josefin Sans", sans-serif;
    background: linear-gradient(61deg, #11e3ed 13%, #009cfd 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: .2vw;
    width: fit-content;
    margin: 0 auto;
    font-size: 3vw;
}

.service-gallery__grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 1vw;
}

.service-gallery__item {
  width: 100%;
  margin: 0;
  overflow: hidden;
}

.service-gallery__link {
  display: block;
  width: 100%;
}

.service-gallery__item img {
  width: 100%;
  height: 22vw;
  object-fit: cover;
  display: block;
  transition: transform .4s;
}

.service-gallery__link:hover img {
  transform: scale(1.03);
}

/* lightbox */
.gallery-lightbox {
  width: 100%;
  height: 100vh;
  padding: 4vw;
  background: hsl(192deg 79% 96% / 95%);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s, visibility .3s;
}

.gallery-lightbox.is-active {
  opacity: 1;
  visibility: visible;
}

.gallery-lightbox__content {
  width: 100%;
  max-width: 70vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.gallery-lightbox__img {
  max-width: 100%;
  max-height: 86vh;
  display: block;
}

.gallery-lightbox__close,
.gallery-lightbox__prev,
.gallery-lightbox__next {
  border: none;
  background: transparent;
  color: #96d7ff;
  font-weight: 500;
  cursor: pointer;
}

.gallery-lightbox__close {
  font-size: 3vw;
  line-height: 1;
  position: absolute;
  top: 1.5vw;
  right: 2vw;
}

.gallery-lightbox__prev,
.gallery-lightbox__next {
  font-size: 4vw;
  line-height: 1;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.gallery-lightbox__prev {
  left: 2vw;
}

.gallery-lightbox__next {
  right: 2vw;
}

body.is-fixed {
  overflow: hidden;
}

/* price */
.service-price__lead,
.service-price__foot,
.service-note__lead,
.service-cta__lead {
  text-align: center;
}

.service-price__lead .text-wrap p,
.service-price__foot .text-wrap p,
.service-note__lead .text-wrap p,
.service-cta__lead .text-wrap p {
  font-size: .95vw;
  line-height: 2.2;
  letter-spacing: .08vw;
  font-weight: 500;
  color: #333;
  text-align: center;
}

.service-price__box {
  width: 58%;
  margin: 3vw auto 0;
  text-align: center;
}

.service-price__box-inner {
  width: 100%;
  padding: 3.5vw 4vw 3vw;
  outline: 1.5px solid #00bcd4;
  outline-offset: -.7vw;
  border: 1.5px solid #00bcd4;
  border-radius: 1vw;
}

.service-price__plan p {
  font-size: 1.5vw;
  line-height: 1;
  letter-spacing: .15vw;
  margin-bottom: 1.5vw;
  padding-bottom: 1.5vw;
  border-bottom: 1px solid #00bcd4;
  background: linear-gradient(99deg, #71f2f4 0%, #45b1e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-price__plan span.price {
  font-size: 3vw;
  margin: 0 .2vw 0 1vw;
  color: #607d8b;
  font-family: "Roboto", sans-serif;
}

.included {
  font-size: 1.2vw;
  font-weight: 600;
  margin-bottom: .5vw;
  letter-spacing: .1vw;
}

.service-price__list {
  width: fit-content;
  margin: 0 auto;
}

.service-price__item {
  line-height: 2;
  text-align: left;
}

.service-option {
  width: 58%;
  margin: 3vw auto 0;
  background: #eefafd;
  padding: 3vw;
  border-radius: .7vw;
}

.service-option__head {
  font-weight: 500;
  margin-bottom: 1.5vw;
  text-align: center;
  font-size: 1.5vw;
  line-height: 1;
  letter-spacing: .15vw;
}

.service-option__table {
  width: 100%;
  border-top: 1px solid #607d8b;
}

.service-option__row {
  width: 100%;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2vw;
  padding: 1vw 2vw;
  border-bottom: 1px solid #607d8b;
}

.service-option__name,
.service-option__price {
  font-size: 1.2vw;
  line-height: 1.8;
  letter-spacing: .08vw;
  font-weight: 500;
  color: #333;
}

.service-repeat {
        width: 58%;
        margin: 3vw auto 0;
    padding: 1.8vw 2vw;
    background: #fff7ed;
    border-radius: 1vw;
    text-align: center;
}

.service-repeat p {
    font-size: 1.2vw;
}

.label_inner {
        position: absolute;
    top: -.3vw;
    left: -.3vw;
    width: 6vw;
    height: 6vw;
    overflow: hidden;
}

.ribbon {
    display: inline-block;
    position: absolute;
    padding: 0;
    right: -2.5vw;
    top: 1vw;
    width: 12.5vw;
    text-align: center;
    background: #ea2e7a;
    color: #fff;
    -webkit-transform: rotate(-45deg);
    -ms-transform: rotate(-45deg);
    transform: rotate(-45deg);
    height: 1.6vw;
}
.ribbon:before, .ribbon:after {
    position: absolute;
    content: "";
    border-top: .3vw solid #ea2e7a;
    border-left: .3vw solid transparent;
    border-right: .3vw solid transparent;
    bottom: -.3vw;
}

.ribbon:before {
    left: 2.2vw;
}

.ribbon:after {
    right: 2.7vw;
}

/* note */
.service-note__list {
  margin: 3vw auto 0;
}

.service-note__item {
  width: 100%;
  padding: 0 0 2vw;
}

.service-note__item-title {
  position: relative;
  padding-left: 1.5vw;
  padding-bottom: 1vw;
  font-size: 1.2vw;
  line-height: 1.8;
  letter-spacing: .12vw;
  font-weight: 500;
  margin-bottom: .8vw;
  text-align: left;
  border-bottom: 1px solid #444;
}

.service-note__item-title::before {
  content: "■";
  position: absolute;
  top: 0;
  left: 0;
  color: #444;
  line-height: 1.8;
}

.service-note__item .text-wrap {
  width: 100%;
  margin-top: 1vw;
}

.service-note__item .text-wrap p {
  font-size: 1.1vw;
  line-height: 2.2;
  letter-spacing: .08vw;
  text-align: left;
}

/* cta */
.service-cta__btn-wrap {
  width: 100%;
  margin-top: 2.5vw;
  text-align: center;
}

.service-cta__btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  width: 40%;
  padding: 1vw 2.5vw;
  border-radius: 10vw;
  text-decoration: none;
  font-size: 1.1vw;
  line-height: 1;
  letter-spacing: .1vw;
  font-weight: 500;
  color: #fff;
  background: linear-gradient(99deg, #71f2f4 0%, #45b1e5 100%);
  transition: opacity .3s;
}

.service-cta__btn:hover {
  opacity: .85;
}
/*---------------------------------------------------------
七五三
---------------------------------------------------------*/

section.page-mv.shichi{
        background-position: 0 17%;
}

/*---------------------------------------------------------
着付け
---------------------------------------------------------*/
service-price {
  width: 100%;
  padding: 6vw 0;
  background: #fff;
}

.service-price__inner {
  width: 65%;
  margin: 0 auto;
}

.service-head {
  width: 100%;
  margin-bottom: 3vw;
  text-align: center;
}

.service-sub {
  font-size: 4vw;
  line-height: 1;
  letter-spacing: .3vw;
  font-weight: 500;
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  background: linear-gradient(99deg, #71f2f4 0%, #45b1e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  width: fit-content;
  margin: 0 auto 1vw;
}

.service-title {
  font-size: 2vw;
  line-height: 1.7;
  font-weight: 600;
  color: #333;
  font-family: "Noto Serif JP", serif;
  letter-spacing: .3vw;
  background: linear-gradient(61deg, #11e3ed 13%, #009cfd 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.service-price .text-wrap {
  width: 100%;
}

.service-price .text-wrap p {
  font-size: 1.05vw;
  line-height: 2.1;
  letter-spacing: .05vw;
  font-weight: 500;
  color: #333;
  text-align: center;
}

.service-price__lead {
  margin-bottom: 3vw;
}

.service-price-table {
  width: 100%;
}

.service-price-table__group {
  width: 100%;
  margin-bottom: 2vw;
}

.service-price-table__group:last-child {
  margin-bottom: 0;
}

.service-price-table__title {
  font-size: 1.2vw;
  line-height: 1.7;
  letter-spacing: .08vw;
  font-weight: 600;
  color: #333;
  margin-bottom: .8vw;
  padding-left: 1vw;
  border-left: .25vw solid #71f2f4;
}

.service-price-table__box {
  width: 100%;
  background: #fbfdff;
  border: 1px solid #d8eef6;
  border-radius: 1vw;
  overflow: hidden;
}

.service-price-table__table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
}

.service-price-table__table tr {
  border-bottom: 1px solid #d8eef6;
}

.service-price-table__table tr:last-child {
  border-bottom: none;
}

.service-price-table__table th,
.service-price-table__table td {
  padding: 1.2vw 1.6vw;
  font-size: 1.05vw;
  line-height: 1.8;
  letter-spacing: .05vw;
  font-weight: 500;
  color: #333;
  vertical-align: middle;
}

.service-price-table__table th {
  width: 62%;
  text-align: left;
  background: #f7fcfe;
}

.service-price-table__table td {
  width: 38%;
  text-align: right;
  background: #fff;
  font-family: "Roboto", sans-serif;
}


.service-repeat__lead {
  font-size: 1vw;
  line-height: 1;
  letter-spacing: .15vw;
  font-weight: 500;
  font-family: "Josefin Sans", sans-serif;
  text-transform: uppercase;
  background: linear-gradient(99deg, #71f2f4 0%, #45b1e5 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: .8vw;
}

.service-repeat__text {
  font-size: 1vw;
  line-height: 2;
  letter-spacing: .08vw;
  font-weight: 500;
  color: #333;
}

.service-price__foot {
  margin-top: 2vw;
}

@media (max-width: 767px) {
  .service-price {
    padding: 12vw 0;
  }

  .service-price__inner {
    width: 88%;
  }

  .service-head {
    margin-bottom: 6vw;
  }

  .service-sub {
    font-size: 10vw;
    letter-spacing: .4vw;
    margin-bottom: 2vw;
  }

  .service-title {
    font-size: 5.8vw;
    line-height: 1.6;
    letter-spacing: .18vw;
  }

  .service-price .text-wrap p {
    font-size: 3.7vw;
    line-height: 2;
    letter-spacing: .05vw;
  }

  .service-price__lead {
    margin-bottom: 6vw;
  }

  .service-price-table__group {
    margin-bottom: 4vw;
  }

  .service-price-table__title {
    font-size: 4.2vw;
    line-height: 1.7;
    letter-spacing: .08vw;
    margin-bottom: 2vw;
    padding-left: 2.5vw;
    border-left: .8vw solid #71f2f4;
  }

  .service-price-table__box {
    border-radius: 3vw;
  }

  .service-price-table__table th,
  .service-price-table__table td {
    padding: 3.5vw 3vw;
    font-size: 3.5vw;
    line-height: 1.8;
    letter-spacing: .05vw;
  }

  .service-price-table__table th {
    width: 58%;
  }

  .service-price-table__table td {
    width: 42%;
  }

  .service-repeat {
    margin-top: 6vw;
    padding: 4.5vw 4vw;
    border-radius: 3vw;
  }

  .service-repeat__lead {
    font-size: 3.6vw;
    letter-spacing: .15vw;
    margin-bottom: 2vw;
  }

  .service-repeat__text {
    font-size: 3.5vw;
    line-height: 1.9;
    letter-spacing: .05vw;
  }

  .service-price__foot {
    margin-top: 5vw;
  }
}

/*---------------------------------------------------------
  footer
---------------------------------------------------------*/



/*---------------------------------------------------------
下層ページ
---------------------------------------------------------*/



/*---------------------------------------------------------
サービス
---------------------------------------------------------*/



/*---------------------------------------------------------
会社概要
---------------------------------------------------------*/



/*---------------------------------------------------------
Q&A
---------------------------------------------------------*/


/*---------------------------------------------------------
ブログ一覧
---------------------------------------------------------*/

.page.container.blog .inner {
  max-width: 72%;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 7vh 0 10vh;
}

section.blog_wrap {
  width: calc(100% - 30%);
  padding-right: 4rem;
}

article.article-list {
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  margin-bottom: 3vh;
  padding: 3vh 2vh;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-shadow: 0px 5px 10px 0px rgb(0 0 0 / 17%);
  box-shadow: 0px 5px 7px 2px rgb(120 120 120 / 22%);
  -ms-flex-pack: distribute;
  justify-content: space-around;
  border: 1px solid #E0E0E0;
}

article.article-list .img-wrap {
  width: 37%;
  height: auto;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

article.article-list .text {
  width: 60%;
  position: relative;
}

article.article-list .text h2 {
  font-size: 1.2rem;
  margin-bottom: .2em;
  line-height: 1.4;
  font-weight: 500;
}

article.article-list a {
  text-decoration: none;
  width: 100%;
}

article.article-list a img {
  width: 100%;
}

.cat-day {
  position: relative;
}

ul.post-categories {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

ul.post-categories a {
  background: #033059;
  display: inline;
  color: #fff;
  padding: .2em 1em;
  margin-right: .5em;
  font-size: .8rem;
}

ul.post-categories li {
  list-style: none;
}

article.article-list p.article-date {
  position: absolute;
  top: 0;
  right: 0;
}

article.article-list .archive-text {
  margin-top: 1vh;
  line-height: 1.6;
}

.pagination {
  margin: 2rem 0;
  text-align: center;
}

.pagination ul {
  font-size: 0;
}

.pagination ul li {
  font-size: 1rem;
  display: inline-block;
  margin-right: .5vw;
}

.pagination ul li:last-child {
  border: 0;
}

.pagination ul li a,
.pagination .current {
  display: block;
  padding: .5vh 1vw;
  border: 1.5px solid #033059;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

i.fas.fa-angle-right,
i.fas.fa-angle-left {
  color: var(--color-theme);
}

.pagination ul li .prev,
.pagination ul li .next {
  border: 0;
}

.pagination ul li a {
  text-decoration: none;
  color: var(--color-theme);
  font-weight: 500;
}

.pagination ul li a:hover {
  opacity: .6;
}

.pagination .current {
  color: #fff;
  background-color: var(--color-theme);
}


/*---------------------------------------------------------
投稿ページ
---------------------------------------------------------*/

span.cat-data a {
  background: #033059;
  display: inline;
  color: #fff;
  padding: .2em 1em;
  margin-right: .5em;
  font-size: .8rem;
}

.single h1 {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .02vw;
  line-height: 1.6;
}

.article-date {
  text-align: right;
  margin-bottom: 3vh;
  font-size: 1rem;
}

span.st-mymarker-s {
  background: -o-linear-gradient(transparent 70%, #d4dff4 0%);
  background: -webkit-gradient(linear, left top, left bottom, color-stop(70%, transparent), color-stop(0%, #d4dff4));
  background: linear-gradient(transparent 70%, #d4dff4 0%);
  font-weight: 700;
}

.fixed-page h2,
.single article h2 {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .04vw;
  margin: 5vh auto 3vh;
  padding: 2vh 1vw;
  border-left: .25vw solid #033059;
  line-height: 1;
  background-color: #f7f7f7;
}

.fixed-page h3,
.single article h3 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: .04vw;
  margin: 3vh auto 3vh;
  padding: 1vh .5vw;
  border-bottom: 2px solid #033059;
}

.fixed-page h4,
.single article .blog-main h4 {
  font-size: 1.4rem;
  font-weight: 500;
  letter-spacing: .04vw;
  margin: 3vh auto 3vh;
  padding: 1vh 1.2vw 0;
  position: relative;
}

.fixed-page h4::before,
.single article h4::before {
  content: "";
  display: block;
  position: absolute;
  top: 1.3vw;
  left: 0;
  width: .7vw;
  height: .7vw;
  background-color: var(--color-theme);
}

.fixed-page h5,
.single article h5 {
  font-size: 1.3rem;
  font-weight: 500;
  letter-spacing: .04vw;
  margin: 3vh auto 3vh;
  padding: 1vh 0 0;
  position: relative;
}

.fixed-page .inner p,
.single article p {
  font-size: 1.2rem;
  font-weight: 400;
  margin-top: 3vh;
  line-height: 2;
}

.fixed-page .inner ul,
.single .blog-main ul,
.fixed-page .inner ol,
.single .blog-main ol {
  margin: 3vh auto 5vh;
  padding: 3vh 1vw 3vh 2.5vw;
  background-color: #f7f7f7;

}

.fixed-page .inner ul ul,
.single .blog-main ul ul {
  margin-top: unset;
  margin-bottom: .7vw;
  margin-left: 0;
}

.fixed-page .inner ul li,
.single .blog-main ul li {
  list-style-type: disc;
  font-size: 1.2rem;
  margin-bottom: .7vh;
}

.fixed-page .inner ol li,
.single .blog-main ol li {
  font-size: 1.2rem;
  margin-bottom: .7vh;
}

.fixed-page .inner ul ul li,
.single .blog-main ul ul li {
  list-style: none;
}

.single article p.box-title {
  position: relative;
  top: 5vh;
  background: #033059;
  color: #fff;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 2vw;
  letter-spacing: .1vw;
  margin-top: 0;
}

.fixed-page figure,
.single article figure {
  margin: 3vh 0;
}

.single article p.article-date {
  font-size: 1rem;
  margin-top: 0;
  text-align: right;
}

.page_sns {
  width: 48%;
  margin: 0 auto;
}


.single section.page-mv p.title {
  font-size: 6rem;
  font-weight: 500;
  font-family: "Josefin Sans", sans-serif;
  line-height: .9;
  position: relative;
  z-index: 1;
  text-align: center;
}

.single .contents {
  width: 60%;
  margin: 10vh auto;
}

section.single-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: 80%;
  margin: 0 auto;
}

.page.single .inner {
  max-width: 72%;
  width: 100%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 3vh 0;
}

section.blog_wrap {
  width: calc(100% - 30%);
  padding-right: 3vw;
}

article.article-content {
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0.5em;
}

article.article-content p.cat-data a {
  background-image: -o-linear-gradient(43deg, #37c1ff, #30bdff);
  background-image: linear-gradient(47deg, #37c1ff, #30bdff);
  display: inline;
  color: #fff;
  padding: 0.5vh 1em;
  border-radius: 50px;
  margin-right: 0.5em;
  font-size: .8rem;
  text-decoration: none;
}

.article-tag {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

section.blog_wrap table {
  margin: 3vh auto 5vh;
}

section.blog_wrap td,
section.blog_wrap th {
  border: 1.5px solid #033059 !important;
  padding: 1vh 1vw;
  font-size: 1.2rem;
}

.article-tag ul {
  margin-bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 0 !Important;
}

.single .post p.tag {
  background: #333;
  color: #fff;
  text-align: center;
  width: 10%;
  border-radius: 4px;
  font-size: .9rem !important;
  padding: 0 0;
  margin-bottom: 0;
  display: -ms-grid;
  display: grid;
  place-items: center;
}

.single .post .article-tag ul {
  margin-bottom: 0;
  margin-left: 0;
}

.single article .article-tag ul li {
  list-style-type: none;
  list-style: none;
  padding-right: 1em;
  font-size: 1.2rem;
}

.article-tag a {
  text-decoration: none;
  color: var(--color-main);
  font-size: 1.2rem;
}

.article-tag a::before {
  background: no-repeat;
  width: 1.2vw;
  height: 2.2vh;
  background-image: url(https://hp6.veronica9.com/wp-content/uploads/2025/01/tag-n.svg);
  content: '';
  margin-right: .3vw;
  display: inline-block;
  top: .3vh;
  position: relative;
}

.youtube {
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-bottom: 2em;
}

.youtube iframe {
  width: 100%;
  height: 100%;
}

blockquote {
  position: relative;
  border: 1px solid #607D8B;
  border-radius: .5vw;
  padding: 5vh 2vh 1vh;
  background: #f7f7f7;
  margin: 5vh auto;
}

blockquote:before {
  margin-right: 1em;
  display: block;
  position: absolute;
  width: 1.5vw;
  height: 1.5vw;
  background-image: url("https://web6.veronica9.com/wp-content/uploads/2024/05/block-quote.svg");
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  left: 1.5vh;
  top: 1.5vh;
}

blockquote:after {
  margin-right: 1em;
  display: block;
  position: absolute;
  width: 1.5vw;
  height: 1.5vw;
  background-image: url(https://web6.veronica9.com/wp-content/uploads/2024/05/block-quote.svg);
  background-repeat: no-repeat;
  background-size: contain;
  content: "";
  right: 0;
  bottom: .5vh;
  -webkit-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
}

blockquote cite {
  display: block;
  font-size: 1rem;
  text-align: right;
  color: #9e9e9e;
  padding-right: 5vh;
}

.single article blockquote p {
  margin-top: 0;
}

blockquote a {
  display: block;
  text-align: right;
  margin-right: 2vw;
}


nav.page-nav {
  margin: 5vh auto 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.page-nav .prev-link {
  width: 49%;
  text-align: left;
  text-decoration: none;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--color-main);
  border: 2px solid #033059;
  -webkit-transition: .4s ease-in-out;
  -o-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
  font-size: .85rem;
  line-height: 1.5;
  padding: 1vh .7vw;
  font-weight: 500;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}

.page-nav .next-link {
  width: 49%;
  text-align: right;
  text-decoration: none;
  position: relative;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  color: var(--color-main);
  border: 2px solid #033059;
  -webkit-transition: .4s ease-in-out;
  -o-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
  font-size: .85rem;
  line-height: 1.5;
  padding: 1vh .7vw;
  font-weight: 500;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-font-feature-settings: "palt";
  font-feature-settings: "palt";
  letter-spacing: 0.1em;
}

.page-nav .prev-link::before {
  content: "PREV";
  position: absolute;
  top: -.85em;
  left: 0;
  line-height: 1;
  color: var(--color-theme);
  font-size: 1.4rem;
  font-family: var(--font-en);
  letter-spacing: .1vw;
  font-weight: bold;
}

.page-nav .next-link:before {
  content: "NEXT";
  position: absolute;
  top: -.85em;
  right: 0;
  line-height: 1;
  color: var(--color-theme);
  font-size: 1.4rem;
  font-family: var(--font-en);
  letter-spacing: .1vw;
  font-weight: bold;
}

nav.page-nav a:hover {
  background: #ebf9ff;
}

.share {
  margin-bottom: 7vh;
  margin-top: 3vh;
  position: relative;
  z-index: 1;
}

.home .share,
.page-id-711 .share {
  width: 55%;
  margin: 0 auto;
}

.single article .share p {
  text-align: center;
  font-size: 1.5rem;
  margin-bottom: 0;
  letter-spacing: .15vw;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  color: var(--color-theme);
  font-family: var(--font-en);
}

.single article .share ul {
  width: 40%;
  margin: 1vh auto 0;
  padding: 0;
  list-style: none;
  display: -ms-flexbox;
  display: -webkit-box;
  display: flex;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  margin-left: auto;
}

.share li {
  width: 31%;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.share li a,
.share li button {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 2.5vw;
  width: 2.5vw;
  border-radius: 50px;
}

.share li a {
  border-radius: 50px;
}

.share li button {
  border-radius: .1vw;
  width: 3.5vw;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.share li button img {
  width: 66%;
}

.share li a:visited {
  opacity: .6;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.facebook_share a {
  background-color: #1877f1;
  color: #ffffff;
}

li.facebook_share a img {
  width: 32%;
}

.line_share a {
  background-color: #1dcd00;
  color: #ffffff;
}

li.line_share a img {
  width: 63%;
}

.tweet_share a {
  background-color: #444;
  color: #fff;
}

li.tweet_share a img {
  width: 50%;
}

.share li a:hover {
  opacity: 0.6;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

button.share-url {
  background-color: var(--color-theme);
  color: #ffffff;
}

.url-copied {
  display: none;
  position: absolute;
  bottom: -6vh;
  left: 67%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 1000;
}

.url-copied span {
  background: #033059;
  color: #fff;
  padding: 6px 12px;
  border-radius: 3px;
  font-size: .8rem;
  white-space: nowrap;
}

@media(max-width: 599px) {
  .share li {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
  }

  .share li i {
    font-size: 1.3em;
    padding-top: 3px;
  }

  .share li a {
    font-size: .7rem;
  }

  .share li a svg {
    font-size: .95rem;
  }

  .share ul {
    width: 46%;
    margin: 3vw auto 0;
  }

  .share li a {
    height: 9.8vw;
    width: 9.8vw;
  }

  nav.page-nav {
    margin: 5vh 0;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
  }
}


.sidebar {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  min-width: 0;
  width: 30%;
}



/*---------------------------------------------------------
アーカイブ
---------------------------------------------------------*/


/*---------------------------------------------------------
お問い合わせ
---------------------------------------------------------*/

.table-res-form {
  width: 100%;
  margin-top: 5vh;
}


.table-res-form tr.td_last {
  border: unset;
}

.table-res-form th,
.table-res-form td {
  padding: 3vh 3vh 3vh 0;
}

.table-res-form th {
  font-size: 1.3rem;
  width: 27%;
  text-align: right;
  vertical-align: top;
  font-weight: 500;
}

.table-res-form th span.parentheses {
  font-size: 1rem;
  display: block;
  line-height: 1.5;
  margin-top: 1vh;
}

.table-res-form td {
  vertical-align: middle;
}

.table-res-form .requied {
  font-size: .8em;
  color: #fff;
  display: inline-block;
  padding: .2vh .3vw;
  background: var(--color-theme);
  position: relative;
  top: -1px;
  margin-left: .2vw;
}

.wpcf7 input,
.wpcf7 textarea {
  border: 1px solid #033059 !important;
}

.wpcf7 .wpcf7-submit {
  width: 50% !important;
}

span.wpcf7-form-control.wpcf7-checkbox {
  display: -ms-grid;
  display: grid;
  text-align: left;
  font-size: 1.2rem;
}

span.wpcf7-list-item-label {
  line-height: 1.8;
}

span.wpcf7-list-item.last.has-free-text {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

span.wpcf7-list-item.last.has-free-text label {
  width: 12%;
}

span.wpcf7-list-item.last.has-free-text input.wpcf7-free-text {
  width: 30%;
  padding: 0 0.5em;
  height: 25px;
  margin-top: 4px;
}

.table-res-form input[type="text"],
input[type="email"],
textarea,
.wpcf7 input[type="tel"],
select.wpcf7-form-control.wpcf7-select.wpcf7-validates-as-required,
select.wpcf7-form-control.wpcf7-select,
.wpcf7-text {
  padding: 0.2em 0.5em;
  height: 2.5vw;
  font-size: 1.2rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 0;
  width: 100%;
}

.table-res-form input[type="text"]:focus,
textarea:focus {
  background: #FFF;
  -webkit-box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 1px 0 rgba(0, 0, 0, 0.5);
}

.wpcf7 input[type="checkbox"] {
  left: -.2vw;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 1.1vw;
  height: 1.1vw;
  border-radius: 0;
  display: inline-block;
  vertical-align: middle;
  cursor: pointer;
  top: -.2vh;
  position: relative;
}

.wpcf7 input[type="checkbox"]:checked {
  background-color: var(--color-theme);
  border-color: var(--color-theme);
  position: relative;
}

.wpcf7 input[type=checkbox]:checked:after {
  content: "";
  display: block;
  width: 1vw;
  height: .5vw;
  border-top: 2px solid #fff;
  border-right: 2px solid #fff;
  -webkit-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  transform: rotate(135deg);
  position: absolute;
  left: 1px;
  top: 1px;
  z-index: 1;
}

textarea.wpcf7-form-control.wpcf7-textarea {
  height: 16em;
  padding: 0.5em;
}


.table-res-form input[type=submit] {
  position: relative;
  padding: .5vh 0;
  color: #fff;
  background: var(--color-theme);
  font-weight: 500;
  font-size: 1.4rem;
  letter-spacing: .2em;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  border: 1.5px solid #fff !important;
  border-radius: 0;
}

.table-res-form input[type=submit]:hover {
  -webkit-box-shadow: none;
  box-shadow: none;
  border: 1.5px solid #033059 !important;
  background: #ffffff;
  color: var(--color-theme);
}

span.wpcf7-spinner {
  display: none;
}

tr.td_last {
  text-align: center;
}

tr.td_last td {
  padding: 1.5em 0;
}

.home tr.td_last td {
  padding: 0;
}

span.wpcf7-not-valid-tip {
  color: #E91E63;
  text-align: center;
  display: block;
  font-size: 1rem;
}

.wpcf7 form .wpcf7-response-output {
  margin: 2vh auto 2vh !important;
  padding: .5em !important;
}

form.invalid .wpcf7-response-output,
.wpcf7 form.unaccepted .wpcf7-response-output,
.wpcf7 form.payment-required .wpcf7-response-output {
  border-color: #e91e63 !important;
}

.wpcf7 form.sent .wpcf7-response-output {
  border-color: #E91E63 !important;
}

.wpcf7-response-output {
  text-align: center;
  color: #e91e63;
  margin-top: 2em;
  padding: 0.5em;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

select {
  -webkit-appearance: auto;
  -moz-appearance: auto;
  appearance: auto;
  border: .5px solid #333 !important;
}

.screen-reader-response {
  display: none;
}

p.pp {
  text-align: center;
}

p.pp a {
  color: var(--color-main);
  text-decoration: none;
  font-size: 1.2rem;
}

p.pp a:hover {
  opacity: 0.6;
}

.contact_text_bottom {
  text-align: center;
  margin-top: 3vh;
  font-size: 1rem;
}

/*---------------------------------------------------------
固定ページ
---------------------------------------------------------*/
.fixed-page {
  margin-top: 12vh;
}

.fixed-page .inner {
  width: 55%;
  margin: 0 auto;
  padding: 7vh 0 10vh;
}

.fixed-page h1 {
  font-size: 1.6rem;
  font-weight: 500;
  letter-spacing: .02vw;
  line-height: 1.8;
}

.fixed-page a {
  text-decoration: underline;
  color: var(--color-theme);
}

.breadcrumb a {
  text-decoration: none;
}

/*---------------------------------------------------------
404 ページ
---------------------------------------------------------*/
.error404 main {
  text-align: center;
  padding: 7vh 0 15vh;
}

.error404 main h2 {
  font-size: 2rem;
  margin-bottom: 3vh;
  color: var(--color-theme);
}

.error404 main p {
  font-size: 1.3rem;
}

.error404 main div {
  margin-top: 5vh;
}

.error404 main div a {
  width: 20%;
  padding: .7vh 0;
  display: block;
  text-align: center;
  margin: 0 auto;
  background: #033059;
  color: #fff;
  font-size: 1.2rem;
  letter-spacing: .05vw;
  font-weight: 500;
  position: relative;
}

/* =========================================================
   Smartphone ( <= 767px )
========================================================= */
@media (max-width: 767px) {

  body {
    line-height: 1.7;
  }

  /* ------------------------------
     Display Utilities
  ------------------------------ */
  .pc_block,
  .pc_inlineblock {
    display: none !important;
  }

  .sp_block,
  br.sp_block {
    display: block !important;
  }

  .sp_inlineblock {
    display: inline-block !important;
  }

  /* ------------------------------
     Header
  ------------------------------ */
  header {
    position: relative;
  }

  .site-title-wrap {
    width: 100%;
  }

  .site-title-wrap img {
    width: 68%;
    margin: 0 auto;
  }

  /* ------------------------------
     TOP Button
     - SPでは非表示（footer固定バーを使用）
  ------------------------------ */
  #topBtn {
    display: none !important;
  }

  /* =====================================================
     Footer Fixed Menu (SP only)
  ===================================================== */
  .footer_menu {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 9999;
  }

  ul.floating {
    display: grid;
    grid-template-columns: 1fr 1.4fr 1fr;
    background: rgb(3 48 89 / 92%);
    border-top: 1px solid #ffe3af;
  }

  ul.floating li {
    padding: 2svh 0;
    text-align: center;
    border-right: 1px solid #ffe3af;
  }

  ul.floating li:last-child {
    border-right: none;
  }

  ul.floating a,
  ul.floating .hamburger {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: .4em;
    color: #ffe3af;
    font-size: 3.4vw;
    font-weight: 500;
    line-height: 1;
  }

  ul.floating svg {
    width: 5.5vw;
    height: auto;
  }

  /* =====================================================
     Hamburger Button (SP)
  ===================================================== */
  .g-nav-openbtn {
    display: block;
    position: absolute;
    top: 3vw;
    right: 3%;
    width: 48px;
    height: 48px;
    z-index: 10000;
    cursor: pointer;
  }

  .g-nav-openbtn span {
    position: absolute;
    left: 12px;
    width: 50%;
    height: 2px;
    border-radius: 2px;
    transition: all .4s;
  }

  /* =====================================================
     Global Navigation (SP)
     - JSで .is-open / html.nav-open 制御
  ===================================================== */
  nav#g-nav {
    position: fixed;
    inset: 0;
    background: #033059;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(100%);
    transition: transform .35s ease;
    z-index: 9999;
  }

  nav#g-nav.is-open {
    transform: translateX(0);
  }

  html.nav-open {
    overflow: hidden;
  }

  nav#g-nav ul {
    width: 80%;
    text-align: center;
  }

  nav#g-nav li {
    padding: 1.4svh 0;
  }

  nav#g-nav a {
    font-size: 4.6vw;
    font-weight: 500;
    letter-spacing: .12em;
    color: #fff;
    display: block;
  }

  nav#g-nav a:hover {
    opacity: .7;
  }

  nav#g-nav .hamburger {
    margin-top: 4svh;
    padding: .6em 1.8em;
    border-radius: 50px;
    background: #fff;
    color: #033059;
    font-size: 3.6vw;
    width: fit-content;
    margin-left: auto;
    margin-right: auto;
  }
}


/* =========================================================
   Tablet Base ( 768px – 1366px )  ※iPad Pro含む
========================================================= */
@media (min-width: 768px) and (max-width: 1366px) {

  /* SP固定バーはタブレットでは非表示 */
  .footer_menu {
    display: none !important;
  }

  /* TOP Button（タブレットでは表示） */
  #topBtn {
    display: grid;
    place-items: center;
  }
}


/* =========================================================
   Tablet Portrait ( 768px – 1366px )
========================================================= */
@media (min-width: 768px) and (max-width: 1366px) and (orientation: portrait) {

  /* 例：縦向きは余白広め・1カラム寄り */
  .inner {
    width: 86%;
    margin-left: auto;
    margin-right: auto;
  }

  /* 例：ブログは縦向きでサイドバーを落とす */
  .blog_wrap {
    width: 100%;
    padding-right: 0;
  }

  .sidebar {
    display: none;
  }
}


/* =========================================================
   Tablet Landscape ( 768px – 1366px )
========================================================= */
@media (min-width: 768px) and (max-width: 1366px) and (orientation: landscape) {

  /* 例：横向きは情報量を増やす（2カラム） */
  .inner {
    width: 92%;
    margin-left: auto;
    margin-right: auto;
  }

  .blog_wrap {
    width: calc(100% - 30%);
    padding-right: 3vw;
  }

  .sidebar {
    display: block;
    width: 30%;
  }
}


/* =========================================================
   PC ( >= 1367px )
========================================================= */
@media (min-width: 1367px) {

  /* SP固定バーはPCでは不要 */
  .footer_menu {
    display: none !important;
  }

  /* TOP Button（PC表示） */
  #topBtn {
    display: grid;
    place-items: center;
  }

  /* ハンバーガーボタンは通常PCで非表示（必要なら削除OK） */
  .g-nav-openbtn {
    display: none;
  }
}


/* =========================================================
   Large Desktop ( >= 1920px )
========================================================= */
@media (min-width: 1920px) {
  body {
    font-size: 1.05rem;
  }
}