@charset "UTF-8";
.delay01 {
  transition-delay: 0.1s !important;
}

.delay02 {
  transition-delay: 0.2s !important;
}

.delay03 {
  transition-delay: 0.3s !important;
}

.delay04 {
  transition-delay: 0.4s !important;
}

.delay05 {
  transition-delay: 0.5s !important;
}

.delay06 {
  transition-delay: 0.6s !important;
}

.delay07 {
  transition-delay: 0.7s !important;
}

.delay08 {
  transition-delay: 0.8s !important;
}

.delay09 {
  transition-delay: 0.9s !important;
}

.delay10 {
  transition-delay: 1s !important;
}

/* fade in down */
.fade-in-down {
  transform: translateY(-20px);
  opacity: 0;
  transition: all 1s ease;
}
.fade-in-down.inview-on {
  transform: translateY(0px);
  opacity: 1;
}

.animImgScale {
  transition: all 0.5s;
  transform: translateY(-10px);
  opacity: 0;
}
.animImgScale img {
  transition: all 1s;
  transform: scale(1.1, 1.1);
  opacity: 0;
}

.inview-on.animImgScale {
  transform: translateY(0);
  opacity: 1;
}
.inview-on.animImgScale img {
  transform: scale(1, 1);
  opacity: 1;
}

.sans {
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
}

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

.cinzel {
  font-family: "Cinzel", serif;
}

.garamond {
  font-family: adobe-garamond-pro, serif;
}

.eb {
  font-family: "EB Garamond", serif;
}
.eb.italic {
  font-style: italic;
}

.times {
  font-family: "Times New Roman";
}

.colorA {
  color: #aa8420;
}

.colorP {
  color: #092c79;
}

.white {
  color: #ffffff;
}

.mt10 {
  margin-top: 0.2rem;
}

.mt30 {
  margin-top: 0.5rem;
}

.mt50 {
  margin-top: 0.8rem;
}
@media screen and (max-width: 750px) {
  .mt50 {
    margin-top: 0.5rem;
  }
}

.mt60 {
  margin-top: 1.2rem;
}
@media screen and (max-width: 750px) {
  .mt60 {
    margin-top: 0.8rem;
  }
}

.mt80 {
  margin-top: 1.5rem;
}
@media screen and (max-width: 750px) {
  .mt80 {
    margin-top: 0.8rem;
  }
}

.mt100 {
  margin-top: 100px;
}
@media screen and (max-width: 750px) {
  .mt100 {
    margin-top: 1.5rem;
  }
}

.mt130 {
  margin-top: 2.5rem;
}
@media screen and (max-width: 750px) {
  .mt130 {
    margin-top: 1.5rem;
  }
}

.mt150 {
  margin-top: 3.2rem;
}
@media screen and (max-width: 750px) {
  .mt150 {
    margin-top: 1.5rem;
  }
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

* {
  -webkit-tap-highlight-color: transparent;
}

html,
body,
h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
li,
dl,
dt,
dd,
table,
tr,
th,
td,
form,
figure {
  font-size: inherit;
  margin: 0;
  padding: 0;
  font-weight: normal;
}

a {
  color: inherit;
  text-decoration: none;
}

summary {
  display: block;
}

table {
  border-collapse: collapse;
  empty-cells: show;
}

th,
td {
  text-align: left;
  vertical-align: top;
}

li {
  list-style: none;
}

img {
  vertical-align: top;
  height: auto;
}

input,
textarea,
select {
  color: inherit;
  font-family: inherit;
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
}

button {
  color: inherit;
  font-family: inherit;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
  -webkit-appearance: textfield;
          appearance: textfield;
}

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

[disabled] {
  cursor: not-allowed;
}

input[type=button]:not([disabled]), input[type=submit]:not([disabled]), input[type=reset]:not([disabled]),
button[type=button]:not([disabled]),
button[type=submit]:not([disabled]),
button[type=reset]:not([disabled]) {
  cursor: pointer;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition-duration: 0s !important;
    transition-delay: 0s !important;
  }
}
img,
video {
  max-width: 100%;
  height: auto;
}

:root {
  font-size: 3.4722222222vw;
}
@media screen and (max-width: 750px) {
  :root {
    font-size: 13.3333333333vw;
  }
}

body {
  width: 100%;
  min-height: 100vh;
  background: #fff;
  color: #262626;
  font-family: "Noto Serif JP", serif;
  font-size: 15px;
  letter-spacing: 0.03rem;
  line-height: 1.7333333333;
  overflow-x: hidden;
}
@media screen and (max-width: 750px) {
  body {
    font-size: 13px;
    line-height: 1.5;
    letter-spacing: 0.02rem;
  }
}
body * {
  box-sizing: border-box;
}

.wrap {
  width: 24.2222222222rem;
}
@media screen and (min-width: 751px) {
  .wrap {
    max-width: 1200px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 750px) {
  .wrap {
    width: auto;
    padding-right: 0.3rem;
    padding-left: 0.3rem;
  }
}

.wrapS {
  width: 24.2222222222rem;
}
@media screen and (min-width: 751px) {
  .wrapS {
    max-width: 1000px;
    margin-right: auto;
    margin-left: auto;
  }
}
@media screen and (max-width: 750px) {
  .wrapS {
    width: auto;
    padding-right: 0.3rem;
    padding-left: 0.3rem;
  }
}

.tb {
  display: none;
}

.sp {
  display: none;
}

@media screen and (max-width: 1024px) and (min-width: 751px) {
  .tb {
    display: revert;
  }
}
@media screen and (max-width: 750px) {
  .pc {
    display: none;
  }
  .sp {
    display: revert;
  }
}
@media screen and (min-width: 751px) {
  a[href^="tel:"] {
    pointer-events: none;
  }
}
@media screen and (hover: hover) and (pointer: fine) {
  .hov {
    transition: opacity 0.3s;
  }
  @supports (filter: brightness(100%)) {
    .hov {
      transition-property: filter;
    }
  }
  .hov:hover {
    opacity: 0.8;
  }
  @supports (filter: brightness(100%)) {
    .hov:hover {
      filter: brightness(110%);
      opacity: 1;
    }
  }
}

a.btn {
  position: relative;
  text-align: center;
  display: block;
  color: #ffffff;
  background: #4c4c4c;
  padding: 15px 0;
  overflow: hidden;
  transition: ease 0.2s;
}
a.btn:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  z-index: 2;
  background: rgba(255, 255, 255, 0.2);
  width: 100%;
  height: 100%;
  transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
  transform: scale(0, 1);
  transform-origin: right top;
}
a.btn:hover:before {
  transform-origin: left top;
  transform: scale(1, 1);
}
a.btn:after {
  content: "";
  position: absolute;
  top: 22px;
  right: 20px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #ffffff;
}

a.ctaBtn {
  width: 480px;
  font-size: 20px;
  background: #aa8420;
  padding: 20px 0;
  font-weight: 200;
}
@media screen and (max-width: 1024px) and (min-width: 751px) {
  a.ctaBtn {
    font-size: 17px;
  }
}
@media screen and (max-width: 750px) {
  a.ctaBtn {
    width: 100%;
    font-size: 16px;
  }
}
a.ctaBtn:after {
  top: 46px;
  right: 20px;
  margin-top: -10px;
}
@media screen and (max-width: 750px) {
  a.ctaBtn:after {
    top: 38px;
    right: 15px;
  }
}

.bg_gra {
  background: rgb(225, 232, 240);
  background: linear-gradient(90deg, rgb(225, 232, 240) 0%, rgb(255, 255, 255) 50%, rgb(247, 251, 252) 80%, rgb(245, 249, 251) 100%);
  padding: 100px 0;
}
@media screen and (max-width: 750px) {
  .bg_gra {
    padding: 50px 0;
  }
}

.bg_blue {
  background: linear-gradient(126deg, rgb(14, 61, 127) 0%, rgb(13, 42, 77) 100%);
  padding: 100px 0;
}
@media screen and (max-width: 750px) {
  .bg_blue {
    padding: 50px 0;
  }
}

.fitimg {
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}

.mv {
  position: relative;
  overflow: hidden;
}
.mv #scrollIcon {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 2;
  color: #fff;
  text-align: center;
  padding-bottom: 1.9em;
  margin: auto;
  cursor: pointer;
  animation: moveYTOP 1.5s infinite alternate linear;
}
@media screen and (max-width: 750px) {
  .mv #scrollIcon {
    display: none;
  }
}
@keyframes moveYTOP {
  0% {
    bottom: 20px;
  }
  50% {
    bottom: 30px;
  }
  100% {
    bottom: 20px;
  }
}
.mv #scrollIcon:before, .mv #scrollIcon:after {
  content: "";
  position: absolute;
  bottom: 14px;
  left: 0;
  right: 0;
  margin: 0 auto;
  z-index: 1;
  width: 24px;
  height: 24px;
  border: #fff solid 1px;
  border-width: 0 1px 1px 0;
  transform: rotate(45deg);
}
.mv #scrollIcon:after {
  bottom: 10px;
}
.mv .bottomRightIn {
  background: rgba(0, 0, 0, 0.3);
  color: #ffffff;
  padding: 5px 10px;
  font-size: 14px;
  right: 0 !important;
  bottom: 0 !important;
}
@media screen and (max-width: 750px) {
  .mv .bottomRightIn {
    font-size: 12px;
  }
}

@media screen and (max-width: 750px) {
  .page_mv .image {
    height: 250px;
  }
  .page_mv img {
    width: 100%;
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}

.page_h1 {
  font-size: 18px;
  color: #092c79;
  text-align: center;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 750px) {
  .page_h1 {
    letter-spacing: 0.05rem;
    font-size: 15px;
  }
}
.page_h1 span {
  font-size: 40px;
  font-family: "EB Garamond", serif;
  display: block;
}
@media screen and (max-width: 750px) {
  .page_h1 span {
    font-size: 30px;
  }
}

.page_h2big {
  font-size: 30px;
}
@media screen and (max-width: 1024px) and (min-width: 751px) {
  .page_h2big {
    font-size: 25px;
  }
}
@media screen and (max-width: 750px) {
  .page_h2big {
    font-size: 20px;
  }
}

.page_h2 {
  font-size: 22px;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 750px) {
  .page_h2 {
    letter-spacing: 0.05rem;
    font-size: 20px;
  }
}
.page_h2 .en {
  font-size: 20px;
  color: #092c79;
  display: block;
  margin-bottom: 10px;
  font-family: "EB Garamond", serif;
}
@media screen and (min-width: 751px) {
  .page_h2 .en {
    letter-spacing: 0.08rem;
  }
}
@media screen and (max-width: 750px) {
  .page_h2 .en {
    font-size: 15px;
  }
}

.widelh {
  line-height: 2.3;
}
@media screen and (max-width: 750px) {
  .widelh {
    line-height: 2;
  }
}

.widelp {
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 750px) {
  .widelp {
    letter-spacing: 0.05rem;
  }
}

.fontS {
  font-size: 12px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  letter-spacing: 0.02rem;
}
@media screen and (max-width: 750px) {
  .fontS {
    font-size: 11px;
    letter-spacing: 0;
  }
}

.anchor {
  display: block;
  padding-top: 100px;
  margin-top: -100px;
}

.l-base .l-wrapper.l-migration-page .l-header {
  position: fixed;
}

.btn--menu {
  border: none;
  position: absolute;
  top: auto;
  right: 0;
  z-index: 9000;
  border-radius: 0;
  background: transparent;
  color: inherit;
  padding: 0 20px;
  border-left: 1px solid #ffffff;
}
@media screen and (max-width: 750px) {
  .btn--menu {
    display: block;
  }
  body.showGnav .btn--menu {
    border: 0;
  }
}
.btn--menu .bar {
  width: 20px;
  height: 60px;
  position: relative;
}
.btn--menu .bar span {
  display: block;
  width: 100%;
  height: 1px;
  position: absolute;
  left: 0;
  background: #ffffff;
  transition: 0.2s;
}
.btn--menu .bar span:nth-child(1) {
  top: 38%;
}
body.showGnav .btn--menu .bar span:nth-child(1) {
  transform: rotate(135deg);
  top: 50%;
}
.btn--menu .bar span:nth-child(2) {
  top: 50%;
}
body.showGnav .btn--menu .bar span:nth-child(2) {
  display: none;
}
.btn--menu .bar span:nth-child(3) {
  top: 62%;
}
body.showGnav .btn--menu .bar span:nth-child(3) {
  transform: rotate(45deg);
  top: 50%;
}

.gHeader {
  width: 100%;
  z-index: 999;
  margin-top: var(--header-height);
}
@media screen and (max-width: 750px) {
  .gHeader {
    height: 60px;
    background: #0d2a4d;
  }
  .gHeader.is-down {
    top: -60px;
    transition: all 0.3s ease-in-out;
  }
  .gHeader.is-down .tel {
    top: -60px;
    transition: all 0.3s ease-in-out;
  }
  .gHeader.is-down .btn--menu {
    top: -60px;
    transition: all 0.3s ease-in-out;
  }
}
.gHeader + .l-base:has(.c-breadcrumb) {
  z-index: 998;
  width: 100%;
  transition: all 0.2s ease-in-out;
}
@media screen and (max-width: 1024px) {
  .gHeader + .l-base:has(.c-breadcrumb) {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .gHeader .logo {
    width: 95px;
    position: absolute;
    top: calc(10px + var(--header-height));
    left: 10px;
    z-index: 9000;
  }
}
@media screen and (max-width: 750px) {
  .gHeader .tel {
    position: absolute;
    top: auto;
    right: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 60px;
    height: 60px;
    font-size: 10px;
    color: #ffffff;
    border-left: 1px solid;
  }
  .gHeader .tel img {
    width: 17px;
    display: block;
    margin: 0 auto 3px;
  }
}
@media screen and (max-width: 750px) {
  .gHeader .gNav {
    width: 100%;
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    right: 0;
    z-index: 8900;
    background: rgb(14, 61, 127);
    background: linear-gradient(209deg, rgb(14, 61, 127) 0%, rgb(13, 42, 77) 100%);
    opacity: 0;
    transform: translate3d(100%, 0, 0);
    padding: 1.7rem;
  }
}
@media screen and (max-width: 750px) {
  .gHeader .gNav {
    display: block;
    padding: 1rem 0 2.5rem;
    overflow: scroll;
  }
}
body.prepareGnav .gHeader .gNav {
  transition: 0.4s;
  transition-property: opacity, transform;
}
body.showGnav .gHeader .gNav {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.gHeader .gNav .navigation {
  display: flex;
  background: #0d2a4d;
  height: 90px;
}
@media screen and (max-width: 750px) {
  .gHeader .gNav .navigation {
    display: block;
    background: none;
    padding: 50px 30px;
    height: auto;
  }
}
.gHeader .gNav .navigation .logo {
  width: 2.8rem;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 10px;
}
.gHeader .gNav .navigation .logo img {
  max-width: 132px;
  width: 100%;
}
@media screen and (max-width: 750px) {
  .gHeader .gNav .navigation .logo {
    display: none;
  }
}
.gHeader .gNav .navigation .primary {
  display: flex;
  width: calc(100% - 2.64rem);
}
@media screen and (max-width: 750px) {
  .gHeader .gNav .navigation .primary {
    display: block;
    width: 100%;
  }
}
.gHeader .gNav .navigation .primary li {
  width: 14.2857142857%;
  border-left: 1px solid #ffffff;
}
@media screen and (max-width: 750px) {
  .gHeader .gNav .navigation .primary li {
    width: 100%;
    border: none;
  }
}
.gHeader .gNav .navigation .primary li:last-child {
  border: none;
}
.gHeader .gNav .navigation .primary a {
  width: 100%;
  height: 100%;
  background: #0d2a4d;
  color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: ease 0.2s;
}
@media screen and (max-width: 1024px) and (min-width: 751px) {
  .gHeader .gNav .navigation .primary a {
    font-size: 12px;
  }
}
@media screen and (max-width: 750px) {
  .gHeader .gNav .navigation .primary a {
    background: none;
    padding: 10px 0;
    font-size: 20px;
    font-weight: 200;
    display: block;
    text-align: left;
  }
}
@media screen and (min-width: 751px) {
  .gHeader .gNav .navigation .primary a:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
    background: #2B66A7;
    width: 100%;
    height: 100%;
    transition: transform 0.6s cubic-bezier(0.8, 0, 0.2, 1) 0s;
    transform: scale(0, 1);
    transform-origin: right top;
  }
  .gHeader .gNav .navigation .primary a:hover:before {
    transform-origin: left top;
    transform: scale(1, 1);
  }
}
.gHeader .gNav .navigation .primary a span {
  position: relative;
  z-index: 3;
}
.gHeader .gNav .navigation .primary .request {
  background: #aa8420;
}
@media screen and (max-width: 750px) {
  .gHeader .gNav .navigation .spBtn {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }
  .gHeader .gNav .navigation .spBtn .about {
    background: #4c4c4c;
  }
}
@media screen and (max-width: 750px) {
  .gHeader .gNav .navigation .tel_wrap {
    text-align: center;
    margin: 45px auto;
    color: #ffffff;
  }
  .gHeader .gNav .navigation .tel_wrap .ttl {
    font-size: 14px;
  }
  .gHeader .gNav .navigation .tel_wrap a {
    font-size: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .gHeader .gNav .navigation .tel_wrap a span {
    font-family: "Noto Serif JP", serif;
    font-weight: 200;
  }
  .gHeader .gNav .navigation .tel_wrap a img {
    width: 45px;
  }
  .gHeader .gNav .navigation .tel_wrap .text {
    font-size: 12px;
  }
}

.spBottom {
  position: fixed;
  bottom: 0;
  width: 100%;
  z-index: 8000;
}
.spBottom a {
  text-align: center;
  display: block;
  color: #ffffff;
  font-size: 14px;
  background: #aa8420;
  padding: 15px 0;
  font-weight: 200;
}
.spBottom a span {
  position: relative;
}
.spBottom a span:after {
  content: "";
  position: absolute;
  top: 6px;
  right: -35px;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #ffffff;
}
.spBottom a.ctaBtn:after {
  top: 46px;
  right: 20px;
  margin-top: -10px;
}
@media screen and (max-width: 750px) {
  .spBottom a.ctaBtn:after {
    top: 38px;
    right: 15px;
  }
}

.main .figcaption {
  padding: 0.22rem 0 0;
}
@media screen and (max-width: 750px) {
  .main .figcaption {
    padding: 0.2rem 0 0;
  }
}
.main .fNote {
  margin-top: 100px;
  font-size: 12px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  letter-spacing: 0;
}
@media screen and (max-width: 750px) {
  .main .fNote {
    margin-top: 50px;
  }
}
.main .image {
  position: relative;
}
.main .image .figcaption,
.main .image figcaption {
  font-size: 12px;
  font-family: "Noto Sans JP", "游ゴシック", "Yu Gothic", "游ゴシック体", "YuGothic", sans-serif;
  letter-spacing: 0;
}
@media screen and (max-width: 750px) {
  .main .image .figcaption,
  .main .image figcaption {
    font-size: 10px;
  }
}
.main .image .figcaption.bottomRight,
.main .image figcaption.bottomRight {
  text-align: right;
}
.main .image .figcaption.bottomLeftIn,
.main .image figcaption.bottomLeftIn {
  padding: 0 0.1rem 0.1rem;
  position: absolute;
  left: 0;
  bottom: 0;
}
.main .image .figcaption.bottomRightIn,
.main .image figcaption.bottomRightIn {
  position: absolute;
  right: 10px;
  bottom: 5px;
}
.main .image .figcaption.bottomRightOut,
.main .image figcaption.bottomRightOut {
  position: absolute;
  top: 100%;
  right: 0;
}
.main .image .figcaption.white,
.main .image figcaption.white {
  color: #fff;
}
.main .indent_wrap p {
  padding-left: 1em;
  text-indent: -1em;
}

.foot_nav {
  max-width: 750px;
  margin-top: 40px;
}
.foot_nav .ttl {
  font-size: 18px;
  color: #092c79;
  text-align: center;
  font-family: "EB Garamond", serif;
  letter-spacing: 0.1rem;
}
@media screen and (max-width: 750px) {
  .foot_nav .ttl {
    letter-spacing: 0.05rem;
  }
}
.foot_nav ul {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-top: 1px solid #4c4c4c;
  margin-top: 20px;
}
@media screen and (max-width: 750px) {
  .foot_nav ul {
    grid-template-columns: 1fr 1fr;
  }
}
.foot_nav li {
  border-bottom: 1px solid #4c4c4c;
  position: relative;
}
.foot_nav li:before {
  content: "";
  position: absolute;
  top: 15px;
  right: 0;
  width: 1px;
  height: 15px;
  background: #4c4c4c;
}
@media screen and (min-width: 751px) {
  .foot_nav li:nth-child(3n)::before {
    content: none;
  }
}
@media screen and (max-width: 750px) {
  .foot_nav li:nth-child(2n)::before {
    content: none;
  }
}
.foot_nav li a {
  display: block;
  padding: 10px 0;
  text-align: center;
}

.foot_cta {
  text-align: center;
  margin: 45px auto;
}
@media screen and (max-width: 750px) {
  .foot_cta .ttl {
    font-size: 14px;
  }
}
.foot_cta .tel {
  font-size: 45px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (max-width: 750px) {
  .foot_cta .tel {
    font-size: 40px;
  }
}
.foot_cta .tel span {
  font-family: "Noto Serif JP", serif;
  font-weight: 200;
}
.foot_cta .tel img {
  width: 45px;
}
.foot_cta .text {
  font-size: 13px;
}
@media screen and (max-width: 750px) {
  .foot_cta .text {
    font-size: 12px;
  }
}
.foot_cta .btn_wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 30px;
}
@media screen and (max-width: 750px) {
  .foot_cta .btn_wrap {
    grid-template-columns: 1fr;
    gap: 10px;
  }
}
.foot_cta .btn_wrap a {
  width: 100%;
}
.foot_cta .btn_wrap .about {
  background: #4c4c4c;
}

.gFooter {
  background: #333333;
  color: #ffffff;
}
.gFooter .wrap {
  width: 26rem;
  max-width: 1400px;
  padding: 60px 0;
  display: flex;
  justify-content: space-between;
}
@media screen and (min-width: 751px) {
  .gFooter .wrap .order1 {
    order: 1;
  }
  .gFooter .wrap .order2 {
    order: 2;
  }
}
@media screen and (max-width: 1024px) {
  .gFooter .wrap {
    width: auto;
    display: block;
  }
}
@media screen and (max-width: 750px) {
  .gFooter .wrap {
    padding: 40px 0;
  }
}
.gFooter .seller {
  display: flex;
  gap: 35px;
}
@media screen and (max-width: 1024px) {
  .gFooter .seller {
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
    text-align: center;
  }
}
.gFooter .seller .inner {
  width: 5.5rem;
  max-width: 275px;
}
@media screen and (max-width: 1024px) {
  .gFooter .seller .inner {
    width: 100%;
    max-width: none;
  }
}
.gFooter .seller .logo {
  margin: 15px 0;
  display: block;
}
.gFooter .seller .logo img {
  height: 27px;
}
.gFooter .seller .text.--01 {
  font-size: 12px;
}
.gFooter .seller .text.--02 {
  font-size: 11px;
}
@media screen and (max-width: 1024px) {
  .gFooter .seller .text.--02 {
    font-size: 10px;
  }
}
.gFooter .menu ul {
  width: 490px;
  font-size: 12px;
  display: flex;
  flex-wrap: wrap;
  justify-content: end;
}
@media screen and (max-width: 1024px) {
  .gFooter .menu ul {
    width: auto;
    justify-content: center;
  }
}
.gFooter .menu li {
  margin-right: 13px;
  padding-right: 13px;
  position: relative;
}
.gFooter .menu li:after {
  content: "";
  width: 1px;
  height: 10px;
  background: #ffffff;
  position: absolute;
  top: 5px;
  right: 0;
}
@media screen and (max-width: 1024px) {
  .gFooter .menu li:after {
    top: 10px;
  }
}
.gFooter .menu li:nth-child(2), .gFooter .menu li:nth-child(5) {
  margin-right: 0;
  padding-right: 0;
}
.gFooter .menu li:nth-child(2):after, .gFooter .menu li:nth-child(5):after {
  content: none;
}
@media screen and (max-width: 1024px) {
  .gFooter .menu li:nth-child(3) {
    width: 100%;
    text-align: center;
  }
  .gFooter .menu li:nth-child(3):after {
    content: none;
  }
}
@media screen and (max-width: 1024px) {
  .gFooter .menu li a {
    display: block;
    padding: 5px 0;
  }
}
.gFooter .menu .site {
  text-align: right;
  margin-top: 20px;
}
@media screen and (max-width: 1024px) {
  .gFooter .menu .site {
    text-align: center;
    border-top: 1px solid #666666;
    border-bottom: 1px solid #666666;
  }
}
.gFooter .menu .site a {
  display: inline-flex;
  align-items: center;
  justify-content: end;
  position: relative;
}
@media screen and (max-width: 1024px) {
  .gFooter .menu .site a {
    display: flex;
    justify-content: center;
    margin-left: 20px;
    padding: 20px 0;
  }
}
.gFooter .menu .site a span {
  position: relative;
}
.gFooter .menu .site a span:before {
  content: "";
  position: absolute;
  top: 9px;
  left: -20px;
  border-style: solid;
  border-width: 5px 0 5px 8px;
  border-color: transparent transparent transparent #ffffff;
}
@media screen and (max-width: 1024px) {
  .gFooter .menu .site a span:before {
    top: 5px;
  }
}
.gFooter .copy_en {
  font-size: 12px;
  margin-top: 80px;
  text-align: right;
}
@media screen and (max-width: 1024px) and (min-width: 751px) {
  .gFooter .copy_en.pc {
    display: none;
  }
}
@media screen and (max-width: 750px) {
  .gFooter .copy_en {
    margin-top: 45px;
    text-align: center;
  }
}
.gFooter .copy {
  background: #262626;
  font-size: 12px;
  text-align: center;
  padding: 20px 0;
}

.pagetop {
  display: block;
  width: 40px;
  height: 40px;
  background: #aa8420;
  position: fixed;
  right: 0.8rem;
  bottom: 0.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.4s;
  z-index: 999;
}
@media screen and (max-width: 750px) {
  .pagetop {
    right: 10px;
    bottom: 70px;
  }
}
.pagetop:before {
  content: "";
  width: 10px;
  height: 10px;
  border-top: solid 1px #ffffff;
  border-right: solid 1px #ffffff;
  transform: rotate(-45deg);
  display: block;
  margin-top: 5px;
}
.pagetop.off {
  opacity: 0;
  pointer-events: none;
}/*# sourceMappingURL=common.css.map */