@charset "utf-8";

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

body {
    line-height: 1;
}

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

* {
    margin: 0;
    padding: 0;
    list-style: none;
    box-sizing: border-box;
}

html,
body {
    color: #333;
    font-size: 15px;
    font-weight: normal;
    line-height: 1.5;
}

img {
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

a,
a:visited {
    text-decoration: none;
    color: #1977ec;
}

a:hover {
    color: #ec194a;
}

main{
    overflow: hidden;
}

.w126 {
    width: 100%;
    max-width: 1260px;
    margin: auto;
}

@media screen and (max-width:1300px) {
    .w126 {
        padding: 0 3%;
    }
}

body.noscroll {
    overflow: hidden;
}

.pagetop {
    cursor: pointer;
}


/*=====================================
*フォント指定
=======================================*/
:root {
    --font-family-main: "Zen Kaku Gothic New";
    --font-family-deco: "Montserrat";
    --main-color: #005e5d;
    --deco-color: #ff9813;
    --deco-color2: #00c9aa;
}

html,
body {
    font-family: var(--font-family-main);
    color: #333;
}

/*=====================================
*背景
=======================================*/
.has-bg {
    padding: 80px 0;
    background-color: #f1fffd;
}

/*sp*/
@media screen and (max-width:599px) {
    .has-bg {
        padding: 60px 0;
    }
}


/*=====================================
*見出し
=======================================*/
.hd01 {
    font-size: 28px;
    text-align: center;
    margin-bottom: 53px;
}

.hd01 h2 {
    font-size: 1.0em;
    font-weight: 600;
    letter-spacing: 0.05em;
    margin-top: -1px;
}

.hd01 span {
    display: inline-block;
    font-family: var(--font-family-deco);
    font-size: calc((18 / 28) * 1.0em);
    font-weight: 600;
    line-height: 1.0;
    color: var(--deco-color2);
}

/*sp*/
@media screen and (max-width:599px) {
    .hd01 {
        font-size: 20px;
        margin-bottom: 30px;
    }

}

/*=====================================
*ボタン
=======================================*/
a.text-link {
    position: relative;
    display: flex;
    align-items: center;
    gap: 7px;
    width: fit-content;
    font-size: clamp(14px, 0.83vw, 16px);
    font-weight: 500;
    color: #333;
    letter-spacing: 0.05em;
}

a.text-link::after {
    content: "";
    position: absolute;
    left: -3px;
    bottom: 0;
    transform-origin: right;
    transform: scale(1, 1);
    width: calc(100% + 6px);
    height: 1px;
    background-color: #333;
    transition: 0.45s ease-in-out;
}

@media (any-hover:hover) {
    a.text-link:hover::after {
        transform: scale(0, 1);
    }
}

a.btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: fit-content;
    min-width: 220px;
    height: 45px;
    font-weight: 500;
    font-size: 18px;
    letter-spacing: 0.05em;
    padding: 0 10px;
    border-radius: 50px;
    transition: 0.3s ease-in-out;
}

a.btn1 {
    color: #fff;
    border: solid 1px var(--main-color);
    background-color: var(--main-color);
}

@media (any-hover:hover) {
    a.btn1:hover {
        color: var(--main-color);
        background-color: #fff;
    }
}

a.btn2 {
    color: var(--main-color);
    background-color: #fff;
    border: solid 1px var(--main-color);
}

@media (any-hover:hover) {
    a.btn2:hover {
        color: #fff;
        background-color: var(--main-color);
    }
}

a.btn3 {
    color: #fff;
    background-color: var(--deco-color);
    border: solid 1px var(--deco-color);
}

@media (any-hover:hover) {
    a.btn3:hover {
        color: var(--deco-color);
        background-color: #fff;
    }
}

/*=====================================
*
*pc&tablet&spのnone処理
*
=======================================*/
/*=====================================
*pc用
=======================================*/
@media screen and (max-width: 899px) {
    .pc {
        display: none;
    }
}

/*=====================================
  *pc以外
======================================*/
@media screen and (min-width: 900px) {
    .nopc {
        display: none;
    }
}

/*=====================================
  *sp以外
=======================================*/
@media screen and (max-width: 599px) {
    .nosp {
        display: none;
    }
}

/*=====================================
  *tablet_sp共通
=======================================*/
@media screen and (min-width: 900px) {
    .sp_tb {
        display: none;
    }
}

@media screen and (max-width: 899px) {
    .sp_tb {
        display: inherit;
    }
}

/*=====================================
  *tablet用
=======================================*/
@media screen and (min-width: 900px) {
    .tb {
        display: none;
    }
}

@media screen and (max-width: 600px) {
    .tb {
        display: none;
    }
}

/*=====================================
  *sp用
=======================================*/
@media screen and (min-width: 600px) {
    .sp {
        display: none;
    }
}

@media screen and (max-width: 599px) {
    .sp {
        display: inherit;
    }
}