@charset "UTF-8";
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&family=Noto+Sans+JP:wght@400;500;600;700;800;900&display=swap');

/* ===============================================
   Common
=============================================== */
html {
    font-size: 62.5%;
    color: #000;
    font-family: 'Inter','Noto Sans JP', "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
    font-weight: 400;
    letter-spacing: 0.1em;
    overflow-x: hidden;
}
body {
    animation: fadeIn .5s ease-in 0s 1 normal;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}
@keyframes fadeIn {
    0% { opacity: 0 }
    100% { opacity: 1 }
}

a {
    color: #000;
    display: inline-block;
    max-width: 100%;
    text-decoration: none;
    transition: .3s;
}
.hover { transition: .3s; }
.hover:hover { opacity: 0.6; }

img { max-width: 100%; }

table { border-collapse: collapse; }
table th, table td { vertical-align: middle; }

input,
optgroup,
select,
textarea {
    font-family: 'Inter','Noto Sans JP', "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Arial", "Yu Gothic", "Meiryo", sans-serif;
}

video { max-width: 100%;}

.clearfix:before, .clearfix:after { content:""; display: table; }
.clearfix:after { clear: both; }
.clearfix { zoom:1; }

.font_min { font-family: 'Yuji Syuku','游明朝','Yu Mincho',YuMincho,'Hiragino Mincho Pro',serif;}
.font_en { font-family: 'Oswald', sans-serif;}

.pc { display: inherit; }
.sp { display: none; }
.sp_md { display: none; }
@media screen and (max-width:1025px){
    .sp_md { display: inherit; }
}
@media screen and (max-width:768px){
	.pc { display: none; }
	.sp { display: inherit; }
}

.bg_gray { background-color: #F2F2F2; }
.bg_red { background-color: #D82C2C; }
.bg_white { background-color: #fff; }

.c_red { color: #FF0000; }
.c_red2 { color: #D82C2C; }
.c_blue { color: #0000AC; }

:root {
    --c-red: #D82C2C;
    --c-black: #707070;
}

.indent_1 { padding-left: 1em; text-indent: -1em; }
.indent_2 { padding-left: 2em; text-indent: -2em; }
.indent_3 { padding-left: 3em; text-indent: -3em; }
.indent_4 { padding-left: 4em; text-indent: -4em; }
.indent_5 { padding-left: 5em; text-indent: -5em; }
.indent_6 { padding-left: 6em; text-indent: -6em; }

.text_indent_1 { text-indent: 1em; }

.bold { font-weight: bold; }
.small { font-size: 0.8em; }

.align_c { text-align: center; }
.align_l { text-align: left; }
.align_r { text-align: right; }


/* ===============================================
   ヘッダー
=============================================== */
header {
	width: 100%;
    height: 90px;
    padding: 0 6%;
    background-color: #fff;
    display: flex;
    justify-content: space-between;
    align-items: center;
	position: fixed;
    top: 0;
    left: 0;
	z-index: 10;
    transition: .2s;
}
header.fix {
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
}
header h1 {
    margin-right: 5.5vw;
}
header h1 img {
	width: 165px;
}
header .head_icon {
    padding-left: 75px;
}
header nav {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    flex: 1;
}
header nav > ul {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 0 40px;
}
header nav > ul > li {
    height: 100%;
}
header nav > ul > li > a,
header nav > ul > li > .menu {
    height: 100%;
    font-size: 1.5rem;
    font-weight: bold;
    white-space: nowrap;
    padding: 0.5em 0;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
}
header nav > ul > li > a::after,
header nav > ul > li > .menu::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background-color: #D82C2C;
    bottom: 0;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
}
header nav > ul > li > a:hover::after,
header nav > ul > li > .menu:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
}
header nav > ul > li.current > a::after,
header nav > ul > li.current > .menu::after {
    transform: scale(1, 1);
}
@media screen and (max-width: 1200px){
    header {
        padding: 0 3%;
    }
    header .head_icon {
        padding-left: 5%;
    }
    header nav > ul {
        gap: 0 2vw;
    }
}
@media screen and (max-width: 1000px){
    header h1 {
        max-width: 15%;
        margin-right: 3vw;
    }
    header .head_icon {
        padding-left: 3%;
        max-width: 7%;
    }
    header nav > ul > li > a,
    header nav > ul > li > .menu {
        font-size: 1.6vw;
    }
}
@media screen and (max-width: 768px){
    header {
        height: 50px;
        padding: 0 10px 0 25px;
    }
    header h1 {
        width: 150px;
        max-width: 33%;
    }
    header .head_icon {
        padding-left: 0;
        width: 30px;
        max-width: 30px;
        position: absolute;
        top: 10px;
        right: 70px;
    }
    header nav {
        display: none;
        position: fixed;
        top: 50px;
        left: 0;
        width: 100%;
        height: auto;
    }
    header nav > ul {
        width: 100%;
        max-height: calc(100vh - 50px);
        overflow-y: scroll;
        display: block;
    }
    header nav > ul > li {
        width: 100%;
        height: auto;
        background-color: #fff;
        border-bottom: 1px solid #000;
    }
    header nav > ul > li:first-child {
        border-top: 1px solid #000;
    }
    header nav > ul > li > a::before,
    header nav > ul > li > .menu::before {
        content: "";
        width: 16px;
        height: 16px;
        background: url(../img/arrow_bk.svg) no-repeat center center / contain;
        display: inline-block;
        position: absolute;
        top: -2px;
        bottom: 0;
        left: 12px;
        margin: auto;
    }
    header nav > ul > li > a,
    header nav > ul > li > .menu {
        padding: 1.3em 2.5em;
        font-size: 1.4rem;
        font-weight: bold;
        position: relative;
    }
    header nav > ul > li > a::after,
    header nav > ul > li > .menu::after {
        display: none;
    }
}

.mega_menu .sub_menu {
    position: fixed;
    top: 100px;
    left: 0;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.05);
    padding: 50px 0;
    transition-duration: 0.3s;
    transition-property: top, opacity, visibility;
    opacity: 0;
    visibility: hidden;
    z-index: -1;
}
.mega_menu.current .sub_menu {
    top: 90px;
    opacity: 1;
    visibility: visible;
}
.mega_menu .sub_menu > ul {
    width: 1120px;
    max-width: 90%;
    display: flex;
    justify-content: space-between;
    margin: 0 auto;
    position: relative;
}
.mega_menu .sub_menu > ul li {
    width: 207px;
    max-width: 19%;
}
.sub_menu a {
    position: relative;
}
.sub_menu a .thumb {
    width: 100%;
    text-align: center;
    overflow: hidden;
}
.sub_menu a .thumb img {
    height: auto;
    transition: transform .3s ease;
}
.sub_menu a:hover .thumb img {
    transform: scale(1.1);
}
.sub_menu a .menu_txt {
    font-size: 1.7rem;
    font-weight: 500;
    margin-top: 0.8em;
    padding-left: 1.4em;
    position: relative;
    transition: all .3s;
}
.sub_menu a .menu_txt::before {
    content: "";
    width: 1em;
    height: 1em;
    background: url("../img/arrow_red.svg") no-repeat center center / contain;
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
}
.sub_menu a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #D82C2C;
    bottom: -10px;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
}
.sub_menu a:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
}
@media screen and (max-width: 1200px){
    .sub_menu a .menu_txt {
        font-size: 1.5rem;
    }
}
@media screen and (max-width: 1000px){
    .mega_menu .sub_menu {
        padding: 30px 0;
    }
    .sub_menu a .menu_txt {
        font-size: 1.5vw;
    }
}
@media screen and (max-width: 768px){
    .mega_menu .sub_menu,
    .mega_menu.current .sub_menu {
        position: relative;
        top: 0;
        left: 0;
        box-shadow: none;
        padding: 0;
        z-index: 1;
        opacity: 1;
        display: none;
        visibility: initial;
    }
    .mega_menu .sub_menu > ul {
        flex-wrap: wrap;
        gap: 0 2%;
    }
    .mega_menu .sub_menu > ul::after {
        content: "";
        width: 207px;
        max-width: 32%;
    }
    .mega_menu .sub_menu > ul li {
        max-width: 32%;
        margin-bottom: 15px;
    }
    .sub_menu a .menu_txt {
        font-size: 1.2rem;
        margin-top: 0.6em;
        padding-left: 1.7em;
    }
    .sub_menu a .menu_txt::before {
        width: 1.2em;
        height: 1.2em;
        background: url(../img/arrow_bk.svg) no-repeat center center / contain;
        top: -0.3em;
    }
}
@media screen and (max-width: 500px){
    .mega_menu .sub_menu > ul::after {
        display: none;
    }
    .mega_menu .sub_menu > ul li {
        max-width: 47.5%;
    }
}

#spmenu_btn {
    display: none;
}
@media screen and (max-width: 768px){
    #spmenu_btn {
        width: 50px;
        height: 50px;
        background-color: #fff;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    #spmenu_btn div {
        display: block;
        width: 30px;
        height: 2px;
        background: #D82C2C;
        transition: all 0.3s;
        position: relative;
    }
    #spmenu_btn div span:first-child {
        display: block;
        position: absolute;
        width: 30px;
        height: 2px;
        background-color: #D82C2C;
        top: -11px;
        right: 0;
        margin: auto;
        transition: all 0.3s;
    }
    #spmenu_btn div span:last-child {
        display: block;
        position: absolute;
        width: 30px;
        height: 2px;
        background-color: #D82C2C;
        bottom: -11px;
        right: 0;
        margin: auto;
        transition: all 0.3s;
    }
    #spmenu_btn.active div {
        background-color: #fff;
    }
    #spmenu_btn.active div span:first-child {
        top:0;
        transform: rotate(-135deg);
    }
    #spmenu_btn.active div span:last-child {
        bottom: 0;
        transform: rotate(135deg);
    }
}

header nav > ul > li > .menu span,
.sp_menu {
    display: none;
}
@media screen and (max-width:768px){
    .sp_menu {
        display: none;
    }
    .sp_menu li a {
        font-size: 1.2rem;
        padding: 0.8em 3.5em
    }
    .sp_menu li:first-child a {
        padding-top: 0;
    }
    .sp_menu li:last-child a {
        padding-bottom: 2em;
    }
    header nav > ul > li > .menu.active {
        color: #D82C2C;
    }
    header nav > ul > li > .menu.active::before {
        background: url("../img/arrow_red.svg") no-repeat center center / contain;
    }
    header nav > ul > li > .menu span {
        width: 50px;
        height: 100%;
        display: block;
        position: absolute;
        top: 0;
        bottom: 0;
        right: 0;
        margin: auto;
    }
    header nav > ul > li > .menu span::before,
    header nav > ul > li > .menu span::after  {
        content: "";
        display: inline-block;
        width: 16px;
        height: 1px;
        background-color: #000;
        position: absolute;
        top: 50%;
        right: 0;
        left: 0;
        transform: translateY(-50%);
        transition: opacity .4s;
        margin: auto;
    }
    header nav > ul > li > .menu span::after {
        transform: translateY(-50%) rotate(90deg);
        transition: transform .4s;
    }
    header nav > ul > li > .menu.active span::before {
        opacity: 0;
    }
    header nav > ul > li > .menu.active span::after {
        background-color: #D82C2C;
        transform: translateY(-50%) rotate(180deg);
    }
}


/* ===============================================
   フッター
=============================================== */
footer {
    margin-top: auto;
	width: 100%;
  	display: flex;
    flex-direction: column;
    justify-content: center;
}
.foot_inner {
    width: 88%;
    margin: 0 auto;
}
@media screen and (max-width:768px){
    .foot_inner {
        width: 90%;
    }
}

#foot_menu_list {
    padding: 50px 0;
    background-color: #D82C2C;
}
#foot_menu_list a {
    color: #fff;
    position: relative;
}
#foot_menu_list a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #fff;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
}
#foot_menu_list a:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
}
#foot_menu_list .menu_box_list {
    display: flex;
    justify-content: space-between;
    gap: 0 3vw;
}
#foot_menu_list .menu_box_list .menu_col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
#foot_menu_list .link_none {
    font-size: 1.8rem;
    font-weight: bold;
    white-space: nowrap;
    padding: 0 0 0.3em 0;
    margin-bottom: 1em;
    color: #fff;
}
#foot_menu_list .link_l {
    font-size: 1.8rem;
    font-weight: bold;
    white-space: nowrap;
    padding: 0 0 0.3em 1.4em;
    margin-bottom: 1em;
    position: relative;
}
#foot_menu_list .link_l::before {
    content: "";
    width: 1em;
    height: 1em;
    background: url(../img/arrow_wh.svg) no-repeat center center / contain;
    display: inline-block;
    position: absolute;
    top: -0.2em;
    bottom: 0;
    left: 0;
    margin: auto;
}
#foot_menu_list .menu_list {
    display: flex;
    gap: 0 3vw;
}
#foot_menu_list .menu_list + .link_l {
    margin-top: 50px;
}
#foot_menu_list .menu_list li {
    font-size: 1.5rem;
    margin-bottom: 0.6em;
}
#foot_menu_list .link_s {
    margin-bottom: 0.6em;
    position: relative;
    padding-left: 1.2em;
}
#foot_menu_list .link_s::before {
    content: "・";
    position: absolute;
    top: 0;
    left: 0;
}
#foot_menu_list .menu_list > ul > li + .unit {
    margin-top: 25px;
}
#foot_menu_list .menu_list > ul > li > ul > li {
    margin-left: 2em;
}
#foot_menu_list .menu_list > ul > li > ul > li > ul {
    margin-top: 0.6em;
    margin-bottom: 0.8em;
}
#foot_menu_list .menu_list > ul > li > ul > li > ul > li {
    margin-left: 1em;
}
@media screen and (max-width:1500px){
    #foot_menu_list .menu_box_list,
    #foot_menu_list .menu_list {
        gap: 0 2vw;
    }
    #foot_menu_list .link_none,
    #foot_menu_list .link_l {
        font-size: 1.6rem;
    }
    #foot_menu_list .menu_list li {
        font-size: 1.1rem;
    }
}
@media screen and (max-width:1000px){
    #foot_menu_list .foot_inner {
        width: 96%;
    }
}
@media screen and (max-width:768px){
    #foot_menu_list {
        display: none;
    }
}

#foot_add {
    display: flex;
    align-items: center;
    gap: 0 20px;
    padding: 30px 0;
}
#foot_logo {
    width: 280px;
}
#foot_add .add {
    font-size: 1.6rem;
    line-height: 1.3em;
}
@media screen and (max-width:768px){
    #foot_add {
        justify-content: center;
        flex-wrap: wrap;
        padding: 30px 0 20px;
    }
    #foot_logo {
        width: 220px;
        max-width: 50%;
        margin: 10px 0 15px;
    }
    #foot_add .add {
        font-size: 1.1rem;
        line-height: 1.7em;
        text-align: center;
    }
}

#foot_bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0 30px;
}
#foot_menu {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
#foot_menu li {
	font-size: 1.6rem;
    position: relative;
}
#foot_menu li:not(:last-child) {
    margin-right: 2em;
}
#foot_menu li:not(:last-child)::after {
    content: "";
    width: 1px;
    height: 1em;
    background-color: #000;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -1em;
    margin: auto;
}
#foot_menu li a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #000;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
}
#foot_menu li a:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
}
#copyright {
	font-size: 1.6rem;
    margin-bottom: 10px;
}
@media screen and (max-width:1000px){
    #foot_menu li,
    #copyright {
        font-size: 1.2rem;
    }
}
@media screen and (max-width:768px){
    #foot_menu {
        width: 100%;
        flex-wrap: wrap;
        justify-content: center;
        margin-bottom: 15px;
    }
    #foot_menu li {
        width: auto;
        font-size: 1rem;
        margin-bottom: 0.3em;
        text-align: center;
        padding: 0 1em;
    }
    #foot_menu li:not(:last-child) {
        margin-right: 0;
    }
    #foot_menu li:not(:last-child)::after {
        right: 0;
    }
    #copyright {
        font-size: 1rem;
        margin: 0 auto 10px;
    }
}


/* ===============================================
   メインコンテンツ
=============================================== */
main {
    position: relative;
    margin-top: 90px;
}
main .inner {
    width: 1120px;
    max-width: 90%;
    margin: 0 auto;
}
main .text {
    font-size: 1.6rem;
    line-height: 1.8em;
    letter-spacing: 0.025em;
}
main .text + .text {
    margin-top: 1em;
}
@media screen and (max-width:768px){
    main {
        margin-top: 50px;
    }
    main .text {
        font-size: 1.4rem;
        line-height: 2em;
    }
}


/* ===============================================
   タイトル
=============================================== */
.ttl_1 {
    font-size: 6rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    line-height: 1;
}
.ttl_1 span {
    display: inline-block;
}
.ttl_1 span:first-child {
    margin-right: 40px;
}
.ttl_1 .sm {
    font-size: 0.33em;
}
@media screen and (max-width:768px){
    .ttl_1 {
        font-size: 5rem;
        letter-spacing: 0.01em;
    }
    .ttl_1 span:first-child {
        margin-right: 25px;
    }
}
@media screen and (max-width:400px){
    .ttl_1 {
        font-size: 11vw;
    }
}

.ttl_2 {
    font-size: 4rem;
    line-height: 1em;
    letter-spacing: 0.135em;
    font-weight: 600;
    position: relative;
}
.ttl_2 span {
    font-size: 0.5em;
    letter-spacing: 0.05em;
    display: block;
    margin: 0.3em 0;
}
@media screen and (max-width:768px){
    .ttl_2 {
        font-size: 4rem;
        letter-spacing: 0.01em;
    }
}
@media screen and (max-width:400px){
    .ttl_2 {
        font-size: 8vw;
    }
}

.ttl_3 {
    font-size: 4.5rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1.5em;
    margin-bottom: 35px;
}
.ttl_3 span {
    display: inline-block;
}
.ttl_3 span:first-child {
    margin-right: 20px;
}
.ttl_3 .sm {
    font-size: 0.44em;
    font-weight: normal;
    letter-spacing: 0.01em;
}
.ttl_3 .lead {
    font-size: 1.6rem;
    line-height: 1.8em;
    letter-spacing: 0.025em;
    font-weight: normal;
    display: block;
    margin-top: 15px;
}
@media screen and (max-width:1200px){
    .ttl_3 {
        font-size: 4rem;
    }
}
@media screen and (max-width:768px){
    .ttl_3 {
        font-size: 2.3rem;
        letter-spacing: 0.01em;
        margin-bottom: 30px;
    }
    .ttl_3 span:first-child {
        margin-right: 0;
    }
    .ttl_3 .sm {
        font-size: 0.6em;
        display: block;
        margin-top: 0.2em;
        line-height: 1.2em;
    }
    .ttl_3 .lead {
        font-size: 1.4rem;
    }
}

.ttl_4 {
    font-size: 3rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    line-height: 1.4em;
    margin-bottom: 20px;
}
@media screen and (max-width:768px){
    .ttl_4 {
        font-size: 2rem;
        font-weight: bold;
        margin-bottom: 15px;
    }
}

.ttl_5 {
    display: inline-block;
    min-width: 100px;
    font-size: 1.4rem;
    font-weight: bold;
    color: #fff;
    line-height: 1.25em;
    letter-spacing: 0.1em;
    text-align: center;
    padding: 0.4em 1em 0.3em;
    background-color: #D82C2C;
    border-radius: 100vh;
    margin-bottom: 15px;
}
@media screen and (max-width:768px){
    .ttl_5 {
        font-size: 1.2rem;
    }
}

.ttl_6 {
    font-size: 3rem;
    font-weight: bold;
    color: #fff;
    letter-spacing: 0.1em;
    line-height: 1.4em;
    padding: 0.8em 0.8em 0.8em 0;
    position: relative;
}
.ttl_6::before {
    content: "";
    width: 200%;
    height: 100%;
    display: block;
    border-radius: 15px;
    background-color: #D82C2C;
    position: absolute;
    top: 0;
    right: 0;
    z-index: -1;
}
@media screen and (max-width:768px){
    .ttl_6 {
        font-size: 2rem;
        background-color: #D82C2C;
        border-radius: 15px;
        padding: 0.5em 0.8em;
    }
    .ttl_6::before {
        content: none;
    }
}
.ttl_7 {
    font-size: 1.6rem;
    font-weight: bold;
    line-height: 1.4em;
    margin-bottom: 15px;
}

.ttl_8 {
    font-size: 2.5rem;
    line-height: 1.6em;
    font-weight: 600;
    margin-bottom: 20px;
}
@media screen and (max-width:768px){
    .ttl_8 {
        font-size: 1.8rem;
        margin-bottom: 10px;
    }
}

.ttl_9 {
    font-size: 6.4rem;
    line-height: 1.2em;
    font-weight: bold;
    margin-bottom: 20px;
}
.ttl_9 span {
    margin-right: 0.5em;
}
.ttl_9 small {
    font-size: 0.4em;
    display: inline-block;
}
.ttl_9 .img {
    margin-bottom: 0.7em;
}
@media screen and (max-width:768px){
    .ttl_9 {
        font-size: 5rem;
        margin-bottom: 20px;
    }
    .ttl_9 span {
        display: block;
        margin-right: 0;
    }
}
@media screen and (max-width:400px){
    .ttl_9 {
        font-size: 11vw;
    }
}

.ttl_10 {
    font-size: 2.5rem;
    line-height: 1.6em;
    font-weight: 600;
    margin-bottom: 40px;
    padding-top: 0.6em;
    position: relative;
}
.ttl_10::before {
    content: "";
    width: 5em;
    height: 4px;
    background-color: #D82C2C;
    position: absolute;
    top: 0;
    left: 0;
}
@media screen and (max-width:768px){
    .ttl_10 {
        font-size: 1.8rem;
        margin-bottom: 20px;
    }
}

/* ====================================
    リスト
==================================== */
.list_note > li {
    position: relative;
    line-height: 1.4;
    padding-left: 1.2em;
    margin-bottom: 0.5em;
}
.list_note > li:last-child {
    margin-bottom: 0;
}
.list_note > li::before {
    content: "※";
    position: absolute;
    top: 0;
    left: 0;
}
.list_note_nb {
    counter-reset: item;
}
.list_note_nb.count_2 { counter-reset: item 1; }
.list_note_nb.count_3 { counter-reset: item 2; }
.list_note_nb.count_4 { counter-reset: item 3; }
.list_note_nb.count_5 { counter-reset: item 4; }
.list_note_nb > li {
    position: relative;
    line-height: 1.4;
    padding-left: 2.2em;
    margin-bottom: 0.5em;
}
.list_note_nb > li:last-child {
margin-bottom: 0;
}
.list_note_nb > li::before {
    counter-increment: item;
    content: "※"counter(item);
    position: absolute;
    top: 0;
    left: 0;
}
.list_1 > li {
    position: relative;
    padding-left: 1em;
    margin-bottom: 0.3em;
}
.list_1 > li:last-child {
    margin-bottom: 0;
}
.list_1 > li::before {
    content: "・";
    width: 1em;
    height: 1em;
    position: absolute;
    top: 0;
    left: 0;
}
.list_2 > li {
    position: relative;
    line-height: 1.4;
    padding-left: 1.5em;
    margin-bottom: 0.5em;
}
.list_2 > li::before {
    content: "";
    width: 1em;
    height: 1em;
    background: url(../img/arrow_bk.svg) no-repeat center center / contain;
    display: inline-block;
    position: absolute;
    top: 0.1em;
    left: 0;
    margin: auto;
}
.list_3 > li {
    position: relative;
    padding-left: 1em;
    margin-bottom: 0.3em;
}
.list_3 > li:last-child {
    margin-bottom: 0;
}
.list_3 > li::before {
    content: "●";
    width: 1em;
    height: 1em;
    position: absolute;
    top: 0;
    left: 0;
}
.list_4 > li {
    position: relative;
    line-height: 1.4;
    padding-left: 1.5em;
    margin-bottom: 0.5em;
}
.list_4 > li::before {
    content: "";
    width: 1em;
    height: 1em;
    background: url(../img/arrow_wh.svg) no-repeat center center / contain;
    display: inline-block;
    position: absolute;
    top: 0.1em;
    left: 0;
    margin: auto;
}
.list_4 > li > a {
    position: relative;
    color: currentColor;
}
.list_4 > li > a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #fff;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
}
.list_4 > li > a:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
}

.list_nb {
    counter-reset: item;
}
.list_nb.count_2 { counter-reset: item 1; }
.list_nb.count_3 { counter-reset: item 2; }
.list_nb.count_4 { counter-reset: item 3; }
.list_nb.count_5 { counter-reset: item 4; }
.list_nb > li {
    position: relative;
    line-height: 1.6em;
    padding-left: 1.2em;
    margin-bottom: 0.5em;
}
.list_nb > li:last-child {
margin-bottom: 0;
}
.list_nb > li::before {
    counter-increment: item;
    content: counter(item)".";
    position: absolute;
    top: 0;
    left: 0;
}


/* ====================================
    テーブル
==================================== */
.table_1 {
    width: 100%;
}
.table_1 tr {
    border-bottom: 1px solid #000;
    font-size: 2rem;
}
.table_1 tr:first-child {
    border-top: 1px solid #000;
}
.table_1 th, .table_1 td {
    font-size: 1.6rem;
    line-height: 1.8em;
    letter-spacing: 0.1em;
    font-weight: normal;
    vertical-align: top;
}
.table_1 th {
    padding: 1.3em 0 1.3em 1.5em;
}
.table_1 td {
    padding: 1.3em 4em 1.3em 1.5em;
}
@media screen and (max-width:768px){
    .table_1 th, .table_1 td {
        font-size: 1.4rem;
    }
    .table_1 th {
        padding: 1.3em 0 1.3em 1em;
    }
    .table_1 td {
        padding: 1.3em 0 1.3em 1em;
    }
}

.table_2 {
    width: 100%;
}
.table_2 tr {
    border-bottom: 1px solid #000;
    font-size: 2rem;
}
.table_2 tr:first-child {
    border-top: 1px solid #000;
}
.table_2 th, .table_2 td {
    font-size: 1.6rem;
    line-height: 1.8em;
    letter-spacing: 0.1em;
    font-weight: normal;
    vertical-align: top;
    padding: 1.2em 0.8em;
}
.table_2 tr td:not(:first-child) {
    padding: 1.2em 0.5em;
}
.table_2 th {
    background-color: #F2F2F2;
    font-weight: 600;
    text-align: center;
}
@media screen and (max-width:768px){
    .table_2 th, .table_2 td {
        font-size: 1.4rem;
    }
}

.table_3 {
    width: 100%;
}
.table_3 tr {
    border-bottom: 1px solid #3E3A39;
}
.table_3 tr:first-child {
    border-top: 1px solid #3E3A39;
}
.table_3 th, .table_3 td {
    font-size: 1.6rem;
    line-height: 1.6em;
    font-weight: normal;
}
.table_3 th {
    line-height: 1.3em;
    color: #fff;
    background-color: #707070;
    padding: 0.3em;
    text-align: center;
    vertical-align: middle;
}
.table_3 th:not(:first-child) {
    border-left: 1px solid #fff;
}
.table_3 td {
    padding: 0.8em 0.5em;
}
.table_3 td:not(:first-child) {
    border-left: 1px solid #3E3A39;
}
@media screen and (max-width:768px){
    .table_3 th, .table_3 td {
        font-size: 1.4rem;
    }
}


/* ===============================================
   テーブル＋スクロール
=============================================== */
.scroll_table {
    overflow-y: hidden !important;
}
.scroll_table table {
    min-width: 830px;
}
@media screen and (max-width: 1025px){
    .scroll_table {
        max-width: 100%;
        min-height: 125px;
        overflow-x: scroll;
        padding: 0 0 15px;
        margin-top: 1em;
    }
    .scroll_table table {
        max-width: 1100px;
    }
    .scroll_table::-webkit-scrollbar {
        height: 22px;
        background: #F2F2F2;
    }
    .scroll_table::-webkit-scrollbar-track {
        margin-left: 2px;
        margin-right: 2px;
    }
    .scroll_table::-webkit-scrollbar-thumb {
        background-color: #707070;
        border-radius: 15px;
        border: 6px solid #F2F2F2;
    }
}


/* ====================================
    アコーディオン
==================================== */
.ac_unit {
    border-top: 1px solid #000;
}
.ac_unit:last-child {
    border-bottom: 1px solid #000;
}
.ac_btn {
    font-size: 2.4rem;
    line-height: 1.7em;
    padding: 20px 70px 20px 20px;
    color: #000;
    background-color: #fff;
    cursor: pointer;
    position: relative;
    transition: 0.5s;
}
.ac_btn::before,
.ac_btn::after {
    content: '';
    display: block;
    width: 25px;
    height: 2px;
    background-color: #000;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 20px;
    margin: auto;
    transition: 0.5s;
}
.ac_btn::after {
    background-color: #000;
    transform: translateY(-50%) rotate(90deg);
    top: 2px;
}
.ac_btn:hover,
.ac_btn.open {
    color: #fff;
    background-color: #D82C2C;
}
.ac_btn:hover::before,
.ac_btn:hover::after,
.ac_btn.open::before,
.ac_btn.open::after {
    background-color: #fff;
}
.ac_btn.open::after {
    transform: rotate(0);
    transition: 0.5s;
}
.ac_cont {
    display: none;
    position: relative;
}
@media screen and (max-width:768px){
    .ac_btn {
        font-size: 1.8rem;
        line-height: 1.6em;
        padding: 17px 54px 17px 16px;
    }
    .ac_btn::before,
    .ac_btn::after {
        width: 20px;
        right: 17px;
    }
}


/* ===============================================
   電話
=============================================== */
@media screen and (min-width:768px){
    a[href^="tel:"]{
        pointer-events: none;
    }
}


/* ===============================================
   テキストリンク動作
=============================================== */
/*下線左→右*/
a.link_anim,
.link_anim a {
    position: relative;
}
a.link_anim::after,
.link_anim a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #000;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
}
a.link_anim:hover::after,
.link_anim a:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
}

/*青色下線*/
.link_bl a,
a.link_bl {
    color: #0A00F8;
    text-decoration: underline;
}
.link_bl a:hover,
a.link_bl:hover {
    opacity: 0.7;
    text-decoration: none;
}

/*黒色下線*/
.link_bkl a,
a.link_bkl {
    text-decoration: underline;
}
.link_bkl a:hover,
a.link_bkl:hover {
    color: #D82C2C;
    text-decoration: none;
}

/*赤*/
.link_red a,
a.link_red {
    color: #D82C2C;
}
.link_red a:hover,
a.link_red:hover {
    text-decoration: underline;
}


/* ===============================================
   ボタンリンク
=============================================== */
.details_link a,
.details_link button {
    width: 260px;
    max-width: 100%;
    height: 50px;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
    padding-right: 40px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: .3s;
}
.details_link a.btn_red,
.details_link a.btn_wh:hover,
.details_link a.btn2_red,
.details_link a.btn2_wh:hover,
.details_link button.btn_red,
.details_link button.btn_wh:hover,
.details_link button.btn2_red,
.details_link button.btn2_wh:hover {
    color: #fff;
    background-color: #D82C2C;
    border: 1px solid #fff;
}
.details_link a.btn_wh,
.details_link a.btn_red:hover,
.details_link a.btn2_wh,
.details_link a.btn2_red:hover,
.details_link button.btn_wh,
.details_link button.btn_red:hover,
.details_link button.btn2_wh,
.details_link button.btn2_red:hover {
    color: #D82C2C;
    background-color: #fff;
    border: 1px solid #D82C2C;
}
.details_link a::before,
.details_link button::before {
    content: "";
    width: 33px;
    max-width: 15%;
    height: 33px;
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    transition: .3s;
}
.details_link a.btn_red::before,
.details_link a.btn_wh:hover::before,
.details_link button.btn_red::before,
.details_link button.btn_wh:hover::before {
    background: url("../img/arrow_disc_wh.svg") no-repeat center center / contain;
}
.details_link a.btn_wh::before,
.details_link a.btn_red:hover::before,
.details_link button.btn_wh::before,
.details_link button.btn_red:hover::before {
    background: url("../img/arrow_disc_red.svg") no-repeat center center / contain;
}
.details_link a.btn2_red::before,
.details_link a.btn2_wh:hover::before,
.details_link button.btn2_red::before,
.details_link button.btn2_wh:hover::before {
    background: url("../img/icon_link_wh.svg") no-repeat center center / contain;
}
.details_link a.btn2_wh::before,
.details_link a.btn2_red:hover::before,
.details_link button.btn2_wh::before,
.details_link button.btn2_red:hover::before {
    background: url("../img/icon_link_red.svg") no-repeat center center / contain;
}
@media screen and (max-width:768px){
    .details_link a,
    .details_link button {
        font-size: 1.6rem;
        margin: 0 auto;
        padding: 0.5em 1.5em 0.6em;
    }
}

.details_link_l a {
    width: 100%;
    max-width: 100%;
    height: 75px;
    font-size: 2.5rem;
    font-weight: 600;
    text-align: center;
    padding-right: 3em;
    border-radius: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: .3s;
}
.details_link_l a.btn_red,
.details_link_l a.btn_wh:hover,
.details_link_l a.btn2_red,
.details_link_l a.btn2_wh:hover {
    color: #fff;
    background-color: #D82C2C;
    border: 1px solid #fff;
}
.details_link_l a.btn_wh,
.details_link_l a.btn_red:hover,
.details_link_l a.btn2_wh,
.details_link_l a.btn2_red:hover {
    color: #D82C2C;
    background-color: #fff;
    border: 1px solid #D82C2C;
}
.details_link_l a span {
    display: inline-block;
    position: relative;
}
.details_link_l a span::before {
    content: "";
    width: 1.5em;
    max-width: 15%;
    height: 1.5em;
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: -3em;
    margin: auto;
    transition: .3s;
}
.details_link_l a.btn_red span::before,
.details_link_l a.btn_wh:hover span::before {
    background: url("../img/arrow_disc_wh.svg") no-repeat center center / contain;
}
.details_link_l a.btn_wh span::before,
.details_link_l a.btn_red:hover span::before {
    background: url("../img/arrow_disc_red.svg") no-repeat center center / contain;
}
.details_link_l a.btn2_red span::before,
.details_link_l a.btn2_wh:hover span::before {
    background: url("../img/icon_link_wh.svg") no-repeat center center / contain;
}
.details_link_l a.btn2_wh span::before,
.details_link_l a.btn2_red:hover span::before {
    background: url("../img/icon_link_red.svg") no-repeat center center / contain;
}
@media screen and (max-width:768px){
    .details_link_l a {
        height: 60px;
        font-size: 1.6rem;
        margin: 0 auto;
        padding: 0.5em 1.5em 0.6em 0;
    }
    .details_link_l a span::before {
        right: -2em;
    }
}

.contact_link {
    width: 725px;
    max-width: 100%;
    padding: 15px 20px;
    margin: 0 auto;
    color: #fff;
    background-color: #D82C2C;
    border-radius: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 40px;
}
.contact_link.wh {
    color: #D82C2C;
    background-color: #fff;
    border: 1px solid #D82C2C;
}
.contact_link .link_wrap {
    width: calc(50% - 20px);
    display: flex;
    align-items: center;
    position: relative;
}
.contact_link .link_wrap:first-child::after {
    content: "";
    width: 0;
    height: 100%;
    border-right: 1px solid #fff;
    position: absolute;
    top: 0;
    right: -20px;
}
.contact_link.wh .link_wrap:first-child::after {
    border-right: 1px solid #D82C2C;
}
.contact_link .link_icon {
    width: 50px;
    max-width: 16%;
    margin-right: 10px;
}
.contact_link .link_txt {
    flex: 1;
    max-width: calc(84% - 10px);
}
.contact_link .link_txt p {
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    white-space: nowrap;
    margin-bottom: 5px;
}
.contact_link .tel_nb {
    font-size: 3.3rem;
    font-weight: bold;
    letter-spacing: 0.08em;
    line-height: 1;
    white-space: nowrap;
    color: #fff;
}
.contact_link.wh .tel_nb {
    color: #D82C2C;
}
.contact_link .mail_btn {
    width: 260px;
    max-width: 100%;
    height: 27px;
    border: 1px solid #fff;
    border-radius: 20px;
    color: #fff;
    background-color: #D82C2C;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-right: 30px;
    margin: 7px 0 3px;
    position: relative;
}
.contact_link.wh .mail_btn {
    border: 1px solid #D82C2C;
    color: #D82C2C;
    background-color: #fff;
}
.contact_link .mail_btn::after {
    content: "";
    width: 16px;
    height: 16px;
    background: url("../img/arrow_wh.svg") no-repeat center center / contain;
    position: absolute;
    top: -2px;
    bottom: 0;
    right: 10px;
    margin: auto;
}
.contact_link.wh .mail_btn::after {
    background: url("../img/arrow_red.svg") no-repeat center center / contain;
}
.contact_link .mail_btn:hover {
    color: #D82C2C;
    background-color: #fff;
}
.contact_link.wh .mail_btn:hover {
    color: #fff;
    background-color: #D82C2C;
}
.contact_link .mail_btn:hover::after {
    background: url("../img/arrow_red.svg") no-repeat center center / contain;
}
.contact_link.wh .mail_btn:hover::after {
    background: url("../img/arrow_wh.svg") no-repeat center center / contain;
}
@media screen and (max-width:1200px){
    .contact_link .link_txt p {
        font-size: 1.3vw;
    }
    .contact_link .tel_nb {
        font-size: 2.7vw;
    }
    .contact_link .mail_btn {
        width: 100%;
        font-size: 1.2vw;
    }
}
@media screen and (max-width:1000px){
    .contact_link {
        padding: 10px 15px;
        gap: 0 30px;
    }
    .contact_link .link_wrap:first-child::after {
        right: -15px;
    }
}
@media screen and (max-width:768px){
    .contact_link {
        width: 360px;
        padding: 0 18px;
        display: block;
    }
    .contact_link .link_wrap {
        width: 100%;
        padding: 15px 0;
    }
    .contact_link .link_wrap:first-child::after,
    .contact_link.wh .link_wrap:first-child::after {
        display: none;
    }
    .contact_link .link_wrap.tel {
        border-bottom: 1px solid #fff;
    }
    .contact_link.wh .link_wrap.tel {
        border-bottom: 1px solid #D82C2C;
    }
    .contact_link .link_txt p {
        font-size: 1.5rem;
    }
    .contact_link .tel_nb {
        font-size: 3.2rem;
    }
    .contact_link .mail_btn {
        width: 260px;
        font-size: 1.3rem;
    }
}
@media screen and (max-width:400px){
    .contact_link .link_txt p,
    .contact_link .mail_btn {
        font-size: 3.8vw;
    }
    .contact_link .tel_nb {
        font-size: 7.8vw;
    }
}


/* ===============================================
   フォーム
=============================================== */
::placeholder {
    color: #CBCBCB;
}
input[type=text], input[type=email], input[type=date], select {
    width: 100%;
    height: 46px;
    background-color: #fff;
    border: 1px solid #707070;
    font-size: 1.5rem;
    padding: 10px 15px;
}
textarea {
    width: 100%;
    background-color: #fff;
    border: 1px solid #707070;
    font-size: 1.5rem;
    padding: 10px 15px;
}
select {
    cursor: pointer;
    padding-right: 30px;
    appearance: none;
}
input[type=date] {
    cursor: pointer;
}
.select_wrap {
    position: relative;
}
.select_wrap::after {
    content: '';
    position: absolute;
    right: 1.8em;
    top: -0.2em;
    bottom: 0;
    margin: auto 0;
    display: block;
    width: 1em;
    height: 1em;
    border-right: 1px solid #000;
    border-bottom: 1px solid #000;
    transform: rotate(45deg);
    pointer-events: none;
}
form dt {
    font-size: 1.6rem;
    font-weight: normal;
    margin-bottom: 0.5em;
}
form dt .must {
    color: #FF0000;
}
form dt .note {
    font-size: 1.2rem;
    line-height: 1.4em;
    margin-top: 0.6em;
    display: block;
    color: #0000AC;
}
form dd {
    font-size: 1.6rem;
    line-height: 1.4em;
    font-weight: normal;
}
form dd + dt {
    margin-top: 20px;
}
@media screen and (max-width:768px){
    input[type=text] {
        height: 40px;
        font-size: 1.3rem;
        padding: 8px 13px;
    }
    form dt,
    form dd {
        font-size: 1.4rem;
    }
    form dd + dt {
        margin-top: 17px;
    }
}
form .btn_area {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0 25px;
}
.form_btn {
    width: 220px;
    max-width: 40%;
    height: 50px;
    font-size: 1.6rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-align: center;
    color: #fff;
    background-color: #D82C2C;
    border: 1px solid #D82C2C;
    padding-right: 40px;
    margin-top: 40px;
    border-radius: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    transition: .3s;
}
.form_btn::before {
    content: "";
    width: 33px;
    height: 33px;
    background: url("../img/arrow_disc_wh.svg") no-repeat center center / contain;
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 15px;
    margin: auto;
    transition: .3s;
}
.form_btn:hover {
    color: #D82C2C;
    background-color: #fff;
}
.form_btn:hover::before {
    background: url("../img/arrow_disc_red.svg") no-repeat center center / contain;
}
.form_btn.submited {
	pointer-events: none;
}
input[type=checkbox] {
  display: none;
}
.check {
  cursor: pointer;
}
.check input[type="checkbox"] span {
    position: relative;
    display: block;
}
.check span.checktxt {
    width: 20px;
    height: 20px;
    margin-right: 8px;
    vertical-align: bottom;
    display: block;
    position: relative;
}
.check span.checktxt::after {
    width: 20px;
    height: 20px;
    background: #fff;
    border: 1px solid #555;
    border-radius: 3px;
    box-sizing: border-box;
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 0;
    margin: auto;
}
.check span.checktxt::before {
    content: '';
    display: block;
    position: absolute;
    z-index: 1;
    top: 3px;
    left: 3px;
    width: 15px;
    height: 9px;
    border-bottom: 3px solid #D82C2C;
    border-left: 3px solid #D82C2C;
    opacity: 0.1;
    transform: rotate(-45deg);
}
.check input[type="checkbox"]:checked + span::before {
  opacity: 1;
}
.select_wrap.inline_form {
    position: relative;
    display: inline-block;
    line-height: 1;
}
input[type="text"].inline_form,
input[type="date"].inline_form,
.select_wrap.inline_form select {
    height: 25px;
    padding: 3px 10px;
    display: inline-block;
    vertical-align: baseline;
}
.select_wrap.inline_form select {
    padding-right: 20px;
}
.select_wrap.inline_form::after {
    top: -0.4em;
    right: 0.8em;
    width: 0.6em;
    height: 0.6em;
}
input[type="text"].inline_form.w160,
input[type="date"].inline_form.w160,
.select_wrap.inline_form.w160 select {
    width: 160px;
    max-width: 100%;
    margin: 0 3px;
}
input[type="text"].inline_form.w80 {
    width: 80px;
    margin: 0 3px;
}
input[type="text"].inline_form.w30 {
    width: 30px;
    margin: 0 3px;
}
select:disabled,
input[type="text"]:disabled {
	background-color: #ccc;
	color: #999;
	cursor: default;
}
.f_flex {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    margin-bottom: -7px;
}
.f_item {
    width: 49.5%;
    margin-bottom: 7px;
}
.f_item.w100 {
    width: 100%;
}
.f_flex2_wrap {
    display: flex;
    justify-content: space-between;
}
.f_flex2 {
    width: 49.5%;
}
.f_item2 {
    margin-bottom: 7px;
}
.txt_form {
    display: flex;
    align-items: center;
    white-space: nowrap;
}
.f_flex2_1 .tf_txt {
    width: 9em;
}
.f_flex2_2 .tf_txt {
    width: 10em;
}
.form_mt {
    margin-top: 17px;
}
input[type=radio] {
    display: none;
}
.radio {
    cursor: pointer;
    position: relative;
    padding-left: 1.2em;
}
.radio span.radiotxt {
    width: 14px;
    height: 14px;
    margin-right: 5px;
    display: block;
    position: absolute;
    top: 0.15em;
    left: 0;
    margin: auto;
}
.radio span.radiotxt::after {
    width: 14px;
    height: 14px;
    background: #fff;
    border: 1px solid #707070;
    border-radius: 50%;
    box-sizing: border-box;
    content: '';
    display: inline-block;
    position: absolute;
    top: 0;
    left: 0;
}
.radio span.radiotxt::before {
    content: '';
    display: block;
    z-index: 1;
    width: 100%;
    height: 100%;
    /* background-color: #D82C2C; */
	border: 5px solid #D82C2C;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}
.radio input[type="radio"]:checked + span::before {
    opacity: 1;
}
.error_wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px 10px;
}
.date_wrap {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 5px 10px;
}
.datetime {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
}
.form_note {
    margin-top: 10px;
}
@media screen and (max-width:768px){
    form .btn_area {
        display: block;
    }
    .form_btn {
        max-width: 100%;
        margin: 30px auto 0;
        padding-right: 20px;
    }
    .f_item {
        width: 100%;
    }
    .f_flex2_wrap {
        display: block;
    }
    .f_flex2 {
        width: 100%;
    }
    .f_flex2_1 .tf_txt,
    .f_flex2_2 .tf_txt {
        width: 10em;
    }
}

/*同意ボタン*/
#form_privacy_policy .consent_area {
    font-size: 1.8rem;
    font-weight: 600;
    line-height: 1.5em;
    display: flex;
    justify-content: center;
    align-items: center;
}
button[type=submit]:disabled {
    cursor: auto;
    background-color: #787878;
    border: 1px solid #787878;
}
button[type=submit]:disabled:hover {
    color: #fff;
}
button[type=submit]:disabled:hover::before {
    background: url("../img/arrow_disc_wh.svg") no-repeat center center / contain;
}
@media screen and (max-width:768px){
    #form_privacy_policy .consent_area {
        font-size: 1.4rem;
    }
}

/*エラーメッセージ*/
.err input:not([type=hidden]),
.err textarea,
.err select,
.err .radio span:after,
.err .check span.checktxt:after,
input.err ,
select.err {
    border: solid 2px #FF0000 !important;
}
.err_msg {
    color: #FF0000;
    font-weight: bold;
    line-height: 1.5em;
    font-size: 1.3rem;
    margin: 0.2em 0 0.5em;
}
.f_flex + .err_msg {
    margin-top: 1em;
}
.err_msg_head {
    color: #FF0000;
    font-weight: bold;
    line-height: 1.5em;
    font-size: 1.4rem;
    margin: 0 0 40px;
}

/* ============
   確認画面
============== */
#contact_cont {
    padding-bottom: 150px;
}
#confirm {
    width: 1020px;
}
#confirm_box {
    width: 100%;
    background: #fff;
    border: 1px solid #707070;
    padding: 60px;
}
.confirm_ttl {
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    text-align: center;
    margin-bottom: 45px;
}
#confirm_box table {
    width: 100%;
}
#confirm_box table tr {
    border-bottom: 1px solid #707070;
}
#confirm_box table tr:first-child {
    border-top: 1px solid #707070;
}
#confirm_box th, #confirm_box td {
    font-size: 1.8rem;
    font-weight: normal;
    line-height: 1.8em;
    word-break: break-all;
}
#confirm_box th {
    width: 16em;
    text-align: right;
    padding: 25px 50px 25px 0;
}
#confirm_box td {
    padding: 25px 50px;
}
.form_btn.return {
    padding: 0 0 0 40px;
}
.form_btn.return::before {
    right: inherit;
    left: 15px;
    transform: scaleX(-1);
}
#confirm form .btn_area {
    flex-direction: row-reverse;
}
#form_privacy_policy {
    margin: 60px 0 10px;
}
@media screen and (max-width:1200px){
    .confirm_ttl {
        font-size: 2.5rem;
    }
    #confirm_box th, #confirm_box td {
        font-size: 1.6rem;
    }
    #confirm_box th {
        width: 15em;
        padding: 25px 25px 25px 0;
    }
    #confirm_box td {
        padding: 25px;
    }
}
@media screen and (max-width:768px){
    #contact_cont {
        padding-bottom: 50px;
    }
    #confirm_box {
        padding: 20px 15px;
    }
    #form_privacy_policy {
        margin: 30px 10px 10px;
    }
    .confirm_ttl {
        font-size: 1.8rem;
        line-height: 1.4em;
        letter-spacing: 0.01em;
        margin-bottom: 30px;
    }
    #confirm_box th, #confirm_box td {
        font-size: 1.4rem;
        display: block;
    }
    #confirm_box th {
        width: 100%;
        text-align: left;
        padding: 15px 0;
    }
    #confirm_box td {
        padding: 0 15px 20px;
    }
}

/* ============
   完了画面
============== */
#thanks_txt {
    font-size: 1.8rem;
    line-height: 1.9em;
    padding-bottom: 1em;
}
#thanks .details_link a {
    margin: 50px auto 0;
}
@media screen and (max-width:1200px){
    #thanks_txt {
        font-size: 1.6rem;
    }
}
@media screen and (max-width:768px){
    #thanks_txt {
        font-size: 1.4rem;
        line-height: 1.8em;
    }
    #thanks .details_link a {
        margin: 30px auto 0;
    }
}


/* ===============================================
   pagetop
=============================================== */
#pagetop {
	opacity: 0;
    position: fixed;
    right: 20px;
    bottom: 40px;
    z-index: 9999;
    cursor: pointer;
    transition: .4s;
    background-color: rgba(216, 44, 44, 0.5);
    border: 1px solid #fff;
	width: 60px;
	height: 60px;
    border-radius: 50%;
}
#pagetop::before {
    content: '';
    display: inline-block;
    width: 0;
    height: 0;
    margin: 0 10px;
    border-top: 15px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 15px solid #fff;
    border-left: 10px solid transparent;
    position: absolute;
    top: -20px;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}
#pagetop:hover {
    background-color: #D82C2C;
}
#pagetop.fix {
	opacity: 0.9;
    display: block;
}
@media screen and (max-width:768px){
	#pagetop {
		right: 2vw;
        width: 9vw;
        height: 9vw;
        max-width: 60px;
        max-height: 60px;
	}
    #pagetop::before {
        border-top: 4vw solid transparent;
        border-right: 2vw solid transparent;
        border-bottom: 4vw solid #fff;
        border-left: 2vw solid transparent;
        top: -5vw;
    }
	#pagetop a {
		max-width: 12vw;
	}
}
@media screen and (max-width:400px){
    #pagetop {
        bottom: 25px;
    }
}


/* ===============================================
   animation
=============================================== */
.animation .animation_inner {
	position: relative;
	width: 100%;
	height: 100%;
	transition: all 1s ease-out;
}
.animation.hide .animation_inner {
	display: none;
}
.animation.fadein .animation_inner {
	transition: all 1.5s ease-out;
	opacity: 0;
}
.animation.slideup .animation_inner {
	top: 50px;
	opacity: 0;
}
.animation.leftin .animation_inner {
	transition: all 1.2s ease-out;
	left: -4vw;
	opacity: 0;
}
.animation.rightin .animation_inner {
	transition: all 1.2s ease-out;
	left: 4vw;
	opacity: 0;
}
.animation.centerin .animation_inner {
	transition: all 2s ease-out;
    transform: scale(0);
}
.animation.default .animation_inner {
	top: 0;
	left: 0;
	opacity: 1;
    transform: scale(1);
}
.animation .animation_inner.delay1 { transition-delay: .2s; }
.animation .animation_inner.delay2 { transition-delay: .4s; }
.animation .animation_inner.delay3 { transition-delay: .6s; }
.animation .animation_inner.delay4 { transition-delay: .8s; }
.animation .animation_inner.delay5 { transition-delay: 1s; }
.animation .animation_inner.delay6 { transition-delay: 1.2s; }
.animation .animation_inner.delay7 { transition-delay: 1.4s; }
.animation .animation_inner.delay8 { transition-delay: 1.6s; }
.animation .animation_inner.delay9 { transition-delay: 1.8s; }
.animation .animation_inner.delay10 { transition-delay: 2s; }
.animation .animation_inner.delay11 { transition-delay: 2.2s; }

@media screen and (max-width:768px){
    .animation .animation_inner.delay1,
    .animation .animation_inner.delay2,
    .animation .animation_inner.delay3,
    .animation .animation_inner.delay4,
    .animation .animation_inner.delay5,
    .animation .animation_inner.delay6,
    .animation .animation_inner.delay7,
    .animation .animation_inner.delay8,
    .animation .animation_inner.delay9,
    .animation .animation_inner.delay10,
    .animation .animation_inner.delay11 {
        transition-delay: 0s;
    }
}

.animation.order_left .animation_inner span {
	transition: all 1.5s ease-out;
	opacity: 0;
}
/*.animation.default .animation_inner span {
    opacity: 1;
}*/
.animation.order_left span:nth-child(2) { transition-delay: .3s;}
.animation.order_left span:nth-child(3) { transition-delay: .6s;}
.animation.order_left span:nth-child(4) { transition-delay: .9s;}
.animation.order_left span:nth-child(5) { transition-delay: 1.2s;}
.animation.order_left span:nth-child(6) { transition-delay: 1.5s;}
.animation.order_left span:nth-child(7) { transition-delay: 1.8s;}
.animation.order_left span:nth-child(8) { transition-delay: 2.1s;}
.animation.order_left span:nth-child(9) { transition-delay: 2.4s;}
.animation.order_left span:nth-child(10) { transition-delay: 2.7s;}
.animation.order_left span:nth-child(11) { transition-delay: 3.0s;}
.animation.order_left span:nth-child(12) { transition-delay: 3.3s;}
.animation.order_left span:nth-child(13) { transition-delay: 3.6s;}
.animation.order_left span:nth-child(14) { transition-delay: 3.9s;}
.animation.order_left span:nth-child(15) { transition-delay: 4.2s;}
.animation.order_left span:nth-child(16) { transition-delay: 4.5s;}
.animation.order_left span:nth-child(17) { transition-delay: 4.8s;}


/* ===============================================
   下層タイトルエリア
=============================================== */
#heading {
    width: 100%;
    height: 300px;
    position: relative;
    z-index: 1;
}
#heading .head_bg {
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
}
#heading .head_bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
#page_ttl {
    height: 100%;
    color: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
#page_ttl h1 {
    font-size: 4.5rem;
    font-weight: bold;
    letter-spacing: 0.1em;
    line-height: 1em;
    margin-bottom: 0.3em;
}
#page_ttl h1 span {
    font-size: 1.8rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    display: inline-block;
    margin-left: 1em;
}
#page_ttl .lead {
    font-size: 1.7rem;
    font-weight: 600;
    line-height: 1.9em;
}
@media screen and (max-width:768px){
    #heading {
        height: 550px;
        max-height: calc(100vh - 50px);
    }
    #page_ttl {
        padding: 25px 0;
        justify-content: flex-start;
    }
    #page_ttl h1 {
        font-size: 8vw;
        margin-top: 0.2em;
        margin-bottom: 20px;
    }
    #page_ttl h1 span {
        font-size: 3vw;
        display: block;
        margin: 0.4em 0 0;
    }
    #page_ttl .lead {
        font-size: 1.4rem;
        line-height: 2em;
    }
}


/* ===============================================
   パンくず
=============================================== */
#breadcrumb {
    height: 150px;
    padding-top: 20px;
}
#breadcrumb ul {
    font-size: 1.6rem;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
#breadcrumb ul li:not(:last-child) {
    margin-right: 3em;
    position: relative;
}
#breadcrumb ul li:not(:last-child)::before {
    content: ">";
    position: absolute;
    top: 0;
    right: -1.7em;
}
#breadcrumb ul li a {
    position: relative;
}
#breadcrumb ul li a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 1px;
    background-color: #000;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
}
#breadcrumb ul li a:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
}
@media screen and (max-width:768px){
    #breadcrumb {
        height: auto;
        margin-bottom: 50px;
        padding-top: 0;
    }
    #breadcrumb ul {
        display: none;
        font-size: 1.2rem;
    }
}


/* ===============================================
   下層メインコンテンツ
=============================================== */
main .s_inner {
    width: 1120px;
    max-width: 90%;
    margin: 0 auto;
    padding-top: 150px;
    padding-bottom: 150px;
    padding-right: 285px;
}
main .s_inner.fst {
    padding-top: 0;
}
#wrapper {
    width: 100%;
    position: relative;
}
.sec_lead {
    font-size: 1.6rem;
    line-height: 1.8em;
    letter-spacing: 0.1em;
    margin-bottom: 100px;
}
.sec_lead_em {
    font-size: 1.8rem;
    line-height: 1.8em;
    letter-spacing: 0.1em;
    font-weight: bold;
    margin-bottom: 15px;
}
.sec_lead .lead_img,
.block .lead_img {
    width: 100%;
    aspect-ratio: 835 / 280;
    margin-top: 50px;
}
.sec_lead .lead_img img,
.block .lead_img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
@media screen and (max-width:1200px){
    main .s_inner {
        padding-right: 24%;
    }
}
@media screen and (max-width:768px){
    main .s_inner {
        padding: 50px 0;
    }
    .sec_lead {
        font-size: 1.4rem;
        margin-bottom: 70px;
    }
    .sec_lead_em {
        font-size: 1.6rem;
        margin-bottom: 10px;
    }
    .sec_lead .lead_img,
    .block .lead_img {
        margin-top: 30px;
    }
}


/* ===============================================
   下層サイドナビ
=============================================== */
#side_nav {
    position: absolute;
    top:0;
    left: 0;
    right: 0;
    opacity: 1;
    transition: opacity .2s;
    pointer-events: none;
}
#side_nav.fixed {
    position: fixed;
    top: 100px;
}
#side_nav.hide {
    opacity: 0;
}

#side_nav > ul {
    width: 210px;
    max-width: 19%;
    position: relative;
    top:0;
    left: 81%;
    pointer-events: auto;
}
#side_nav > ul > li {
    width: calc(106% + ((100vw - 1120px) / 2));
    border-bottom: 1px solid #707070;
}
#side_nav > ul li:first-child {
    border-top: 1px solid #707070;
}
#side_nav > ul > li a {
    width: 100%;
    height: 84px;
    max-height: 10vh;
    font-size: 1.6rem;
    font-weight: 600;
    line-height: 1.3em;
    display: flex;
    align-items: center;
    padding: 0.5em 1.5em;
    background-color: #fff;
}
#side_nav > ul > li a:hover {
    color: #fff;
    background-color: #D82C2C;
}
#side_nav > ul > li > ul {
    width: 100%;
    display: none;
}
#side_nav > ul > li > ul li a {
    background-color: #F2F2F2;
}
#side_nav > ul > li > ul li:not(:first-child) {
    border-top: 1px solid #707070;
}
#side_nav > ul > li.has_submenu > a {
    position: relative;
    padding-right: 15%;
}
#side_nav > ul > li.has_submenu > a::before,
#side_nav > ul > li.has_submenu > a::after {
    content: "";
    width: 1em;
    height: 1px;
    background-color: #000;
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10%;
    margin: auto;
    transition: all 0.3s;
}
#side_nav > ul > li.has_submenu > a::after {
    transform: rotate(90deg);
}
#side_nav > ul > li.has_submenu.open > a::after {
    transform: rotate(0deg);
}
@media screen and (max-width:1200px){
    #side_nav > ul > li {
        width: 130%;
    }
    #side_nav > ul > li > a {
        height: auto;
        max-height: inherit;
        min-height: 3em;
    }
}
@media screen and (max-width:768px){
    #side_nav {
        display: none;
    }
}


/* ===============================================
   下層メニュー
=============================================== */
#lower_menu {
    padding-bottom: 150px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 50px 50px;
}
#lower_menu li {
    width: calc(50% - 25px);
}
#lower_menu li a {
    height: 100%;
    position: relative;
    line-height: 1.4;
    font-size: 3rem;
    font-weight: bold;
    letter-spacing: 0.05em;
    padding-left: 1.5em;
    padding-bottom: 10px;
}
#lower_menu li a::before {
    content: "";
    width: 1em;
    height: 1em;
    background: url(../img/arrow_bk.svg) no-repeat center center / contain;
    display: inline-block;
    position: absolute;
    top: 0.1em;
    left: 0;
    margin: auto;
}
#lower_menu li a::after {
    position: absolute;
    left: 0;
    content: '';
    width: 100%;
    height: 2px;
    background-color: #000;
    bottom: -1px;
    transform: scale(0, 1);
    transform-origin: right top;
    transition: transform 0.3s;
}
#lower_menu li a:hover::after {
    transform: scale(1, 1);
    transform-origin: left top;
}
#lower_menu a .page_name {
    color: #000;
    transition: .3s;
}
#lower_menu a:hover .page_name {
    color: #D82C2C;
}
#lower_menu .lead_txt {
    font-size: 1.7rem;
    line-height: 1.6em;
    font-weight: normal;
    letter-spacing: 0.1em;
    margin-top: 8px;
}
@media screen and (max-width:1200px){
    #lower_menu li a {
        font-size: 2.5rem;
    }
    #lower_menu .lead_txt {
        font-size: 1.5rem;
    }
}
@media screen and (max-width:768px){
    #lower_menu {
        padding-bottom: 50px;
    }
    #lower_menu li a {
        font-size: 1.8rem;
    }
    #lower_menu .lead_txt {
        font-size: 1.4rem;
    }
}
@media screen and (max-width:400px){
    #lower_menu {
        display: block;
    }
    #lower_menu li {
        width: 100%;
    }
    #lower_menu li:not(:first-child) {
        margin-top: 25px;
    }
    #lower_menu .lead_txt {
        font-size: 1.2rem;
    }
}

.g-recaptcha {
	display: flex;
	justify-content: center;
	margin: 30px auto 0;
}

/* ===============================================
   プリント設定
=============================================== */
@media print {
    * {
        text-shadow: none !important;
        box-shadow: none !important;
    }
    html,body{
        zoom: 0.68;
        -webkit-print-color-adjust: exact;
        size: A4 landscape;
        page-break-before: always;
    }
    header{
        position: relative !important;
    }
    .main{
        padding-top: 0 !important;
    }
}