@charset "utf-8";

:root {
    --color-main: #003da7;
    --color-sub: #e55300;
    --color-paresub: var(--color-paresub-accent);
    --color-grayout: #B6B6B6;
    --color-error: #ff0000;
    --color-server-error: #ff6c00;
    --focus-shadow: 0 0 0 0.3rem rgba(38, 175, 255, 0.6);
    --content-width: 100rem;
    --content-width-sm: 64rem;
    --input-height: 4.4rem;
    --vh: 1vh;
}

@media only screen and (max-width: 768px) {
    :root {
        --content-width: calc(100% - 3rem);
        --content-width-sm: calc(100% - 3rem);
    }
}

/* reset
-----------------------------------------------------------*/
*,
*::before,
*::after {
    box-sizing: border-box;
    word-wrap: break-word;
}

* {
    margin: 0;
    padding: 0;
    scroll-behavior: auto;
    scroll-padding-top: 0;
}

html {
    width: 100%;
    background: inherit;
    color: inherit;
    word-break: normal;
    vertical-align: baseline;
    -webkit-tap-highlight-color: transparent;
    font-size: 10px;
}

@media only screen and (max-width: 768px) {
    html {
        font-size: calc(10 / 375 * 100vw);
    }
}

body {
    display: grid;
    grid-template-rows: auto 1fr auto;
    width: 100%;
    min-width: 104rem;
    height: 100%;
    min-height: 100vh;
    margin: 0;
    padding: 0;
    background: #fff;
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-style: normal;
    font-size: 1.4rem;
    text-align: left;
    line-height: 1.5;
    color: #333;
    -webkit-font-smoothing: antialiased;
}

@media only screen and (max-width: 768px) {
    body {
        min-width: 100%;
    }
}

/* ============ block ============ */
main {
    display: block;
    width: 100%;
    margin: 0 auto;
    overflow: hidden;
}

header,
footer,
article,
section {
    display: block;
    width: 100%;
}

hr {
    width: 100%;
    overflow: visible;
    border: 0;
    background-color: currentColor;
    color: inherit;
}

/* ============ text ============ */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-weight: bold;
    font-size: inherit;
    line-height: 1.5;
}

p,
span {
    font-size: 1.6rem;
    line-height: 1.5;
}

span {
    display: inline-block;
    font-weight: inherit;
}

strong {
    display: inline-block;
    font-weight: bold;
    font-size: inherit;
    line-height: 1.5;
}

label {
    display: inline-block;
    line-height: 1.5;
    cursor: pointer;
}

a {
    transition-duration: 0.3s;
    display: inline-block;
    background-color: transparent;
    color: var(--color-accent4);
    text-decoration: none;
    line-height: 1.5;
    cursor: pointer;
    touch-action: manipulation;
}

@media (any-hover: hover) {
    a:hover {
        color: var(--color-accent5);
        text-decoration: none;
    }

    a:focus,
    a:focus-visible {
        box-shadow: var(--focus-shadow);
        outline: none;
    }
}

a:not([href]):not([class]),
a:not([href]):not([class]):hover {
    color: inherit;
    text-decoration: none;
    cursor: default;
}

/* ============ list ============ */
ol,
ul,
dl,
ol li,
ul li {
    list-style: none;
    line-height: 1.5;
}

/* ============ table ============ */
table {
    border-color: #d9d9d9;
    text-indent: 0;
    border-collapse: collapse;
    caption-side: bottom;
}

table th {
    text-align: left;
}

table thead,
table tbody,
table tfoot,
table tr,
table td,
table th {
    border-width: 0;
    border-style: solid;
    border-color: inherit;
    line-height: 1.5;
}

/* ============ input ============ */
input,
select,
textarea {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 1rem;
    box-shadow: none;
    background-color: white;
    border: 0.1rem solid #e0e0e0;
    border-radius: 0.5rem;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    outline: none;
    resize: none;
    touch-action: manipulation;
}

input[type="text"],
input[type="tel"],
input[type="url"],
input[type="email"],
input[type="number"],
input[type="password"] {
    display: inline-block;
    width: 100%;
}

input[type="text"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
textarea:focus {
    box-shadow: inset var(--focus-shadow);
}

input[type="checkbox"] {
    cursor: pointer;
}

textarea {
    width: 100%;
    height: 100%;
    min-height: 10rem;
    vertical-align: bottom;
}

.blankColor:-moz-placeholder-shown {
    background-color: #f6f6f6;
}

.blankColor:placeholder-shown {
    background-color: #f6f6f6;
}

.blankColor:-moz-placeholder-shown {
    background-color: #f6f6f6;
}

input[type="text"]::-moz-placeholder,
input[type="tel"]::-moz-placeholder,
input[type="url"]::-moz-placeholder,
input[type="email"]::-moz-placeholder,
input[type="number"]::-moz-placeholder,
input[type="password"]::-moz-placeholder,
input::-moz-placeholder {
    opacity: 1;
    color: #b6b6b6;
}

input::placeholder {
    opacity: 1;
    color: #b6b6b6;
}

textarea::-moz-placeholder {
    opacity: 1;
    color: #b6b6b6;
}

textarea::placeholder {
    opacity: 1;
    color: #b6b6b6;
}

select {
    text-transform: none;
    word-wrap: normal;
    cursor: pointer;
    -moz-appearance: none;
    appearance: none;
}

@media only screen and (max-width: 768px) {
    input[type="text"]:focus,
    input[type="tel"]:focus,
    input[type="url"]:focus,
    input[type="email"]:focus,
    input[type="number"]:focus,
    input[type="password"]:focus,
    textarea:focus {
        box-shadow: none;
    }
}

/* ============ button ============ */
button {
    width: 100%;
    max-width: 100%;
    height: auto;
    padding: 1rem;
    box-shadow: none;
    background-color: white;
    border: 0.1rem solid #e0e0e0;
    border-radius: 0.5rem;
    color: inherit;
    font-size: inherit;
    font-family: inherit;
    line-height: inherit;
    letter-spacing: inherit;
    outline: none;
    resize: none;
    touch-action: manipulation;
}

button,
[type="button"],
[type="reset"],
[type="submit"] {
    border: none;
    border-radius: 0;
    text-transform: none;
    outline: none;
    transition-duration: 0.3s;
    -moz-appearance: none;
    appearance: none;
}

button:focus,
[type="button"]:focus,
[type="reset"]:focus,
[type="submit"]:focus {
    box-shadow: inset var(--focus-shadow);
}

@media (any-hover: hover) {
    button:hover,
    [type="button"]:hover,
    [type="reset"]:hover,
    [type="submit"]:hover,
    button:active,
    [type="button"]:active,
    [type="reset"]:active,
    [type="submit"]:active,
    button:focus,
    [type="button"]:focus,
    [type="reset"]:focus,
    [type="submit"]:focus {
        opacity: 1;
    }

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

/* ============ img ============ */
img {
    display: block;
    max-width: 100%;
    height: auto;
    border: 0;
}

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

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

.innerWide {
    width: var(--content-width);
    margin: 0 auto;
}

.innerWide-sm {
    width: var(--content-width-sm);
    margin: 0 auto;
}

.text-red {
    color: var(--color-error);
}

.text-bold {
    font-weight: bold;
}

/* ============ title ============ */
.title_underLine {
    position: relative;
    margin: 4rem 0 3.5rem;
    font-size: 3.2rem;
    font-weight: bold;
    line-height: 1.5;
    text-align: center;
    color: var(--color-main);
}

.title_underLine::before,
.title_underLine::after {
    content: "";
    display: inline-block;
    position: absolute;
    bottom: -0.7rem;
    left: 50%;
    width: 2rem;
    height: 0.2rem;
}

.title_underLine::before {
    background-color: var(--color-main);
    border-top-left-radius: 0.1rem;
    border-bottom-left-radius: 0.1rem;
    transform: translate(-100%, 0);
}

.title_underLine::after {
    background-color: var(--color-sub);
    border-top-right-radius: 0.1rem;
    border-bottom-right-radius: 0.1rem;
}

@media only screen and (max-width: 768px) {
    .title_underLine {
        margin: 3rem 0 2.5rem;
        font-size: 2.4rem;
    }
    .title_underLine::before,
    .title_underLine::after {
        width: 1.5rem;
    }
}

.title_sideline {
    position: relative;
    padding-left: 3.8rem;
    font-size: 2.4rem;
    font-weight: bold;
}

.title_sideline::before {
    content: "";
    display: inline-block;
    position: absolute;
    top: 1.7rem;
    left: 0;
    width: 2.8rem;
    height: 0.3rem;
    background-color: var(--color-main);
    border-radius: 1.4rem;
}

@media only screen and (max-width: 768px) {
    .title_sideline {
        font-size: 2rem;
    }

    .title_sideline::before {
        top: 1.4rem;
    }
}

/* ============ button ============ */
.btn_wrap {
    display: flex;
    justify-content: center;
}

.btn {
    position: relative;
    display: inline-block;
    width: 100%;
    max-width: 30rem;
    padding: 0 2rem;
    background-color: white;
    border: 0.1rem solid #b8b8b8;
    border-radius: 1rem;
    font-size: 1.6rem;
    font-weight: bold;
    text-align: center;
    text-decoration: none;
    line-height: 4.8rem;
    color: #333;
    outline: none;
}

.btn::before,
.btn::after {
    content: "";
    position: absolute;
    top: 50%;
    display: inline-block;
    transform: translate(0, -50%);
    background-position: center center;
    background-repeat: no-repeat;
    transition-duration: 0.3s;
}

.btn::before {
    left: 2rem;
}

.btn::after {
    right: 2rem;
}

.btn:focus,
a.btn:focus {
    box-shadow: inset var(--focus-shadow);
}

@media only screen and (max-width: 768px) {
    button:focus,
    a.btn:focus,
    [type="button"]:focus,
    [type="reset"]:focus,
    [type="submit"]:focus {
        box-shadow: none;
    }
}

/* 背景色 */
.btn.-bg-blue {
    background-color: var(--color-main);
    border-color: var(--color-accent2);
    color: white;
}

.btn.-bg-orange {
    background-color: var(--color-sub);
    border-color: var(--color-accent-sub1);
    color: white;
}

.btn.-bg-paresub {
    background-color: var(--color-paresub);
    border-color: var(--color-paresub-accent);
    color: white;
}

.btn.-bg-grayout {
    background-color: var(--color-grayout);
    border-color: #B6B6B6;
    color: #333333;
}

/* ボーダー */
.btn.-border-blue {
    border-color: var(--color-main);
}

.btn.-border-orange {
    border-color: var(--color-sub);
}

/* アイコン */
.arrow {
    position: relative;
    display: inline-block;
}
.arrow:not(.-left) {
    padding-right: 1.4rem;
}

.arrow.-left {
    padding-left: 1.4rem;
}

.arrow::after {
    content: "";
    width: 0.8rem;
    height: 0.8rem;
    border: 0;
    position: absolute;
    top: 0.1rem;
    bottom: 0;
    margin: auto;
    transition-duration: 0.3s;
}

.arrow:not(.-left)::after {
    border-top: solid 0.2rem var(--color-accent4);
    border-right: solid 0.2rem var(--color-accent4);
    transform: rotate(45deg);
    right: 0;
}

.arrow.-left::after {
    border-top: solid 0.2rem var(--color-accent4);
    border-left: solid 0.2rem var(--color-accent4);
    transform: rotate(-45deg);
    left: 0;
}

.arrow:not(.-left):hover::after {
    border-top: solid 0.2rem var(--color-accent5);
    border-right: solid 0.2rem var(--color-accent5);
    right: -0.5rem;
}

.arrow.-left:hover::after {
    border-top: solid 0.2rem var(--color-accent5);
    border-left: solid 0.2rem var(--color-accent5);
    left: -0.5rem;
}

.btn.-left-arrow::before {
    width: 0.8rem;
    height: 1.2rem;
    background-image: url("/img/ookura/left-arrow.svg");
}

.btn.-right-arrow::after {
    width: 0.8rem;
    height: 1.2rem;
    background-image: url("/img/ookura/right-arrow-main.svg");
}

.btn.-bg-blue.-right-arrow::after,
.btn.-bg-orange.-right-arrow::after {
    background-image: url("/img/ookura/right-arrow-white.svg");
}

.btn.-right-link::after {
    width: 2.4rem;
    height: 2.4rem;
    background-image: url("/img/ookura/right-link-main.svg");
}

.btn.-right-in::after {
    width: 2.4rem;
    height: 2.4rem;
    background-image: url("/img/ookura/right-in-white.svg");
    transition-duration: 0.2s;
}

@media (any-hover: hover) {
    .btn:hover {
        background-color: #b8b8b8;
        color: #333;
        opacity: 1;
    }

    .btn.-bg-blue:hover {
        background-color: white;
        color: var(--color-main);
    }

    .btn.-bg-orange:hover {
        background-color: var(--color-accent-sub1);
        color: white;
        opacity: 0.8;
    }

    .btn.-border-blue:hover,
    .btn.-border-orange:hover {
        background-color: white;
    }

    .btn.-left-arrow:hover::before {
        left: 1.5rem;
    }

    .btn.-right-arrow:hover::after,
    .btn.-bg-blue.-right-arrow:hover::after,
    .btn.-bg-orange.-right-arrow:hover::after,
    .btn.-right-in:hover::after {
        right: 1.5rem;
    }

    .btn.-bg-blue.-right-arrow:hover::after {
        background-image: url("/img/ookura/right-arrow-main.svg");
    }

    .btn.-right-in:hover::after {
        width: 2.6rem;
        background-image: url("/img/ookura/right-in-white-hover.svg");
    }
}

@media only screen and (max-width: 768px) {
    .btn {
        padding: 0 1.8rem;
    }

    .btn::before {
        left: 1.8rem;
    }

    .btn::after {
        right: 1.8rem;
    }
}

/* ============ carousel ============ */
.splide__arrow {
    background: transparent;
    opacity: 1;
    outline: none;
}

.splide__arrow,
.splide__arrow img,
.splide__arrow svg {
    width: 4rem;
    height: 4rem;
}

.splide__arrow:disabled {
    display: none;
}

.splide__arrow.splide__arrow--prev {
    left: -2rem;
}

.splide__arrow.splide__arrow--next {
    right: -2rem;
}

@media only screen and (max-width: 768px) {
    .splide__arrow,
    .splide__arrow img,
    .splide__arrow svg {
        width: 3rem;
        height: 3rem;
    }

    .splide__arrow.splide__arrow--prev {
        left: -1.5rem;
    }

    .splide__arrow.splide__arrow--next {
        right: -1.5rem;
    }
}

/* ============ pageList ============ */
.ecPager {
    padding-top: 4rem;
}

ul.pageList {
    display: flex;
    justify-content: center;
}

ul.pageList li {
    align-items: center;
    background-color: #fff;
    border-radius: 0.5rem;
    box-shadow: 0.4rem 0.4rem 0.8rem 0 #dadde3;
    display: flex;
    justify-content: center;
    height: 3.2rem;
    width: 3.2rem;
    font-size: 1.4rem;
}

ul.pageList li + li {
    margin-left: 1rem;
}

ul.pageList li a {
    text-decoration: none;
    align-items: center;
    display: flex;
    justify-content: center;
    width: 100%;
    height: 100%;
    font-size: 1.4rem;
    color: var(--color-main);
}

ul.pageList li.next,
ul.pageList li.prev {
    box-shadow: none;
    background-color: transparent;
    position: relative;
}

ul.pageList li.next {
    margin-left: 2rem;
}

ul.pageList li.next::after {
    content: "";
    display: inline-block;
    width: 0.7rem;
    height: 0.7rem;
    border: 0.2rem solid var(--color-main);
    border-left: none;
    border-top: none;
    transform: translateY(-50%) rotate(-45deg);
    top: 50%;
    right: 50%;
    position: absolute;
    pointer-events: none;
}

ul.pageList li.prev {
    margin-right: 2rem;
}

ul.pageList li.prev + li {
    margin-left: 0;
}

ul.pageList li.prev::after {
    content: "";
    display: inline-block;
    width: 0.7rem;
    height: 0.7rem;
    border: 0.2rem solid var(--color-main);
    border-left: none;
    border-top: none;
    transform: translateY(-50%) rotate(135deg);
    top: 50%;
    left: 50%;
    position: absolute;
    pointer-events: none;
}

ul.pageList li.active {
    background-color: var(--color-main);
    box-shadow: none;
    color: #fff;
}

ul.pageList li.leader {
    box-shadow: none;
    background: transparent;
}

@media only screen and (max-width: 768px) {
    ul.pageList li.prev::after {
        content: "";
        display: inline-block;
        width: calc(6 / 375 * 100vw);
        height: calc(6 / 375 * 100vw);
        border: 1px solid var(--color-main);
        border-left: none;
        border-top: none;
        transform: translateY(-50%) rotate(135deg);
        top: 50%;
        left: 50%;
        position: absolute;
    }

    ul.pageList li.next::after {
        content: '';
        display: inline-block;
        width: calc(6 / 375 * 100vw);
        height: calc(6 / 375 * 100vw);
        border: 1px solid var(--color-main);
        border-left: none;
        border-top: none;
        transform: translateY(-50%) rotate(-45deg);
        top: 50%;
        right: 50%;
        position: absolute;
    }
}

/* ============ form ============ */
.form_group {
    position: relative;
}

.form_group input,
.form_group textarea {
    font-size: 1.6rem;
}

.form_group input {
    height: var(--input-height);
}

.form_group2column + .form_group,
.form_group + .form_group2column,
.form_group + .form_group {
    margin-top: 1rem;
}

.form_group .is-invalid {
    border: 0.1rem solid var(--color-error) !important;
}

.form_group .form_title {
    display: inline-block;
    width: fit-content;
    font-size: 1.6rem;
    font-weight: bold;
}

.form_group .required {
    background: #ffe8da;
    border-radius: 5rem;
    color: var(--color-error);
    display: inline-block;
    padding: 0 1rem;
    margin-left: 0.5rem;
    font-size: 1.4rem;
    font-weight: bold;
}

.form_group .autoInput,
.form_group .optional {
    background: #f0f0f0;
    border-radius: 5rem;
    color: #333;
    display: inline-block;
    padding: 0 1rem;
    margin-left: 0.5rem;
    font-size: 1.4rem;
    font-weight: bold;
}

.form_group .form_text {
    margin-top: 0.6rem;
    font-size: 1.6rem;
}

.form_group .form_inner {
    margin-top: 0.6rem;
}

.form_group .form_error {
    margin-top: 0.7rem;
    font-size: 1.2rem;
}

.form_group .form_error {
    color: var(--color-error);
}

.form_group .form_error:empty {
    display: none;
}

.form_group .form_error span {
    display: inherit;
    font-size: inherit;
    line-height: inherit;
    color: inherit;
}

.form_group .form_notes {
    margin-top: 0.7rem;
}

.form_group .form_notes li {
    padding-left: 1em;
    font-size: 1.2rem;
    text-indent: -1em;
}

@media only screen and (max-width: 768px) {
    .form_group input,
    .form_group textarea {
        font-size: 1.4rem;
    }

    .form_group .form_title {
        font-size: 1.4rem;
    }

    .form_group .required {
        font-size: 1.2rem;
    }

    .form_group .form_text {
        margin-top: 0.65rem;
        font-size: 1.4rem;
    }

    .form_group .form_inner {
        margin-top: 0.65rem;
    }
}

/* ============ layout tool ============ */
.annotation_text,
.list_indent li {
    margin-left: 1em;
    text-indent: -1em;
}

.annotation_text a,
.list_indent li a,
.list_indent2 li a,
.list_indent1point6 li a {
    text-indent: 0;
}

.list_indent li > *,
.list_indent2 li > *,
.list_indent1point6 li > * {
    text-indent: 0;
    font-size: inherit;
}

.list_indent2 li {
    margin-left: 2em;
    text-indent: -2em;
}

.list_indent1point6 li {
    margin-left: 1.6em;
    text-indent: -1.6em;
}

.basic_wrap dt,
.basic_wrap li,
.basic_wrap p {
    font-size: 1.6rem;
}

.errorText {
    color: #ff0000;
    font-size: 1.2rem;
    margin-top: 1rem;
}

.errorText_orange {
    color: #ff6c00;
    font-size: 1.2rem;
}

.serverContent {
    margin: 1rem 0;
    font-size: 1.2rem;
    font-weight: bold;
    text-align: center;
    color: #333;
}

.serverContent p {
    font-size: 1.2rem;
}

.serverContent.-error {
    color: var(--color-server-error);
}

@media only screen and (max-width: 768px) {
    .basic_wrap dt,
    .basic_wrap li,
    .basic_wrap p {
        font-size: 1.4rem;
    }

    .serverContent {
        margin: 1rem 0;
        text-align: left;
    }
}

.text_left {
    text-align: left;
}

.text_right {
    text-align: right;
}

.margin_top-point5 {
    margin-top: 0.5rem;
}

.margin_top1 {
    margin-top: 1rem;
}

.margin_top2 {
    margin-top: 2rem;
}

.margin_top5 {
    margin-top: 5rem;
}

.margin_bottom1 {
    margin-bottom: 1rem;
}

.flexWrap {
    display: flex;
}

.flexWrap.column-gap {
    column-gap: 2rem;
}

.flexWrap_dl {
    display: flex;
}

.flexWrap_dl dt {
    width: fit-content;
}

.flexWrap_dl dd {
    width: 84%;
}

@media only screen and (max-width: 768px) {
    .flexWrap_dl {
        flex-wrap: wrap;
    }

    .flexWrap_dl dt {
        width: unset;
        margin-left: 1.7em;
        text-indent: -1.7em;
    }

    .flexWrap_dl dd {
        width: unset;
        margin-left: 1.7em;
    }
}

.spaceBetween {
    justify-content: space-between;
}

.fontBold {
    font-weight: bold;
}

/* ボタン 2カラム */
.btn2column {
    display: flex;
    gap: 4rem;
}

.btn2column .btn_wrap {
    width: 30rem;
}

/* input 2カラム */
.form_group2column {
    display: flex;
    justify-content: space-between;
    justify-content: center;
    gap: 0 2rem;
}

.form_group2column .form_group {
    width: 50%;
}

.form_group2column .form_title {
    height: 2.4rem;
}

.form_group2column .form_group + .form_group::before {
    content: "";
    display: block;
    height: 2.4rem;
}

.form_group2column.noneGutter .form_group + .form_group::before {
    display: none;
}

.form_group2column .form_group + .form_group {
    margin-top: 0;
}

@media only screen and (max-width: 768px) {
    .flexWrap.column-gap {
        column-gap: 1.5rem;
    }

    /* ボタン 2カラム */
    .btn2column {
        flex-direction: column;
        align-items: center;
        gap: 2rem 0;
    }

    /* input 2カラム */
    .form_group2column .form_title {
        height: 2.1rem;
    }

    .form_group2column .form_group + .form_group::before {
        height: 2.1rem;
    }

    .form_group2column.pc-2column {
        display: block;
    }

    .form_group2column.pc-2column .form_group {
        width: 100%;
    }

    .form_group2column.pc-2column .form_group + .form_group::before {
        content: unset;
    }
}
