@charset "utf-8";

/* reset style
==================================================== */
html { overflow-y: scroll; font-size: 62.5%; -ms-text-size-adjust: 100%; -webkit-text-size-adjust: 100%; }
body, div, dl, dt, dd, ul, ol, li, h1, h2, h3, h4, h5, h6, pre, code, form, fieldset, legend, input, textarea, p, blockquote, th, td, figure { margin: 0; padding: 0; }
* { box-sizing: border-box; }
table { border-collapse: collapse; border-spacing: 0; }
fieldset, img { border: 0; }
img { vertical-align: middle; }
address, caption, cite, code, dfn, em, th, var { font-style: normal; font-weight: normal; }
li { list-style: none; }
caption, th { text-align: left; }
h1, h2, h3, h4, h5, h6 { font-weight: normal; }
q:before, q:after { content: ''; }
abbr, acronym { border: 0; font-variant: normal; }
sup { vertical-align: text-top; }
sub { vertical-align: text-bottom; }
input, textarea, select { font-family: inherit; font-weight: inherit; }
input, select { vertical-align: middle; }

/* iOSでのデフォルトスタイルをリセット */
input[type="submit"], input[type="button"] { border-radius: 0; -webkit-box-sizing: content-box; -webkit-appearance: button; appearance: button; border: none; box-sizing: border-box; cursor: pointer; }
a,
button {
  -webkit-tap-highlight-color: rgba(0,0,0,0);
}
button{
    appearance: none;
    -webkit-appearance: none;
    -webkit-tap-highlight-color: transparent;
    border: none;
    touch-action: manipulation;
}


/*  基本
/* ==================================================== */
html,
body {
    width: 100%;
    height: 100%;
    font-size: 62.5%;
}
body {
    position: relative;
    color: #000;
    font-family: "Noto Sans JP","Noto Sans CJK JP","Hiragino Kaku Gothic Pro", "ヒラギノ角ゴ Pro W3", "Helvetica Neue", Arial, Meiryo, "メイリオ", "ＭＳ Ｐゴシック", sans-serif;
    /* font-family: sans-serif; */
    font-size: 1.5rem;
    -webkit-font-smoothing: antialiased;
    line-height: 1.6;
}
main {
    display: block;
    background-color: #fff;
}
main figure {
    margin: 0;
}
a {
    color: inherit;
    text-decoration: none;
    transition: opacity 0.3s ease;
}
@media (hover: hover) {
  a:hover {
    opacity: 0.7;
    transition: opacity 0.3s ease;
  }
}
img {
    width: 100%;
    height: auto;
}
sup {
    font-size: 1.0rem;
    vertical-align: top;
    position: relative;
    top: 1px;
}
sub {
    font-size: 70%;
    vertical-align: bottom;
    position: relative;
    bottom: -0.1em;
}
.text_right{
    text-align: right;
}
.link_line{
    text-decoration: underline;
    font-weight: bold;
    color: var(--color-blue);
}
@media screen and (max-width:767px) {
    .text_right{
    text-align: left;
}
}

/*  共通（common）クラス
/* ==================================================== */
.flex {
    display: flex;
}
.c-sp-only {
    display: none !important;
}
.clear {
    clear: both !important;
}
.c-justify {
    text-align: justify;
    text-justify: inter-ideograph;
    text-justify: inter-character;
}
@media screen and (max-width:767px) {
    .flex {
        display: block;
    }
    .c-pc-only {
        display: none !important;
    }
    .c-sp-only {
        display: inline-block !important;
    }
}

.inner {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 clamp(20px, 2.778vw, 40px);
}

/* ボタン */
.btn {
  position: relative;
  display: block;
  padding: 18px 32px;
  margin:0 auto;
  max-width: 400px;
  width: 100%;
  background: var(--color-blue);
  border:1px solid #fff;
  color: #fff;
  text-decoration: none;
  text-align: center;
  font-weight: bold;
  transition: all ease 0.3s;
}
@media (hover: hover) {
.btn:hover {
    background: #fff;
    color: var(--color-blue);
    border:1px solid var(--color-blue);
    opacity: 1 !important;
    transition: all ease 0.3s;
}
}
.btn::after {
    content: "";
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    width: 15px;
    height: 8px;
    background: url(../img/arrow_white.svg) no-repeat;
    background-size: contain;
}
.btn::before {
    content: "";
    position: absolute;
    right: 0;
    top: 0;
    width: 42px;
    height: 100%;
    background: url(../img/bg_button.svg) no-repeat;
    background-size: cover;
    z-index: 0;
}
@media (hover: hover) {
.btn:hover::after  {
    background: url(../img/arrow_blue.svg) no-repeat;
    background-size: contain;
}
}

/* header
/* ==================================================== */
header .logo{
    position: absolute;
    top:36px;
    left:49px;
    width: clamp(96px, 10.833vw, 156px);
    z-index: 10;
}
@media screen and (max-width:767px) {
    header .logo{
        top:16px;
        left:18px;
    }
}

/* footer
/* ==================================================== */
footer {
    position: relative;
    z-index: 999;
}
footer .footer_note{
    padding:clamp(20px, 4.167vw, 60px) 0 clamp(20px, 2.778vw, 40px);
    font-size: 1.2rem;
}
footer .footer_note h5{
    margin-bottom: 10px;
    font-weight: bold;
    font-size: 1.5rem;
}
footer .footer_note p:first-of-type{
    margin-bottom: 10px;
}
footer .footer_note .footer_link{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap:4%;
    padding-top:clamp(20px, 2.778vw, 40px);
    font-weight: bold;
    font-size: 14px;
    color:#1D34A2;
}
footer .footer_note .footer_link li a:before{
    content: '';
    display: inline-block;
    margin-right: 10px;
    width: 15px;
    height: 10px;
    background: url(../img/arrow_blue.svg) no-repeat;
    background-size: contain;
    background-position: center;
}
footer .footer_box{
    background-color: #EDEDED;
    padding:clamp(32px, 3.333vw, 48px) 0 clamp(23px, 2.361vw, 34px);
    font-size: 1.3rem;
    text-align: center;
}
footer .footer_box img{
    margin-bottom: 19px;
    max-width: 330px;
    width: 90%;
}
footer .copyright {
    background-color: #000;
    padding:27px 0;
    color:#fff;
    font-size: 1.1rem;
    text-align: center;
}
footer .pagetop {
    position: fixed;
    bottom: 30px;
    right: 30px;
    opacity: 0;
    transform: translateY(16px);
    transition: opacity .25s ease, transform .25s ease;
    pointer-events: none;
}
footer .pagetop.is-visible{
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
footer .pagetop a {
    display: inline-block;
    position: relative;
    width: 52px;
    height: 52px;
    padding: 20px 16px 0;
    background-color: #fff;
    border:2px solid #8B001F;
    z-index: 3;
    transition: all ease 0.3s;
}
footer .pagetop a:after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    border-top: solid 2px #8B001F;
    border-right: solid 2px #8B001F;
    -webkit-transform: rotate(315deg);
    transform: rotate(315deg);
}
@media (hover: hover) {
footer .pagetop a:hover {
    opacity: 1;
    background-color: #8B001F;
}
footer .pagetop a:hover:after {
    border-top: solid 2px #fff;
    border-right: solid 2px #fff;
}
}
@media screen and (max-width:1024px) {
    footer .pagetop {
        bottom: 15px;
        right: 20px;
    }
    footer .pagetop a {
        width: 48px;
        height: 48px;
        padding: 19px 14px 0;
}
    footer .footer_note .footer_link{
        display: block;
        padding-left:25px;
        text-indent:-25px;
    }
}
@media screen and (max-width:767px) {
.footer_box p{
    text-align: left;
}
}

/* 汎用
/* ==================================================== */
.mgB10{
    margin-bottom: 10px !important;
}

/* 印刷用スタイル
/* ==================================================== */
@media print {
    html,
    html body {
        *zoom: .65;
    }
    body {
        width: 960px;
    }
}