@charset "utf-8";

/*
Theme Name:toyoichi
Description:This is toyoichi original theme.
Version:1.0.0
*/

@import url('https://fonts.googleapis.com/css2?family=Chivo:ital,wght@0,100..900;1,100..900&family=Noto+Sans+JP:wght@100..900&family=Zen+Old+Mincho&display=swap');

.pc {
    display: block;
}

.sp {
    display: none;
}

@media only screen and (max-width: 599px) {
    .pc {
        display: none;
    }

    .sp {
        display: block;
    }
}

/* ----------------------------------------------------------
Common Setting
---------------------------------------------------------- */

html {
    font-size: 62.5%;
    scroll-behavior: smooth;
    scroll-padding-top: 100px;
}

/*body*/

body {
    color: #333333;
    font-family: "Noto Sans JP", "メイリオ", "Meiryo",
        "ヒラギノ角ゴ ProN W3";
    font-size: 1.6rem;
    font-weight: 300;
    line-height: 1.8;
}

.inner {
    width: 1048px;
    margin: 0 auto;
}

/*img*/

img {
    max-width: 100%;
    height: auto;
    vertical-align: middle;
    -ms-interpolation-mode: bicubic;
}

/*link*/

a:link,
a:visited,
a:active {
    color: #333333;
    text-decoration: none;
    transition: 0.5s;
}

a:hover {
    text-decoration: none;
    outline: 0;
    /* opacity: 0.8; */
}

input:hover,
a:hover img {
    outline: 0;
}

/* iOSでのデフォルトスタイルをリセット */

input[type="submit"],
input[type="button"] {
    border-radius: 0;
    -webkit-box-sizing: content-box;
    -webkit-appearance: button;
    -moz-appearance: button;
    appearance: button;
    border: none;
    box-sizing: border-box;
    cursor: pointer;
}

input[type="submit"]::-webkit-search-decoration,
input[type="button"]::-webkit-search-decoration {
    display: none;
}

input[type="submit"]::focus,
input[type="button"]::focus {
    outline-offset: -2px;
}

.cn-buttons-container a {
    color: #fff !important;
}

/* ----------------------------------------------------------
header
---------------------------------------------------------- */

.header {
    position: fixed;
    width: 100%;
    box-sizing: border-box;
    z-index: 100;
    transition: 0.5s;
    background-color: #fff;
}

.header .layout {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 30px 0;
    box-sizing: border-box;
    position: relative;
}

.header .layout .language_layout {
    line-height: 1.2;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

.header .layout .language_layout li {
    font-size: 1.3rem;
}

.header .layout .language_layout li:nth-of-type(3),
.header .layout .language_layout li:last-of-type {
    padding-left: 15px;
    margin-left: 15px;
    border-left: 1px solid #333;
}

.header .layout .language_layout li:nth-of-type(2) {
    margin-left: 15px;
}

.header .layout .language_layout li:not(:first-of-type) a {
    color: #ccc;
}

.header .layout .language_layout li:not(:first-of-type) a:hover {
    color: #333;
}

.header .layout .language_layout li:not(:first-of-type).active {
    color: #333;
    font-weight: 500;
}

.header .layout .btn_layout {
    display: flex;
    align-items: center;
}

.header .layout .btn_layout .header_nav {
    display: flex;
    margin-top: 25px;
}

.header .layout .btn_layout .header_nav .menu {
    margin-right: 60px;
    box-sizing: border-box;
}

.header .layout .btn_layout .header_nav .menu.menu_pc {
    display: block;
}

.header .layout .btn_layout .header_nav .menu.menu_sp {
    display: none;
}

.header .layout .btn_layout .header_nav .menu>a {
    padding-bottom: 25px;
    position: relative;
    display: block;
}

.header .layout .btn_layout .header_nav .menu>a:after {
    content: '';
    height: 6px;
    background-color: #41C9F4;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    transition: 0.5s;
}

.header .layout .btn_layout .header_nav .menu:hover>a:after {
    width: 100%;
}

.header .layout .btn_layout .header_nav .menu:last-of-type {
    margin-right: 40px;
}

.header .layout .btn_layout .header_nav .menu a:hover {
    color: #009FBD;
}

.header .sub_menu_box {
    width: 100vw;
    left: 0;
    background-color: #fff;
    padding: 20px;
    border-top: solid 1px #41C9F4;
    position: absolute;
    display: none;
}

.header .sub_menu_box .sub_menu_list {
    display: flex;
    justify-content: center;
}

.header .sub_menu_box .sub_menu_list li {
    font-size: 1.4rem;
    margin-right: 80px;
}

.header .sub_menu_box .sub_menu_list li:last-of-type {
    margin-right: 0;
}

.header .layout .btn_layout .btn a {
    color: #fff;
    font-size: 1.5rem;
    font-weight: 500;
    background-color: #0BACF4;
    padding: 8px 28px;
    border-radius: 50px;
    display: block;
    position: relative;
}

.header .layout .btn_layout .btn a:after {
    content: '';
    width: 15px;
    height: 12px;
    background-image: url(images/btn_arrow.svg);
    position: absolute;
    top: 16px;
    right: 20px;
    transition: 0.5s;
}

.header .layout .btn_layout .btn a:hover:after {
    right: 15px;
}

.header .language_btn,
.header .layout .menu_btn_box {
    display: none;
}



/* ----------------------------------------------------------
top_section
---------------------------------------------------------- */

.section {
    padding: 80px 0;
}

.top_en_title {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.5rem;
    padding-left: 30px;
    position: relative;
}

.top_en_title:before {
    content: '';
    display: block;
    background-color: #41C9F4;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 10px;
    border-radius: 50%;
}

.top_ection_title {
    font-size: 3.8rem;
    font-weight: 500;
    margin-top: 10px;
}

.arrow {
    display: block;
    height: 1px;
    position: relative;
}

.arrow:after {
    content: '';
    display: block;
    width: 15px;
    height: 1px;
    position: absolute;
    right: 0;
    bottom: 0;
    transform: rotate(30deg);
    transform-origin: right bottom;
}

/* ----------------------------------------------------------
top_mv
---------------------------------------------------------- */
.top_mv .box {
    height: 800px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    overflow: hidden;
}

.top_mv .box.box01 {
    background-image: url(images/mv_bg01.webp);
}

.top_mv .box.box02 {
    background-image: url(images/mv_bg02.webp);
}

.top_mv .box.box03 {
    background-image: url(images/mv_bg03.webp);
}

.top_mv .inner {
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 800px;
}

.top_mv .heading {
    color: #000;
    font-size: 5rem;
    font-weight: 500;
    margin-top: 70px;
    text-shadow: 0 0 4px #fff,
        0 0 20px #fff;
}

.top_mv .sub_heading {
    color: #000;
    font-size: 2.8rem;
    font-weight: 500;
    margin-top: 70px;
    text-shadow: 0 0 4px #fff,
        0 0 20px #fff;
}

.top_mv .btn {
    margin-top: 70px;
    font-size: 1.8rem;
    line-height: 1;
}

.top_mv .btn a {
    display: flex;
    align-items: flex-end;
    font-weight: 500;
}

.top_mv .arrow {
    width: 248px;
    background-color: #000;
    margin-left: 10px;
}

.top_mv .arrow:after {
    background-color: #000;
}


/* ----------------------------------------------------------
top_news
---------------------------------------------------------- */

.top_news .layout {
    display: flex;
}

.top_news .layout .top_en_title {
    width: 210px;
}

.top_news .layout .top_news_box {
    width: calc(100% - 210px);
}

.top_news .layout .top_news_box .box .top_news_layout {
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}

.top_news .layout .top_news_box .box .top_news_layout dt {
    font-family: "Chivo", sans-serif;
}

.top_news .layout .top_news_box .box .top_news_layout dd {
    color: #0BACF4;
    padding: 5px 10px 3px;
    border: 1px solid #0BACF4;
    margin-left: 20px;
}

.top_news .layout .top_news_box .box {
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #eee;
}

.top_news .btn {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}

.top_news .btn a {
    display: flex;
    align-items: flex-end;
    line-height: 1;
}

.top_news .btn .arrow {
    width: 120px;
    background-color: #0BACF4;
    margin-left: 20px;
}

.top_news .btn .arrow:after {
    background-color: #0BACF4;
}


/* ----------------------------------------------------------
top_vision
---------------------------------------------------------- */

.top_vision .layout {
    display: flex;
    justify-content: space-between;
}

.top_vision .box {
    width: 500px;
}

.top_vision .box .text {
    margin-top: 20px;
}

.top_vision .box .btn {
    margin-top: 40px;
}

.top_vision .box .btn a {
    color: #0BACF4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 400px;
    border: 1px solid #0BACF4;
    border-radius: 50px;
    padding: 30px 40px;
    box-sizing: border-box;
}

.top_vision .box .btn a .arrow {
    width: 120px;
    background-color: #0BACF4;
}

.top_vision .box .btn a .arrow:after {
    background-color: #0BACF4;
}

/* ----------------------------------------------------------
top_service
---------------------------------------------------------- */

.top_service .layout {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

.top_service .layout .box {
    width: 33.333%;
    box-sizing: border-box;
    border: 1px solid #EEEEEE;
}

.top_service .layout .box a {
    display: block;
    padding: 20px;
    overflow: hidden;
}

.top_service .layout .box:first-of-type,
.top_service .layout .box:nth-of-type(2) {
    border-right: none;
}

.top_service .layout .box .heading {
    font-size: 2.4rem;
    margin-top: 20px;
}

.top_service .box .arrow {
    width: 120px;
    background-color: #0BACF4;
    margin-top: 30px;
    float: right;
}

.top_service .box .arrow:after {
    background-color: #0BACF4;
}

/* ----------------------------------------------------------
top_product
---------------------------------------------------------- */

.top_product .layout {
    display: flex;
    flex-wrap: wrap;
    margin-top: 60px;
}

.top_product .layout .box {
    width: 50%;
    border: 1px solid #EEEEEE;
    border-top: none;
    box-sizing: border-box;
}

.top_product .layout .box a {
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.top_product .layout .box:first-of-type,
.top_product .layout .box:nth-of-type(2) {
    border-top: 1px solid #EEEEEE;
}

.top_product .layout .box:nth-of-type(even) {
    border-left: none;
}

.top_product .layout .box .contents {
    width: calc(100% - 220px);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.top_product .layout .box .contents .arrow_box {
    overflow: hidden;
}

.top_product .layout .box .contents .arrow {
    width: 120px;
    background-color: #0BACF4;
    margin-top: 30px;
    float: right;
}

.top_product .layout .box .contents .arrow:after {
    background-color: #0BACF4;
}

/* ----------------------------------------------------------
top_company
---------------------------------------------------------- */

.top_company .layout {
    display: flex;
    margin-top: 60px;
}

.top_company .layout .box {
    width: 50%;
    border: 1px solid #EEEEEE;
    box-sizing: border-box;
    padding: 20px;
    display: flex;
    justify-content: space-between;
}

.top_company .layout .box:first-of-type {
    border-right: none;
}

.top_company .layout .box .contents {
    width: 280px;
}

.top_company .layout .box .contents .company_name {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.top_company .layout .box .contents .company_address {
    line-height: 2;
}

.top_company .layout .box .contents .company_tel,
.top_company .layout .box .contents .company_fax {
    display: flex;
    line-height: 2;
}

.top_company .layout .box .contents .company_tel dt,
.top_company .layout .box .contents .company_fax dt {
    font-weight: 500;
    margin-right: 20px;
}

.top_company .btn {
    display: flex;
    justify-content: flex-end;
    margin-top: 40px;
}

.top_company .btn a {
    display: flex;
    align-items: flex-end;
    line-height: 1;
}

.top_company .btn .arrow {
    width: 120px;
    background-color: #0BACF4;
    margin-left: 20px;
}

.top_company .btn .arrow:after {
    background-color: #0BACF4;
}

/* ----------------------------------------------------------
footer
---------------------------------------------------------- */

.footer {
    background-color: #EEEEEE;
    padding: 70px 0 60px;
}

.footer .footer_menu {
    display: flex;
    justify-content: center;
}

.footer .footer_menu li:not(:last-of-type) {
    margin-right: 60px;
}

.footer .logo {
    text-align: center;
    margin-top: 60px;
}

.footer .copyright {
    font-size: 1.2rem;
    text-align: center;
    margin-top: 60px;
}

/* ----------------------------------------------------------
page_common
---------------------------------------------------------- */

.page_section .inner {
    border-top: 1px solid #eee;
    padding-top: 50px;
}

.page_mv {
    padding: 250px 0 100px;
    background: #ECFAFE;
    background-image: url(images/page_mv_bg.svg);
    background-position: right bottom;
    background-repeat: no-repeat;
    background-size: 650px;
}

.page_mv .en_title {
    font-size: 2rem;
    font-weight: 500;
    letter-spacing: 0.5rem;
    padding-left: 30px;
    position: relative;
}

.page_mv .en_title:before {
    content: '';
    display: block;
    background-color: #41C9F4;
    width: 16px;
    height: 16px;
    position: absolute;
    left: 0;
    top: 10px;
    border-radius: 50%;
}

.page_mv .title {
    font-size: 3.8rem;
    font-weight: 500;
    margin-top: 10px;
}

.page_section_title {
    font-size: 3.2rem;
    font-weight: 500;
    margin-bottom: 60px;
}

.page_header .heading {
    font-size: 3.8rem;
    font-weight: 500;
    text-align: center;
    margin-bottom: 20px;
}


.page_header .text {
    font-size: 1.8rem;
    text-align: center;
}


.page_header .btn a {
    color: #0BACF4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 400px;
    border: 1px solid #0BACF4;
    border-radius: 50px;
    padding: 30px 40px;
    box-sizing: border-box;
    margin: 30px auto 0;
}

.page_header .btn a .arrow {
    width: 120px;
    background-color: #0BACF4;
}

.page_header .btn a .arrow:after {
    background-color: #0BACF4;
}

.page_section .table {
    display: flex;
    flex-wrap: wrap;
}

.page_section .table dt {
    width: 200px;
    box-sizing: border-box;
    padding: 15px 20px;
    background-color: #ECFAFE;
    border-left: 1px solid #EEEEEE;
    border-right: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
}

.page_section .table dd {
    width: calc(100% - 200px);
    box-sizing: border-box;
    padding: 15px 20px;
    border-right: 1px solid #EEEEEE;
    border-bottom: 1px solid #EEEEEE;
}

.page_section .table.table dt {
    width: 300px;
}

.page_section .table.table dd {
    width: calc(100% - 300px);
}

.page_section .table dt:first-of-type,
.page_section .table dd:first-of-type {
    border-top: 1px solid #EEEEEE;
}

.page_section .table dd a {
    color: #009FBD;
    text-decoration: underline;
    display: flex;
    align-items: center;
}

.page_section .table dd a img {
    margin-left: 10px;
}

.page_section .table dd a:hover {
    text-decoration: none;
}

.tab_box {
    background-color: #ECFAFE;
    padding: 30px 30px 10px 30px;
}

.tab_box .tab_list {
    display: flex;
    flex-wrap: wrap;
}

.tab_box .tab_list li {
    margin-right: 20px;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.tab_box .tab_list li a {
    color: #0BACF4;
    padding: 15px 30px;
    border-radius: 50px;
    background-color: #fff;
    border: 1px solid #41C9F4;
}

.tab_box .tab_list li a.active,
.tab_box .tab_list li a:hover {
    color: #fff;
    background-color: #0BACF4;
}

.tab_box .tab_list li a.active::after,
.tab_box .tab_list li a::after {
    content: url(images/tab_arrow.svg);
    display: inline-block;
    width: 12px;
    height: 8px;
    margin-left: 10px;
}

.tab_box .tab_list li a.active::after,
.tab_box .tab_list li a:hover::after {
    content: url(images/tab_arrow_active.svg);
}

/* ----------------------------------------------------------
greeting_section
---------------------------------------------------------- */

.greeting_section .layout {
    display: flex;
    justify-content: space-between;
}

.greeting_section .layout .box {
    width: calc(100% - 460px);
}

.greeting_section .layout .box .name {
    font-family: "Zen Old Mincho", serif;
    margin-top: 30px;
    text-align: right;
}

.greeting_section .layout .box .name span {
    font-size: 2rem;
}

/* ----------------------------------------------------------
business_policy_section
---------------------------------------------------------- */

.business_policy_section .box {
    margin-bottom: 40px;
    padding-left: 80px;
    position: relative;
}

.business_policy_section .box:before {
    content: '';
    display: block;
    background-color: #41C9F4;
    width: 60px;
    height: 1px;
    position: absolute;
    left: 0;
    top: 15px;
}

.business_policy_section .box dt {
    color: #0BACF4;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 10px;
}

/* ----------------------------------------------------------
history_section
---------------------------------------------------------- */

.history_section .history_box {
    position: relative;
}

.history_section .history_box:after {
    content: '';
    display: block;
    background-color: #41C9F4;
    width: 1px;
    height: calc(100% - 30px);
    position: absolute;
    left: 0;
    top: 15px;
}

.history_section .box {
    display: flex;
    padding-left: 30px;
    margin-bottom: 20px;
    position: relative;
}

.history_section .box:before {
    content: '';
    display: block;
    background-color: #41C9F4;
    width: 11px;
    height: 11px;
    position: absolute;
    left: -5px;
    top: 12px;
    border-radius: 50%;
}

.history_section .box dt {
    font-family: "Chivo", sans-serif;
    color: #0BACF4;
    font-size: 2rem;
    font-weight: 500;
    width: 100px;
}

.history_section .box dd {
    width: calc(100% - 100px);
    padding-top: 3px;
}

/* ----------------------------------------------------------
locations_section
---------------------------------------------------------- */

.locations_section .inner>.img {
    margin-bottom: 60px;
}

.locations_section .locations_box .box {
    display: flex;
    justify-content: space-between;
    padding: 20px;
    border: 1px solid #eee;
}

.locations_section .locations_box .box:not(:first-of-type) {
    border-top: none;
}

.locations_section .locations_box .box .contents {
    width: calc(100% - 270px);
}

.locations_section .locations_box .box .contents .title {
    color: #0BACF4;
    font-size: 2rem;
    font-weight: 500;
    margin-bottom: 15px;
}

.locations_section .locations_box .box .contents .info_box {
    display: flex;
    margin-top: 15px;
}

.locations_section .locations_box .box .contents .info_box dl {
    display: flex;
    width: 33.33%;
    padding: 15px;
    box-sizing: border-box;
    align-items: center;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    border-right: 1px solid #eee;
}

.locations_section .locations_box .box .contents .info_box dl:last-of-type {
    border-right: none;
}

.locations_section .locations_box .box .contents .info_box dl dt {
    color: #0BACF4;
    font-size: 1.4rem;
    font-weight: 500;
    margin-right: 20px;
}

/* ----------------------------------------------------------
breadcrumbs_section
---------------------------------------------------------- */

.breadcrumbs_section {
    padding: 40px 0 30px;
}

.breadcrumbs_section .breadcrumbs {
    display: flex;
    align-items: center;
}

.breadcrumbs_section .breadcrumbs li {
    font-size: 1.4rem;
}

.breadcrumbs_section .breadcrumbs li a {
    color: #009FBD;
}

.breadcrumbs_section .breadcrumbs li:nth-of-type(even) {
    width: 32px;
    height: 1px;
    background-color: #009FBD;
    margin: 0 15px;
}

/* ----------------------------------------------------------
recruitment_section
---------------------------------------------------------- */

.recruitment_section .recruitment_box {
    padding-top: 60px;
    margin-top: -60px;
}

.recruitment_section .recruitment_title {
    color: #0BACF4;
    font-size: 2rem;
    font-weight: 500;
    padding-left: 25px;
    margin-top: 60px;
    margin-bottom: 30px;
    position: relative;
}

.recruitment_section .recruitment_title:before {
    content: '';
    display: block;
    background-color: #41C9F4;
    width: 12px;
    height: 12px;
    position: absolute;
    left: 0;
    top: 12px;
    border-radius: 50%;
}

/* ----------------------------------------------------------
form_section
---------------------------------------------------------- */

.form_section .form .box {
    display: flex;
}

.form_section .form .box dt {
    width: 340px;
    display: flex;
    padding: 15px 20px;
    box-sizing: border-box;
    align-items: flex-start;
}

.form_section .form .box dt .required {
    color: #fff;
    font-size: 1.3rem;
    background-color: #0BACF4;
    border-radius: 4px;
    padding: 3px 10px;
    margin-right: 10px;
}

.form_section .form .box dd {
    width: calc(100% - 340px);
    padding: 15px 20px;
    box-sizing: border-box;
}

.form_section .form .box dd select {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}

.form_section .form .box dd input,
.form_section .form .box dd select,
.form_section .form .box dd textarea {
    width: 100%;
    background-color: #F5F5F5;
    border-radius: 8px;
    border: none;
    padding: 15px;
    box-sizing: border-box;
}

.form_section .form .box dd textarea {
    height: 200px;
}

.form_section .form .btn_layout {
    display: flex;
    justify-content: center;
}

.form_section .form .btn_layout .btn:last-of-type {
    margin-left: 20px;
}

.form_section .form .btn {
    width: 400px;
    margin: 30px auto 0;
    position: relative;
}

.form_section .form .btn {
    width: 400px;
    margin: 30px auto 0;
    position: relative;
}

.form_section .form .btn .wpcf7-spinner {
    display: none;
}

.form_section .form .btn input {
    font-size: 1.6rem;
    color: #0BACF4;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 400px;
    border: 1px solid #0BACF4;
    border-radius: 50px;
    padding: 30px 40px;
    box-sizing: border-box;
    background-color: #fff;
    cursor: pointer;
    position: relative;
}

.form_section .form .btn .arrow {
    width: 120px;
    background-color: #0BACF4;
    position: absolute;
    right: 40px;
    top: 43px;
}

.form_section .form .btn .arrow:after {
    background-color: #0BACF4;
}

.form_section .privacy_policy {
    margin-top: 60px;
}

.form_section .privacy_policy .title {
    font-size: 2rem;
    font-weight: 500;
    text-align: center;
}

.form_section .privacy_policy .privacy_policy_box {
    background-color: #F5F5F5;
    height: 260px;
    overflow-y: scroll;
    padding: 15px;
    box-sizing: border-box;
    margin-top: 20px;
}

.form_section .privacy_policy .privacy_policy_box span {
    font-weight: 500;
}

/* ----------------------------------------------------------
products_section
---------------------------------------------------------- */

.page_section.products_section01 .inner {
    border-top: none;
}

.products_section .layout {
    display: flex;
    margin-top: 40px;
}

.products_section .layout .box {
    border: 1px solid #eee;
    border-right: none;
    padding: 20px;
    box-sizing: border-box;
    width: 33.3333%;
}

.products_section .layout .box:last-of-type {
    border-right: 1px solid #eee;
}

.products_section .layout .box .heading {
    font-size: 1.8rem;
    font-weight: 500;
    margin-top: 15px;
}

.products_section .layout .box .text {
    margin-top: 15px;
}

/* ----------------------------------------------------------
profile_section
---------------------------------------------------------- */

.profile_section .profile_title_box {
    text-align: center;
}

.profile_section .profile_title {
    font-size: 2.4rem;
    font-weight: 500;
    display: inline-block;
    border-top: 1px solid #41C9F4;
    border-bottom: 1px solid #41C9F4;
    padding: 20px 0;
    margin-top: 100px;
}

.profile_section .inner .profile_title_box:first-of-type .profile_title {
    margin-top: 0;
}

.profile_section .inner .profile_title_box:first-of-type {
    padding-top: 100px;
    margin-top: -100px;
}

.profile_section .profile_title span {
    color: #0BACF4;
}

.profile_section .layout {
    display: flex;
    justify-content: space-between;
    margin-top: 60px;
}

.profile_section .layout .contents {
    width: 480px;
}

.profile_section .layout .contents .heading {
    font-size: 2.8rem;
    font-weight: 500;
    margin-bottom: 30px;
}

.profile_section .services_box {
    display: flex;
    justify-content: space-between;
    padding: 40px 60px;
    background-color: #ECFAFE;
    border-radius: 20px;
    margin-top: 60px;
}

.profile_section .services_box .contents {
    width: 440px;
}

.profile_section .services_box .contents .heading {
    font-size: 2.4rem;
    font-weight: 500;
    margin-bottom: 20px;
}

/* ----------------------------------------------------------
story_section
---------------------------------------------------------- */

.story_section .story_title {
    color: #0BACF4;
    font-family: "Chivo", sans-serif;
    font-size: 2rem;
    font-weight: 500;
    padding-left: 70px;
    position: relative;
}

.story_section .story_title:before {
    content: '';
    display: block;
    background-color: #41C9F4;
    width: 60px;
    height: 1px;
    position: absolute;
    left: 0;
    top: 17px;
}

.story_section .company_box {
    display: flex;
    justify-content: space-between;
    border: 1px solid #eee;
    padding: 20px;
    margin-top: 30px;
}

.story_section .company_box .contents {
    width: calc(100% - 240px);
    padding-left: 20px;
    margin-left: 20px;
    border-left: 1px solid #eee;
    box-sizing: border-box;
}

.story_section .story_box {
    margin-top: 60px;
}

.story_section .story_box .story_heading {
    font-size: 2.4rem;
    font-weight: 500;
    display: inline-block;
    border-top: 1px solid #41C9F4;
    border-bottom: 1px solid #41C9F4;
    padding: 20px 0;
    margin-bottom: 40px;
}

.story_section .story_box .layout {
    display: flex;
    justify-content: space-between;
    margin: 20px 0;
}

.story_section .story_box .layout .text {
    width: calc(100% - 490px);
}

.story_section .story_box>.img {
    text-align: center;
    margin: 20px 0;
}

/* ----------------------------------------------------------
archive
---------------------------------------------------------- */

.page_section.archive_section .inner {
    border-top: none;
    padding-top: 0;
}

.archive_section .archive_container {
    margin-top: 60px;
}

.archive_section .archive_container .box .title {
    margin-top: 10px;
}

.archive_section .archive_container .box {
    padding-bottom: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid #EEEEEE;
}

.news_dl {
    display: flex;
    align-items: center;
}

.news_dl .date {
    font-family: "Chivo", sans-serif;
    font-weight: 500;
}

.news_dl .category {
    color: #0BACF4;
    font-size: 1.3rem;
    border: 1px solid #0BACF4;
    padding: 0 10px;
    margin-left: 20px;
}


/* ----------------------------------------------------------
news
---------------------------------------------------------- */

.page_section.news_section .inner {
    border-top: none;
    padding-top: 0;
}

.news_section .news_dl {
    justify-content: center;
}

.news_section .nwes_container {
    margin-bottom: 120px;
}

.news_section .nwes_container .title {
    font-size: 3.2rem;
    font-weight: 500;
    text-align: center;
    padding-bottom: 40px;
    margin-top: 20px;
    margin-bottom: 60px;
    border-bottom: 1px solid #EEEEEE;
}


.news_section .btn a {
    color: #0BACF4;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 400px;
    border: 1px solid #0BACF4;
    border-radius: 50px;
    padding: 30px 40px;
    box-sizing: border-box;
    margin: 30px auto 0;
}

.news_section .btn a .arrow {
    width: 120px;
    background-color: #0BACF4;
}

.news_section .btn a .arrow:after {
    background-color: #0BACF4;
}

.news_section .nwes_container h2 {
    color: #0BACF4;
    font-size: 2.4rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 15px;
    margin-bottom: 60px;
}

.news_section .nwes_container h2:after {
    content: '';
    width: 60px;
    height: 1px;
    background-color: #0BACF4;
    position: absolute;
    left: 0;
    bottom: 0;
}

.news_section .nwes_container h3 {
    color: #0BACF4;
    font-size: 2rem;
    font-weight: 500;
    position: relative;
    margin-bottom: 40px;
    padding-left: 20px;
}

.news_section .nwes_container h3:after {
    content: '';
    width: 12px;
    height: 12px;
    background-color: #0BACF4;
    position: absolute;
    left: 0;
    top: calc(50% - 6px);
    border-radius: 50%;
}


.news_section .nwes_container p {
    margin-bottom: 40px;
}

.news_section .nwes_container img {
    margin-bottom: 40px;
}

.news_section .nwes_container a {
    color: #0BACF4;
    text-decoration: underline;
}

.news_section .nwes_container a:hover {
    text-decoration: none;
}

.wp-pagenavi {
    display: flex;
    justify-content: center;
    align-items: center;
}

.wp-pagenavi a,
.wp-pagenavi span {
    color: #0BACF4;
    font-family: "Chivo", sans-serif;
    line-height: 40px;
    background-color: #FFFFFF;
    width: 40px;
    height: 40px;
    margin: 0 5px;
    white-space: nowrap;
    transition: 0.2s ease-in-out;
    text-align: center;
    text-decoration: none;
    border: 1px solid #0BACF4;
    border-radius: 50%;
}

.wp-pagenavi a:hover {
    color: #fff;
    background-color: #0BACF4;
}

.wp-pagenavi span.current {
    color: #fff;
    background-color: #0BACF4;
}

.wp-pagenavi a.previouspostslink,
.wp-pagenavi a.nextpostslink {
    color: #fff;
    border: none;
    position: relative;
    width: 40px;
    height: 8px;
}

.wp-pagenavi a.previouspostslink:hover,
.wp-pagenavi a.nextpostslink:hover {
    background-color: #FFFFFF;
}

.wp-pagenavi a.nextpostslink::before {
    content: url(images/tab_arrow.svg);
    display: inline-block;
    width: 12px;
    height: 8px;
    position: absolute;
    top: 0;
    right: 20px;
    transform: rotate(-90deg);
}

.wp-pagenavi a.previouspostslink::before {
    content: url(images/tab_arrow.svg);
    display: inline-block;
    width: 12px;
    height: 8px;
    position: absolute;
    top: 0;
    left: 20px;
    transform: rotate(90deg);
}



@media only screen and (max-width: 1048px) {

    /* ----------------------------------------------------------
    Common Setting
    ---------------------------------------------------------- */

    /*body*/

    .inner {
        width: 90%;
        margin: 0 auto;
    }




    /* ----------------------------------------------------------
header
---------------------------------------------------------- */

    .header .layout {
        padding: 20px;
    }

    .header .layout .language_box {
        display: none;
        position: fixed;
        top: 100px;
        left: 0;
        background-color: #fff;
        width: calc(100% - 20px);
        padding: 20px;
        margin: 0 10px;
        box-sizing: border-box;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    }

    .header .layout .language_layout {
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .header .layout .btn_layout {
        display: block;
        margin-top: 0;
    }

    .header .nav_box {
        display: none;
        position: fixed;
        top: 100px;
        left: 0;
        background-color: #fff;
        width: calc(100% - 20px);
        padding: 20px 20px 40px 20px;
        margin: 0 10px;
        box-sizing: border-box;
        box-shadow: 0 0 5px rgba(0, 0, 0, 0.25);
    }

    .header .layout .btn_layout .header_nav {
        display: block;
        margin-top: 0;
    }

    .header .layout .btn_layout .header_nav .menu {
        margin-right: 0;
        box-sizing: border-box;
    }

    .header .layout .btn_layout .header_nav .menu.menu_pc {
        display: none;
    }

    .header .layout .btn_layout .header_nav .menu.menu_sp {
        display: block;
    }

    .header .layout .btn_layout .header_nav .menu01 {
        padding-top: 25px;
        padding-bottom: 25px;
        border-bottom: 1px solid #eee;
        cursor: pointer;
    }

    .header .layout .btn_layout .header_nav .menu01 .menu_layout {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }

    .header .layout .btn_layout .header_nav .menu>a {
        padding-top: 25px;
        padding-bottom: 25px;
        border-bottom: 1px solid #eee;
    }

    .header .layout .btn_layout .header_nav .menu>a:after {
        display: none;
    }

    .header .layout .btn_layout .header_nav .menu:last-of-type {
        margin-right: 0;
    }

    .header .sub_menu_box {
        border-top: none;
        display: none;
        position: fixed;
        top: 100px;
        left: 0;
        background-color: #fff;
        width: calc(100% - 20px);
        padding: 20px 20px 40px 20px;
        margin: 0 10px;
        box-sizing: border-box;
        z-index: 20;
    }

    .header .sub_menu_box .sub_menu_list {
        display: block;
    }

    .header .sub_menu_box .sub_menu_list li {
        margin-right: 0;
    }

    .header .sub_menu_box .sub_menu_list li.sub_menu01 {
        color: #0BACF4;
        font-size: 1.2rem;
        padding-top: 25px;
        padding-bottom: 25px;
        border-bottom: 1px solid #eee;
        display: flex;
        align-items: center;
    }

    .header .sub_menu_box .sub_menu_list li.sub_menu01 img {
        margin-right: 10px;
    }

    .header .sub_menu_box .sub_menu_list li a {
        font-size: 1.4rem;
        padding-top: 25px;
        padding-bottom: 25px;
        border-bottom: 1px solid #eee;
        display: block;
    }

    .header .sub_menu_box .sub_menu_list li.sub_menu02 a {
        font-size: 1.6rem;
        font-weight: 500;
    }

    .header .layout .btn_layout .btn a {
        text-align: center;
        padding: 12px auto;
        margin-top: 30px;
    }

    .header .layout .box {
        display: flex;
        justify-content: flex-end;
        align-items: center;
    }

    .header .layout .menu_btn_box {
        display: block;
        width: 18px;
        z-index: 100;
        margin-left: 20px;
    }

    .header .layout .menu_btn {
        position: relative;
        cursor: pointer;
        width: 18px;
        height: 12px;
        margin: 0 auto;
    }

    .header .layout .menu_btn span {
        text-align: center;
        display: inline-block;
        transition: all .4s;
        position: absolute;
        height: 2px;
        background: #333333;
        width: 100%;
    }

    .header .layout .menu_btn span:nth-of-type(1) {
        top: 0;
        right: 0;
    }

    .header .layout .menu_btn span:nth-of-type(2) {
        top: 5px;
        right: 0;
    }

    .header .layout .menu_btn span:nth-of-type(3) {
        top: 10px;
        right: 0;
    }

    .header .layout .menu_btn.active span:nth-of-type(1) {
        top: 0;
        left: 0;
        transform: translateY(6px) rotate(-135deg);
        width: 100%;
    }

    .header .layout .menu_btn.active span:nth-of-type(2) {
        opacity: 0;
    }

    .header .layout .menu_btn.active span:nth-of-type(3) {
        top: 12px;
        left: 0;
        transform: translateY(-6px) rotate(135deg);
        width: 100%;
    }

    .header .language_btn {
        font-size: 1.4rem;
        display: flex;
        align-items: center;
        cursor: pointer;
    }

    .header .language_btn img {
        margin-right: 10px;
    }

    /* ----------------------------------------------------------
top_section
---------------------------------------------------------- */

    .top_en_title {
        font-size: 2rem;
        font-weight: 500;
        letter-spacing: 0.5rem;
        padding-left: 30px;
        position: relative;
    }

    .top_en_title:before {
        content: '';
        display: block;
        background-color: #41C9F4;
        width: 16px;
        height: 16px;
        position: absolute;
        left: 0;
        top: 7px;
        border-radius: 50%;
    }

    .top_ection_title {
        font-size: 3.8rem;
        font-weight: 500;
        margin-top: 10px;
    }

    .arrow {
        display: block;
        height: 1px;
        position: relative;
    }

    .arrow:after {
        content: '';
        display: block;
        width: 15px;
        height: 1px;
        position: absolute;
        right: 0;
        bottom: 0;
        transform: rotate(30deg);
        transform-origin: right bottom;
    }

    /* ----------------------------------------------------------
top_mv
---------------------------------------------------------- */

    .top_mv .box {
        height: 100vh;
    }

    .top_mv .inner {
        height: 100vh;
    }

    .top_mv .heading {
        color: #000;
        font-size: 5rem;
        font-weight: 500;
        margin-top: 0;
    }

    .top_mv .sub_heading {
        color: #000;
        font-size: 2.8rem;
        font-weight: 500;
        margin-top: 70px;
    }

    .top_mv .btn {
        margin-top: 70px;
        font-size: 1.8rem;
        line-height: 1;
    }

    .top_mv .btn a {
        display: flex;
        align-items: flex-end;
    }

    .top_mv .arrow {
        width: 248px;
        background-color: #000;
        margin-left: 10px;
    }

    .top_mv .arrow:after {
        background-color: #000;
    }


    /* ----------------------------------------------------------
top_news
---------------------------------------------------------- */

    .top_news .layout .top_en_title {
        width: 150px;
    }

    .top_news .layout .top_news_box {
        width: calc(100% - 150px);
    }


    /* ----------------------------------------------------------
top_vision
---------------------------------------------------------- */

    .top_vision .box {
        width: calc(100% - 350px);
    }

    .top_vision .box .btn a {
        width: 320px;
    }

    .top_vision .img {
        width: 300px;
    }

    /* ----------------------------------------------------------
top_product
---------------------------------------------------------- */

    .top_product .layout .box .contents {
        width: calc(100% - 170px);
        display: flex;
    }

    .top_product .layout .box .img {
        width: 150px;
    }

    /* ----------------------------------------------------------
top_company
---------------------------------------------------------- */

    .top_company .layout .box .img {
        width: 100px;
    }

    .top_company .layout .box .contents {
        width: calc(100% - 120px);
    }

    /* ----------------------------------------------------------
history_section
---------------------------------------------------------- */

    .history_section .history_box:after {
        height: calc(100% - 60px);
    }

    /* ----------------------------------------------------------
locations_section
---------------------------------------------------------- */

    .locations_section .locations_box .box .contents .info_box {
        display: block;
    }

    .locations_section .locations_box .box .contents .info_box dl {
        display: flex;
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
        align-items: center;
        border-top: 1px solid #eee;
        border-bottom: none;
        border-right: none;
    }

    .locations_section .locations_box .box .contents .info_box dl:last-of-type {
        border-bottom: 1px solid #eee;
    }

    /* ----------------------------------------------------------
profile_section
---------------------------------------------------------- */

    .profile_section .layout {
        display: block;
    }

    .profile_section .layout .img {
        text-align: center;
        margin-bottom: 60px;
    }

    .profile_section .layout .contents {
        width: 100%;
    }

    .profile_section .services_box {
        display: block;
    }

    .profile_section .services_box .contents {
        width: 100%;
        margin-bottom: 60px;
    }

    .profile_section .services_box .img {
        text-align: center;
    }

    /* ----------------------------------------------------------
story_section
---------------------------------------------------------- */

    .story_section .story_box .layout {
        display: block;
    }

    .story_section .story_box .layout .img {
        text-align: center;
        margin-bottom: 20px;
    }

    .story_section .story_box .layout .text {
        width: 100%;
    }

    /* ----------------------------------------------------------
form_section
---------------------------------------------------------- */

    .form_section .form .btn_layout .btn {
        width: 300px;
    }

    .form_section .form .btn_layout .btn input {
        width: 300px;
    }


}

@media only screen and (max-width: 599px) {


    /* ----------------------------------------------------------
header
---------------------------------------------------------- */

    .header .logo img {
        width: 45vw;
    }


    /* ----------------------------------------------------------
top_section
---------------------------------------------------------- */

    .top_en_title {
        font-size: 1.5rem;
        padding-left: 20px;
    }

    .top_en_title:before {
        width: 12px;
        height: 12px;
        top: 7px;
    }

    .top_ection_title {
        font-size: 2.8rem;
    }

    /* ----------------------------------------------------------
top_mv
---------------------------------------------------------- */

    .top_mv .box.box01 {
        background-image: url(images/mv_bg01_sp.webp);
    }

    .top_mv .box.box02 {
        background-position: right -90px center;
    }


    .top_mv .heading {
        font-size: 2.6rem;
    }

    .top_mv .sub_heading {
        font-size: 1.6rem;
        margin-top: 30px;
    }

    .top_mv .btn {
        margin-top: 30px;
        font-size: 1.3rem;
        line-height: 1;
    }

    .top_mv .arrow {
        width: 125px;
    }


    /* ----------------------------------------------------------
top_news
---------------------------------------------------------- */

    .top_news .layout {
        display: block;
    }

    .top_news .layout .top_en_title {
        width: 100%;
        margin-bottom: 30px;
        box-sizing: border-box;
    }

    .top_news .layout .top_news_box {
        width: 100%;
    }

    .top_news .layout .top_news_box .box .top_news_layout dt {
        font-size: 1.3rem;
    }

    .top_news .layout .top_news_box .box .top_news_layout dd {
        font-size: 1.1rem;
    }

    .top_news .btn {
        font-size: 1.4rem;
        margin-top: 30px;
    }

    .top_news .btn .arrow {
        width: 90px;
    }


    /* ----------------------------------------------------------
top_vision
---------------------------------------------------------- */

    .top_vision .layout {
        display: block;
    }

    .top_vision .box {
        width: 100%;
    }

    .top_vision .box .btn a {
        font-size: 1.5rem;
        width: 250px;
        padding: 20px 30px;
    }

    .top_vision .box .btn a .arrow {
        width: 90px;
    }

    .top_vision .img {
        width: 100%;
        margin-top: 70px;
    }

    /* ----------------------------------------------------------
top_service
---------------------------------------------------------- */

    .top_service .layout {
        display: block;
        margin-top: 30px;
    }

    .top_service .layout .box {
        width: 100%;
    }

    .top_service .layout .box:first-of-type,
    .top_service .layout .box:nth-of-type(2) {
        border-right: 1px solid #eee;
        border-bottom: none;
    }

    .top_service .layout .box a {
        padding: 20px 20px 30px 20px;
    }

    .top_service .box .arrow {
        width: 90px;
    }

    /* ----------------------------------------------------------
top_product
---------------------------------------------------------- */

    .top_product .layout {
        display: block;
        margin-top: 30px;
    }

    .top_product .layout .box {
        width: 100%;
        border: 1px solid #EEEEEE;
        border-top: 1px solid #EEEEEE;
        border-bottom: none;

    }

    .top_product .layout .box a {
        padding: 20px;
        display: flex;
        justify-content: space-between;
    }

    .top_product .layout .box:first-of-type,
    .top_product .layout .box:nth-of-type(2) {
        border-top: 1px solid #EEEEEE;
    }

    .top_product .layout .box:nth-of-type(even) {
        border-left: 1px solid #EEEEEE;
    }

    .top_product .layout .box:last-of-type {
        border-bottom: 1px solid #EEEEEE;
    }

    .top_product .layout .box .img {
        width: 120px;
    }

    .top_product .layout .box .contents {
        width: calc(100% - 140px);
    }

    .top_product .layout .box .contents .arrow {
        width: 90px;
    }

    /* ----------------------------------------------------------
top_company
---------------------------------------------------------- */

    .top_company .layout {
        display: block;
        margin-top: 30px;
    }

    .top_company .layout .box {
        width: 100%;
        padding: 15px 20px;
    }

    .top_company .layout .box:first-of-type {
        border-right: 1px solid #EEEEEE;
        border-bottom: none;
    }

    .top_company .layout .box .contents .company_name {
        font-size: 1.6rem;
    }

    .top_company .layout .box .contents .company_tel,
    .top_company .layout .box .contents .company_fax {
        font-size: 1.4rem;
    }

    .top_company .layout .box .contents .company_tel dt,
    .top_company .layout .box .contents .company_fax dt {
        margin-right: 10px;
    }

    .top_company .btn {
        font-size: 1.4rem;
        margin-top: 30px;
    }

    .top_company .btn .arrow {
        width: 90px;
    }

    /* ----------------------------------------------------------
footer
---------------------------------------------------------- */

    .footer {
        padding: 40px 0 30px;
    }

    .footer .footer_menu {
        flex-wrap: wrap;
    }

    .footer .footer_menu li {
        text-align: center;
        width: 50%;
        margin-bottom: 30px;
    }

    .footer .footer_menu li:not(:last-of-type) {
        margin-right: 0;
    }

    .footer .logo {
        margin-top: 10px;
    }

    .footer .copyright {
        margin-top: 40px;
    }

    /* ----------------------------------------------------------
page_common
---------------------------------------------------------- */

    .page_section .inner {
        border-top: 1px solid #eee;
        padding-top: 50px;
    }

    .page_mv {
        padding: 150px 0 70px;
        background: #ECFAFE;
        background-image: url(images/page_mv_bg.svg);
        background-position: right bottom;
        background-repeat: no-repeat;
        background-size: 400px;
    }

    .page_mv .en_title {
        font-size: 1.5rem;
        padding-left: 20px;
    }

    .page_mv .en_title:before {
        width: 12px;
        height: 12px;
        top: 7px;
    }

    .page_mv .title {
        font-size: 2.8rem;
        margin-top: 5px;
    }

    .page_section_title {
        font-size: 2.4rem;
    }

    .page_header .heading {
        font-size: 2.4rem;
    }

    .page_header .btn a {
        font-size: 1.5rem;
        width: 300px;
        padding: 20px 30px;
    }

    .page_header .btn a .arrow {
        width: 90px;
    }

    .page_section .table {
        display: block;
    }

    .page_section .table dt {
        width: 100%;
        border-left: none;
        border-right: none;
        border-top: 1px solid #EEEEEE;
        border-bottom: 1px solid #EEEEEE;
    }

    .page_section .table dd {
        width: 100%;
        border-right: none;
        border-bottom: none;
    }

    .page_section .table.table dt {
        width: 100%;
    }

    .page_section .table.table dd {
        width: 100%;
    }

    .page_section .table dd:first-of-type {
        border-top: none;
    }

    .tab_box {
        background-color: #ECFAFE;
        padding: 20px;
    }

    .tab_box .tab_list {
        display: flex;
        flex-wrap: wrap;
    }

    .tab_box .tab_list li {
        font-size: 1.4rem;
        margin-right: 20px;
        margin-bottom: 20px;
    }

    .tab_box .tab_list li:last-of-type {
        margin-bottom: 0;
    }

    /* ----------------------------------------------------------
greeting_section
---------------------------------------------------------- */

    .greeting_section .layout {
        display: block;
    }

    .greeting_section .layout .img {
        text-align: center;
    }

    .greeting_section .layout .box {
        width: 100%;
        margin-top: 60px;
    }

    /* ----------------------------------------------------------
history_section
---------------------------------------------------------- */

    .history_section .history_box:after {
        height: calc(100% - 120px);
    }

    .history_section .box {
        display: block;
    }

    .history_section .box dt {
        width: 100%;
    }

    .history_section .box dd {
        width: 100%;
    }

    /* ----------------------------------------------------------
locations_section
---------------------------------------------------------- */

    .locations_section .locations_box .box {
        display: block;
        margin-top: 0;
    }

    .locations_section .locations_box .box:first-of-type {
        margin-top: 80px;
    }

    .locations_section .locations_box .box:not(:first-of-type) {
        border-top: none;
    }

    .locations_section .locations_box .box .img img {
        width: 100%;
    }

    .locations_section .locations_box .box .contents {
        width: 100%;
        margin-top: 15px;
    }

    .locations_section .locations_box .box .contents .title {
        font-size: 1.8rem;
    }

    .locations_section .locations_box .box .contents .address {
        font-size: 1.4rem;
    }

    .locations_section .locations_box .box .contents .info_box dl dd {
        font-size: 1.4rem;
        margin-right: 0;
    }

    /* ----------------------------------------------------------
breadcrumbs_section
---------------------------------------------------------- */

    .breadcrumbs_section .breadcrumbs {
        display: flex;
        align-items: center;
        flex-wrap: wrap;
    }

    .breadcrumbs_section .breadcrumbs li {
        font-size: 1.2rem;
    }

    .breadcrumbs_section .breadcrumbs li:nth-of-type(2) {
        width: 24px;
        margin: 0 15px;
    }

    /* ----------------------------------------------------------
form_section
---------------------------------------------------------- */

    .form_section .form .box {
        display: block;
    }

    .form_section .form .box dt {
        width: 100%;
        display: flex;
        padding: 15px 10px 0;
    }

    .form_section .form .box dd {
        width: 100%;
        padding: 15px 10px;
    }

    .form_section .form .btn_layout {
        display: block;
    }

    .form_section .form .btn_layout .btn:last-of-type {
        margin-left: auto;
    }

    .form_section .form .btn {
        width: 300px;
    }

    .form_section .form .btn input {
        font-size: 1.5rem;
        width: 300px;
        padding: 20px 30px;
    }

    .form_section .form .btn .arrow {
        width: 90px;
        top: 32px;
    }

    .form_section .privacy_policy .privacy_policy_box {
        height: 260px;
    }

    /* ----------------------------------------------------------
products_section
---------------------------------------------------------- */

    .products_section .layout {
        display: block;
    }

    .products_section .layout .box {
        border: 1px solid #eee;
        border-right: 1px solid #eee;
        border-bottom: none;
        width: 100%;
    }

    .products_section .layout .box:last-of-type {
        border-bottom: 1px solid #eee;
    }

    /* ----------------------------------------------------------
profile_section
---------------------------------------------------------- */

    .profile_section .profile_title {
        margin-top: 80px;
    }

    .profile_section .inner .profile_title_box:first-of-type .profile_title {
        margin-top: 0;
    }

    .profile_section .layout {
        margin-top: 40px;
    }

    .profile_section .layout .img {
        margin-bottom: 20px;
    }

    .profile_section .services_box .contents {
        margin-bottom: 20px;
    }

    .profile_section .layout .contents .heading {
        font-size: 2.2rem;
        margin-bottom: 20px;
    }

    .profile_section .services_box {
        padding: 20px 30px;
        margin-top: 40px;
    }

    .profile_section .services_box .contents .heading {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .profile_section .services_box .contents .text {
        font-size: 1.4rem;
    }

    /* ----------------------------------------------------------
story_section
---------------------------------------------------------- */

    .story_section .company_box {
        display: block;
    }

    .story_section .company_box .logo {
        text-align: center;
    }

    .story_section .company_box .contents {
        width: 100%;
        padding-left: 0;
        margin-left: 0;
        border-left: none;
    }

    .story_section .story_box {
        margin-top: 40px;
    }

    /* ----------------------------------------------------------
archive
---------------------------------------------------------- */

    .news_dl .date {
        font-size: 1.3rem;
    }

    .news_dl .category {
        font-size: 1.1rem;
    }


    /* ----------------------------------------------------------
news
---------------------------------------------------------- */

    .news_section .nwes_container .title {
        font-size: 2.4rem;
        margin-bottom: 40px;
    }


    .news_section .btn a {
        font-size: 1.5rem;
        width: 300px;
        padding: 20px 30px;
    }

    .news_section .btn a .arrow {
        width: 90px;
    }
}

/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
/* ----------------------------------------------------------
*/
}