@charset "UTF-8";
/*-----------------------

         COMMON

-----------------------*/
@media screen and (min-width: 1921px) {
    .mv img {
        width: 100%;
    }
}
/* リセット */
.box {
    margin-bottom: 0;
    background-color: transparent;
    border: none;
    box-shadow: none;
}
.modal-open {
    overflow: visible;
}
/* リセットここまで */
html {
    font-size: 62.5%;
    /*scroll-behavior: smooth;*/
    overflow-x: hidden;
    overflow-y: scroll;
    /*※上記スタイル戻すとスクマネのモーダル系に不具合*/
}

html,
body {
    height: 100%;
}
p {
    margin: 0;
    text-align: justify;
}
a {
    text-decoration: none;
    color: inherit;
}
a:hover,
a:focus {
    opacity: 0.8;
    text-decoration: none;
    color: inherit;
}
img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}
input,
textarea,
select,
button {
    font-family: inherit;
}
input[type=text] {
    font-size: 16px;
    transform: scale(1.0);
}
select::placeholder {
    color: #b6b7b7;
}
.flex {
    display: flex;
}
.flex-c {
    display: flex;
    justify-content: center;
}
.flex-b {
    display: flex;
    justify-content: space-between;
}
.flex-e {
    display: flex;
    justify-content: flex-end;
}
.pc {
    display: block;
}
.sp {
    display: none;
}
.text-c {
    text-align: center;
}
.text-l {
    text-align: left;
}
.text-r {
    text-align: right;
}
.text-j {
    text-align: justify;
}
.f-400 {
    font-weight: 400;
}
.f-500 {
    font-weight: 500;
}
.f-700 {
    font-weight: 700;
}
.color-main {
    color: var(--mainColor);
}
.color-sub {
    color: var(--subColor);
}
.color-accent {
    color: var(--accentColor);
}
.color-base {
    color: var(--baseColor);
}
.color-w {
    color: var(--colorW);
}
.bg-main {
    background: var(--mainColor);
}
.bg-sub {
    background: var(--subColor);
}
.bg-accent {
    background: var(--accentColor);
}
.wide {
    position: relative;
    width: 100vw;
    left: 50%;
    transform: translateX(-50%);
}
.table-bordered span.required {
    background: var(--mainColor);
    color: var(--colorW) !important;
}
/* 段組 */
.contents2Wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 6rem;
}
.contents2Wrap > li,
.contents2Wrap > div {
    width: calc((100% - 6rem) / 2);
}
.contents3Wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem;
}
.contents3Wrap > li,
.contents3Wrap > div {
    width: calc((100% - 8rem) / 3);
}
.contents4Wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 4rem 3rem;
}
.contents4Wrap > li,
.contents4Wrap > div {
    width: calc((100% - 9rem) / 4);
}
/* iOSでのデフォルトスタイルをリセット */
input[type="submit"],
input[type="button"] {
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}
input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}
input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}
input,
button,
textarea,
select,
.entry input[type="url"],
input[type="email"],
.entry input[type="text"] {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    border-radius: 0;
}
