@charset "UTF-8";

:root {
    --font-size-xxl: 220%;
    --font-size-xl: 200%;
    --font-size-l: 180%;
    --font-size-m: 150%;
    --font-size-s: 120%;
    --font-size-ss: 80%;
    --font-size-sss: 60%;

    /* color */
    --c-text-light: #fff;
    --c-subtext: #999;

    --c-main: #000;
    --c-main-secound: #414141;
    --c-secound: #785e28;

    --c-red: #bc1307;

    /* line */
    --line-nav: #000;
    --line-hilight: #ccc;

    /* bg */
    --bg-nav: #fff;
    --bg-nav-active: #000;

    --bg-footer: #000;
    --bg-footer-copy: #111;

    --bg-gray: #ddd;

    /* margin */
    --mb-section: 80px;
    --mb-container: 60px;
    --mb-case: 30px;
    --mb-pack: 20px;
    --mb-item: 15px;
}

/* css common ---------------------------------------------------------- */
#wrapper {
    min-height: 100%;
    margin: 0 auto;
    position: relative;
}

#main,
.box,
.box_full {
    width: 1200px;
    min-width: 1200px;
    margin: 0 auto;
}

#header {
    background-color: var(--c-main);
}

/* header ---------------------------------------------------------- */
.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}
.h_top h1 {
	color: #fff;
	font-size: 70%;
	font-weight: normal;
	padding: 4px 0;
}
#h_box {
    padding: 0;
    display: flex;
    justify-content: space-between;
}

#h_left {
    flex: 0 0 20%;
    text-align: left;
    padding-top: 30px;

}

#h_right {
    flex: 0 0 65%;
    text-align: right;
}

/* pc only ------------------------------------------------------------ */
@media only screen and (min-width: 991px) {
    #mainNav.scroll-to-fixed-fixed {
        background-color: var(--c-main);
        transition: all .8s ease-out;
    }

    #mainNav.scroll-to-fixed-fixed ul li a {
        color: var(--c-text-light);
    }

    #mainNav.scroll-to-fixed-fixed ul li::before {
        background-color: var(--bg-nav);
    }

    #h_right ul {
        display: inline-block;
        padding-bottom: 35px;
    }

    #h_right ul {
        justify-content: center;
        align-items: center;
    }

    #h_right li {
        display: inline-block;
        margin-right: 20px;
    }

    #h_right li a {
        color: var(--c-text-light);
        font-size: 12px;
        text-decoration: none;
        transition: all .3s ease-out;
    }

    #h_right li a:hover {
        color: var(--c-subtext);
        letter-spacing: 2px;
    }

    #mainNav {
        position: relative;
        background: var(--bg-nav);
    }

    #mainNav ul {
        position: relative;
    }

    #mainNav ul li {
        float: left;
        position: relative;
    }

    #mainNav ul li::before {
        content: "";
        position: absolute;
        top: 0;
        left: 0;
        bottom: 0;
        margin: auto;
        height: 40%;
        width: 1px;
        background-color: var(--line-nav);
    }

    #mainNav ul li:nth-child(2)::before {
        background: none;
    }

    #mainNav ul li a {
        display: block;
        padding: 20px 26px;
        color: var(--c-main);
        text-align: center;
        box-sizing: border-box;
        text-decoration: none;
        font-weight: bold;
        font-size: 90%;
        position: relative;
    }

    #mainNav ul li a span {
        display: block;
        font-size: 60%;
        text-transform: uppercase;
        letter-spacing: 3px;
        color: var(--c-subtext);
    }

    #mainNav ul li a:after {
        bottom: 0;
        content: "";
        display: block;
        height: 3px;
        left: 50%;
        position: absolute;
        background: var(--line-nav);
        transition:
            width 0.3s ease,
            left 0.3s ease;
        width: 0;
    }

    #mainNav ul li a:hover:after {
        width: 100%;
        left: 0;
    }

    #mainNav ul li.active a {
        color: var(--bg-nav-active);
        border-bottom: 4px solid var(--line-nav);
    }

    #mainNav .panel ul li>ul {
        display: none;
        position: absolute;
        left: 0;
        top: 100%;
        background: var(--bg-nav);
        width: 220px;
        z-index: 20;
    }

    #mainNav .panel ul li>ul li {
        display: block;
        float: none;
    }

    #mainNav ul li>ul::before,
    #mainNav ul li>ul li::before {
        background: none;
    }

    #mainNav .panel ul li>ul li a {
        padding: 15px;
        display: block;
        white-space: nowrap;
        color: var(--c-text-light);
    }

    #mainNav .panel .subToggle {
        display: none;
    }

    nav div.panel {
        display: block;
        clear: both;
    }

    .menu-toggle {
        display: none;
    }

    .section .tb_pad {
        width: 70%;
        margin: auto;
    }

    .section .tb_pad th {
        width: 25%;
    }
}

/* main ---------------------------------------------------------- */
#main {
    display: block;
}

/* pagetop ---------------------------------------------------------- */
#scTop {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 5%;
    right: 5%;
    background: url(common/images/common/pagetop.jpg) no-repeat right bottom;
    background-size: contain;
    opacity: 0;
    border: 0;
    cursor: pointer;
}

/* footer ---------------------------------------------------------- */
#footer {
    padding-bottom: 20px;
    background: var(--bg-footer);
    text-align: center;
    margin-top: 8%;
}

#footer img {
    width: 90px;
}

#footer p,
#footer li {
    color: var(--c-text-light);
    font-size: var(--font-size-ss);
}

#logo_f p {
    font-size: var(--font-size-m);
    font-weight: bold;
    margin:0 0 20px 0;
}

p#copyright {
    letter-spacing: 2px;
    margin: 40px 0 10px 0;
}

.address {
    position: relative;
}

.address .collum2 {
    padding: 20px 0;
}

.address .collum2::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1px;
    height: 100%;
    background-color: #FFF;
}

.address .collum2 li {
    text-align: right;
    padding-right: 4%;
    margin-bottom: 0;
}

.address .collum2 li:last-child {
    text-align: left;
    padding: 0 0 0 4%;
}


/* contact_f ---------------------------------------------------------- */

#contact_f{
  display:flex;
  width:100%;
  min-height:420px;
}

/* ------- LEFT IMAGE ------- */
#contact_f .split_image{
  width:50%;
  background:url(common/images/common/bg_contact.jpg) center/cover no-repeat;
}

/* ------- RIGHT BLACK AREA ------- */
#contact_f .split_content{
  width:50%;
  background:var(--bg-footer-copy);
  color:var(--c-text-light);
  display:flex;
  align-items:center;
  text-align: left;
  padding:60px 20px 60px 60px;
}

#contact_f .split_inner{
  max-width:480px;
}

/* ------- TEXT ------- */
#contact_f h3{
  font-size: var(--font-size-l);
  margin-bottom: var(--mb-case);
}

#contact_f h3 span{
  display:block;
  font-size:12px;
  letter-spacing:2px;
  margin-bottom:10px;
}

/* ------- BUTTON ------- */
#contact_f a{
    min-width: 100%;
    display:inline-block;
    padding:12px 20px;
    border:2px solid #fff;
    color:var(--c-text-light);
    transition:0.3s;
    background-color: #414141;
    position: relative;
}

#contact_f a:hover{
  background:#222;
}

#contact_f a span{
    display: block;
    position: relative;
    padding: 5px 10px 5px 45px; 
    font-size: var(--font-size-s);
    font-weight: bold;
    text-align: center;
    background: url("common/images/common/ico_contact.png") no-repeat left center;
    background-size: 40px;
}

#contact_f a span::before{
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    width: 10px;
    height: 15px;
    transform: translateY(-50%);
    background: 
        url("common/images/common/arrow09.png") no-repeat center;
    background-size: contain;
}

/* margin style ---------------------------------------------------------- */
.section {
    margin-bottom: var(--mb-section);
}

.container {
    margin-bottom: var(--mb-container);
}

.case {
    margin-bottom: var(--mb-case);
}

.pack {
    margin-bottom: var(--mb-pack);
}

.item {
    margin-bottom: var(--mb-item);
}

.mb_clear {
    margin-bottom: 0;
}

.section .container:last-child,
.container .case:last-child,
.case .pack:last-child,
.pack .item:last-child {
    margin-bottom: 0;
}

/* text-align ---------------------------------------------------------- */
.txt_l {
    text-align: left !important;
}

.txt_c {
    text-align: center !important;
}

.txt_r {
    text-align: right !important;
}

.txt_b {
    font-weight: bold;
}

/* p section ---------------------------------------------------------- */
main p {
    margin-bottom: 20px;
}

main * p:last-child {
    margin-bottom: 0;
}

/* tb_style ---------------------------------------------------------- */
.tb_style {
	width: 100%;
	table-layout: auto;
	border-collapse: collapse;
	border-top: 1px solid #ddd;
	border-right: 1px solid #ddd;
}

.tb_style td,
.tb_style th {
	padding: 15px;
	border-bottom: 1px solid #ddd;
	border-left: 1px solid #ddd;
	box-sizing: border-box;
	text-align: center;
}

.tb_style th {
    background: var(--c-main);
    color: var(--c-text-light);
}

/* tb_form ---------------------------------------------------------- */
.tb_form input[type="text"] {
    -webkit-appearance: none;
    border-radius: 0;
    padding: 5px;
    box-sizing: border-box;
}

/* title style ---------------------------------------------------------- */
.title_main {
    font-size: var(--font-size-xl);
    color: var(--c-main);
    font-weight: bold;
    text-align: center;
    position: relative;
    padding-top: 90px;
    margin-bottom: var(--mb-case);
}

.title_main::before {
    content: "";
    background: var(--c-main);
    width: 1px;
    height: 80px;
    position: absolute;
    left: 50%;
    top: 0;
}

.title_main span {
    display: block;
    font-size: var(--font-size-sss);
    color: var(--c-subtext);
    letter-spacing: 1px;
}

.title_sub {
    font-size: var(--font-size-m);
    font-weight: bold;
    margin-bottom: var(--mb-case);
    padding: 10px 0 10px 25px;
    position: relative;
    color: var(--c-main);
}

.title_sub span {
    font-size: var(--font-size-ss);
    display: block;
}

.title_sub::before {
    content: "";
    background: var(--c-main);
    width: 1px;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}

.title_sub::after {
    content: "";
    background: var(--c-secound);
    width: 2px;
    height: 25px;
    position: absolute;
    left: 0;
    top: 0;
}

.title_sec {
    font-size: var(--font-size-s);
    font-weight: bold;
    padding-left: 10px;
    margin-bottom: var(--mb-pack);
    color: var(--c-text);
    border-left: 2px solid var(--c-main);
}

.title_item {
    color: var(--c-main);
    font-size: var(--font-size-ss);
    font-weight: bold;
    margin-bottom: var(--mb-item);
}

.title_page {
    font-size: var(--font-size-l);
    color: var(--c-secound);
    margin-bottom: var(--mb-case);
    display: block;
    text-align: center;
}

.title_page span {
    font-size: var(--font-size-ss);
    display: block;
}

.title_num {
    font-size: var(--font-size-s);
    margin-bottom: var(--mb-pack);
    color: var(--c-accent);
    padding-left: 80px;
}

.title_num em {
    width: 60px;
    height: 50px;
    background-color: var(--c-main);
    font-size: 28px;
    color: var(--c-text-light);
    display: inline-block;
    text-align: center;
    margin-right: 20px;
    margin-left: -80px;
    font-style: normal;
}

/* topicPath ---------------------------------------------------------- */
#topicPath {
    display: block;
    text-align: left;
    margin-bottom: var(--mb-section);
    padding-top: 20px;
}

#topicPath li {
    display: inline;
    font-size: var(--font-size-ss);
    letter-spacing: 1px;
    margin-right: 10px;
}

#topicPath li a {
    color: var(--c-main);
    padding-right: 15px;
    background: url(common/images/common/arrow07.png) no-repeat right center;
    background-size: 6px;
}

#topicPath li a:hover {
    opacity: 0.7;
}

/* switch pc sp ---------------------------------------------------------- */
.sp {
    display: none;
}

.pc {
    display: block;
}

/* container
---------------------------------------------------------- */
.pic_l,
.pic_r {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
    gap: 5%;
}

.container .msg {
    flex: 0 0 55%;
    word-break: break-all;
}

.container .img {
    flex: 0 0 40%;
}

.pic_l {
    flex-direction: row;
}

.pic_r {
    flex-direction: row-reverse;
}


.flow_picl,
.flow_picr {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-start;
}

.flow_picl .img {
    margin-right: 15px;
    margin-bottom: 5px;
}

.flow_picr {
    flex-direction: row-reverse;
}

.flow_picr .img {
    margin-left: 15px;
    margin-bottom: 5px;
}

/* list ---------------------------------------------------------- */
.list_dot {
    list-style: disc;
    margin-left: 17px;
}

.list_dot li {
    margin-bottom: 5px;
}

.list_num {
    list-style: decimal;
    margin-left: 17px;
}

.list_num li {
    margin-bottom: 5px;
}

/* other ---------------------------------------------------------- */
.pad_sty {
    padding: 60px 0;
}

.txt_red {
    color: var(--c-red);
}

.hilight {
    background-color: var(--c-nav-line);
    padding: 4%;
}

.is-fixed {
    background: var(--c-text-light);
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.1);
    transition: box-shadow 0.25s ease;
}


/* btn ---------------------------------------------------------- */
.btn_sty span {
    color: var(--c-text-light);
    font-weight: bold;
    background: url(common/images/common/arrow09.png) no-repeat right center;
    background-size: 8px;
    padding-right: 20px;
}

.btn_sty:hover {
    background: #3168ac;
}

/* collum col ---------------------------------------------------------- */
.collum2,
.collum3,
.collum4 {
    display: flex;
    flex-wrap: wrap;
    gap: 3.5%;
    list-style: none;
    padding: 0;
    margin: 0;
}

.collum2 li {
    width: calc(50% - 1.75%);
    /* gap 3.5% / 2 */
    margin-bottom: 3.5%;
}
.collum2 li .cap {
	text-align: center;
	margin-top: 10px;
	font-size: 90%;
}


.collum3 {
    gap: 3.5%;
}

.collum3 li {
    width: calc(33.333% - 2.333%);
    /* (gap * 2)/3 */
    margin-bottom: 3.5%;
}

.collum4 {
    gap: 2.6%;
}

.collum4 li {
    width: calc(25% - 1.95%);
    /* (gap * 3)/4 */
    margin-bottom: 2%;
}

.hilight {
    background-color: #111;
    padding: 4%;
}

/* .hilight .title_sub{ color: #FFF;}
.hilight .title_sub::before{ background-color: #999; }
.hilight .title_sub::after{ background-color: #FFF; }
.hilight p{ color: #FFF;} */

.con_arr {
    background: url(common/images/common/arrow08.png) no-repeat center bottom;
    background-size: auto 40px;
    padding-bottom: 60px;
}

/* main_img_sub ---------------------------------------------------------- */
#main_img_sub .in_parallax {
    height: 250px;
    position: relative;
}

#main_img_sub .parallax-bg {
    background-image: url(common/images/common/bg_main.jpg);
}

#main_img_sub h2 {
    width: 90%;
    font-size: var(--font-size-xl);
    font-weight: bold;
    color: var(--c-text-light);
    text-align: center;
    letter-spacing: 2px;
    padding-bottom: 12px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

#main_img_sub h2::after {
    content: "";
    width: 40px;
    height: 2px;
    background: #FFF;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    bottom: 0;
}

#main_img_sub h2 span {
    font-size: 40%;
    color: var(--c-text-light);
    display: block;
    font-weight: normal;
    margin-top: 6px;
}



/* page_index ---------------------------------------------------------- */

.parallax {
    position: relative;
    overflow: hidden;
}

.parallax-bg {
    position: absolute;
    inset: 0;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    will-change: transform;
    z-index: 1;
}

.in_parallax {
    position: relative;
    z-index: 10;
}

#main_img_wrap {
    padding: 100px 0;
}

#main_img_wrap .parallax-bg {
    background-image: url(common/images/index/bg_main.jpg);
}

.main_hilight span {
    display: block;
}

.main_hilight p {
    text-align: center;
    font-size: 120%;
}

.page_index #news ul {
    height: 200px;
    overflow: auto;
    padding-right: 20px;
}

.page_index #news li {
    padding-left: 145px;
    border-bottom: 1px solid #ccc;
    padding-top: 20px;
    padding-bottom: 20px;
}

.page_index #news li a {
    display: inline-block;
    color: var(--c-text);
}

.page_index #news li span {
    width: 130px;
    display: inline-block;
    margin-left: -145px;
    background: url(common/images/common/arrow07.png) no-repeat left 6px;
    background-size: 7px;
    padding-left: 15px;
    font-size: 80%;
    color: var(--c-text);
    font-weight: bold;
}

.page_index #youtube .youtube_box{
    position: relative;
    width: 100%;   
    padding-top: 56.25%;
    overflow: hidden;
}

.page_index #youtube iframe{
    position:absolute;
  inset:0;
  width:100%;
  height:100%;
  border:0;
}

/* page_sitemap ---------------------------------------------------------- */
.page_sitemap ul {
    text-align: center;
}

.page_sitemap ul li {
    padding: 5px 0;
}

.page_sitemap ul a {
    color: var(--c-text);
    text-decoration: none;
    padding: 8px;
    display: inline-block;
    background: url(common/images/common/arrow07.png) no-repeat left center;
    background-size: 6px;
    padding-left: 15px;
}

.page_sitemap ul a span {
    display: inline-block;
    border-left: 1px solid #ccc;
    padding-left: 10px;
    margin-left: 10px;
    font-size: 80%;
    text-transform: uppercase;
    color: #999;
}

.page_sitemap ul a:hover {
    color: var(--c-accent);
    letter-spacing: 3px;
}

.page_facility .facility li span {
    display: block;
    text-align: center;
    font-size: var(--font-size-ss);
    padding-top: 10px;
}

.page_about .hilight p,
.page_about .hilight .title_sub {
    color: var(--c-text-light);
}

.page_about .title_sub::before {
    background: var(--c-text-light);
}

/* page_product ---------------------------------------------------------- */

.bg_sty01 {
    position: relative;
    z-index: 2;
    padding-bottom: 6%;
}

.bg_sty01::before {
    min-width: 1400px;
    content: '';
    width: 85%;
    height: calc(100% - 20%);
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0%);
    bottom: 0;
    background-color: var(--c-main);
    z-index: -1;
}

.bg_sty01 .hilight {
    background-color: var(--bg-gray);
}

.bg_sty02::before {
    background-color: var(--c-main-secound);
}

.bg_sty::before {
    background: linear-gradient(#5cc8f5 0 50%, #004a99 50% 100%);
}

/* page_voice ---------------------------------------------------------- */
.page_voice .voice .title_sub em {
    display: inline-block;
    background-color: var(--c-secound);
    font-size: 14px;
    letter-spacing: 2px;
    font-weight: normal;
    padding: 3px 15px;
    color: #FFF;
    font-style: normal;
    margin-bottom: 10px;
}

.page_voice .voice .voice_box {
    background-color: var(--bg-gray);
    padding: 8%;
    box-sizing: border-box;
}


/* page_voice ---------------------------------------------------------- */
.page_flow .flow {
    display: grid;
    gap: 22px;
}

.page_flow .step {
    background: #f5f5f5;
    padding: 4%;
    display: flex;
    gap: 16px;
    border-bottom: 1px solid #ccc;
}

.page_flow .num {
    flex-shrink: 0;
    width: 46px;
    height: 46px;
    background: var(--c-main);
    color: var(--c-text-light);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    font-weight: bold;
    margin-right: 20px;
}



/* page_recruit ---------------------------------------------------------- */
.tb_pad td {
    text-align: left;
}


/* page_faq
---------------------------------------------------------- */
.page_faq .container {
    margin-bottom: 15px;
}

.page_faq #faq .q {
    background: url(common/images/faq/bg_q.png) no-repeat 20px 13px;
    background-size: 40px;
    padding: 15px 20px 25px 80px;
    cursor: pointer;
    font-size: 120%;
    border-bottom: 1px solid #ccc;
}

.page_faq #faq .q p {
    background: url(common/images/faq/bg_plus.png) no-repeat right 7px;
    background-size: 15px;
    padding-right: 25px;
    font-weight: bold;
}

.page_faq #faq .q.active p {
    background-image: url(common/images/faq/bg_min.png);
}

.page_faq #faq .a {
    padding: 15px 0 20px 100px;
    transition: none;
    display: none;
    background: url(common/images/faq/bg_a.png) no-repeat 40px 15px;
    background-size: 40px;
}

/* page_company
---------------------------------------------------------- */

.page_company .timeline {
    position: relative;
    margin: 30px auto;
    padding-left: 30px;
    max-width: 900px;
}

.page_company .timeline::before {
    content: "";
    position: absolute;
    left: 10px;
    top: 0;
    width: 4px;
    height: 100%;
    background: #222;
}

.page_company .timeline-item {
    position: relative;
    margin-bottom: 40px;
    padding-left: 30px;
}

.page_company .timeline-dot {
    position: absolute;
    left: -1px;
    top: 4px;
    width: 18px;
    height: 18px;
    background: #222;
    border-radius: 50%;
}

.page_company .timeline-content {
    background: #fafafa;
    border: 1px solid #ddd;
    padding: 14px 18px;
    border-radius: 6px;
}

.page_company .timeline-year {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 6px;
}

.page_company .timeline-text {
    font-size: 14px;
    line-height: 1.7;
    color: #222;
}
.page_company iframe{
    width: 100%;
    height: 350px;
    border: 1px var(--c-subtext) solid;
    padding: 2px;
    box-sizing: border-box;
}

/*------ page_topics ------*/
.page_topics .container li {
	padding: 15px 0;
	border-top: 1px dotted #999;
}
.page_topics .container li:first-child {
	border-top: none;
}
.page_topics .container li a{
	text-decoration:none;
	color: #000;
	overflow: hidden;
	display: block;
}
.page_topics .container li span{
	float:left;
	width: 79%;
}
.page_topics .container li span.txt_date{
	font-weight: 700;
	width: 20%;
}

/*------ news nav ------*/
.nav-links {
	overflow: hidden;
}
.nav-links a span {
	display: block;
	padding: 10px 30px;
	background: #000;
	color: #FFF;
}
.nav-links a span:hover {
	background:#666;
}
.nav-links a span.prev {
	float: left;
}
.nav-links a span.next {
	float: right;
}

.pagination {
	margin-top: 30px;
	text-align: center;
}
.pagination .current,
.pagination  a {
	display: inline-block;
	padding: 4px 12px;
	margin: 0 3px;
}

.pagination  a {
	border: solid 1px #CCC;
	text-decoration: none;
	color: #999;
}
.pagination .current{
	background: #000;
	border: solid 1px #000;
	color: #FFF;
}
.pagination  a:hover{
	background: #666;
	border: solid 1px #666;
	color: #FFF;
}

/*
	お問い合わせフォーム
================================================================================ */

/*フォーム系*/
.contact_btn{
	text-align:center;
}

.contact_btn input{
	padding:10px 40px;
	background-color:#000;
	border:none;
	color:#FFF;
	text-align:center;
	margin:10px 0;
	cursor: pointer;
	border-radius: 0;
	margin: 0 15px;
}
.contact_btn input:hover{
	opacity: 0.7;
	filter: alpha(opacity=70);
	-ms-filter: "alpha( opacity=70 )";
}

.contact_main{
	margin-bottom:10px;
}


.tb_form{
	width:100%;
	table-layout: auto;
	border-collapse: collapse;
}
.tb_form th {
	background: #f5f5f5;
	text-align: left;
}
.tb_form td {
	background: #fff;
}
.tb_form th span{
	color: #FF0000;
}
.tb_form td input[type=text],.tb_form td input[type=email],
.tb_form td textarea {
	-webkit-appearance: none;
	border-radius: 0;
	box-sizing: border-box;
	border: solid 1px #999;
}
.tb_form td textarea {
	width: 100%;
}
.wpcf7-radio .wpcf7-list-item:first-child {
	margin-left: 0!important;
}
.info_chui {
	display: block;
	font-size: 80%;
}
.wpcf7-not-valid-tip {
	font-size: 80%;
}
.txt_att {
	font-size: 80%;
}
.tb_form td input[type=text].input_s {
	width: 80px;
	margin-right: 10px;
}
.tb_form td dl {
	display: flex;
	margin-bottom: 8px;
}
.tb_form td dl:last-child {
	margin-bottom: 0;
}
.tb_form td dl dt {
	width: 100px;
}
.ul_li_form li {
	margin-bottom: 8px;
}
.ul_li_form li:last-child {
	margin-bottom: 0;
}
.ul_li_form li input[type=date]{
	margin-right: 20px;
}
.tb_form td tr td {
	border: none!important;
	padding: 0;
}
.tb_form td tr td:first-child {
	padding-right: 15px;
}
.tb_form .txt_att {
	display: block;
}

@media screen and (min-width: 769px){
.tb_form {
	border-top: solid 1px #ddd;
}
.tb_form th{
	font-weight: bold;
	padding: 15px;
	border-bottom: 1px solid #ddd;
	vertical-align: top;
	width: 25%;
}
.tb_form th span{
	color: #FF0000;
}
.tb_form td{
	border-bottom: 1px solid #ddd;
	padding: 15px;
}
.tb_form td input[type=text],
.tb_form td input[type=email] {
	width: 50%;
	padding: 3px;
}
}



@media screen and (max-width:768px){
.tb_form th{
	font-weight: bold;
	padding: 10px 0 0;
	width: 100%;
	display: block;
}
.tb_form td{
	border-bottom: 1px solid #CCCCCC;
	padding: 5px 0 10px;
	width: 100%;
	display: block;
}
/*フォーム系*/
.contact_btn input{
	-webkit-appearance: none;
	border-radius: 0;
}

.tb_form td input[type=text],
.tb_form td input[type=email] {
	width: 100%;
	box-sizing: border-box;
}


}
