@charset "UTF-8";
/* CSS Document */

/*全体の設定
---------------------------------------------------------------------------*/
/*===============================

    Reset

================================*/
/*
html5doctor.com Reset Stylesheet
v1.6.1
Last Updated: 2010-09-17
Author: Richard Clark - http://richclarkdesign.com
Twitter: @rich_clark
*/
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;
}

body {
    line-height: 1;

}

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

ol,
ul {
    list-style: none;
}

blockquote,
q {
    quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
    content: '';
    content: none;
}

h2,
h3,
h4,
h5,
h6,
p,
dt,
dd {
    transform: rotate(0.04deg);
}

a {
    margin: 0;
    padding: 0;
    font-size: 100%;
    vertical-align: baseline;
    background: transparent;
    text-decoration: none;
    transform: rotate(0.04deg);
}

a:link,
a:visited,
a:hover,
a:active {
    color: var(--txt-black);
}

del {
    text-decoration: line-through;
}

abbr[title],
dfn[title] {
    border-bottom: 1px dotted;
    cursor: help;
}

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

input,
select {
    vertical-align: middle;
}

*,
*::before,
*::after {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    background-repeat: no-repeat;
}

button {
    background-color: transparent;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

address {
    font-style: normal;
    margin: 0;
    padding: 0;
}


/*===============================

    Base
    サイト全体のフォント
    字間や行間
    リンクの扱い
    imgのサイズ
    幅の設定等

================================*/

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    /*ゴシック*/
    font-family: "Noto Sans JP", sans-serif;
    font-optical-sizing: auto;
    font-weight: 400;
    font-style: normal;
    line-height: 1.7;
    color: var(--txt-black);
}

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



/*共通の設定
------------------------------------------------*/
.pc {
    display: block;
}

.sp {
    display: none !important;
}


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

    .sp {
        display: block !important;
    }
}

/*メインカラーの設定
-------------------------------------------------*/
:root {
    --txt-black: #333333;
    --main-yellow: #FFD400;
    --glay: #F7F7F7;
}

body {
    position: relative;
}

/*header
-------------------------------------------------*/
header h1 {
    max-width: 145px;
    margin: 0 auto;
    margin-top: 20px;
    margin-bottom: 8px;
}

header .hd_title {
    width: 100%;
    padding: 20px 0;
    background-color: var(--main-yellow);
    text-align: center;
    margin-bottom: 100px;
}

header .hd_title p {
    font-size: 25px;
    font-weight: 600;
    letter-spacing: 1.3px;
    line-height: 1.9;
}

main {
    margin-bottom: 100px;
}


h2 {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    font-size: 22px;
    font-weight: 600;
    letter-spacing: 1.2px;
    border-bottom: 1px solid var(--txt-black);
    padding-bottom: 10px;
    margin-bottom: 30px;
}

/*TOPページ
-------------------------------------------------*/

.sec_gaiyo {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 100px;
}

.sec_gaiyo p {
    margin-bottom: 25px;
}

.sec_gaiyo ul {
    width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: var(--glay);
    margin-bottom: 25px;
}

.sec_gaiyo ul li {
    font-size: 18px;
    font-weight: 600;
    line-height: 2;
}

.sec_gaiyo p .pp_link {
    display: inline-block;
    border-bottom: 2px solid var(--main-yellow);
}

.sec_gaiyo p .pp_link:hover {
    background-color: var(--main-yellow);
    transition: 0.3s;
}

footer {
    padding: 40px 0 50px 0;
    background-color: var(--main-yellow);
}

footer .footer_wrap {
    text-align: center;
    max-width: 500px;
    margin: 0 auto;
}

footer .footer_wrap .tel_note {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1.4px;
}

footer .footer_wrap .tel_nmb a {
    font-size: 25px;
    font-weight: 600;
}

footer .footer_wrap address {
    margin-top: 15px;
}



/*thanksページ
-------------------------------------------------*/
.sec_thanksWrap {
    max-width: 800px;
    margin: 0 auto;
    margin-bottom: 300px;
}

.sec_thanksWrap p {
    margin-bottom: 50px;
}

.sec_thanksWrap .fcTop_link {
    text-align: center;
}

.sec_thanksWrap .fcTop_link a {
    display: block;
    width: 330px;
    margin: 0 auto;
    background-color: var(--txt-black);
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    padding: 10px 0;
    
}


@media only screen and (max-width: 750px) {

header .hd_title {
    margin-bottom: 60px;
}
    .sec_gaiyo {
    max-width: 93%;
    margin: 0 auto;
    margin-bottom: 80px;
}

.sec_form {
    max-width: 93%;
    margin: 0 auto;
}

.sec_thanks {
    max-width: 93%;
    margin: 0 auto;
}


}













