@charset "UTF-8";

/* CSS Document */
/* リセット
---------------------------------------------------- */

html,
body,
div,
span,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
abbr,
address,
cite,
code,
del,
dfn,
em,
img,
ins,
kbd,
q,
samp,
small,
strong,
sub,
sup,
var,
b,
i,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section,
summary,
time,
mark,
audio,
video {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
    display: block;
}

nav ul,
ul,
li {
    list-style: none;
}

table {
    border-collapse: collapse;
    border-spacing: 0;
}

a {
    color: inherit;
    text-decoration: none;
    cursor: pointer;
}

a:hover {
    text-decoration: none;
}

img {
    width: 100%;
    max-width: 100%;
    height: auto;
    vertical-align: bottom;
}

/* -----------------------------
  ページ共通
-------------------------------- */
html {
    color: #222;
    font-size: 10px;
    letter-spacing: 0.05em;
    scroll-behavior: smooth;
}

@media screen and (max-width: 767px) {
    html {
        font-size: 1.5625vw;
    }
}

body {
    margin: 0 auto;
    padding: 0;
    max-width: 750px;
    color: #C5771D;
    font: 1.6rem/1.4 'Noto Sans Japanese', "メイリオ", Meiryo, "ヒラギノ角ゴ Pro W3", "Hiragino Kaku Gothic Pro", Osaka, "ＭＳ Ｐゴシック", "MS PGothic", "sans-serif";
    line-height: 1.5;
}

.inner {
    margin: 0 20px;
}

.mb100 {
    margin-bottom: 100px;
}

@media screen and (max-width: 450px){
.mb100 {
    margin-bottom: 80px;
}
}

.mb20 {
    margin-bottom: 20px;
}

.title {
    display: inline-block;
    font-size: 3rem;
    border: solid 2px #C5771D;
    padding: 15px 80px 10px 80px;
    border-radius: 50px;
}

/*--------------------------------------
 レイアウト
---------------------------------------*/

.text01 {
    font-size: 3rem;
    font-weight: bold;
    text-align: center;
}

section {
    text-align: center;
}

.text02 {
    color: #333;
    text-align: left;
    font-family: serif;
    font-size: 3rem;
    font-weight: bold;
    line-height: 2;
}

.img05 {
    margin: 0 30px;
}

.text03 {
    font-size: 2.5rem;
    color: #333;
}

.text04 {
    font-size: 3rem;
    font-weight: bold;
    color: #333;
    margin-bottom: 30px;
}

.btn {
    font-size: 3.5rem;
    font-weight: bold;
    color: #E1353F;
    border: solid 2px #E1353F;
    padding: 15px 80px 10px 80px;
    border-radius: 50px;
    transition: .3s;
}

.btn:hover {
    color: #fff;
    background: #E1353F;
}

footer {
    text-align: center;
    margin-bottom: 50px;
}

.logo {
    width: 50%;
    margin: 0 auto;
}

footer p {
    padding-top: 20px;
    margin-bottom: 50px;
}

.sp{
    display: none;
}

@media screen and (max-width: 450px){
    .sp {
        display: block;
    }
    }

small {
    color: #333;
}