@charset "utf-8";

body {
    font-family: "Noto Sans JP", sans-serif;
    font-weight: 700;
    background-color: #e7e7e7;
    font-size: clamp(0.875rem, 0.851rem + 0.12vw, 1rem)
        /*14-16*/
    ;
    border-top: solid 4px #c01;
}


p {
    line-height: 1.7;
}

img {
    vertical-align: top;
    display: inline;
    width: 100%;
}

@font-face {
    font-family: "FAsolid";
    src: url("./fa-solid-900.woff") format("woff");
}

@font-face {
    font-family: "FAregular";
    src: url("./fa-regular-400.woff") format("woff");
}

.clearfix::after {
    content: "";
    display: block;
    clear: both;
}

.dbl {
    display: block;
}

.dib {
    display: inline-block;
}

.din {
    display: inline;
}

.dtb {
    display: table;
}

.right,
.right p {
    text-align: right;
}

.center,
.center p {
    text-align: center;
}

.under {
    text-decoration: underline;
}

.bold {
    font-weight: bold;
}

.small {
    font-size: 90%;
}

.small2 {
    font-size: 80%;
}

a[target="_blank"]::after {
    /*font-family: "FAsolid";
    font-weight: 900;
    content: "\f35d";
    display: inline-block;
    margin: 0 0 0 3px;
    color: #5b75b4;
    font-size: 11px;*/
}

.float_left {
    float: left;
}

.float_right {
    float: right;
}

.img_left {
    display: flex;
    justify-content: center;
    align-items: stretch;
    gap: 0 10px;
}

.img_right {
    display: inline-block;
    float: right;
    margin: 0 0 30px 30px;
}

.img_top {
    margin-bottom: 30px;
}

.clear {
    clear: both;
}

.clearfix::after {
    display: block;
    clear: both;
    content: "";
}

.flex {
    display: flex;
    flex-flow: row wrap;
}

.flex_between {
    justify-content: space-between;
}

.flex_center {
    justify-content: center;
}

.flex_around {
    justify-content: space-around;
}

.flex_a_center {
    align-items: center;
}

.indent {
    padding-left: 1em;
    text-indent: -1em;
}

.lineclamp2 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.lineclamp3 {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}

/*基本スタイル
==================================================================================================================*/
/*基本文字サイズ&文字色*/
html {
    font-size: 16px;
}


/*下部に余白*/
.cap01 {
    font-size: 85%;
    display: block;
    line-height: 1.2;
}

/*リンク文字色*/
a {
    text-decoration: none;
    color: #333;
}

a:hover {
    opacity: 0.8;
}



/*off*/

/*テーブル*/
table {
    border-collapse: collapse;
    border-spacing: 0;
    width: 100%;
}

caption {
    text-align: left;
    font-weight: bold;
    color: #993300;
}

th,
td {
    border: #ccc 1px solid;
    padding: 10px 20px;
    font-size: 1rem;
    vertical-align: top;
}

thead th,
tfoot th {
    background-color: #fff;
    color: #333;
}

thead td,
tfoot td {
    background-color: #fff;
    color: #333;
}

tbody th {
    background-color: #e2f7f0;
    color: #333;
}

tbody td {
    background-color: #fff;
}



/*レイアウト共通*/
#container {
    width: 100%;
    position: relative;
    overflow: hidden;
    background-color: #fff;
}

.inner {
    width: 94%;
    margin: 0 auto;
    padding: 2rem 0;
}

.inner:after {
    content: "";
    display: block;
    clear: both;
}

.width_768 {
    max-width: 768px;
    margin: 0 auto;
    width: 100%;
}

.inner-section {
    width: 100%;
    max-width: 1080px;
    margin: 0 auto;
    padding: 50px 0;
}

.contents_btm01 {
    margin-bottom: 100px;
}

.contents_btm02 {
    margin-bottom: 80px;
}

.contents_btm03 {
    margin-bottom: 60px;
}

.contents_btm04 {
    margin-bottom: 40px;
}

.contents_btm05 {
    margin-bottom: 20px;
}

.contents_btm0 {
    margin-bottom: 0;
}

.p0 {
    padding: 0 !important;
}

.mb0 {
    margin-bottom: 0 !important;
}

.content section {
    width: 100%;
}

@media (max-width:1299px) {
    .inner-section {
        padding: 40px 4%;
    }

    .inner {
        padding: 0 4%;
    }

    section {
        padding: 50px 0;
        width: 100%;
    }
}

@media (max-width:600px) {
    .inner {
        padding: 0 4%;
    }

    .inner.w100 {
        width: 100%;
    }

    .inner-section {
        padding: 30px 4%;
    }

    section {
        padding: 5% 0;
    }
}





/*グローバルナビゲーション
==================================================================================================================*/
/*ヘッダー*/
header {}

.header_top {
    padding: 0 2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
}

.header_logo {
    height: 50px;
    padding: 4px 0;
    width: 40%;
    max-width: 200px;
}


.header_logo h1{
    display: flex;
    gap: 0 10%;
}

.header_logo h1 img {
    object-fit: contain;
    height: 40px;
    width: 100%;
}

.header {
    /*  position: fixed;
    top: 0;
    width: 100%;
    height: 50px;
    z-index: 999;
    padding: 0;*/

    background-color: #fff;
}

.btn_dl {
    width: 50%;
    text-align: right;
    max-width: 300px;
    font-size: 13px;
}

.btn_dl a {
    background: #c01;
    border-radius: 20px;
    position: relative;
    display: inline-block;
    margin: 1em auto;
    padding: 0.8em 1.6em 0.8em 1.1em;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}

.btn_dl .pc{
	display:none;
}

.btn_list li:nth-child(2) a {
    background: #565656;
}


.btn_dl a:after {
    content: "";
    position: absolute;
    top: 50%;
    bottom: 0;
    right:1em;
    font-size: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.3s;
    width: 6px;
    height: 6px;
    border-top: solid 2px currentColor;
    border-right: solid 2px currentColor;
    transform: translateY(-50%) rotate(45deg);
}

/*600px以上*/
@media (min-width: 600px) {
    .btn_dl a {
        border-radius: 2em;
        padding: 0.8em 2.5em 0.8em 1.5em;
    }
    .btn_dl{
        font-size: 13px;
    }
}
/*370px以上*/
@media (min-width: 370px) {
	.btn_dl .pc{
		display:inline;
	}
}
.btn_list li a:hover {
    background: #ff6e28;
    color: #FFF;
}

.header_bottom {
    background-color: #fff3f3;
    padding:
        0.7rem 0;
    width: 100%;
}

.header_bottom ul {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
}

.header_bottom ul li {}

.header_bottom ul li a {
    color: #c01;
}

.header_bottom ul li a:before {
    content: "▶";
    font-size: 70%;
    padding: 0 0.3em 0 0;
}

.copy {
    font-size: 12px;
    color: #333;
    text-align: center;
    padding: 1em 0 0;
}

/*グローバルメニュー*/
#gnav_wrap {
    justify-content: space-between;
    width: 100%;
    height: 100vh;
}



#gnav_wrap {
    display: block;
    transition: .5s ease-in-out;
    float: none;
    margin: 50px 0 0;
    width: 100%;
    height: auto;
    position: absolute;
    top: 0;
    right: -100vw;
    z-index: 1000;
    /*overflow: auto;*/
}



.menu-is-open #gnav_wrap {
    position: fixed;
    z-index: 8888;
    right: 0;
}

.nav_box {
    display: flex;
    justify-content: end;
    width: 100vw;
}


.hamMenu {
    display: flex;
    width: 40px;
    height: 40px;
    position: fixed;
    top: 4px;
    right: 5px;
    text-indent: -9999px;
    margin: 0;
    background: none;
    z-index: 9999;
    padding: 0;
    border-radius: 4px;
    justify-content: center;
    align-items: center;
}

.hamMenu span {
    display: block;
    position: absolute;
    width: 30px;
    height: 20px;
    background: #333;
    border-top: 9px solid #fff;
    border-bottom: 9px solid #fff;
    -moz-box-sizing: border-box;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
}

.hamMenu span:before {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: #333;
    top: -9px;
    right: 0;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.hamMenu span:after {
    content: '';
    position: absolute;
    width: 30px;
    height: 2px;
    background: #333;
    bottom: -9px;
    right: 0;
    -moz-transition: all 0.3s;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
}

.menu-is-open .hamMenu span {
    background: #1110;
}

.menu-is-open .hamMenu span:before {
    transform: rotate(-135deg);
    top: 0;
    right: 0;
}

.menu-is-open .hamMenu span {
    background: none;
    border-top: 9px solid #1110;
    border-bottom: 9px solid #1110;
}

.menu-is-open .hamMenu span:after {
    transform: rotate(135deg);
    bottom: 0;
    right: 0;
}

#gnav li {
    position: relative;
}

#gnav li a {
    transition-duration: .3s;

}


.nav_menu {
    position: relative;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 3vh 0;
    align-items: first baseline;
    width: fit-content;
    background-color: #fff;
    padding: 1em 2em;
    border-radius: 3px;
    box-shadow: 0px 10px 10px -6px rgba(0, 0, 0, 0.3);
    margin: 0.3rem 7px 0 0;
}

#gnav li a {
    display: block;
    overflow: hidden;
    margin: 0 1px 0 0;
    color: #333;
    font-size: 18px;
    width: 100%;
    text-align: left;
}

#gnav li a::before {
    content: "";
}

#gnav li {
    width: auto;
    border: none;
}

#gnav li a {
    font-size: clamp(1rem, 0.955rem + 0.23vw, 1.125rem);
}



.menu-is-open .header .overlay {
    display: block;
}

/*600px以上*/
@media (min-width: 600px) {
    .header {}

    .hamMenu {
        background-color: #fff;
        top: 1rem;
        right: 1vw;
    }
}

/*900px以上*/
@media (min-width: 900px) {

    .header {
        /* display: flex;
        justify-content: space-between;
        align-items: center;
        height: 70px;
        padding: 10px 1%;
        width: 100%;
        position: relative;
        background-color: #fff;*/
    }

    .header_logo {
        height: auto;
        padding: 0;
    }

    .header_logo h1 img {
        object-fit: contain;
        height: 60px;
        width: 100%;
    }

    .hamMenu {
        /*  display: none;*/
    }

    #gnav_wrap {
        /* position: unset;
        margin: 0;
        width: calc(100% - 250px);
        display: unset;*/
    }


    .nav_box {
        /*  width: unset;
        display: unset;*/
    }

    .nav_menu {
        /*   position: unset;
        display: flex;
        flex-direction: unset;
        gap: 0 1.6em;
        align-items: center;
        box-shadow: unset;
        padding: 0;
        background-color: unset;
        margin: 0;
        justify-content: end;
        border-radius: unset;
        width: auto;*/
        margin: 1rem;
    }

    .overlay {
        display: none;
    }
}


/*フッター*/

footer {}

#footer {
    width: 100%;
    background-color: #e3e3e3;
}

#footer .logo_area {
    background-color: unset;
}

.footer_logo {
    width: 40%;
    margin: 0 auto;
    padding: 2rem 0;
    max-width: 160px;
}

.footer_link {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 0 auto 2rem;
    width: 80%;
    flex-wrap: wrap;
}

.footer_link li {}

.footer_link li a {
    text-decoration: underline;
    font-weight: normal;
}

.cpoy {
    background-color: #4B4B4B;
    color: #fff;
    font-size: 12px;
    text-align: center;
    font-weight: normal;
    padding: 7px 0;
}

#page_top {
    width: 40px;
    height: 40px;
    position: fixed;
    z-index: 9999;
    display: none;
    right: 2%;
    bottom: 3em;
    background-color: #ffffffcf;
    border-radius: 50%;
}

#page_top.on {
    display: block;
}

#page_top a {
    position: relative;
    display: block;
    width: 40px;
    height: 40px;
    text-decoration: none;
    text-align: center;
    display: flex;
    justify-content: center;
    align-content: center;
    background-color: #c01;
    border: #ffffffc4 2px solid;
    border: rebeccapurple;
    border-radius: 50%;
    color: #fff;
    line-height: 2.6;
}




/***動き**********************************/

/*フェード*/
.fadein {
    display: block;
    transition: 2s;
    /*効果時間*/
    transition-timing-function: ease;
    /*開始と完了を滑らかにする*/
    transform: translateY(50px);
    /*下から表示させる*/
    opacity: 0;
    /*不透明度*/
}

.fadein.on {
    transform: none;
    /*active時に拡大解除*/
    opacity: 1;
    /*不透明度を元に戻す*/
}

/********サイト用追加****************************************************************************/
.content {
    background-color: #fff;
}

/*縦書き*/
.tate {
    -ms-writing-mode: tb-rl;
    writing-mode: vertical-rl;
}

.title_01 {
    font-weight: 900;
    text-align: center;
    margin: 0 0 0.8em;
    font-size: clamp(1.125rem, 1.005rem + 0.6vw, 1.75rem)
        /*18-28*/
    ;
}

.title_02 {
    font-size: clamp(1.125rem, 0.944rem + 0.9vw, 2.063rem)
        /*18-33*/
    ;
    text-align: center;
    background-color: #fff;
    margin: 0 0 1rem;
}

.font_big_01 {
    font-size: clamp(1.438rem, 1.305rem + 0.66vw, 2.125rem)
        /*23-34*/
    ;
    font-weight: bold;
    text-align: center;
    padding: 1em 0;
}

/* ボタン */

.btn_list li a {
    background: #c01;
    border-radius: 2em;
    position: relative;
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin: 1em auto;
    padding: 15px 25px;
    color: #fff;
    transition: 0.3s ease-in-out;
    font-weight: 500;
}

.btn_list li:nth-child(2) a {
    background: #565656;
}

.btn_list li a:after {
    content: "";
    position: absolute;
    top: 50%;
    bottom: 0;
    right: 1rem;
    font-size: 90%;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: right 0.3s;
    width: 6px;
    height: 6px;
    border-top: solid 2px currentColor;
    border-right: solid 2px currentColor;
    transform: translateY(-50%) rotate(45deg);
}

.btn_list li a:hover {
    background: #ff6e28;
    color: #FFF;
}

.btn_list li a:hover:after {
    right: 1.4rem;
}

/**contact_area********/
.contact_area {
    text-align: center;
    padding: 1.3rem 0;
}

.contact_area.bg_01 {
    background-color: #fff3f3;
}

.contact_area .inner {
    padding: 2rem 0 0;
    background-color: #fff;
}

.contact_area h2 {
    align-items: center;
    font-size: clamp(1.125rem, 1.005rem + 0.6vw, 1.75rem)
        /*18-28*/
    ;
    padding: 1em 0;
}

.contact_area .img {
    width: 80%;
    margin: 0 auto 2rem;
}

.contact_area .contact_list {
    text-align: left;
    width: fit-content;
    margin: 0 auto 2rem;
}

.contact_area .contact_list li {
    font-size: clamp(0.938rem, 0.877rem + 0.3vw, 1.25rem)
        /*15-20*/
    ;
    padding: 5px 0;
}

.contact_area p {
    font-size: clamp(0.875rem, 0.851rem + 0.12vw, 1rem)
        /*13-16*/
    ;
    font-weight: normal;
    text-align: left;
}

.btn_list {
    padding: 1rem 0;
    width: 80%;
    margin: 0 auto;
    max-width: 400px;
}

.btn_list li {}

.btn_list li a {}

/**********/
.agree {
    border: none;
}

.agree label {
    display: flex;
    align-items: flex-start;
    position: relative;
    margin-bottom: .5em;
    cursor: pointer;
    text-align: left;
}

.agree label::before {
    width: 1.1em;
    height: 1em;
    border-radius: 50%;
    border: 2px solid #d6dde3;
    content: '';
    margin: 5px 5px 0 0;
}

.agree label:has(:checked)::after {
    position: absolute;
    top: 5px;
    left: 7px;
    transform: rotate(45deg);
    width: 5px;
    height: 10px;
    border: solid #c01;
    border-width: 0 3px 3px 0;
    content: '';
}

.agree input {
    display: none;
}

/**************/

.form_area {
    background-color: #fff4f4;
    padding: 2rem 4%;
    border: solid 1px #c01;
}



.form_area #form {
    padding: 2rem 0 0;
}


.form_area .text_01 {}

.form_area #form dl {
    border-bottom:
        dotted 2px #c01;
    margin: 0 0 1em;
    padding: 0 0 1em;
}

.contact_area p.sub_title {
    text-align: center;
}

.form_area #form dl dt {
    text-align: left;
    color: unset;
    vertical-align: top;
    background-color: unset;
}

.form_area .small {
    font-size: 70%;
    font-weight: normal;
    display: inline-block;
}

.form_area #form dl dt,
.form_area #form dl dd {
    border: unset;
    padding: 0;
}

.form_area #form dl dd {
    background-color: unset;
}

.form_area #form dd input,
.form_area #form table dd textarea {
    padding:
        10px;
    width: 100%;
}


/*600px以上*/
@media (min-width: 600px) {}

/*900px以上*/
@media (min-width: 900px) {
    .form_area #form dl dt {
        width: 35%;
    }

    .form_area #form dl dd {
        width: 60%;
    }
}