@charset "utf-8";

/*
theme Name: hulolabo
Author: 株式会社ヒューロラボ
Description: original theme
version： 1.0.0
*/

:root {
  --color-main: #333;
  --color-theme: #003565;
  --color-background: #fff;
  --font-main: "Noto Sans JP", sans-serif;
  --font-en: "Cormorant Garamond", serif;
  --font-en2: "Crimson Text", serif;
  --gradient-primary: linear-gradient(300deg, #ffd688, #ffe3af);
}


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

@media (min-width: 768px) {
  html {
    scroll-padding-top: 8vh;
  }

  [id] {
    scroll-margin-top: 8vh;
  }
}

@media (max-width: 767px) {
  [id] {
    scroll-margin-top: 4vh;
  }
}

body {
  font-family: var(--font-main);
  line-height: 2;
  color: var(--color-main);
  font-weight: 500;
}

.container {
  max-width: 100%;
  margin: 0 auto;
  overflow: hidden;
}

a:hover {
  opacity: .7;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

@media (max-width: 768px) {
  .main-nav {
    position: fixed;
    inset: 0;
    background: rgba(255, 255, 255, 0.95);
    -webkit-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: all 0.3s ease;
    -o-transition: all 0.3s ease;
    transition: all 0.3s ease;
  }

  .main-nav.is-active {
    -webkit-transform: translateX(0);
    -ms-transform: translateX(0);
    transform: translateX(0);
  }

  .nav-list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    padding: 2vw;
  }
}


.pc_block {
  display: block;
}

.sp_block {
  display: none !important;
}

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

.pc_inlineblock {
  display: inline-block;
}

p.center {
  text-align: center;
}

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

.flex-wrap.sb {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

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

.cdp-copy-loader-overlay {
  display: none;
}

a.normal {
    color: #003565;
    text-decoration: underline;
}

/*ローディング*/

.start {
  position: fixed;
  background: #fff;
  background-attachment: fixed;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  z-index: 9000;
}

.start p {
  position: fixed;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  display: none;
  z-index: 9999;
  width: 17vw;
}


/*---------------------------------------------------------
アニメーション
---------------------------------------------------------*/

.js-animation {
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(10px);
  -ms-transform: translateY(10px);
  transform: translateY(10px);
  -webkit-transition: all 2s;
  -o-transition: all 2s;
  transition: all 2s;
}

.js-animation.is-show {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0px);
  -ms-transform: translateY(0px);
  transform: translateY(0px);
}

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

header {
  width: 100%;
  background: #fff;
  border-bottom: 1px solid #ddd;
  position: relative;
  top: 0;
  left: 0;
  z-index: 1000;
}

/* 内部ラッパー */
.header-inner {
  max-width: 95%;
  margin: 0 auto;
  padding: 2vh 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
}

/* お問い合わせ（右上） */
.header-top {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  position: absolute;
  right: 5vw;
}

.header-contact .btn-contact {
  display: inline-block;
  padding: 1vh 4vw;
  background-color: #003565;
  color: #fff;
  font-weight: bold;
  text-decoration: none;
  border-radius: 4px;
  transition: background 0.3s ease;
  font-size: 1vw;
}

.header-contact .btn-contact:hover {
  background-color: #1a3058;
}

.site-title-wrap {
  margin-bottom: 1vh;
  text-align: center;
  position: relative;
  z-index: 1;
}

.site-title-wrap img {
  width: 16vw;
}

nav#g-nav {
  width: 100%;
  margin-top: 1vh;
}

/* グローバルナビ（横並び） */
#g-nav .gnavi__lists {
  display: flex;
  justify-content: center;
  list-style: none;
  padding: 0;
  margin: 0;
}

/* グローバルナビメニュー項目 */
#g-nav .gnavi__lists li {
  position: relative;
  padding: 0 2vw 1vh;
}

#g-nav .gnavi__lists li p {
  color: #333;
  font-size: 1vw;
  display: block;
  padding: 1vh 0;
  line-height: 1.8;
}

/* メニューのテキスト */
#g-nav .gnavi__lists li a {
  text-decoration: none;
  color: #333;
  font-size: 1vw;
  display: block;
  padding: 1vh 0;
  text-align: left;
  /*   line-height: 1.4; */
  line-height: 1.8;
}

/* メニュー項目の間に縦線 */
#g-nav .gnavi__lists li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 45%;
  right: 0;
  transform: translateY(-50%);
  height: 20px;
  width: 1px;
  background-color: #333;
}

#g-nav .gnavi__lists li ul.sub-menu li::after {
  display: none;
}



/* ドロップダウン */
.has-child {
  position: relative;
}

.has-child .sub-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 13vw;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  z-index: 10;
  list-style: none;
}

.home #g-nav .sub-menu li {
  border-bottom: 1px solid #fff;
  padding: 0;
}

#g-nav .sub-menu li {
  border-bottom: 1px solid #003565;
  padding: 0;
}

#g-nav .sub-menu li:last-of-type {
  border-bottom: none;
}

.has-child:hover .sub-menu {
  display: block;
}

#g-nav .sub-menu li a {
  color: #fff;
  white-space: nowrap;
  display: block;
  padding: 2vh 1vw;
  background: #eeeeee;
  color: #333;
}

.home #g-nav .sub-menu li a {
  background: #003565;
  color: #fff;
}

button.submenu-toggle {
  display: none;
}

/*---------------------------------------------------------
メインビジュアル
---------------------------------------------------------*/

.mv {
  position: relative;
  width: 100%;
  height: 85vh;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.mv-bg {
  background: url(https://web10.veronica9.com/wp-content/uploads/2025/08/AdobeStock_1477866179_Preview.jpeg) no-repeat center center;
  position: absolute;
  width: 100%;
  height: 103vh;
  top: -12vh;
  left: 0;
  z-index: 0;
  background-size: cover;
}

/* .mv-bg {
  background: url('https://web10.veronica9.com/wp-content/uploads/2025/08/AdobeStock_1477866179_Preview.jpeg') no-repeat center center/cover;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 0;
} */

.mv-copy {
  position: absolute;
  top: 5%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  text-align: center;
  color: #080063;
  white-space: nowrap;
}

.mv-copy h1 {
  font-weight: bold;
  margin-bottom: 1vh;
  font-size: 2.8vw;
  white-space: nowrap;
}

.mv-copy .sub {
  font-size: 1.7vw;
}

.mv-copy .sub.two {
  margin-bottom: 2vh;
}

.mv-copy .desc {
  font-size: 1.2vw;
  line-height: 2;
}


/*---------------------------------------------------------
TOPコンテンツ 
  ---------------------------------------------------------*/
p.mb {
  margin-bottom: .7em;
}

.scroll {
  text-align: center;
  padding-top: 5px;
  height: 67px;
}

.scroll a {
  position: relative;
  padding-bottom: 5px;
  letter-spacing: .05em;
  color: #fff;
  font-size: 1.1vw;
  text-decoration: none;
  line-height: 1;
  font-family: "Cormorant Infant", serif;
  font-weight: 600;
}

@-webkit-keyframes scroll {
  0% {
    height: 0;
  }

  100% {
    height: 40px;
  }
}

@keyframes scroll {
  0% {
    height: 0;
  }

  100% {
    height: 40px;
  }
}

.scroll a:after {
  content: '';
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  width: 1px;
  height: 0;
  background: #fff;
  margin: auto;
  -moz-animation-name: scroll;
  -moz-animation-duration: 1800ms;
  -moz-animation-timing-function: ease-out;
  -moz-animation-iteration-count: infinite;
  -webkit-animation-name: scroll;
  -webkit-animation-duration: 1800ms;
  -webkit-animation-timing-function: ease-out;
  -webkit-animation-iteration-count: infinite;
  -o-animation-name: scroll;
  -o-animation-duration: 1800ms;
  -o-animation-timing-function: ease-out;
  -o-animation-iteration-count: infinite;
  -ms-animation-name: scroll;
  -ms-animation-duration: 1800ms;
  -ms-animation-timing-function: ease-out;
  -ms-animation-iteration-count: infinite;
}

.mouse .over {
  -o-transition: opacity 200ms ease-in;
  -webkit-transition: opacity 200ms ease-in;
  transition: opacity 200ms ease-in;
}



.image-loop {
  overflow: hidden;
  width: 100%;
  background: #003565;
  padding: 1vw 0;
}

.image-track {
  display: flex;
  animation: loopScroll 50s linear infinite;
  width: max-content;
  will-change: transform;
}

.image-slide {
  display: flex;
}

.image-slide img {
  width: auto;
  height: 32vh;
  margin-right: 1vw;
  object-fit: cover;
  border-radius: 4px;
}

@keyframes loopScroll {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .image-slide img {
    height: 25vh;
    margin-right: 4vw;
  }
}

section.top-news .inner {
  width: 64%;
  margin: 0 auto;
  padding: 5vh 0 8vh;
  position: relative;
  z-index: 1;
}

section.top-news h2 {
  font-weight: 600;
  font-size: 4vw;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  color: #003565;
  line-height: 1.2;
  text-align: left;
  letter-spacing: .2vw;
  margin-left: 1vw;
}

section.top-news .post-warp {
  background: #fff;
  border-radius: .7vw;
  padding: 0 2vw;
  box-sizing: border-box;
  box-shadow: 0px 6px 14px rgb(0 61 117 / 10%);
  overflow: hidden;
}

section.top-news .post-box {
  display: flex;
  align-items: center;
  gap: 0.8vw;
  /* アイテム間の余白 */
  width: 100%;
  border-bottom: 1px solid #9E9E9E;
  padding: 1.2vw 0;
}

/* 最後のボーダーなし */
section.top-news .post-box:last-of-type {
  border-bottom: none;
}

/* 日付：伸縮しない、折り返さない */
section.top-news a.date {
  flex: 0 0 auto;
  /* 幅固定（内容に合わせる） */
  text-decoration: none;
  color: #333;
  white-space: nowrap;
  font-size: 1.1vw;
  padding-left: 2%;
  box-sizing: border-box;
}

section.top-news a.category {
  flex: 0 0 auto;
  background: #c30042;
  color: #fff;
  font-size: .85vw;
  padding: .7vh 1vw;
  text-decoration: none;
  white-space: nowrap;
  line-height: 1;
  border-radius: 50px;
}

section.top-news a.title {
  flex: 1 1 auto;
  min-width: 0;
  text-decoration: none;
  color: #333;
  font-size: 1.1vw;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


/* 一覧リンク */
section.top-news .link {
  margin-top: 2vw;
  text-align: center;
}

section.top-news .link a {
  display: inline-block;
  width: 30%;
  padding: .7vh 0;
  border-radius: 999px;
  border: 1.5px solid #003565;
  color: #fff;
  background: #003565;
  text-decoration: none;
  font-size: 1.1vw;
  letter-spacing: .2vw;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

section.top-news .link a:hover,
section.top-news .link a:focus-visible {
  background: #fff;
  color: #003565;
  box-shadow: 0 8px 18px rgba(0, 61, 117, .25);
  outline: none;
  opacity: unset;
}



section.top-about {
  padding: 7vw 0 5vw;
  position: relative;
  overflow: hidden;
}

section.top-about p.en {
  font-size: 12vw;
  position: absolute;
  top: -2vw;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  white-space: nowrap;
  line-height: 1;
  opacity: .1;
  font-family: "Oswald", sans-serif;
  color: #080063;
}

section.top-about .inner {
  max-width: 82%;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
  gap: 5%;
}

.top-about .left {
  width: 45%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.top-about .left img {
  width: 66%;
  position: relative;
  left: -5vw;
}

.top-about .h2-wrap p {
  font-family: "Roboto", sans-serif;
  font-size: 4vw;
  font-weight: 500;
  font-style: italic;
  margin-bottom: 0.5vw;
  line-height: 1;
}

.top-about .h2-wrap h2 {
  font-size: 2.5vw;
  margin-bottom: 2vh;
  letter-spacing: 0.05em;
  color: #003565;
  text-align: center;
  font-weight: 600;
}

.top-about h3 {
  font-size: 1.7vw;
  margin-bottom: 2vh;
  letter-spacing: 0.05em;
  color: #003565;
  text-align: center;
  font-weight: 600;
  line-height: 1.7;
}

.top-about .text-wrap p {
  font-size: 1.15vw;
  line-height: 1.8;
}

.top-about .text-wrap p.notes {
  font-size: 1vw;
}

.top-about .link a {
  display: inline-block;
  background: #fff;
  color: #003565;
  padding: 0.8em 2em;
  border-radius: 50px;
  font-size: 1vw;
  font-weight: bold;
  letter-spacing: 0.05em;
  margin-top: 1.5em;
  position: relative;
  text-decoration: none;
  transition: all 0.3s ease;
}

.top-about .link a::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.5em;
  width: 0.6em;
  height: 0.6em;
  border-top: 2px solid #003565;
  border-right: 2px solid #003565;
  transform: translateY(-50%) rotate(45deg);
}

.top-about .link a:hover {
  background: #f1f1f1;
}

/* === 右カラム（スライドショー） === */
.top-about .right {
  width: 55%;
  position: relative;
}

.top-about .right .slider {
  position: relative;
  width: 100%;
  overflow: hidden;
  border-radius: 2vw 0 0 2vw;
}

.top-about .right .slider img {
  width: 100%;
  height: auto;
  display: none;
  transition: opacity 0.5s ease;
}

.top-about .right .slider img.active {
  display: block;
}




section.top-about .links {
  display: flex;
  gap: 1vw;
  flex-wrap: wrap;
  margin-top: 5vh;
}

section.top-about .links .btn-pill {
  display: inline-block;
  width: calc(50% - 0.5vw);
  padding: .7vh 0;
  border-radius: 999px;
  text-decoration: none;
  font-size: 1.1vw;
  letter-spacing: .2vw;
  text-align: center;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
}

/* ネイビー（左側） */
section.top-about .links .btn-pill.navy {
  background: #003565;
  border: 1.5px solid #003565;
  color: #fff;
}

section.top-about .links .btn-pill.navy:hover,
section.top-about .links .btn-pill.navy:focus-visible {
  background: #fff;
  color: #003565;

  box-shadow: 0 8px 18px rgba(0, 61, 117, .25);
  outline: none;
  opacity: unset;
}

/* 赤系（右側） */
section.top-about .links .btn-pill.red {
  background: #c30042;
  border: 1.5px solid #c30042;
  color: #fff;
}

section.top-about .links .btn-pill.red:hover,
section.top-about .links .btn-pill.red:focus-visible {
  background: #fff;
  color: #c30042;
  box-shadow: 0 8px 18px rgba(195, 0, 66, .25);
  outline: none;
}

/* スマホ時は1列に */
@media (max-width: 640px) {
  section.top-about .links .btn-pill {
    width: 100%;
    font-size: 4vw;
  }
}

section.service.top {
  background: #003565;
  padding-top: 7vh;
}

section.service h2 {
  font-weight: 600;
  font-size: 5vw;
  letter-spacing: .05em;
  text-align: center;
  font-style: italic;
  color: #ffffff;
  line-height: 1.2;
  margin-bottom: 2vh;
  font-family: "Roboto", sans-serif;
}

section span.jp {
  display: block;
  font-size: 1.3vw;
  font-weight: 500;
  font-family: "Noto Sans JP", sans-serif;
}

.copy-wrap {
  margin-bottom: 5vh;
}


section.service.top p.main {
  font-size: 1.8vw;
  margin-bottom: 2vh;
  letter-spacing: 0.05em;
  color: #fff;
  text-align: center;
  font-weight: 600;
  line-height: 1.7;
}

section.service.top p.sub {
  font-size: 1.2vw;
  margin-bottom: 1.2em;
  line-height: 2;
  color: #fff;
  text-align: center;
}

section.service .flex-wrap {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

section.service.top .flex-box {
  width: 50%;
  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;
  text-decoration: none;
}

section.service.top .flex-box.left {
  height: 30.5vw;
  background-size: cover;
  position: relative;
  background-image: url(https://web10.veronica9.com/wp-content/uploads/2025/08/corporate-services.jpg);
  background-position: right 0% bottom 0%;
}

section.service.top .flex-box:hover {
  opacity: .8;
}

section.service.top .inner-wrap {
  position: relative;
  z-index: 1;
  background: rgb(255 255 255 / 90%);
  text-align: center;
  padding: 2vw 2vw;
  width: 80%;
}

section.service.top h3 {
  font-size: 1.7vw;
  letter-spacing: .2vw;
  font-weight: 600;
  background: #003565;
  color: #fff;
  line-height: 1;
  padding: 1.5vh 0;
  margin-bottom: 1.5vh;
}

section.service.top p.p2 {
  font-size: 1.25vw;
  line-height: 2;
  padding: 1vh 0;
}

section.service.top .flex-box.right {
  position: relative;
  height: 30.5vw;
  background-size: cover;
  background-image: url(https://web10.veronica9.com/wp-content/uploads/2025/08/personal-service.jpg);
  background-position: right 0% bottom 0%;
}

section.service.top .button {
  text-decoration: none;
  background: #c30042;
  display: block;
  width: 65%;
  margin: 1.5vh auto 0;
  padding: .5vh 0;
  font-size: 1.1vw;
  position: relative;
  color: #fff;
  letter-spacing: .1vw;
  border-radius: 50px;
}


section.top-space {
  background: #f8fbff;
  padding: 10vh 0 15vh;
}

section.top-space .inner {
  width: 87%;
  margin: 0 auto;
}

.top-space .h2-wrap p {
  font-weight: 700;
  font-size: 5vw;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  color: #003565;
  line-height: 1.2;
  text-align: center;
  letter-spacing: .2vw;
}

.top-space .h2-wrap h2 {
  margin-top: 2vh;
  letter-spacing: .08em;
  color: #003565;
  font-size: 1.8vw;
  margin-bottom: 2vh;
  text-align: center;
  font-weight: 600;
  line-height: 1.7;
}

.top-space .lead {
  line-height: 2;
  color: #2c2c2c;
  text-align: center;
  font-size: 1.2vw;
}

/* 2カラム */
.top-space .flex-wrap {
  display: flex;
  justify-content: space-between;
  gap: 4%;
  margin-top: 5vh;
  align-items: stretch;
}

.top-space .flex-box.left {
  width: 48%;
}

.top-space .flex-box.right {
  width: 48%;
}

.top-space .space-slider {
  position: relative;
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #e9eef7;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

.top-space .space-slider .slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  animation: fadeLoop 18s linear infinite;
  animation-fill-mode: both;
  will-change: opacity;
  backface-visibility: hidden;
  transform: translateZ(0);
}

.top-space .space-slider .slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.top-space .space-slider .slide.s1 {
  animation-delay: 0s;
}

.top-space .space-slider .slide.s2 {
  animation-delay: 6s;
}

.top-space .space-slider .slide.s3 {
  animation-delay: 12s;
}

@keyframes fadeLoop {
  0% {
    opacity: 0;
  }

  2% {
    opacity: 1;
  }

  /* 早めに出す */
  31% {
    opacity: 1;
  }

  /* 表示保持 */
  33% {
    opacity: 0;
  }

  /* 少し早めに消す */
  100% {
    opacity: 0;
  }
}

.top-space .space-slider {
  background: #e9eef7;
}

.top-space .space-slider img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

section.top-space h3 {
  font-size: 1.4vw;
  letter-spacing: .2vw;
  font-weight: 600;
  background: #003565;
  color: #fff;
  line-height: 1;
  padding: 2vh 0;
  text-align: center;
}

section.top-space figure {
  margin: 0;
}

.top-space .swiper {
  width: 100%;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: #e9eef7;
  box-shadow: 0 8px 24px rgba(0, 0, 0, .08);
}

/* 画像のフィットとチラつき対策 */
.top-space .swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  backface-visibility: hidden;
  transform: translateZ(0);
}




section.top-cv {

  background: #EEEEEE;
  padding: 5vw 0 6vw;
  position: relative;
}

.top-cv .inner {
  width: 96%;

  margin: 0 auto;
}

/* 見出し */
.top-cv .h2-wrap p {
  font-family: "Roboto", sans-serif;
  font-style: italic;
  font-weight: 700;
  font-size: 8vw;
  line-height: 1;
  text-align: center;
  color: #003565;
  position: absolute;
  top: -4vw;
  right: 0;
  opacity: .15;
}

.top-cv .h2-wrap h2 {
  font-weight: 600;
  letter-spacing: .08em;
  font-size: 2.5vw;
  line-height: 1.7;
  text-align: center;
  color: #003565;
}

.top-cv .cv-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1%;
  margin-top: 5vh;
}

.cv-wrap {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2%;
}

/* カード（リンク全体） */
.top-cv .cv-card {
  position: relative;
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  /* 16:9 固定 */
  overflow: hidden;
  background: #e9eef7;
  box-shadow: 0 10px 24px rgba(0, 0, 0, .08);
  transition: transform .2s ease, box-shadow .2s ease;
  outline: none;
}

.top-cv .cv-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1);
  transition: transform .6s ease;
  display: block;
}

/* バッジ */
.top-cv .cv-badge {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 2;
  display: inline-block;
  padding: .7vh 1vw;
  font-size: clamp(10px, 0.8vw, 13px);
  letter-spacing: .1vw;
  color: #fff;
  line-height: 1;
  pointer-events: none;
  box-shadow: 0 4px 10px rgba(0, 0, 0, .15);
  font-size: .7vw;
}

.top-cv .cv-card.is-case .cv-badge {
  background: #003565;
}

/* ネイビー */
.top-cv .cv-card.is-voice .cv-badge {
  background: #c30042;
}

/* レッド */

/* ホバー / フォーカス */
.top-cv .cv-card:hover,
.top-cv .cv-card:focus-visible {
  box-shadow: 0 14px 32px rgba(0, 0, 0, .16);
  transform: translateY(-2px);
}

.top-cv .cv-card:hover img,
.top-cv .cv-card:focus-visible img,
.page-container.voice article.article-list a:hover img,
.page-container.voice article.article-list a:focus-visible img {
  transform: scale(1.05);
}

.top-cv .cv-card:focus-visible {
  outline: 2px solid #003565;
  outline-offset: 2px;
}

/* 下部リンク */
.top-cv .cv-links {
  margin-top: 5vh;
  display: flex;
  justify-content: center;
  gap: 1%;
  flex-wrap: wrap;
}

.top-cv .cv-more {
  text-decoration: none;
  display: inline-block;
  padding: 1vh 0;
  font-size: 1.15vw;
  text-align: center;
  width: 24%;
  letter-spacing: .1vw;
  color: #fff;
  transition: background .2s ease, color .2s ease, box-shadow .2s ease;
  border-radius: 999px;
}

/* 導入事例ボタン */
.top-cv .cv-more.case {
  background: #003565;
  border: 1.5px solid #003565;
}

.top-cv .cv-more.case:hover,
.top-cv .cv-more.case:focus-visible {
  background: #fff;
  color: #003565;
  box-shadow: 0 8px 18px rgba(0, 61, 117, .25);
  outline: none;
}

/* 受講生の声ボタン */
.top-cv .cv-more.voice {
  background: #c30042;
  border: 1.5px solid #c30042;
}

.top-cv .cv-more.voice:hover,
.top-cv .cv-more.voice:focus-visible {
  background: #fff;
  color: #c30042;
  box-shadow: 0 8px 18px rgba(195, 0, 66, .25);
  outline: none;
}


/*---------------------------------------------------------
TOP CTA
---------------------------------------------------------*/
/* section.cta {
    background-image: url(https://hp3.veronica9.com/wp-content/uploads/2024/11/contact.jpg);
    background-size: cover;
    background-position: left 0 top 7%;
    position: relative;
}

section.cta::after {
    width: 100%;
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: rgb(0 0 0 / 35%);
}

section.cta .inner {
    padding: 12vh 0;
    width: 80%;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

section.cta .flex-box.left {
    width: 48%;
}

section.cta h2 {
    font-weight: 700;
    font-family: "Lato", sans-serif;
    font-size: 4.5vw;
    letter-spacing: .05em;
    text-align: center;
    font-style: italic;
    color: #ffffff;
    line-height: 1.4;
    margin-bottom: 0;
}

section.cta .flex-box.right {
    width: 48%;
    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;
}

section.cta .mv_button {
    width: 100%;
}

section.cta .mv_button a {
    background: #ff0;
    display: block;
    text-align: center;
    text-decoration: none;
    width: 100%;
    font-size: 1.8vw;
    line-height: 1.5;
    padding: 2vh 0;
    outline: 1.25px solid #333;
    outline-offset: -.9vh;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    font-weight: 500;
    letter-spacing: .05em;
}

section.cta .mv_button a span {
    font-size: .85em;
}

.mv_button a img {
    width: 2.9%;
    position: relative;
    top: 1.8vh;
    padding-left: .3vw;
}

.cta_button a img {
    width: 2.3%;
    position: relative;
    top: 1.4vh;
    padding-left: .3vw;
}

.page-id-70 .cta_button a img,
.page-id-85 .cta_button a img {
    top: 1.5vh;
}

.page-id-43 .cta_button a img,
.page-id-55 .cta_button a img {
    top: 1vw;
} */

section.top-contact {
  padding: 6vh 0 8vh;
  background-image: url(https://web10.veronica9.com/wp-content/uploads/2025/01/0970-2-scaled.jpg);
  background-size: cover;
  background-position: left 0 top 45%;
  position: relative;
}

section.top-contact:after {
  width: 100%;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: rgb(255 255 255 / 52%);
}

section.top-contact .inner {
  width: 75%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

section.top-contact .h2-wrap {
  text-align: center;
  margin-bottom: 1vh;
}

section.top-contact .h2-wrap p {
  font-weight: 700;
  font-size: 5vw;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  color: #003565;
  line-height: 1.2;
  text-align: center;
  letter-spacing: .2vw;
}

section.top-contact .lead {
  text-align: center;
  font-size: 1.3vw;
  line-height: 1.8;
  margin-bottom: 5vh;
  letter-spacing: .1vw;
}

section.top-contact .contact-grid {
  display: flex;
  gap: 2vw;
  flex-wrap: wrap;
  justify-content: center;
}

section.top-contact .contact-box {
  background: #fff;
  box-shadow: 0 8px 18px rgba(0, 61, 117, 0.08);
  border: 1px solid rgba(0, 61, 117, 0.1);
  flex: 1 1 45%;
  padding: 3.5vh 2.5vw 3vh;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  outline: 1.25px solid #003565;
  outline-offset: -1vh;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

section.top-contact .contact-title {
  font-size: 1.6vw;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1vh;
  background: #003565;
  text-align: center;
  padding: .5vh 0;
  letter-spacing: .1vw;
}

section.top-contact .contact-text {
  line-height: 1.7;
  margin-bottom: 2vh;
  font-size: 1.1vw;
}

section.top-contact .badge {
  display: inline-block;
  background: #f18aca;
  color: #fff;
  font-size: 1vw;
  font-weight: 600;
  padding: 0.2em 0.8em;
  border-radius: 999px;
  margin-top: 0.5vh;
}

section.top-contact .btn {
  display: block;
  width: 65%;
  font-size: 1.1vw;
  position: relative;
  color: rgb(255, 255, 255);
  letter-spacing: 0.1vw;
  text-decoration: none;
  margin: 1.5vh auto 0px;
  padding: 0.5vh 0px;
  border-radius: 50px;
  text-align: center;
  background: #c30042;
  border: 1.5px solid #c30042;
}

section.top-contact .btn:hover,
section.top-contact .btn:focus-visible {
  background: #fff;
  color: #c30042;
  box-shadow: 0 8px 18px rgba(195, 0, 66, .25);
  outline: none;
  border: 1.5px solid #c30042;
}


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

footer.site-footer {
  background: #fff;
  color: #333;
  position: relative;
  border-top: 1px solid #ddd;
}

footer.site-footer .inner {
  width: 75%;
  margin: 0 auto;
  padding: 3vh 0 0;
  box-sizing: border-box;
}

/* 上段 */
.footer-head {
  display: grid;
  grid-template-columns: 1fr 2fr auto;
  gap: 2vw;
  align-items: center;
  padding-bottom: 3vh;
  border-bottom: 1px solid #ddd;
}

.footer-brand img {
  display: block;
  height: auto;
  width: 83%;
}

.footer-contact {
  font-style: normal;
  font-size: .95vw;
}

.footer-contact a {
  color: #333;
  text-decoration: none;
}

.footer-contact a:hover,
.footer-contact a:focus {
  text-decoration: underline;
}

.footer-contact__name {
  font-weight: 600;
}

.footer-contact__time {
  opacity: .85;
  font-size: .95vw;
}

.footer-social {
  display: flex;
  gap: .8vw;
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-social a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(15, 47, 85, .1);
  align-items: center;
  justify-content: center;
}

.footer-social a:hover,
.footer-social a:focus {
  background: rgba(15, 47, 85, .2);
}

.footer-social svg {
  width: 18px;
  height: 18px;
  fill: #0f2f55;
}

/* 中段：グリッド */
.footer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr) 1.2fr;
  gap: 2.5vw;
  padding: 3vh 0;
}

.footer-nav__title {
  font-size: 1.05vw;
  font-weight: 700;
  margin-bottom: .5vh;
}

.footer-nav ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-nav li+li {
  margin-top: .6vw;
}

.footer-nav a {
  color: #333;
  text-decoration: none;
  font-size: 1.05vw;
  line-height: 2.2;
}

nav.footer-nav li {
  display: flex;
  align-items: stretch;
  padding: 0;
  margin: 0;
}

/* CTA */
.footer-cta {
  background: rgba(15, 47, 85, .05);
  border: 1px solid rgba(15, 47, 85, .1);
  border-radius: .8vw;
  padding: 1.2vw;
  display: flex;
  justify-content: center;
  align-items: center;
}

.footer-cta__lead {
  margin: 0 0 1vw;
  line-height: 1.7;
  font-size: .9vw;
}

.footer-cta__btns {
  display: flex;
  gap: .8vw;
  flex-wrap: wrap;
}

.footer-cta__btns a.btn {
  display: inline-block;
  padding: .7vh 0;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .05s ease, opacity .2s ease;
  width: 100%;
  text-align: center;
  font-size: .9vw;
}

.btn--primary {
  background: #003565;
  border: 1.5px solid #003565;
  color: #fff;
}

.btn--primary:hover,
.btn--primary:focus,
.map-link a:hover {
  background: #fff;
  color: #003565;
  box-shadow: 0 8px 18px rgba(0, 61, 117, .25);
  outline: none;
  border: 1.5px solid #003565;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.btn--outline {
  background: rgb(195, 0, 66);
  border-width: 1.5px;
  border-style: solid;
  border-color: rgb(195, 0, 66);
  border-image: initial;
  color: #fff;
}

.btn--outline:hover,
.btn--outline:focus {
  color: rgb(195, 0, 66);
  box-shadow: rgba(195, 0, 66, 0.25) 0px 8px 18px;
  background: rgb(255, 255, 255);
  outline: none;
  border-width: 1.5px;
  border-style: solid;
  border-color: rgb(195, 0, 66);
  border-image: initial;
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
}

.footer-bottom {
  background: #003565;
  color: #fff;

}

.footer-bottom .fb-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1vw;
  padding: 1.5vw 0;
  margin-top: 3vh;
  width: 75%;
  margin: 0 auto;
}

.footer-legal {
  display: flex;
  gap: 1.2vw;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.footer-legal a {
  color: #fff;
  text-decoration: none;
  font-size: .95vw;
}

small.footer-copy {
  font-size: .8vw;
}


@media (max-width: 640px) {
  .footer-head {
    grid-template-columns: 1fr;
    gap: 1vw;
    text-align: left;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: .8vw;
  }

  .to-top {
    right: 4vw;
    bottom: 2.4vh;
  }
}


a.topBtn {
  display: -ms-grid;
  display: grid;
  place-content: center;
  width: 3.5vw;
  height: 3.5vw;
  cursor: pointer;
  position: fixed;
  bottom: 5.5vw;
  right: 1vw;
  z-index: 9999;
  -webkit-transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
  -o-transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

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

a.topBtn::before {
  position: absolute;
  inset: 0;
  content: "";
  background: #9E9E9E;
  opacity: .5;
}

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


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

section.page-mv {
  height: 25vh;
  position: relative;
  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;
  background: #003565;
  background-size: cover;
  position: relative;
  background-position: 0% 70%;
}

section.page-mv::before {
  width: 7vw;
  aspect-ratio: 1 / 1;
  clip-path: polygon(0px 100%, 100% 0px, 100% 100%);
  background: #c30042;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
}

section.page-mv img {
  position: absolute;
  width: 40%;
  /* bottom: -1px; */
  /* right: 0; */
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  opacity: .2;
}

.h1-wrap {
  text-align: center;
  position: relative;
  z-index: 1;
}

section.page-mv h1 {
  font-weight: 500;
  font-size: 2.3vw;
  letter-spacing: .5vw;
  color: #fff;
}

.page-id-3 section.page-mv h1,
.page-id-861 section.page-mv h1 {
  font-size: 5.5vw;
}

.breadcrumb {
  width: 90%;
  margin: 0 auto;
  font-size: .9vw;
  padding-top: 1vh;
}

/*---------------------------------------------------------
サービス・料金
---------------------------------------------------------*/


/*---------------------------------------------------------
オフィス／アクセス
---------------------------------------------------------*/

section.office .inner,
section.access .inner {
  width: 60%;
  margin: 0 auto;
  padding: 5vh 0;
}

section.office p.en-sub,
section.access p.en-sub {
  font-weight: 700;
  font-size: 4vw;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  color: #003565;
  line-height: 1.2;
  text-align: left;
  letter-spacing: .2vw;
}

.gallery-container {
  margin-top: 3vh;
}

/* メインスライダー */
.main-swiper {
  width: 100%;
  aspect-ratio: 3 / 2;
  margin-bottom: 2vh;
  border-radius: .5vw;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.main-swiper .swiper-slide {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
  width: 100%;
  height: 100%;
}

.main-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: none;
  /* 拡大しないのでアニメーションも不要ならnone */
}

.slide-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(34 62 114 / 24%);
  color: white;
  padding: 1vh 0;
  transform: translateY(0);
  transition: none;
}

.slide-content p {
  font-size: 1.7vw;
  line-height: 1.6;
  margin: 0;
  text-align: center;
  letter-spacing: .1vw;
}

/* ナビゲーションボタン */

.swiper-button-prev,
.swiper-button-next {
  display: grid !important;
  place-content: center !important;
  width: 5vw !important;
  height: 5vw !important;
  cursor: pointer !important;
  -webkit-transition: .8s var(--easing) !important;
  transition: .8s var(--easing) !important;
}

.swiper-button-prev::before,
.swiper-button-next::before {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  content: "";
  border-radius: 50%;
  background: rgb(51 51 51 / 14%);
  transition: all 0.6s ease;
}

.swiper-button-prev:hover::before,
.swiper-button-next:hover::before {
  background: rgb(51 51 51 / 34%);
}

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

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

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

/* --- スクロールバー --- */

.swiper-scrollbar {
  position: relative !important;
  inset: auto !important;
  /* top/right/bottom/left を全部リセット */
  width: 100% !important;
  height: 4px !important;
  background: #eee;
  border-radius: 2px;
}

.swiper-scrollbar .swiper-scrollbar-drag {
  background: #c30042;
  border-radius: 2px;
  padding: 1px 0 !important;
}

.thumb-swiper {
  width: 100%;
  height: 6.5vw;
  box-sizing: border-box;
  padding: 10px 0;
}

.thumb-swiper .swiper-slide {
  width: 9vw;
  height: 6vw;
  border-radius: .4vw;
  overflow: hidden;
  cursor: pointer;
  opacity: 0.6;
  transition: all 0.3s ease;
  flex-shrink: 0;
}

.thumb-swiper .swiper-slide-thumb-active {
  opacity: 1;
  transform: scale(1.05);
}

.thumb-swiper .swiper-slide:hover {
  opacity: 1;
  transform: scale(1.02);
}

.thumb-swiper .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.swiper-scrollbar-drag {
  /*     height: 20px;
    padding: 8px 0; */
  cursor: pointer;
  background-color: var(--color-theme);
  background-clip: content-box;
}


.office-text {
  margin-top: 5vh;
}

section.office h3,
section.lb-gallery h3 {
  background: #003565;
  text-align: center;
  font-size: 1.6vw;
  padding: 1vh 0;
  color: #fff;
  letter-spacing: .1vw;
  margin-bottom: 3vh;
  position: relative;
}

section.office h3::after,
section.lb-gallery h3::after {
  width: 2vw;
  aspect-ratio: 1 / 1;
  clip-path: polygon(0px 100%, 100% 0px, 100% 100%);
  background: #c30042;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
}

.office-text p {
  font-size: 1.2vw;
}

section.lb-gallery {
  width: 60%;
  margin: 0 auto;
}


.lb-grid {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.lb-grid li a {
  display: block;
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
}

.lb-grid li img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.0);
  transition: transform .4s ease, opacity .4s ease;
}

.lb-grid li a:hover img {
  transform: scale(1.05);
  opacity: .96;
}

@media (max-width: 520px) {
  .lb-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}



section.lb-gallery .text-wrap {
  margin-top: 2vh;
}

section.lb-gallery .text-wrap p {
  font-size: 1.2vw;
}

.map {
  position: relative;
  width: 100%;
  height: 0;
  padding-top: 50%;
  margin-top: 3vh;
}

.map iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.map-link {
  text-align: center;
}

.map-link a {
  display: inline-block;
  padding: .7vh 0;
  border-radius: 50px;
  font-weight: 700;
  text-decoration: none;
  transition: transform .05s ease, opacity .2s ease;
  width: 30%;
  text-align: center;
  background: #003565;
  border: 1.5px solid #003565;
  color: #fff;
  margin: 3vh auto;
  font-size: 1vw;
}

.access {
  margin: 5vh 0;
}

.access-table {
  width: 100%;
  border-collapse: collapse;
  background: #fff;
  overflow: hidden;
  font-size: 1.2vw;
  border: 0.1vw solid #9E9E9E;
}

.access-table th,
.access-table td {
  padding: 2vh 2vw;
  vertical-align: top;
  line-height: 1.9;
  border: 0.1vw solid #9E9E9E;
}

.access-table th {
  width: 25%;
  text-align: left;
  font-weight: 500;
  letter-spacing: .04em;
  background: #eee;
  position: relative;
}

.access-table td {
  color: #1a2433;
  background: #ffffff;
}

.access-table td br {
  line-height: 2.2;
}

.station-list {
  padding: 0;
  list-style: none;
}

.station-list li {
  position: relative;
  padding-left: 1.2vw;
  line-height: 1.8;
}

.station-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: .72em;
  width: 0.6vw;
  height: 0.6vw;
  border-radius: 50%;
  background: #003565;
}

.access+.access-map,
.access .access-map {
  margin-top: 14px;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(11, 31, 58, .10);
}

/*---------------------------------------------------------
代表挨拶
---------------------------------------------------------*/

section.profile .inner {
  width: 65%;
  margin: 0 auto;
  padding: 10vh 0;
}

section.profile h2,
section.privacy h2,
section.legal h2,
section.terms h2 {
  background: #003565;
  text-align: center;
  font-size: 1.8vw;
  padding: 1vh 0;
  color: #fff;
  letter-spacing: .3vw;
  margin-bottom: 5vh;
  position: relative;
}

section.profile h2::after,
section.privacy h2::after,
section.legal h2::after,
section.terms h2::after,
section.media h2::after {
  width: 2vw;
  aspect-ratio: 1 / 1;
  clip-path: polygon(0px 100%, 100% 0px, 100% 100%);
  background: #c30042;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
}

section.profile .flex-wrap.sb {
  margin-bottom: 3vh;
}

section.profile .flex-box.right {
  width: 35%;
  display: flex;
  justify-content: left;
  align-items: center;
}

section.profile .flex-box.right img {
  width: 84%;
}

section.profile .flex-box.left {
  width: 65%;
  display: flex;
  justify-content: center;
  align-items: center;
}

section.profile .flex-box.left img.logo {
  width: 62%;
  margin: 0 auto 2vh;
}

section.profile p.name {
  text-align: center;
  font-size: 1.6vw;
  padding-bottom: .5vh;
  font-weight: 600;
}

section.profile p.name span {
  padding-left: 1em;
}

.other-job {
  margin: 1vh auto;
}

.other-job p {
  line-height: 2.2;
  text-align: center;
  font-size: 1.2vw;
}

.sign {
  width: 75%;
  margin: 0 auto;
}

.sign img {
  width: 42%;
  margin: 2vh 0 0 auto;
}

section.profile h3 {
  font-size: 1.5vw;
  font-weight: 600;
  margin-bottom: 2vh;
  background: #eee;
  text-align: center;
  padding: 1vh 0;
  letter-spacing: .2vw;
}

section.profile .text-wrap {
  margin-bottom: 5vh;
  margin-top: 3vh;
}

section.profile .text-wrap p {
  font-size: 1.2vw;
  line-height: 2;
}

span.navy {
  color: #0f2f55;
  font-weight: bold;
}

span.red {
  color: #c30042;
  font-weight: bold;
}

section.profile ul.bio-list {
  margin-left: 2em;
  display: grid;
  gap: 1.2vh 1.2vw;
}

section.profile ul.bio-list li {
  font-size: 1.2vw;
  line-height: 2;
}

.hp-link-wrap.flex-wrap.sb {
  margin: 5vh auto 0;
}

.hp-link-wrap a {
  font-weight: 500;
  text-decoration: none;
  transition: transform .05s ease, opacity .2s ease;
  width: 49.5%;
  text-align: center;
  color: #fff;
  font-size: 1.15vw;
  letter-spacing: .05vw;
  padding: 1vh 0;
  outline: 1px solid #ffffff;
  outline-offset: -.2vw;
}

a.eca {
  background: #898066;
  border: 1.5px solid #898066;
}

a.iuac {
  background: #F18F4D;
  border: 1.5px solid #F18F4D;
}

section.achievements .inner {
  width: 65%;
  margin: 0 auto;
  padding: 0 0 10vh;
}

section.achievements h2 {
  background: #003565;
  text-align: center;
  font-size: 1.8vw;
  padding: 1vh 0;
  color: #fff;
  letter-spacing: .1vw;
  margin-bottom: 5vh;
  position: relative;
}

section.achievements h2::after {
  width: 2vw;
  aspect-ratio: 1 / 1;
  clip-path: polygon(0 100%, 100% 0, 100% 100%);
  background: #c30042;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
}

section.achievements .achv-block+.achv-block {
  margin-top: 5vh;
}


section.achievements .achv-block h3 {
  font-size: 1.4vw;
  font-weight: 600;
  margin-bottom: 2vh;
  background: #eee;
  text-align: center;
  padding: 1vh 0;
  letter-spacing: .1vw;
}

section.achievements .achv-list {
  padding: 0;
  display: grid;
  gap: 1.2vh 1.2vw;
  margin-left: 3em;
}

section.achievements .achv-list li {
  position: relative;
  font-size: 1.2vw;
  word-break: break-word;
}


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

section.company .inner {
  width: 60%;
  padding: 8vh 0 10vh;
  margin: 0 auto;
}


section.company p.en-sub {
  font-weight: 700;
  font-size: 4vw;
  font-family: "Roboto", sans-serif;
  font-style: italic;
  color: #003565;
  line-height: 1.2;
  text-align: left;
  letter-spacing: .2vw;
}

section.company table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 3vh;
}

section.company th,
section.company td {
  border: 1px solid #ccc;
  padding: 2vh 2vw;
  font-size: 1.2vw;
}

section.company th,
section.company td {
  font-weight: 500;
}

section.company th {
  width: 25%;
  background-color: #f0f0f0;
}

section.company td {
  background: #fff;
}

section.company table ul {
  margin-left: 1em;
}


/*---------------------------------------------------------
メディア掲載
---------------------------------------------------------*/

section.media .inner {
  width: 65%;
  margin: 0 auto;
  padding: 8vh 0 10vh;
}

section.media h2 {
  background: #003565;
  text-align: center;
  font-size: 1.8vw;
  padding: 1vh 0;
  color: #fff;
  letter-spacing: .3vw;
  margin-bottom: 3vh;
  position: relative;
}

section.media .lead {
  font-size: 1.2vw;
  margin-bottom: 5vh;
  text-align: center;
}

section.media .lead a {
  color: #c30042;
  text-decoration: underline;
}

section.media .media-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: 1fr;
  gap: 5vh;
}

section.media .media-item {
  display: grid;
  grid-template-columns: 22vw 1fr;
  align-items: stretch;
  gap: 2vw;
  background: #fff;
  border: 1px solid #e6e8eb;
  box-shadow: 0 .9vh 2vh rgba(0, 0, 0, .06);
  overflow: hidden;
  padding: 3.5vh 1.5vw;
  border-radius: .7vw;
}

section.media .media-item .thumb {
  display: flex;
  justify-content: center;
  align-items: center;
}

section.media .media-item .content {
  display: flex;
  justify-content: center;
  align-items: center;
}

section.media .media-item .meta {
  display: flex;
  flex-wrap: wrap;
  gap: .6vw 1vw;
  align-items: center;
  font-size: .95vw;
  color: #333;
  margin-bottom: .6vh;
}

section.media .media-item .badge {
  display: inline-block;
  font-size: .9vw;
  color: #ffffff;
  padding: .2vh 1vw;
  border-radius: 50px;
  line-height: 1.6;
  background: #c30042;
}

section.media .media-item .ch {
  font-weight: 600;
}

section.media .media-item .title {
  font-size: 1.35vw;
  margin: .6vh 0 1vh;
  font-weight: 700;
  color: #003565;
}

section.media .media-item .desc {
  font-size: 1.05vw;
  color: #333;
  margin-bottom: 1.5vh;
}

section.media .media-item .more-link {
  display: inline-block;
  font-size: .9vw;
  color: #fff;
  background: #003565;
  padding: 0 3vw;
}

/*---------------------------------------------------------
ビジネスコーチ養成講座
---------------------------------------------------------*/

.img-wrap {
  margin: 3vh auto;
}

.sec-coach {
  padding: 7vh 0 0;
}

section.sec-coach.-intro,
.sec-coach.-target,
.sec-coach.-benefit,
.sec-coach.-license,
.sec-coach.-method,
.sec-coach.-style,
.sec-coach.-message {
  padding-bottom: 7vh;
}

.sec-coach .inner {
  width: 55%;
  margin: 0 auto;
}

.sec-coach .h2-wrap h2 {
  background: #003565;
  text-align: center;
  font-size: 1.6vw;
  padding: 1.5vh 0;
  color: #fff;
  letter-spacing: .1vw;
  margin-bottom: 3vh;
  position: relative;
  line-height: 1.6;
}

.sec-coach .h2-wrap h2::after {
  width: 2vw;
  aspect-ratio: 1 / 1;
  clip-path: polygon(0px 100%, 100% 0px, 100% 100%);
  background: #c30042;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
}

.sec-coach p {
  font-size: 1.2vw;
  line-height: 2;
}

.sec-coach .lead {
  font-size: 1.2vw;
  line-height: 2;
  margin-bottom: 3vh;
}

.sec-coach .note {
  margin-top: 3vh;
  font-size: 1vw;
  text-align: right;
}

.sec-coach.-target,
.sec-coach.-license {
  background: #fafbfd;
}

.target-list {
  margin: 3vh 0 0;
  font-size: 1.2vw;
  padding: 2vh 1.5vw;
  border-radius: .5vw;
  border: .5vh solid #003565;
  background: #fff;
  list-style: none;
}

.target-list li {
  border-bottom: 1px solid #BDBDBD;
  padding-bottom: .5vh;
}

.target-list li:last-of-type {
  border-bottom: unset;
}

span.dli-check-circle {
  background: #b99d94;
  display: inline-block;
  vertical-align: middle;
  color: #fff;
  line-height: 1;
  position: relative;
  width: 1.25vw;
  height: 1.25vw;
  border-radius: 50%;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
  margin-right: .7vw;
  top: -.3vh;
}

.dli-check-circle>span {
  width: .58em;
  height: .261em;
  border: .1em solid currentColor;
  border-top: 0;
  border-right: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transform: translateY(-25%) rotate(-45deg);
  -ms-transform: translateY(-25%) rotate(-45deg);
  transform: translateY(-25%) rotate(-45deg);
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  margin: auto;
}

.target-list li+li {
  margin-top: 1vh;
}

.benefit-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3vh;
  margin-top: 3vh;
}

.benefit-cards .card {
  border: .5vh solid #003565;
  border-radius: .8vw;
  background: #fff;
  padding: 3vh 2vw;
}

.benefit-cards .card h3 {
  font-weight: 700;
  font-size: 1.3vw;
  margin-bottom: 1.2vh;
  border-bottom: 2px solid #003565;
  padding-bottom: .5vh;
  color: #003565;
}

.benefit-cards .card p {
  font-size: 1.15vw;
  line-height: 1.9;
}

.license-list {
  margin: 3vh 0 0;
  font-size: 1.15vw;
  padding: 3vh 3vw;
  border: .5vh solid #003565;
  border-radius: .8vw;
  background: #fff;
}

.license-list li+li {
  margin-top: .8vh;
}

.license-note {
  margin-top: 2vh;
  font-size: 1.1vw;
}

.sec-coach.-method {
  background: #fff;
}

.method-list {
  margin: 2.5vh 0;
  font-size: 1.2vw;
  border: .5vh solid #003565;
  border-radius: .8vw;
  background: #fff;
  padding: 2vh 3vw;
}

.method-list li+li {
  margin-top: .6vh;
}


.sec-coach.-practice {
  background: #fafbfd;
  padding-bottom: 7vh;
}

.practice-points {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2vw;
  margin: 3vh 0 2vh;
}

.practice-points .point-card {
  padding: 1.5vh 1.5vw;
  font-size: 1.2vw;
  border: .5vh solid #003565;
  border-radius: .8vw;
  background: #fff;
}

.practice-points .point-card h3 {
  font-weight: 700;
  font-size: 1.2vw;
  margin-bottom: 1vh;
  border-bottom: 1.5px solid #003565;
  padding-bottom: .5vh;
  text-align: center;
}

.practice-points .point-card p {
  font-size: 1.1vw;
  line-height: 1.9;
}

.practice-note {
  margin-top: 1vh;
  font-size: 1.1vw;
}


.style-cards {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2vw;
  margin-top: 3vh;
}

.style-cards .card {
  border: .1vw solid rgba(15, 47, 85, .12);
  background: #fff;
}

.style-cards .card h3 {
  font-weight: 600;
  font-size: 1.3vw;
  background: #F5F5F5;
  text-align: center;
  padding: 1vh;
}

.style-cards .card p {
  font-size: 1.15vw;
  line-height: 1.9;
  padding: 1vh 1vw;
}

.sec-coach.-message {
  background: #fafbfd;
}


.sec-coach.-seminar {
  padding: 7vh 0;
  background-image: URL(https://web10.veronica9.com/wp-content/uploads/2025/06/IMG_9959-scaled.jpg);
  background-size: cover;
  background-position: 29% 50%;
  position: relative;
}

.sec-coach.-seminar::after {
  content: "";
  background: rgb(255 255 255 / 67%);
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
}

.sec-coach.-seminar .inner {
  width: 60%;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.sec-coach.-seminar .h2-wrap h2::after {
  background: #c30042;
}

.seminar-box {
  text-align: center;
  background: #fff;
  border: 0.1vw solid rgba(15, 47, 85, .12);
  border-radius: 1vw;
  padding: 4vh 1vw;
}

.seminar-box p {
  font-size: 1.2vw;
}

.seminar-box .btns {
  display: flex;
  justify-content: center;
  gap: 1.5vw;
  flex-wrap: wrap;
  margin-top: 2vh;
}

.seminar-box .btn {
  min-width: 20vw;
  font-size: 1.1vw;
  border-radius: 50px;
  padding: 1vh 0;
}



/*---------------------------------------------------------
上級ビジネスコーチ養成講座
---------------------------------------------------------*/

.sec-coach.-feature {
  padding-bottom: 7vh;
  background: #fafbfd;
}

.feature-cards {
  display: grid;
  grid-template-columns: 1fr;
  gap: 3vh;
  margin-top: 3vh;
}

.feature-cards .card {
  border: .5vh solid #003565;
  border-radius: .8vw;
  background: #fff;
  padding: 3vh 2vw;
}

.feature-cards .card h3 {
  font-weight: 700;
  font-size: 1.3vw;
  margin-bottom: 1.2vh;
  border-bottom: 2px solid #003565;
  padding-bottom: .5vh;
  color: #003565;
}

.feature-cards .card .theme {
    font-size: 1.15vw; 
    margin: 2vh 0 1.5vh;
    background: #f5f5f5;
    padding: 1vh 1vw;
    display: flex;
    align-items: center;
    gap: 1vw;
}

.feature-cards .card .theme dt {
    background: #003565;
    color: #fff;
    padding: 0 1vw;
    font-weight: 700;
    flex: 0 0 auto;
    font-size: 1.05vw;
}

.feature-cards .card .theme dd {
    margin: 0;
    font-size: 1.15vw;
    font-weight: 600;
    line-height: 1.6;
}

.feature-cards .card p {
  font-size: 1.15vw;
  line-height: 1.9;
}

.sec-coach.-difference {
  padding-bottom: 7vh;
  background: #fff;
}

.sec-coach.-difference p {
  font-size: 1.2vw;
  line-height: 2;
}

.difference-table {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2vw;
  margin: 3vh 0;
}

.difference-table .col {
  border: .2vw solid #003565;
  border-radius: .8vw;
  background: #fff;
  padding: 2.5vh 1.5vw;
}

.difference-table .col:nth-child(2) {
    border: .2vw solid #c30042;
}

.difference-table .col h3 {
  font-weight: 700;
  font-size: 1.3vw;
      margin-bottom: 2vh;
  text-align: center;
	    position: relative;
}

.difference-table .col h3::after {
    content: "";
    width: 50px;
    height: 3px;
    border-radius: 50px;
    display: block;
    margin: .8vh auto 0;
}

.difference-table .col:nth-child(1) h3::after {
    background: #003565;
}

.difference-table .col:nth-child(2) h3::after {
    background: #c30042;
}

.difference-table .col ul {
  margin: 0;
  padding-left: 1.4em;
  font-size: 1.1vw;
  line-height: 1.9;
}

.difference-table .col ul li + li {
  margin-top: .5vh;
}

.sec-coach.-schedule {
  padding: 7vh 0;
  background: #fff;
}

.schedule-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2vw;
  margin-top: 3vh;
}

.schedule-card {
  border: .5vh solid #003565;
  border-radius: .8vw;
  background: #fff;
  padding: 2.5vh 1.5vw;
  font-size: 1.15vw;
}
.schedule-card h3 {
    font-weight: 700;
    font-size: 1.2vw;
    margin-bottom: 2vh;
    text-align: center;
    line-height: 1.6;
    border-bottom: 2px solid #003565;
    padding-bottom: 1.5vh;
	    color: #003565;
}



.schedule-card p {
  font-size: 1.1vw;
  line-height: 1.9;
}

/*---------------------------------------------------------
ヒューニングとは？
---------------------------------------------------------*/


.sec-huning {
  padding: 7vh 0 0;
}

.sec-huning.-definition,
.sec-huning.-compare,
.sec-huning.-why {
  padding-bottom: 7vh;
}

.sec-huning .inner {
  width: 60%;
  margin: 0 auto;
}

.sec-huning .h2-wrap h2 {
  background: #003565;
  text-align: center;
  font-size: 1.6vw;
  padding: 1vh 0;
  color: #fff;
  letter-spacing: .1vw;
  margin-bottom: 3vh;
  position: relative;
}

.sec-huning .h2-wrap h2::after {
  width: 2vw;
  aspect-ratio: 1 / 1;
  clip-path: polygon(0px 100%, 100% 0px, 100% 100%);
  background: #c30042;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
}

.sec-huning .lead {
  font-size: 1.2vw;
  line-height: 2;
  margin-bottom: 3vh;
}

.sec-huning p {
  font-size: 1.2vw;
  line-height: 2;
}

.sec-huning .note {
  margin-top: 1.6vh;
  font-size: 1vw;
  text-align: right;
}

.features-list {
  margin: 3vh 0 0;
  font-size: 1.2vw;
  background: #F5F5F5;
  padding: 3vh 3vw;
  border-radius: .5vw;
}

.features-list li+li {
  margin-top: 1vh;
}

.sec-huning.-compare {
  background: #fafbfd;
}

.table-scroll {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-top: 3vh;
}

.compare-table {
  width: 100%;
  /* min-width: 70vw; */
  border-collapse: collapse;
  background: #fff;
  border: 0.1vw solid #9E9E9E;
  /* overflow: hidden; */
  font-size: 1.1vw;
}

.compare-table th,
.compare-table td {
  padding: 1.2vh 1vw;
  border-bottom: 0.1vw solid #9E9E9E;
  border-right: 0.1vw solid #9E9E9E;
  text-align: left;
  vertical-align: top;
  font-weight: 500;
}

.compare-table thead th {
  background: #EEEEEE;
  font-weight: 700;
  font-size: 1.1vw;
}

.synergy-cards {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  gap: 2vw;
  align-items: center;
  margin-top: 3vh;
}

.synergy-cards .card {
  border: 0.1vw solid rgba(15, 47, 85, .12);
  border-radius: .8vw;
  background: #fff;
}

.synergy-cards .card h3 {
  font-weight: 700;
  font-size: 1.3vw;
  text-align: center;
  background: #EEEEEE;
  border-radius: .8vw .8vw 0 0;
  padding: 1vh 0;
}

.synergy-cards .card p {
  padding: 1vh 1vw;
  line-height: 1.8;
  display: flex;
  justify-content: center;
  align-items: center;
}

.synergy-cards .card.arrow {
  background: transparent;
  border: none;
  font-weight: 900;
  font-size: 2vw;
  color: #0f2f55;
}

/* CTA */
.sec-huning.-cta {
  padding: 7vh 0;
  background: #0f2f55;
}

.cta-wrap {
  text-align: center;
  background: #fff;
  border: 0.1vw solid rgba(15, 47, 85, .12);
  border-radius: 1vw;
  padding: 4vh 2vw;
}

.cta-wrap p {
  margin: 0 0 2vh;
  font-weight: 600;
  font-size: 1.2vw;
}

.cta-wrap .btns {
  display: flex;
  justify-content: center;
  gap: 1.5vw;
  flex-wrap: wrap;
}

.cta-wrap .btn {
  min-width: 20vw;
  font-size: 1.1vw;
  border-radius: 50px;
  padding: 1vh 0;
}



/*---------------------------------------------------------
ヒューニング学とは？
---------------------------------------------------------*/

.sec-huninggaku {
  padding: 7vh 0;
}

.sec-huninggaku .inner {
  width: 60%;
  margin: 0 auto;
}

.sec-huninggaku .h2-wrap h2 {
  background: #003565;
  text-align: center;
  font-size: 1.6vw;
  padding: 1vh 0;
  color: #fff;
  letter-spacing: .1vw;
  margin-bottom: 3vh;
  position: relative;
}

.sec-huninggaku .h2-wrap h2::after {
  width: 2vw;
  aspect-ratio: 1 / 1;
  clip-path: polygon(0px 100%, 100% 0px, 100% 100%);
  background: #c30042;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
}

.sec-huninggaku .lead {
  font-size: 1.2vw;
  line-height: 2;
  margin-bottom: 3vh;
}

.sec-huninggaku p {
  font-size: 1.2vw;
  line-height: 2;
}

/* 大学・メディア紹介 */
.sec-huninggaku.-university {
  padding: 7vh 0;
  background: #fafbfd;
}


.link-wrap a.iuac {
  font-weight: 500;
  text-decoration: none;
  transition: transform .05s ease, opacity .2s ease;
  width: 50%;
  text-align: center;
  color: #fff;
  font-size: 1.15vw;
  letter-spacing: .05vw;
  padding: 1vh 0;
  outline: 1px solid #fff;
  outline-offset: -.2vw;
  display: block;
  margin: 1.5vw auto 3vw;
}

.media-list {
  margin: 3vh 0;
  padding: 2vh 1vw;
  list-style: none;
  background: #EEEEEE;
}

.media-list li {
  display: flex;
  flex-wrap: wrap;
  gap: 1vw;
  align-items: center;
}

.media-list .label {
  display: inline-block;
  padding: .4vh .8vw;
  background: #c30042;
  color: #fff;
  border-radius: 999px;
  font-size: 1vw;
  font-weight: 600;
}

.media-list .text {
  flex: 1;
  font-size: 1.1vw;
}

.sec-huninggaku .note {
  margin-top: 1.6vh;
  font-size: 1vw;
  text-align: right;
}

/* ヒューニング vs ヒューニング学 */
.sec-huninggaku.-difference {
  padding-bottom: 7vh;
  background: #fafbfd;
}

.difference-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2vw;
  margin-top: 3vh;
}

.difference-card {
  border-radius: .8vw;
  background: #fff;
  padding: 2vh 2vw;
}

.difference-card h3 {
  font-weight: 700;
  font-size: 1.3vw;
  margin: 0 0 1vh;
  text-align: center;
  position: relative;
  padding-bottom: 1vh;
}

.difference-card h3::after {
  content: "";
  width: 50px;
  height: 3px;
  border-radius: 50px;
  display: block;
  margin: 0.8vh auto 0;
}

.difference-card:nth-child(1) h3::after {
  background: #003565;
}

.difference-card:nth-child(2) h3::after {
  background: #c30042;
}

.difference-card:nth-child(1) {
  border: 0.2vw solid #003565;
}

.difference-card:nth-child(2) {
  border: 0.2vw solid #c30042;
}

.difference-card p {
  font-size: 1.1vw;
  line-height: 1.9;
  margin-bottom: 1.5vh;
}

.difference-card ul {
  margin: 0;
  padding-left: 1.4em;
  font-size: 1.1vw;
}

.difference-card ul li+li {
  margin-top: .4vh;
}

.link-huning {
  margin-top: 3vh;
  font-size: 1.1vw;
  text-align: center;
}

.link-huning a {
  -webkit-transition: .3s;
  -o-transition: .3s;
  transition: .3s;
  display: inline-block;
  background: #003565;
  border: 1.5px solid #003565;
  color: #fff;
  min-width: 25vw;
  font-size: 1.1vw;
  border-radius: 50px;
  padding: 1vh 0;
  margin-top: 1vw;
}


/*---------------------------------------------------------
受講生の声一覧
---------------------------------------------------------*/

.voice-contents {
  width: 70%;
  margin: 0 auto;
  padding: 10vh 0;
}

.voice-articles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7vh 3vw;
}

.page-container.voice article.article-list {
  display: block;
  padding: 0;
  margin-bottom: 0;
}

.page-container.voice article.article-list .img-wrap {
  transition: transform .2s ease, box-shadow .2s ease;
  overflow: hidden;
}

.page-container.voice article.article-list a img {
  aspect-ratio: 16 / 9;
  transform: scale(1);
  transition: transform .6s ease;
}

.voice-articles article.article-list .text {
  padding: 1vh 1vw;
}

.voice-articles article.article-list .text h2 {
  text-align: center;
  letter-spacing: .1vw;
  margin-bottom: 0;
}

/*---------------------------------------------------------
受講生の声（投稿）
---------------------------------------------------------*/
.single .news-contents .article-img img {
  width: 100%;
  height: 100%;
}


/*---------------------------------------------------------
お知らせ　元コード
---------------------------------------------------------*/

.single-text-wrap img {
  margin-top: 7px;
  margin-bottom: 7px;
}

.two_column_image {
  margin: 60px 0 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
  flex-wrap: wrap;
  -ms-justify-content: space-between;
  -webkit-justify-content: space-between;
  justify-content: space-between
}

.two_column_image .item {
  -ms-flex: 1 1 0%;
  -webkit-flex: 1 1 0%;
  flex: 1 1 0%
}

.two_column_image .item:first-of-type {
  margin-right: 10px
}

.two_column_image img {
  display: block;
  margin: 0 auto
}



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

.archive.date section.blog_wrap h1,
.archive.category section.blog_wrap h1,
.archive.tag section.blog_wrap h1 {
  font-size: 1.5vw;
  margin-bottom: 1vh;
  color: var(--color-theme);
  letter-spacing: .05vw;
  font-weight: 600;
}


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

section.contact_form {
  width: 55%;
  margin: 0 auto;
  padding: 5vh 0;
}

section.contact_form h2 {
  background: #003565;
  text-align: center;
  font-size: 1.8vw;
  padding: 1vh 0;
  color: #fff;
  letter-spacing: .3vw;
  margin-bottom: 3vh;
  position: relative;
}

section.contact_form h2::after {
  width: 2vw;
  aspect-ratio: 1 / 1;
  clip-path: polygon(0px 100%, 100% 0px, 100% 100%);
  background: #c30042;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
}

section.contact_form .lead p {
  font-size: 1.2vw;
  text-align: center;
}

.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: 2vh 2vw 2vh 0;
}

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

.table-res-form th span.parentheses {
  font-size: 1vw;
  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: 1vh .3vw;
    background: #c30042;
    position: relative;
    top: -1px;
    margin-left: .2vw;
    border-radius: .2vw;
    line-height: 1;
}

.wpcf7 input,
.wpcf7 textarea, .wpcf7 select {
  border: 1.5px solid #003565 !important;
}

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

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

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.2vw;
  -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: #607D8B;
  font-weight: 500;
  font-size: 1.4vw;
  letter-spacing: .2em;
  -webkit-transition: .5s;
  -o-transition: .5s;
  transition: .5s;
  border: 1.5px solid #fff !important;
  border-radius: 50px;
  margin-bottom: 2vh;
}

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

span.wpcf7-spinner {
  display: none;
}

tr.td_last {
  text-align: center;
}

.table-res-form tr.td_last td {
  padding: 0;
}

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

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

.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;
}

.recaptcha {
  text-align: center;
  margin-bottom: 1em;
	    font-size: 1vw;
}

.recaptcha a {
  text-decoration: none;
  color: var(--color-main);
}

.grecaptcha-badge {
  visibility: hidden;
}

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

p.pp {
  text-align: center;
}

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

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

.text-wrap.two {
  text-align: center;
  margin-top: 2vh;
  font-size: 1vw;
}


/*---------------------------------------------------------
お知らせ一覧
---------------------------------------------------------*/

.page-container.news {
  width: 60%;
  margin: 0 auto;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 7vh 0 10vh;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}


.page-container.news article.article-list {
  padding: 2vh 2vh;
  border: 1px solid #E0E0E0;
}

.page-container.news .img-wrap {
  width: 35%;
}

.page-container.news article.article-list .text {
  width: 62%;
  position: relative;
}



.page-container.news article.article-list .text h2 {
  font-size: 1.2vw;
}

.page-container.news span.cat-list {
  display: inline-flex;
  gap: .5em;
  flex-wrap: wrap;
}

article.article-list .cat-day a {
  background: #c30042;
  color: #fff;
  padding: 0 1vw;
  font-size: .8vw;
  border-radius: 50px;
  width: auto;
  letter-spacing: .05vw;
}

p.article-date {
  position: absolute;
  top: .3vh;
  right: 0;
  font-size: .9vw;
  margin-bottom: 0;
}

.news-contents {
  width: 100%;
}


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: rgb(120 120 120 / 11%) 0px 5px 5px 0px;
  box-shadow: rgb(120 120 120 / 11%) 0px 5px 5px 0px;
  ;
  -ms-flex-pack: distribute;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1vw;
}

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

article.article-list .text h2 {
  font-size: 1.3vw;
  margin-bottom: 1.5vh;
  line-height: 1.4;
  font-weight: 600;
}

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

article.article-list a img {
  width: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  aspect-ratio: 3 / 2;
}

.cat-day {
  position: relative;
}

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

ul.post-categories a {
  background: var(--color-theme);
  display: inline;
  color: #fff;
  padding: .2em 1em;
  margin-right: .5em;
  font-size: .8vw;
  border-radius: 50px;
}

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

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

.pagination:not(:empty) {
  margin: 5vh 0 0;
  text-align: center;
}

.pagination ul {
  font-size: 0;
}

.pagination ul li {
  font-size: 1vw;
  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: 2px solid #003565;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-size: 1.3vw;
  font-family: "Roboto", sans-serif;
  line-height: 1.6;
}

i.fas.fa-angle-right,
i.fas.fa-angle-left {
  color: #003565;
}

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

.pagination ul li a {
  text-decoration: none;
  color: #003565;
  font-weight: 500;
}

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

.pagination .current {
  color: #fff;
  background-color: #003565;
}

.single-post section.top-contact .flex-box.left {
  background-color: #003565;
}



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

.single .news-contents {
  width: 55%;
  margin: 0 auto;
  padding: 10vh 0;
}

b {
  font-weight: 600;
}

span.cat-data a {
  background: #1982d6;
  display: inline;
  color: #fff;
  padding: .2em 1em;
  margin-right: .5em;
  font-size: .8vw;
  border-radius: 50px;
}

section.page-mv h1,
.header-title p.jp {
  font-weight: 600;
  font-size: 2.3vw;
  color: #fff;
  letter-spacing: .5vw;
  position: relative;
  z-index: 1;
  text-align: center;
  line-height: 1.8;
}

.h1-wrap p,
.header-title p.en {
  font-size: 1.4vw;
  font-weight: 400;
  color: #fff;
  letter-spacing: .2vw;
  font-family: "Outfit", sans-serif;
  text-align: center;
}

.single h1,
.fixed-page-wrap h2 {
  font-size: 1.6vw;
  font-weight: 600;
  letter-spacing: .02vw;
  line-height: 1.5;
  border-bottom: .2vw solid #003565;
  padding-bottom: 1vh;
  margin-bottom: 1vh;
  position: relative;
}

.fixed-page-wrap h2 {
  margin: 5vh auto 3vh;
}

.single h1::after,
.fixed-page-wrap h2::after {
  content: '';
  display: block;
  width: 6vw;
  background-color: #E91E63;
  height: .2vw;
  position: absolute;
  bottom: -.2vw;
  left: 0;
  z-index: 1;
}

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

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;
}

.single article h2 {
  font-size: 1.4vw;
  font-weight: 600;
  letter-spacing: .04vw;
  margin: 5vh auto 3vh;
  padding: 1.5vh 1vw;
  border-left: .25vw solid #003565;
  background: #f5f5f5;
  line-height: 1.5;
}

.single .sale-detail h3,
.single .news-contents h3,
.fixed-page-wrap h3 {
  font-size: 1.3vw;
  font-weight: 600;
  letter-spacing: .04vw;
  margin: 3vh auto 3vh;
  padding: 1vh .5vw;
  border-bottom: .18vw solid #003565;
  line-height: 1.5;
}

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

.fixed-page-wrap h4::before,
.single article h4::before {
  content: "";
  display: block;
  position: absolute;
  top: 1.3vw;
  left: 0;
  width: .7vw;
  height: .7vw;
  background-color: #1982d6;
}

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

.fixed-page-wrap p,
.single article p,
.fixed-page-wrap {
  font-size: 1.2vw;
  font-weight: 500;
  margin-top: 3vh;
  line-height: 2;
}

.single .sale-detail .content ul,
.single .single-text-wrap ul,
.single .sale-detail ol,
.single .single-text-wrap ol,
.fixed-page-wrap ol,
.fixed-page-wrap ul {
  margin: 3vh auto 5vh;
  padding: 3vh 1vw 3vh 2.5vw;
  background-color: #f7f7f7;

}

.single .sale-detail .content ul ul,
.single .single-text-wrap ul ul {
  margin-top: unset;
  margin-bottom: .7vw;
  margin-left: 0;
}

.single .sale-detail .content ul li,
.single .single-text-wrap ul li {
  list-style-type: disc;
  font-size: 1.2vw;
  margin-bottom: .7vh;
}

.single .sale-detail .content ul li:last-of-type,
.single .single-text-wrap ul li:last-of-type,
.single .sale-detail .content ol li:last-of-type,
.single .single-text-wrap ol li:last-of-type {
  margin-bottom: 0;
}

.single .sale-detail .content ol li,
.single .single-text-wrap ol li {
  font-size: 1.2vw;
  margin-bottom: .7vh;
}

.single .sale-detail .content ul ul li,
.single .single-text-wrap ul ul li {
  list-style: none;
}

.single .sale-detail .content figure,
.single article figure {
  margin: 3vh 0;
}

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


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: .8vw;
  text-decoration: none;
}

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

.single .single-text-wrap td,
.single .single-text-wrap td,
.single .sale-detail td,
.single .sale-detail td {
  border: 1.5px solid #003565 !important;
  padding: 1vh 1vw;
  font-size: 1.2vw;
}

.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: .9vw !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.2vw;
}

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

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

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

iframe {
  width: 100%;
  aspect-ratio: 16 / 9;
  height: auto;
}

iframe.wp-embedded-content {
  width: 99%;
  height: revert-layer;
}

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

.single .single-text-wrap a {
  color: #c30042;
  text-decoration: underline;
  word-break: break-all;
  overflow-wrap: break-word;
}

.single .single-text-wrap .design_button.type1 a {
  text-align: center;
  display: block;
  font-size: 1.2vw;
  padding: 1.5vh 5vw;
  position: relative;
  overflow: hidden;
  z-index: 3;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-transition: all .35s ease;
  transition: all .35s ease;
  margin: 3vh auto 0;
  width: fit-content;
  letter-spacing: .1vw;
  color: #fff !important;
  background: #002060;
  text-decoration: none;
}

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://hp12.veronica9.com/wp-content/uploads/2025/06/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://hp12.veronica9.com/wp-content/uploads/2025/06/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: 1vw;
  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: #003565;
  border: .15vw solid #003565;
  -webkit-transition: .4s ease-in-out;
  -o-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
  font-size: .85vw;
  line-height: 1.5;
  padding: 1vh .7vw;
  font-weight: 600;
  -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: #003565;
  border: .15vw solid #003565;
  -webkit-transition: .4s ease-in-out;
  -o-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
  font-size: .85vw;
  line-height: 1.5;
  padding: 1vh .7vw;
  font-weight: 600;
  -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: "Before";
  position: absolute;
  top: -.95em;
  left: 0;
  line-height: 1;
  color: #003565;
  font-size: 1.3vw;
  letter-spacing: .1vw;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
}

.page-nav .next-link:before {
  content: "Next";
  position: absolute;
  top: -.95em;
  right: 0;
  line-height: 1;
  color: #003565;
  font-size: 1.3vw;
  letter-spacing: .1vw;
  font-weight: 500;
  font-family: "Outfit", sans-serif;
}

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

.share {
  margin-bottom: 9vh;
  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.5vw;
  margin-bottom: 0;
  letter-spacing: .15vw;
  font-optical-sizing: auto;
  font-style: normal;
  font-weight: 500;
  color: #003565;
  font-family: "Outfit", sans-serif;
}

.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: #003565;
  color: #ffffff;
}

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

.url-copied span {
  background: #003565;
  color: #fff;
  padding: .5vw 1vw;
  border-radius: 3px;
  font-size: .8vw;
  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: .7vw;
  }

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

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

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

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

  .share li button {
    height: 8.5vw;
    width: 10.5vw;
  }
}

/*---------------------------------------------------------
アーカイブ/カテゴリー
---------------------------------------------------------*/
.category h1,
.date h1,
.date h1 {
  font-weight: 500;
  font-size: 1.6vw;
  letter-spacing: .05vw;
  color: var(--color-theme);
  margin-bottom: 2vh;
}

.tax-news_category h1 {
  padding-left: .5vw;
  font-size: 1.5vw;
  border-left: .3vw solid #c30042;
  line-height: 1.6;
  margin-bottom: 2vh;
  letter-spacing: .1vw;
  font-weight: 600;
}


/*---------------------------------------------------------
固定ページ
---------------------------------------------------------*/

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

.fixed-page h1 {
  background: #003565;
  text-align: center;
  font-size: 1.6vw;
  padding: 1.5vh 0;
  color: #fff;
  letter-spacing: .1vw;
  margin-bottom: 3vh;
  position: relative;
  line-height: 1.6;
}

.fixed-page h1:after {
  width: 2vw;
  aspect-ratio: 1 / 1;
  clip-path: polygon(0px 100%, 100% 0px, 100% 100%);
  background: #c30042;
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
}

.fixed-page-wrap img {
  margin: 3vh auto;
}

.fixed-page a {
  text-decoration: underline;
  color: var(--color-theme);
  margin: 3vh 0;
  display: inline-block;
}

.breadcrumb a {
  text-decoration: none;
}

/*---------------------------------------------------------
プライバシーポリシー
---------------------------------------------------------*/
section.privacy .inner {
  width: 60%;
  padding: 8vh 0;
  margin: 0 auto;
}

section.privacy h3 {
  font-size: 1.4vw;
  border-left: .3vw solid #003565;
  margin: 5vh auto 2vh;
  letter-spacing: .1vw;
  font-weight: 600;
  background: #F5F5F5;
  padding: .5vh 0 .5vh 1vw;
}

section.privacy p {
  font-size: 1.15vw;
  line-height: 2;
  margin-bottom: 2vh;
}

section.privacy ol.num-list {
  margin: 3vh 0 3vh 1.5vw;
}

section.privacy ol.num-list li {
  margin-bottom: 1vh;
  font-size: 1.15vw;
}

/*---------------------------------------------------------
特定商取引
---------------------------------------------------------*/
section.legal .inner {
  width: 60%;
  padding: 8vh 0 10vh;
  margin: 0 auto;
}


section.legal table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 3vh;
}

section.legal th,
section.legal td {
  border: 1px solid #ccc;
  font-size: 1.2vw;
}

section.legal th,
section.legal td {
  font-weight: 500;
}

section.legal th {
  width: 30%;
  background-color: #f0f0f0;
  padding: 2vh 1vw;
}

section.legal td {
  background: #fff;
  padding: 2vh 2vw;
}

section.legal table ul {
  margin-left: 1em;
}


/*---------------------------------------------------------
セミナー受講規約
---------------------------------------------------------*/

section.terms .inner {
  width: 60%;
  padding: 8vh 0;
  margin: 0 auto;
}

section.terms h3 {
  font-size: 1.3vw;
  border-left: .3vw solid #003565;
  margin: 5vh auto 2vh;
  letter-spacing: .1vw;
  font-weight: 600;
  background: #F5F5F5;
  padding: .5vh 0 .5vh 1vw;
}

section.terms h4 {
  font-size: 1.2vw;
  margin: 5vh auto 2vh;
  letter-spacing: .06vw;
  font-weight: 600;
  border-left: .25vw solid #c30042;
  padding: .3vh 0 .3vh 1vw;
  background: #fafafa;
}

section.terms p {
  font-size: 1.15vw;
  line-height: 2;
  margin-bottom: 2vh;
}

section.terms ol.num-list {
  margin: 3vh 0 3vh 1.5vw;
}

section.terms ol.num-list li {
  margin-bottom: 1vh;
  font-size: 1.15vw;
}

section.terms ul.disc-list {
  margin: 2vh 0 2vh 1.5vw;
  padding-left: 1vw;
}

section.terms ul.disc-list li {
  list-style: disc;
  margin-bottom: 1vh;
  font-size: 1.15vw;
}

section.terms .mt {
  margin-top: 4vh;
  font-size: 1.15vw;
}

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

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

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

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

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

/*---------------------------------------------------------
  スマホ
  ---------------------------------------------------------*/

@media screen and (max-width:743px) {

  body {
    line-height: 1.7;
  }

  .topBtn {
    display: none !important;
  }

  br.sp_block {
    display: block !important;
  }

  .sp_block {
    display: block !important;
  }

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

  span.pc_inlineblock {
    display: none !important;
  }

  .pc_block {
    display: none !important;
  }

  .pc_inlineblock {
    display: none;
  }

  .header-contact .btn-contact,
  .top-about p.scroll,
  .footer-grid,
  .footer-copy {
    display: none;
  }

  .start p {
    width: 35vw;
  }

  header {
    position: relative;
    height: 11svh;
  }

  .header-inner {
    max-width: 100%;
    padding: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 100%;
  }

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

  .site-title-wrap img {
    width: 57%;
    height: 100%;
    margin: 0 auto;
  }

  .mv {
    position: relative;
    height: 89svh;
  }

  .mv-bg {
    width: 100%;
    height: 73vh;
  }

  .mv-copy {
    width: 100%;
    height: 95%;
    white-space: unset;
  }

  .bottom-copy {
    background: #003565;
    bottom: 0;
    width: 100%;
    padding: 3vh 0;
    position: absolute;
    height: 30vh;
    display: flex;
    justify-content: center;
    align-items: center;
  }

  .bottom-copy::after {
    content: "";
    width: 50vw;
    height: 30vh;
    position: absolute;
    background: #c30042;
    bottom: 0;
    right: 0;
  }

  .bottom-copy p {
    position: relative;
    font-size: 3.4vw;
    z-index: 1;
    line-height: 2.2;
  }

  .image-loop {
    padding: 5vw 0;
  }

  section.top-news .inner {
    width: 92%;
    padding: 7vh 0;
  }

  section.top-news .post-warp {
    border-radius: 2vw;
    margin-top: 1vh;
  }

  section.top-news .post-box {
    flex-wrap: wrap;
    gap: 2vw;
    padding: 2vh 0;
  }

  section.top-news a.date {
    font-size: 3vw;
  }

  section.top-news a.category {
    font-size: 2.8vw;
    padding: .5vh 4vw;
  }

  section.top-news a.title {
    width: 100%;
    padding-left: 0;
    font-size: 3.6vw;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
  }

  section.top-news a.title {
    width: 100%;
    padding-left: 0;
    order: 2;
  }

  section.top-news .link a {
    margin-top: 2vh;
    padding: .5vh 0;
    font-size: 3.5vw;
    width: 60%;
  }

  section.top-about {
    padding: 14vw 0 8vw;
  }

  section.service.top {
    padding-top: 5vh;
  }

  .top-about .left img {
    left: 0;
    width: 58%;
  }

  section.top-about .inner {
    flex-direction: column;
    align-items: center;
  }

  .top-about .left,
  .top-about .right {
    width: 100%;
  }

  .top-about .right {
    margin-top: 2vw;
  }

  .top-about .h2-wrap p {
    font-size: 2.5vw;
  }

  .top-about .link a {
    width: 100%;
    text-align: center;
  }

  section.service.top .flex-box.left,
  section.service.top .flex-box.right {
    height: 42vh;
  }

  section.service.top .flex-box.left {
    background-position: right 48% bottom 0%;
  }

  section.service.top .flex-box.right {
    background-position: right 56% bottom 0%;
  }

  section.service.top .inner-wrap {
    padding: 3vh 5vw;
  }

  section.service.top p.p2 {
    padding: 0;
  }

  section.top-space {
    padding: 5vh 0 7vh;
  }

  .swiper-pagination-bullet-active {
    background: #fff !important;
    opacity: 1;
  }

  .top-cv .h2-wrap p {
    top: -5vw;
  }

  .top-cv .h2-wrap p {
    opacity: .2;
  }

  .top-cv .cv-badge {
    padding: .7vh 3vw;
    font-size: 3vw;
  }

  section.top-cv {
    padding: 8vw 0 8vw;
  }

  section.top-cv h2.sp_block {
    font-weight: 600;
    letter-spacing: .08em;
    font-size: 5vw;
    line-height: 1.7;
    color: #003565;
    margin-bottom: 2vh;
    border-left: 1vw solid #003565;
    padding-left: 3vw;
  }

  section.top-cv h2.sp_block.voice {
    border-left: 1vw solid #c30042;
  }

  .cv-wrap {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3vw;
  }

  .cv-wrap.case {
    margin-bottom: 5vh;
  }

  .top-cv .cv-grid {
    grid-template-columns: 1fr;
    gap: 1vw;
  }

  section.top-contact .contact-grid {
    flex-direction: column;
    gap: 4vh;
  }

  section.top-contact .contact-box {
    flex: 1 1 100%;
    padding: 5vw;
  }

  .footer-bottom .fb-inner {
    width: 92%;
    margin: 0 auto;
    flex-wrap: wrap;
    padding: 3vw 0 10vh;
  }

  .footer-legal {
    flex-wrap: wrap;
  }

  .footer-legal li {
    width: 100%;
    text-align: center;
  }

  .footer-legal a {
    text-decoration: none;
    font-size: 3.5vw;
  }

  #g-nav .gnavi__lists li a,
  #g-nav .gnavi__lists li p {
    color: #ffffff;
  }

  #g-nav .gnavi__lists li p {
    padding: 0;
  }

  section.page-mv {
    height: 20vh;
  }

  .footer-brand img {
    margin: 0 auto;
    width: 85%;
  }

  .footer-contact__name {
    text-align: center;
    font-size: 4vw;
    margin-bottom: 1vh;
  }

  p.footer-contact__addr {
    text-align: center;
  }

  /* オフィス・アクセス */

  .main-swiper {
    margin-bottom: 15px;
  }



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


  .thumb-swiper {
    height: 12vh;
  }

  .thumb-swiper .swiper-slide {
    width: 27vw;
    height: 11vh;
    border-radius: .5vw;
  }

  .swiper-button-prev:after,
  .swiper-button-next:after {
    width: 2.2vw;
    height: 2.2vw;
    border-width: 2px 2px 0 0;
  }

  .swiper-button-next,
  .swiper-rtl .swiper-button-prev {
    right: 0 !important;
  }

  .swiper-button-prev,
  .swiper-rtl .swiper-button-next {
    left: 0 !important;
  }

  .map {
    padding-top: 80%;
  }

  .access {
    margin: 5vh 0 0;
  }

  .access-table th,
  .access-table td,
  .access-table {
    border: 1px solid #9e9e9e;
  }

  /* 代表紹介 */

  section.profile .inner {
    padding: 5vh 0;
  }


  .sp_block.photo img {
    width: 62%;
    margin: 0 auto;
  }

  .sp_block.photo {
    position: relative;
  }

  .sign.sp_block img {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 29%;
  }

  .other-job p {
    line-height: 2;
  }

  .hp-link-wrap a {
    width: 100%;
    display: block;
    font-size: 3.5vw;
    outline: unset;
    outline-offset: unset;
  }

  a.eca {
    margin-bottom: 2vh;
  }

  section.achievements .inner {
    padding: 0 0 5vh;
  }

  /* 会社概要 */

  section.company td {
    padding: 2vh 3vw;
  }

  section.company .inner {
    padding: 5vh 0;
  }

  /* メディア掲載 */
  section.media .inner {
    padding: 5vh 0;
  }

  section.media .lead {
    font-size: 3.8vw;
    margin-bottom: 3vh;
    text-align: left;
  }

  section.media .media-item {
    padding: 0;
    grid-template-columns: 1fr;
    border-radius: 1.5vw;
  }

  section.media .media-item .content,
  section.media .wrap {
    width: 100%;
  }

  section.media .wrap {
    padding: 1vh 4vw 2vh;
  }

  section.media .media-item .badge {
    font-size: 3vw;
    padding: 0 4vw;
  }

  section.media .media-item .ch,
  section.media .media-item time {
    font-size: 3.2vw;
  }

  section.media .media-item .title {
    font-size: 4.5vw;
  }

  section.media .media-item .desc {
    font-size: 3.8vw;
  }

  section.media .media-item .more-link {
    display: block;
    font-size: 3.5vw;
    padding: .5vh 3vw;
    margin: 0 auto;
    text-align: center;
    width: 50%;
  }

  section.media .media-item .desc {
    margin-bottom: 2vh;
  }



  /* ビジネスコーチ養成講座 */

  .sec-coach {
    padding: 5vh 0 0;
  }

  section.sec-coach.-intro,
  .sec-coach.-target,
  .sec-coach.-benefit,
  .sec-coach.-license,
  .sec-coach.-method,
  .sec-coach.-style,
  .sec-coach.-message {
    padding-bottom: 5vh;
  }

  .target-list {
    margin: 3vh 0 0;
    padding: 2vh 2vw;
    border-radius: .5vw;
    border: 3px solid #003565;
  }

  .target-list li {
    border-bottom: 1px solid #bdbdbd;
    padding-bottom: 1.5vh;
    padding-left: 7vw;
    text-indent: -6vw;
  }

  span.dli-check-circle {
    background: #b99d94;
    display: inline-block;
    vertical-align: middle;
    color: #fff;
    line-height: 1;
    position: relative;
    width: 4.5vw;
    height: 4.5vw;
    border-radius: 50%;
    -webkit-box-sizing: content-box;
    box-sizing: content-box;
    margin-right: 1vw;
    top: -.3vh;
  }

  .target-list li+li {
    margin-top: 1.5vh;
  }

  .benefit-cards .card, .schedule-card {
    border: 3px solid #003565;
    padding: 2vh 4vw;
	  border-radius: .5vw;
  }

  .benefit-cards .card h3 {
    margin-bottom: 1vh;
    border-bottom: 1.5px solid #003565;
    padding-bottom: 1.5vh;
    padding-left: 1em;
    text-indent: -1em;
  }

  .license-list {
    margin: 3vh 0 0;
    font-size: 3.8vw;
    padding: 2vh 4vw 2vh 8vw;
    border: 3px solid #003565;
  }

  .method-list {
    margin: 3vh 0 2vh;
    font-size: 3.8vw;
    padding: 2vh 4vw 2vh 8vw;
    border: 3px solid #003565;
  }

  .practice-points {
    grid-template-columns: repeat(1, 1fr);
    gap: 4vw;
  }

  .practice-points .point-card {
    padding: 2vh 3vw;
    font-size: 4.2vw;
    border: 3px solid #003565;
  }

  .practice-points .point-card h3 {
    font-size: 4.2vw;
    margin-bottom: 1vh;
    border-bottom: 1.5px solid #003565;
    padding-bottom: 1vh;
  }

  .sec-coach.-practice {
    padding-bottom: 5vh;
  }

  .style-cards {
    grid-template-columns: repeat(1, 1fr);
    gap: 5vw;
  }

  .style-cards .card p {
    padding: 1vh 3vw;
  }

  section.sec-coach .img-wrap {
    margin: 3vh auto 1.5vh;
  }

  .seminar-box {
    text-align: left;
    border-radius: 2vw;
    padding: 2vh 5vw 3vh;
  }

  .sec-coach.-seminar a.btn.btn--outline {
    margin-top: 0;
  }

  .seminar-box .btn {
    min-width: 100%;
    font-size: 4vw;
    border-radius: 50px;
    padding: 1vh 0;
    text-align: center;
  }

  .sec-coach.-seminar {
    background-position: 66% 50%;
    padding: 5vh 0;
  }
	
/* 上級ビジネスコーチ養成講座 */

	.feature-cards .card {
		        padding: 2vh 4vw;
    border: 3px solid #003565;
		border-radius: .5vw;}
	
	    .feature-cards .card h3 {
        margin-bottom: 1vh;
        border-bottom: 1.5px solid #003565;
        padding-bottom: 1.5vh;
        padding-left: 1em;
        text-indent: -1em;
			        font-size: 4vw;
    }
	
	.feature-cards .card .theme {
        font-size: 3.4vw;
        margin: 2vh 0 1.5vh;
        padding: 1.5vh 4vw;
        flex-direction: column;
        align-items: flex-start;
        gap: .6vh;
    }

  .feature-cards .card .theme dt {
        font-size: 3.5vw;
        padding: .2vh 3vw;
        margin: 0 auto;
        width: 50%;
        text-align: center;
    }

     .feature-cards .card .theme dd {
        font-size: 3.8vw;
		 text-align: center;
		         width: 100%;
    }
	
	.feature-cards .card p, .sec-coach.-difference p, .difference-table .col ul {
		font-size: 3.8vw;
	}
	
	.sec-coach.-feature, .sec-coach.-difference {
		padding-bottom: 5vh;}
	
	    .difference-table, .schedule-grid {
        gap: 5vw;
        grid-template-columns: repeat(1, 1fr);
    }
	
	.difference-table .col {
        border-radius: 2vw;
        padding: 2vh 4vw;
    }
	
	   .difference-table .col:nth-child(1) {
        border: .8vw solid #003565;
    }
	
	    .difference-table .col:nth-child(2) {
        border: .8vw solid #c30042;
    }
	
	.difference-table .col h3 {
		font-size: 4.2vw;}
	
	   .difference-table .col h3:after {
        height: 2px;
        margin: 1.5vh auto 0;
        width: 16vw;
    }
	
	.sec-coach.-schedule {
		padding: 5vh 0;}
	
	.schedule-card h3 {
        font-size: 4.2vw;
        border-bottom: 1.5px solid #003565;
    }


  /* ヒューニング®︎とは？ */

  .sec-huning {
    padding: 5vh 0 0;
  }

  .features-list {
    padding: 3vh 3vw 3vh 2em;
  }

  .table-scroll {
    overflow-x: auto;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    touch-action: pan-x;
  }

  .table-scroll table {
    min-width: 53vw;
  }

  .compare-table th,
  .compare-table td {
    white-space: nowrap;
    padding: 1.2vh 3vw;
  }

  .synergy-cards {
    grid-template-columns: 1fr;
  }

  .cta-wrap {
    padding: 3vh 2vw 4vh;
  }

  .sec-huning.-definition,
  .sec-huning.-compare,
  .sec-huning.-why {
    padding-bottom: 5vh;
  }

  .sec-huning.-compare {
    background: #f0f5ff;
  }


  /* ヒューニング学とは？ */

  .sec-huninggaku {
    padding: 5vh 0;
  }

  .sec-huninggaku.-university {
    padding: 5vh 0;
  }

  .sec-huninggaku {
    padding: 5vh 0;
  }

  .sec-huninggaku.-university {
    padding: 5vh 0;
  }

  .link-wrap a.iuac {
    width: 100%;
    display: block;
    font-size: 3.5vw;
    margin-top: 2vh;
  }
	
	.media-list {
		padding: 2vh 3vw;}
	
	.media-list .label {
    display: block;
    padding: .4vh 6vw;
    background: #c30042;
    color: #fff;
    border-radius: 999px;
    font-size: 3vw;
    font-weight: 600;
    text-align: center;
    margin: 0 auto;
}
	
	.media-list .text {
    flex: unset;
    font-size: 3.5vw;
    display: block;
}
	
	.sec-huninggaku .note{
		font-size: 3.5vw;
		text-align: left;
	}
	
	.difference-grid {
		    gap: 5vw;
		grid-template-columns: repeat(1, 1fr);}
	
	
	
	.difference-card:nth-child(1) {
    border: .8vw solid #003565;
}
	.difference-card:nth-child(2) {
    border: .8vw solid #c30042;
}
	
	.difference-card {
    border-radius: 2vw;
    padding: 2vh 4vw;
}
	
	.difference-card h3 {
		font-size: 4.2vw;}
	
	.difference-card h3::after {
    height: 2px;
    margin: 1.5vh auto 0;
		width: 16vw;
}
	
	.difference-card ul {
    font-size: 3.8vw;
}
	
	.link-huning a {
    min-width: 85%;
    font-size: 3.8vw;
    padding: .5vh 0;
    margin-top: 2vw;
}
	
	.sec-huninggaku.-difference {
		padding-bottom: 5vh;}

  /* 導入事例・受講生の声 */

  .voice-contents {
    padding: 5vh 0;
  }

  .voice-articles {
    grid-template-columns: 1fr;
    gap: 3vh 0;
  }

  .pagination ul li {
    margin-right: 2vw;
  }

  .pagination ul li a,
  .pagination .current {
    padding: .5vh 3vw;
    border: 1px solid #003565;
  }

  .pagination:not(:empty) {
    margin: 3vh 0 0;
  }

  .single .news-contents {
    padding: 5vh 0;
  }

  .single .sale-detail h3,
  .single .news-contents h3 {
    padding: 1vh 3vw;
    border-bottom: .18vw solid #003565;
    background: #F5F5F5;
    margin: 2vh auto;
  }

  .fixed-page .inner p,
  .single article p {
    margin-top: 2vh;
  }

  .single article .share ul {
    width: 64%;
  }

  .url-copied span {
    padding: .5vw 2vw;
    font-size: 2.5vw;
  }

  .url-copied {
    bottom: -12vw;
    left: 74%;
  }

  .page-nav .prev-link,
  .page-nav .next-link {
    border: 1.5px solid #003565;
    font-size: 3vw;
    padding: 1vh 3vw;
    width: 100%;
  }

  .page-nav {
    display: flex;
    flex-direction: column;
  }

  .page-nav .next-link.both-links {
    margin-top: 4vh;
  }

  .page-nav .next-link.single-link {
    margin-top: 0;
  }

  .page-nav .prev-link::before,
  .page-nav .next-link::before {
    top: -.9em;
    font-size: 4.5vw;
  }


  /* お知らせ */

  .page-container.news {
    padding: 5vh 0;
  }

  .page-container.news .img-wrap,
  .page-container.news article.article-list .text {
    width: 100%;
  }

  .page-container.news article.article-list .text h2 {
    font-size: 3.6vw;
    margin-bottom: 0;
    margin-top: 1vh;
  }

  article.article-list .cat-day a {
    font-size: 2.5vw;
  }

  article.article-list .archive-text {
    margin-top: 1vh;
    font-size: 3vw;
  }

  p.article-date {
    top: 1vh;
    font-size: 3vw;
  }

  article.article-list .text h2 {
    line-height: 1.6;
  }

  .single h1 {
    border-bottom: .5vw solid #003565;
  }

  .single h1::after {
    width: 14vw;
    height: .5vw;
    bottom: -.3vw;
  }

  .single .single-text-wrap .design_button.type1 a {
    padding: 1vh 5vw;
  }

  .tax-news_category h1 {
    padding-left: 2vw;
    font-size: 5vw;
    border-left: .8vw solid #c30042;
    line-height: 1.4;
  }

  article.article-list .cat-day a {
    padding: 0 2vw;
  }

  .single .sale-detail .content ul,
  .single .single-text-wrap ul,
  .single .sale-detail ol,
  .single .single-text-wrap ol {
    margin: 3vh auto 5vh;
    padding: 2.5vh 1vw 2.5vh 6.5vw;
  }

  .fixed-page h2,
  .single article h2 {
    font-size: 4vw;
    margin: 5vh auto 3vh;
    padding: 1vh 1vw 1vh 2vw;
    border-left: .8vw solid #003565;
  }

  /* プライバシーポリシー・特定商取引・セミナー受講規約 */
  section.privacy .inner,
  section.legal .inner,
  section.terms .inner {
    padding: 5vh 0;
  }

  section.privacy h3,
  section.terms h3 {
    padding-left: 3vw;
    font-size: 4.2vw;
    border-left: .8vw solid #003565;
  }

  section.privacy ol.num-list {
    margin: 3vh 0 3vh 4.5vw;
  }

  section.legal th {
    width: 30%;
    padding: 2vh 2vw;
  }

  section.legal td {
    padding: 2vh 3vw;
  }

  section.profile h2,
  section.privacy h2,
  section.legal h2,
  section.terms h2 {
    margin-bottom: 3vh;
  }

  section.terms h4 {
    padding-left: 3vw;
    font-size: 4vw;
    border-left: .8vw solid #c30042;
  }

  section.terms ul.disc-list {
    margin: 2vh 0 2vh 3.5vw;
  }

  section.terms ol.num-list {
    margin: 3vh 0 3vh 4.5vw;
  }

  section.terms .mt {
    font-size: 3.8vw;
    text-align: right;
  }

  /* margin */

  section.top-about .links,
  section.profile p.name,
  .top-cv .cv-links {
    margin-top: 3vh;
  }

  a.btn.btn--outline {
    margin-top: 2vh;
  }

  .top-cv .cv-grid {
    margin-top: 1vh;
  }

  .top-cv .cv-wrap.case .cv-links {
    margin-top: 1vh;
  }

  .top-space .flex-box.left,
  .sec-huning.-compare,
  .sec-huning.-why {
    margin-bottom: 5vh;
  }

  .case-wrap,
  .top-about h3,
  .top-about .h2-wrap h2,
  section.profile h2,
  section.achievements h2 {
    margin-bottom: 3vh;
  }

  section.top-about .links .btn-pill.navy,
  .top-space p.lead.one {
    margin-bottom: 2vh;
  }

  .mv-copy .sub.one {
    margin-bottom: 1vh;
  }

  .mv-copy .sub.two,
  .site-title-wrap,
  .sec-huning.-compare,
  .sec-huning.-why {
    margin-bottom: 0;
  }

  section.profile ul.bio-list,
  section.achievements .achv-list {
    margin-left: 1.5em;
  }

  section.company table ul {
    margin-left: 1.2em;
  }

  /* text-align */

  .top-space .lead,
  #g-nav .gnavi__lists li p,
  .sec-huning .note,
  .sec-coach .note {
    text-align: left;
  }

  .synergy-cards .card.arrow {
    text-align: center;
  }

  /* letter-spacing */
  .top-cv .cv-more {
    letter-spacing: .2vw;
  }

  section.page-mv h1,
  .header-title p.jp {
    letter-spacing: 1vw;
  }

  /* width */

  .mv-copy,
  section.service.top .flex-box,
  section.service.top .button,
  .top-space .flex-box.left,
  .top-space .flex-box.right,
  .map-link a,
  section.profile .flex-box.left {
    width: 100%;
  }

  section.service.top .inner-wrap,
  section.top-space .inner,
  .top-cv .inner,
  section.top-contact .inner,
  .breadcrumb,
  section.office .inner,
  section.access .inner,
  section.lb-gallery,
  section.profile .inner,
  section.achievements .inner,
  section.company .inner,
  .sec-huning .inner,
  .cta-wrap .btn,
  .voice-contents,
  .single .news-contents,
  .page-container.news,
  section.privacy .inner,
  section.legal .inner,
  section.terms .inner,
  section.media .inner,
  .sec-coach .inner,
  .sec-coach.-seminar .inner,
  .sec-huninggaku .inner {
    width: 92%;
  }

  section.top-about .inner {
    max-width: 92%;
  }

  section.page-mv img {
    width: 78%;
  }

  .top-cv .cv-more {
    width: 60%;
  }

  section.page-mv::before {
    width: 15vw;
  }

  section.office h3::after,
  section.lb-gallery h3::after,
  section.profile h2::after,
  section.achievements h2::after,
  .sec-huning .h2-wrap h2::after,
  section.profile h2::after,
  section.privacy h2::after,
  section.legal h2::after,
  section.terms h2::after,
  section.media h2::after,
  .sec-coach .h2-wrap h2::after,
  .sec-huninggaku .h2-wrap h2::after {
    width: 8vw;
  }

  /* line-height */
  section.office h3,
  section.lb-gallery h3 {
    line-height: 1.5;
  }

  /* font-weight */

  .mv-copy h1 {
    font-weight: 600;
  }



  /* font-size */

  section.top-about p.en {
    font-size: 16vw;
  }

  section.service h2,
  section.top-contact .h2-wrap p {
    font-size: 12vw;
  }

  .top-cv .h2-wrap p {
    font-size: 11vw;
  }

  section.top-news h2,
  .top-space .h2-wrap p {
    font-size: 10vw;
  }

  section.office p.en-sub,
  section.access p.en-sub,
  section.company p.en-sub {
    font-size: 8vw;
  }

  .mv-copy h1 {
    font-size: 5.3vw;
  }

  .mv-copy .sub.one,
  .top-about .h2-wrap h2,
  .top-cv .h2-wrap h2,
  section.page-mv h1,
  .header-title p.jp,
  .synergy-cards .card.arrow,
  .single article .share p {
    font-size: 5vw;
  }

  .mv-copy .sub {
    font-size: 4.8vw;
  }

  .top-about h3,
  section.service.top h3,
  .top-space .h2-wrap h2,
  section.sec-huning.-cta p,
  .single h1 {
    font-size: 4.5vw;
  }

  section.office h3,
  section.lb-gallery h3,
  section.profile h2,
  section.achievements h2,
  .sec-huning .h2-wrap h2,
  section.profile h2,
  section.privacy h2,
  section.legal h2,
  section.terms h2,
  section.media h2,
  .sec-coach .h2-wrap h2,
  .style-cards .card h3,
  .sec-huninggaku .h2-wrap h2 {
    font-size: 4.2vw;
  }

  section.service.top p.main,
  section.top-space h3,
  section.top-contact .contact-title,
  #g-nav .gnavi__lists li a,
  #g-nav .gnavi__lists li p,
  .h1-wrap p,
  .header-title p.en,
  section.profile p.name,
  section.profile h3,
  section.achievements .achv-block h3,
  .pagination ul li a,
  .pagination .current,
  .pagination ul li a,
  .pagination .current,
  .single .sale-detail h3,
  .single .news-contents h3,
  .benefit-cards .card h3 {
    font-size: 4vw;
  }

  .top-about .text-wrap p,
  section.service.top p.sub,
  section.service.top p.p2,
  .top-space .lead,
  .top-space .flex-box.right,
  section.top-contact .lead,
  section.top-contact .contact-text,
  .office-text p,
  section.lb-gallery .text-wrap p,
  .access-table,
  section.profile .text-wrap p,
  section.profile ul.bio-list li,
  section.achievements .achv-list li,
  section.company th,
  section.company td,
  .sec-huning .lead,
  .sec-huning p,
  .features-list,
  .compare-table th,
  .compare-table td,
  .compare-table thead th,
  .synergy-cards .card h3,
  article.article-list .text h2,
  .fixed-page .inner p,
  .single article p,
  .single .single-text-wrap .design_button.type1 a,
  section.privacy p,
  section.privacy ol.num-list li,
  section.legal th,
  section.legal td,
  section.terms p,
  section.terms ul.disc-list li,
  section.terms ol.num-list li,
  .single .sale-detail .content ul,
  .single .single-text-wrap ul,
  .single .sale-detail ol,
  .single .single-text-wrap ol,
  .single .sale-detail .content ul li,
  .single .single-text-wrap ul li,
  .single .single-text-wrap .design_button.type1 a,
  .sec-coach p,
  .target-list,
  .benefit-cards .card p,
  .practice-points .point-card p,
  .style-cards .card p,
  .sec-huninggaku p {
    font-size: 3.8vw;
  }

  .mv-copy .desc,
  .top-about .text-wrap p.notes,
  section.service.top .button,
  section.top-contact .btn,
  .footer-contact,
  .slide-content p,
  .map-link a,
  .other-job p,
  .sec-huning .note,
  .cta-wrap .btn,
  .sec-coach .note {
    font-size: 3.5vw;
  }

  .top-cv .cv-more {
    font-size: 3.2vw;
  }

  .article-date {
    font-size: 3vw;
  }

  .breadcrumb {
    font-size: 2.5vw;
  }

  /*--------------------------------
スマホフッター固定バー
---------------------------------*/


  _::-webkit-full-page-media,
  _:future,
  :root ul.floating li {
    padding: 2svh 0 3svh;
  }

  _::-webkit-full-page-media,
  _:future,
  :root .footer-bottom .fb-inner {
    padding: 3svh 0 13svh;
  }


  ul.floating {
    background: rgb(3 48 89 / 90%);
    margin: 0 auto;
    overflow: hidden;
    display: table;
    table-layout: fixed;
    text-align: center;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 3;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    border-top: .5px solid #fff;
  }

  ul.floating li {
    padding: 2svh 0 2svh;
    display: table-cell;
    border-right: .5px solid #fff;
  }

  ul.floating li a {
    border: none;
    display: block;
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 500;
    line-height: 1;
  }

  ul.floating li.one a,
  ul.floating li.three {
    letter-spacing: .5vw;
  }

  li.two {
    width: 50%;
  }

  li.two a {
    font-size: 4vw;
    font-weight: 500;
  }

  ul.floating li.three {
    border-right: unset;
  }

  .hamburger {
    color: #fff;
  }


  /*--------------------------------
ハンバーガーメニュー
---------------------------------*/

  .g-nav-openbtn {
    display: block;
    position: absolute;
    z-index: 1001;
    top: 2.5vw;
    right: 3%;
    cursor: pointer;
    width: 50px;
    height: 11vh;
  }

  .g-nav-openbtn .openbtn-area.hamburger {
    transition: all .4s;
  }

  .g-nav-openbtn span {
    position: absolute;
    left: 14px;
    display: inline-block;
    width: 45%;
    height: 2px;
    border-radius: 2px;
    background: #003565;
    transition: all .4s;
  }

  .g-nav-openbtn span:nth-of-type(1) {
    top: 2.8vh;
  }

  .g-nav-openbtn span:nth-of-type(2) {
    top: 4vh;
  }

  .g-nav-openbtn span:nth-of-type(3) {
    top: 5.2vh;
  }

  .g-nav-openbtn.active span:nth-of-type(1) {
    top: 18px;
    left: 18px;
    width: 40%;
    transform: translateY(6px) rotate(-135deg);
    background: #fff;
  }

  .g-nav-openbtn.active span:nth-of-type(2) {
    opacity: 0;
    top: 24px;
    left: 18px;
    width: 40%;
  }

  .g-nav-openbtn.active span:nth-of-type(3) {
    top: 30px;
    left: 18px;
    width: 40%;
    transform: translateY(-6px) rotate(135deg);
    background: #fff;
  }

  .g-nav-openbtn.scrolled span {
    background: #003565;
  }

  .globalMenuSp.active~.g-nav-openbtn span {
    background: #fff !important;
  }

  nav#g-nav {
    margin-top: 0;
  }

  nav.globalMenuSp {
    position: fixed;
    inset: 0;
    z-index: 1000;
    color: #fff;
    display: block;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    background-color: transparent;
    isolation: isolate;
  }

  nav.globalMenuSp.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    background-color: #003565;
  }

  nav.globalMenuSp .g-nav-wrap {
    width: 100%;
    height: 100%;
    transform: translateX(100%);
    transition: transform .3s ease-in-out;
    will-change: transform;
    background: transparent;
  }

  nav.globalMenuSp.active .g-nav-wrap {
    transform: translateX(0);
  }

  #g-nav .gnavi__lists {
    display: block;
    padding: 3vh 6vw 4vh;
    margin: 0;
    max-height: 100dvh;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: transparent;
  }

  #g-nav .gnavi__lists>li {
    position: relative;
    padding: 0 2vw;
    border-bottom: 0.2vw solid rgba(255, 255, 255, .5);
    overflow: visible;
  }

  #g-nav .gnavi__lists>li>a,
  #g-nav .gnavi__lists>li>p {
    display: block;
    padding: 2.2vh 6vw 2.2vh 0;
    color: #fff;
    text-decoration: none;
    font-size: 4vw;
    line-height: 1.6;
    min-height: 6vh;
  }

  #g-nav .gnavi__lists>li.has-child>a::after,
  #g-nav .gnavi__lists>li.has-child>p::after {
    content: none !important;
  }

  #g-nav .submenu-toggle {
    position: absolute;
    top: 1.5vh;
    right: 1vw;
    appearance: none;
    border: 0.15vw solid rgba(255, 255, 255, .35);
    background: transparent;
    color: #fff;
    width: 9vw;
    height: 9vw;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
  }

  #g-nav .submenu-toggle .chevron {
    width: 2vw;
    height: 2vw;
    border-right: 0.4vw solid currentColor;
    border-bottom: 0.4vw solid currentColor;
    transform: rotate(-45deg);
    transition: transform .25s ease;
  }

  #g-nav .has-child.is-open>.submenu-toggle .chevron {
    transform: rotate(45deg);
  }

  #g-nav .has-child>.sub-menu {
    position: static !important;
    z-index: auto !important;
    transform: none !important;
    display: block !important;
    overflow: hidden;
    max-height: 0;
    opacity: 0;
    margin: 0;
    padding: 0;
    list-style: none;
    transition:
      max-height .45s cubic-bezier(.25, .8, .25, 1),
      opacity .35s ease,
      margin .35s ease,
      padding .35s ease;
    pointer-events: none;
    background: transparent;
  }

  #g-nav .has-child.is-open>.sub-menu {
    max-height: 80vh;
    opacity: 1;
    pointer-events: auto;
  }

  #g-nav .gnavi__lists .sub-menu li+li {
    border-top: 0.15vw solid rgba(255, 255, 255, .08);
  }

  #g-nav .gnavi__lists .sub-menu li {
    border-bottom: .1vw solid rgba(255, 255, 255, .5);
    background: transparent;
  }

  .home #g-nav .sub-menu li a,
  #g-nav .sub-menu li a {
    display: block;
    padding: 2vh 1.5vw 2vh 2vw;
    color: #fff;
    text-decoration: none;
    font-size: 4vw;
    line-height: 1.6;
    background: transparent !important;
    transition: background-color .25s ease;
  }

  #g-nav .gnavi__lists .sub-menu li a:hover {
    background: rgba(0, 0, 0, .06);
  }

  li.has-child.is-open p,
  li.has-child.is-open a.hca {
    border-bottom: 0.2vw solid rgba(255, 255, 255, .5);
  }

  .hamburger-close.sp_block {
    text-align: center;
    width: 26%;
    margin: 0 auto;
    border-radius: 50px;
    color: #ffffff;
    font-size: 3.5vw;
    padding: .2vh 0;
    border: 1px solid #fff;
  }

  #g-nav .gnavi__lists li.contact {
    padding: 0;
    margin-top: 3vh;
  }

  #g-nav .gnavi__lists li.contact a {
    background: #fff;
    color: #003565;
    text-align: center;
    padding: 1.5vh 0;
    font-size: 3.2vw;
  }

  #g-nav .gnavi__lists li.contact a span {
    display: block;
    font-weight: 600;
    font-size: 7vw;
    font-family: "Roboto", sans-serif;
    font-style: italic;
    color: #003565;
    line-height: 1;
    letter-spacing: .2vw;
  }

  #g-nav .gnavi__lists li:not(:last-child)::after {
    display: none;
  }


  .has-child .sub-menu {
    box-shadow: unset;
  }

  #g-nav .gnavi__lists .sub-menu li:last-of-type {
    border-bottom: unset;
  }
}

@media (prefers-reduced-motion: reduce) {
  nav.globalMenuSp .g-nav-wrap {
    transition: none;
  }

  .g-nav-openbtn .openbtn-area.hamburger,
  .g-nav-openbtn span,
  #g-nav .submenu-toggle .chevron {
    transition: none;
  }
}

@media screen and (min-width: 767px) {

  ul.floating {
    display: none !important;
  }
}

@media screen and (orientation: landscape) and (max-device-width: 1024px) {
  ul.floating {
    display: none !important;
  }
}


/*---------------------------------------------------------
  i pad all portrait
  ---------------------------------------------------------*/
@media only screen and (min-device-width: 743px) and (max-device-width: 1024px) and (orientation: portrait) {

  .start p {
    width: 25vw;
  }

  section.top-contact .contact-box {
    padding: 1.75vh 2.5vw 1.5vh;
    outline: 1px solid #003565;
    outline-offset: -.5vh;
  }

  .footer-nav ul li,
  .header-contact,
  .cat-day,
  ul.footer-legal li {
    display: flex;
    align-items: stretch;
    padding: 0;
    margin: 0;
  }

  .footer-nav a {
    line-height: 2;
  }

  section.profile ul.bio-list {
    gap: .6vh 1.2vw;
  }

  .voice-articles {
    gap: 3.5vh 3vw;
  }

  .hp-link-wrap a, .link-wrap a.iuac {
    outline: .7px solid #fff;
  }

  section.media .media-list {
    gap: 2.5vh;
  }

  section.media .media-item {
    box-shadow: 0 .5vh 1vh rgba(0, 0, 0, .06);
  }

  span.dli-check-circle {
    height: 1.25vw;
    top: -.1vh;
  }

  .benefit-cards .card {
    border: 2.5px solid #003565;
    padding: 1.5vh 2vw;
  }

  .benefit-cards .card h3 {
    margin-bottom: .6vh;
    border-bottom: 1.5px solid #003565;
  }

  .url-copied {
    bottom: -5vw;
  }

  .target-list {
    margin: 1.5vh 0 0;
    padding: 1vh 1.5vw;
    border: 2.5px solid #003565;
  }

  .benefit-cards {
    gap: 1.5vh;
  }

  .license-list {
    margin: 1.5vh 0 0;
    padding: 1.5vh 3vw;
    border: 2.5px solid #003565;
  }

  .method-list {
    margin: 1.5vh 0;
    padding: 1.5vh 3vw;
    border: 2.5px solid #003565;
  }

  .practice-points .point-card {
    padding: .75vh 1.5vw;
    border: 2.5px solid #003565;
  }
	
	.feature-cards {
    gap: 1.5vh;
    margin-top: 1.5vh;
}
	
	.feature-cards .card {
    border: .25vh solid #003565;
    padding: 1.5vh 2vw;
}

	.feature-cards .card .theme {
    margin: 1vh 0 .75vh;
    padding: .5vh 1vw;
}
	
	.difference-table .col {
    border: .3vw solid #003565;
    padding: 1.25vh 1.5vw;
}
	
	.difference-card:nth-child(1) {
    border: .3vw solid #003565;
}
	
	.difference-card:nth-child(2) {
    border: .3vw solid #c30042;
}
	
	.schedule-card {
		    border: .3vw solid #003565;
		padding: 1.25vh 1.5vw;}
	
	.schedule-card h3 {
    margin-bottom: 1vh;
    border-bottom: 1.5px solid #003565;
    padding-bottom: .75vh;
}
	
  /* height */

  .mv-bg {
    height: 51.5vh;
    top: -6vh;
  }

  .mv {
    height: 42.5vh;
  }

  section.page-mv {
    height: 12.5vh;
  }

  .site-title-wrap img {
    height: 3vh;
    width: auto;
  }

  #g-nav .gnavi__lists li:not(:last-child):after {
    height: 10px;
    width: .5px;
  }

  .image-slide img {
    height: 12.5vh;
    margin-right: 1vw;
  }

  .swiper-scrollbar {
    height: 2px !important;
  }

	.difference-card h3::after, .difference-table .col h3::after {
	height: 1.5px;}
	
  section.company,
  .voice-contents {
    min-height: 81vw;
  }



  /* top */

  #g-nav .gnavi__lists li:not(:last-child):after {
    top: 41%;
  }

  p.article-date {
    top: 0;
  }

  .header-top {
    top: 1.7vw;
  }

  /* padding */

  section.media .inner {
    padding: 4vh 0 5vh;
  }

  section.privacy .inner,
  section.terms .inner {
    padding: 4vh 0;
  }

  .sec-huning.-cta,
  .sec-coach.-seminar, .sec-huninggaku, .sec-huninggaku.-university, .sec-coach.-schedule {
    padding: 3.5vh 0;
  }

  .sec-coach {
    padding: 3.5vh 0 0;
  }

  .page-container.news {
    padding: 3.5vh 0 5vh;
  }

  .cta-wrap {
    padding: 2vh 2vw;
  }

  .seminar-box {
    padding: 2vh 1vw;
  }

  .page-container.news article.article-list {
    padding: 1vh 1.5vw;
  }

  #g-nav .gnavi__lists li ul li a,
  .voice-articles article.article-list .text {
    padding: .5vh 1vw;
  }

  .footer-grid {
    padding: 1.5vh 0;
  }

  footer.site-footer .inner {
    padding: 1.5vh 0 0;
  }

  .voice-contents,
  .single .news-contents,
  section.legal .inner {
    padding: 5vh 0;
  }

  section.top-space {
    padding: 5vh 0 7.5vh;
  }

  section.profile .inner {
    padding: 5vh 0 2vh;
  }

  section.top-contact {
    padding: 3vh 0 4vh;
  }

  section.office .inner,
  section.access .inner {
    padding: 2.5vh 0;
  }

  section.legal th {
    padding: 1vh 1vw;
  }

  section.legal td {
    padding: 1vh 2vw;
  }

  .header-inner {
    padding: 1vh 0 0;
  }

  section.top-space h3 {
    padding: 1vh 0;
  }

  .sec-coach .h2-wrap h2 {
    padding: .75vh 0;
  }

  .header-contact .btn-contact {
    padding: .5vh 4vw;
  }

  #g-nav .gnavi__lists li p,
  #g-nav .gnavi__lists li a,
  section.service.top p.p2,
  .top-cv .cv-more,
  .hp-link-wrap a,
  .synergy-cards .card h3,
  .cta-wrap .btn, .sec-huninggaku .h2-wrap h2, .link-wrap a.iuac {
    padding: .5vh 0;
  }

  .synergy-cards .card p {
    padding: .5vh 1vw;
  }
	
	.media-list .label {
		padding: .2vh .8vw;}

  #g-nav .gnavi__lists li {
    padding: 0 2vw .5vh;
  }

  section.top-news .inner {
    padding: 2.5vh 0 4vh;
  }

  section.media .media-item {
    padding: 1.5vh 1.5vw;
  }
	.difference-card {
    padding: 1vh 2vw;
}
	
	.link-huning a{
		    padding: .5vh 0;
	}

  section.top-news a.category {
    padding: .35vh 1vw;
  }

  section.top-news .link a,
  section.top-about .links .btn-pill,
  .footer-cta__btns a.btn {
    padding: .35vh 0;
  }

  section.service.top {
    padding-top: 2vh;
  }

  section.service.top h3 {
    padding: .75vh 0;
    margin-bottom: .75vh;
  }

  section.service.top .button {
    margin: .75vh auto 0;
    padding: .25vh 0;
  }

  section.top-contact .contact-title {
    padding: .25vh 0;
  }



  section.top-contact .btn {
    margin: .75vh auto 0px;
    padding: .25vh 0;
  }

  .sec-coach.-practice, .sec-huninggaku.-difference, .sec-coach.-feature {
    padding-bottom: 3.5vh;
  }

  .footer-head {
    padding-bottom: 1.5vh;
  }

  .slide-content,
  .seminar-box .btn {
    padding: .5vh 0;
  }

  .target-list li {
    padding-bottom: .25vh;
  }

  section.media .media-item .badge {
    padding: .1vh 1vw;
  }

  .access-table th,
  .access-table td,
  section.company th,
  section.company td {
    padding: 1vh 2vw;
  }

  section.company .inner {
    padding: 4vh 0 5vh;
  }

  section.profile h2,
  section.achievements h2,
  section.profile h2,
  section.privacy h2,
  section.legal h2,
  section.terms h2 {
    padding: .5vh 0;
    margin-bottom: 2.5vh;
  }

  section.media h2 {
    padding: .5vh 0;
    margin-bottom: 1.5vh;
  }

  section.profile h3,
  section.achievements .achv-block h3 {
    margin-bottom: 1vh;
    padding: .5vh 0;
  }

  .style-cards .card h3 {
    padding: .5vh 0;
  }

  .style-cards .card p {
    padding: .5vh 1vw;
  }

  section.achievements .inner {
    padding: 0 0 5vh;
  }

  section.office h3,
  section.lb-gallery h3,
  .sec-huning .h2-wrap h2 {
    padding: .5vh 0;
    margin-bottom: 1.5vh;
  }

  .map-link a {
    padding: .35vh 0;
    margin: 1.5vh auto;
  }


  .sec-huning {
    padding: 3.5vh 0 0;
  }

  .features-list {
    margin: 1.5vh 0 0;
    padding: 1.5vh 4vw;
  }

  .sec-huning.-definition,
  .sec-huning.-compare,
  .sec-huning.-why,
  section.sec-coach.-intro,
  .sec-coach.-target,
  .sec-coach.-benefit,
  .sec-coach.-license,
  .sec-coach.-method,
  .sec-coach.-style,
  .sec-coach.-message, .sec-coach.-difference {
    padding-bottom: 3.5vh;
  }

  .compare-table th,
  .compare-table td {
    padding: .6vh 1vw;
  }

  .pagination ul li a,
  .pagination .current {
    padding: .25vh 1vw;
    border: 1px solid #003565;
  }

  .single h1 {
    padding-bottom: .5vh;
    margin-bottom: .5vh;
  }

  .single .sale-detail h3,
  .single .news-contents h3 {
    margin: 1.5vh auto;
    padding: .5vh .5vw;
  }

  .page-nav .prev-link,
  .page-nav .next-link {
    border: .1vw solid #003565;
    padding: .5vh .7vw;
  }

  .single .single-text-wrap .design_button.type1 a {
    padding: .75vh 5vw;
    margin: 1.5vh auto 0;
  }

  section.privacy h3,
  section.terms h3 {
    margin: 2.5vh auto 1vh;
    padding: .25vh 0 .25vh 1vw;
  }
	
	.media-list {
    margin: 1.5vh 0;
		padding: 1vh 1vw;}

  section.terms h4 {
    margin: 2.5vh auto 1vh;
  }
	.difference-card h3 {
    margin: 0 0 .5vh;
    padding-bottom: .5vh;
}

  #g-nav .gnavi__lists li ul li {
    padding: 0;
  }

  /* margin */

  .access {
    margin: 2.5vh 0;
  }

  .img-wrap, .difference-table {
    margin: 1.5vh auto;
  }

  .other-job {
    margin: .5vh auto;
  }

  .sign img {
    margin: 1vh 0 0 auto;
  }

  .two_column_image {
    margin: 30px 0 30px;
  }

  section.privacy ol.num-list,
  section.terms ol.num-list {
    margin: 1.5vh 0 1.5vh 1.5vw;
  }

  .practice-points {
    margin: 1.5vh 0 1vh;
  }

  section.profile .text-wrap {
    margin-bottom: 2.5vh;
    margin-top: 1.5vh;
  }

  .hp-link-wrap.flex-wrap.sb {
    margin: 2.5vh auto 0;
  }

  section.terms ul.disc-list {
    margin: 1vh 0 1vh 1.5vw;
  }

  section.media .media-item .title {
    margin: .3vh 0 .5vh;
  }

  .seminar-box p {
    margin: 0 0 1vh;
  }

  section.top-about .links,
  .top-space .flex-wrap,
  .top-cv .cv-grid,
  section.achievements .achv-block+.achv-block,
  .office-text,
  .pagination:not(:empty),
  nav.page-nav {
    margin-top: 2.5vh;
  }

  section.terms .mt {
    margin-top: 2vh;
  }

  .top-cv .cv-links,
  section.profile ul.bio-list,
  section.achievements .achv-list,
  .gallery-container,
  .map,
  section.company table,
  .table-scroll,
  .synergy-cards,
  .fixed-page .inner p,
  .single article p,
  .sec-coach .note,
  .benefit-cards,
  .style-cards, .difference-grid, .link-huning, .schedule-grid {
    margin-top: 1.5vh;
  }

  section.lb-gallery .text-wrap {
    margin-top: 1vh;
  }

  article.article-list .archive-text {
    margin-top: .75vh;
  }

  nav#g-nav,
  .single article .share ul {
    margin-top: .5vh;
  }

  .top-space .h2-wrap h2 {
    margin-top: 1vh;
    margin-bottom: 1vh;
  }

  .copy-wrap,
  section.top-contact .lead,
  section.media .lead {
    margin-bottom: 2.5vh;
  }

  .sec-huning .lead,
  .article-date,
  article.article-list,
  .sec-coach .h2-wrap h2, .sec-huninggaku .h2-wrap h2 {
    margin-bottom: 1.5vh;
  }

  .top-about .h2-wrap h2,
  .top-about h3,
  section.service h2,
  section.service.top p.main,
  section.top-contact .contact-text,
  .main-swiper,
  .cta-wrap p,
  section.privacy p,
  section.terms p, .difference-table .col h3 {
    margin-bottom: 1vh;
  }
	
		.difference-card p {
    margin-bottom: .75vh;
}

  section.media .media-item .meta {
    margin-bottom: .3vh;
  }


	
  section.media .media-item .desc {
    margin-bottom: 0;
  }

  section.profile .flex-box.left img.logo {
    margin: 0 auto 1vh;
  }

  .site-title-wrap,
  section.top-contact .h2-wrap,
  section.privacy ol.num-list li,
  section.terms ul.disc-list li,
  section.terms ol.num-list li {
    margin-bottom: .5vh;
  }

  article.article-list .text h2 {
    margin-bottom: .75vh;
  }

  .footer-nav__title {
    margin: 0 0 .4vw;
  }


  section.achievements .achv-list {
    margin-left: 2em;
  }

  .share {
    margin-bottom: 4.5vh;
    margin-top: 1.5vh;
  }

  /* font-size */

}


/*---------------------------------------------------------
  i pad pro landscape
  ---------------------------------------------------------*/
@media only screen and (min-device-width: 744px) and (max-device-width: 1400px) and (orientation: landscape) {

  .target-list,
  .benefit-cards .card,
  .license-list,
  .method-list,
  .practice-points .point-card {
    border: 3px solid #003565;
  }

}

/*---------------------------------------------------------
  i pad portrait
  ---------------------------------------------------------*/
@media screen and (min-width: 767px) and (max-width: 768px) {}

/*---------------------------------------------------------
  i pad landscape
  ---------------------------------------------------------*/
@media only screen and (min-device-width: 768px) and (max-device-width: 1024px) and (orientation: landscape) {}

/*---------------------------------------------------------
 小型PC～中型PC
---------------------------------------------------------*/
@media screen and (min-width:1200px) and (max-width:1700px) {


  /* font-size */

}


/*---------------------------------------------------------
 大型PC
---------------------------------------------------------*/

@media screen and (min-width:1920px) {
  /* font-size */

}