﻿@charset "UTF-8";
@import "base.css";
@import "font-family.css";
@import url('https://fonts.googleapis.com/css2?family=Nunito:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&family=Oswald:wght@300;400;500&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Roboto+Condensed:wght@300;400;700&display=swap'); /**/

:root {
    --mcolor: #36358d;
    --scolor: #1AA7DF;
}

h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
    font-size: 16px;
    -webkit-text-size-adjust: none;
}

header, section, footer, aside, nav, main, article, figure {
    display: block;
}

img {
    vertical-align: bottom;
}

a {
    color: var(--mcolor);
}

    a:hover, a:active {
        text-decoration: none;
    }

table {
    width: 100%
}

p {
    margin: 0 0 1.5em;
}

.section {
    padding: 0 0 30px;
}

p, dd, td, th, li {
    line-height: 1.5em;
}

#totop {
    position: fixed;
    bottom: 80px;
    right: 50px;
    z-index: 10;
    margin-bottom: 0;
    width: 50px;
}

    #totop a {
        display: block;
        transition: all 0.5s;
        -webkit-animation: slide-top 0.8s linear infinite alternate-reverse;
        animation: slide-top 0.8s linear infinite alternate-reverse;
    }

        #totop a:hover {
            opacity: 0.7;
        }

@-webkit-keyframes slide-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

@keyframes slide-top {
    0% {
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    100% {
        -webkit-transform: translateY(-10px);
        transform: translateY(-10px);
    }
}

.bold {
    font-weight: bold;
}

.fl {
    float: left;
}

.fr {
    float: right;
}

*, *:before, *:after {
    box-sizing: border-box;
    outline: none;
}
/*==========================================================================*/
/*                            Container                                     */
/*==========================================================================*/
#header {
    background: rgba(255,255,255,0.9);
}

@media screen and (min-width: 769px) {
    #header {
        -webkit-animation: remove-fixed 0.3s linear;
        -moz-animation: remove-fixed 0.3s linear;
        -ms-animation: remove-fixed 0.3s linear;
        animation: remove-fixed 0.3s linear;
    }

        #header.fixed {
            width: 100%;
            position: fixed;
            top: 0;
            left: 0;
            z-index: 999;
            box-shadow: 1px 2px 2px rgba(0, 0, 0, 0.1);
            -webkit-animation: header-fixed 0.6s;
            -moz-animation: header-fixed 0.6s;
            -ms-animation: header-fixed 0.6s;
            animation: header-fixed 0.6s;
        }

            #header.fixed .h_main {
                display: none;
            }
}

@keyframes remove-fixed {
    0% {
        opacity: 0.9;
        -webkit-transform: translateY(20%);
        -ms-transform: translateY(20%);
        -moz-transform: translateY(20%);
        transform: translateY(20%)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0)
    }
}

@-webkit-keyframes remove-fixed {
    0% {
        opacity: 0.9;
        -webkit-transform: translateY(20%);
        -ms-transform: translateY(20%);
        -moz-transform: translateY(20%);
        transform: translateY(20%)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0)
    }
}

@-moz-keyframes remove-fixed {
    0% {
        opacity: 0.9;
        -webkit-transform: translateY(20%);
        -ms-transform: translateY(20%);
        -moz-transform: translateY(20%);
        transform: translateY(20%)
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0)
    }
}

@keyframes header-fixed {
    0% {
        opacity: 0.5;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-webkit-keyframes header-fixed {
    0% {
        opacity: 0.5;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

@-moz-keyframes header-fixed {
    0% {
        opacity: 0.5;
        -webkit-transform: translateY(-100%);
        -ms-transform: translateY(-100%);
        -moz-transform: translateY(-100%);
        transform: translateY(-100%);
    }

    100% {
        opacity: 1;
        -webkit-transform: translateY(0);
        -ms-transform: translateY(0);
        -moz-transform: translateY(0);
        transform: translateY(0);
    }
}

body {
    color: #000;
    font-family: 'Roboto Condensed', sans-serif;
    /* color: #353535;font-family: 'Nunito', sans-serif;*/
}

#wrapper {
    min-width: 1200px;
    overflow: hidden;
}

.container {
    width: 100%;
    padding: 0 5%;
    margin: 0 auto;
    position: relative;
}

img {
    max-width: 100%;
}

.sp {
    display: none;
}

h1 {
    display: none;
}

.h_main .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    margin: 0;
}

    .logo span {
        font-family: 'Roboto Condensed', sans-serif;
        font-size: 21px;
        line-height: 38px;
        padding-left: 10px;
        font-weight: 600;
    }

.h_social {
    margin: 0;
    display: flex;
}

    .h_social a {
        width: 40px;
        height: 40px;
        background: #ebebeb;
        display: flex;
        justify-content: center;
        align-items: center;
        text-align: center;
        text-decoration: none;
        border-radius: 8px;
        color: var(--mcolor);
        margin-left: 10px;
    }

.h_info {
    margin: 0 30px 0 auto;
    display: flex;
    align-items: center;
}

    .h_info li {
        margin-left: 17px;
        font-family: 'Roboto Condensed', sans-serif;
        background: url("../W_images/icon_tel.png") no-repeat left center;
        padding-left: 48px;
        line-height: 1.3em;
    }

    .h_info a {
        display: block;
        text-decoration: none;
        color: var(--mcolor);
        transition: all 0.3s;
    }

        .h_info a:hover {
            opacity: 0.7;
        }

    .h_info li:first-child {
        font-weight: bold;
        color: var(--mcolor);
        font-size: 20px;
    }

    .h_info span {
        display: block;
        font-size: 13px;
        width: 65px;
        background: #36358d;
        color: #fff;
        text-align: center;
        font-weight: normal;
        line-height: 1.5em;
        border-radius: 4px;
        padding: 0 0 2px;
    }

    .h_info li:nth-child(2) {
        background-image: url("../W_images/icon_mail.png");
        padding-left: 55px;
    }

.h_main {
    padding: 10px 0;
    border-bottom: 1px solid #ebebeb;
}

#gnavi {
	padding: 5px 0;
}

    #gnavi .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
    }

.gnavi {
    display: flex;
}

    .gnavi li {
        position: relative;
    }

    .gnavi > li {
        margin-right: 50px;
    }

        .gnavi > li > a {
            display: block;
            text-decoration: none;
            /*font-family: 'Oswald', sans-serif;*/
            font-size: 16px;
            color: #000;
            transition: all 0.3s;
            text-transform: uppercase;
            position: relative;
            padding: 5px 0;
            font-weight: 500;
        }

        .gnavi > li.active > a, .gnavi > li:hover > a {
            color: #36358c;
        }

        .gnavi > li > a:before {
            content: '';
            position: absolute;
            background: #36358d;
            width: 36px;
            height: 3px;
            bottom: 0;
            left: calc(50% - 18px);
            transform: scale(0,1);
            border-radius: 4px;
            transition: all 0.3s;
        }

        .gnavi > li.active > a:before, .gnavi > li:hover > a:before {
            transform: scale(1,1);
        }

        .gnavi > li.over > a:after {
            content: '';
            position: relative;
            border: solid #272727;
            border-width: 0 1px 1px 0;
            display: inline-block;
            padding: 2px;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            margin-left: 5px;
            top: -6px;
            transition: all 0.3s;
        }

        .gnavi > li.active > a:after, .gnavi > li:hover > a:after {
            border-color: #36358d;
            font-weight: 500;
        }

.submenu {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    z-index: 999;
    display: none;
}

    .submenu a {
        display: block;
        background: #36358c;
        color: #fff;
        text-decoration: none;
        white-space: nowrap;
        padding: 10px 20px;
        margin-top: 1px;
        transition: all 0.3s;
        text-transform: uppercase;
        font-family: 'Oswald', sans-serif;
        font-weight: 300;
    }

        .submenu a:hover {
            opacity: 0.7;
        }

.subsubmenu {
    top: 0;
    position: absolute;
    left: calc(100% + 2px);
    z-index: 999;
    display: none;
}

.h_search {
    display: flex;
    border-left: 1px solid #ebebeb;
}

    .h_search input {
        width: 340px;
        border: none;
        padding: 0 30px;
        font-size: 18px;
        color: #717171;
        font-family: 'Oswald', sans-serif;
        font-weight: 300;
    }

    .h_search button {
        background: none;
        border: none;
        cursor: pointer;
    }

.main_slide p {
    margin: 0;
}

.main_item {
    background: url("../W_images/slide01.jpg") no-repeat center center/cover;
}

    .main_item .container {
        display: flex;
        align-items: center;
        justify-content: center;
        height: 570px;
        color: #fff;
    }

.main_itm_info_txt01 {
    position: relative;
    text-transform: uppercase;
    font-size: 30px;
    color: #1aa6de;
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
    padding-top: 10px;
}

    .main_itm_info_txt01 span {
        font-weight: bold;
    }

    .main_itm_info_txt01:before {
        content: '';
        position: absolute;
        background: #1aa7df;
        width: 70px;
        height: 3px;
        left: 0;
        top: 0;
        border-radius: 4px;
    }

.main_itm_info_txt02 {
    font-size: 65px;
    text-transform: uppercase;
    font-weight: 500;
    margin: 0;
    font-family: 'Oswald', sans-serif;
}

.main_itm_info_txt03 {
    font-size: 20px;
    max-width: 80%;
}

.main_itm_info {
    width: 50%;
    margin-right: 10%;
}

.idx_btn {
    margin: 0;
}

    .idx_btn a {
		display: inline-block;
		color: #fff;
		text-transform: uppercase;
		text-align: center;
		background: url(/w_images/ab_btn.png) no-repeat center;
		padding: 10px 80px 10px 25px;
		border-radius: 10px;
		transition: all 0.3s;
		text-decoration: none;
		font-family: 'Roboto Condensed', sans-serif;
    }

        .idx_btn a:hover {
            opacity:0.8;
        }

.box_img {
    background: url(../W_images/bg_img.png) no-repeat center;
    background-size: 100%;
    padding: 26px 0;
    position: relative;
}

    .box_img::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: #ffffffbf;
    }

    .box_img .idx_h2 {
        text-align: center;
        background-image: url(../W_images/idx_h2_icon02.png);
        background-position: bottom center;
    }

.box_img_main {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
}

    .box_img_main p {
        overflow: hidden;
        margin: 0;
		border-radius: 10px;
    }
.box_img_main p:nth-of-type(n+7) {
  display: none;
}

        .box_img_main p img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: all .5s;
        }

        .box_img_main p:hover img {
            transform: scale(1.1,1.1);
        }



.banner img {
    width: 100%;
}

.box01 {
    padding: 30px 0 0;
}

.idx_h2 {
    font-size: 36px;
    color: #36358d;
    text-transform: uppercase;
    font-weight: 600;
    font-family: 'Roboto Condensed', sans-serif;
    /*font-family: 'Roboto Condensed', sans-serif;
  font-weight: bold;*/
    line-height: 1.5em;
    margin-bottom: 30px;
    background: url("../W_images/idx_h2_icon01.png") no-repeat left bottom;
    padding-bottom: 15px;
}

.b01_top {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.b01_cate {
    position: relative;
}

.b01_cate_ttl {
    margin: 0;
    width: 355px;
    background: #36358d;
    color: #1aa7df;
    display: flex;
    font-size: 24px;
    text-transform: uppercase;
    height: 55px;
    justify-content: center;
    align-items: center;
    border-radius: 25px;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
}

.b01_cate_txt span {
    font-size: 135%;
    color: #fff;
    font-weight: bold;
    font-family: 'Roboto Condensed', sans-serif;
}

.b01_cate_icon {
    width: 30px;
    height: 19px;
    box-sizing: border-box;
    text-align: center;
    text-transform: uppercase;
    line-height: 1em;
    cursor: pointer;
    z-index: 10;
    margin-left: 20px;
}

    .b01_cate_icon span {
        display: block;
        margin: 0 auto 15px;
        width: 100%;
        height: 3px;
        background-color: #fff;
        -webkit-transition-duration: 0;
        -moz-transition-duration: 0;
        -ms-transition-duration: 0;
        -o-transition-duration: 0;
        transition-duration: 0;
        -webkit-transition-delay: 0.2s;
        -moz-transition-delay: 0.2s;
        -ms-transition-delay: 0.2s;
        -o-transition-delay: 0.2s;
        transition-delay: 0.2s;
        top: 8px;
        left: 0;
        position: relative;
    }

        .b01_cate_icon span::after, .b01_cate_icon span::before {
            display: block;
            content: '';
            position: absolute;
            width: 30px;
            height: 3px;
            background-color: #fff;
            -webkit-transition-property: margin, -webkit-transform;
            -webkit-transition-duration: 0.2s;
            -moz-transition-duration: 0.2s;
            -ms-transition-duration: 0.2s;
            -o-transition-duration: 0.2s;
            transition-duration: 0.2s;
            -webkit-transition-delay: 0.2s, 0;
            -moz-transition-delay: 0.2s, 0;
            -ms-transition-delay: 0.2s, 0;
            -o-transition-delay: 0.2s, 0;
            transition-delay: 0.2s, 0;
        }

        .b01_cate_icon span::before {
            margin-top: -8px;
        }

        .b01_cate_icon span::after {
            margin-top: 8px;
        }

.b01_cate_ttl.active .b01_cate_icon span {
    background-color: transparent;
}

    .b01_cate_ttl.active .b01_cate_icon span::before, .b01_cate_ttl.active .b01_cate_icon span::after {
        margin-top: 0px;
        -webkit-transition-delay: 0, 0.2s;
        -moz-transition-delay: 0, 0.2s;
        -ms-transition-delay: 0, 0.2s;
        -o-transition-delay: 0, 0.2s;
        transition-delay: 0, 0.2s;
    }

    .b01_cate_ttl.active .b01_cate_icon span::before {
        -webkit-transform: rotate(45deg);
        -moz-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
        -o-transform: rotate(45deg);
        transform: rotate(45deg);
    }

    .b01_cate_ttl.active .b01_cate_icon span::after {
        -webkit-transform: rotate(-45deg);
        -moz-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
        -o-transform: rotate(-45deg);
        transform: rotate(-45deg);
    }

.b01_cate_link {
    position: absolute;
    width: 100%;
    display: none;
    right: 0;
}

.b01_cate_link {
    position: absolute;
    width: 100%;
    right: 0;
    background: #36358d;
    top: 67px;
    border-radius: 20px;
    padding: 10px;
    z-index: 10;
}

    .b01_cate_link a {
        display: block;
        text-decoration: none;
        color: #fff;
        padding: 10px 20px;
        text-align: right;
        border-bottom: 1px solid #7473d3;
        text-transform: uppercase;
        transition: all 0.3s;
    }

    .b01_cate_link li:last-child a {
        border-bottom: none;
    }

    .b01_cate_link a:hover {
        color: #1aa7df;
    }

.b01_list {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 30px;
}

.b01_item {
    width: calc(50% - 15px);
    margin-bottom: 0;
}

    .b01_item a {
        /*display: flex;
        text-decoration: none;
        color: #353535;
        border-radius: 28px;
        padding: 25px 40px;
        height: 100%;
        position: relative;
        background: url("../W_images/b01_icon01.png") no-repeat right top #ebebeb;
        transition: all 0.3s;*/
    }

        .b01_item a:hover {
            opacity: 0.7;
            transform: translateY(-10px);
        }

.b01_itm_img {
    flex-shrink: 0;
    margin: 0;
    min-width: 250px;
    text-align: center;
}

@media screen and (min-width: 769px) {
    .b01_item:nth-child(n+3) a {
        background-image: url("../W_images/b01_icon02.png");
        background-position: left top;
    }

    .b01_item:nth-child(n+3) a {
        flex-direction: row-reverse;
    }

    .b01_item:nth-child(n+3) .b01_itm_main {
        padding: 0 0 0 30px;
        text-align: right;
    }
}

.b01_itm_main {
    width: calc(100% - 250px);
    padding-right: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.b01_itm_ttl {
    font-size: 24px;
    color: #1aa7df;
    text-transform: uppercase;
    line-height: 1.5em;
    margin-bottom: 10px;
    font-weight: 300;
    font-family: 'Oswald', sans-serif;
}

    .b01_itm_ttl span {
        display: block;
        font-weight: bold;
        font-family: 'Roboto Condensed', sans-serif;
        font-size: 150%;
        color: #36358d;
        margin-top: 5px;
    }

.b01_itm_txt {
    font-size: 18px;
    margin-bottom: 5px;
    line-height: normal;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.b01_itm_btn {
    margin: 0;
    font-size: 12px;
    color: #1aa7df;
    text-transform: uppercase;
}

    .b01_itm_btn:after {
        content: '';
        position: relative;
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 3px 0 3px 6px;
        border-color: transparent transparent transparent #1aa7df;
        margin-left: 5px;
        display: inline-block;
    }

.b01_itm_num {
    margin: 0;
    position: absolute;
    top: 0;
    left: 45%;
    font-size: 15px;
    color: #fff;
    text-transform: uppercase;
    background: #36358d;
    padding: 5px 10px;
    text-align: center;
}

    .b01_itm_num span {
        font-size: 160%;
        display: block;
        font-family: 'Oswald', sans-serif;
        margin-bottom: 3px;
    }

.b01_item:nth-child(n+3) .b01_itm_num {
    left: auto;
    right: 45%;
}

.box02 {
    background: #e1f6ff;
    padding: 30px 0;
    position: relative;
    z-index: 2;
}

    .box02 .container {
        display: flex;
        flex-direction: row-reverse;
        justify-content: space-between;
		align-items: center;
    }

.b02_main {
    width: calc(50% - 15px);
}

.b02_right {
    width: calc(50% - 25px);
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.b02_img {
    position: relative;
    margin: 0;
	width:100%;
}
.b02_img img{
	width:100%;
}
    /*.b02_img:before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgb(0 0 0 / 58%);
    }*/
    .b02_img:after {
        content: '';
        position: absolute;
        width: 90%;
        height: 50%;
        border: 1px solid #1aa7df;
        bottom: -20px;
        right: -20px;
        z-index: -5;
    }

.b02_right_btn {
    position: absolute;
    top: calc(50% - 30px);
    left: calc(50% - 30px);
    display: block;
    width: 60px;
    height: 60px;
    background: #ffffff80;
    border-radius: 50%;
    transition: all 0.3s;
    z-index: 0;
}

    .b02_right_btn span {
        width: 0;
        height: 0;
        border-style: solid;
        border-width: 10px 0 10px 20px;
        border-color: transparent transparent transparent var(--mcolor);
        position: absolute;
        top: 50%;
        left: 54%;
        transform: translate(-50%, -50%);
        z-index: 999;
    }

    .b02_right_btn:before {
        content: '';
        position: absolute;
        width: 70%;
        height: 70%;
        border-radius: 50%;
        top: 9px;
        left: 9px;
        border: 1px solid #fff;
        background: #ffffff;
        z-index: 0;
    }

/*.b02_right_btn:before {
        -webkit-animation: scale-up-center 1.5s linear infinite both;
        animation: scale-up-center 1.5s linear infinite both;
    }

    .b02_right_btn:after {
        -webkit-animation: scale-up-center 1.5s linear 0.5s infinite both;
        animation: scale-up-center 1.5s linear 0.5s infinite both;
    }*/
@-webkit-keyframes scale-up-center {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0;
    }
}

@keyframes scale-up-center {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: 1;
    }

    100% {
        -webkit-transform: scale(2);
        transform: scale(2);
        opacity: 0;
    }
}

.b02_right_btn:hover {
    opacity: 0.8;
}

    .b02_right_btn:hover:before {
    }

.box02 .idx_h2 {
    text-align: center;
    background-image: url("../W_images/idx_h2_icon02.png");
    background-position: bottom center;
	margin:0;
}

.b02_txt01 {
    text-align: center;
    font-size: 22px;
    color: #37358d;
    text-transform: uppercase;
    margin: 0;
    font-family: 'Roboto Condensed', sans-serif;
}

    .b02_txt01 span {
        font-weight: bold;
    }

.b02_txt02 {
    margin: -10px 0 0;
    text-align: center;
    font-size: 36px;
    font-family: 'iCielSanelma';
    color: #1aa7df;
}

.b02_main p:not([class]) {
    font-size: 18px;
    color: #000;
    margin-bottom: 10px;
}

.b02_main ul li {
    position: relative;
    font-size: 18px;
    color: #000;
    padding-left: 25px;
    margin-bottom: 5px;
}

    .b02_main ul li:before {
        content: '';
        position: absolute;
        background: url("../W_images/b02_icon02.png") no-repeat center center/100% auto;
        width: 18px;
        height: 18px;
        left: 0;
        top: 4px;
    }

.box02 .idx_btn {
    text-align: center;
    margin-top: 25px;
}

.b02_right_ttl {
    margin: 0 0 10px;
    background: #37358d;
    color: #fff;
    font-size: 20px;
    text-align: center;
    padding: 7px 30px;
    border-radius: 13px;
    border: 1px solid #ebebeb;
    position: relative;
    font-family: 'Oswald', sans-serif;
    border-bottom-left-radius: 0;
    font-weight: 300;
}

    .b02_right_ttl:before {
        content: '';
        position: absolute;
        background: url("../W_images/b02_icon03.png") no-repeat center center;
        width: 17px;
        height: 15px;
        bottom: -1px;
        left: -17px;
    }

.b02_right_img {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-end;
    padding-left: 40px;
    width: 100%;
}

    .b02_right_img li:nth-child(1) {
        width: calc(55% + 90px);
    }

    .b02_right_img img {
        width: 100%;
    }

    .b02_right_img li:nth-child(2) {
        width: 45%;
        margin: 0 -90px 20px 0;
        position: relative;
        -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 1);
        -moz-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 1);
        box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 1);
    }

        .b02_right_img li:nth-child(2):after {
            content: '';
            position: absolute;
            width: 100%;
            height: 100%;
            border: 1px solid #1aa7df;
            top: 40px;
            right: 40px;
            z-index: -5;
        }

.box03 {
    padding: 30px 0;
}

    .box03 .idx_h2 {
        text-align: center;
        background-image: url("../W_images/idx_h2_icon02.png");
        background-position: bottom center;
    }

.b03_btn {
    font-size: 22px;
    color: var(--scolor);
    text-decoration: none;
    position: absolute;
    right: 5%;
    top: 5%;
    /* text-transform: uppercase; */
    transition: all .5s;
}

    .b03_btn:hover {
        color: var(--mcolor)
    }

.b03_list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.b03_item {
    border: 1px solid #B8B8B8;
}

    .b03_item:nth-child(4n) {
        margin-right: 0;
    }

    .b03_item a {
        display: block;
        text-decoration: none;
        border: 1px solid #ebebeb;
        text-align: center;
        padding: 0;
        position: relative;
        color: #666666;
        transition: all 0.3s;
        height: 100%;
    }

.b03_itm_more {
    margin: 0;
    position: absolute;
    top: 20px;
    padding: 5px 5px 3px;
    font-size: 13px;
    color: #fff;
}

    .b03_itm_more.discount {
        background: #e90505;
        left: 20px;
        z-index: 99;
    }

    .b03_itm_more.new {
        background: #f7a31d;
        right: 20px;
    }

.b03_itm_img {
    overflow: hidden;
    margin: 0;
}

    .b03_itm_img img {
        transition: all 0.5s;
        width: 100%;
        height: 100%;
        object-fit: cover;
    }

    .b03_itm_img:hover img {
        transform: scale(1.1,1.1);
    }

.b03_itm_ttl {
    line-height: 1.5em;
    color: #000;
    padding: 15px 20px;
}

.b03_itm_btn {
    margin: 5px 0 10px;
    font-size: 10px;
    background: #19a7df;
    display: inline-block;
    color: #fff;
    text-transform: uppercase;
    padding: 7px 13px 5px;
    transition: all 0.5s;
}

.box04 {
    background: url("../W_images/b04_bg.jpg") no-repeat center center/cover;
    padding: 30px 0;
    color: #fff;
}

    .box04 .idx_h2 {
        text-align: center;
        color: #fff;
        background-image: url("../W_images/idx_h2_icon03.png");
        background-position: bottom center;
    }

.b04_list {
    display: flex;
    justify-content: space-between;
}

.b04_item {
    width: calc(25% - 22.5px);
}

.b04_itm_img {
    width: 200px;
    height: 200px;
    background: #37358d;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 auto 25px;
}

.b04_itm_ttl {
    font-size: 18px;
    text-align: center;
    color: #1aa7df;
    line-height: 1.5em;
    margin-bottom: 10px;
    font-family: 'Roboto Condensed', sans-serif;
}

    .b04_itm_ttl span {
        display: block;
        font-size: 133.33%;
        text-transform: uppercase;
        font-family: 'Oswald', sans-serif;
        font-weight: 300;
        margin-top: 5px;
    }

.b04_itm_txt {
    margin: 0;
    text-align: center;
}

.box05 .container {
    display: flex;
    justify-content: space-between;
}

.box05 {
    background: #272727;
    color: #fff;
}

.b05_left {
    width: 67%;
    padding: 60px 60px 60px 0;
}

    .b05_left .idx_h2 {
        color: #fff;
        background-image: url("../W_images/idx_h2_icon04.png");
        margin-bottom: 10px;
    }

.b05_left_txt {
    font-style: italic;
}

.b05_right .idx_h2 {
    text-align: center;
    color: #fff;
    background-image: url("../W_images/idx_h2_icon03.png");
    background-position: center bottom;
}

.b05_left_list {
    display: flex;
    justify-content: space-between;
}

.b05_left_item {
    width: calc(50% - 30px);
}

    .b05_left_item > a {
        display: block;
        text-decoration: none;
        color: #1aa7df;
        transition: all 0.3s;
    }

    .b05_left_item a:hover {
        opacity: 0.7;
    }

.b05_left_itm_img {
    margin: 0 0 60px;
    position: relative;
    z-index: 2;
}

    .b05_left_itm_img:after {
        content: '';
        position: absolute;
        width: 100%;
        height: 100%;
        top: 30px;
        left: 30px;
        background: #555555;
        z-index: -5;
    }

    .b05_left_itm_img img {
        width: 100%;
    }

.b05_left_itm_ttl {
    font-size: 18px;
    line-height: 1.5em;
    font-family: 'Roboto Condensed', sans-serif;
}

    .b05_left_itm_ttl span {
        display: block;
        font-size: 133.33%;
        font-family: 'Oswald', sans-serif;
        font-weight: 300;
        text-transform: uppercase;
        margin-top: 3px;
    }

.b03_left_icon {
    display: flex;
    margin: 10px 0 0;
}

    .b03_left_icon a {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 30px;
        height: 30px;
        background: #37358d;
        color: #fff;
        margin: 0 10px 0 0;
        transition: all 0.3s;
    }

.b05_right {
    width: 33%;
    padding: 60px 5%;
    position: relative;
    text-align: center;
    z-index: 2;
}

    .b05_right:after {
        content: '';
        position: absolute;
        width: 100vw;
        min-width: 1000px;
        height: 100%;
        background: #1aa7df;
        top: 0;
        left: 0;
        z-index: -5;
        pointer-events: none;
    }

.b05_right_list .slick-slide span {
    display: block;
    font-size: 18px;
    font-family: 'Oswald', sans-serif;
    font-weight: 300;
}

.b05_right_list .slick-slide img {
    width: 90%;
    background: #fff;
    padding: 20px;
    margin: 0 auto 20px;
}

.b05_right_list .slick-arrow {
    position: absolute;
    border: none;
    width: 35px;
    height: 55px;
    background: rgba(39,39,39,0.1);
    cursor: pointer;
    z-index: 2;
    top: 40%;
    transform: translateY(-50%);
    text-indent: -50000px;
    transition: all 0.3s;
}

.b05_right_list .slick-prev {
    left: -5px;
}

.b05_right_list .slick-next {
    right: -5px;
}

.b05_right_list .slick-arrow:after {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 6px 0 6px 10px;
    border-color: transparent transparent transparent #ffffff;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    opacity: 0.5;
    transition: all 0.3s;
}

.b05_right_list .slick-prev:after {
    border-width: 6px 10px 6px 0;
    border-color: transparent #ffffff transparent transparent;
}

.b05_right_list .slick-arrow:hover {
    background: rgba(55,53,141,0.5);
}

    .b05_right_list .slick-arrow:hover:after {
        opacity: 1;
    }

.box06 {
    padding: 30px 0;
}

    .box06 .idx_h2 {
        text-align: center;
        background-image: url("../W_images/idx_h2_icon02.png");
        background-position: bottom center;
    }

.b06_list {
    display: flex;
    flex-wrap: wrap;
}

.b06_item {
    width: calc(50% - 15px);
    margin: 0 30px 30px 0;
}

    .b06_item:nth-child(2n) {
        margin-right: 0;
    }

    .b06_item a {
        display: flex;
        text-decoration: none;
        color: #353535;
        transition: all 0.3s;
    }

.b06_itm_img {
    flex-shrink: 0;
    width: calc(50% - 15px);
    margin: 0 30px 0 0;
    overflow: hidden;
}

    .b06_itm_img img {
        width: 100%;
        transition: all 0.7s;
    }

.b06_item a:hover .b06_itm_img img {
    transform: scale(1.1,1.1);
}

.b06_item a:hover {
    opacity: 0.7;
}

.b06_itm_ttl {
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.3em;
    font-size: 26px;
    color: var(--scolor);
    font-family: 'Oswald', sans-serif;
    margin-bottom: 5px;
    font-weight: 300;
}

.b06_itm_info {
    font-size: 14px;
    color: #666666;
    font-weight: 300;
    margin: 0 0 10px;
    background: url("../W_images/b06_line.png") no-repeat bottom left;
    padding-bottom: 25px;
}

.b06_itm_txt {
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.box07 {
    background: #37358d;
    padding: 60px 0;
}

.b07_list .slick-slide {
    margin: 0 15px;
}

    .b07_list .slick-slide a {
        display: flex;
        justify-content: center;
        align-items: center;
        background: #fff;
        height: 100px;
        padding: 10px;
    }

.box08 {
    padding: 30px 0;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 30px;
}

.b08_h2 {
    text-align: center;
    font-size: 36px;
    font-weight: 700;
    color: #37358d;
    margin: 0 0 10px;
}

.b08_txt {
    text-align: center;
}

.b08_col {
    display: flex;
    justify-content: space-between;
    margin-bottom: 40px;
}

.b08_col_item {
    width: calc(50% - 15px);
}

    .b08_col_item textarea {
        width: 100%;
        height: 100%;
        padding: 20px 30px;
        border: 1px solid #d1d1d1;
    }

    .b08_col_item:nth-child(1) {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
    }

        .b08_col_item:nth-child(1) > * {
            width: calc(50% - 15px);
            border: 1px solid #d1d1d1;
            padding: 15px 20px;
            color: #666666;
        }

            .b08_col_item:nth-child(1) > *:nth-child(-n+2) {
                margin-bottom: 20px;
            }

.b08_form button {
    margin: 0 auto;
    display: block;
    background: #37358d;
    color: #fff;
    font-size: 15px;
    border: none;
    width: 150px;
    padding: 12px;
    text-transform: uppercase;
    transition: all 0.3s;
    cursor: pointer;
}

    .b08_form button:hover {
        background: #1d1d1d;
    }

.f_main {
    display: flex;
    justify-content: space-between;
}

.f_mod:first-child {
    width: 45%;
}

.f_mod {
    width: calc(33.33% - 20px);
}

    .f_mod p {
        margin-bottom: 15px;
    }

.f_ttl {
    color: #37358d;
    text-transform: uppercase;
    position: relative;
    margin: 0 0 20px;
    padding: 0 0 10px;
    font-size: 24px;
    font-weight: 600;
}

    .f_ttl:after {
        content: '';
        position: absolute;
        width: 75px;
		height: 2px;
		background: #000000;
        left: 0;
        bottom: 0;
    }

.f_link a {
    display: inline-block;
    text-decoration: none;
    font-size: 15px;
    color: #000;
    position: relative;
}

    .f_link a:after {
        content: '';
        position: absolute;
        width: 0;
        height: 1px;
        left: 0;
        bottom: 0;
        background: #353535;
        transition: all 0.3s;
    }

    .f_link a:hover:after {
        width: 100%;
    }

.f_link li {
    position: relative;
    margin-bottom: 10px;
    padding-left: 20px;
}

    .f_link li:before {
        content: '';
        position: absolute;
        width: 5px;
        height: 5px;
        background: #000;
        left: 0;
        top: 10px;
        border-radius: 50%;
    }

.f_card {
    margin: 0;
    display: flex;
    flex-wrap: wrap;
}

    .f_card img {
        margin: 0 20px 10px 0;
    }

.f_item a {
    display: flex;
    text-decoration: none;
    transition: all 0.3s;
    color: #353535;
}

    .f_item a:hover {
        opacity: 0.7;
    }

.f_itm_img {
    flex-shrink: 0;
    margin: 0 15px 0 0;
    width: 115px;
}

.f_itm_ttl {
    color: #37358d;
    margin: 0;
    font-family: 'Oswald', sans-serif;
}

.f_itm_txt {
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.f_item:not(:last-child) {
    padding-bottom: 10px;
    border-bottom: 1px solid #ebebeb;
    margin-bottom: 10px;
}

.f_copyight {
    border-top: 1px solid #ebebeb;
    padding: 0px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    margin-bottom: 60px;
}

    .f_copyight p {
		margin: 0;
		font-size: 14px;
		color: #000000;
		text-transform: uppercase;
		font-weight: 500;
		}

        .f_copyight p a {
            text-decoration: none;
        }





.f_call {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 99;
    background: #1aa7df;
    color: #fff;
    padding: 5px 0;
}

    .f_call ul {
        display: flex;
        justify-content: center;
    }

    .f_call a {
        display: block;
        text-decoration: none;
        color: #fff;
        padding: 0 50px;
        border-right: 1px solid #fff;
        background: url("../W_images/f_tel.png") no-repeat left center;
        padding-left: 50px;
    }

        .f_call a span:nth-child(1) {
            text-decoration: underline;
            font-size: 14px;
        }

        .f_call a span:nth-child(2) {
            display: block;
            font-size: 18px;
            font-weight: 700;
        }

    .f_call li:last-child a {
        border-right: none;
    }

    .f_call li:nth-child(2) a {
        background-image: url("../W_images/f_zalo.png");
        padding-left: 80px;
        margin-left: 50px;
    }

    .f_call li:nth-child(3) a {
        background-image: url("../W_images/f_mail.png");
        margin-left: 50px;
        padding-right: 0;
    }

/*
  font-family: 'Nunito', sans-serif;
  font-family: 'Oswald', sans-serif;
*/

@media screen and (min-width: 1600px) {
    h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
        font-size: 18px;
    }

    .f_link a {
        font-size: 18px;
    }
}

@media screen and (max-width: 1400px) {
    .container {
        padding: 0 3%;
    }
}

@media screen and (max-width: 768px) {
    h1, h2, h3, h4, h5, h6, input, button, textarea, select, p, blockquote, th, td, pre, address, li, dt, dd {
        font-size: 14px;
    }

    #wrapper {
        min-width: 100%;
        margin: 0;
        padding-top: 91px;
    }

    #main, #footer {
        min-width: 100%;
    }

    .container, .title_sp {
        padding: 0 3%;
        width: 100%;
    }

    .sp {
        display: block;
    }

    .pc {
        display: none;
    }
    /* MENU-ICON */
    .menu-icon {
        width: 50px;
        height: 43px;
        box-sizing: border-box;
        text-align: center;
        text-transform: uppercase;
        line-height: 1em;
        cursor: pointer;
        color: #fff;
        font-size: 14px;
        padding: 8px 0;
        z-index: 99999;
        background: #36358d;
        margin-left: 10px;
    }

        .menu-icon span {
            display: block;
            margin: 0 auto 15px;
            width: 30px;
            height: 3px;
            background-color: #fff;
            -webkit-transition-duration: 0;
            -moz-transition-duration: 0;
            -ms-transition-duration: 0;
            -o-transition-duration: 0;
            transition-duration: 0;
            -webkit-transition-delay: 0.2s;
            -moz-transition-delay: 0.2s;
            -ms-transition-delay: 0.2s;
            -o-transition-delay: 0.2s;
            transition-delay: 0.2s;
            top: 12px;
            left: 0;
            position: relative;
        }

            .menu-icon span::after, .menu-icon span::before {
                display: block;
                content: '';
                position: absolute;
                width: 30px;
                height: 3px;
                background-color: #fff;
                -webkit-transition-property: margin, -webkit-transform;
                -webkit-transition-duration: 0.2s;
                -moz-transition-duration: 0.2s;
                -ms-transition-duration: 0.2s;
                -o-transition-duration: 0.2s;
                transition-duration: 0.2s;
                -webkit-transition-delay: 0.2s, 0;
                -moz-transition-delay: 0.2s, 0;
                -ms-transition-delay: 0.2s, 0;
                -o-transition-delay: 0.2s, 0;
                transition-delay: 0.2s, 0;
            }

            .menu-icon span::before {
                margin-top: -10px;
            }

            .menu-icon span::after {
                margin-top: 10px;
            }

        .menu-icon.active span {
            background-color: transparent;
        }

            .menu-icon.active span::before, .menu-icon.active span::after {
                margin-top: 0px;
                -webkit-transition-delay: 0, 0.2s;
                -moz-transition-delay: 0, 0.2s;
                -ms-transition-delay: 0, 0.2s;
                -o-transition-delay: 0, 0.2s;
                transition-delay: 0, 0.2s;
            }

            .menu-icon.active span::before {
                -webkit-transform: rotate(45deg);
                -moz-transform: rotate(45deg);
                -ms-transform: rotate(45deg);
                -o-transform: rotate(45deg);
                transform: rotate(45deg);
            }

            .menu-icon.active span::after {
                -webkit-transform: rotate(-45deg);
                -moz-transform: rotate(-45deg);
                -ms-transform: rotate(-45deg);
                -o-transform: rotate(-45deg);
                transform: rotate(-45deg);
            }

    .gnv-ico {
        width: 50px;
        height: 52px;
        position: absolute;
        background: rgba(255, 255, 255, 0.3);
        right: 0;
        top: 0 !important;
        transform: none !important;
        border: none !important;
    }

        .gnv-ico:before {
            content: '';
            position: absolute;
            border: solid #fff;
            border-width: 0 1px 1px 0;
            display: inline-block;
            padding: 3px;
            -webkit-transform: rotate(45deg);
            transform: rotate(45deg);
            left: calc(50% - 3px);
            top: calc(50% - 3px);
            transition: all 0.5s ease;
        }

    .gnavi li.active > .gnv-ico:before {
        -webkit-transform: rotate(-135deg);
        transform: rotate(-135deg);
    }

    #totop {
        width: 40px;
        right: 3%;
        bottom: 80px;
        line-height: 0;
    }

    .h_info, .h_social, .h_search {
        display: none;
    }

    .h_main {
        padding: 10px 0 5px;
    }

    #header {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 999;
        width: 100%;
    }

    .title_sp {
        margin-bottom: 0;
        padding-top: 5px;
        text-align: center;
    }

        .title_sp span {
            display: inline-block;
            font-size: 15px;
            padding-left: 0;
            line-height: 15px;
            font-weight: bold;
        }

    #gnavi {
        position: fixed;
        top: 71px;
        left: 0;
        width: 100%;
        z-index: 9999;
        height: calc(100% - 71px);
        padding: 30px 3%;
        background: rgba(255,255,255,0.9);
        overflow: auto;
        display: none;
    }

        .gnavi, #gnavi .container {
            display: block;
            padding: 0;
        }

            .gnavi > li {
                margin: 0;
            }

                .gnavi > li > a {
                    background: var(--mcolor);
                    width: 100%;
                    color: #fff !important;
                    font-size: 16px;
                    padding: 15px 20px;
                    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
                    text-align: center;
                }

                .gnavi > li.over > a:after {
                    display: none;
                }

    .submenu, .subsubmenu {
        position: relative;
    }

        .submenu a {
            font-size: 16px;
            padding: 15px 20px;
            text-align: center;
            margin: 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.3);
            background: #191852;
        }

    .subsubmenu {
        left: 0;
    }

        .subsubmenu a {
            background: #34335a;
        }

    .main_itm_img {
        margin: 0;
        width: 35%;
    }

    .main_itm_info {
        margin-right: 3%;
        width: 60%;
    }

    .main_itm_info_txt01 {
        font-size: 20px;
    }

    .main_itm_info_txt02 {
        font-size: 40px;
    }

    .main_itm_info_txt03 {
        font-size: 14px;
        margin-top: 10px;
    }

    .main_item .container {
        height: 300px;
    }

    .box_img {
        background-size: auto;
        padding: 30px 0;
    }
	
	.box_img_main {
		gap:10px;
		grid-template-columns: repeat(2, 1fr);
	}
	
    .box01 {
        padding: 40px 0;
    }

    .b01_top {
        display: block;
    }
	.idx_btn a {
		width:220px;
	}
    .idx_h2 {
        font-size: 26px;
        text-align: center;
        background-image: url("../W_images/idx_h2_icon02.png");
        background-position: bottom center;
        background-size: 100px auto;
    }

    .b01_cate {
        width: 100%;
        max-width: 355px;
        margin: 0 auto 30px;
    }

    .b01_cate_ttl {
        font-size: 18px;
        width: 100%;
    }

    .b01_cate_link {
        position: relative;
        top: 0;
        margin-top: 1px;
    }

    .b01_item {
        width: 100%;
    }

        .b01_item a {
            padding: 15px 25px;
            border-radius: 10px;
        }

    .b01_itm_txt {
        font-size: 14px;
    }

    .b01_itm_ttl {
        font-size: 18px;
    }

    .b01_item:last-child {
        margin-bottom: 0;
    }

    .box02 {
        padding: 40px 0;
    }

        .box02 .container {
            display: block;
        }

    .b02_main {
        width: 100%;
        margin: 0 0 30px;
    }

        .b02_main p:not([class]) {
            font-size: 14px;
        }

        .b02_main ul li {
            font-size: 14px;
        }

            .b02_main ul li:before {
                width: 15px;
                height: 15px;
                top: 2px;
            }

	.b02_img:after {
		bottom: -10px;
		right: -10px;
	}
    .b02_txt01 {
        font-size: 16px;
    }

    .b02_txt02 {
        font-size: 26px;
    }

    .b02_right {
        width: 100%;
    }

    .b03_list {
        grid-template-columns: repeat(2, 1fr);
    }

    .b03_item {
    }

    .b03_itm_img {
        height: auto;
    }

    .b03_item:nth-child(2n) {
        margin-right: 0;
    }

    .b03_btn {
        font-size: 18px;
    }

    .box03 {
        padding: 40px 0 20px;
    }

    .box04 {
        padding: 40px 0 10px;
    }

    .b04_list {
        flex-wrap: wrap;
    }

    .b04_item {
        width: calc(50% - 10px);
        margin-bottom: 30px;
    }

    .b04_itm_img {
        width: 120px;
        height: 120px;
        padding: 30px;
        margin-bottom: 15px;
    }

    .b04_itm_ttl {
        font-size: 16px;
    }

    .box05 .container {
        display: block;
    }

    .b05_left {
        width: 100%;
        padding: 40px 0;
    }

    .b05_left_itm_ttl {
        font-size: 16px;
    }

    .b05_left_itm_img:after {
        left: 15px;
        top: 15px;
    }

    .b05_left_item {
        width: calc(50% - 15px);
    }

    .b05_left_itm_img {
        margin-bottom: 30px;
    }

    .b05_right {
        width: 100%;
        padding: 40px 0;
    }

        .b05_right:after {
            left: -5%;
        }

    .b05_right_list {
        width: 100%;
        max-width: 400px;
        margin: 0 auto;
    }

        .b05_right_list .slick-slide span {
            font-size: 14px;
        }

    .box06, .box07 {
        padding: 40px 0;
    }

    .b06_item {
        width: 100%;
        margin: 0 0 30px 0;
    }

    .b06_itm_ttl {
        font-size: 24px;
    }

    .b06_item:last-child {
        margin-bottom: 0;
    }

    .b07_list .slick-slide {
        margin: 0 5px;
    }

    .box08 {
        padding: 40px 0;
        margin-bottom: 40px;
    }

    .b08_h2 {
        font-size: 22px;
    }

    .b08_col {
        display: block;
        margin-bottom: 0;
    }

    .b08_col_item {
        width: 100%;
        margin-bottom: 20px;
    }

        .b08_col_item textarea {
            padding: 15px 20px;
            height: 150px;
        }

    .f_main {
        display: block;
    }

    .f_mod:first-child {
        width: 100%;
    }

    .f_mod {
        width: 100%;
        margin: 0 0 30px;
    }

    .f_copyight {
        display: block;
        text-align: center;
        margin-top: 0;
        margin-bottom: 70px;
    }

        .f_copyight p {
            font-size: 12px;
        }

    .f_call a span:nth-child(1) {
        font-size: 2vw;
        line-height: 1em;
    }

    .f_call a span:nth-child(2) {
        font-size: 2.5vw;
        line-height: 1em;
    }

    .f_call a {
        background-size: 30px auto;
        padding: 0 3vw;
        padding-left: 35px;
    }

    .f_call li:nth-child(2) a {
        background-size: 40px auto;
        padding-left: 45px;
        margin-left: 3vw;
    }

    .f_call li:nth-child(3) a {
        margin-left: 3vw;
    }
}

@media screen and (max-width: 640px) {
    .main_itm_info_txt03 {
        display: none;
    }

    .main_itm_info_txt01 {
        font-size: 4vw;
    }

    .main_itm_info_txt02 {
        font-size: 6vw;
        margin-bottom: 20px;
    }

    .main_itm_info_txt01:before {
        width: 10vw;
    }
}

@media screen and (max-width: 480px) {
    .b01_item a {
        justify-content: space-between;
        background-size: 50% auto;
    }

    .b01_itm_img {
        min-width: auto;
        width: 50%;
    }

    .b01_itm_main {
        width: 50%;
        padding-right: 3%;
    }

    .b01_itm_num {
        left: 40%;
        font-size: 11px;
    }

    .b02_right_img {
        padding-left: 3%;
    }

        .b02_right_img li:nth-child(2):after {
            left: -20px;
        }

    .b02_right_btn {
        /*width: 10vw;
        height: 10vw;
        left: 6vw;
        top: 13vw;*/
    }

    .b02_right_ttl {
        font-size: 14px;
    }

    .b03_item a {
        padding: 10px 5px;
    }

    .b06_itm_img {
        width: 50%;
        margin: 0 15px 0 0;
    }

    .b06_itm_txt {
        -webkit-line-clamp: 2;
    }

    .b06_itm_info {
        font-size: 12px;
        background-size: 50px auto;
        padding-bottom: 18px;
    }

    .b08_col_item:nth-child(1) > *:nth-child(-n+2) {
        margin-bottom: 10px;
    }

    .b08_col_item:nth-child(1) > * {
        width: 100%;
        margin-bottom: 10px;
    }

    .b08_col_item {
        margin: 0;
    }

    .b08_form button {
        padding: 12px;
        margin-top: 10px;
    }

    .f_card img {
        margin: 0 10px 10px 0;
    }
}

@media screen and (max-width: 375px) {
    .title_sp span {
        font-size: 13px;
    }

    .b01_itm_txt {
        display: none;
    }

    .b01_itm_img {
        width: 40%;
    }

    .b01_item a {
        padding: 10px 20px;
        height: 130px;
        background-size: auto 100%;
    }

    .b01_itm_ttl {
        font-size: 15px;
    }

    .b01_itm_num {
        left: 45%;
        font-size: 9px;
    }
    /*.b03_item {
    width: 100%;
    margin: 0 0 20px;
}*/
    .b04_item {
        width: 100%;
    }

    .b05_left_list {
        display: block;
    }

    .b05_left_item {
        width: 100%;
        margin: 0 0 30px;
    }

        .b05_left_item:last-child {
            margin-bottom: 0;
        }

    .b06_item a {
        display: block;
    }

    .b06_itm_img {
        width: 100%;
        margin: 0 0 15px;
    }

    .f_call a {
        background-size: 20px auto;
        padding-left: 25px;
    }

    .f_call li:nth-child(2) a {
        background-size: 35px auto;
        padding-left: 40px;
    }

    .f_call a span:nth-child(1) {
        font-size: 2.5vw;
    }

    .f_call {
        padding: 10px 0;
    }

    .f_copyight {
        margin-bottom: 40px;
    }
}
