@charset "UTF-8";
/* リキッドレイアウト対応 */
body {
  font-family: "Noto Sans JP", sans-serif;
  /*color: #001f3f;*/
	color: #000;
  font-weight: 400;
}

/* pcの電話番号発信対応 */
a[href^="tel:"] {
    pointer-events: auto!important;
}

.u-desktop {
  display: none;
}
@media screen and (min-width: 768px) {
  .u-desktop {
    display: block;
  }
}

@media screen and (min-width: 768px) {
  .u-mobile {
    display: none;
  }
}

html {
  font-size: 16px;
}
@media (max-width: 375px) {
  html {
    font-size: 4.2666666667vw;
  }
}
@media screen and (min-width: 768px) {
  html {
    font-size: 1.4545454545vw;
  }
}
@media (min-width: 1100px) {
  html {
    font-size: 16px;
  }
}

/* パソコンで見たときは"pc"のclassがついた画像が表示される */
.pcc { display: block !important; }
.spp { display: none !important; }
 
/* スマートフォンで見たときは"sp"のclassがついた画像が表示される */
@media only screen and (max-width: 750px) {
    .pcc { display: none !important; }
    .spp { display: block !important; }
}

/* pcの電話番号発信対応 */
@media screen and (min-width: 768px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}

/* ホバー */
a {
  text-decoration: none;
  color: inherit;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
}
@media screen and (min-width: 768px) {
  a:hover {
    opacity: 0.8;
  }
}

*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
figure,
blockquote,
dl,
dd {
  margin: 0;
}

/* Set core root defaults */
html {
  scroll-behavior: smooth;
}

/* Set core body defaults */
body {
  min-height: 100vh;
  text-rendering: optimizeSpeed;
  line-height: 1.5;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
@media screen and (-webkit-min-device-pixel-ratio: 0) and (min-resolution: 0.001dpcm) {
  img {
    image-rendering: -webkit-optimize-contrast;
  }
}
img {
  max-width: 100%;
  display: block;
  width: 100%;
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feComponentTransfer color-interpolation-filters="sRGB"><feFuncR type="linear" slope="1.05" /><feFuncG type="linear" slope="1.05" /><feFuncB type="linear" slope="1.05" /></feComponentTransfer></filter></svg>#filter');
  -webkit-filter: brightness(1.05);
          filter: brightness(1.05);
}

/* Natural flow and rhythm in articles by default */
/*article > * + * {
  margin-top: 1em;
}*/

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Blur images when they have no alt attribute */
img:not([alt]) {
  filter: url('data:image/svg+xml;charset=utf-8,<svg xmlns="http://www.w3.org/2000/svg"><filter id="filter"><feGaussianBlur stdDeviation="10" /></filter></svg>#filter');
  -webkit-filter: blur(10px);
          filter: blur(10px);
}

/* フォームリセット */
input,
button,
select,
textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: transparent;
  border: none;
  border-radius: 0;
  font: inherit;
  outline: none;
}

textarea {
  resize: vertical;
}

input[type=checkbox],
input[type=radio] {
  display: none;
}

input[type=submit],
input[type=button],
label,
button,
select {
  cursor: pointer;
}

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

body.active {
  height: 100%;
  overflow: hidden;
}

.floating-cta {
  position: fixed;
  right: 12px;
  right: 0.75rem;
  left: 12px;
  left: 0.75rem;
  bottom: calc(0.75rem + env(safe-area-inset-bottom));
  z-index: 800;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 8px;
  gap: 0.5rem;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(1rem);
          transform: translateY(1rem);
  pointer-events: none;
  -webkit-transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, visibility 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s;
  transition: opacity 0.3s, transform 0.3s, visibility 0.3s, -webkit-transform 0.3s;
}
@media screen and (min-width: 768px) {
  .floating-cta {
    right: 1.25rem;
    left: auto;
    bottom: 6.25rem;
    width: 13.75rem;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
    gap: 0.625rem;
  }
}

.floating-cta.is-visible {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  pointer-events: auto;
}

.floating-cta__btn {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  gap: 0.5rem;
  min-height: 48px;
  min-height: 3rem;
  padding: 10px 12px;
  padding: 0.625rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  -webkit-box-shadow: 0 0.375rem 1rem rgba(0, 0, 0, .2);
          box-shadow: 0 0.375rem 1rem rgba(0, 0, 0, .2);
  color: #ffffff;
  text-decoration: none;
  font-size: 14px;
  font-size: 0.875rem;
  font-weight: 700;
  line-height: 1.4;
  -webkit-transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.floating-cta__btn--phone {
  /*background-color: #0b2d52;
  border-color: #0b2d52;*/
	background-color: #ff7e00;
    border-color: #ff7e00;
}

.floating-cta__btn--mail {
  background-color: #d6a633;
  border-color: #d6a633;
}

.floating-cta__icon {
  color: currentColor;
  font-size: 16px;
  font-size: 1rem;
}

.footer {
  margin-top: auto;
	/*background-color: #001f3f;*/
	background-color: #ff7e00;
  color: #ffffff;
}

.footer__main {
  padding-top: 48px;
  padding-top: 3rem;
  padding-bottom: 48px;
  padding-bottom: 3rem;
}
@media screen and (min-width: 768px) {
  .footer__main {
    padding-top: 3.5rem;
    padding-bottom: 3.5rem;
  }
}

.footer__inner {
  padding-bottom: 32px;
  padding-bottom: 2rem;
}

.footer__grid {
  display: grid;
  gap: 32px;
  gap: 2rem;
  grid-template-columns: 1fr;
  padding-bottom: 32px;
  padding-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .footer__grid {
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 2.5rem;
    -webkit-box-align: start;
        -ms-flex-align: start;
            align-items: start;
  }
}

.footer__logo {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.4;
  font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", serif;
}
.footer__tagline {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, .9);
}

.footer__nav-head {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 12px;
  margin-bottom: 0.75rem;
  color: #ffffff;
}

.footer__nav-list {
  list-style: none;
}
.footer__nav-list li + li {
  margin-top: 8px;
  margin-top: 0.5rem;
}
.footer__nav-list a {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #fff;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}
.footer__nav-list a:hover {
  color: #d4af37;
}

.footer__tel {
  margin: 0;
}
.footer__tel a {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
}
.footer__tel a:hover {
  text-decoration: underline;
}

.footer__hours {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, .9);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, .15);
  padding-top: 32px;
  padding-top: 2rem;
}

.footer__bottom-inner {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .footer__bottom-inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
}

.footer__copy {
  font-size: 14px;
  font-size: 0.875rem;
  /*color: #a6a6a7;*/
	color: #fff7dd;
  display: block;
  text-align: center;
}

.footer__links {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 8px 16px;
  gap: 0.5rem 1rem;
  margin-top: 16px;
  margin-top: 1rem;
}
@media screen and (min-width: 768px) {
  .footer__links {
    margin-top: 0;
  }
}
.footer__links a {
  font-size: 14px;
  font-size: 0.875rem;
  /*color: #a6a6a7;*/
  color: #fff7dd;
}
.footer__links a:hover {
  /*color: #a6a6a7;*/
	color: #fff7dd;
  text-decoration: underline;
}

.footer__badge {
  font-size: 11px;
  font-size: 0.6875rem;
  color: #fff;
  margin: 0;
  -webkit-box-ordinal-group: 4;
      -ms-flex-order: 3;
          order: 3;
  padding: 4px 8px;
  padding: 0.25rem 0.5rem;
  background-color: rgba(0, 0, 0, .2);
  border-radius: 0.25rem;
}
@media screen and (min-width: 768px) {
  .footer__badge {
    position: absolute;
    right: 1.25rem;
    bottom: 0;
  }
}

.header {
  height: 64px;
  height: 4rem;
  background-color: #fff;
}
@media screen and (min-width: 768px) {
  .header {
    height: 4.25rem;
  }
}
.header.is-active {
  -webkit-box-shadow: 0 0 7px 0 rgba(0, 0, 0, .3);
          box-shadow: 0 0 7px 0 rgba(0, 0, 0, .3);
}

.header__inner {
  padding-left: 15px;
  padding-left: 0.9375rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
@media screen and (min-width: 768px) {
  .header__inner {
    padding: 0 3.125rem;
  }
}

.header__logo {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
	width: min(40vw, 200px);
}
/*.header__logo:after {
  content: "";
  display: inline-block;
  background-color: #d4af37;
  height: 7px;
  height: 0.4375rem;
  width: 7px;
  width: 0.4375rem;
  border-radius: 50%;
  margin-left: 6px;
  margin-left: 0.375rem;
  margin-top: 6px;
  margin-top: 0.375rem;
}*/
@media screen and (min-width: 768px) {
  .header__logo:after {
    height: 0.625rem;
    width: 0.625rem;
  }
}

.header__logo a {
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 24px;
  font-size: 1.5rem;
	color:#ff7e00;
	font-weight: bold;
}

.header__logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}

.header__nav {
  display: none;
  height: inherit;
}
@media screen and (min-width: 768px) {
  .header__nav {
    display: block;
  }
}

.header__nav-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: inherit;
}

.header__nav-item {
  height: inherit;
}

.header__nav-item.header__nav-item--contact {
  display: none;
}
@media screen and (min-width: 768px) {
  .header__nav-item.header__nav-item--contact {
    margin-left: 0.9375rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
  }
}

.header__nav-item a {
  padding: 0 15px;
  padding: 0 0.9375rem;
  height: inherit;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 500;
  line-height: 1;
  /*color: #333;*/
	color: #000;
  text-transform: uppercase;
  position: relative;
}

.header__nav-item a::before {
  content: "";
  position: absolute;
  bottom: 20px;
  bottom: 1.25rem;
  left: 50%;
  width: 70%;
  height: 1px;
  background-color: #d4af37;
  -webkit-transform: translateX(-50%) scale(0, 1);
          transform: translateX(-50%) scale(0, 1);
  -webkit-transform-origin: right top;
          transform-origin: right top;
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.6, 0, 0, 1);
  transition: -webkit-transform 0.4s cubic-bezier(0.6, 0, 0, 1);
  transition: transform 0.4s cubic-bezier(0.6, 0, 0, 1);
  transition: transform 0.4s cubic-bezier(0.6, 0, 0, 1), -webkit-transform 0.4s cubic-bezier(0.6, 0, 0, 1);
}

@media (any-hover: hover) {
  .header__nav-item a:hover::before {
    -webkit-transform: translateX(-50%) scale(1, 1);
            transform: translateX(-50%) scale(1, 1);
    -webkit-transform-origin: left top;
            transform-origin: left top;
  }
}
.header__nav-item.header__nav-item--contact a {
  padding: 10px 20px;
  padding: 0.625rem 1.25rem;
  position: relative;
  height: auto;
  height: initial;
  background-color: #d4af37;
  border: 1px solid #d4af37;
  border-radius: 0.5rem;
  font-weight: 700;
  -webkit-transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
	color: #fff;
}

.header__nav-item.header__nav-item--contact a::before {
  display: none;
}

@media (any-hover: hover) {
  .header__nav-item.header__nav-item--contact a:hover {
    background-color: #ffffff;
    color: #d4af37;
    border-color: #d4af37;
  }
}
.header__hamburger {
  margin: 0;
  padding: 0;
  outline: none;
  border: none;
  position: relative;
  z-index: 999;
  width: 64px;
  width: 4rem;
  height: inherit;
  cursor: pointer;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}
@media screen and (min-width: 768px) {
  .header__hamburger {
    display: none;
  }
}

.header__hamburger.is-open {
  background-color: transparent;
}

.header__hamburger span {
  position: relative;
  left: 50%;
  -webkit-transform: translateX(-50%);
          transform: translateX(-50%);
  display: block;
  width: 17px;
  width: 1.0625rem;
  height: 2px;
	/*background-color: #001f3f;*/
	background-color: #ff7e00;
  -webkit-transition: 0.5s;
  transition: 0.5s;
}

.header__hamburger span:nth-of-type(1) {
  top: -4px;
  top: -0.25rem;
}

.header__hamburger span:nth-of-type(2) {
  top: 0;
}

.header__hamburger span:nth-of-type(3) {
  top: 4px;
  top: 0.25rem;
}

.header__hamburger.is-open span:nth-of-type(1) {
  top: 2px;
  -webkit-transform: translateX(-50%) rotate(45deg);
          transform: translateX(-50%) rotate(45deg);
}

.header__hamburger.is-open span:nth-of-type(2) {
  opacity: 0;
}

.header__hamburger.is-open span:nth-of-type(3) {
  top: -2px;
  top: -0.125rem;
  -webkit-transform: translateX(-50%) rotate(-45deg);
          transform: translateX(-50%) rotate(-45deg);
}

.header__drawer {
  padding: 16px 0;
  padding: 1rem 0;
  margin-top: 64px;
  margin-top: 4rem;
  display: none;
  position: absolute;
  border-top: 1px solid #E5E7EB;
  z-index: 900;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background-color: #fff;
  overflow-y: scroll;
  scrollbar-width: none;
}

.header__drawer::-webkit-scrollbar {
  display: none;
}

.header__drawer-list {
  padding-inline: 16px;
  padding-inline: 1rem;
}

.header__drawer-item a {
  padding: 15px 0;
  padding: 0.9375rem 0;
  display: block;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.05em;
  /*color: #001f3f;*/
	color: #000;
  text-align: center;
  text-transform: uppercase;
  text-align: left;
}

.header__drawer-item.header__drawer-item--contact a::after {
  content: "";
  margin-bottom: 5px;
  margin-bottom: 0.3125rem;
  margin-left: 20px;
  margin-left: 1.25rem;
  width: 15px;
  width: 0.9375rem;
  height: 15px;
  height: 0.9375rem;
  display: inline-block;
  background-image: url(./../images/common/contact-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
}

.header__drawer-contact {
  background-color: #d4af37;
  /*color: #001f3f;*/
	color: #fff;
  text-align: center;
  border-radius: 0.5rem;
  margin-inline: 16px;
  margin-inline: 1rem;
  margin-top: 16px;
  margin-top: 1rem;
}

.header__drawer-contact a {
  font-weight: 700;
  padding: 8px 16px;
  padding: 0.5rem 1rem;
  display: inline-block;
}

.inner {
  width: 100%;
  padding-right: 16px;
  padding-left: 16px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .inner {
    max-width: 1150px;
    padding-right: 25px;
    padding-left: 25px;
  }
}

.layout-header {
  position: fixed;
  z-index: 900;
  top: 0;
  right: 0;
  left: 0;
}

.loading {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100vh;
  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-color: #fff;
  opacity: 1;
  -webkit-transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, -webkit-transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out;
  transition: opacity 0.8s ease-out, transform 0.8s ease-out, -webkit-transform 0.8s ease-out;
}

.loading.is-hide {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
  opacity: 0;
  pointer-events: none;
}

.loading__text {
  font-size: 40px;
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
  /*color: #001f3f;*/
  color: #ff7e00;
  -webkit-animation: slideIn 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
          animation: slideIn 1s cubic-bezier(0.77, 0, 0.175, 1) forwards;
}

@-webkit-keyframes slideIn {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes slideIn {
  0% {
    -webkit-clip-path: inset(0 100% 0 0);
            clip-path: inset(0 100% 0 0);
    opacity: 0;
  }
  100% {
    -webkit-clip-path: inset(0 0 0 0);
            clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}
.sec-sub-title {
  color: #d4af37;
  font-size: 14px;
  font-size: 0.875rem;
  margin-bottom: 6px;
  margin-bottom: 0.375rem;
  font-weight: 700;
}

.sec-title {
  font-size: 36px;
  /*font-size: 2.25rem;*/
	font-size: min(7vw, 30px);
  font-weight: 700;
  /*font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", serif;*/
	color:#ff7e00;
}
@media screen and (min-width: 768px) {
  .sec-title {
    font-size: 2.375rem;
  }
}

.top-column {
  padding: 60px 0;
  padding: 3.75rem 0;
  background-color: #fff;
}

.top-column__inner {
  max-width: 1120px;
  max-width: 70rem;
  padding: 0 16px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .top-column__inner {
    padding: 0 25px;
  }
}

.top-column__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  gap: 16px;
  gap: 1rem;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .top-column__header {
    margin-bottom: 2.5rem;
  }
}

.top-column__title {
  font-size: 28px;
  font-size: 1.75rem;
  font-weight: 700;
  color: #199664;
}
@media screen and (min-width: 768px) {
  .top-column__title {
    font-size: 3.75rem;
  }
}

.top-column__link {
  font-size: 14px;
  font-size: 0.875rem;
  color: #333333;
  letter-spacing: 0.025em;
  text-decoration: none;
  border: 1px solid #999999;
  padding: 6px 16px;
  padding: 0.375rem 1rem;
  border-radius: 0.25rem;
}
@media (any-hover: hover) {
  .top-column__link:hover {
    opacity: 0.8;
  }
}

.top-column__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  gap: 1.5rem;
}
@media screen and (min-width: 768px) {
  .top-column__list {
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
  }
}

.top-column__card {
  display: block;
  text-decoration: none;
  color: inherit;
}
@media (any-hover: hover) {
  .top-column__card:hover {
    opacity: 0.9;
  }
}

.top-column__card-image {
  width: 100%;
  aspect-ratio: 320/240;
  background-color: #ccc;
  overflow: hidden;
}

.top-column__card-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.top-column__card-date {
  font-size: 16px;
  font-size: 1rem;
  font-weight: 700;
  color: #999999;
  letter-spacing: 0.025em;
  margin-top: 12px;
  margin-top: 0.75rem;
}

.top-column__card-title {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.78;
  color: #333333;
  margin-top: 8px;
  margin-top: 0.5rem;
}

.top-goal {
  padding: 60px 0;
  padding: 3.75rem 0;
  background-color: #fff;
}

.top-goal__inner {
  max-width: 1120px;
  max-width: 70rem;
  padding: 0 16px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .top-goal__inner {
    padding: 0 25px;
  }
}

.top-goal__title-en {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  color: #5ADC3B;
  opacity: 0.2;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  margin-bottom: 32px;
  margin-bottom: 2rem;
}
@media screen and (min-width: 768px) {
  .top-goal__title-en {
    font-size: 5.375rem;
    margin-bottom: 3rem;
  }
}

.top-goal__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  gap: 1.5rem;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .top-goal__grid {
    grid-template-columns: 33.625rem 1fr;
    grid-template-rows: 37.5rem 40.625rem;
    gap: 2.5rem;
    margin-top: 3rem;
  }
}

.top-goal__image {
  width: 100%;
  aspect-ratio: 538/700;
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .top-goal__image {
    aspect-ratio: auto;
    height: 43.75rem;
  }
}

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

@media screen and (min-width: 768px) {
  .top-goal__image--right {
    aspect-ratio: 750/600;
    height: 37.5rem;
  }
}

@media screen and (min-width: 768px) {
  .top-goal__image--bottom {
    grid-column: 1/-1;
    max-width: 37.5rem;
  }
}

@media screen and (min-width: 768px) {
  .top-goal__image--bottom img {
    aspect-ratio: 600/650;
    -o-object-position: center;
       object-position: center;
  }
}

.top-message {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 143, 66, .1)), to(rgba(255, 180, 0, .1)));
  background: linear-gradient(180deg, rgba(0, 143, 66, .1) 0%, rgba(255, 180, 0, .1) 100%);
}

.top-message__inner {
  max-width: 1120px;
  max-width: 70rem;
  padding: 0 16px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .top-message__inner {
    padding: 0 25px;
  }
}

.top-message__hero {
  position: relative;
  width: 100%;
  max-width: 1000px;
  max-width: 62.5rem;
  margin-inline: auto;
  aspect-ratio: 1000/560;
}
@media screen and (min-width: 768px) {
  .top-message__hero {
    max-width: 100%;
  }
}

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

.top-message__catch {
  margin-top: 24px;
  margin-top: 1.5rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  font-size: 18px;
  font-size: 1.125rem;
  font-weight: 400;
  line-height: 2.33;
  letter-spacing: 0.2em;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .top-message__catch {
    margin-top: 1rem;
    padding-left: 0.9375rem;
    font-size: 1rem;
    letter-spacing: 0.1em;
  }
}

.top-message__bar {
  position: relative;
  width: 100%;
  max-width: 616px;
  max-width: 38.5rem;
  height: 70px;
  height: 4.375rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  margin-left: 10px;
  margin-left: 0.625rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: -webkit-gradient(linear, left top, right top, from(#199664), to(#FFB900));
  background: linear-gradient(90deg, #199664 0%, #FFB900 100%);
}
@media screen and (min-width: 768px) {
  .top-message__bar {
    max-width: 100%;
    margin-left: 0;
    margin-top: 1.5rem;
    height: 3.5rem;
  }
}

.top-message__bar-text {
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
}
@media screen and (min-width: 768px) {
  .top-message__bar-text {
    font-size: 1rem;
  }
}

.top-message__body-wrap {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  gap: 2rem;
  margin-top: 48px;
  margin-top: 3rem;
  padding-bottom: 60px;
  padding-bottom: 3.75rem;
}
@media screen and (min-width: 768px) {
  .top-message__body-wrap {
    grid-template-columns: 1fr 35rem;
    gap: 2.5rem;
    margin-top: 3rem;
    padding-bottom: 3.75rem;
  }
}

.top-message__text {
  font-size: 16px;
  font-size: 1rem;
  line-height: 2.5;
  letter-spacing: 0.1em;
  color: #333333;
  white-space: pre-line;
}
@media screen and (min-width: 768px) {
  .top-message__text {
    font-size: 0.875rem;
    line-height: 2.2;
  }
}

.top-message__image-wrap {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-width: 35rem;
  margin-left: auto;
  aspect-ratio: 560/800;
}
@media screen and (min-width: 768px) {
  .top-message__image-wrap {
    max-width: 100%;
    margin-left: 0;
  }
}

.top-message__image-wrap img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.top-message__gradation {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 188px;
  height: 11.75rem;
  pointer-events: none;
  background: -webkit-gradient(linear, left bottom, left top, from(#fff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.top-photo {
  position: relative;
  width: 100%;
  max-width: 1400px;
  max-width: 87.5rem;
  margin-inline: auto;
  overflow: hidden;
}

.top-photo__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto auto auto;
  min-height: 600px;
  min-height: 37.5rem;
}
@media screen and (min-width: 768px) {
  .top-photo__grid {
    grid-template-columns: 40rem 1fr 37.5rem;
    grid-template-rows: 37.5rem 34.375rem;
    grid-template-areas: "left center right" "main main main";
    min-height: 71.875rem;
  }
}

.top-photo__block {
  position: relative;
  background-size: cover;
  background-position: center;
}

.top-photo__block--left {
  aspect-ratio: 640/600;
}
@media screen and (min-width: 768px) {
  .top-photo__block--left {
    grid-area: left;
    width: 40rem;
    height: 37.5rem;
    aspect-ratio: auto;
  }
}

.top-photo__block--right {
  aspect-ratio: 600/680;
}
@media screen and (min-width: 768px) {
  .top-photo__block--right {
    grid-area: right;
    width: 37.5rem;
    height: 42.5rem;
    aspect-ratio: auto;
  }
}

.top-photo__block--main {
  aspect-ratio: 1400/550;
}
@media screen and (min-width: 768px) {
  .top-photo__block--main {
    grid-area: main;
    width: 100%;
    height: 34.375rem;
    aspect-ratio: auto;
  }
}

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

.top-photo__center {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 24px;
  padding: 1.5rem;
  background-color: #111;
}
@media screen and (min-width: 768px) {
  .top-photo__center {
    grid-area: center;
    padding: 2.5rem;
    -webkit-writing-mode: vertical-rl;
        -ms-writing-mode: tb-rl;
            writing-mode: vertical-rl;
  }
}

.top-photo__center-text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  letter-spacing: 0.2em;
  color: #fff;
}
@media screen and (min-width: 768px) {
  .top-photo__center-text {
    font-size: 1rem;
    letter-spacing: 0.25em;
  }
}

.top-photo__gradation {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 200px;
  height: 12.5rem;
  pointer-events: none;
  background: -webkit-gradient(linear, left bottom, left top, from(rgba(255, 255, 255, .8)), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to top, rgba(255, 255, 255, .8) 0%, rgba(255, 255, 255, 0) 100%);
}

.top-services {
  position: relative;
  padding: 60px 0;
  padding: 3.75rem 0;
  background: -webkit-gradient(linear, left top, left bottom, from(rgba(255, 180, 0, .1)), to(rgba(25, 150, 100, .1)));
  background: linear-gradient(180deg, rgba(255, 180, 0, .1) 0%, rgba(25, 150, 100, .1) 100%);
}

.top-services__inner {
  max-width: 1120px;
  max-width: 70rem;
  padding: 0 16px;
  margin-inline: auto;
}
@media screen and (min-width: 768px) {
  .top-services__inner {
    padding: 0 25px;
  }
}

.top-services__title-en {
  font-size: 36px;
  font-size: 2.25rem;
  font-weight: 700;
  color: #fff;
  -webkit-writing-mode: vertical-rl;
      -ms-writing-mode: tb-rl;
          writing-mode: vertical-rl;
  margin-bottom: 24px;
  margin-bottom: 1.5rem;
  text-shadow: 0 0 20px rgba(0, 0, 0, .2);
  text-shadow: 0 0 1.25rem rgba(0, 0, 0, .2);
}
@media screen and (min-width: 768px) {
  .top-services__title-en {
    font-size: 5.375rem;
    margin-bottom: 2.5rem;
  }
}

.top-services__list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  gap: 2rem;
  margin-top: 32px;
  margin-top: 2rem;
}
@media screen and (min-width: 768px) {
  .top-services__list {
    gap: 2.5rem;
    margin-top: 3rem;
  }
}

.top-services__item {
  background-color: #fff;
  border-radius: 0.5rem;
  overflow: hidden;
  -webkit-box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, .08);
          box-shadow: 0 0.25rem 1rem rgba(0, 0, 0, .08);
}

.top-services__item-image {
  width: 100%;
  aspect-ratio: 1000/380;
  overflow: hidden;
}

.top-services__item-image img {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.top-services__item-body {
  padding: 20px 16px;
  padding: 1.25rem 1rem;
}
@media screen and (min-width: 768px) {
  .top-services__item-body {
    padding: 1.5rem 1.25rem;
  }
}

.top-services__item-text {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 2;
  color: #333333;
}
@media screen and (min-width: 768px) {
  .top-services__item-text {
    font-size: 0.875rem;
  }
}

.top-services__gradation {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  height: 188px;
  height: 11.75rem;
  pointer-events: none;
  background: -webkit-gradient(linear, left top, left bottom, from(#fff), to(rgba(255, 255, 255, 0)));
  background: linear-gradient(to bottom, #fff 0%, rgba(255, 255, 255, 0) 100%);
}

.fv {
  padding-top: 48px;
  padding-top: 3rem;
  padding-bottom: 48px;
  padding-bottom: 3rem;
  background-color: #f5f5f5;
  margin-top: 40px;
  margin-top: 2.5rem;
}
@media screen and (min-width: 768px) {
  .fv {
    padding-top: 5rem;
    padding-bottom: 5rem;
    margin-top: 3.75rem;
  }
}

.fv__inner {
  max-width: 1240px;
  max-width: 77.5rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 50px;
  gap: 3.125rem;
}
@media screen and (min-width: 768px) {
  .fv__inner {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 3.5rem;
  }
}

.fv__body {
  -webkit-animation: up 1s ease-out;
          animation: up 1s ease-out;
}
@media screen and (min-width: 768px) {
  .fv__body {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
  }
}

.fv__sub-title {
  font-size: 12px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  color: #d4af37;
  line-height: 1.5;
}
@media screen and (min-width: 768px) {
  .fv__sub-title {
    font-size: 0.875rem;
  }
}

.fv__title {
  margin-top: 16px;
  margin-top: 1rem;
  /*font-size: 48px;*/
  font-size: min(6.5vw, 40px);
  line-height: 1.3;
  font-weight: 700;
	/*font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", serif;*/
	color:#ff7e00;
}
.fv__desc {
  margin-top: 20px;
  margin-top: 1.25rem;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.5;
  font-size: 20px;
  font-size: 1.25rem;
}
@media screen and (min-width: 768px) {
  .fv__desc {
    max-width: 33rem;
  }
}

.fv__buttons {
  margin-top: 32px;
  margin-top: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 16px;
  gap: 1rem;
  max-width: 350px;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (min-width: 768px) {
  .fv__buttons {
    gap: 0.75rem;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    max-width: 100%;
  }
}

.fv__btn {
  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;
  gap: 10px;
  gap: 0.625rem;
  padding: 13px 18px;
  padding: 0.8125rem 1.125rem;
  border-radius: 0.5rem;
  font-size: 15px;
  font-size: 0.9375rem;
  font-weight: 700;
  line-height: 1.5;
  text-decoration: none;
  -webkit-transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
@media screen and (min-width: 768px) {
  .fv__btn {
    display: -webkit-inline-box;
    display: -ms-inline-flexbox;
    display: inline-flex;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.125rem;
  }
}

.fv__btn--primary {
  /*background-color: #001f3f;*/
  background-color:#ff7e00;
  color: #ffffff;
  /*border: 1px solid #001f3f;*/
  border: 1px solid #ff7e00;
}
.fv__btn--primary:hover {
  background-color: #ffffff;
  /*color: #001f3f;*/
  color: #ff7e00;
}
.fv__btn--primary:hover .fv__btn-arrow,
.fv__btn--primary:hover .fv__btn-arrow::before,
.fv__btn--primary:hover .fv__btn-arrow::after {
  /*background-color: #001f3f;*/
	background-color:#ff7e00;
}

.fv__btn--outline {
  background-color: #ffffff;
  /*color: #001f3f;*/
	color: #ff7e00;
  /*border: 1px solid #001f3f;*/
	border: 1px solid #ff7e00;
}
.fv__btn--outline:hover {
  /*background-color: #001f3f;*/
	background-color:#ff7e00;
  color: #ffffff;
}

.fv__btn-arrow {
  position: relative;
  display: inline-block;
  width: 11px;
  width: 0.6875rem;
  height: 1px;
  height: 0.0625rem;
  background-color: #ffffff;
  margin-top: 3px;
  margin-top: 0.1875rem;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.fv__btn-arrow::before, .fv__btn-arrow::after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: -1px;
  right: -0.0625rem;
  width: 6px;
  width: 0.375rem;
  height: 1px;
  height: 0.0625rem;
  background-color: #ffffff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.fv__btn-arrow::before {
  -webkit-transform: translateY(-50%) rotate(45deg);
          transform: translateY(-50%) rotate(45deg);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}
.fv__btn-arrow::after {
  -webkit-transform: translateY(-50%) rotate(-45deg);
          transform: translateY(-50%) rotate(-45deg);
  -webkit-transform-origin: right center;
          transform-origin: right center;
}

.fv__image {
  -webkit-box-shadow: 0 0.875rem 1.25rem rgba(0, 0, 0, .1);
          box-shadow: 0 0.875rem 1.25rem rgba(0, 0, 0, .1);
  -webkit-animation: right 1s ease-out both;
          animation: right 1s ease-out both;
  -webkit-animation-delay: 0.5s;
          animation-delay: 0.5s;
}
@media screen and (min-width: 768px) {
  .fv__image {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 50%;
            flex: 1 1 50%;
  }
}
.fv__image img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 0.5rem;
}

.service {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 88px;
  padding-bottom: 5.5rem;
}

.service__inner {
  max-width: 1240px;
  max-width: 77.5rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
}

.service__heading {
  text-align: center;
}

.service__message {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.75;
}

.service__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  gap: 32px;
  gap: 2rem;
  margin-top: 56px;
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .service__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 1rem;
  }
}

.service-card {
  /*background-color: #002b57;*/
  background-color:#ff7e00;
  color: #ffffff;
  -webkit-transition: opacity 0.3s;
  transition: opacity 0.3s;
  border-radius: 0.5rem;
}
@media screen and (min-width: 768px) {
  .service-card {
    display: block;
    width: calc(33.33333% - 0.66667rem);
    min-height: 8.75rem;
  }
}

.service-card:hover {
  opacity: 0.85;
}

.service-card:hover .service-card__icon img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.service-card__body {
  padding: 24px;
  padding: 1.5rem;
}
@media screen and (min-width: 768px) {
  .service-card__body {
    padding: 1.125rem 1.25rem;
  }
}

.service-card__icon {
  overflow: hidden;
border-radius: 0.5rem 0.5rem 0 0;
}

.service-card__icon img {
  width: 100%;
  height: 100%;
  display: block;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.service-card__title {
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.4;
  font-weight: 700;
  color: #ffffff;
}

.service-card__message {
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.8;
  color: #ffffff;
  font-weight: 700;
}

.speaker {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  background-color: #f5f5f5;
}

.speaker__inner {
  max-width: 1240px;
  max-width: 77.5rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
}

.speaker__heading {
  text-align: center;
}

.speaker__sub-title {
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.5;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: #d4af37;
}

.speaker__message {
  margin-top: 12px;
  margin-top: 0.75rem;
  font-size: 12px;
  font-size: 0.75rem;
  line-height: 1.75;
  font-size: 16px;
  font-size: 1rem;
}

.speaker__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 32px 18px;
  gap: 2rem 1.125rem;
  margin-top: 40px;
  margin-top: 2.5rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .speaker__list {
    -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 2rem;
  }
}

.speaker-card {
  border: 1px solid #d9d9d9;
  border: 0.0625rem solid #d9d9d9;
  border-radius: 0.5rem;
  background-color: #ffffff;
  -webkit-box-shadow: 0 0.1875rem 0.25rem rgba(0, 0, 0, .1);
          box-shadow: 0 0.1875rem 0.25rem rgba(0, 0, 0, .1);
  overflow: hidden;
}
@media screen and (min-width: 768px) {
  .speaker-card {
    width: 31.3%;
  }
}

.speaker-card__image {
  /*background-color: #002d57;*/
  border-top: 3px solid #d4af37;
  position: relative;
  overflow: hidden;
  aspect-ratio: 16/9;
}
@supports not (aspect-ratio: 1/1) {
  .speaker-card__image::before {
    content: "";
    display: block;
    padding-top: 56.25%;
  }
}

.speaker-card__image-item {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  display: block;
}

.speaker-card:hover .speaker-card__image img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
}

.speaker-card__body {
  padding: 24px;
  padding: 1.5rem;
}

.speaker-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  aspect-ratio: 16/9;
  -o-object-fit: cover;
     object-fit: cover;
}

.speaker-card__name {
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.6;
  font-weight: 700;
  /*font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", serif;*/
}

.speaker-card__job {
  margin-top: 4px;
  margin-top: 0.25rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.6;
}

.speaker-card__category {
  margin-top: 4px;
  margin-top: 0.25rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.6;
  color: #d4af37;
  font-weight: 700;
}

.speaker__button-wrap {
  margin-top: 48px;
  margin-top: 3rem;
  text-align: center;
}

.speaker__button {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  min-width: 112px;
  min-width: 7rem;
  padding: 16px 19px;
  padding: 1rem 1.1875rem;
  border-radius: 0.5rem;
  /*background-color: #001f3f;*/
  background-color: #ff7e00;
  font-size: 18px;
  font-size: 1.125rem;
  line-height: 1.4;
  font-weight: 700;
  color: #ffffff;
  text-decoration: none;
  gap: 12px;
  gap: 0.75rem;
  /*border: 1px solid #001f3f;*/
	border: 1px solid #ff7e00;
  -webkit-transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}
.speaker__button:hover {
  background-color: #ffffff;
  /*color: #001f3f;*/
  color: #ff7e00;
	
}
.speaker__button:hover span,
.speaker__button:hover span::before,
.speaker__button:hover span::after {
  /*background-color: #001f3f;*/
	background-color: #ff7e00;
}

.speaker__button span {
  position: relative;
  display: inline-block;
  width: 12px;
  width: 0.75rem;
  height: 1px;
  height: 0.0625rem;
  border-radius: 9999px;
  background-color: #fff;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.speaker__button span:before, .speaker__button span:after {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
  right: 0;
  width: 8px;
  width: 0.5rem;
  height: 1px;
  height: 0.0625rem;
  border-radius: 9999px;
  background-color: #fff;
  -webkit-transform-origin: calc(100% - 2px) 50%;
          transform-origin: calc(100% - 2px) 50%;
  -webkit-transition: background-color 0.3s;
  transition: background-color 0.3s;
}
.speaker__button span:before {
  -webkit-transform: rotate(45deg) translateY(-2px);
          transform: rotate(45deg) translateY(-2px);
}
.speaker__button span:after {
  -webkit-transform: rotate(-45deg) translateY(2px);
          transform: rotate(-45deg) translateY(2px);
}

.strength {
  padding-top: 64px;
  padding-top: 4rem;
  padding-bottom: 64px;
  padding-bottom: 4rem;
  /*background-color: #001f3f;*/
	background-color: #ff7e00;
}

.strength__inner {
  max-width: 1240px;
  max-width: 77.5rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 24px;
  padding-right: 1.5rem;
  padding-left: 24px;
  padding-left: 1.5rem;
}

.strength__title {
  text-align: center;
  color: #ffffff;
}

.strength__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  gap: 56px;
  gap: 3.5rem;
  margin-top: 48px;
  margin-top: 3rem;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
}
@media screen and (min-width: 768px) {
  .strength__list {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    gap: 3.5rem;
  }
}

.strength-card {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 0px;
          flex: 1 1 0;
}

.strength-card__number {
  font-size: 64px;
  font-size: 4rem;
  line-height: 1;
  font-weight: 700;
  /*color: #d4af37;*/
  color: #fffc6d;
}

.strength-card__title {
  margin-top: 10px;
  margin-top: 0.625rem;
  font-size: 24px;
  font-size: 1.5rem;
  line-height: 1.5;
  font-weight: 700;
  color: #ffffff;
  /*font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", serif;*/
}

.strength-card__message {
  margin-top: 14px;
  margin-top: 0.875rem;
  font-size: 15px;
  font-size: 0.9375rem;
  line-height: 1.8;
  color: #EDF0F0;
}

.flow {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 88px;
  padding-bottom: 5.5rem;
  background-color: #ffffff;
}

.flow__inner {
  max-width: 1240px;
  max-width: 77.5rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
}

.flow__heading {
  text-align: center;
}

.flow__sub-title {
  color: #cca45f;
  font-size: 14px;
  font-size: 0.875rem;
  letter-spacing: 0.2em;
}

.flow__title {
  margin-top: 8px;
  margin-top: 0.5rem;
  /*color: #1e3f66;*/
	color: #ff7e00;
  /*font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;*/
}

.flow__list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 32px 16px;
  gap: 2rem 1rem;
  margin-top: 56px;
  margin-top: 3.5rem;
}
@media screen and (min-width: 768px) {
  .flow__list {
    -ms-flex-wrap: nowrap;
        flex-wrap: nowrap;
    gap: 1rem;
  }
}

.flow-step {
  -webkit-box-flex: 1;
      -ms-flex: 1 1 100%;
          flex: 1 1 100%;
  text-align: center;
  min-width: 0;
}
@media screen and (min-width: 768px) {
  .flow-step {
    -webkit-box-flex: 1;
        -ms-flex: 1 1 0px;
            flex: 1 1 0;
  }
}

.flow-step__number {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: 56px;
  width: 3.5rem;
  height: 56px;
  height: 3.5rem;
  border-radius: 50%;
  /*background-color: #001f3f;*/
	background-color: #ff7e00;
  color: #ffffff;
  font-size: 20px;
  font-size: 1.25rem;
  font-weight: 700;
  margin-right: auto;
  margin-left: auto;
}

.flow-step__title {
  margin-top: 16px;
  margin-top: 1rem;
  font-size: 20px;
  font-size: 1.25rem;
  line-height: 1.5;
  font-weight: 700;
  /*color: #001f3f;*/
	color: #ff7e00;
  /*font-family: "Hiragino Mincho ProN", "Hiragino Mincho Pro", "Yu Mincho", "YuMincho", serif;*/
}
@media screen and (min-width: 768px) {
  .flow-step__title {
    font-size: 1.25rem;
  }
}

.flow-step__desc {
  margin-top: 8px;
  margin-top: 0.5rem;
  font-size: 14px;
  font-size: 0.875rem;
  line-height: 1.75;
  color: #333333;
}

.flow__arrow {
  display: none;
  -ms-flex-negative: 0;
      flex-shrink: 0;
  width: 32px;
  width: 2rem;
  height: 32px;
  height: 2rem;
  margin-top: 28px;
  margin-top: 1.75rem;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cline x1='0' y1='12' x2='12' y2='12' stroke='%23cca45f' stroke-width='1.5' stroke-linecap='square'/%3E%3Cpath d='M12 8 L22 12 L12 16 Z' fill='%23cca45f'/%3E%3C/svg%3E") no-repeat center;
  background-size: contain;
}
@media screen and (min-width: 768px) {
  .flow__arrow {
    display: block;
  }
}

.contact-sec {
  padding-top: 80px;
  padding-top: 5rem;
  padding-bottom: 80px;
  padding-bottom: 5rem;
  background-color: #ffffff;
  border-top: 1px solid #d9d9d9;
}

.contact-sec__inner {
  max-width: 1240px;
  max-width: 77.5rem;
  margin-right: auto;
  margin-left: auto;
  padding-right: 20px;
  padding-right: 1.25rem;
  padding-left: 20px;
  padding-left: 1.25rem;
  text-align: center;
}

.contact-sec__title {
  font-size: 36px;
  font-size: 2.25rem;
  line-height: 1.4;
  font-weight: 700;
  /*color: #2e4058;*/
  color: #ff7e00;
  /*font-family: "Hiragino Mincho ProN", "Yu Mincho", serif;*/
}
@media screen and (min-width: 768px) {
  .contact-sec__title {
    font-size: 2.5rem;
  }
}

.contact-sec__desc {
  max-width: 560px;
  max-width: 35rem;
  margin-top: 24px;
  margin-top: 1.5rem;
  margin-right: auto;
  margin-left: auto;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.75;
  color: #5e6c7d;
}

.contact-sec__buttons {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 16px;
  gap: 1rem;
  margin-top: 40px;
  margin-top: 2.5rem;
}

.contact-sec__btn {
  display: -webkit-inline-box;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 8px;
  gap: 0.5rem;
  padding: 14px 28px;
  padding: 0.875rem 1.75rem;
  border-radius: 0.5rem;
  font-size: 16px;
  font-size: 1rem;
  line-height: 1.5;
  font-weight: 400;
  color: #ffffff;
  text-decoration: none;
  border: 1px solid transparent;
  -webkit-transition: background-color 0.3s, color 0.3s, border-color 0.3s;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.contact-sec__btn--phone {
  /*background-color: #1b344d;
  border-color: #1b344d;*/
  background-color: #ff7e00;
  border-color: #ff7e00;
}
.contact-sec__btn--phone:hover {
  background-color: #ffffff;
  /*color: #1b344d;*/
	color: #ff7e00;
}

.contact-sec__btn--email {
  background-color: #d6a633;
  border-color: #d6a633;
}
.contact-sec__btn--email:hover {
  background-color: #ffffff;
  color: #d6a633;
}

.contact-sec__btn-icon {
  font-size: 18px;
  font-size: 1.125rem;
  color: currentColor;
  -webkit-transition: color 0.3s;
  transition: color 0.3s;
}

.contact-sec__btn--phone .contact-sec__btn-icon {
  -webkit-transform: scaleX(-1);
          transform: scaleX(-1);
}
/*# sourceMappingURL=styles.css.map */

/*下層*/
#main{
	padding-top: 5rem;
    margin-top: 3.75rem;
}
.lower__heading {
    text-align: center;
}
.content_lower{
	margin-bottom: 80px;
    margin-bottom: 5rem;
}
@media screen and (min-width: 768px) {
    .inner {
        max-width: 1250px;
        padding-right: 25px;
        padding-left: 25px;
    }
}

/*サービス*/
.works {
	/*background: #f4f4f4;*/
	margin-top: 80px;
    margin-top: 5rem;
}

.works-inner {
  max-width: 1320px;
  margin: 0 auto;
	/*padding-bottom: 80px;
    padding-bottom: 5rem;*/
  display: flex;
  /*gap: 60px;*/
}

/* 左 */
.works-text {
    width: 43%;
    margin-right: 7%;
}

.works-text h2 {
  font-size: min(5.5vw, 25px);
    margin-bottom: 20px;
    color: #ff7e00;
}
.works-text .lead{
    margin-top: 12px;
    margin-top: 0.75rem;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.75;
    font-size: 16px;
    font-size: 1rem;
}
/* 右スライダー */
.works-slider {
  width: 50%;
  height: 400px;
}

/* スライド */
.swiper-slide {
  overflow: hidden;
	border-radius:10px;
}

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

/* ページネーション（縦） */
.swiper-pagination {
  right: 10px !important;
}

.swiper-pagination-bullet {
  background: #999;
  opacity: 1;
}

.swiper-pagination-bullet-active {
  background: #ff7e00!important;
}

/* スマホ */
@media (max-width: 768px) {
  .works-inner {
    flex-direction: column;
  }

  .works-text,
  .works-slider {
    width: 100%;
  }

  .works-slider {
    height: 300px;
  }
  .works-text .lead{
	  margin-bottom:30px;
}
}

#service01,#service02,#service03,#service04,#service05,#service06{
	margin-top: -5rem;
    padding-top: 5rem;
}

/*演者一覧*/
.archive-list {
	margin-top: 80px;
    margin-top: 5rem;
	margin-bottom: 80px;
    margin-bottom: 5rem;
}

.archive-list .inner {
  max-width: 1250px;
  margin: 0 auto;
}

/* グリッド */
/* PC（デフォルト） */
.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* カード */
.card {
  background: #fff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  transition: 0.3s;
  height: 100%;
  position: relative;
  padding-bottom: 48px;
}

.card02 {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: 0.3s;
    height: 100%;
    position: relative;
}

@media (max-width: 750px) {
.card {
  padding-bottom: 65px;
}
}

.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.card a {
  display: block;
  color: inherit;
  text-decoration: none;
}

.card02:hover {
  transform: translateY(-6px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.card02 a {
  display: block;
  color: inherit;
  text-decoration: none;
}


/* 画像 */
.card-img {
  aspect-ratio: 3 / 4;
  overflow: hidden;
}

.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* 本文 */
.card-body {
  padding: 16px;
}

@media (max-width: 820px) {
.card-body {
    padding: 10px;
}
}

/* カテゴリ */
/*.card-category {
  display: inline-block;
  font-size: min(2.4vw, 12px);
  background: #ff7a00;
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  margin-bottom: 10px;
}*/



.card-category {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.card-category .cat {
  display: inline-block;
  background: #ff7a00;
  color: #fff;
  padding: 2px 6px;
  border-radius: 20px;
  font-size: min(2.4vw, 10px);
}


/* タイトル */
.card-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 6px;
}

.card-title02 {
    font-size: 16px;
    font-weight: bold;
    margin-top: 5px;
	margin-bottom: 5px;
}

/* 肩書 */
.card-text {
  font-size: 13px;
  color: #666;
}

/* タブレット（1024px以下） */
@media (max-width: 1024px) {
  .card-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

/* スマホ（640px以下） */
@media (max-width: 640px) {
  .card-grid {
    grid-template-columns: repeat(2, 1fr);
	gap: 15px;
  }
}

.cardbtn{
	border-radius: 100px;
    background: #d4af37;
    text-align: center;
    color: #fff;
    padding: 6px;
    font-weight: bold;
    margin-top: 12px;
    /*font-size: 14px;*/
	font-size: min(3vw, 14px);
	position: absolute;
    bottom: 15px;
	left:16px;
	right:16px;
}
@media (max-width: 820px) {
.cardbtn{
	left:10px;
	right:10px;
}
}

.pagination {
  margin-top: 60px;
  text-align: center;
}

/* 全体 */
.wp-pagenavi {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px;
  background: #f9f9f9;
  border-radius: 999px;
  overflow-x: auto;
  white-space: nowrap;
  -webkit-overflow-scrolling: touch;
}

/* 共通 */
.wp-pagenavi a,
.wp-pagenavi span {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 42px;
  height: 42px;
  font-size: 14px;
  border-radius: 999px;
  text-decoration: none;
  transition: all 0.3s ease;
}

/* 通常リンク */
.wp-pagenavi a {
  background: #fff;
  color: #333;
  box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

/* hover */
.wp-pagenavi a:hover {
  background: #ff7a00;
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 8px 16px rgba(0,0,0,0.15);
}

/* 現在ページ */
.wp-pagenavi .current {
  background: linear-gradient(135deg, #ff7a00, #ff9a3d);
  color: #fff;
  font-weight: bold;
  box-shadow: 0 6px 14px rgba(255,122,0,0.4);
  transform: scale(1.1);
}

/* 前後ボタン */
.wp-pagenavi .previouspostslink,
.wp-pagenavi .nextpostslink {
  padding: 0 16px;
  font-weight: bold;
}

/* ドット */
.wp-pagenavi .extend {
  background: none;
  box-shadow: none;
  color: #aaa;
}

/* 押した感 */
.wp-pagenavi a:active {
  transform: scale(0.95);
}

@media (max-width: 640px) {
  .wp-pagenavi a,
  .wp-pagenavi span {
    min-width: 36px;
    height: 36px;
    font-size: 12px;
  }
}
.wp-pagenavi span.pages {
	display:none;
}
.wp-pagenavi a:hover, .wp-pagenavi span.current {
    border-color: #ff7e00!important;
}

.form-wrap {
  max-width: 1200px;
  margin: 0 auto;
  /*padding: 40px 20px;*/
	margin-top: 80px;
    margin-top: 5rem;
	margin-bottom: 80px;
    margin-bottom: 5rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 25px;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

/* フォーム全体 */
.form-group {
  display: flex;
  flex-direction: column;
}

.form-group.full {
  grid-column: span 2;
}

/* ラベル */
.form-group label {
  font-weight: 600;
  margin-bottom: 8px;
	font-size: 16px;
}

/* 必須・任意 */
.required {
  background: #ff4d4f;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  margin-left: 6px;
  border-radius: 3px;
}

.optional {
  background: #aaa;
  color: #fff;
  font-size: 11px;
  padding: 2px 6px;
  margin-left: 6px;
  border-radius: 3px;
}

/* 入力欄 */
.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 12px;
  border: 1px solid #ddd;
  border-radius: 6px;
  font-size: 14px;
  transition: 0.3s;
  width: 100%;
  box-sizing: border-box;
}

/* フォーカス */
.form-wrap input:focus,
.form-wrap select:focus,
.form-wrap textarea:focus {
  border-color: #0073aa;
  box-shadow: 0 0 0 3px rgba(0,115,170,0.15);
  outline: none;
}

/* テキストエリア */
.form-wrap textarea {
  min-height: 140px;
  resize: vertical;
}

/* チェックボックス */
.form-group.checkbox {
  align-items: flex-start;
}

.form-group.checkbox input {
  margin-right: 8px;
}

/* 送信ボタン */
.form-submit {
  grid-column: span 2;
  text-align: center;
  margin-top: 20px;
}

.form-submit input {
  background: linear-gradient(135deg, #d4af37, #d4af37);
  color: #fff;
  border: none;
  padding: 14px 40px;
  font-size: 16px;
  border-radius: 50px;
  cursor: pointer;
  transition: 0.3s;
}

.form-submit input:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* スマホ対応 */
@media (max-width: 768px) {
  .form-wrap {
    grid-template-columns: 1fr;
  }

  .form-group.full {
    grid-column: span 1;
  }

  .form-submit {
    grid-column: span 1;
  }
}

.form-submit input {
  margin: 5px;
}

/* 確認ボタン */
input[name="mwform_bconfirm"] {
  background: linear-gradient(135deg, #28a745, #1e7e34);
}

/* 送信ボタン */
input[name="mwform_submit"] {
  background: linear-gradient(135deg, #0073aa, #005177);
}

/* 戻るボタン */
input[name="mwform_bback"] {
  background: #ccc;
  color: #333;
}

.thanks-wrap {
  max-width: 800px;
  margin: 0 auto;
  /*padding: 80px 20px;*/
	margin-top: 80px;
    margin-top: 5rem;
	margin-bottom: 80px;
    margin-bottom: 5rem;
  text-align: center;
  font-family: 'Helvetica Neue', Arial, sans-serif;
}

.thanks-title {
  font-size: 28px;
  margin-bottom: 20px;
  color: #333;
}

.thanks-lead {
  font-size: 16px;
  line-height: 1.8;
  margin-bottom: 30px;
}

.thanks-box {
  background: #f7f7f7;
  padding: 25px;
  border-radius: 8px;
  margin-bottom: 30px;
  font-size: 14px;
  line-height: 1.7;
}

.thanks-note {
  font-size: 13px;
  color: #777;
  margin-bottom: 40px;
}

.thanks-btn a {
  display: inline-block;
  background: linear-gradient(135deg, #d4af37, #d4af37);
  color: #fff;
  padding: 14px 40px;
  border-radius: 50px;
  text-decoration: none;
  transition: 0.3s;
}

.thanks-btn a:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

.pri {
    /* background: #f4f4f4; */
    margin-top: 80px;
    margin-top: 5rem;
}
h2.pri__h2{
	font-size:min(5vw,20px);
	margin:30px 0 30px 0;
	color: #ff7e00;
}
h2.pri__h2_2{
	font-size:min(4.8vw,20px);
	margin:0 0 15px 0;
	color: #ff7e00;
}
.pri__wra{
	background:#fff3e8;
	padding:20px;
	border-radius:10px;
	margin-top:30px;
}
.pri p{
	margin-top: 12px;
    margin-top: 0.75rem;
    font-size: 12px;
    font-size: 0.75rem;
    line-height: 1.75;
    font-size: 16px;
    font-size: 1rem;
}

/*利用規約*/
.cancel {
  width: 100%;
  margin: 0 auto;
  margin-top: 30px;
  margin-bottom: 30px;
}

.cancel__title {
  font-size: min(5vw, 20px);
  font-weight: bold;
  margin-bottom: 20px;
  position: relative;
}

.cancel__title::after {
  content: "";
  display: block;
  height: 4px;
  background: #f07d00;
  margin-top: 8px;
}

/* テーブル */
.cancel__table {
  border-top: 1px solid #ddd;
}

.cancel__row {
  display: flex;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid #ddd;
  gap: 5px;
}

.cancel__term {
  width: 70%;
  line-height: 1.6;
}

.cancel__fee {
  width: 30%;
  text-align: right;
  font-weight: 600;
}

/* ===== スマホ対応 ===== */
@media (max-width: 768px) {
  .cancel__row {
    flex-direction: column;
  }

  .cancel__term,
  .cancel__fee {
    width: 100%;
  }

  .cancel__fee {
    text-align: left;
    margin-top: 6px;
    font-size: 16px;
    color: #666;
  }
}

.footer__links {
    justify-content: center;
}

.footer__logo {
    width: min(40vw, 200px);
}

/*演者一覧絞込*/
.category-nav {
  width: 100%;
  font-family: sans-serif;
  margin-bottom:30px;
	box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
	border-radius: 10px;
    overflow: hidden;
}

/* PC表示 */
.category-list {
  display: flex;
  border: 1px solid #ddd;
	border-radius: 10px;
    overflow: hidden;
}

.category-list li {
  flex: 1;
  list-style: none;
  border-right: 1px solid #ddd;
}

.category-list li:last-child {
  border-right: none;
}

.category-list a {
    display: block;
    padding: 15px 5px;
    text-align: center;
    text-decoration: none;
    color: #333;
    background: #f3f3f3;
    font-size: min(1vw, 12px);
    transition: 0.3s;
}

.category-list li.active a {
  background: #ff7a00;
  color: #fff;
  font-weight: bold;
}

.category-list a:hover {
    background: #ff7a00;
    color: #fff;
}

/* SP用トグル */
.category-toggle {
    display: none;
    width: 100%;
	padding: 12px 10px;
    background: #ff7a00;
    color: #fff;
    border: none;
    text-align: left;
    font-size: 14px;
    position: relative;
}

.category-toggle .arrow {
  position: absolute;
  right: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 2px solid #fff;
  border-bottom: 2px solid #fff;
  transform: translateY(-50%) rotate(45deg);
  transition: 0.3s;
}

.category-toggle.open .arrow {
  transform: translateY(-50%) rotate(-135deg);
}

/* レスポンシブ */
@media (max-width: 1024px) {

  .category-toggle {
    display: block;
	  border-radius: 10px 10px 0 0;
  }

  .category-list {
    display: none;
    flex-direction: column;
    border-top: none;
	  border-radius: 0 0 10px 10px;
    overflow: hidden;
  }

  .category-list li {
    border-right: none;
    border-top: 1px solid #ddd;
  }

  .category-list a {
    text-align: left;
    background: #fff;
	padding: 12px 10px;  
  }

  .category-list li.active a {
    background: #ffe3cc;
    color: #ff7a00;
  }

  .category-list.open {
    display: flex;
  }
}




@media (max-width: 768px) {
  .wp-pagenavi a:not(.previouspostslink):not(.nextpostslink),
  .wp-pagenavi span {
    display: none;
  }
}


#feas_0_0{
border: 1px solid #ddd;
padding: 10px;
border-radius: 10px;
}
#feas-submit-button-0{
    border-radius: 10px;
    background: #ff8400;
    color: #fff;
    padding: 10px 15px;
    border: 1px solid #ff8400;
}
#feas-searchform-0{
	text-align: center;
	margin-bottom:20px;
	font-size: min(3vw,14px);
	color:#333;
}
