@charset "UTF-8";
/*font--------------------------------*/
/*---
Noto Sans JP
---*/
@font-face {
    font-family: "Noto Sans JP";
    font-weight: 400;
    src: local("Noto Sans JP Regular"), local("NotoSansJP-Regular"), url("../fonts/NotoSansJP-Regular.woff2") format("woff2");
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: "Noto Sans JP";
    font-weight: 700;
    src: local("Noto Sans JP Bold"), local("NotoSansJP-Bold"), url("../fonts/NotoSansJP-Bold.woff2") format("woff2");
    font-style: normal;
    font-display: swap;
}
/*---
roboto
---*/
@font-face {
    font-family: "roboto";
    src: local("Roboto"), local("Roboto-Regular"), url("../fonts/Roboto-Regular.woff2") format("woff2");
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "roboto";
    src: local("Roboto Bold"), local("Roboto-Bold"), url("../fonts/Roboto-Bold.woff2") format("woff2");
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

/*=======================================
設定
=======================================*/
:root {
    interpolate-size: allow-keywords;
    /*container  =============================*/
    /*container size*/
    --container-max: 1280px;
    --inner-max: 1200px;
    /*左右padding*/
    --container-pd: min(6vw, 60px);
    /*上padding*/
    --section-top: min(10.25vw, 60px);
    /*下padding*/
    --section-bottom: min(10vw, 80px);
    /*header height(js)*/
    --header-h: 140px;
    /*footer height(js)*/
    --footer-h: 64px;
    /*space*/
    --spacer: clamp(24px, 32vw/9.92, 32px);
    /*font  =============================*/
    --font-ja: "Noto Sans JP";
    --font-ja-weight: 400;
    --font-en: "Roboto", sans-serif;
    --font-en-weight: 700;
    --font-base: clamp(1.6rem, 18vw/9.92, 1.8rem);
    --font-s: clamp(1.4rem, 14vw/9.92, 1.6rem);
    --font-ss: clamp(1.2rem, 14vw/9.92, 1.4rem);
    --font-l: clamp(1.8rem, 20vw/9.92, 2rem);
    --font-ti01: clamp(1.8rem, 24vw/9.92, 2.4rem);

    /*color  =============================*/
    /*site color ---------*/
    --maincolor: #6baf8e;
    --maincolor-dark: #538f78;
    --maincolor-light: #a7d4be;
    --subcolor: #7ab3e4;
    --subcolor-dark: #4f8dbf;
    --accentcolor: #f4a7b9;
    --accentcolor-dark: #d67991;
    /*text color ---------*/
    --base-tx-color: #333;
    --light-tx-color: #fff;
    --error-color: #d64545;
    /*calendar color ---------*/
    --blue: #4a87e2;
    --orange: #f18343;
    /*基本色 ------*/
    --white: #fff;
    --black: #1a1a1a;
    --gray: #868988;
    --dark-gray: #727775;
    --light-gray: #e9e9e9;
    /*線 ------*/
    --border-color: #ccc;
    /*背景色 ------*/
    --bg-white: #fff;
    --bg-color01: #e8ffda;
    --bg-color02: #e9f4ff;
    /*a ------*/
    --a-tx: #7ab3e4;
    --a-hover: color-mix(in srgb, var(--a-tx), var(--white) 40%);
    --a-visited: color-mix(in srgb, var(--a-tx), var(--black) 20%);

    /*radius =============================*/
    --base-radius: 8px;
    --inner-radius: 8px;
    --btn-radius: 100vmax;
    /*toggle =============================*/
    --toggle-size: 90px;
    --toggle-radius: 100vmax;
    --toggle-w: 44px;
    --toggle-h: 3px;
    --toggle-all-h: 24px;

    /*table =============================*/
    --tbl_pd_sp_b: 12px;
    --tbl_pd_sp_in: 16px;
    --tbl_pd_pc_b: 12px;
    --tbl_pd_pc_in: 16px;
    --tbl_bd_color: #999;
    --tbl_th_color: var(--bg-color01);

    /*z-index =============================*/
    --pagetop-z: 997;
    /* --toggle-z: 1000; */
    --nav-z: 1000;
    --header-z: 998;
}

/*reset--------------------------------*/
* {
    box-sizing: border-box;
}
body,
div,
pre,
p,
blockquote,
form,
fieldset,
input,
textarea,
select,
option,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
table,
th,
td,
tr,
embed,
object,
a,
img,
figure,
figcaption {
    margin: 0;
    padding: 0;
    vertical-align: baseline;
}
/*font*/
h1,
h2,
h3,
h4,
h5,
h6,
p,
em {
    font-style: normal;
    font-weight: normal;
}
/*others*/
table {
    border-spacing: 0;
}
* html table {
    border-collapse: collapse;
}
*:first-child + html table {
    border-collapse: collapse;
}
th,
td {
    vertical-align: middle;
    border-collapse: collapse;
}
table,
th,
td,
tr,
img {
    border: 0;
}
img {
    vertical-align: bottom;
}
q:before,
q:after {
    content: "";
}
ul {
    list-style: none;
}

/*base--------------------------------*/
html {
    font: 62.5%/1.7 "メイリオ", Meiryo, "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif; /*メイリオベース*/
}
/*body*/
body {
    height: 100%;
    text-align: center;
    word-break: break-all;
    background-color: #fff;
    font-family: var(--font-en), var(--font-ja), sans-serif;
    font-weight: var(--font-ja-weight);
    font-size: var(--font-base);
    color: var(--base-tx-color);
    line-height: 1.6;
    font-feature-settings: "palt";
    -webkit-text-size-adjust: 100%;
    overflow-x: hidden;
}

/*link*/
a {
    color: var(--a-tx);
    text-decoration: underline;
}
a img {
    border-style: none;
}
a:visited {
    color: var(--a-visited);
}
a:hover {
    color: var(--a-hover);
}

/*font size*/
h1,
h2,
h3,
h4,
h5 {
    font-size: var(--font-base);
    line-height: 1.4;
}
p {
    font-size: var(--font-base);
    line-height: 1.6;
}
li,
dt,
dd {
    font-size: var(--font-base);
}
table {
    font-size: var(--font-base);
}
th,
td {
    font-size: var(--font-base);
}

/*other*/
figure {
    padding: 0;
    margin: 0;
}
svg:where(:not([fill])) {
    fill: currentColor;
}
