@charset "UTF-8";
/**
 * 共通で読み込みたいcssはこちらに（Next.jsではglobal.cssとして使用されることを想定）
 */
/**
 * Colors
 */
/*-----------------------------------------------------------------
 * mixin …各セクションやページで共通しているscssをまとめた要素            *
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
* 01. breakpoint / liquid
* 02. effect
* 03. button
----------------------------------------------------------------- */
/* ----------------------------------------------------------------
01. breakpoint / liquid
----------------------------------------------------------------- */
/* ----------------------------------------------------------------
02. effect
----------------------------------------------------------------- */
/* ----------------------------------------------------------------
03. button
----------------------------------------------------------------- */
/**
* primaryBtn
 */
/**
* secondaryBtn
* $type:normal(アイコンなし),right(右矢印),left(左矢印)
 */
/*-----------------------------------------------------------------
 * reset …各ブラウザに最初からあるスタイルを打ち消す                    *
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
01. reset
----------------------------------------------------------------- */
html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
  background: transparent;
  border: 0;
  margin: 0;
  outline: 0;
  padding: 0;
  vertical-align: baseline;
}

/* デフォルトを10pxにする */
html {
  font-size: 14px;
}

/* html5要素をインラインからブロック要素へ変更 */
article,
aside,
details,
figcaption,
figure,
footer,
header,
menu,
nav,
section {
  display: block;
}

/* list */
ol,
ul {
  list-style: none;
}

/* 引用符非表示 */
blockquote,
q {
  quotes: none;
}

/* blockquote要素、q要素の前後レイアウト調整 */
blockquote::before,
blockquote::after,
q::before,
q::after {
  content: '';
  content: none;
}

/* a */
a {
  background: transparent;
  font-size: 100%;
  margin: 0;
  padding: 0;
  vertical-align: baseline;
}

/* ins */
ins {
  color: #000;
  text-decoration: none;
}

/* mark */
/* テキストに打ち消し線が付くようにしています */
del {
  text-decoration: line-through;
}

/* IE用 下線設定及びマウスhover時ヘルプカーソル */
abbr[title],
dfn[title] {
  border-bottom: 1px dotted;
  cursor: help;
}

/* table */
table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* hr */
hr {
  border: 0;
  display: block;
  height: 1px;
  margin: 1em 0;
  padding: 0;
}

/* input select */
input,
select {
  vertical-align: middle;
}

/* outlineの消去 */
input {
  outline: none;
}

/* borderの消去 */
button {
  border: none;
}

/* 画像を縦に並べた時に余白が出ないように */
img {
  vertical-align: top;
}

/* box-sizingを全ブラウザに対応 */
*,
*::before,
*::after {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

/*--------------------------------------
02. base
--------------------------------------*/
html {
  -webkit-text-size-adjust: 100%;
}

body {
  color: #000;
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    'Helvetica Neue',
    'ヒラギノ角ゴ ProN W3',
    Hiragino Kaku Gothic ProN,
    YuGothic,
    Arial,
    'メイリオ',
    Meiryo,
    sans-serif;
}

body a {
  -webkit-transition: all 0.3s;
  color: #000;
  outline: none;
  text-decoration: none;
  transition: all 0.3s;
}

/**
 * pc/sp
 */
@media screen and (max-width: 1023px) {
  .pc--only {
    display: none !important;
  }
}

@media screen and (min-width: 1024px) {
  .sp--only {
    display: none !important;
  }
}

/**
 * parts
 */
.fwb {
  font-weight: bold;
}

.fw400 {
  font-weight: 400;
}

.fw500 {
  font-weight: 500;
}

.fw600 {
  font-weight: 600;
}

.fw700 {
  font-weight: 700;
}

.fw800 {
  font-weight: 800;
}

.tac {
  text-align: center;
}

.tar {
  text-align: right;
}

.tal {
  text-align: left;
}

.vam {
  vertical-align: middle;
}

.vat {
  vertical-align: top;
}

.vab {
  vertical-align: bottom;
}

.dpb {
  display: block;
}

.dpib {
  display: inline-block;
}

/*-----------------------------------------------------------------
 * content                                                       *
-----------------------------------------------------------------*/
/* ----------------------------------------------------------------
* 01. common wrap
* 02. contents wrap
----------------------------------------------------------------- */
/* ----------------------------------------------------------------
01. common wrap
----------------------------------------------------------------- */
/**
 * wrap
 */
.wrap {
  background-image: url("../images/bg/bg_gray.png");
  background-size: 400px;
  overflow: hidden;
}

.wrap.splash {
  opacity: 0;
  height: 100vh;
}

:root {
  --color-white: #fff;
  --color-black: #000;
  --color-blue: #0065e9;
  --color-deepblue: #004cad;
  --color-gray: #707070;
}

.setBG {
  background: var(--image-url) 0 0 no-repeat;
}

.flexcenter {
  display: flex;
  justify-content: center;
}

.apfooter {
  padding-right: 3.8461538462%;
  padding-left: 3.8461538462%;
}
@media only screen and (width >= 1024px) {
  .apfooter {
    padding-right: min(120px, 6.25vw);
    padding-left: min(120px, 6.25vw);
  }
}

.l-inner {
  margin-inline: auto;
}
@media only screen and (width >= 1024px) {
  .l-inner {
    max-width: 1680px;
  }
}

/* GoogleTranslation.scss */

.goog-te-combo {
  -webkit-appearance: none;
  appearance: none;
  border: 2px solid var(--color-black);
  border-radius: 15px;
  font-size: 12px;
  height: auto;
  letter-spacing: 0;
  font-weight: 600;
  color: var(--color-black);
  background-color: var(--color-white) !important;
  width: auto;
  padding: 7px 14px 7px 10px;
}
@media only screen and (width >= 1024px) {
  .goog-te-combo {
    border-radius: 17px;
    padding: 8px 20px 8px 16px;
    font-size: 16px;
  }
}

.goog-te-gadget {
  width: auto;
}
.goog-te-gadget::before {
  background-color: var(--color-black);
  border: none;
  bottom: 0;
  clip-path: polygon(0 0, 100% 0%, 50% 100%);
  pointer-events: none;
  position: absolute;
  margin-top: auto;
  margin-bottom: auto;
  top: 0;
  transform: none;
  right: 10px;
  content: "";
  height: 5px;
  width: 7px;
}
@media only screen and (width >= 1024px) {
  .goog-te-gadget::before {
    height: 7px;
    right: 14px;
    width: 10px;
  }
}

/* SiteHeader.scss */

.apheader {
  border-top: 6px solid var(--color-deepblue);
}
@media screen and (width <= 1023px) {
  .apheader {
    border-bottom: none;
  }
}
@media only screen and (width >= 1024px) {
  .apheader {
    position: relative;
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 10px min(58px, 3.0208333333vw);
    padding-top: 26px;
    padding-right: min(60px, 3.125vw);
    padding-left: min(60px, 3.125vw);
    border-top: 16px solid var(--color-deepblue);
  }
  .apheader .apheader__title {
    grid-column: 1/2;
  }
  .apheader .headerNavWrap {
    grid-column: 2/3;
  }
  .apheader .headerSearchWrap {
    grid-column: 1/3;
    z-index: 2;
  }
}
.apheader .apheader__title {
  width: 132px;
}
@media only screen and (width >= 1024px) {
  .apheader .apheader__title {
    width: clamp(132px, 10.6770833333vw, 205px);
  }
}
.apheader .apheader__title img {
  width: 100%;
  height: auto;
}
.apheader .apheader__title a:focus-visible {
  opacity: 0.5;
}
@media (any-hover: hover) {
  .apheader .apheader__title a:hover {
    opacity: 0.5;
  }
}
@media only screen and (width >= 1024px) {
  .apheader .headerSearchWrap {
    border-radius: calc(infinity * 1px);
  }
}
@media only screen and (width >= 1024px) {
  .apheader .headerSearchArea {
    display: grid;
    grid-template-columns: min(540px, 28.125vw) 1fr;
    column-gap: 3.4032898469%;
    min-height: 60px;
    padding: 5px 32px 5px 5px;
  }
}
@media only screen and (width >= 1024px) {
  .apheader .headerSearchInput {
    width: auto;
    height: 100%;
  }
  .apheader .headerSearchInput::after {
    content: none;
  }
}
@media only screen and (width >= 1024px) {
  .apheader .headerSearchInput__form {
    position: relative;
    gap: 0;
    min-width: 300px;
    height: 100%;
  }
}
@media only screen and (width >= 1024px) {
  .apheader .headerSearchInput__btn {
    position: absolute;
    right: 8px;
    width: 39px;
    height: 39px;
    background-color: var(--color-blue);
    border: 1px solid var(--color-black);
    border-radius: 50%;
    box-shadow: 2px 2px 0 0 #000;
  }
  .apheader .headerSearchInput__btn img {
    width: 20px;
  }
}
@media only screen and (width >= 1024px) and (any-hover: hover) {
  .apheader .headerSearchInput__btn:hover {
    background-color: var(--color-deepblue);
  }
}
@media only screen and (width >= 1024px) {
  .apheader .headerSearchInput__btn:focus-visible {
    background-color: var(--color-deepblue);
  }
}
@media only screen and (width >= 1024px) {
  .apheader .headerSearchInput__input {
    width: 100%;
    height: 100%;
    padding-left: min(22px, 1.1458333333vw);
    color: var(--color-black);
    background-color: var(--color-white);
    border: 1px solid var(--color-gray);
    border-radius: calc(infinity * 1px);
  }
  .apheader .headerSearchInput__input::placeholder {
    font-size: 16px;
    color: var(--color-black);
  }
}
@media only screen and (width >= 1024px) {
  .apheader .headerSearchKeyword {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    width: auto;
    padding-left: 0;
  }
}
@media only screen and (width >= 1024px) {
  .apheader .headerSearchKeywordList {
    gap: 8px 22px;
    max-width: unset;
  }
}
@media only screen and (width >= 1024px) {
  .apheader .headerSearchKeywordList__link {
    padding: 0;
    font-size: 14px;
    color: var(--color-white);
    background-color: unset;
    border: none;
  }
}
@media only screen and (width >= 1024px) and (any-hover: hover) {
  .apheader .headerSearchKeywordList__link:hover {
    opacity: 0.8;
  }
}
@media only screen and (width >= 1024px) {
  .apheader .headerSearchKeywordList__link:focus-visible {
    opacity: 0.8;
  }
}
@media only screen and (width >= 1024px) {
  .apheader .headerSearchKeyword__title {
    display: grid;
    grid-template-columns: 1fr auto;
    column-gap: 15px;
    align-items: center;
    margin-right: 22px;
    font-size: 14px;
    letter-spacing: 0;
  }
  .apheader .headerSearchKeyword__title::after {
    display: inline-block;
    width: 1px;
    height: 24px;
    content: "";
    background-color: var(--color-gray);
  }
}
@media screen and (width <= 1023px) {
  .apheader .headerNavWrap {
    background-color: var(--color-white);
  }
}
@media only screen and (width >= 1024px) {
  .apheader .headerNavWrap {
    width: auto;
    margin-right: 0;
  }
}
@media only screen and (width >= 1024px) {
  .apheader .snsLeads {
    display: none;
  }
}
@media only screen and (width >= 1024px) {
  .apheader .headerNav {
    flex-wrap: nowrap;
  }
}
@media only screen and (width >= 1024px) {
  .apheader .headerMainNav .mainNav {
    gap: 0 min(58px, 3.0208333333vw);
  }
}
.apheader .headerMainNav .mainNav__link:focus-visible {
  color: #3c51b2;
  font-weight: bold;
}
@media only screen and (width >= 1024px) {
  .apheader .sns--header .snsList {
    gap: 0 min(25px, 1.3020833333vw);
  }
}
.apheader .sns--header .snsList__link:focus-visible {
  opacity: 0.5;
}
@media screen and (width <= 1023px) {
  .apheader .snsListWrap.sns--header {
    padding-left: 22px;
    padding-right: 16px;
  }
}
.apheader .acdArea {
  top: 18px;
}

/* SiteFooter.scss */

.apfooter {
  position: relative;
  padding: 52px 3.8461538462% 50px;
  padding-top: 52px;
  padding-bottom: 115px;
}
@media only screen and (width >= 1024px) {
  .apfooter {
    padding-top: 100px;
    padding-bottom: 270px;
  }
}

.apfooterUpper {
  display: grid;
  grid-template-columns: auto;
  row-gap: 33px;
}
@media only screen and (width >= 1024px) {
  .apfooterUpper {
    grid-template-columns: 35.7142857143% 1fr 19.1071428571%;
    align-items: center;
  }
}

.apfooterBottom {
  display: grid;
}
@media only screen and (width >= 1024px) {
  .apfooterBottom {
    grid-template-columns: 35.7142857143% 1fr auto;
    margin-top: 130px;
  }
}

.apfooterLogo {
  width: 152px;
}
@media only screen and (width >= 1024px) {
  .apfooterLogo {
    align-self: end;
    width: 205px;
    margin-top: 4px;
  }
}
.apfooterLogo > a {
  display: block;
}
.apfooterLogo > a:focus-visible {
  opacity: 0.5;
}
@media (any-hover: hover) {
  .apfooterLogo > a:hover {
    opacity: 0.5;
  }
}
.apfooterLogo img {
  width: 100%;
  height: auto;
}

.apfooterNav .footerNav__list {
  display: flex;
  column-gap: 80px;
}
.apfooterNav .footerNav__link {
  font-size: 14px;
  font-weight: 600;
  line-height: 2;
}
@media only screen and (width >= 1024px) {
  .apfooterNav .footerNav__link {
    font-size: 16px;
  }
}
.apfooterNav .footerNav__link:focus-visible {
  color: #3c51b2;
}
@media (any-hover: hover) {
  .apfooterNav .footerNav__link:hover {
    color: #3c51b2;
  }
}

.apfooterBanner {
  width: 220px;
}
@media only screen and (width >= 1024px) {
  .apfooterBanner {
    width: auto;
  }
}
.apfooterBanner .footerBnrWrap a {
  display: block;
}
.apfooterBanner .footerBnrWrap a:focus-visible {
  opacity: 0.5;
}
@media (any-hover: hover) {
  .apfooterBanner .footerBnrWrap a:hover {
    opacity: 0.5;
  }
}
.apfooterBanner .footerBnrWrap img {
  width: 100%;
  height: auto;
}

@media screen and (width <= 1023px) {
  .apfooterSubNav {
    grid-row: 1/2;
    margin-top: 54px;
  }
}
.apfooterSubNav .footerSubNav__list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
}
@media only screen and (width >= 1024px) {
  .apfooterSubNav .footerSubNav__list {
    column-gap: 80px;
  }
}
.apfooterSubNav .footerSubNav__link {
  font-size: 12px;
  font-weight: 300;
  line-height: 2;
  color: var(--color-gray);
}
@media only screen and (width >= 1024px) {
  .apfooterSubNav .footerSubNav__link {
    font-size: 14px;
  }
}
.apfooterSubNav .footerSubNav__link .icon {
  aspect-ratio: 12.42/10.43;
  display: inline-block;
  margin-left: 5px;
  width: 12px;
}
.apfooterSubNav .footerSubNav__link:focus-visible {
  color: #3c51b2;
}
.apfooterSubNav .footerSubNav__link:focus-visible .icon rect, .apfooterSubNav .footerSubNav__link:focus-visible .icon path {
  stroke: #3c51b2;
}
@media (any-hover: hover) {
  .apfooterSubNav .footerSubNav__link:hover {
    color: #3c51b2;
  }
  .apfooterSubNav .footerSubNav__link:hover .icon rect, .apfooterSubNav .footerSubNav__link:hover .icon path {
    stroke: #3c51b2;
  }
}

@media screen and (width <= 1023px) {
  .apfooterSns {
    grid-row: 2/3;
    margin-top: 37px;
  }
}
@media only screen and (width >= 1024px) {
  .apfooterSns {
    margin-left: 8px;
  }
}

.sns--footer .snsList {
  display: flex;
  column-gap: 30px;
}

.sns--footer .snsList__list {
  width: 28px;
}
.sns--footer .snsList__list a:focus-visible {
  opacity: 0.5;
}
@media (any-hover: hover) {
  .sns--footer .snsList__list a:hover {
    opacity: 0.5;
  }
}

@media screen and (width <= 1023px) {
  .apfooterCopyright {
    margin-top: 20px;
    justify-self: flex-end;
  }
}
@media only screen and (width >= 1024px) {
  .apfooterCopyright {
    align-self: flex-end;
  }
}

.avexCopyright {
  font-size: 14px;
  font-weight: 300;
  line-height: 1;
}

/* PageTop.scss */

.pageTop {
  position: absolute;
  right: 3.8461538462%;
  bottom: 35px;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  cursor: pointer;
  border: 2px solid var(--color-black);
  border-radius: 50%;
}
@media only screen and (width >= 1024px) {
  .pageTop {
    right: min(120px, 6.25vw);
    bottom: 100px;
    width: 81px;
    height: 81px;
  }
}
.pageTop svg {
  width: 43.75%;
}
@media (any-hover: hover) {
  .pageTop:hover {
    background-color: var(--color-black);
  }
  .pageTop:hover svg path {
    stroke: var(--color-white);
  }
}
.pageTop:focus-visible {
  background-color: var(--color-black);
}
.pageTop:focus-visible svg path {
  stroke: var(--color-white);
}

/* Loading.scss */

.skipButton {
  font-family: presicav, sans-serif;
}

header, main, footer, .skiptranslate {
  opacity: 1;
  visibility: visible;
}

.loading {
  display: block;
  height: 100%;
  position: fixed;
  width: 100%;
  z-index: 999;
  transition-duration: 0.5s;
  transition-property: opacity;
  transition-timing-function: ease-out;
  inset: 0;
  background-image: url("/assets/images/bg/bg_gray.png");
}
.loading::before {
  background-color: var(--color-deepblue);
  content: "";
  left: 0;
  height: 6px;
  top: 0;
  position: absolute;
  width: 100%;
}
@media only screen and (width >= 1024px) {
  .loading::before {
    height: 16px;
  }
}

.loading__logo {
  aspect-ratio: 517/116;
  overflow: hidden;
  position: absolute;
  margin: auto;
  inset: 0;
  width: 51.2820512821vw;
}
@media only screen and (width >= 1024px) {
  .loading__logo {
    width: min(518px, 26.9791666667vw);
  }
}
.loading__logo > img {
  height: auto;
  width: 100%;
}

@keyframes splash-top-blue-bar {
  from {
    transform: scaleX(0);
  }
  to {
    transform: scaleX(100%);
  }
}
.loading.loaded::before {
  transform-origin: left;
  animation-name: splash-top-blue-bar;
  animation-duration: 2.5s;
  animation-fill-mode: forwards;
}

@keyframes splash-logo-slide-down {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(101%);
  }
}
.loading.loaded .loading__logo > img {
  animation-name: splash-logo-slide-down;
  animation-duration: 1s;
  animation-delay: 2.5s;
  animation-fill-mode: forwards;
}

.loading.js-loadingfinished {
  pointer-events: none;
  opacity: 0;
  visibility: hidden;
}

.loading__skipbtn {
  bottom: 50px;
  right: 10.2564102564%;
  position: absolute;
}
@media only screen and (width >= 1024px) {
  .loading__skipbtn {
    bottom: 65px;
    right: 100px;
  }
}

.skipButton {
  align-items: center;
  color: var(--color-black);
  cursor: pointer;
  column-gap: 6px;
  background-color: transparent;
  display: flex;
  font-size: 20px;
  letter-spacing: 0.05em;
  padding: 0;
}
@media only screen and (width >= 1024px) {
  .skipButton {
    column-gap: 8px;
    font-size: 30px;
  }
}
.skipButton .icon {
  height: 12px;
  margin-top: 4px;
  width: 12px;
}
@media only screen and (width >= 1024px) {
  .skipButton .icon {
    height: 19px;
    margin-top: 5px;
    width: 18px;
  }
}
.skipButton .icon svg {
  display: block;
  height: auto;
  width: 100%;
}
.skipButton:focus-visible {
  opacity: 0.5;
}
@media (any-hover: hover) {
  .skipButton:hover {
    opacity: 0.5;
  }
}

.loading__tagline {
  aspect-ratio: 516/60;
  overflow: hidden;
  position: absolute;
  margin: auto;
  inset: 0;
  width: 51.2820512821vw;
}
@media only screen and (width >= 1024px) {
  .loading__tagline {
    width: min(516px, 26.875vw);
  }
}
.loading__tagline img {
  height: auto;
  width: 100%;
}

.loading__innercircle {
  aspect-ratio: 1;
  position: absolute;
  margin: auto;
  inset: 0;
  width: 53.8461538462vw;
}
@media only screen and (width >= 1024px) {
  .loading__innercircle {
    width: min(600px, 31.25vw);
  }
}
.loading__innercircle img {
  height: auto;
  width: 100%;
}

.loading__outercircle {
  aspect-ratio: 1;
  position: absolute;
  margin: auto;
  inset: 0;
  width: 80.5128205128vw;
}
@media only screen and (width >= 1024px) {
  .loading__outercircle {
    width: min(960px, 50vw);
  }
}
.loading__outercircle img {
  height: auto;
  width: 100%;
}

.loading__animation .loading__skipbtn, .loading__animation .loading__tagline, .loading__animation .loading__innercircle, .loading__animation .loading__outercircle {
  visibility: hidden;
}
.loading__animation.animation-start .loading__skipbtn {
  visibility: visible;
}
.loading__animation.animation-start .loading__tagline {
  visibility: visible;
}
.loading__animation.animation-start .loading__tagline > img {
  animation: updown 6s ease-in-out forwards;
}
.loading__animation.animation-start .loading__innercircle {
  visibility: visible;
  animation: spin-shrink-expand-inner 6s ease-in-out forwards;
  transition-delay: 0.5s;
}
.loading__animation.animation-start .loading__outercircle {
  visibility: visible;
  animation: spin-shrink-expand-outer 6s ease-in-out forwards;
}

@keyframes spin-shrink-expand-outer {
  0% {
    transform: rotate(0deg) scale(0.8);
    opacity: 0;
  }
  41% {
    transform: rotate(360deg) scale(1.16);
    opacity: 1;
  }
  80% {
    transform: rotate(350deg) scale(1.1);
    opacity: 1;
  }
  86% {
    transform: rotate(365deg) scale(1.1);
    opacity: 1;
  }
  100% {
    transform: rotate(0deg) scale(3);
    opacity: 0;
  }
}
@keyframes spin-shrink-expand-inner {
  0% {
    transform: rotate(0deg) scale(0.75);
    opacity: 0;
  }
  41% {
    transform: rotate(-360deg) scale(1.3);
    opacity: 1;
  }
  80% {
    transform: rotate(-350deg) scale(1.2);
    opacity: 1;
  }
  86% {
    transform: rotate(-345deg) scale(1.2);
    opacity: 1;
  }
  88% {
    opacity: 1;
  }
  93% {
    transform: rotate(0deg) scale(2.1);
    opacity: 0;
  }
  100% {
    transform: rotate(0deg) scale(2.1);
    opacity: 0;
  }
}
@keyframes updown {
  0% {
    transform: translateY(100%);
  }
  39% {
    transform: translateY(100%);
  }
  47% {
    transform: translateY(0);
  }
  65% {
    transform: translateY(0);
  }
  80% {
    transform: translateY(100%);
  }
  100% {
    transform: translateY(100%);
  }
}
