@charset "UTF-8";

/*font--------------------------------*/
/*---
Noto Sans JP
---*/
@font-face {
    font-family: "Zen Maru Gothic";
    font-weight: 500;
    src: local("Zen Maru Gothic Medium"), local("ZenMaruGothic-Medium"), url("../fonts/ZenMaruGothic-Medium.woff2") format("woff2");
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Zen Maru Gothic";
    font-weight: 700;
    src: local("Zen Maru Gothic Bold"), local("ZenMaruGothic-Bold"), url("../fonts/ZenMaruGothic-Bold.woff2") format("woff2");
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: "Zen Maru Gothic";
    font-weight: 900;
    src: local("Zen Maru Gothic Black"), local("ZenMaruGothic-Black"), url("../fonts/ZenMaruGothic-Black.woff2") format("woff2");
    font-style: normal;
    font-display: swap;
}

/*=======================================
設定
=======================================*/
:root {
    interpolate-size: allow-keywords;
    /*container  =============================*/
    /*container size*/
    --container-max: 1140px;
    /*左右padding*/
    --container-pd: clamp(20px, 50vw/13.66, 50px);
    /*上padding*/
    --section-top: clamp(40px, 100vw/13.66, 100px);
    /*下padding*/
    --section-bottom: clamp(40px, 100vw/13.66, 100px);
    /*font  =============================*/
    --font-ja: "Zen Maru Gothic";
    --font-ja-weight: 500;
    --font-base: clamp(1.6rem, 18vw/13.66, 1.8rem);
    --font-ss: clamp(1.2rem, 14vw/13.66, 1.4rem);
    --font-s: clamp(1.4rem, 16vw/13.66, 1.6rem);
    --font-l: clamp(1.8rem, 20vw/13.66, 2rem);
    --font-xl: clamp(2rem, 24vw/13.66, 2.4rem);
    /*color  =============================*/
    /*site color ---------*/
    --maincolor: #21ae3f;
    --subcolor: #e5f47d;
    /*text color ---------*/
    --base-tx-color: #555;
    --light-tx-color: #fff;
    --error-color: #c43d33;
    /*基本色 ------*/
    --white: #fff;
    --black: #1a1a1a;
    --gray: #777;
    --light-gray: #a3a3a3;
    /*線 ------*/
    --border-color: #e0f26d;
    /*背景色 ------*/
    --bg-white: #fff;
    --bg-color01: #f7ffc5;
    --bg-color02: #21ae3f;
    /*a ------*/
    --a-tx: #2ba4b9;
    --a-hover: color-mix(in srgb, var(--a-tx), var(--white) 40%);
    --a-visited: color-mix(in srgb, var(--a-tx), var(--black) 20%);

    /*header =============================*/
    --header-h-sp: 56px;
    --header-h-pc: 80px;
    --header-fixed:60px;
    --header-contact-h-sp:50px;
    --header-contact-h-md:70px;
    --header-contact-h-pc:100px;
    --nav-inline-sp:20px;
    --nav-inline-md:40px;

    /*other =============================*/
    --base-radius: 30px;
    --inner-radius: 20px;
    --btn-radius: 100vmax;

    /*z-index =============================*/
    --pagetop-z: 997;
    --toggle-z: 1000;
    --nav-z: 999;
    --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;
    /*メイリオベース*/
    /*font: 62.5%/1.7 "Yu Gothic Medium", "Yu Gothic", "Hiragino Kaku Gothic ProN", "ヒラギノ角ゴ ProN W3", sans-serif;*/
    /*游ゴシックベース*/
    /*font: 62.5%/1.7 "Yu Mincho Medium", "Yu Mincho", "Hiragino Mincho ProN", "ヒラギノ明朝 ProN W3", serif;*/
    /*游明朝ベース*/
}

/*body*/
body {
    height: 100%;
    text-align: center;
    word-break: break-all;
    background-color: #fff;
    font-family: var(--font-ja);
    font-weight: var(--font-ja-weight);
    font-size: var(--font-base);
    color: var(--base-tx-color);
    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,
p {
    font-size: var(--font-base);
}

li,
dt,
dd {
    font-size: var(--font-base);
}

table {
    font-size: var(--font-base);
}

/*other*/
figure {
    padding: 0;
    margin: 0;
}

svg:where(:not([fill])) {
    fill: currentColor;
}